From 37dcd79a867e8a0b51a504f11b936e82bb28d4be Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Thu, 7 Sep 2017 23:20:27 +0200 Subject: [PATCH 1/9] Add placement, maxAngle and exceedLength options to ol.style.Text --- externs/olx.js | 30 +++++++++++++ src/ol/style/text.js | 85 +++++++++++++++++++++++++++++++++++ src/ol/style/textplacement.js | 14 ++++++ 3 files changed, 129 insertions(+) create mode 100644 src/ol/style/textplacement.js diff --git a/externs/olx.js b/externs/olx.js index 22dcd4c472..cf0e8c1add 100644 --- a/externs/olx.js +++ b/externs/olx.js @@ -7658,8 +7658,11 @@ olx.style.StrokeOptions.prototype.width; /** * @typedef {{font: (string|undefined), + * exceedLength: (boolean|undefined), + * maxAngle: (number|undefined), * offsetX: (number|undefined), * offsetY: (number|undefined), + * placement: (ol.style.TextPlacement|string|undefined), * scale: (number|undefined), * rotateWithView: (boolean|undefined), * rotation: (number|undefined), @@ -7672,6 +7675,15 @@ olx.style.StrokeOptions.prototype.width; olx.style.TextOptions; +/** + * When `placement` is set to `'line'`, allow text to exceed the length of the + * path that it follows. Default is `false`. + * @type {boolean|undefined} + * @api + */ +olx.style.TextOptions.prototype.exceedLength; + + /** * Font style as CSS 'font' value, see: * {@link https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/font}. @@ -7682,6 +7694,16 @@ olx.style.TextOptions; olx.style.TextOptions.prototype.font; +/** + * When `placement` is set to `'line'`, allow a maximum angle between adjacent + * characters. The expected value is in radians, and the default is 45° + * (`Math.PI / 4`). + * @type {number|undefined} + * @api + */ +olx.style.TextOptions.prototype.maxAngle; + + /** * Horizontal text offset in pixels. A positive will shift the text right. * Default is `0`. @@ -7700,6 +7722,14 @@ olx.style.TextOptions.prototype.offsetX; olx.style.TextOptions.prototype.offsetY; +/** + * Text placement. + * @type {ol.style.TextPlacement|undefined} + * @api + */ +olx.style.TextOptions.prototype.placement; + + /** * Scale. * @type {number|undefined} diff --git a/src/ol/style/text.js b/src/ol/style/text.js index c4ba6327f3..ddb484f42b 100644 --- a/src/ol/style/text.js +++ b/src/ol/style/text.js @@ -2,6 +2,7 @@ goog.provide('ol.style.Text'); goog.require('ol.style.Fill'); +goog.require('ol.style.TextPlacement'); /** @@ -65,6 +66,24 @@ ol.style.Text = function(opt_options) { this.fill_ = options.fill !== undefined ? options.fill : new ol.style.Fill({color: ol.style.Text.DEFAULT_FILL_COLOR_}); + /** + * @private + * @type {number} + */ + this.maxAngle_ = options.maxAngle !== undefined ? options.maxAngle : Math.PI / 4; + + /** + * @private + * @type {ol.style.TextPlacement|string} + */ + this.placement_ = options.placement !== undefined ? options.placement : ol.style.TextPlacement.POINT; + + /** + * @private + * @type {boolean} + */ + this.exceedLength_ = options.exceedLength !== undefined ? options.exceedLength : false; + /** * @private * @type {ol.style.Stroke} @@ -103,6 +122,9 @@ ol.style.Text.DEFAULT_FILL_COLOR_ = '#333'; ol.style.Text.prototype.clone = function() { return new ol.style.Text({ font: this.getFont(), + placement: this.getPlacement(), + maxAngle: this.getMaxAngle(), + exceedLength: this.getExceedLength(), rotation: this.getRotation(), rotateWithView: this.getRotateWithView(), scale: this.getScale(), @@ -117,6 +139,16 @@ ol.style.Text.prototype.clone = function() { }; +/** + * Get the `exceedLength` configuration. + * @return {boolean} Let text exceed the length of the path they follow. + * @api + */ +ol.style.Text.prototype.getExceedLength = function() { + return this.exceedLength_; +}; + + /** * Get the font name. * @return {string|undefined} Font. @@ -127,6 +159,26 @@ ol.style.Text.prototype.getFont = function() { }; +/** + * Get the maximum angle between adjacent characters. + * @return {number} Angle in radians. + * @api + */ +ol.style.Text.prototype.getMaxAngle = function() { + return this.maxAngle_; +}; + + +/** + * Get the label placement. + * @return {ol.style.TextPlacement|string} Text placement. + * @api + */ +ol.style.Text.prototype.getPlacement = function() { + return this.placement_; +}; + + /** * Get the x-offset for the text. * @return {number} Horizontal text offset. @@ -227,6 +279,17 @@ ol.style.Text.prototype.getTextBaseline = function() { }; +/** + * Set the `exceedLength` property. + * + * @param {boolean} exceedLength Let text exceed the path that it follows. + * @api + */ +ol.style.Text.prototype.setExceedLength = function(exceedLength) { + this.exceedLength_ = exceedLength; +}; + + /** * Set the font. * @@ -238,6 +301,17 @@ ol.style.Text.prototype.setFont = function(font) { }; +/** + * Set the maximum angle between adjacent characters. + * + * @param {number} maxAngle Angle in radians. + * @api + */ +ol.style.Text.prototype.setMaxAngle = function(maxAngle) { + this.maxAngle_ = maxAngle; +}; + + /** * Set the x offset. * @@ -260,6 +334,17 @@ ol.style.Text.prototype.setOffsetY = function(offsetY) { }; +/** + * Set the text placement. + * + * @param {ol.style.TextPlacement|string} placement Placement. + * @api + */ +ol.style.Text.prototype.setPlacement = function(placement) { + this.placement_ = placement; +}; + + /** * Set the fill. * diff --git a/src/ol/style/textplacement.js b/src/ol/style/textplacement.js new file mode 100644 index 0000000000..39c45e06b4 --- /dev/null +++ b/src/ol/style/textplacement.js @@ -0,0 +1,14 @@ +goog.provide('ol.style.TextPlacement'); + + +/** + * Text placement. One of `'point'`, `'line'`. Default is `'point'`. Note that + * `'line'` requires the underlying geometry to be a {@link ol.geom.LineString}, + * {@link ol.geom.Polygon}, {@link ol.geom.MultiLineString} or + * {@link ol.geom.MultiPolygon}. + * @enum {string} + */ +ol.style.TextPlacement = { + POINT: 'point', + LINE: 'line' +}; From efc86d59b0b2851e99f0ff88f8395a30166e39a8 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Thu, 7 Sep 2017 23:32:31 +0200 Subject: [PATCH 2/9] Implement text rendering along paths This commit also changes the TextReplay.drawText() signature, and moves geometry calculation into drawText(). This improves performance where no text needs to be rendered (TextStyle.getText() == ''), which is used often in applications. --- package/package.json | 3 +- src/ol/geom/flat/textpath.js | 75 ++++ src/ol/render/canvas/imagereplay.js | 4 +- src/ol/render/canvas/instruction.js | 15 +- src/ol/render/canvas/replay.js | 137 +++++-- src/ol/render/canvas/textreplay.js | 369 ++++++++++++++----- src/ol/render/vectorcontext.js | 6 +- src/ol/render/webgl/immediate.js | 32 +- src/ol/render/webgl/textreplay.js | 34 +- src/ol/renderer/vector.js | 22 +- test/spec/ol/geom/flat/textpath.test.js | 121 ++++++ test/spec/ol/render/webgl/textreplay.test.js | 11 +- 12 files changed, 640 insertions(+), 189 deletions(-) create mode 100644 src/ol/geom/flat/textpath.js create mode 100644 test/spec/ol/geom/flat/textpath.test.js diff --git a/package/package.json b/package/package.json index ed32298758..ec1d47429b 100644 --- a/package/package.json +++ b/package/package.json @@ -8,8 +8,7 @@ "dependencies": { "pbf": "3.0.5", "pixelworks": "1.1.0", - "rbush": "2.0.1", - "@mapbox/vector-tile": "1.3.0" + "rbush": "2.0.1" }, "browserify": { "transform": [ diff --git a/src/ol/geom/flat/textpath.js b/src/ol/geom/flat/textpath.js new file mode 100644 index 0000000000..bd84defe32 --- /dev/null +++ b/src/ol/geom/flat/textpath.js @@ -0,0 +1,75 @@ +goog.provide('ol.geom.flat.textpath'); + +goog.require('ol.math'); + + +/** + * @param {Array.} flatCoordinates Path to put text on. + * @param {number} offset Start offset of the `flatCoordinates`. + * @param {number} end End offset of the `flatCoordinates`. + * @param {number} stride Stride. + * @param {string} text Text to place on the path. + * @param {function(string):number} measure Measure function returning the + * width of the character passed as 1st argument. + * @param {number} startM m along the path where the text starts. + * @param {number} maxAngle Max angle between adjacent chars in radians. + * @param {Array.>=} opt_result Array that will be populated with the + * result. Each entry consists of an array of x, y and z of the char to draw. + * If provided, this array will not be truncated to the number of characters of + * the `text`. + * @return {Array.>} The result array of null if `maxAngle` was + * exceeded. + */ +ol.geom.flat.textpath.lineString = function( + flatCoordinates, offset, end, stride, text, measure, startM, maxAngle, opt_result) { + var result = opt_result ? opt_result : []; + + // Keep text upright + var reverse = flatCoordinates[offset] > flatCoordinates[end - stride]; + + var numChars = text.length; + + var x1 = flatCoordinates[offset]; + var y1 = flatCoordinates[offset + 1]; + offset += stride; + var x2 = flatCoordinates[offset]; + var y2 = flatCoordinates[offset + 1]; + var segmentM = 0; + var segmentLength = Math.sqrt(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2)); + + var index, previousAngle; + for (var i = 0; i < numChars; ++i) { + index = reverse ? numChars - i - 1 : i; + var char = text[index]; + var charLength = measure(char); + var charM = startM + charLength / 2; + while (offset < end - stride && segmentM + segmentLength < charM) { + x1 = x2; + y1 = y2; + offset += stride; + x2 = flatCoordinates[offset]; + y2 = flatCoordinates[offset + 1]; + segmentM += segmentLength; + segmentLength = Math.sqrt(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2)); + } + var segmentPos = charM - segmentM; + var angle = Math.atan2(y2 - y1, x2 - x1); + if (reverse) { + angle += angle > 0 ? -Math.PI : Math.PI; + } + if (previousAngle !== undefined) { + var delta = angle - previousAngle; + delta += (delta > Math.PI) ? -2 * Math.PI : (delta < -Math.PI) ? 2 * Math.PI : 0; + if (Math.abs(delta) > maxAngle) { + return null; + } + } + previousAngle = angle; + var interpolate = segmentPos / segmentLength; + var x = ol.math.lerp(x1, x2, interpolate); + var y = ol.math.lerp(y1, y2, interpolate); + result[index] = [x, y, angle]; + startM += charLength; + } + return result; +}; diff --git a/src/ol/render/canvas/imagereplay.js b/src/ol/render/canvas/imagereplay.js index 8dc0ca37f0..f31f3ed592 100644 --- a/src/ol/render/canvas/imagereplay.js +++ b/src/ol/render/canvas/imagereplay.js @@ -162,7 +162,7 @@ ol.render.canvas.ImageReplay.prototype.drawMultiPoint = function(multiPointGeome this.instructions.push([ ol.render.canvas.Instruction.DRAW_IMAGE, myBegin, myEnd, this.image_, // Remaining arguments to DRAW_IMAGE are in alphabetical order - this.anchorX_, this.anchorY_, this.height_, this.opacity_, + this.anchorX_, this.anchorY_, this.height_, undefined, this.opacity_, this.originX_, this.originY_, this.rotateWithView_, this.rotation_, this.scale_, this.snapToPixel_, this.width_ ]); @@ -170,7 +170,7 @@ ol.render.canvas.ImageReplay.prototype.drawMultiPoint = function(multiPointGeome ol.render.canvas.Instruction.DRAW_IMAGE, myBegin, myEnd, this.hitDetectionImage_, // Remaining arguments to DRAW_IMAGE are in alphabetical order - this.anchorX_, this.anchorY_, this.height_, this.opacity_, + this.anchorX_, this.anchorY_, this.height_, undefined, this.opacity_, this.originX_, this.originY_, this.rotateWithView_, this.rotation_, this.scale_, this.snapToPixel_, this.width_ ]); diff --git a/src/ol/render/canvas/instruction.js b/src/ol/render/canvas/instruction.js index ee786500ce..205e6381f6 100644 --- a/src/ol/render/canvas/instruction.js +++ b/src/ol/render/canvas/instruction.js @@ -9,11 +9,12 @@ ol.render.canvas.Instruction = { CIRCLE: 2, CLOSE_PATH: 3, CUSTOM: 4, - DRAW_IMAGE: 5, - END_GEOMETRY: 6, - FILL: 7, - MOVE_TO_LINE_TO: 8, - SET_FILL_STYLE: 9, - SET_STROKE_STYLE: 10, - STROKE: 11 + DRAW_CHARS: 5, + DRAW_IMAGE: 6, + END_GEOMETRY: 7, + FILL: 8, + MOVE_TO_LINE_TO: 9, + SET_FILL_STYLE: 10, + SET_STROKE_STYLE: 11, + STROKE: 12 }; diff --git a/src/ol/render/canvas/replay.js b/src/ol/render/canvas/replay.js index 1af6291bfb..1341e9a855 100644 --- a/src/ol/render/canvas/replay.js +++ b/src/ol/render/canvas/replay.js @@ -6,6 +6,8 @@ goog.require('ol.extent'); goog.require('ol.extent.Relationship'); goog.require('ol.geom.GeometryType'); goog.require('ol.geom.flat.inflate'); +goog.require('ol.geom.flat.length'); +goog.require('ol.geom.flat.textpath'); goog.require('ol.geom.flat.transform'); goog.require('ol.has'); goog.require('ol.obj'); @@ -130,10 +132,69 @@ ol.render.canvas.Replay = function(tolerance, maxExtent, resolution, pixelRatio, * @type {!ol.Transform} */ this.resetTransform_ = ol.transform.create(); + + /** + * @private + * @type {Array.<*>} + */ + this.chars_ = []; }; ol.inherits(ol.render.canvas.Replay, ol.render.VectorContext); +/** + * @param {CanvasRenderingContext2D} context Context. + * @param {number} x X. + * @param {number} y Y. + * @param {HTMLImageElement|HTMLCanvasElement|HTMLVideoElement} image Image. + * @param {number} anchorX Anchor X. + * @param {number} anchorY Anchor Y. + * @param {number} height Height. + * @param {number} opacity Opacity. + * @param {number} originX Origin X. + * @param {number} originY Origin Y. + * @param {number} rotation Rotation. + * @param {number} scale Scale. + * @param {boolean} snapToPixel Snap to pixel. + * @param {number} width Width. + */ +ol.render.canvas.Replay.prototype.replayImage_ = function(context, x, y, image, anchorX, anchorY, + height, opacity, originX, originY, rotation, scale, snapToPixel, width) { + var localTransform = this.tmpLocalTransform_; + anchorX *= scale; + anchorY *= scale; + x -= anchorX; + y -= anchorY; + if (snapToPixel) { + x = Math.round(x); + y = Math.round(y); + } + if (rotation !== 0) { + var centerX = x + anchorX; + var centerY = y + anchorY; + ol.transform.compose(localTransform, + centerX, centerY, 1, 1, rotation, -centerX, -centerY); + context.setTransform.apply(context, localTransform); + } + var alpha = context.globalAlpha; + if (opacity != 1) { + context.globalAlpha = alpha * opacity; + } + + var w = (width + originX > image.width) ? image.width - originX : width; + var h = (height + originY > image.height) ? image.height - originY : height; + + context.drawImage(image, originX, originY, w, h, x, y, w * scale, h * scale); + + if (opacity != 1) { + context.globalAlpha = alpha; + } + if (rotation !== 0) { + context.setTransform.apply(context, this.resetTransform_); + } +}; + + /** * @protected * @param {Array.} dashArray Dash array. @@ -340,9 +401,7 @@ ol.render.canvas.Replay.prototype.replay_ = function( var ii = instructions.length; // end of instructions var d = 0; // data index var dd; // end of per-instruction data - var localTransform = this.tmpLocalTransform_; - var resetTransform = this.resetTransform_; - var prevX, prevY, roundX, roundY; + var anchorX, anchorY, prevX, prevY, roundX, roundY; var pendingFill = 0; var pendingStroke = 0; var coordinateCache = this.coordinateCache_; @@ -435,53 +494,63 @@ ol.render.canvas.Replay.prototype.replay_ = function( dd = /** @type {number} */ (instruction[2]); var image = /** @type {HTMLCanvasElement|HTMLVideoElement|Image} */ (instruction[3]); - var scale = /** @type {number} */ (instruction[12]); // Remaining arguments in DRAW_IMAGE are in alphabetical order - var anchorX = /** @type {number} */ (instruction[4]) * scale; - var anchorY = /** @type {number} */ (instruction[5]) * scale; + anchorX = /** @type {number} */ (instruction[4]); + anchorY = /** @type {number} */ (instruction[5]); var height = /** @type {number} */ (instruction[6]); var opacity = /** @type {number} */ (instruction[7]); var originX = /** @type {number} */ (instruction[8]); var originY = /** @type {number} */ (instruction[9]); var rotateWithView = /** @type {boolean} */ (instruction[10]); var rotation = /** @type {number} */ (instruction[11]); + var scale = /** @type {number} */ (instruction[12]); var snapToPixel = /** @type {boolean} */ (instruction[13]); var width = /** @type {number} */ (instruction[14]); + if (rotateWithView) { rotation += viewRotation; } for (; d < dd; d += 2) { - x = pixelCoordinates[d] - anchorX; - y = pixelCoordinates[d + 1] - anchorY; - if (snapToPixel) { - x = Math.round(x); - y = Math.round(y); - } - if (rotation !== 0) { - var centerX = x + anchorX; - var centerY = y + anchorY; - ol.transform.compose(localTransform, - centerX, centerY, 1, 1, rotation, -centerX, -centerY); - context.setTransform.apply(context, localTransform); - } - var alpha = context.globalAlpha; - if (opacity != 1) { - context.globalAlpha = alpha * opacity; - } + this.replayImage_(context, pixelCoordinates[d], pixelCoordinates[d + 1], + image, anchorX, anchorY, height, opacity, originX, originY, + rotation, scale, snapToPixel, width); + } + ++i; + break; + case ol.render.canvas.Instruction.DRAW_CHARS: + var begin = /** @type {number} */ (instruction[1]); + var end = /** @type {number} */ (instruction[2]); + var images = /** @type {Array.} */ (instruction[3]); + // Remaining arguments in DRAW_CHARS are in alphabetical order + var baseline = /** @type {number} */ (instruction[4]); + var exceedLength = /** @type {number} */ (instruction[5]); + var maxAngle = /** @type {number} */ (instruction[6]); + var measure = /** @type {function(string):number} */ (instruction[7]); + var offsetY = /** @type {number} */ (instruction[8]); + var strokeWidth = /** @type {number} */ (instruction[9]); + var text = /** @type {string} */ (instruction[10]); + var align = /** @type {number} */ (instruction[11]); + var textScale = /** @type {number} */ (instruction[12]); - var w = (width + originX > image.width) ? image.width - originX : width; - var h = (height + originY > image.height) ? image.height - originY : height; - - context.drawImage(image, originX, originY, w, h, - x, y, w * scale, h * scale); - - if (opacity != 1) { - context.globalAlpha = alpha; - } - if (rotation !== 0) { - context.setTransform.apply(context, resetTransform); + var pathLength = ol.geom.flat.length.lineString(pixelCoordinates, begin, end, 2); + var textLength = measure(text); + if (exceedLength || textLength <= pathLength) { + var startM = (pathLength - textLength) * align; + var chars = ol.geom.flat.textpath.lineString( + pixelCoordinates, begin, end, 2, text, measure, startM, maxAngle, this.chars_); + var numChars = text.length; + if (chars) { + for (var c = 0, cc = images.length; c < cc; ++c) { + var char = chars[c % numChars]; // x, y, rotation + var label = images[c]; + anchorX = label.width / 2; + anchorY = baseline * label.height + 2 * (0.5 - baseline) * strokeWidth - offsetY; + this.replayImage_(context, char[0], char[1], label, anchorX, anchorY, + label.height, 1, 0, 0, char[2], textScale, false, label.width); + } } } + ++i; break; case ol.render.canvas.Instruction.END_GEOMETRY: diff --git a/src/ol/render/canvas/textreplay.js b/src/ol/render/canvas/textreplay.js index 69682a0aa2..8c0ff774dd 100644 --- a/src/ol/render/canvas/textreplay.js +++ b/src/ol/render/canvas/textreplay.js @@ -2,12 +2,15 @@ goog.provide('ol.render.canvas.TextReplay'); goog.require('ol'); goog.require('ol.colorlike'); +goog.require('ol.dom'); +goog.require('ol.geom.GeometryType'); goog.require('ol.has'); goog.require('ol.render.canvas'); goog.require('ol.render.canvas.Instruction'); goog.require('ol.render.canvas.Replay'); goog.require('ol.render.replay'); goog.require('ol.structs.LRUCache'); +goog.require('ol.style.TextPlacement'); /** @@ -24,6 +27,12 @@ ol.render.canvas.TextReplay = function(tolerance, maxExtent, resolution, pixelRa ol.render.canvas.Replay.call(this, tolerance, maxExtent, resolution, pixelRatio, overlaps); + /** + * @private + * @type {Array.} + */ + this.labels_ = null; + /** * @private * @type {string} @@ -78,6 +87,24 @@ ol.render.canvas.TextReplay = function(tolerance, maxExtent, resolution, pixelRa */ this.textState_ = null; + /** + * @private + * @type {string} + */ + this.textKey_ = ''; + + /** + * @private + * @type {string} + */ + this.fillKey_ = ''; + + /** + * @private + * @type {string} + */ + this.strokeKey_ = ''; + while (ol.render.canvas.TextReplay.labelCache_.canExpireCache()) { ol.render.canvas.TextReplay.labelCache_.pop(); } @@ -95,33 +122,65 @@ ol.render.canvas.TextReplay.labelCache_ = new ol.structs.LRUCache(); /** * @param {string} font Font to use for measuring. - * @param {Array.} lines Lines to measure. - * @param {Array.} widths Array will be populated with the widths of - * each line. - * @return {ol.Size} Measuremnt. + * @return {ol.Size} Measurement. */ -ol.render.canvas.TextReplay.measureText = (function() { +ol.render.canvas.TextReplay.measureTextHeight = (function() { var textContainer; return function(font, lines, widths) { if (!textContainer) { textContainer = document.createElement('span'); + textContainer.textContent = 'M'; textContainer.style.visibility = 'hidden'; textContainer.style.whiteSpace = 'nowrap'; } textContainer.style.font = font; document.body.appendChild(textContainer); + var height = textContainer.offsetHeight; + document.body.removeChild(textContainer); + return height; + }; +})(); + + +/** + * @this {Object} + * @param {CanvasRenderingContext2D} context Context. + * @param {number} pixelRatio Pixel ratio. + * @param {string} text Text. + * @return {number} Width. + */ +ol.render.canvas.TextReplay.getTextWidth = function(context, pixelRatio, text) { + var width = this[text]; + if (!width) { + this[text] = width = context.measureText(text).width; + } + return width * pixelRatio; +}; + + +/** + * @param {string} font Font to use for measuring. + * @param {Array.} lines Lines to measure. + * @param {Array.} widths Array will be populated with the widths of + * each line. + * @return {number} Width of the whole text. + */ +ol.render.canvas.TextReplay.measureTextWidths = (function() { + var context; + return function(font, lines, widths) { + if (!context) { + context = ol.dom.createCanvasContext2D(1, 1); + } + context.font = font; var numLines = lines.length; var width = 0; var currentWidth, i; for (i = 0; i < numLines; ++i) { - textContainer.textContent = lines[i]; - currentWidth = textContainer.offsetWidth; + currentWidth = context.measureText(lines[i]).width; width = Math.max(width, currentWidth); widths.push(currentWidth); } - var measurement = [width, textContainer.offsetHeight * numLines]; - document.body.removeChild(textContainer); - return measurement; + return width; }; })(); @@ -129,51 +188,113 @@ ol.render.canvas.TextReplay.measureText = (function() { /** * @inheritDoc */ -ol.render.canvas.TextReplay.prototype.drawText = function(flatCoordinates, offset, end, stride, geometry, feature) { +ol.render.canvas.TextReplay.prototype.drawText = function(geometry, feature) { var fillState = this.textFillState_; var strokeState = this.textStrokeState_; - var textState = this.textState_; - if (this.text_ === '' || !textState || (!fillState && !strokeState)) { + if (this.text_ === '' || !this.textState_ || (!fillState && !strokeState)) { return; } + this.beginGeometry(geometry, feature); + var begin = this.coordinates.length; - var myBegin = this.coordinates.length; - var myEnd = - this.appendFlatCoordinates(flatCoordinates, offset, end, stride, false, false); - var fill = !!fillState; - var stroke = !!strokeState; - var pixelRatio = this.pixelRatio; - var textAlign = textState.textAlign; - var align = ol.render.replay.TEXT_ALIGN[textAlign]; - var textBaseline = textState.textBaseline; - var baseline = ol.render.replay.TEXT_ALIGN[textBaseline]; - var strokeWidth = stroke && strokeState.lineWidth ? strokeState.lineWidth : 0; + var geometryType = geometry.getType(); + var flatCoordinates = null; + var end = 2; + var stride = 2; + if (this.textState_.placement === ol.style.TextPlacement.LINE) { + var ends; + flatCoordinates = geometry.getFlatCoordinates(); + stride = geometry.getStride(); + if (geometryType == ol.geom.GeometryType.LINE_STRING) { + ends = [flatCoordinates.length]; + } else if (geometryType == ol.geom.GeometryType.MULTI_LINE_STRING) { + ends = geometry.getEnds(); + } else if (geometryType == ol.geom.GeometryType.POLYGON) { + ends = geometry.getEnds().slice(0, 1); + } else if (geometryType == ol.geom.GeometryType.MULTI_POLYGON) { + var endss = geometry.getEndss(); + ends = []; + for (var i = 0, ii = endss.length; i < ii; ++i) { + ends.push(endss[i][0]); + } + } + var flatOffset = 0; + var flatEnd; + for (var o = 0, oo = ends.length; o < oo; ++o) { + flatEnd = ends[o]; + end = this.appendFlatCoordinates(flatCoordinates, flatOffset, flatEnd, stride, false, false); + flatOffset = flatEnd; + this.drawChars_(begin, end); + begin = end; + } + + } else { + switch (geometryType) { + case ol.geom.GeometryType.POINT: + case ol.geom.GeometryType.MULTI_POINT: + flatCoordinates = geometry.getFlatCoordinates(); + end = flatCoordinates.length; + break; + case ol.geom.GeometryType.LINE_STRING: + flatCoordinates = /** @type {ol.geom.LineString} */ (geometry).getFlatMidpoint(); + break; + case ol.geom.GeometryType.CIRCLE: + flatCoordinates = /** @type {ol.geom.Circle} */ (geometry).getCenter(); + break; + case ol.geom.GeometryType.MULTI_LINE_STRING: + flatCoordinates = /** @type {ol.geom.MultiLineString} */ (geometry).getFlatMidpoints(); + end = flatCoordinates.length; + break; + case ol.geom.GeometryType.POLYGON: + flatCoordinates = /** @type {ol.geom.Polygon} */ (geometry).getFlatInteriorPoint(); + break; + case ol.geom.GeometryType.MULTI_POLYGON: + flatCoordinates = /** @type {ol.geom.MultiPolygon} */ (geometry).getFlatInteriorPoints(); + end = flatCoordinates.length; + break; + default: + } + end = this.appendFlatCoordinates(flatCoordinates, 0, end, stride, false, false); + this.drawTextImage_(begin, end); + } + + this.endGeometry(geometry, feature); +}; + + +/** + * @private + * @param {string} text Text. + * @param {boolean} fill Fill. + * @param {boolean} stroke Stroke. + * @return {HTMLCanvasElement} Image. + */ +ol.render.canvas.TextReplay.prototype.getImage_ = function(text, fill, stroke) { var label; - var text = this.text_; - var key = - (stroke ? - (typeof strokeState.strokeStyle == 'string' ? strokeState.strokeStyle : ol.getUid(strokeState.strokeStyle)) + - strokeState.lineCap + strokeState.lineDashOffset + '|' + strokeWidth + - strokeState.lineJoin + strokeState.miterLimit + - '[' + strokeState.lineDash.join() + ']' : '') + - textState.font + textAlign + text + - (fill ? - (typeof fillState.fillStyle == 'string' ? fillState.fillStyle : ('|' + ol.getUid(fillState.fillStyle))) : ''); + var key = (stroke ? this.strokeKey_ : '') + this.textKey_ + text + (fill ? this.fillKey_ : ''); var lines = text.split('\n'); var numLines = lines.length; - if (!ol.render.canvas.TextReplay.labelCache_.containsKey(key)) { - label = /** @type {HTMLCanvasElement} */ (document.createElement('canvas')); - ol.render.canvas.TextReplay.labelCache_.set(key, label); - var context = label.getContext('2d'); + var strokeState = this.textStrokeState_; + var fillState = this.textFillState_; + var textState = this.textState_; + var pixelRatio = this.pixelRatio; + var align = ol.render.replay.TEXT_ALIGN[textState.textAlign]; + var strokeWidth = stroke && strokeState.lineWidth ? strokeState.lineWidth : 0; + var widths = []; - var metrics = ol.render.canvas.TextReplay.measureText(textState.font, lines, widths); - var lineHeight = metrics[1] / numLines; - label.width = Math.ceil(metrics[0] + 2 * strokeWidth) * pixelRatio; - label.height = Math.ceil(metrics[1] + 2 * strokeWidth) * pixelRatio; + var width = ol.render.canvas.TextReplay.measureTextWidths(textState.font, lines, widths); + var lineHeight = ol.render.canvas.TextReplay.measureTextHeight(textState.font); + var height = lineHeight * numLines; + var renderWidth = (width + 2 * strokeWidth); + var context = ol.dom.createCanvasContext2D( + Math.ceil(renderWidth * pixelRatio), + Math.ceil((height + 2 * strokeWidth) * pixelRatio)); + label = context.canvas; + ol.render.canvas.TextReplay.labelCache_.set(key, label); context.scale(pixelRatio, pixelRatio); context.font = textState.font; if (stroke) { @@ -191,39 +312,101 @@ ol.render.canvas.TextReplay.prototype.drawText = function(flatCoordinates, offse context.fillStyle = fillState.fillStyle; } context.textBaseline = 'top'; - context.textAlign = 'left'; - var x = align * label.width / pixelRatio + 2 * (0.5 - align) * strokeWidth; + context.textAlign = 'center'; + var leftRight = (0.5 - align); + var x = align * label.width / pixelRatio + leftRight * 2 * strokeWidth; var i; if (stroke) { for (i = 0; i < numLines; ++i) { - context.strokeText(lines[i], x - align * widths[i], strokeWidth + i * lineHeight); + context.strokeText(lines[i], x + leftRight * widths[i], strokeWidth + i * lineHeight); } } if (fill) { for (i = 0; i < numLines; ++i) { - context.fillText(lines[i], x - align * widths[i], strokeWidth + i * lineHeight); + context.fillText(lines[i], x + leftRight * widths[i], strokeWidth + i * lineHeight); } } } - label = ol.render.canvas.TextReplay.labelCache_.get(key); + return ol.render.canvas.TextReplay.labelCache_.get(key); +}; + + +/** + * @private + * @param {number} begin Begin. + * @param {number} end End. + */ +ol.render.canvas.TextReplay.prototype.drawTextImage_ = function(begin, end) { + var textState = this.textState_; + var strokeState = this.textStrokeState_; + var pixelRatio = this.pixelRatio; + var align = ol.render.replay.TEXT_ALIGN[textState.textAlign]; + var baseline = ol.render.replay.TEXT_ALIGN[textState.textBaseline]; + var strokeWidth = strokeState && strokeState.lineWidth ? strokeState.lineWidth : 0; + + var label = this.getImage_(this.text_, !!this.textFillState_, !!this.textStrokeState_); var anchorX = align * label.width / pixelRatio + 2 * (0.5 - align) * strokeWidth; var anchorY = baseline * label.height / pixelRatio + 2 * (0.5 - baseline) * strokeWidth; - - this.instructions.push([ - ol.render.canvas.Instruction.DRAW_IMAGE, myBegin, myEnd, label, - (anchorX - this.textOffsetX_) * pixelRatio, (anchorY - this.textOffsetY_) * pixelRatio, + this.instructions.push([ol.render.canvas.Instruction.DRAW_IMAGE, begin, end, + label, (anchorX - this.textOffsetX_) * pixelRatio, (anchorY - this.textOffsetY_) * pixelRatio, label.height, 1, 0, 0, this.textRotateWithView_, this.textRotation_, this.textScale_, true, label.width ]); - this.hitDetectionInstructions.push([ - ol.render.canvas.Instruction.DRAW_IMAGE, myBegin, myEnd, label, - (anchorX - this.textOffsetX_) * pixelRatio, (anchorY - this.textOffsetY_) * pixelRatio, + this.hitDetectionInstructions.push([ol.render.canvas.Instruction.DRAW_IMAGE, begin, end, + label, (anchorX - this.textOffsetX_) * pixelRatio, (anchorY - this.textOffsetY_) * pixelRatio, label.height, 1, 0, 0, this.textRotateWithView_, this.textRotation_, this.textScale_ / pixelRatio, true, label.width ]); +}; - this.endGeometry(geometry, feature); + +/** + * @private + * @param {number} begin Begin. + * @param {number} end End. + */ +ol.render.canvas.TextReplay.prototype.drawChars_ = function(begin, end) { + var pixelRatio = this.pixelRatio; + var strokeState = this.textStrokeState_; + var fill = !!this.textFillState_; + var stroke = !!strokeState; + var textState = this.textState_; + var baseline = ol.render.replay.TEXT_ALIGN[textState.textBaseline]; + var strokeWidth = stroke && strokeState.lineWidth ? strokeState.lineWidth * pixelRatio : 0; + + var labels = []; + var text = this.text_; + var numChars = this.text_.length; + var i; + + if (stroke) { + for (i = 0; i < numChars; ++i) { + labels.push(this.getImage_(text.charAt(i), false, stroke)); + } + } + if (fill) { + for (i = 0; i < numChars; ++i) { + labels.push(this.getImage_(text.charAt(i), fill, false)); + } + } + + var context = labels[0].getContext('2d'); + var offsetY = this.textOffsetY_ * pixelRatio; + var align = ol.render.replay.TEXT_ALIGN[textState.textAlign || ol.render.canvas.defaultTextAlign]; + var widths = {}; + this.instructions.push([ol.render.canvas.Instruction.DRAW_CHARS, + begin, end, labels, baseline, + textState.exceedLength, textState.maxAngle, + ol.render.canvas.TextReplay.getTextWidth.bind(widths, context, pixelRatio), + offsetY, strokeWidth, this.text_, align, this.textScale_ + ]); + this.hitDetectionInstructions.push([ol.render.canvas.Instruction.DRAW_CHARS, + begin, end, labels, baseline, + textState.exceedLength, textState.maxAngle, + ol.render.canvas.TextReplay.getTextWidth.bind(widths, context, 1), + offsetY, strokeWidth, this.text_, align, this.textScale_ / pixelRatio + ]); }; @@ -231,28 +414,26 @@ ol.render.canvas.TextReplay.prototype.drawText = function(flatCoordinates, offse * @inheritDoc */ ol.render.canvas.TextReplay.prototype.setTextStyle = function(textStyle) { + var textState, fillState, strokeState; if (!textStyle) { this.text_ = ''; } else { var textFillStyle = textStyle.getFill(); if (!textFillStyle) { - this.textFillState_ = null; + fillState = this.textFillState_ = null; } else { var textFillStyleColor = textFillStyle.getColor(); var fillStyle = ol.colorlike.asColorLike(textFillStyleColor ? textFillStyleColor : ol.render.canvas.defaultFillStyle); - if (!this.textFillState_) { - this.textFillState_ = { - fillStyle: fillStyle - }; - } else { - var textFillState = this.textFillState_; - textFillState.fillStyle = fillStyle; + fillState = this.textFillState_; + if (!fillState) { + fillState = this.textFillState_ = /** @type {ol.CanvasFillState} */ ({}); } + fillState.fillStyle = fillStyle; } var textStrokeStyle = textStyle.getStroke(); if (!textStrokeStyle) { - this.textStrokeState_ = null; + strokeState = this.textStrokeState_ = null; } else { var textStrokeStyleColor = textStrokeStyle.getColor(); var textStrokeStyleLineCap = textStrokeStyle.getLineCap(); @@ -275,26 +456,17 @@ ol.render.canvas.TextReplay.prototype.setTextStyle = function(textStyle) { textStrokeStyleMiterLimit : ol.render.canvas.defaultMiterLimit; var strokeStyle = ol.colorlike.asColorLike(textStrokeStyleColor ? textStrokeStyleColor : ol.render.canvas.defaultStrokeStyle); - if (!this.textStrokeState_) { - this.textStrokeState_ = { - lineCap: lineCap, - lineDash: lineDash, - lineDashOffset: lineDashOffset, - lineJoin: lineJoin, - lineWidth: lineWidth, - miterLimit: miterLimit, - strokeStyle: strokeStyle - }; - } else { - var textStrokeState = this.textStrokeState_; - textStrokeState.lineCap = lineCap; - textStrokeState.lineDash = lineDash; - textStrokeState.lineDashOffset = lineDashOffset; - textStrokeState.lineJoin = lineJoin; - textStrokeState.lineWidth = lineWidth; - textStrokeState.miterLimit = miterLimit; - textStrokeState.strokeStyle = strokeStyle; + strokeState = this.textStrokeState_; + if (!strokeState) { + strokeState = this.textStrokeState_ = /** @type {ol.CanvasStrokeState} */ ({}); } + strokeState.lineCap = lineCap; + strokeState.lineDash = lineDash; + strokeState.lineDashOffset = lineDashOffset; + strokeState.lineJoin = lineJoin; + strokeState.lineWidth = lineWidth; + strokeState.miterLimit = miterLimit; + strokeState.strokeStyle = strokeStyle; } var textFont = textStyle.getFont(); var textOffsetX = textStyle.getOffsetX(); @@ -311,23 +483,32 @@ ol.render.canvas.TextReplay.prototype.setTextStyle = function(textStyle) { textTextAlign : ol.render.canvas.defaultTextAlign; var textBaseline = textTextBaseline !== undefined ? textTextBaseline : ol.render.canvas.defaultTextBaseline; - if (!this.textState_) { - this.textState_ = { - font: font, - textAlign: textAlign, - textBaseline: textBaseline - }; - } else { - var textState = this.textState_; - textState.font = font; - textState.textAlign = textAlign; - textState.textBaseline = textBaseline; + textState = this.textState_; + if (!textState) { + textState = this.textState_ = /** @type {ol.CanvasTextState} */ ({}); } + textState.exceedLength = textStyle.getExceedLength(); + textState.font = font; + textState.maxAngle = textStyle.getMaxAngle(); + textState.placement = textStyle.getPlacement(); + textState.textAlign = textAlign; + textState.textBaseline = textBaseline; + this.text_ = textText !== undefined ? textText : ''; this.textOffsetX_ = textOffsetX !== undefined ? textOffsetX : 0; this.textOffsetY_ = textOffsetY !== undefined ? textOffsetY : 0; this.textRotateWithView_ = textRotateWithView !== undefined ? textRotateWithView : false; this.textRotation_ = textRotation !== undefined ? textRotation : 0; this.textScale_ = textScale !== undefined ? textScale : 1; + + this.strokeKey_ = strokeState ? + (typeof strokeState.strokeStyle == 'string' ? strokeState.strokeStyle : ol.getUid(strokeState.strokeStyle)) + + strokeState.lineCap + strokeState.lineDashOffset + '|' + strokeState.lineWidth + + strokeState.lineJoin + strokeState.miterLimit + '[' + strokeState.lineDash.join() + ']' : + ''; + this.textKey_ = textState.font + textState.textAlign; + this.fillKey_ = fillState ? + (typeof fillState.fillStyle == 'string' ? fillState.fillStyle : ('|' + ol.getUid(fillState.fillStyle))) : + ''; } }; diff --git a/src/ol/render/vectorcontext.js b/src/ol/render/vectorcontext.js index 4428177138..1ea450cd4c 100644 --- a/src/ol/render/vectorcontext.js +++ b/src/ol/render/vectorcontext.js @@ -108,14 +108,10 @@ ol.render.VectorContext.prototype.drawPolygon = function(polygonGeometry, featur /** - * @param {Array.} flatCoordinates Flat coordinates. - * @param {number} offset Offset. - * @param {number} end End. - * @param {number} stride Stride. * @param {ol.geom.Geometry|ol.render.Feature} geometry Geometry. * @param {ol.Feature|ol.render.Feature} feature Feature. */ -ol.render.VectorContext.prototype.drawText = function(flatCoordinates, offset, end, stride, geometry, feature) {}; +ol.render.VectorContext.prototype.drawText = function(geometry, feature) {}; /** diff --git a/src/ol/render/webgl/immediate.js b/src/ol/render/webgl/immediate.js index 1d512b284b..84908b1340 100644 --- a/src/ol/render/webgl/immediate.js +++ b/src/ol/render/webgl/immediate.js @@ -88,19 +88,15 @@ ol.inherits(ol.render.webgl.Immediate, ol.render.VectorContext); /** * @param {ol.render.webgl.ReplayGroup} replayGroup Replay group. - * @param {Array.} flatCoordinates Flat coordinates. - * @param {number} offset Offset. - * @param {number} end End. - * @param {number} stride Stride. + * @param {ol.geom.Geometry|ol.render.Feature} geometry Geometry. * @private */ -ol.render.webgl.Immediate.prototype.drawText_ = function(replayGroup, - flatCoordinates, offset, end, stride) { +ol.render.webgl.Immediate.prototype.drawText_ = function(replayGroup, geometry) { var context = this.context_; var replay = /** @type {ol.render.webgl.TextReplay} */ ( replayGroup.getReplay(0, ol.render.ReplayType.TEXT)); replay.setTextStyle(this.textStyle_); - replay.drawText(flatCoordinates, offset, end, stride, null, null); + replay.drawText(geometry, null); replay.finish(context); // default colors var opacity = 1; @@ -219,9 +215,7 @@ ol.render.webgl.Immediate.prototype.drawPoint = function(geometry, data) { replay.getDeleteResourcesFunction(context)(); if (this.textStyle_) { - var flatCoordinates = geometry.getFlatCoordinates(); - var stride = geometry.getStride(); - this.drawText_(replayGroup, flatCoordinates, 0, flatCoordinates.length, stride); + this.drawText_(replayGroup, geometry); } }; @@ -247,9 +241,7 @@ ol.render.webgl.Immediate.prototype.drawMultiPoint = function(geometry, data) { replay.getDeleteResourcesFunction(context)(); if (this.textStyle_) { - var flatCoordinates = geometry.getFlatCoordinates(); - var stride = geometry.getStride(); - this.drawText_(replayGroup, flatCoordinates, 0, flatCoordinates.length, stride); + this.drawText_(replayGroup, geometry); } }; @@ -275,8 +267,7 @@ ol.render.webgl.Immediate.prototype.drawLineString = function(geometry, data) { replay.getDeleteResourcesFunction(context)(); if (this.textStyle_) { - var flatMidpoint = geometry.getFlatMidpoint(); - this.drawText_(replayGroup, flatMidpoint, 0, 2, 2); + this.drawText_(replayGroup, geometry); } }; @@ -302,8 +293,7 @@ ol.render.webgl.Immediate.prototype.drawMultiLineString = function(geometry, dat replay.getDeleteResourcesFunction(context)(); if (this.textStyle_) { - var flatMidpoints = geometry.getFlatMidpoints(); - this.drawText_(replayGroup, flatMidpoints, 0, flatMidpoints.length, 2); + this.drawText_(replayGroup, geometry); } }; @@ -329,8 +319,7 @@ ol.render.webgl.Immediate.prototype.drawPolygon = function(geometry, data) { replay.getDeleteResourcesFunction(context)(); if (this.textStyle_) { - var flatInteriorPoint = geometry.getFlatInteriorPoint(); - this.drawText_(replayGroup, flatInteriorPoint, 0, 2, 2); + this.drawText_(replayGroup, geometry); } }; @@ -356,8 +345,7 @@ ol.render.webgl.Immediate.prototype.drawMultiPolygon = function(geometry, data) replay.getDeleteResourcesFunction(context)(); if (this.textStyle_) { - var flatInteriorPoints = geometry.getFlatInteriorPoints(); - this.drawText_(replayGroup, flatInteriorPoints, 0, flatInteriorPoints.length, 2); + this.drawText_(replayGroup, geometry); } }; @@ -383,7 +371,7 @@ ol.render.webgl.Immediate.prototype.drawCircle = function(geometry, data) { replay.getDeleteResourcesFunction(context)(); if (this.textStyle_) { - this.drawText_(replayGroup, geometry.getCenter(), 0, 2, 2); + this.drawText_(replayGroup, geometry); } }; diff --git a/src/ol/render/webgl/textreplay.js b/src/ol/render/webgl/textreplay.js index 23fb5bbd2d..98a60bc4b8 100644 --- a/src/ol/render/webgl/textreplay.js +++ b/src/ol/render/webgl/textreplay.js @@ -3,6 +3,7 @@ goog.provide('ol.render.webgl.TextReplay'); goog.require('ol'); goog.require('ol.colorlike'); goog.require('ol.dom'); +goog.require('ol.geom.GeometryType'); goog.require('ol.has'); goog.require('ol.render.replay'); goog.require('ol.render.webgl'); @@ -118,9 +119,38 @@ ol.inherits(ol.render.webgl.TextReplay, ol.render.webgl.TextureReplay); /** * @inheritDoc */ -ol.render.webgl.TextReplay.prototype.drawText = function(flatCoordinates, offset, - end, stride, geometry, feature) { +ol.render.webgl.TextReplay.prototype.drawText = function(geometry, feature) { if (this.text_) { + var flatCoordinates = null; + var offset = 0; + var end = 2; + var stride = 2; + switch (geometry.getType()) { + case ol.geom.GeometryType.POINT: + case ol.geom.GeometryType.MULTI_POINT: + flatCoordinates = geometry.getFlatCoordinates(); + end = flatCoordinates.length; + stride = geometry.getStride(); + break; + case ol.geom.GeometryType.CIRCLE: + flatCoordinates = /** @type {ol.geom.Circle} */ (geometry).getCenter(); + break; + case ol.geom.GeometryType.LINE_STRING: + flatCoordinates = /** @type {ol.geom.LineString} */ (geometry).getFlatMidpoint(); + break; + case ol.geom.GeometryType.MULTI_LINE_STRING: + flatCoordinates = /** @type {ol.geom.MultiLineString} */ (geometry).getFlatMidpoints(); + end = flatCoordinates.length; + break; + case ol.geom.GeometryType.POLYGON: + flatCoordinates = /** @type {ol.geom.Polygon} */ (geometry).getFlatInteriorPoint(); + break; + case ol.geom.GeometryType.MULTI_POLYGON: + flatCoordinates = /** @type {ol.geom.MultiPolygon} */ (geometry).getFlatInteriorPoints(); + end = flatCoordinates.length; + break; + default: + } this.startIndices.push(this.indices.length); this.startIndicesFeature.push(feature); diff --git a/src/ol/renderer/vector.js b/src/ol/renderer/vector.js index b0efa64a47..e1e055fc89 100644 --- a/src/ol/renderer/vector.js +++ b/src/ol/renderer/vector.js @@ -58,7 +58,7 @@ ol.renderer.vector.renderCircleGeometry_ = function(replayGroup, geometry, style var textReplay = replayGroup.getReplay( style.getZIndex(), ol.render.ReplayType.TEXT); textReplay.setTextStyle(textStyle); - textReplay.drawText(geometry.getCenter(), 0, 2, 2, geometry, feature); + textReplay.drawText(geometry, feature); } }; @@ -181,7 +181,7 @@ ol.renderer.vector.renderLineStringGeometry_ = function(replayGroup, geometry, s var textReplay = replayGroup.getReplay( style.getZIndex(), ol.render.ReplayType.TEXT); textReplay.setTextStyle(textStyle); - textReplay.drawText(geometry.getFlatMidpoint(), 0, 2, 2, geometry, feature); + textReplay.drawText(geometry, feature); } }; @@ -206,9 +206,7 @@ ol.renderer.vector.renderMultiLineStringGeometry_ = function(replayGroup, geomet var textReplay = replayGroup.getReplay( style.getZIndex(), ol.render.ReplayType.TEXT); textReplay.setTextStyle(textStyle); - var flatMidpointCoordinates = geometry.getFlatMidpoints(); - textReplay.drawText(flatMidpointCoordinates, 0, - flatMidpointCoordinates.length, 2, geometry, feature); + textReplay.drawText(geometry, feature); } }; @@ -234,9 +232,7 @@ ol.renderer.vector.renderMultiPolygonGeometry_ = function(replayGroup, geometry, var textReplay = replayGroup.getReplay( style.getZIndex(), ol.render.ReplayType.TEXT); textReplay.setTextStyle(textStyle); - var flatInteriorPointCoordinates = geometry.getFlatInteriorPoints(); - textReplay.drawText(flatInteriorPointCoordinates, 0, - flatInteriorPointCoordinates.length, 2, geometry, feature); + textReplay.drawText(geometry, feature); } }; @@ -264,8 +260,7 @@ ol.renderer.vector.renderPointGeometry_ = function(replayGroup, geometry, style, var textReplay = replayGroup.getReplay( style.getZIndex(), ol.render.ReplayType.TEXT); textReplay.setTextStyle(textStyle); - textReplay.drawText(geometry.getFlatCoordinates(), 0, 2, 2, geometry, - feature); + textReplay.drawText(geometry, feature); } }; @@ -293,9 +288,7 @@ ol.renderer.vector.renderMultiPointGeometry_ = function(replayGroup, geometry, s var textReplay = replayGroup.getReplay( style.getZIndex(), ol.render.ReplayType.TEXT); textReplay.setTextStyle(textStyle); - var flatCoordinates = geometry.getFlatCoordinates(); - textReplay.drawText(flatCoordinates, 0, flatCoordinates.length, - geometry.getStride(), geometry, feature); + textReplay.drawText(geometry, feature); } }; @@ -321,8 +314,7 @@ ol.renderer.vector.renderPolygonGeometry_ = function(replayGroup, geometry, styl var textReplay = replayGroup.getReplay( style.getZIndex(), ol.render.ReplayType.TEXT); textReplay.setTextStyle(textStyle); - textReplay.drawText( - geometry.getFlatInteriorPoint(), 0, 2, 2, geometry, feature); + textReplay.drawText(geometry, feature); } }; diff --git a/test/spec/ol/geom/flat/textpath.test.js b/test/spec/ol/geom/flat/textpath.test.js new file mode 100644 index 0000000000..d85932607f --- /dev/null +++ b/test/spec/ol/geom/flat/textpath.test.js @@ -0,0 +1,121 @@ +goog.require('ol.geom.flat.textpath'); +goog.require('ol.geom.flat.length'); + +describe('textpath', function() { + + var horizontal = [0, 0, 100, 0]; + var vertical = [0, 0, 0, 100]; + var diagonal = [0, 0, 100, 100]; + var reverse = [100, 0, 0, 100]; + var angled = [0, 0, 100, 100, 200, 0]; + var reverseangled = [151, 17, 163, 22, 159, 30, 150, 30, 143, 24, 151, 17]; + + function measure(text) { + return 10 * text.length; + } + + it('center-aligns text on a horizontal line', function() { + var startM = 50 - 15; + var instructions = ol.geom.flat.textpath.lineString( + horizontal, 0, horizontal.length, 2, 'foo', measure, startM, Infinity); + expect(instructions).to.eql([[40, 0, 0], [50, 0, 0], [60, 0, 0]]); + }); + + it('left-aligns text on a horizontal line', function() { + var instructions = ol.geom.flat.textpath.lineString( + horizontal, 0, horizontal.length, 2, 'foo', measure, 0, Infinity); + expect(instructions).to.eql([[5, 0, 0], [15, 0, 0], [25, 0, 0]]); + }); + + it('right-aligns text on a horizontal line', function() { + var startM = 100 - 30; + var instructions = ol.geom.flat.textpath.lineString( + horizontal, 0, horizontal.length, 2, 'foo', measure, startM, Infinity); + expect(instructions).to.eql([[75, 0, 0], [85, 0, 0], [95, 0, 0]]); + }); + + it('draws text on a vertical line', function() { + var startM = 50 - 15; + var instructions = ol.geom.flat.textpath.lineString( + vertical, 0, vertical.length, 2, 'foo', measure, startM, Infinity); + var a = 90 * Math.PI / 180; + expect(instructions).to.eql([[0, 40, a], [0, 50, a], [0, 60, a]]); + }); + + it('draws text on a diagonal line', function() { + var startM = Math.sqrt(2) * 50 - 15; + var instructions = ol.geom.flat.textpath.lineString( + diagonal, 0, diagonal.length, 2, 'foo', measure, startM, Infinity); + expect(instructions[0][2]).to.be(45 * Math.PI / 180); + expect(instructions[0][0]).to.be.lessThan(instructions[2][0]); + expect(instructions[0][1]).to.be.lessThan(instructions[2][1]); + }); + + it('draws reverse text on a diagonal line', function() { + var startM = Math.sqrt(2) * 50 - 15; + var instructions = ol.geom.flat.textpath.lineString( + reverse, 0, reverse.length, 2, 'foo', measure, startM, Infinity); + expect(instructions[0][2]).to.be(-45 * Math.PI / 180); + expect(instructions[0][0]).to.be.lessThan(instructions[2][0]); + expect(instructions[0][1]).to.be.greaterThan(instructions[2][1]); + }); + + it('renders long text with extrapolation', function() { + var startM = 50 - 75; + var instructions = ol.geom.flat.textpath.lineString( + horizontal, 0, horizontal.length, 2, 'foo-foo-foo-foo', measure, startM, Infinity); + expect(instructions[0]).to.eql([-20, 0, 0]); + expect(instructions[14]).to.eql([120, 0, 0]); + }); + + it('renders angled text', function() { + var length = ol.geom.flat.length.lineString(angled, 0, angled.length, 2); + var startM = length / 2 - 15; + var instructions = ol.geom.flat.textpath.lineString( + angled, 0, angled.length, 2, 'foo', measure, startM, Infinity); + expect(instructions[0][2]).to.be(45 * Math.PI / 180); + expect(instructions[2][2]).to.be(-45 * Math.PI / 180); + }); + + it('respects maxAngle', function() { + var length = ol.geom.flat.length.lineString(angled, 0, angled.length, 2); + var startM = length / 2 - 15; + var instructions = ol.geom.flat.textpath.lineString( + angled, 0, angled.length, 2, 'foo', measure, startM, Math.PI / 4); + expect(instructions).to.be(null); + }); + + it('uses the smallest angle for maxAngleDelta', function() { + var length = ol.geom.flat.length.lineString(reverseangled, 0, reverseangled.length, 2); + var startM = length / 2 - 15; + var instructions = ol.geom.flat.textpath.lineString( + reverseangled, 0, reverseangled.length, 2, 'foo', measure, startM, Math.PI); + expect(instructions).to.not.be(undefined); + }); + + it('respects the begin option', function() { + var length = ol.geom.flat.length.lineString(angled, 2, angled.length, 2); + var startM = length / 2 - 15; + var instructions = ol.geom.flat.textpath.lineString( + angled, 2, angled.length, 2, 'foo', measure, startM, Infinity); + expect(instructions[1][0]).to.be(150); + }); + + it('respects the end option', function() { + var length = ol.geom.flat.length.lineString(angled, 0, 4, 2); + var startM = length / 2 - 15; + var instructions = ol.geom.flat.textpath.lineString( + angled, 0, 4, 2, 'foo', measure, startM, Infinity); + expect(instructions[1][0]).to.be(50); + }); + + it('uses the provided result array', function() { + var result = []; + result[3] = undefined; + var startM = 50 - 15; + ol.geom.flat.textpath.lineString( + horizontal, 0, horizontal.length, 2, 'foo', measure, startM, Infinity, result); + expect(result).to.eql([[40, 0, 0], [50, 0, 0], [60, 0, 0], undefined]); + }); + +}); diff --git a/test/spec/ol/render/webgl/textreplay.test.js b/test/spec/ol/render/webgl/textreplay.test.js index 2cdc7eb38e..6a33b886c5 100644 --- a/test/spec/ol/render/webgl/textreplay.test.js +++ b/test/spec/ol/render/webgl/textreplay.test.js @@ -1,6 +1,5 @@ - - goog.require('ol.dom'); +goog.require('ol.geom.Point'); goog.require('ol.render.webgl.TextReplay'); goog.require('ol.style.Fill'); goog.require('ol.style.Stroke'); @@ -127,19 +126,19 @@ describe('ol.render.webgl.TextReplay', function() { var point; point = [1000, 2000]; - replay.drawText(point, 0, 2, 2, null, null); + replay.drawText(new ol.geom.Point(point), null); expect(replay.vertices).to.have.length(256); expect(replay.indices).to.have.length(48); point = [2000, 3000]; - replay.drawText(point, 0, 2, 2, null, null); + replay.drawText(new ol.geom.Point(point), null); expect(replay.vertices).to.have.length(512); expect(replay.indices).to.have.length(96); }); it('sets part of its state during drawing', function() { var point = [1000, 2000]; - replay.drawText(point, 0, 2, 2, null, null); + replay.drawText(new ol.geom.Point(point), null); var height = replay.currAtlas_.height; var widths = replay.currAtlas_.width; @@ -163,7 +162,7 @@ describe('ol.render.webgl.TextReplay', function() { var point; point = [1000, 2000]; - replay.drawText(point, 0, 2, 2, null, null); + replay.drawText(new ol.geom.Point(point), null); expect(replay.vertices).to.have.length(0); expect(replay.indices).to.have.length(0); }); From ad5ce255590bfa48b2f04bfc9c25ead28e2d2f1b Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Thu, 7 Sep 2017 23:34:03 +0200 Subject: [PATCH 3/9] Use the placement: 'line' property in the street-labels example This makes the code of the example much simpler. --- examples/data/geojson/vienna-streets.geojson | 2 +- examples/street-labels.html | 10 +- examples/street-labels.js | 103 +++++-------------- 3 files changed, 26 insertions(+), 89 deletions(-) diff --git a/examples/data/geojson/vienna-streets.geojson b/examples/data/geojson/vienna-streets.geojson index 1fe57e2bdd..a736ef6f3b 100644 --- a/examples/data/geojson/vienna-streets.geojson +++ b/examples/data/geojson/vienna-streets.geojson @@ -1 +1 @@ -{"type":"FeatureCollection","features":[{"type":"Feature","id":"483167828","geometry":{"type":"LineString","coordinates":[[16.4128982,48.21976249999997],[16.4139828,48.21894370000001]]},"properties":{"highway":"primary","is_in":"Austria,Vienna,Wien","lanes":"4","maxspeed":"50","name":"Handelskai","ref":"B14","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5022444","geometry":{"type":"LineString","coordinates":[[16.4101713,48.2228049],[16.4103365,48.22268380000003],[16.410552,48.222525899999994],[16.4107283,48.22240790000001],[16.4110769,48.2221802],[16.4115313,48.221854500000035],[16.4118242,48.2216454],[16.4121066,48.221445399999965],[16.4128993,48.220839299999994],[16.413,48.220846300000005],[16.4131035,48.22082360000002],[16.4143181,48.21991569999997],[16.4143435,48.2198564],[16.4143063,48.21979640000001]]},"properties":{"foot":"yes","highway":"cycleway","name":"Praterlände","segregated":"no","surface":"paved"}},{"type":"Feature","id":"31352080","geometry":{"type":"LineString","coordinates":[[16.4120646,48.21940230000001],[16.412566,48.2197012],[16.4130734,48.22001080000001]]},"properties":{"bridge":"yes","foot":"designated","highway":"cycleway","layer":"1","lcn":"yes","name":"Kafkasteg","segregated":"yes"}},{"type":"Feature","id":"29222706","geometry":{"type":"LineString","coordinates":[[16.4120309,48.2192527],[16.4125033,48.21952910000002],[16.4126829,48.21963410000001],[16.4128982,48.21976249999997]]},"properties":{"highway":"residential","maxspeed":"50","name":"Kafkastraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31352078","geometry":{"type":"LineString","coordinates":[[16.4120309,48.2192527],[16.4112722,48.21878480000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Kafkastraße","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"5020147","geometry":{"type":"LineString","coordinates":[[16.4065985,48.2204309],[16.4072965,48.22084100000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"50","name":"Hillerstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"35383757","geometry":{"type":"LineString","coordinates":[[16.4059654,48.22091499999999],[16.4065985,48.2204309]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Vorgartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"9289497","geometry":{"type":"LineString","coordinates":[[16.4065985,48.2204309],[16.4064863,48.22035979999998],[16.4058094,48.21996100000001],[16.4052407,48.219629]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hillerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29303490","geometry":{"type":"LineString","coordinates":[[16.4094381,48.21999310000001],[16.4095157,48.22003810000001],[16.4097946,48.22021079999996]]},"properties":{"highway":"residential","maxspeed":"50","name":"Teuffenbachstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31642811","geometry":{"type":"LineString","coordinates":[[16.4074944,48.223803299999986],[16.4075946,48.223730700000004],[16.4080902,48.2233564],[16.4121661,48.220310600000005],[16.4128982,48.21976249999997]]},"properties":{"highway":"primary","is_in":"Austria,Vienna,Wien","lanes":"4","maxspeed":"50","name":"Handelskai","ref":"B14","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"317845493","geometry":{"type":"LineString","coordinates":[[16.4094381,48.21999310000001],[16.4088051,48.220435899999984],[16.4078839,48.22108270000001],[16.4078008,48.22113839999997]]},"properties":{"highway":"residential","maxspeed":"50","name":"Engerthstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31302830","geometry":{"type":"LineString","coordinates":[[16.4065985,48.2204309],[16.4069002,48.22019800000004],[16.4081559,48.21923589999997]]},"properties":{"highway":"tertiary","is_in":"Austria,Wien","maxspeed":"50","name":"Vorgartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"29100906","geometry":{"type":"LineString","coordinates":[[16.4050205,48.2187892],[16.4050295,48.21932559999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schrotzbergstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"483167827","geometry":{"type":"LineString","coordinates":[[16.4139828,48.21894370000001],[16.4148045,48.21833480000001]]},"properties":{"highway":"primary","is_in":"Austria,Vienna,Wien","lanes":"4","maxspeed":"50","name":"Handelskai","ref":"B14","source:maxspeed":"AT:urban","turn:lanes:backward":"left|through"}},{"type":"Feature","id":"141499898","geometry":{"type":"LineString","coordinates":[[16.4131749,48.21843160000003],[16.4131143,48.21847589999999],[16.4124106,48.21898139999999],[16.4120309,48.2192527]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Wehlistraße","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"317740946","geometry":{"type":"LineString","coordinates":[[16.4112722,48.21878480000001],[16.4111739,48.21872729999998]]},"properties":{"highway":"unclassified","maxspeed":"50","name":"Kafkastraße","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"9288369","geometry":{"type":"LineString","coordinates":[[16.4111739,48.21872729999998],[16.4107252,48.219055499999996],[16.4099788,48.21959920000003],[16.4094381,48.21999310000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Engerthstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4688454","geometry":{"type":"LineString","coordinates":[[16.4098919,48.2179108],[16.4100671,48.2180687],[16.4111739,48.21872729999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Kafkastraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"358541938","geometry":{"type":"LineString","coordinates":[[16.4122934,48.217957100000035],[16.4124571,48.2179941],[16.4131749,48.21843160000003],[16.4132609,48.21848410000001],[16.413876,48.21885800000001],[16.4139828,48.21894370000001]]},"properties":{"highway":"secondary","lanes":"2","maxspeed":"50","name":"Machstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"9298109","geometry":{"type":"LineString","coordinates":[[16.4122934,48.217957100000035],[16.4122089,48.21801099999999],[16.4118423,48.2182626],[16.4111739,48.21872729999998]]},"properties":{"highway":"residential","maxspeed":"50","name":"Engerthstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"317845494","geometry":{"type":"LineString","coordinates":[[16.4139828,48.21894370000001],[16.4138094,48.218890200000004],[16.4132044,48.21852559999999],[16.4131143,48.21847589999999],[16.4124078,48.21804829999999],[16.4122934,48.217957100000035]]},"properties":{"highway":"secondary","lanes":"2","maxspeed":"50","name":"Machstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31352083","geometry":{"type":"LineString","coordinates":[[16.4120567,48.21785650000001],[16.4118603,48.21796410000002],[16.4117132,48.218002799999994],[16.4112709,48.21800630000001],[16.4109209,48.21800910000002],[16.4101948,48.21801479999999],[16.4100671,48.2180687]]},"properties":{"highway":"service","lanes":"1","maxspeed":"50","name":"Elderschplatz","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8092459","geometry":{"type":"LineString","coordinates":[[16.4081559,48.21923589999997],[16.407387,48.21878100000001],[16.4071556,48.21864819999999],[16.406311,48.2181678],[16.4062844,48.218089100000014],[16.4062856,48.2180688],[16.4062883,48.21802259999998]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Sebastian-Kneipp-Gasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"285223288","geometry":{"type":"LineString","coordinates":[[16.4062883,48.21802259999998],[16.406292,48.217958899999985],[16.4062952,48.2179045]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sebastian-Kneipp-Gasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29274865","geometry":{"type":"LineString","coordinates":[[16.4062952,48.2179045],[16.4064637,48.21790479999996],[16.4083685,48.21790809999999],[16.4098919,48.2179108]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Ausstellungsstraße"}},{"type":"Feature","id":"155205086","geometry":{"type":"LineString","coordinates":[[16.4081559,48.21923589999997],[16.4088077,48.218739599999964],[16.4097339,48.2180271],[16.4098213,48.21797000000001],[16.4098919,48.2179108]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Vorgartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"103472535","geometry":{"type":"LineString","coordinates":[[16.4071556,48.21864819999999],[16.407022,48.2187543],[16.4069172,48.2187845],[16.4050205,48.2187892]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stuwerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8092454","geometry":{"type":"LineString","coordinates":[[16.4050205,48.2187892],[16.4050191,48.21807100000001],[16.4050204,48.21802819999999],[16.4050221,48.2179644],[16.4050054,48.2179055]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schrotzbergstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5019994","geometry":{"type":"LineString","coordinates":[[16.4155003,48.21673049999998],[16.415651,48.216624499999995],[16.4157981,48.21652100000003],[16.4160989,48.21630950000002],[16.4163502,48.2161328],[16.4164794,48.21604189999999],[16.4165319,48.216004999999996]]},"properties":{"foot":"yes","highway":"footway","name":"Wehlistraße"}},{"type":"Feature","id":"154608004","geometry":{"type":"LineString","coordinates":[[16.416963,48.2167728],[16.4174755,48.216407000000004]]},"properties":{"highway":"primary","is_in":"Austria,Vienna,Wien","lanes":"4","maxspeed":"50","name":"Handelskai","ref":"B14","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4435639","geometry":{"type":"LineString","coordinates":[[16.4165483,48.217059199999994],[16.4165772,48.21691870000001],[16.4166333,48.216646200000014],[16.4166393,48.21656389999998],[16.4166103,48.21622239999999],[16.4165319,48.216004999999996],[16.4164726,48.215861399999994],[16.416309,48.215672900000015],[16.4161508,48.215546399999994],[16.4160022,48.215435600000006],[16.4159039,48.2153739]]},"properties":{"highway":"residential","maxspeed":"50","name":"Offenbachgasse","oneway":"yes","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"5019993","geometry":{"type":"LineString","coordinates":[[16.4154832,48.21783189999999],[16.414746,48.217393200000004],[16.4146109,48.21731059999999],[16.41388,48.216877100000005],[16.4138396,48.216852999999986]]},"properties":{"highway":"residential","maxspeed":"50","name":"Lößlweg","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"222718390","geometry":{"type":"LineString","coordinates":[[16.414746,48.217393200000004],[16.4132609,48.21848410000001]]},"properties":{"highway":"footway","name":"Wehlistraße"}},{"type":"Feature","id":"4435641","geometry":{"type":"LineString","coordinates":[[16.4109267,48.217176800000004],[16.4118528,48.217733899999956],[16.4120567,48.21785650000001],[16.4122934,48.217957100000035]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Machstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5015343","geometry":{"type":"LineString","coordinates":[[16.4109267,48.217176800000004],[16.4105624,48.217449200000004],[16.4101698,48.217739499999965],[16.4100797,48.2178059],[16.4098919,48.2179108]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Vorgartenstraße"}},{"type":"Feature","id":"155205084","geometry":{"type":"LineString","coordinates":[[16.414618,48.2162773],[16.4142766,48.216530000000006],[16.4138396,48.216852999999986],[16.4125619,48.21777130000001],[16.4122934,48.217957100000035]]},"properties":{"highway":"residential","maxspeed":"50","name":"Engerthstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31477843","geometry":{"type":"LineString","coordinates":[[16.4148045,48.21833480000001],[16.4154832,48.21783189999999],[16.4162212,48.2172913],[16.4165483,48.217059199999994],[16.416963,48.2167728]]},"properties":{"highway":"primary","is_in":"Austria,Vienna,Wien","lanes":"4","maxspeed":"50","name":"Handelskai","ref":"B14","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"222718389","geometry":{"type":"LineString","coordinates":[[16.4153884,48.2167513],[16.4146109,48.21731059999999]]},"properties":{"highway":"footway","name":"Wehlistraße"}},{"type":"Feature","id":"4688463","geometry":{"type":"LineString","coordinates":[[16.4162212,48.2172913],[16.4153884,48.2167513],[16.4146766,48.216313299999996],[16.414618,48.2162773]]},"properties":{"highway":"residential","maxspeed":"50","name":"Sturgasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31536148","geometry":{"type":"LineString","coordinates":[[16.4159039,48.2153739],[16.4149436,48.216051100000016],[16.414618,48.2162773]]},"properties":{"highway":"residential","maxspeed":"50","name":"Engerthstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4863144","geometry":{"type":"LineString","coordinates":[[16.4132412,48.21541370000003],[16.4145632,48.21624300000002],[16.414618,48.2162773]]},"properties":{"highway":"residential","maxspeed":"50","name":"Sturgasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"29274381","geometry":{"type":"LineString","coordinates":[[16.4109267,48.217176800000004],[16.4125172,48.21596729999999],[16.4131777,48.21546219999999],[16.4132412,48.21541370000003]]},"properties":{"highway":"residential","maxspeed":"50","name":"Vorgartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"363082350","geometry":{"type":"LineString","coordinates":[[16.404996,48.216790599999996],[16.4049518,48.217037800000014],[16.4049537,48.217061599999994],[16.404961,48.21715359999999],[16.4049203,48.2172357]]},"properties":{"highway":"residential","maxspeed":"30","name":"Max-Koppe-Gasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29274866","geometry":{"type":"LineString","coordinates":[[16.4050054,48.2179055],[16.4049864,48.21786060000002],[16.4049706,48.217709100000036],[16.4049203,48.2172357]]},"properties":{"highway":"residential","maxspeed":"30","name":"Max-Koppe-Gasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5011929","geometry":{"type":"LineString","coordinates":[[16.4062952,48.2179045],[16.4062908,48.21785650000001],[16.4062958,48.2178002],[16.4059662,48.2167929],[16.4057407,48.2161127],[16.4056961,48.216048],[16.4056627,48.21599950000001],[16.405488,48.21574609999999],[16.4053586,48.21569199999999],[16.4051915,48.215527699999996],[16.4050869,48.21550869999999]]},"properties":{"foot":"yes","highway":"cycleway","lcn":"yes","name":"Messeplatz","old_name":"Lagerhausstraße"}},{"type":"Feature","id":"29100901","geometry":{"type":"LineString","coordinates":[[16.4048584,48.21965019999999],[16.4037426,48.2205132],[16.4037097,48.22053829999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Feuerbachstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29100928","geometry":{"type":"LineString","coordinates":[[16.4037097,48.22053829999999],[16.4025871,48.22034529999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Jungstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5020152","geometry":{"type":"LineString","coordinates":[[16.4047582,48.219511899999986],[16.4035844,48.21950939999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obermüllnerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"250241715","geometry":{"type":"LineString","coordinates":[[16.4032939,48.21951480000001],[16.4035844,48.21950939999999]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"30","name":"Obermüllnerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9717413","geometry":{"type":"LineString","coordinates":[[16.4007316,48.22035059999999],[16.4021004,48.220641400000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Erlafstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"30624260","geometry":{"type":"LineString","coordinates":[[16.4007316,48.22035059999999],[16.4005662,48.220671700000025],[16.4004546,48.2209033],[16.4003729,48.221022500000004],[16.4002877,48.22116700000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Molkereistraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"157688021","geometry":{"type":"LineString","coordinates":[[16.4011305,48.21951469999996],[16.4011141,48.2196323],[16.4007708,48.220275799999996],[16.4007316,48.22035059999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Max-Winter-Platz","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5020165","geometry":{"type":"LineString","coordinates":[[16.4035844,48.21950939999999],[16.4025871,48.22034529999999],[16.4023478,48.220553800000005],[16.4022073,48.220673799999986],[16.4015415,48.22121580000001],[16.4010907,48.221596799999986]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wohlmutstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9717217","geometry":{"type":"LineString","coordinates":[[16.4011305,48.21951469999996],[16.4016215,48.21951469999996],[16.4025924,48.21951480000001],[16.4028714,48.21951480000001],[16.4032939,48.21951480000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obermüllnerstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"365454250","geometry":{"type":"LineString","coordinates":[[16.3987589,48.2198927],[16.3988093,48.21990299999999],[16.3989036,48.21992219999996]]},"properties":{"foot":"designated","highway":"cycleway","maxspeed":"7","name":"Arnezhoferstraße","source:maxspeed":"AT:walk"}},{"type":"Feature","id":"4999123","geometry":{"type":"LineString","coordinates":[[16.398709,48.22033299999998],[16.3993295,48.220657200000005],[16.4002877,48.22116700000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Max-Winter-Platz","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"155205092","geometry":{"type":"LineString","coordinates":[[16.3972993,48.22153029999998],[16.3973935,48.22145109999997],[16.3980268,48.220918400000016],[16.398709,48.22033299999998]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Wolfgang-Schmälzl-Gasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"155205083","geometry":{"type":"LineString","coordinates":[[16.3967999,48.21949480000001],[16.3979196,48.219720800000005],[16.3987589,48.2198927]]},"properties":{"highway":"living_street","maxspeed":"7","name":"Arnezhoferstraße","source:maxspeed":"AT:walk","surface":"asphalt"}},{"type":"Feature","id":"365454254","geometry":{"type":"LineString","coordinates":[[16.3967999,48.21949480000001],[16.3967794,48.21953780000001],[16.3967678,48.21955560000001]]},"properties":{"foot":"designated","highway":"cycleway","name":"Venediger Au","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"160577098","geometry":{"type":"LineString","coordinates":[[16.3999188,48.2195217],[16.3998575,48.219639900000004],[16.3998325,48.2196879],[16.3996733,48.21999210000001],[16.3995648,48.22018259999996],[16.3993875,48.22054539999999],[16.3993295,48.220657200000005]]},"properties":{"highway":"pedestrian","name":"Max-Winter-Platz"}},{"type":"Feature","id":"9717212","geometry":{"type":"LineString","coordinates":[[16.4011305,48.21951469999996],[16.4004155,48.2195188],[16.3999188,48.2195217],[16.3991448,48.21952730000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Max-Winter-Platz","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"365454257","geometry":{"type":"LineString","coordinates":[[16.3990678,48.21962109999998],[16.3990856,48.219588499999986],[16.3991448,48.21952730000001]]},"properties":{"foot":"designated","highway":"cycleway","maxspeed":"30","name":"Wolfgang-Schmälzl-Gasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"155205094","geometry":{"type":"LineString","coordinates":[[16.398709,48.22033299999998],[16.3989036,48.21992219999996],[16.3990678,48.21962109999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wolfgang-Schmälzl-Gasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"8052891","geometry":{"type":"LineString","coordinates":[[16.4011296,48.218801600000006],[16.3991563,48.21880490000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Stuwerstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"365454253","geometry":{"type":"LineString","coordinates":[[16.399013,48.21880659999999],[16.3991563,48.21880490000001]]},"properties":{"foot":"designated","highway":"cycleway","maxspeed":"7","name":"Stuwerstraße","source:maxspeed":"AT:walk"}},{"type":"Feature","id":"5005252","geometry":{"type":"LineString","coordinates":[[16.3970696,48.21880920000001],[16.3980938,48.21880809999999],[16.399013,48.21880659999999]]},"properties":{"highway":"living_street","maxspeed":"7","name":"Stuwerstraße","source:maxspeed":"AT:walk","surface":"asphalt"}},{"type":"Feature","id":"365454259","geometry":{"type":"LineString","coordinates":[[16.3980877,48.218896899999976],[16.3980938,48.21880809999999]]},"properties":{"foot":"designated","highway":"cycleway","maxspeed":"7","name":"Mumbgasse","source:maxspeed":"AT:walk"}},{"type":"Feature","id":"5005250","geometry":{"type":"LineString","coordinates":[[16.3979196,48.219720800000005],[16.3980877,48.218896899999976]]},"properties":{"highway":"living_street","maxspeed":"7","name":"Mumbgasse","source:maxspeed":"AT:walk","surface":"asphalt"}},{"type":"Feature","id":"5020171","geometry":{"type":"LineString","coordinates":[[16.407387,48.21878100000001],[16.4058094,48.21996100000001],[16.4048577,48.22070059999999],[16.4048022,48.22074700000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schönngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29710349","geometry":{"type":"LineString","coordinates":[[16.4050205,48.2187892],[16.4035853,48.21878829999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Stuwerstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"148333073","geometry":{"type":"LineString","coordinates":[[16.4035956,48.21790949999999],[16.4036678,48.2179093],[16.4048452,48.217906],[16.4050054,48.2179055],[16.406174,48.2179046],[16.4062952,48.2179045]]},"properties":{"foot":"use_sidepath","highway":"secondary","maxspeed":"50","name":"Ausstellungsstraße"}},{"type":"Feature","id":"5011944","geometry":{"type":"LineString","coordinates":[[16.4035844,48.21950939999999],[16.4035853,48.21878829999997],[16.4035972,48.21817179999999],[16.4035968,48.21807419999999],[16.4035966,48.218031499999995],[16.4035961,48.21796669999998],[16.4035956,48.21790949999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wohlmutstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29710367","geometry":{"type":"LineString","coordinates":[[16.4035853,48.21878829999997],[16.4030484,48.21879039999996],[16.402579,48.21879229999999],[16.4017297,48.21879910000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stuwerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"365454255","geometry":{"type":"LineString","coordinates":[[16.4017297,48.21879910000001],[16.4016241,48.21879820000001]]},"properties":{"foot":"designated","highway":"cycleway","maxspeed":"30","name":"Stuwerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"365454260","geometry":{"type":"LineString","coordinates":[[16.4016241,48.21879820000001],[16.4011296,48.218801600000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stuwerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"283846999","geometry":{"type":"LineString","coordinates":[[16.4011296,48.218801600000006],[16.4011305,48.21951469999996]]},"properties":{"cycleway":"opposite","fixme":"radfahren gegen einbahn mit oder ohne markierung?","foot":"yes","highway":"residential","maxspeed":"30","name":"Molkereistraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"122546052","geometry":{"type":"LineString","coordinates":[[16.4011228,48.21804149999997],[16.401123,48.21808469999999],[16.4011235,48.21819930000004],[16.4011296,48.218801600000006]]},"properties":{"cycleway":"opposite_lane","fixme":"radfahren gegen einbahn mit oder ohne markierung?","foot":"yes","highway":"residential","maxspeed":"30","name":"Molkereistraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"125897481","geometry":{"type":"LineString","coordinates":[[16.4033383,48.2179093],[16.4034914,48.217909399999996],[16.4035956,48.21790949999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","maxspeed":"50","name":"Ausstellungsstraße"}},{"type":"Feature","id":"363025535","geometry":{"type":"LineString","coordinates":[[16.3976887,48.21792210000001],[16.399148,48.2179256],[16.400962,48.217923600000006],[16.4011187,48.21792340000002]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ausstellungsstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"9717423","geometry":{"type":"LineString","coordinates":[[16.4011187,48.21792340000002],[16.4011212,48.2179768],[16.4011228,48.21804149999997]]},"properties":{"highway":"residential","name":"Molkereistraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"155205097","geometry":{"type":"LineString","coordinates":[[16.3991448,48.21952730000001],[16.3991563,48.21880490000001],[16.3991502,48.218098199999986],[16.3991497,48.218046000000015],[16.399149,48.2179649],[16.399148,48.2179256]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wolfgang-Schmälzl-Gasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"125897495","geometry":{"type":"LineString","coordinates":[[16.4011173,48.217808399999996],[16.4012347,48.2178083],[16.4032054,48.2178059],[16.4032983,48.21781840000003],[16.4033387,48.217868399999986]]},"properties":{"highway":"service","maxspeed":"50","name":"Ausstellungsstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"148333072","geometry":{"type":"LineString","coordinates":[[16.4011187,48.21792340000002],[16.4012414,48.21792260000004],[16.4033383,48.2179093]]},"properties":{"foot":"use_sidepath","highway":"secondary","maxspeed":"50","name":"Ausstellungsstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4688464","geometry":{"type":"LineString","coordinates":[[16.3970502,48.21791350000001],[16.3970489,48.217967800000025],[16.397049,48.21799229999999],[16.3970476,48.21805570000001],[16.3970487,48.21809409999997],[16.3970696,48.21880920000001],[16.3970455,48.2188726],[16.3969041,48.219230900000014],[16.3967999,48.21949480000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Venediger Au","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"363082361","geometry":{"type":"LineString","coordinates":[[16.4049203,48.2172357],[16.4048677,48.21715990000004],[16.4048599,48.21705829999999],[16.404857,48.21702049999999],[16.4048269,48.216916500000025]]},"properties":{"highway":"residential","maxspeed":"30","name":"Max-Koppe-Gasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5011933","geometry":{"type":"LineString","coordinates":[[16.4047953,48.21694009999999],[16.4045823,48.21706929999999],[16.4044624,48.21715209999999],[16.4042577,48.217293299999966],[16.404164,48.217344200000014],[16.4039974,48.217434499999996],[16.4038422,48.2175187],[16.403802,48.21754060000001],[16.4034509,48.217708500000015],[16.4033933,48.217736099999996],[16.40334,48.2177743],[16.4033387,48.217868399999986],[16.4033383,48.2179093]]},"properties":{"bicycle":"yes","bus":"yes","cycleway":"opposite","highway":"residential","maxspeed":"30","motor_vehicle":"no","name":"Nordportalstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"293720169","geometry":{"type":"LineString","coordinates":[[16.4028519,48.21584920000004],[16.402741,48.21575660000002]]},"properties":{"highway":"raceway","name":"MPQ-Kart-Bahn","oneway":"yes"}},{"type":"Feature","id":"293718177","geometry":{"type":"LineString","coordinates":[[16.402741,48.21575660000002],[16.4027174,48.21571979999999],[16.4027359,48.21569650000001],[16.4028822,48.2156296],[16.4029706,48.215595399999984],[16.4029892,48.215561199999996],[16.4029597,48.215536499999985],[16.4029139,48.215538700000025],[16.4026934,48.215633999999994],[16.4026334,48.2156296],[16.4026072,48.215597600000024],[16.4026257,48.215572899999984],[16.4029641,48.21546599999999],[16.4030328,48.215474700000016],[16.4031322,48.21558809999999],[16.4031049,48.2156267],[16.40288,48.21570890000001],[16.4028757,48.21573720000001],[16.4029084,48.21577580000002],[16.4029793,48.21576779999998],[16.4031267,48.21569289999999],[16.4031856,48.21569800000003],[16.4032118,48.21573650000002],[16.4031966,48.21576999999999],[16.402987,48.2158623],[16.4029226,48.21587690000001],[16.4028822,48.21586669999999],[16.4028519,48.21584920000004]]},"properties":{"highway":"raceway","name":"MPQ-Kart-Bahn","oneway":"yes"}},{"type":"Feature","id":"5011938","geometry":{"type":"LineString","coordinates":[[16.4047953,48.21694009999999],[16.4048269,48.216916500000025],[16.404996,48.216790599999996],[16.4050742,48.21665100000001],[16.4050925,48.21662509999999],[16.405216,48.21645029999996],[16.4053731,48.216211000000015],[16.4054123,48.216100100000006],[16.4054115,48.2159001],[16.4052809,48.215681399999994],[16.4050869,48.21550869999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Messestraße","old_name":"Lagerhausstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"363030071","geometry":{"type":"LineString","coordinates":[[16.4006536,48.21765350000001],[16.4007501,48.217655500000006]]},"properties":{"highway":"service","name":"Präuscherplatz","oneway":"no"}},{"type":"Feature","id":"363030072","geometry":{"type":"LineString","coordinates":[[16.4011157,48.21773059999998],[16.4010375,48.217715699999985],[16.4009409,48.2177121],[16.4007984,48.21768420000001],[16.4007501,48.217655500000006]]},"properties":{"highway":"service","name":"Präuscherplatz","oneway":"yes"}},{"type":"Feature","id":"363030069","geometry":{"type":"LineString","coordinates":[[16.4007501,48.217655500000006],[16.4008386,48.21765740000001],[16.4009514,48.217663999999985],[16.4011144,48.217673399999995]]},"properties":{"highway":"service","name":"Präuscherplatz","oneway":"yes"}},{"type":"Feature","id":"29274869","geometry":{"type":"LineString","coordinates":[[16.3993405,48.21705739999999],[16.3995873,48.217151400000006],[16.3998425,48.2172554],[16.4000266,48.217311100000046],[16.4001305,48.2174019],[16.4002619,48.21746619999999],[16.4008169,48.217580500000025],[16.400954,48.217594899999995]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Kratky-Baschik-Weg"}},{"type":"Feature","id":"5011890","geometry":{"type":"LineString","coordinates":[[16.4011705,48.21754659999999],[16.4011121,48.2175972],[16.4011137,48.2176504],[16.4011144,48.217673399999995],[16.4011148,48.217688899999985],[16.4011157,48.21773059999998],[16.4011169,48.217770100000024],[16.4011173,48.217808399999996],[16.4011187,48.217869399999984],[16.4011187,48.21792340000002]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"50","name":"Präuscherplatz","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"29275135","geometry":{"type":"LineString","coordinates":[[16.4011705,48.21754659999999],[16.4016738,48.21729709999997],[16.4023024,48.21698549999999],[16.4030245,48.21660249999999],[16.4032567,48.216480399999995],[16.4032996,48.216456600000015],[16.4044683,48.215836800000005],[16.4050869,48.21550869999999]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Perspektivstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5075831","geometry":{"type":"LineString","coordinates":[[16.4016235,48.216084499999994],[16.4015164,48.216037700000015],[16.4008903,48.215771399999994],[16.4007889,48.21572929999999],[16.4006378,48.215657300000004],[16.4004839,48.21559300000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Jantschweg"}},{"type":"Feature","id":"5011897","geometry":{"type":"LineString","coordinates":[[16.4000965,48.21560389999999],[16.3997368,48.2159379],[16.3995191,48.2162558],[16.3993892,48.21650730000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Leichtweg"}},{"type":"Feature","id":"5011904","geometry":{"type":"LineString","coordinates":[[16.3976686,48.21601849999996],[16.3980605,48.21617740000002],[16.3982315,48.216296400000004]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Prater Platz F"}},{"type":"Feature","id":"29342729","geometry":{"type":"LineString","coordinates":[[16.3982315,48.216296400000004],[16.3985671,48.2164051],[16.399179,48.21647780000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Fortunagasse"}},{"type":"Feature","id":"5011857","geometry":{"type":"LineString","coordinates":[[16.3971247,48.21704760000003],[16.3976517,48.216924000000006],[16.3979799,48.21690200000003],[16.398479,48.21691340000001],[16.3987445,48.216932799999995],[16.3990107,48.216979400000014]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Kratky-Baschik-Weg"}},{"type":"Feature","id":"155205099","geometry":{"type":"LineString","coordinates":[[16.3980268,48.220918400000016],[16.3979339,48.220873400000016],[16.3964291,48.2200742]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Ybbsstraße","noexit":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"365454258","geometry":{"type":"LineString","coordinates":[[16.3967678,48.21955560000001],[16.3964607,48.22002950000001],[16.3964599,48.22003089999998],[16.3964291,48.2200742],[16.3957962,48.220602499999984],[16.3957151,48.2206755]]},"properties":{"highway":"residential","maxspeed":"30","name":"Venediger Au","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"45792146","geometry":{"type":"LineString","coordinates":[[16.3931585,48.22007679999999],[16.3931903,48.22012319999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Walcherstraße","surface":"asphalt"}},{"type":"Feature","id":"4408141","geometry":{"type":"LineString","coordinates":[[16.3934645,48.218796499999996],[16.3935147,48.21932079999999],[16.393593,48.21945610000003],[16.3937029,48.21956720000003],[16.3938771,48.2196826],[16.3939599,48.21972740000001],[16.3947289,48.22014389999998],[16.3951526,48.220374600000014],[16.3955581,48.22059189999999],[16.3957151,48.2206755]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Lassallestraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"354021099","geometry":{"type":"LineString","coordinates":[[16.3935542,48.21828390000002],[16.3934645,48.218796499999996]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"125897484","geometry":{"type":"LineString","coordinates":[[16.3966533,48.21781809999996],[16.3965474,48.21767599999998]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Gaudeegasse"}},{"type":"Feature","id":"125897499","geometry":{"type":"LineString","coordinates":[[16.3951364,48.21781840000003],[16.3956952,48.21781830000003],[16.3966533,48.21781809999996],[16.3970725,48.217815400000006],[16.3978238,48.21781770000001],[16.3987537,48.21782060000001],[16.4004913,48.217804700000016],[16.4005685,48.2177777],[16.4006088,48.217734199999995],[16.4006329,48.217690499999975],[16.4006536,48.21765350000001]]},"properties":{"highway":"service","maxspeed":"50","name":"Tiefstraße","old_name":"Ausstellungsstraße","oneway":"yes"}},{"type":"Feature","id":"385816192","geometry":{"type":"LineString","coordinates":[[16.3964504,48.21754570000002],[16.3963129,48.2173612]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Gaudeegasse"}},{"type":"Feature","id":"148333947","geometry":{"type":"LineString","coordinates":[[16.3955301,48.21762660000002],[16.3951364,48.21781840000003]]},"properties":{"highway":"footway","name":"Johann-Fürst-Platz"}},{"type":"Feature","id":"385816193","geometry":{"type":"LineString","coordinates":[[16.3965474,48.21767599999998],[16.3964504,48.21754570000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Gaudeegasse","tunnel":"building_passage"}},{"type":"Feature","id":"5011909","geometry":{"type":"LineString","coordinates":[[16.396293,48.216980699999965],[16.3962846,48.216876600000006],[16.3962478,48.21673770000001],[16.396217,48.21640210000001],[16.3961998,48.21613909999999],[16.3961483,48.21588170000001],[16.3960968,48.215721599999995],[16.3959767,48.215578600000015],[16.3958333,48.215447299999994],[16.3957716,48.21539089999999],[16.3956828,48.21530960000001]]},"properties":{"bicycle":"yes","foot":"permissive","highway":"pedestrian","maxspeed":"10","name":"Antifaschismus-Platz","surface":"asphalt"}},{"type":"Feature","id":"363025534","geometry":{"type":"LineString","coordinates":[[16.3949744,48.21794679999999],[16.3951143,48.217915500000004],[16.3968653,48.21791910000002],[16.3970502,48.21791350000001],[16.3974344,48.2179136],[16.3976887,48.21792210000001]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Ausstellungsstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"363025536","geometry":{"type":"LineString","coordinates":[[16.3976887,48.21792210000001],[16.3974231,48.21796019999999],[16.3970489,48.217967800000025],[16.396864,48.217968499999984],[16.3960159,48.217969299999965],[16.3951153,48.21796660000001],[16.3949744,48.21794679999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Ausstellungsstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"125897482","geometry":{"type":"LineString","coordinates":[[16.3942793,48.21795130000001],[16.3949744,48.21794679999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ausstellungsstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5011888","geometry":{"type":"LineString","coordinates":[[16.3949744,48.21794679999999],[16.3949735,48.2178964],[16.3951364,48.21781840000003]]},"properties":{"bicycle":"yes","highway":"service","name":"Johann-Fürst-Platz","oneway":"yes","tourist_bus":"yes","vehicle":"destination"}},{"type":"Feature","id":"4688462","geometry":{"type":"LineString","coordinates":[[16.3942101,48.2179519],[16.3942793,48.21795130000001]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Ausstellungsstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5075879","geometry":{"type":"LineString","coordinates":[[16.3947543,48.2165268],[16.3949322,48.216661200000004],[16.3949743,48.21670369999998]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Oswald-Thomas-Platz"}},{"type":"Feature","id":"148101971","geometry":{"type":"LineString","coordinates":[[16.3946357,48.216651600000006],[16.394832,48.216682100000014],[16.3949743,48.21670369999998]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Oswald-Thomas-Platz"}},{"type":"Feature","id":"412642803","geometry":{"type":"LineString","coordinates":[[16.3949743,48.21670369999998],[16.3951987,48.216775100000035],[16.3954357,48.216869299999985],[16.395617,48.21702290000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Hans-Pemmer-Weg"}},{"type":"Feature","id":"5075923","geometry":{"type":"LineString","coordinates":[[16.3943774,48.21599420000001],[16.3944196,48.2160997],[16.3945224,48.21624],[16.3946234,48.21637719999998]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Oswald-Thomas-Platz"}},{"type":"Feature","id":"148101955","geometry":{"type":"LineString","coordinates":[[16.3935298,48.217825800000014],[16.3936404,48.21787610000004],[16.3936746,48.21789160000003],[16.3938038,48.2179213],[16.3939621,48.21792669999999],[16.3942101,48.2179519]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Ausstellungsstraße","oneway":"yes"}},{"type":"Feature","id":"4688475","geometry":{"type":"LineString","coordinates":[[16.3942101,48.2179519],[16.393895,48.21801479999999],[16.3938061,48.218067099999985],[16.393706,48.21813180000001],[16.3935542,48.21828390000002]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Ausstellungsstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"169834577","geometry":{"type":"LineString","coordinates":[[16.395617,48.21702290000002],[16.3951728,48.217189700000006],[16.3951003,48.217273000000006],[16.3940581,48.217657799999984],[16.3939005,48.2177801],[16.3938082,48.21785609999998]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","maxspeed":"10","name":"Gabor-Steiner-Weg"}},{"type":"Feature","id":"354021105","geometry":{"type":"LineString","coordinates":[[16.3935298,48.217825800000014],[16.3935375,48.217890100000005],[16.3935491,48.21798749999999],[16.3935577,48.218059600000004],[16.3935542,48.21828390000002]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"164578777","geometry":{"type":"LineString","coordinates":[[16.3937249,48.21633639999999],[16.3937768,48.2164367]]},"properties":{"foot":"designated","highway":"cycleway","name":"Oswald-Thomas-Platz","segregated":"yes"}},{"type":"Feature","id":"28170588","geometry":{"type":"LineString","coordinates":[[16.3945113,48.21666979999998],[16.3944656,48.21668559999998],[16.3941738,48.216731400000015],[16.394041,48.2167475],[16.3939506,48.21671420000001],[16.393765,48.216627200000005]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Oswald-Thomas-Platz"}},{"type":"Feature","id":"164578776","geometry":{"type":"LineString","coordinates":[[16.3937768,48.2164367],[16.3937752,48.21650829999999],[16.3937428,48.216561799999994],[16.393765,48.216627200000005]]},"properties":{"foot":"designated","highway":"cycleway","name":"Oswald-Thomas-Platz","segregated":"yes"}},{"type":"Feature","id":"4863168","geometry":{"type":"LineString","coordinates":[[16.4140227,48.214881100000014],[16.4155225,48.21528180000004],[16.4157029,48.2152773],[16.4157577,48.21528119999999],[16.4158061,48.215298700000034],[16.4159039,48.2153739]]},"properties":{"highway":"residential","maxspeed":"50","name":"Offenbachgasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31536140","geometry":{"type":"LineString","coordinates":[[16.4140227,48.214881100000014],[16.4150522,48.214375700000005],[16.4151704,48.21431369999999]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Vorgartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"358541775","geometry":{"type":"LineString","coordinates":[[16.4140227,48.214881100000014],[16.4139355,48.21495709999999],[16.4133434,48.2153673],[16.4132412,48.21541370000003]]},"properties":{"highway":"residential","maxspeed":"50","name":"Vorgartenstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"155205085","geometry":{"type":"LineString","coordinates":[[16.4132412,48.21541370000003],[16.4132849,48.21532400000001],[16.413871,48.214923],[16.4140227,48.214881100000014]]},"properties":{"highway":"residential","maxspeed":"50","name":"Vorgartenstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"494604229","geometry":{"type":"LineString","coordinates":[[16.4216525,48.21128410000003],[16.4215589,48.211349299999995],[16.4214469,48.21142720000003],[16.4206208,48.21201350000001],[16.420223,48.21230170000001],[16.4200729,48.21240319999998],[16.4198372,48.212564499999985],[16.4190125,48.21316089999999],[16.4188005,48.21331420000001],[16.4186857,48.213396700000004],[16.4182986,48.213668799999994],[16.4180937,48.21381840000001],[16.4174977,48.21423579999998],[16.416552,48.21491370000001],[16.416314,48.2150838],[16.4162493,48.21512960000001],[16.4159039,48.2153739]]},"properties":{"highway":"residential","maxspeed":"50","name":"Engerthstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"154608006","geometry":{"type":"LineString","coordinates":[[16.4174755,48.216407000000004],[16.4191968,48.2151528],[16.4203354,48.21429560000004],[16.4205618,48.21413340000001],[16.4216313,48.213376400000016],[16.4220187,48.213100200000014],[16.4231748,48.21227090000002]]},"properties":{"highway":"primary","is_in":"Austria,Vienna,Wien","lanes":"4","maxspeed":"50","name":"Handelskai","ref":"B14","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4863169","geometry":{"type":"LineString","coordinates":[[16.4158356,48.21192479999999],[16.4158973,48.211973],[16.4159708,48.21205249999997],[16.4160583,48.21208920000001],[16.4162112,48.2120999],[16.4163721,48.21208390000001],[16.4165757,48.212064399999974],[16.4167151,48.21209300000001],[16.4168468,48.2121679],[16.4170555,48.212307200000026],[16.4178537,48.2128027],[16.4179179,48.212842499999994]]},"properties":{"highway":"residential","maxspeed":"50","name":"Stella-Klein-Löw-Weg","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"44744774","geometry":{"type":"LineString","coordinates":[[16.4131837,48.213524500000005],[16.413324,48.2134475],[16.4140645,48.21305960000001],[16.4144397,48.21286140000001],[16.4154582,48.21232330000001],[16.4159708,48.21205249999997]]},"properties":{"highway":"footway","name":"Stella-Klein-Löw-Weg"}},{"type":"Feature","id":"389668300","geometry":{"type":"LineString","coordinates":[[16.4143063,48.21979640000001],[16.4153873,48.21898919999998],[16.4157119,48.21870849999999],[16.4159853,48.2185073],[16.4164661,48.2181659],[16.416626,48.21805230000001],[16.4168058,48.21793360000001],[16.416975,48.217806199999984],[16.4173402,48.217434999999995],[16.4178316,48.21711179999997],[16.4182306,48.21681499999997],[16.4185792,48.21658289999999],[16.418789,48.21648160000001],[16.4190665,48.216297],[16.4192807,48.21613119999998],[16.4195503,48.215904300000005],[16.4198218,48.215654900000004],[16.4200104,48.21556629999998],[16.4201994,48.21545149999997],[16.4203823,48.21531490000001],[16.4207992,48.21501030000002],[16.4209194,48.2149847],[16.4214991,48.21457589999997],[16.4216646,48.21457270000002],[16.4225211,48.21395879999997],[16.4225245,48.21383610000001],[16.4229371,48.21353859999999],[16.4240018,48.21277599999999],[16.4239765,48.212675899999965],[16.423884,48.2124675]]},"properties":{"foot":"yes","highway":"cycleway","name":"Landungshauslände","segregated":"no","surface":"paved"}},{"type":"Feature","id":"164139764","geometry":{"type":"LineString","coordinates":[[16.4200055,48.209790699999985],[16.4197357,48.209296800000004]]},"properties":{"busway":"lane","cycleway":"share_busway","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Meiereistraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"352524929","geometry":{"type":"LineString","coordinates":[[16.4197357,48.209296800000004],[16.4196507,48.2092509],[16.4195501,48.20917130000001],[16.4195181,48.20914419999997],[16.4193225,48.2089866],[16.419049,48.20876820000001],[16.4187949,48.20854510000001],[16.4186399,48.20842089999999],[16.4185001,48.208281699999986],[16.4183781,48.20814189999999],[16.4183196,48.20800869999999],[16.4182925,48.2078473],[16.4183005,48.207798500000024],[16.4183169,48.2076979],[16.418346,48.20761110000001],[16.4184949,48.207364299999966],[16.4185854,48.20728080000001]]},"properties":{"busway":"lane","cycleway":"share_busway","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Meiereistraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"352524921","geometry":{"type":"LineString","coordinates":[[16.4185854,48.20728080000001],[16.4185898,48.20734020000003],[16.4185147,48.20749749999996],[16.4184611,48.20761730000001],[16.4184352,48.20770709999999],[16.4184168,48.207806199999965],[16.4184209,48.207894299999964],[16.4184691,48.208051600000005],[16.4185979,48.2082322],[16.4187484,48.20836739999996],[16.4189001,48.20850380000002],[16.4190282,48.20861899999997],[16.419164,48.20872409999998],[16.4194246,48.208935699999984],[16.419554,48.209039099999956],[16.4196419,48.20912990000002],[16.4196854,48.209174899999994],[16.4197357,48.209296800000004]]},"properties":{"busway":"lane","cycleway":"share_busway","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Meiereistraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5075744","geometry":{"type":"LineString","coordinates":[[16.4178235,48.2101251],[16.4194783,48.20916729999999],[16.4195181,48.20914419999997],[16.4196419,48.20912990000002]]},"properties":{"highway":"service","maxspeed":"50","name":"Nordportalstraße","note":"Privatgrund, Zufahrt gestattet","source:maxspeed":"AT:urban","vehicle":"destination"}},{"type":"Feature","id":"242156490","geometry":{"type":"LineString","coordinates":[[16.4151704,48.21431369999999],[16.4152729,48.2142623],[16.4164986,48.21362379999999],[16.4171802,48.21326740000001],[16.4178255,48.21289569999996],[16.4179179,48.212842499999994],[16.4179827,48.212800800000025],[16.4192699,48.21187040000001],[16.4194755,48.21172760000002],[16.4209559,48.2106996],[16.421103,48.21059749999998]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Vorgartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"352524923","geometry":{"type":"LineString","coordinates":[[16.4185854,48.20728080000001],[16.4186424,48.20709790000001],[16.4186261,48.206883000000005],[16.4184721,48.206615699999986],[16.4183911,48.206503999999995],[16.4182451,48.20629739999998],[16.4181967,48.206228899999985]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"tertiary","maxspeed":"50","name":"Meiereistraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"338305461","geometry":{"type":"LineString","coordinates":[[16.4053137,48.21433289999999],[16.4052819,48.214335500000004],[16.4052501,48.21433289999999],[16.4052202,48.214325299999985],[16.4051938,48.21431319999999],[16.4051726,48.214297200000004],[16.4051577,48.21427829999999],[16.4051494,48.21425380000002],[16.4051518,48.21422879999997],[16.4051647,48.21420520000001],[16.405189,48.21418360000001],[16.405222,48.21416780000001],[16.4052605,48.214159499999994],[16.4053011,48.21415919999998],[16.4053399,48.21416719999999],[16.4053732,48.21418249999999]]},"properties":{"bicycle":"yes","bus":"yes","highway":"residential","junction":"roundabout","maxspeed":"30","motor_vehicle":"no","name":"Südportalstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"396260228","geometry":{"type":"LineString","coordinates":[[16.4053732,48.21418249999999],[16.4053981,48.21420380000001],[16.4054122,48.214229200000005],[16.4054142,48.214256199999994],[16.4054038,48.21428230000001],[16.4053821,48.21430509999999],[16.4053511,48.21432250000001],[16.4053137,48.21433289999999]]},"properties":{"bicycle":"yes","bus":"yes","highway":"residential","junction":"roundabout","maxspeed":"30","motor_vehicle":"no","name":"Südportalstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"491930220","geometry":{"type":"LineString","coordinates":[[16.4043935,48.214681600000006],[16.4051577,48.21427829999999]]},"properties":{"highway":"pedestrian","maxspeed":"30","name":"Südportalstraße"}},{"type":"Feature","id":"226986139","geometry":{"type":"LineString","coordinates":[[16.4050869,48.21550869999999],[16.4054523,48.215317699999986],[16.4057877,48.21514239999999],[16.4058381,48.21506740000001],[16.4058797,48.214947300000034],[16.405872,48.21483739999999],[16.4058439,48.21478099999999],[16.4054749,48.214462],[16.4053137,48.21433289999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Welthandelsplatz","ref:wien":"06696","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9717490","geometry":{"type":"LineString","coordinates":[[16.4042857,48.21485430000004],[16.4041606,48.21479879999998],[16.4037752,48.21459730000001],[16.4034454,48.21443740000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Straße des Ersten Mai"}},{"type":"Feature","id":"5011925","geometry":{"type":"LineString","coordinates":[[16.4050869,48.21550869999999],[16.4047787,48.215252600000014],[16.4047249,48.215209000000016],[16.4043489,48.21490890000004],[16.4042857,48.21485430000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Freudplatz","old_name":"Lagerhausstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4688458","geometry":{"type":"LineString","coordinates":[[16.4042857,48.21485430000004],[16.4043935,48.214681600000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Südportalstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"172549807","geometry":{"type":"LineString","coordinates":[[16.4024811,48.21367829999997],[16.4026119,48.213630800000004],[16.4027672,48.2136084],[16.4029962,48.2136093],[16.4031124,48.213616]]},"properties":{"highway":"service","maxspeed":"10","name":"Waldsteingartenstraße","source:maxspeed":"AT:zone:10"}},{"type":"Feature","id":"132758365","geometry":{"type":"LineString","coordinates":[[16.4029962,48.2136093],[16.4029879,48.213507100000015],[16.402987,48.21348979999999],[16.4029849,48.21340359999999],[16.4029993,48.21329560000001],[16.4030103,48.2132302],[16.4030351,48.213164399999954],[16.4030528,48.21312649999999],[16.4030777,48.21307940000003],[16.403086,48.2130415],[16.4030866,48.21301089999997],[16.4030763,48.212961800000016]]},"properties":{"access":"permissive","bicycle":"dismount","highway":"footway","name":"Kolariks Genießerweg"}},{"type":"Feature","id":"5075675","geometry":{"type":"LineString","coordinates":[[16.4040943,48.2133211],[16.4041415,48.213358400000004],[16.4041645,48.213376600000004],[16.4045637,48.21371820000002],[16.4046103,48.21375570000001],[16.4046345,48.213775199999986],[16.4050572,48.2141254],[16.4051647,48.21420520000001]]},"properties":{"highway":"unclassified","maxspeed":"30","name":"Csardastraße","oneway":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"199116907","geometry":{"type":"LineString","coordinates":[[16.4021872,48.21423469999999],[16.4018687,48.2142638],[16.4015806,48.21431000000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Straße des Ersten Mai"}},{"type":"Feature","id":"363389208","geometry":{"type":"LineString","coordinates":[[16.4015806,48.21431000000001],[16.401428,48.21433450000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Schweizerhausplatz"}},{"type":"Feature","id":"5011869","geometry":{"type":"LineString","coordinates":[[16.4004671,48.215240800000004],[16.4007811,48.21498869999999],[16.4011043,48.21483330000001],[16.4014245,48.21468869999998],[16.4016678,48.214554400000026]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Leichtweg"}},{"type":"Feature","id":"5005251","geometry":{"type":"LineString","coordinates":[[16.4043935,48.214681600000006],[16.4043025,48.21472750000001],[16.4041606,48.21479879999998],[16.4030751,48.21534500000001],[16.4026223,48.21548089999999],[16.402372,48.2155697],[16.4022576,48.21563119999999],[16.402075,48.215737399999995],[16.4016235,48.216084499999994],[16.4014005,48.2163286],[16.4012232,48.2166081],[16.4010227,48.21708330000001],[16.4008526,48.217486399999984],[16.4008169,48.217580500000025]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Zufahrtsstraße"}},{"type":"Feature","id":"5075822","geometry":{"type":"LineString","coordinates":[[16.4000103,48.21539390000001],[16.3996671,48.21527549999999],[16.399467,48.215186500000016],[16.3993327,48.21512680000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Jantschweg"}},{"type":"Feature","id":"5005245","geometry":{"type":"LineString","coordinates":[[16.4026223,48.21548089999999],[16.4024909,48.215321099999954],[16.4024917,48.215221299999996],[16.4018998,48.21487059999998],[16.4016678,48.214554400000026],[16.4015516,48.214383999999995],[16.401428,48.21433450000001],[16.401348,48.214264299999996],[16.4008819,48.213729700000016],[16.4008198,48.213644999999985]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Karl-Kolarik-Weg"}},{"type":"Feature","id":"5011918","geometry":{"type":"LineString","coordinates":[[16.4024811,48.21367829999997],[16.4022832,48.21377000000001],[16.4020964,48.2139143],[16.4020039,48.2140186]]},"properties":{"highway":"service","maxspeed":"10","name":"Waldsteingartenstraße","source:maxspeed":"AT:zone:10"}},{"type":"Feature","id":"251555419","geometry":{"type":"LineString","coordinates":[[16.4020039,48.2140186],[16.4019912,48.21404160000003],[16.4019182,48.21417389999999],[16.4018687,48.2142638]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Waldsteingartenstraße"}},{"type":"Feature","id":"53257553","geometry":{"type":"LineString","coordinates":[[16.4000819,48.21300260000004],[16.3999813,48.21292510000001],[16.3999229,48.212875]]},"properties":{"highway":"footway","name":"Rustenschacherallee"}},{"type":"Feature","id":"5075783","geometry":{"type":"LineString","coordinates":[[16.4020324,48.21340040000001],[16.4020333,48.21341000000004],[16.4020386,48.21346700000001],[16.4020347,48.21354339999996],[16.4023893,48.2135768],[16.4024621,48.21363840000001],[16.4024811,48.21367829999997]]},"properties":{"highway":"service","maxspeed":"10","name":"Eduard-Lang-Weg","source:maxspeed":"AT:zone:10"}},{"type":"Feature","id":"5011917","geometry":{"type":"LineString","coordinates":[[16.4008198,48.213644999999985],[16.4007877,48.21360090000002],[16.4007701,48.21357840000002],[16.4007551,48.21355969999999],[16.4007363,48.213537099999996],[16.4005498,48.21332269999999],[16.400353,48.2131043],[16.4002826,48.21302610000001],[16.4001837,48.2129492]]},"properties":{"highway":"pedestrian","name":"Karl-Kolarik-Weg"}},{"type":"Feature","id":"28170559","geometry":{"type":"LineString","coordinates":[[16.4020347,48.21354339999996],[16.401714,48.2135284],[16.401359,48.21352100000004],[16.4010607,48.213564399999996],[16.4008198,48.213644999999985]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Eduard-Lang-Weg"}},{"type":"Feature","id":"4433838","geometry":{"type":"LineString","coordinates":[[16.4083596,48.212547900000004],[16.4085328,48.21236640000001],[16.4086388,48.21225530000001],[16.4089857,48.2118777],[16.4091489,48.2117145],[16.4093024,48.211603800000006],[16.4094011,48.2115714],[16.4095065,48.211536800000005],[16.4097034,48.21149550000004],[16.4101962,48.21138640000001],[16.4103298,48.211373699999996]]},"properties":{"access":"no","bicycle":"yes","bus":"designated","foot":"yes","highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Südportalstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"338305455","geometry":{"type":"LineString","coordinates":[[16.410573,48.21137909999999],[16.4106828,48.2113995],[16.4107391,48.21143170000002],[16.4108084,48.211477099999996],[16.4115837,48.212149600000004],[16.4117187,48.21226659999999],[16.4117989,48.21233620000001],[16.4118527,48.212382899999994],[16.4119675,48.212482499999965],[16.4122562,48.2127328],[16.412473,48.2129209],[16.4125103,48.21295319999999],[16.4125335,48.21297340000001],[16.412625,48.21305269999999],[16.4131837,48.213524500000005],[16.4133539,48.213636399999956],[16.4135021,48.2137113],[16.4137507,48.213808400000005],[16.4139311,48.21385720000001],[16.4140935,48.21388809999999],[16.4146087,48.21395050000001],[16.4146865,48.213967499999995],[16.414777,48.2139918],[16.415093,48.21425380000002],[16.4151704,48.21431369999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Trabrennstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"396260229","geometry":{"type":"LineString","coordinates":[[16.410573,48.21137909999999],[16.4105463,48.211400999999995],[16.4105109,48.21141639999999],[16.4104702,48.211423999999994],[16.4104279,48.21142299999997],[16.4103881,48.21141370000001],[16.4103543,48.211396699999995],[16.4103298,48.211373699999996]]},"properties":{"bicycle":"yes","bus":"yes","highway":"residential","junction":"roundabout","maxspeed":"30","motor_vehicle":"no","name":"Südportalstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4435658","geometry":{"type":"LineString","coordinates":[[16.4093024,48.211603800000006],[16.4092667,48.211586600000004],[16.4092521,48.21157360000001]]},"properties":{"highway":"footway","motor_vehicle":"no","name":"Rotundenplatz"}},{"type":"Feature","id":"4688457","geometry":{"type":"LineString","coordinates":[[16.4087562,48.21151499999999],[16.4090122,48.2113775],[16.4092715,48.21123850000001],[16.4100167,48.210845500000005]]},"properties":{"access":"no","bicycle":"yes","foot":"yes","highway":"unclassified","maxspeed":"50","motor_vehicle":"no","name":"Rotundenplatz","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"338305456","geometry":{"type":"LineString","coordinates":[[16.4103298,48.211373699999996],[16.410318,48.2113511],[16.4103154,48.211327299999994],[16.410322,48.211303799999996],[16.4103374,48.2112822],[16.4103607,48.21126400000003],[16.4103902,48.21125039999998],[16.4104239,48.21124230000001],[16.4104617,48.211240299999986],[16.4104989,48.21124520000001],[16.4105327,48.21125660000001],[16.4105605,48.21127369999999],[16.4105804,48.211295199999995],[16.4105907,48.2113195],[16.4105916,48.21134009999997],[16.4105856,48.21136029999997],[16.410573,48.21137909999999]]},"properties":{"bicycle":"yes","bus":"yes","highway":"residential","junction":"roundabout","maxspeed":"30","motor_vehicle":"no","name":"Südportalstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"327969783","geometry":{"type":"LineString","coordinates":[[16.4115837,48.212149600000004],[16.4113589,48.2122306],[16.4107366,48.21227479999999],[16.410495,48.2122919],[16.4082458,48.21311650000001],[16.4078721,48.213558000000006],[16.406471,48.21471940000001],[16.4062342,48.215195600000015],[16.4061058,48.21545370000001],[16.4057506,48.21589130000001],[16.4056627,48.21599950000001]]},"properties":{"highway":"pedestrian","name":"Welthandelsplatz","source":"at:vienna:orthofoto"}},{"type":"Feature","id":"338305460","geometry":{"type":"LineString","coordinates":[[16.4053732,48.21418249999999],[16.4054888,48.21410170000004],[16.4055455,48.214065300000016],[16.4056644,48.213999900000005],[16.4073281,48.213122699999985],[16.4078567,48.212841200000014],[16.40808,48.21272440000001],[16.4083596,48.212547900000004]]},"properties":{"access":"no","bicycle":"yes","bus":"designated","foot":"yes","highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Südportalstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"251555420","geometry":{"type":"LineString","coordinates":[[16.405657,48.21050220000001],[16.4056907,48.21031429999999],[16.405699,48.21027079999999],[16.4057059,48.2102347],[16.4057053,48.2101816],[16.4056372,48.210089100000005]]},"properties":{"highway":"service","maxspeed":"50","name":"Waldsteingartenstraße"}},{"type":"Feature","id":"164578772","geometry":{"type":"LineString","coordinates":[[16.4020324,48.21340040000001],[16.4021477,48.2133704],[16.4028304,48.21310869999999],[16.4030763,48.212961800000016],[16.4030753,48.212960100000004],[16.4030318,48.2128884],[16.4028128,48.212578199999996],[16.4024145,48.212096599999995],[16.4025146,48.2120611],[16.4029757,48.2125657],[16.4032924,48.212885099999994],[16.4030753,48.212960100000004]]},"properties":{"highway":"service","name":"Eduard-Lang-Weg","oneway":"yes"}},{"type":"Feature","id":"164578817","geometry":{"type":"LineString","coordinates":[[16.3991723,48.21209780000001],[16.3994061,48.212376999999975],[16.3994131,48.21243870000001],[16.3994237,48.21247060000002],[16.3995576,48.21262360000003],[16.399649,48.212699799999996],[16.3997104,48.21271970000001],[16.3998297,48.21279150000001],[16.3998635,48.2128218],[16.3999229,48.212875]]},"properties":{"highway":"footway","name":"Rustenschacherallee"}},{"type":"Feature","id":"111438811","geometry":{"type":"LineString","coordinates":[[16.4024145,48.212096599999995],[16.4023471,48.21203169999998],[16.4022948,48.21197080000002],[16.4022138,48.2118845]]},"properties":{"highway":"footway","name":"Eduard-Lang-Weg"}},{"type":"Feature","id":"188261037","geometry":{"type":"LineString","coordinates":[[16.4027876,48.20998449999999],[16.402903,48.209969]]},"properties":{"bridge":"yes","highway":"footway","layer":"1","name":"Konstantinsteg"}},{"type":"Feature","id":"164578779","geometry":{"type":"LineString","coordinates":[[16.4031124,48.213616],[16.4032771,48.213605200000046],[16.4034985,48.213545700000026],[16.4040227,48.21334809999999],[16.4040943,48.2133211],[16.4043845,48.213138000000015],[16.4045252,48.213051500000006],[16.4049789,48.2127557],[16.4050947,48.21266319999998],[16.4052751,48.21251910000001],[16.4054582,48.21227400000001],[16.405639,48.2119155],[16.4058648,48.2114866],[16.4058972,48.2113727],[16.4059549,48.211170100000004],[16.4059374,48.2110361],[16.4058636,48.2109456],[16.4058367,48.21091960000001],[16.4057625,48.21084200000004],[16.4057283,48.21080620000001],[16.4056507,48.21063129999999],[16.405657,48.21050220000001]]},"properties":{"foot":"yes","highway":"service","maxspeed":"10","name":"Waldsteingartenstraße","noexit":"yes","source:maxspeed":"AT:zone:10"}},{"type":"Feature","id":"352525328","geometry":{"type":"LineString","coordinates":[[16.4070153,48.209692599999954],[16.4068736,48.20966949999999],[16.4066911,48.2096645],[16.4065544,48.20966229999996],[16.4064258,48.20967540000001]]},"properties":{"highway":"unclassified","maxspeed":"50","motor_vehicle":"no","name":"Kaiserallee","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"188148465","geometry":{"type":"LineString","coordinates":[[16.4090122,48.2113775],[16.4088378,48.211224499999986],[16.4081776,48.21066700000003],[16.4079261,48.21046340000001],[16.407148,48.2098039],[16.4071335,48.209791199999984],[16.4070153,48.209692599999954],[16.4068693,48.20957099999998],[16.4067711,48.209494300000046]]},"properties":{"access":"no","bicycle":"yes","foot":"yes","highway":"unclassified","maxspeed":"50","motor_vehicle":"no","name":"Kaiserallee","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"24601365","geometry":{"type":"LineString","coordinates":[[16.400625,48.2062397],[16.4008202,48.20625439999998],[16.4044371,48.206570899999974],[16.4045474,48.206587600000006],[16.4046554,48.206613300000015],[16.4047578,48.206649899999974],[16.4048426,48.206700299999966],[16.4050505,48.206873400000006],[16.4051859,48.2069984],[16.4054872,48.20727629999999],[16.4055964,48.20737919999999],[16.4057587,48.20758710000001],[16.4058227,48.207705800000014],[16.4058612,48.207832300000035],[16.405988,48.208303099999995],[16.4060637,48.20858709999999],[16.4061227,48.208814700000005],[16.406159,48.20888869999999],[16.4062069,48.20895860000002],[16.4062626,48.209022000000004],[16.4066319,48.209353400000026],[16.406687,48.20940920000001],[16.4067711,48.209494300000046]]},"properties":{"bicycle":"yes","foot":"yes","highway":"unclassified","maxspeed":"50","motor_vehicle":"no","name":"Rotundenallee"}},{"type":"Feature","id":"22358084","geometry":{"type":"LineString","coordinates":[[16.4025738,48.211695700000035],[16.4025549,48.21157959999999],[16.4025331,48.211496400000016],[16.4025076,48.2114301],[16.4024708,48.211334499999964],[16.4023618,48.211121599999984],[16.4021662,48.21101540000001],[16.4020273,48.21089169999999],[16.4019452,48.21077439999999],[16.4018849,48.21067070000001],[16.401773,48.2103309],[16.4016447,48.20974939999999],[16.4014776,48.20938610000002],[16.4012852,48.209038599999985],[16.4008988,48.20861690000001],[16.400622,48.208287299999995],[16.4005157,48.20806240000002],[16.4004296,48.207795799999985],[16.4003514,48.20735650000003],[16.4001452,48.207134199999985],[16.4000712,48.207100800000006],[16.3999444,48.207047999999986]]},"properties":{"bicycle":"no","foot":"yes","highway":"track","name":"Laternenweg","source:bicycle":"survey","surface":"asphalt","tracktype":"grade1","vehicle":"no"}},{"type":"Feature","id":"5011861","geometry":{"type":"LineString","coordinates":[[16.39876,48.214737299999996],[16.3990158,48.214939500000014],[16.3992933,48.2151035],[16.3993327,48.21512680000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Jantschweg"}},{"type":"Feature","id":"5075646","geometry":{"type":"LineString","coordinates":[[16.399011,48.21356420000001],[16.3990945,48.21364890000001],[16.3991772,48.2137214],[16.3996244,48.21411309999999],[16.399657,48.21414179999999],[16.3996817,48.214162800000025],[16.3997487,48.21422229999999],[16.3999674,48.214415100000025],[16.4002638,48.21467180000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Hans-Kraus-Weg"}},{"type":"Feature","id":"5075797","geometry":{"type":"LineString","coordinates":[[16.3982061,48.21398629999999],[16.3982812,48.21407529999999],[16.398353,48.214157099999994],[16.3985034,48.21432850000002],[16.3985995,48.21446320000001],[16.3986709,48.2145927],[16.3986867,48.21461599999998],[16.39876,48.214737299999996]]},"properties":{"highway":"pedestrian","name":"Jantschweg"}},{"type":"Feature","id":"5011849","geometry":{"type":"LineString","coordinates":[[16.401428,48.21433450000001],[16.4010913,48.214403800000014],[16.4006049,48.21454769999997],[16.4002638,48.21467180000002],[16.3999713,48.21480009999996],[16.3995949,48.2149823],[16.3994158,48.215081],[16.3993327,48.21512680000001],[16.399269,48.21517330000003],[16.3989924,48.21537510000002],[16.398729,48.21563469999998],[16.3984287,48.21605679999999],[16.3982315,48.216296400000004],[16.3980319,48.21648619999999],[16.3977952,48.21664749999999],[16.397512,48.21685119999998],[16.3971247,48.21704760000003],[16.3965331,48.217281000000014],[16.3963129,48.2173612],[16.3962513,48.2173636]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Straße des Ersten Mai"}},{"type":"Feature","id":"230254205","geometry":{"type":"LineString","coordinates":[[16.3953996,48.21461450000001],[16.3955191,48.21461669999999],[16.395728,48.21460110000001],[16.3958836,48.214575800000006],[16.3959753,48.214537300000046],[16.3960307,48.21450709999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Vivariumstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4688445","geometry":{"type":"LineString","coordinates":[[16.3961445,48.2150675],[16.3961136,48.2149517],[16.3961036,48.21487659999997],[16.3961145,48.21457179999999],[16.3960767,48.21453389999999],[16.3960307,48.21450709999999]]},"properties":{"highway":"residential","maxspeed":"30","motor_vehicle":"no","name":"Sportklubstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148828","geometry":{"type":"LineString","coordinates":[[16.3960307,48.21450709999999],[16.3960902,48.21445],[16.3961617,48.2143586],[16.3962708,48.214229399999994],[16.396541,48.213905100000005],[16.3969615,48.213408799999996]]},"properties":{"fixme":"maxspeed","highway":"residential","maxspeed":"30","name":"Sportklubstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5011882","geometry":{"type":"LineString","coordinates":[[16.4008198,48.213644999999985],[16.4002,48.213957600000015],[16.3997487,48.21422229999999],[16.3994452,48.21439649999999],[16.3988645,48.214685299999985],[16.39876,48.214737299999996],[16.3985859,48.21505239999996],[16.3983122,48.21539150000001],[16.3980876,48.215618000000006],[16.3977121,48.215976299999994],[16.3976686,48.21601849999996],[16.3972269,48.21641779999999],[16.3970797,48.216534300000006],[16.3970503,48.21655720000001],[16.3967871,48.216756299999986],[16.3965998,48.21682630000001],[16.3965374,48.21684920000001],[16.3963919,48.2168992],[16.396293,48.216980699999965],[16.3961571,48.2171213],[16.3961035,48.2171731]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Eduard-Lang-Weg"}},{"type":"Feature","id":"472381899","geometry":{"type":"LineString","coordinates":[[16.3982061,48.21398629999999],[16.3973204,48.21445079999998],[16.3965204,48.214870399999995],[16.3964532,48.2149057],[16.3961445,48.2150675],[16.3960109,48.21513759999999],[16.3958057,48.2152452],[16.3956828,48.21530960000001],[16.3950782,48.2156267],[16.394835,48.215754300000015],[16.3943774,48.21599420000001],[16.3937249,48.21633639999999],[16.3930655,48.21668220000001]]},"properties":{"bicycle":"yes","foot":"yes","highway":"residential","horse":"yes","lanes":"2","maxspeed":"50","motor_vehicle":"no","name":"Hauptallee","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"328570485","geometry":{"type":"LineString","coordinates":[[16.3959278,48.21434609999997],[16.3959537,48.214351799999974],[16.3959812,48.21435450000001],[16.3961107,48.21435869999999],[16.3961617,48.2143586],[16.3962667,48.2143619],[16.3964073,48.214366299999966],[16.3965681,48.2143753],[16.3967618,48.214380699999964],[16.3969082,48.21437980000002],[16.3969653,48.2143811],[16.3969896,48.214388499999984],[16.3970146,48.214400299999994],[16.3971361,48.214414499999975],[16.3973204,48.21445079999998]]},"properties":{"highway":"footway","name":"Vivariumstraße"}},{"type":"Feature","id":"24522425","geometry":{"type":"LineString","coordinates":[[16.3946609,48.21240499999999],[16.3958456,48.212925299999995]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Laufbergergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148847","geometry":{"type":"LineString","coordinates":[[16.3958456,48.212925299999995],[16.3968632,48.213366199999996],[16.3969615,48.213408799999996]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Laufbergergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"46738182","geometry":{"type":"LineString","coordinates":[[16.398757,48.20701589999999],[16.3989013,48.206351799999965]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Böcklinstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522419","geometry":{"type":"LineString","coordinates":[[16.3979076,48.20691149999999],[16.398757,48.20701589999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tiergartenstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522422","geometry":{"type":"LineString","coordinates":[[16.3985086,48.207985500000035],[16.3991459,48.208069799999976],[16.3993265,48.208102199999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sellenygasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"164578800","geometry":{"type":"LineString","coordinates":[[16.3991723,48.21209780000001],[16.3989896,48.21177499999999],[16.3988096,48.21170040000001]]},"properties":{"highway":"footway","name":"Rustenschacherallee"}},{"type":"Feature","id":"29100950","geometry":{"type":"LineString","coordinates":[[16.3978329,48.21000480000001],[16.3987632,48.21013020000001]]},"properties":{"bicycle":"yes","highway":"footway","name":"Josef-Gall-Gasse"}},{"type":"Feature","id":"46738180","geometry":{"type":"LineString","coordinates":[[16.400625,48.2062397],[16.4005014,48.206279600000016],[16.3990488,48.206155300000006],[16.3989524,48.20614810000001]]},"properties":{"bicycle":"yes","cycleway":"lane","foot":"use_sidepath","highway":"residential","lcn":"yes","maxspeed":"50","name":"Wittelsbachstraße","oneway":"yes"}},{"type":"Feature","id":"46738179","geometry":{"type":"LineString","coordinates":[[16.3989013,48.206351799999965],[16.3989412,48.2061928],[16.3989524,48.20614810000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Böcklinstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522434","geometry":{"type":"LineString","coordinates":[[16.3989303,48.21150270000001],[16.3988277,48.21118310000003],[16.3987513,48.21079019999999],[16.3987632,48.21013020000001],[16.3988014,48.20976910000002],[16.3988945,48.209339700000015],[16.3990544,48.20878779999998],[16.3993265,48.208102199999985],[16.3996355,48.20754170000001],[16.3999444,48.207047999999986],[16.4001141,48.20679540000003],[16.40032,48.206567199999995],[16.4005294,48.206333099999995],[16.400625,48.2062397]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rustenschacherallee","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"46738181","geometry":{"type":"LineString","coordinates":[[16.3980181,48.206072999999975],[16.3980106,48.2061319],[16.3980001,48.2062152],[16.3979914,48.20627970000001],[16.3979874,48.20631079999998],[16.3979076,48.20691149999999]]},"properties":{"highway":"primary","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"9704966","geometry":{"type":"LineString","coordinates":[[16.3989524,48.20614810000001],[16.3989592,48.20612310000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Böcklinstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"474636906","geometry":{"type":"LineString","coordinates":[[16.4005294,48.206333099999995],[16.3996197,48.206250600000004],[16.3991222,48.206209900000005],[16.3990389,48.20620199999999],[16.3989412,48.2061928],[16.3988275,48.206183399999986],[16.3981496,48.20612729999999],[16.398106,48.20613130000001],[16.3980106,48.2061319]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Wittelsbachstraße"}},{"type":"Feature","id":"24522421","geometry":{"type":"LineString","coordinates":[[16.3967428,48.20983410000002],[16.3978329,48.21000480000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Josef-Gall-Gasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148842","geometry":{"type":"LineString","coordinates":[[16.3969615,48.213408799999996],[16.3970129,48.213359],[16.3977957,48.21262350000001],[16.3985007,48.21198150000001],[16.3988096,48.21170040000001],[16.3989064,48.211596600000036],[16.3989303,48.21150270000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sportklubstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"12527195","geometry":{"type":"LineString","coordinates":[[16.3977957,48.21262350000001],[16.3966041,48.212117000000006],[16.395443,48.21161510000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kurzbauergasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522420","geometry":{"type":"LineString","coordinates":[[16.3977059,48.2078832],[16.3985086,48.207985500000035]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sellenygasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9824872","geometry":{"type":"LineString","coordinates":[[16.3958456,48.212925299999995],[16.3965254,48.21219780000001],[16.3966041,48.212117000000006],[16.3972948,48.21140070000004],[16.3973904,48.211253399999975],[16.3978329,48.21000480000001],[16.3978907,48.209837299999975],[16.3985086,48.207985500000035],[16.398757,48.20701589999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Böcklinstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"474636903","geometry":{"type":"LineString","coordinates":[[16.3980106,48.2061319],[16.3979162,48.2061362],[16.3978264,48.206099600000016],[16.3976433,48.20608440000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rotundenbrücke"}},{"type":"Feature","id":"479131593","geometry":{"type":"LineString","coordinates":[[16.3939516,48.209637499999985],[16.3940514,48.20968850000003],[16.3949545,48.210003099999994]]},"properties":{"cycleway":"opposite_track","highway":"residential","maxspeed":"30","name":"Custozzagasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"96929334","geometry":{"type":"LineString","coordinates":[[16.3942951,48.207695],[16.394729,48.20777410000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kegelgasse","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"8053415","geometry":{"type":"LineString","coordinates":[[16.3935422,48.20755270000001],[16.3935829,48.207565999999986]]},"properties":{"highway":"pedestrian","name":"Kegelgasse"}},{"type":"Feature","id":"96929325","geometry":{"type":"LineString","coordinates":[[16.394729,48.20777410000002],[16.3957159,48.20796580000001],[16.3958924,48.20799370000003],[16.3959574,48.20800400000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kegelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9653530","geometry":{"type":"LineString","coordinates":[[16.3945638,48.20815870000001],[16.3933777,48.20794839999999],[16.3932893,48.20794160000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blütengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"68986326","geometry":{"type":"LineString","coordinates":[[16.3934021,48.2066045],[16.393969,48.20675909999997],[16.3940468,48.20678029999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rudolf-von-Alt-Platz","note":"offizieller Name, Straßenschild noch ohne -","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Rudolf von Alt"}},{"type":"Feature","id":"68986321","geometry":{"type":"LineString","coordinates":[[16.393295,48.20680489999998],[16.3932719,48.20674710000003],[16.3933322,48.20664120000001],[16.3934021,48.2066045]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rudolf-von-Alt-Platz","note":"offizieller Name, Straßenschild noch ohne -","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Rudolf von Alt"}},{"type":"Feature","id":"9704326","geometry":{"type":"LineString","coordinates":[[16.39393,48.206958799999995],[16.3938531,48.20694019999999],[16.393295,48.20680489999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rudolf-von-Alt-Platz","note":"offizieller Name, Straßenschild noch ohne -","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Rudolf von Alt"}},{"type":"Feature","id":"178446495","geometry":{"type":"LineString","coordinates":[[16.396054,48.20734540000001],[16.3955496,48.207303999999965],[16.3950808,48.207183799999996],[16.3949743,48.2071416]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paracelsusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8053414","geometry":{"type":"LineString","coordinates":[[16.3939921,48.2068711],[16.3940624,48.206890499999986],[16.3949743,48.2071416]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paracelsusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9293132","geometry":{"type":"LineString","coordinates":[[16.3980181,48.206072999999975],[16.397831,48.20606299999997],[16.3976493,48.20605259999999]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lcn":"yes","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes"}},{"type":"Feature","id":"10363007","geometry":{"type":"LineString","coordinates":[[16.3989524,48.20614810000001],[16.3988377,48.206139399999984],[16.3981552,48.206084299999986],[16.3980181,48.206072999999975]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"residential","lcn":"yes","maxspeed":"50","name":"Wittelsbachstraße","oneway":"yes"}},{"type":"Feature","id":"353000985","geometry":{"type":"LineString","coordinates":[[16.3980276,48.2059792],[16.3980181,48.206072999999975]]},"properties":{"highway":"primary","lanes":"3","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"353000983","geometry":{"type":"LineString","coordinates":[[16.3980276,48.2059792],[16.3981672,48.205991900000015],[16.3988581,48.20605160000002],[16.3989755,48.206061799999986],[16.3990669,48.20607050000001],[16.4005176,48.206196500000004],[16.400625,48.2062397]]},"properties":{"bicycle":"yes","cycleway":"lane","foot":"use_sidepath","highway":"residential","lcn":"yes","maxspeed":"50","name":"Wittelsbachstraße","oneway":"yes"}},{"type":"Feature","id":"474636909","geometry":{"type":"LineString","coordinates":[[16.3980339,48.205927],[16.3978813,48.2059155],[16.3978477,48.20592979999998],[16.3976694,48.20591200000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rotundenbrücke"}},{"type":"Feature","id":"474636912","geometry":{"type":"LineString","coordinates":[[16.4008581,48.20617920000001],[16.4006783,48.2061612],[16.3996514,48.2060798],[16.3991544,48.2060362],[16.3990759,48.206028],[16.3989942,48.2060195],[16.398868,48.206009300000005],[16.3981723,48.205953100000016],[16.3981455,48.20593610000003],[16.3980339,48.205927]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Wittelsbachstraße"}},{"type":"Feature","id":"353000986","geometry":{"type":"LineString","coordinates":[[16.3976902,48.205947699999996],[16.3978437,48.205962],[16.3980276,48.2059792]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lcn":"yes","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes"}},{"type":"Feature","id":"474636904","geometry":{"type":"LineString","coordinates":[[16.3968111,48.20601550000001],[16.3965633,48.20600000000002]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rotundenbrücke"}},{"type":"Feature","id":"474636905","geometry":{"type":"LineString","coordinates":[[16.3976433,48.20608440000001],[16.3968111,48.20601550000001]]},"properties":{"bridge":"yes","footway":"sidewalk","highway":"footway","name":"Rotundenbrücke"}},{"type":"Feature","id":"9293130","geometry":{"type":"LineString","coordinates":[[16.3976493,48.20605259999999],[16.3968175,48.2059831]]},"properties":{"bridge":"yes","cycleway":"track","foot":"use_sidepath","highway":"tertiary","layer":"1","lcn":"yes","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes"}},{"type":"Feature","id":"100664200","geometry":{"type":"LineString","coordinates":[[16.396569,48.205973099999994],[16.3965171,48.2059687],[16.3963438,48.20595270000001]]},"properties":{"cycleway:right":"lane","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"8053409","geometry":{"type":"LineString","coordinates":[[16.3968175,48.2059831],[16.396569,48.205973099999994]]},"properties":{"cycleway":"track","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"353000984","geometry":{"type":"LineString","coordinates":[[16.3963657,48.20584629999999],[16.3965362,48.205856100000005],[16.3965996,48.20585840000001],[16.3968426,48.205876200000006]]},"properties":{"cycleway":"track","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"353000982","geometry":{"type":"LineString","coordinates":[[16.3968426,48.205876200000006],[16.3976902,48.205947699999996]]},"properties":{"bridge":"yes","cycleway":"track","foot":"use_sidepath","highway":"tertiary","layer":"1","lcn":"yes","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes"}},{"type":"Feature","id":"434004982","geometry":{"type":"LineString","coordinates":[[16.3963438,48.20595270000001],[16.3963526,48.20590729999998]]},"properties":{"highway":"primary","lanes":"3","maxspeed":"50","name":"Erdberger Lände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"474636910","geometry":{"type":"LineString","coordinates":[[16.3968272,48.20583779999998],[16.3966096,48.205820200000005]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rotundenbrücke"}},{"type":"Feature","id":"474636911","geometry":{"type":"LineString","coordinates":[[16.3976694,48.20591200000001],[16.3968272,48.20583779999998]]},"properties":{"bridge":"yes","footway":"sidewalk","highway":"footway","name":"Rotundenbrücke"}},{"type":"Feature","id":"10362994","geometry":{"type":"LineString","coordinates":[[16.3963438,48.20595270000001],[16.3962019,48.20593890000001],[16.3960511,48.205922999999984],[16.3958721,48.2059089],[16.3955174,48.20585599999998],[16.3954383,48.205844299999995]]},"properties":{"cycleway:right":"lane","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"234005308","geometry":{"type":"LineString","coordinates":[[16.3932893,48.20794160000003],[16.3935036,48.2076108],[16.3935422,48.20755270000001],[16.3936095,48.2074494],[16.39393,48.206958799999995],[16.3939921,48.2068711],[16.3940468,48.20678029999999],[16.3943815,48.206265599999995],[16.3946069,48.2059204]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Löwengasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"268591387","geometry":{"type":"LineString","coordinates":[[16.3939618,48.211362399999985],[16.3941264,48.21118709999999],[16.3942542,48.21103000000002],[16.394542,48.21065820000001],[16.3947368,48.21034879999999],[16.3949545,48.210003099999994],[16.3952216,48.2095281],[16.3955704,48.20886860000002],[16.3958368,48.208339000000024],[16.3959574,48.20800400000002],[16.396054,48.20734540000001],[16.396145,48.20691260000001],[16.396285,48.20632890000002],[16.3963312,48.206030699999985],[16.3963438,48.20595270000001]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Weißgerberlände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"219446231","geometry":{"type":"LineString","coordinates":[[16.3952546,48.20580240000001],[16.3950361,48.205757199999994],[16.3949039,48.20572799999999],[16.3948965,48.20572630000001]]},"properties":{"cycleway:right":"lane","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"474636892","geometry":{"type":"LineString","coordinates":[[16.3961885,48.206003899999985],[16.3961234,48.205974999999995],[16.3957704,48.20592719999999],[16.3954303,48.20587699999999],[16.3949885,48.20580429999998],[16.3948155,48.2057748],[16.3947927,48.20578100000003]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rasumofskygasse"}},{"type":"Feature","id":"304693007","geometry":{"type":"LineString","coordinates":[[16.3954383,48.205844299999995],[16.3952546,48.20580240000001]]},"properties":{"cycleway:right":"lane","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"10276713","geometry":{"type":"LineString","coordinates":[[16.3947283,48.20567790000001],[16.394588,48.20566629999999],[16.3945164,48.2056604],[16.3941592,48.20562380000001]]},"properties":{"cycleway":"lane","highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"353000987","geometry":{"type":"LineString","coordinates":[[16.3947283,48.20567790000001],[16.3948712,48.20566370000003],[16.3952413,48.20569950000001],[16.3960406,48.205817499999995],[16.3962237,48.20583340000002],[16.3963657,48.20584629999999]]},"properties":{"cycleway:right":"lane","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"428879764","geometry":{"type":"LineString","coordinates":[[16.3948965,48.20572630000001],[16.3947283,48.20567790000001]]},"properties":{"cycleway:right":"lane","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"219446232","geometry":{"type":"LineString","coordinates":[[16.3946069,48.2059204],[16.3946956,48.20576650000004],[16.3947263,48.205713299999985],[16.3947283,48.20567790000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Löwengasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5196236","geometry":{"type":"LineString","coordinates":[[16.4179251,48.2036397],[16.4180338,48.20371320000001],[16.4180838,48.20374780000003],[16.4181091,48.20376350000001],[16.4182323,48.203840100000036],[16.418838,48.2042352],[16.4197172,48.20480889999999],[16.4203313,48.20519999999996],[16.4217331,48.2060984],[16.4220538,48.20631879999999],[16.4222751,48.20652930000003],[16.4224292,48.2066758],[16.4226041,48.20685359999999],[16.4227666,48.20717469999997],[16.4227756,48.20774260000002],[16.4230925,48.2077644],[16.4234935,48.20783549999999],[16.4233845,48.207965],[16.4231319,48.20813659999999],[16.4231585,48.20817890000001],[16.4231913,48.2084098]]},"properties":{"highway":"pedestrian","name":"Marathonweg"}},{"type":"Feature","id":"237133166","geometry":{"type":"LineString","coordinates":[[16.4168545,48.204546300000004],[16.4170235,48.2047465],[16.4173803,48.20517190000001],[16.4176324,48.20546150000001],[16.4180293,48.20593880000001],[16.4181967,48.206228899999985]]},"properties":{"bicycle":"yes","busway":"lane","cycleway":"share_busway","foot":"no","highway":"tertiary","lanes":"2","maxspeed":"50","name":"Meiereistraße","oneway":"yes","sidewalk":"none","surface":"asphalt"}},{"type":"Feature","id":"164139765","geometry":{"type":"LineString","coordinates":[[16.4181967,48.206228899999985],[16.4179703,48.206046000000015],[16.4176458,48.205636700000014],[16.4173654,48.205290399999996],[16.417045,48.20493059999998],[16.4168906,48.20477299999999],[16.416709,48.204632499999974]]},"properties":{"bicycle":"yes","busway":"lane","cycleway":"share_busway","foot":"no","highway":"tertiary","lanes":"2","maxspeed":"50","name":"Meiereistraße","oneway":"yes","sidewalk":"none","surface":"asphalt"}},{"type":"Feature","id":"164139766","geometry":{"type":"LineString","coordinates":[[16.4164925,48.20439540000001],[16.4167174,48.204404899999986],[16.4168545,48.204546300000004]]},"properties":{"bicycle":"yes","busway":"lane","cycleway":"share_busway","foot":"no","highway":"tertiary","lanes":"2","maxspeed":"30","name":"Meiereistraße","oneway":"yes","sidewalk":"none","source:maxspeed":"sign","surface":"asphalt"}},{"type":"Feature","id":"237133165","geometry":{"type":"LineString","coordinates":[[16.416709,48.204632499999974],[16.4166729,48.20460849999998],[16.4165572,48.204489499999994],[16.4164925,48.20439540000001]]},"properties":{"bicycle":"yes","busway":"lane","cycleway":"share_busway","foot":"no","highway":"tertiary","lanes":"2","maxspeed":"30","name":"Meiereistraße","oneway":"yes","sidewalk":"none","source:maxspeed":"sign","surface":"asphalt"}},{"type":"Feature","id":"237133167","geometry":{"type":"LineString","coordinates":[[16.4161719,48.204105],[16.4163369,48.20426499999999],[16.4164,48.20431780000001],[16.4164925,48.20439540000001]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Stadionallee"}},{"type":"Feature","id":"24601364","geometry":{"type":"LineString","coordinates":[[16.4151235,48.202013300000004],[16.4152656,48.201892799999996],[16.4156129,48.201579699999996]]},"properties":{"bus":"yes","highway":"residential","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Lusthausstraße","noexit":"yes","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29340553","geometry":{"type":"LineString","coordinates":[[16.4175135,48.20278300000001],[16.4176256,48.202579199999974]]},"properties":{"bridge":"yes","created_by":"Potlatch 0.10f","highway":"footway","name":"Heustadlsteg","note":"Name fraglich /al"}},{"type":"Feature","id":"38149079","geometry":{"type":"LineString","coordinates":[[16.4156129,48.201579699999996],[16.4157408,48.20212179999996],[16.4157547,48.20242580000004],[16.4157658,48.20315789999998],[16.4158437,48.2034841],[16.4159939,48.20386410000003],[16.4161499,48.204077900000016],[16.4161719,48.204105]]},"properties":{"bus":"yes","highway":"tertiary","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Stadionallee","source:maxspeed":"sign"}},{"type":"Feature","id":"194460282","geometry":{"type":"LineString","coordinates":[[16.4149299,48.20020720000002],[16.4154158,48.20096990000002],[16.4156129,48.201579699999996]]},"properties":{"bus":"yes","highway":"tertiary","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Stadionallee","source:maxspeed":"sign"}},{"type":"Feature","id":"153846342","geometry":{"type":"LineString","coordinates":[[16.4194983,48.1988752],[16.4198674,48.198735699999986],[16.420022,48.19866590000004],[16.4202049,48.19858339999999],[16.4208745,48.19822959999999],[16.4212225,48.198080900000036],[16.4227893,48.19761840000004]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"50","motor_vehicle":"no","name":"Lusthausstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"30062059","geometry":{"type":"LineString","coordinates":[[16.4156129,48.201579699999996],[16.4157587,48.201425700000016],[16.4159762,48.20134289999996],[16.4163019,48.20122190000001],[16.4168936,48.20104470000001],[16.4172961,48.200928799999986],[16.4174814,48.2008362],[16.4176,48.2006901],[16.4176539,48.20038840000001],[16.4177473,48.19991460000003],[16.4178655,48.19974210000001],[16.4180815,48.19953340000001],[16.4182909,48.1994023],[16.4185738,48.199246500000015],[16.4194983,48.1988752]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lusthausstraße","noexit":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"206463409","geometry":{"type":"LineString","coordinates":[[16.4256221,48.19957499999998],[16.4235218,48.200683999999995],[16.4231496,48.20088049999998],[16.4230003,48.20095939999996],[16.4201049,48.202488199999976],[16.4179251,48.2036397],[16.4177664,48.20372279999998],[16.4170294,48.20411189999999],[16.4166815,48.204295599999995],[16.4164925,48.20439540000001]]},"properties":{"bicycle":"yes","foot":"yes","highway":"residential","lanes":"2","maxspeed":"50","motor_vehicle":"no","name":"Hauptallee","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"194460280","geometry":{"type":"LineString","coordinates":[[16.4149039,48.200167599999986],[16.4149299,48.20020720000002]]},"properties":{"bus":"yes","highway":"tertiary","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Stadionallee","source:maxspeed":"sign"}},{"type":"Feature","id":"305315949","geometry":{"type":"LineString","coordinates":[[16.4145544,48.202663],[16.4144942,48.202817700000026],[16.4147639,48.20317890000001],[16.4149153,48.20344829999999],[16.4150138,48.203710099999995],[16.4150531,48.20386159999998],[16.41508,48.203988899999985],[16.4151053,48.20410900000002],[16.4151905,48.20453450000002],[16.4152079,48.204775100000006],[16.4152076,48.20486199999999]]},"properties":{"highway":"track","name":"Rustenschacherallee","tracktype":"grade2","vehicle":"no"}},{"type":"Feature","id":"305315948","geometry":{"type":"LineString","coordinates":[[16.4139852,48.20211459999999],[16.4141648,48.20214440000001],[16.4143812,48.20216260000001],[16.4145704,48.2021537],[16.4147587,48.20213039999999],[16.4149351,48.2020799],[16.4151235,48.202013300000004]]},"properties":{"bus":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Lusthausstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24601363","geometry":{"type":"LineString","coordinates":[[16.4098581,48.20142630000001],[16.4101431,48.20131889999996],[16.4104078,48.2012613],[16.4105323,48.20123369999999],[16.4113161,48.201174699999996],[16.4119665,48.20119940000001],[16.412207,48.201236300000005],[16.4124467,48.20129270000001],[16.4129004,48.20144970000001],[16.4136731,48.201957799999974],[16.4138415,48.20206160000001],[16.4139852,48.20211459999999]]},"properties":{"bus":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Rustenschacherallee","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"199204966","geometry":{"type":"LineString","coordinates":[[16.4101682,48.198491399999995],[16.4101272,48.198588700000045]]},"properties":{"highway":"motorway_link","int_ref":"E 58","lanes":"2","maxspeed":"50","name":"Ostautobahn","oneway":"yes","placement":"transition","ref":"A4","source:maxspeed":"sign"}},{"type":"Feature","id":"199204970","geometry":{"type":"LineString","coordinates":[[16.4102282,48.1985176],[16.4101272,48.198588700000045]]},"properties":{"highway":"primary","lanes":"1","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","placement":"transition","ref":"B227"}},{"type":"Feature","id":"23087538","geometry":{"type":"LineString","coordinates":[[16.4098821,48.20081379999999],[16.410122,48.20094919999997],[16.410539,48.20065679999999],[16.4109251,48.2003861],[16.4113175,48.20011099999999],[16.41171,48.19983580000002],[16.4120996,48.19956260000001],[16.4124915,48.19928780000001],[16.4128775,48.199017200000014],[16.4132691,48.1987426],[16.4135535,48.19854320000002]]},"properties":{"highway":"residential","name":"Sillerweg"}},{"type":"Feature","id":"24845838","geometry":{"type":"LineString","coordinates":[[16.4098581,48.20142630000001],[16.4098501,48.20091719999999],[16.4098821,48.20081379999999],[16.4099651,48.200497600000034],[16.4100201,48.200330699999995],[16.41016,48.19990669999996],[16.4102816,48.19945820000004],[16.4103445,48.19922550000001],[16.4104021,48.199065099999984],[16.4105278,48.19871499999999],[16.4105754,48.19860840000001],[16.4107077,48.198312200000004],[16.4108332,48.198055899999986],[16.4108766,48.197967499999976],[16.4108893,48.19794150000001],[16.4110301,48.1976416],[16.4110758,48.197511399999996],[16.4110844,48.19738060000003]]},"properties":{"highway":"footway","name":"Polizeiweg","vehicle":"private"}},{"type":"Feature","id":"48555336","geometry":{"type":"LineString","coordinates":[[16.4105007,48.1975224],[16.4103276,48.198183900000004],[16.4102607,48.1983539],[16.4101682,48.198491399999995]]},"properties":{"highway":"motorway_link","int_ref":"E 58","lanes":"2","maxspeed":"50","name":"Ostautobahn","oneway":"yes","ref":"A4","source:maxspeed":"sign"}},{"type":"Feature","id":"23087533","geometry":{"type":"LineString","coordinates":[[16.4190502,48.196582500000005],[16.418624,48.19668519999999],[16.418225,48.196764],[16.4174334,48.19722100000001],[16.4164629,48.197755099999995],[16.4160996,48.19795500000001],[16.4158279,48.1981045],[16.4156566,48.19819530000001],[16.4152155,48.1984291],[16.4147745,48.19866300000001],[16.4145366,48.1987891],[16.414197,48.1989691],[16.4140453,48.199040499999995]]},"properties":{"highway":"footway","name":"Klaschkaweg"}},{"type":"Feature","id":"65192187","geometry":{"type":"LineString","coordinates":[[16.414437,48.19510159999999],[16.4157722,48.19601669999997],[16.4159759,48.196153399999986],[16.4167013,48.196643300000034],[16.4170675,48.1969335],[16.4174334,48.19722100000001],[16.4178012,48.19750959999999],[16.4181662,48.19779610000003],[16.4186663,48.19818860000001]]},"properties":{"highway":"footway","name":"Hofrat Krammer-Weg"}},{"type":"Feature","id":"29330144","geometry":{"type":"LineString","coordinates":[[16.4197846,48.196246],[16.4197812,48.196284899999995],[16.4197516,48.19657269999999],[16.4197641,48.196617599999996],[16.4198308,48.196656399999966],[16.4198743,48.1966984],[16.4199122,48.1968177],[16.4199181,48.1969503],[16.4198906,48.197194499999995],[16.4196987,48.197472999999974],[16.41944,48.19776150000004],[16.419368,48.19790040000001],[16.4193295,48.198038499999996],[16.4193478,48.19824969999999],[16.4193935,48.1984209],[16.4194983,48.1988752]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"30","name":"Wasserwiesenweg","source:maxspeed":"AT:zone:30","vehicle":"private"}},{"type":"Feature","id":"8106870","geometry":{"type":"LineString","coordinates":[[16.4113665,48.1970029],[16.4114592,48.19705060000001],[16.4114997,48.1970714],[16.4118903,48.1972926],[16.4119364,48.197327099999995],[16.4122978,48.19755399999997],[16.4128641,48.1979623],[16.4132034,48.198237199999994],[16.4135535,48.19854320000002],[16.4139157,48.198907399999996],[16.4140453,48.199040499999995],[16.4140459,48.19904130000003],[16.4141457,48.199151400000005],[16.4143447,48.199364900000006],[16.414673,48.199794499999996],[16.4147968,48.1999946],[16.4149039,48.200167599999986]]},"properties":{"bus":"yes","highway":"tertiary","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Stadionallee","source:maxspeed":"sign"}},{"type":"Feature","id":"148491897","geometry":{"type":"LineString","coordinates":[[16.4127111,48.19570670000002],[16.4124443,48.19586190000001],[16.4119987,48.196130900000014],[16.4115032,48.1964529],[16.4113208,48.1965874]]},"properties":{"destination":"Zentrum","destination:ref":"B227","destination:symbol":"centre","highway":"motorway","int_ref":"E 58","lanes":"2","maxspeed":"80","maxspeed:variable":"yes","name":"Ostautobahn","oneway":"yes","ref":"A4","toll":"yes"}},{"type":"Feature","id":"38147716","geometry":{"type":"LineString","coordinates":[[16.4113665,48.1970029],[16.4112799,48.19711989999999],[16.41125,48.197159700000014],[16.4111421,48.197304],[16.4110844,48.19738060000003],[16.4107065,48.19788220000001],[16.4105006,48.198155600000035],[16.4102282,48.1985176]]},"properties":{"highway":"primary","lanes":"1","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"416894283","geometry":{"type":"LineString","coordinates":[[16.4083645,48.19852290000003],[16.4085182,48.1983357],[16.4085482,48.19830060000001],[16.4089123,48.19787489999999],[16.4095734,48.1971532]]},"properties":{"highway":"motorway_link","int_ref":"E 58","lanes":"2","maxspeed":"70","name":"Ostautobahn","oneway":"yes","ref":"A4"}},{"type":"Feature","id":"9798194","geometry":{"type":"LineString","coordinates":[[16.4101987,48.19640829999997],[16.4103794,48.1964998],[16.4106941,48.1966592],[16.4109627,48.19679529999999],[16.4111798,48.1969053]]},"properties":{"bridge":"yes","highway":"primary","layer":"1","maxspeed":"50","name":"Stadionbrücke","surface":"concrete"}},{"type":"Feature","id":"152068974","geometry":{"type":"LineString","coordinates":[[16.4113208,48.1965874],[16.4111518,48.19672239999994],[16.410871,48.19697579999999],[16.4106345,48.197261],[16.4105007,48.1975224]]},"properties":{"highway":"motorway","int_ref":"E 58","lanes":"2","maxspeed":"50","name":"Ostautobahn","oneway":"yes","ref":"A4","source:maxspeed":"sign","toll":"yes"}},{"type":"Feature","id":"9797882","geometry":{"type":"LineString","coordinates":[[16.4111798,48.1969053],[16.4113665,48.1970029]]},"properties":{"highway":"primary","maxspeed":"50","name":"Stadionbrücke"}},{"type":"Feature","id":"48555355","geometry":{"type":"LineString","coordinates":[[16.4095734,48.1971532],[16.4100537,48.19664449999996],[16.4105984,48.196153699999996],[16.4112254,48.1956768],[16.4116188,48.195357400000006],[16.411907,48.19513349999997]]},"properties":{"highway":"motorway","int_ref":"E 58","lanes":"2","lit":"yes","maxspeed":"70","name":"Ostautobahn","oneway":"yes","ref":"A4","toll":"yes","turn:lanes":"through|through;right"}},{"type":"Feature","id":"188140545","geometry":{"type":"LineString","coordinates":[[16.4102738,48.1963207],[16.4104699,48.196419899999995],[16.4110596,48.1967181],[16.4113105,48.19684399999997]]},"properties":{"bridge":"yes","foot":"yes","highway":"cycleway","layer":"1","name":"Stadionbrücke","segregated":"yes"}},{"type":"Feature","id":"9705375","geometry":{"type":"LineString","coordinates":[[16.404292,48.20323100000002],[16.4039671,48.20267870000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brandgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9813664","geometry":{"type":"LineString","coordinates":[[16.4058252,48.202788699999985],[16.4061649,48.20327800000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lukschgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"403802204","geometry":{"type":"LineString","coordinates":[[16.4040706,48.2008309],[16.4043836,48.20111510000001],[16.4044095,48.20113860000001]]},"properties":{"highway":"service","name":"Rüdengasse"}},{"type":"Feature","id":"403802205","geometry":{"type":"LineString","coordinates":[[16.4044095,48.20113860000001],[16.4044522,48.2012043]]},"properties":{"highway":"service","layer":"-1","name":"Rüdengasse","tunnel":"building_passage"}},{"type":"Feature","id":"38147816","geometry":{"type":"LineString","coordinates":[[16.4058252,48.202788699999985],[16.4054957,48.202324799999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lukschgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148927","geometry":{"type":"LineString","coordinates":[[16.4061649,48.20327800000001],[16.4070629,48.20295390000001],[16.407642,48.20269109999998],[16.408266,48.20237070000002],[16.4093662,48.20170329999999],[16.4098581,48.20142630000001]]},"properties":{"bus":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Rustenschacherallee","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"403802202","geometry":{"type":"LineString","coordinates":[[16.4044522,48.2012043],[16.4044762,48.20125040000002]]},"properties":{"highway":"service","name":"Rüdengasse"}},{"type":"Feature","id":"411669249","geometry":{"type":"LineString","coordinates":[[16.407383,48.199731799999995],[16.4075253,48.199535500000025],[16.4076597,48.19934479999998]]},"properties":{"highway":"primary","lanes":"3","maxspeed":"50","name":"Erdberger Lände","oneway":"yes","ref":"B227","turn:lanes":"through|through|right"}},{"type":"Feature","id":"279444590","geometry":{"type":"LineString","coordinates":[[16.4061551,48.20083410000004],[16.406462,48.200637400000005],[16.4067848,48.200405399999994],[16.4069898,48.20021280000003],[16.4071209,48.200061300000016],[16.4072515,48.19991049999996],[16.407383,48.199731799999995]]},"properties":{"highway":"primary","lanes":"3","maxspeed":"50","name":"Erdberger Lände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"9704988","geometry":{"type":"LineString","coordinates":[[16.4030024,48.20444330000001],[16.4026562,48.203574599999996]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Friedensgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38147830","geometry":{"type":"LineString","coordinates":[[16.4026562,48.203574599999996],[16.4024007,48.202949700000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Friedensgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"305315947","geometry":{"type":"LineString","coordinates":[[16.4026562,48.203574599999996],[16.404292,48.20323100000002],[16.4056435,48.20284190000001],[16.4058252,48.202788699999985]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Böcklinstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"377204490","geometry":{"type":"LineString","coordinates":[[16.4019418,48.20193169999999],[16.4019658,48.2019784],[16.402019,48.2019933]]},"properties":{"foot":"yes","highway":"cycleway","name":"Erdberger Steg"}},{"type":"Feature","id":"43403454","geometry":{"type":"LineString","coordinates":[[16.4020391,48.20202660000001],[16.4023352,48.20278730000001]]},"properties":{"bridge":"yes","foot":"yes","highway":"cycleway","layer":"1","name":"Erdberger Steg","segregated":"no","surface":"asphalt"}},{"type":"Feature","id":"43403455","geometry":{"type":"LineString","coordinates":[[16.402019,48.2019933],[16.4020391,48.20202660000001]]},"properties":{"foot":"yes","highway":"cycleway","layer":"1","name":"Erdberger Steg","segregated":"no","surface":"asphalt"}},{"type":"Feature","id":"35408447","geometry":{"type":"LineString","coordinates":[[16.4032154,48.1996039],[16.4028921,48.1997868]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dietrichgasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"386295446","geometry":{"type":"LineString","coordinates":[[16.4023408,48.19921409999998],[16.4028921,48.1997868]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rüdengasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"230254204","geometry":{"type":"LineString","coordinates":[[16.400625,48.2062397],[16.4006783,48.2061612],[16.4007024,48.20612570000003],[16.4011553,48.2056728],[16.4017328,48.205220499999996],[16.4022878,48.204835900000006],[16.402886,48.20450070000001],[16.4030024,48.20444330000001],[16.4043112,48.2039101],[16.4061649,48.20327800000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rustenschacherallee","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9705042","geometry":{"type":"LineString","coordinates":[[16.4002899,48.203344000000016],[16.4009836,48.20402820000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paffrathgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"479964493","geometry":{"type":"LineString","coordinates":[[16.3995259,48.20151419999996],[16.4015003,48.201205000000016],[16.4016195,48.201187300000015]]},"properties":{"highway":"proposed","name":"Louise-Martini-Straße","source":"https://www.wien.gv.at/wiki/index.php?title=Louise-Martini-Weg"}},{"type":"Feature","id":"35408448","geometry":{"type":"LineString","coordinates":[[16.4028921,48.1997868],[16.4012608,48.200626599999964],[16.4011374,48.200696300000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Dietrichgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"386295444","geometry":{"type":"LineString","coordinates":[[16.3995068,48.1998471],[16.4001028,48.199562000000014],[16.4001098,48.19955590000001],[16.4001573,48.199514300000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Hagenmüllergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"15244413","geometry":{"type":"LineString","coordinates":[[16.4011374,48.200696300000004],[16.4012572,48.2007663],[16.4016195,48.201187300000015],[16.4021205,48.20176939999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haidingergasse","segregated":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30","wikipedia":"de:Wilhelm Ritter von Haidinger"}},{"type":"Feature","id":"34909711","geometry":{"type":"LineString","coordinates":[[16.4006477,48.200114799999994],[16.4022654,48.199274599999995],[16.4023408,48.19921409999998]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Göllnergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5043397","geometry":{"type":"LineString","coordinates":[[16.4049863,48.198982099999995],[16.4046288,48.19880480000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Drorygasse","source:maxspeed":"AT:zone:30","wikipedia":"de:Henry James Drory"}},{"type":"Feature","id":"148491888","geometry":{"type":"LineString","coordinates":[[16.4076597,48.19934479999998],[16.4078366,48.1991659],[16.4083398,48.198553000000004],[16.4083645,48.19852290000003]]},"properties":{"highway":"motorway_link","int_ref":"E 58","lanes":"2","maxspeed":"50","name":"Ostautobahn","oneway":"yes","ref":"A4"}},{"type":"Feature","id":"403833275","geometry":{"type":"LineString","coordinates":[[16.4049863,48.198982099999995],[16.4054557,48.199245099999956],[16.4058935,48.19948049999999],[16.407025,48.20010220000003]]},"properties":{"highway":"proposed","name":"Drorygasse","proposed":"footway","source":"http://blog.oebb.at/backend/wp-content/uploads/2013/10/2011_08_ErdbergerLaende12633.pdf"}},{"type":"Feature","id":"3988107","geometry":{"type":"LineString","coordinates":[[16.4082936,48.198403299999995],[16.4083699,48.19838949999999],[16.4085182,48.1983357]]},"properties":{"destination:symbol":"motorway","highway":"motorway_link","lanes":"1","maxspeed":"70","name":"Ostautobahn","oneway":"yes","ref":"A4"}},{"type":"Feature","id":"268591522","geometry":{"type":"LineString","coordinates":[[16.4076597,48.19934479999998],[16.4077513,48.1991429],[16.4079755,48.19885000000002],[16.4082154,48.198513100000014],[16.4082389,48.19848009999998],[16.4082452,48.198471299999994],[16.4082936,48.198403299999995]]},"properties":{"highway":"primary","lanes":"1","maxspeed":"50","name":"Erdberger Lände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"5043376","geometry":{"type":"LineString","coordinates":[[16.4063228,48.197810000000004],[16.4064011,48.19783530000001],[16.407467,48.198178299999995],[16.4077195,48.19825420000004],[16.4081375,48.198381100000034],[16.4081862,48.198395500000004],[16.4082393,48.198402499999986],[16.4082936,48.198403299999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lechnerstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"386295443","geometry":{"type":"LineString","coordinates":[[16.4018461,48.198693399999996],[16.4032675,48.198080000000004],[16.4033445,48.19804679999996]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Hagenmüllergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"386295445","geometry":{"type":"LineString","coordinates":[[16.4018461,48.198693399999996],[16.4023408,48.19921409999998]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Rüdengasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"386295441","geometry":{"type":"LineString","coordinates":[[16.4023408,48.19921409999998],[16.4038807,48.198390699999976]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Göllnergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5043411","geometry":{"type":"LineString","coordinates":[[16.4063228,48.197810000000004],[16.4062719,48.19783989999999],[16.4062478,48.1978541],[16.4055266,48.19827759999998],[16.4046288,48.19880480000003],[16.4032154,48.1996039]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Dietrichgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5732583","geometry":{"type":"LineString","coordinates":[[16.4011475,48.19796529999999],[16.4012117,48.198033699999996],[16.401236,48.198059],[16.4018461,48.198693399999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rüdengasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5043399","geometry":{"type":"LineString","coordinates":[[16.4046288,48.19880480000003],[16.4038807,48.198390699999976],[16.4034112,48.19808950000001],[16.4033445,48.19804679999996],[16.4032606,48.197989199999995],[16.4026023,48.19753700000001],[16.40254,48.197498800000005],[16.4024495,48.19744109999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Drorygasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","wikipedia":"de:Henry James Drory"}},{"type":"Feature","id":"15244411","geometry":{"type":"LineString","coordinates":[[16.4011374,48.200696300000004],[16.4010749,48.20064579999999],[16.4006477,48.200114799999994],[16.4001573,48.199514300000004],[16.3997424,48.1990222],[16.3996965,48.19895840000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haidingergasse","oneway":"yes","sidewalk":"left","source:maxspeed":"AT:zone:30","wikipedia":"de:Wilhelm Ritter von Haidinger"}},{"type":"Feature","id":"386295442","geometry":{"type":"LineString","coordinates":[[16.4001573,48.199514300000004],[16.4018461,48.198693399999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hagenmüllergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"200962807","geometry":{"type":"LineString","coordinates":[[16.399568,48.19864479999998],[16.3995445,48.19862699999999]]},"properties":{"foot":"yes","highway":"cycleway","name":"Keinergasse"}},{"type":"Feature","id":"203288834","geometry":{"type":"LineString","coordinates":[[16.3996965,48.19895840000001],[16.3997449,48.198925900000006],[16.3998819,48.19881110000003],[16.4004309,48.198455800000005],[16.4010787,48.198007099999984],[16.4011475,48.19796529999999],[16.401239,48.1979278],[16.4013827,48.1978737],[16.40143,48.19785330000002],[16.4023655,48.197473099999996],[16.4024495,48.19744109999999]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Erdbergstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"200962805","geometry":{"type":"LineString","coordinates":[[16.3996078,48.197739799999965],[16.3993836,48.19788209999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hainburger Straße"}},{"type":"Feature","id":"139000837","geometry":{"type":"LineString","coordinates":[[16.4050991,48.196575699999954],[16.4051348,48.19664209999999],[16.4051659,48.19670009999999],[16.4055914,48.197134500000004],[16.4057677,48.197301400000015],[16.4061673,48.19769249999999],[16.4063228,48.197810000000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lechnerstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"148332760","geometry":{"type":"LineString","coordinates":[[16.4056238,48.19647509999999],[16.4058991,48.196428],[16.4066402,48.196304],[16.4067587,48.19624330000002],[16.4068242,48.19619850000004],[16.4073976,48.1957295],[16.4075725,48.1955964],[16.4077218,48.19548839999999],[16.4078242,48.19541029999999],[16.4078836,48.19536440000002]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Erdbergstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5043380","geometry":{"type":"LineString","coordinates":[[16.4063228,48.197810000000004],[16.4065202,48.19767810000002],[16.4090571,48.196513099999976],[16.4091253,48.1963763]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Dietrichgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"41669393","geometry":{"type":"LineString","coordinates":[[16.4082936,48.198403299999995],[16.408835,48.197710700000016],[16.4094404,48.19687529999999],[16.4096895,48.19656929999999],[16.4098988,48.1963983],[16.410042,48.19633279999999]]},"properties":{"highway":"primary","lanes":"1","maxspeed":"30","name":"Erdberger Lände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"5732762","geometry":{"type":"LineString","coordinates":[[16.4033445,48.19804679999996],[16.4034617,48.198005499999994],[16.4034853,48.19799710000001],[16.4044391,48.19760720000002],[16.4053641,48.197229300000004],[16.4055076,48.1971662],[16.4055914,48.197134500000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hagenmüllergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5732511","geometry":{"type":"LineString","coordinates":[[16.4024495,48.19744109999999],[16.4023637,48.197384099999994],[16.4022877,48.19730680000001],[16.402103,48.1971192],[16.4020018,48.19702480000001],[16.4017034,48.19673990000001],[16.4016492,48.196688499999965]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kardinal-Nagl-Platz","wikipedia":"de:Franz Xaver Nagl"}},{"type":"Feature","id":"26732500","geometry":{"type":"LineString","coordinates":[[16.4009322,48.19700080000001],[16.4013297,48.196827799999994],[16.4015148,48.19674729999997],[16.4015722,48.19672220000001],[16.4016492,48.196688499999965],[16.4017426,48.196648299999964],[16.4026976,48.1962274],[16.4032641,48.19597829999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hainburger Straße"}},{"type":"Feature","id":"8053297","geometry":{"type":"LineString","coordinates":[[16.4016492,48.196688499999965],[16.4016071,48.196646499999986],[16.4014283,48.19646639999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rabengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"39890135","geometry":{"type":"LineString","coordinates":[[16.4024495,48.19744109999999],[16.4025707,48.197391400000015],[16.4033177,48.1970958],[16.403699,48.19695390000001],[16.4041885,48.196820900000006],[16.4044424,48.19675190000001],[16.4048715,48.19663230000003],[16.4049667,48.1966036],[16.4050991,48.196575699999954],[16.4056238,48.19647509999999]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Erdbergstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"428801730","geometry":{"type":"LineString","coordinates":[[16.4014283,48.19646639999999],[16.4013464,48.1963853]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rabengasse","oneway":"yes","source:maxspeed":"AT:zone:30","tunnel":"building_passage"}},{"type":"Feature","id":"5732472","geometry":{"type":"LineString","coordinates":[[16.402103,48.1971192],[16.402186,48.19708399999999],[16.4035589,48.19649799999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gestettengasse"}},{"type":"Feature","id":"12621277","geometry":{"type":"LineString","coordinates":[[16.4004436,48.19723809999999],[16.3996078,48.197739799999965]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hainburger Straße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"5732591","geometry":{"type":"LineString","coordinates":[[16.4004436,48.19723809999999],[16.4005585,48.1973356],[16.4010948,48.19791090000001],[16.4011475,48.19796529999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kardinal-Nagl-Platz","wikipedia":"de:Franz Xaver Nagl"}},{"type":"Feature","id":"12621451","geometry":{"type":"LineString","coordinates":[[16.4000458,48.196801100000044],[16.4000967,48.196854]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rüdengasse","oneway":"yes","tunnel":"building_passage"}},{"type":"Feature","id":"428801729","geometry":{"type":"LineString","coordinates":[[16.4000967,48.196854],[16.4004436,48.19723809999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rüdengasse","oneway":"yes"}},{"type":"Feature","id":"12978256","geometry":{"type":"LineString","coordinates":[[16.4004436,48.19723809999999],[16.4004426,48.197184100000015],[16.4004667,48.19715160000001],[16.4006514,48.1970651],[16.4008221,48.1969919],[16.4008809,48.196988000000005],[16.4009322,48.19700080000001]]},"properties":{"foot":"yes","highway":"cycleway","name":"Hainburger Straße","segregated":"yes"}},{"type":"Feature","id":"9705097","geometry":{"type":"LineString","coordinates":[[16.4000406,48.20461419999998],[16.3990461,48.204103799999984]]},"properties":{"highway":"residential","maxspeed":"30","name":"Halmgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9712211","geometry":{"type":"LineString","coordinates":[[16.3968477,48.20455209999997],[16.396767,48.20468349999999],[16.3967023,48.20499130000002],[16.3966897,48.20518580000001],[16.3967255,48.2053334],[16.3967148,48.205417100000005],[16.3966554,48.2056058],[16.3966186,48.2057623],[16.3966148,48.205787000000015],[16.3966096,48.205820200000005],[16.3965996,48.20585840000001],[16.396569,48.205973099999994],[16.3965633,48.20600000000002],[16.3965579,48.2060257],[16.3964908,48.20632850000001],[16.3964031,48.206710499999986],[16.3963451,48.20698249999998],[16.3963671,48.207134999999994],[16.3964365,48.2072259],[16.3964939,48.20729509999998]]},"properties":{"bicycle":"yes","foot":"yes","highway":"cycleway","lcn":"yes","name":"Hundertwasser-Promenade","wikipedia":"de:Friedensreich Hundertwasser"}},{"type":"Feature","id":"24522418","geometry":{"type":"LineString","coordinates":[[16.3984266,48.20481569999998],[16.3994916,48.20512449999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Thugutstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"164578773","geometry":{"type":"LineString","coordinates":[[16.4164925,48.20439540000001],[16.4162408,48.20452739999999],[16.4161675,48.20456589999998],[16.416113,48.204594499999985],[16.4152305,48.20505729999999],[16.4136883,48.2058663],[16.4131836,48.206131],[16.4109628,48.2072958],[16.409538,48.20805789999997],[16.4077884,48.20896010000001],[16.4067711,48.209494300000046],[16.4064258,48.20967540000001],[16.4058567,48.209973899999994],[16.4056372,48.210089100000005],[16.4048082,48.210523800000004],[16.4038356,48.21103389999996],[16.4025738,48.211695700000035],[16.4022138,48.2118845],[16.4014413,48.21228959999999],[16.4012571,48.2123862],[16.4001837,48.2129492],[16.4000819,48.21300260000004],[16.399011,48.21356420000001],[16.3982061,48.21398629999999]]},"properties":{"bicycle":"yes","foot":"yes","highway":"residential","horse":"yes","lanes":"2","maxspeed":"50","motor_vehicle":"no","name":"Hauptallee","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"10069945","geometry":{"type":"LineString","coordinates":[[16.3965818,48.20481369999999],[16.3962485,48.204781]]},"properties":{"highway":"residential","maxspeed":"30","name":"Marxergasse","oneway":"yes","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"29076343","geometry":{"type":"LineString","coordinates":[[16.3981658,48.2026592],[16.3983381,48.20280940000001],[16.3984306,48.20289569999997]]},"properties":{"highway":"service","name":"Fritz-Henkel-Gasse","wikipedia":"de:Friedrich Karl Henkel"}},{"type":"Feature","id":"10069974","geometry":{"type":"LineString","coordinates":[[16.3967902,48.20330770000001],[16.3972431,48.2037033],[16.3972776,48.20371940000001],[16.3973289,48.20374340000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hießgasse","oneway":"yes"}},{"type":"Feature","id":"428879767","geometry":{"type":"LineString","coordinates":[[16.3989592,48.20612310000001],[16.3989755,48.206061799999986],[16.3989942,48.2060195],[16.3992327,48.20548099999999],[16.3994916,48.20512449999998],[16.3997884,48.20482190000001],[16.4000406,48.20461419999998],[16.4005781,48.20426710000001],[16.4009836,48.20402820000001],[16.4017792,48.20377319999997],[16.4024611,48.2036191],[16.4026562,48.203574599999996]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Böcklinstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10069891","geometry":{"type":"LineString","coordinates":[[16.3946803,48.20544610000002],[16.3946223,48.205509999999975],[16.3946587,48.20559459999998],[16.3946657,48.20561090000001],[16.3947283,48.20567790000001]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"474636890","geometry":{"type":"LineString","coordinates":[[16.3962335,48.2057858],[16.3961432,48.20579000000001],[16.3958911,48.20576320000001],[16.3947122,48.2055781]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rasumofskygasse"}},{"type":"Feature","id":"10069957","geometry":{"type":"LineString","coordinates":[[16.3953403,48.203981500000026],[16.3947383,48.204309499999994]]},"properties":{"created_by":"Potlatch 0.6c","highway":"pedestrian","name":"Hörnesgasse"}},{"type":"Feature","id":"8053404","geometry":{"type":"LineString","coordinates":[[16.3962485,48.204781],[16.3956313,48.20504090000003],[16.3955156,48.2050801]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Marxergasse","oneway":"yes","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"10362921","geometry":{"type":"LineString","coordinates":[[16.3955156,48.2050801],[16.3960344,48.205604300000005],[16.3960922,48.205657299999984],[16.3961452,48.2056805],[16.3962069,48.205690300000015],[16.3962606,48.20568399999999],[16.3963062,48.205668],[16.3963531,48.20564289999999],[16.3964132,48.20559180000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kundmanngasse","oneway":"yes","wikipedia":"de:Carl Kundmann"}},{"type":"Feature","id":"10362936","geometry":{"type":"LineString","coordinates":[[16.3955156,48.2050801],[16.3954373,48.2051079],[16.3949073,48.205337499999956],[16.3947372,48.20541120000004],[16.3946803,48.20544610000002]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"30","name":"Marxergasse","oneway":"yes","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"8053351","geometry":{"type":"LineString","coordinates":[[16.39782,48.203282400000006],[16.3977193,48.2032059],[16.3974683,48.2029752],[16.3969546,48.20249320000002],[16.3962501,48.201859299999995],[16.3961982,48.20181259999998]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Wassergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8053395","geometry":{"type":"LineString","coordinates":[[16.3967902,48.20330770000001],[16.396239,48.202815799999996],[16.3955441,48.20219850000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hießgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8053392","geometry":{"type":"LineString","coordinates":[[16.3949299,48.202412400000014],[16.3950009,48.2025318],[16.3955782,48.20309029999996],[16.3961152,48.20360160000001],[16.396709,48.204166499999985],[16.396801,48.2042017],[16.3969285,48.20420010000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Kübeckgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Karl Friedrich von Kübeck"}},{"type":"Feature","id":"8885241","geometry":{"type":"LineString","coordinates":[[16.3947834,48.20348760000002],[16.3955782,48.20309029999996],[16.396239,48.202815799999996],[16.396889,48.20252399999998],[16.3969546,48.20249320000002]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Geusaugasse","oneway":"yes"}},{"type":"Feature","id":"8053400","geometry":{"type":"LineString","coordinates":[[16.3974683,48.2029752],[16.3973924,48.203010499999976],[16.3967902,48.20330770000001],[16.3961152,48.20360160000001],[16.3953403,48.203981500000026]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hörnesgasse","oneway":"yes"}},{"type":"Feature","id":"8053402","geometry":{"type":"LineString","coordinates":[[16.3962485,48.204781],[16.3953403,48.203981500000026],[16.3947834,48.20348760000002]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Parkgasse","oneway":"yes"}},{"type":"Feature","id":"10069961","geometry":{"type":"LineString","coordinates":[[16.3947383,48.204309499999994],[16.3946729,48.204339800000014],[16.3939251,48.20466759999999],[16.3931554,48.2050443]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hörnesgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"46738178","geometry":{"type":"LineString","coordinates":[[16.3946803,48.20544610000002],[16.3945413,48.20548339999999],[16.3944039,48.20554240000004],[16.3943373,48.2055646],[16.3941592,48.20562380000001]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"30","name":"Marxergasse","oneway":"yes","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"83649747","geometry":{"type":"LineString","coordinates":[[16.3947834,48.20348760000002],[16.3942664,48.20382380000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geusaugasse"}},{"type":"Feature","id":"9653979","geometry":{"type":"LineString","coordinates":[[16.3934896,48.20430680000001],[16.3939251,48.20466759999999],[16.3947016,48.205367300000034],[16.3947372,48.20541120000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Geologengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"83649746","geometry":{"type":"LineString","coordinates":[[16.393788,48.2026367],[16.3942156,48.20303530000001],[16.3942856,48.20310030000002]]},"properties":{"highway":"pedestrian","name":"Parkgasse"}},{"type":"Feature","id":"385850486","geometry":{"type":"LineString","coordinates":[[16.3943433,48.203073500000016],[16.3943065,48.2029981]]},"properties":{"highway":"service","maxspeed":"30","name":"Parkgasse","service":"parking_aisle"}},{"type":"Feature","id":"83649744","geometry":{"type":"LineString","coordinates":[[16.3947834,48.20348760000002],[16.3943433,48.203073500000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Parkgasse"}},{"type":"Feature","id":"10070324","geometry":{"type":"LineString","coordinates":[[16.3985192,48.201226399999996],[16.3977258,48.200775599999986]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Schwalbengasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9798443","geometry":{"type":"LineString","coordinates":[[16.3963526,48.20590729999998],[16.3963657,48.20584629999999],[16.3963833,48.205769599999996],[16.3963893,48.20574379999999],[16.3964132,48.20559180000001],[16.39647,48.205307800000014],[16.3965818,48.20481369999999],[16.3966629,48.2046464],[16.3967737,48.204422799999975],[16.3969285,48.20420010000001],[16.3969972,48.20411139999999],[16.397122,48.203953799999994],[16.3973289,48.20374340000001],[16.3976365,48.2034457],[16.3977544,48.20334810000003],[16.3977846,48.20332309999998],[16.39782,48.203282400000006],[16.3984306,48.20289569999997],[16.3989823,48.202628799999985],[16.3992774,48.20250440000004],[16.3997354,48.202354299999996],[16.3998316,48.2023313],[16.4005352,48.202191200000016],[16.4019418,48.20193169999999],[16.4019436,48.20193119999999],[16.4031933,48.20168050000001],[16.4042374,48.20146030000001],[16.4050778,48.20126640000001],[16.4055605,48.20110660000003],[16.4058098,48.20100510000003],[16.4061551,48.20083410000004]]},"properties":{"highway":"primary","lanes":"3","maxspeed":"50","name":"Erdberger Lände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"10070361","geometry":{"type":"LineString","coordinates":[[16.3991661,48.19945430000004],[16.3995068,48.1998471],[16.4000137,48.200441100000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Löwenherzgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","wikipedia":"de:Richard Löwenherz"}},{"type":"Feature","id":"397206451","geometry":{"type":"LineString","coordinates":[[16.3961982,48.20181259999998],[16.3962769,48.2017678],[16.3967104,48.201521000000014],[16.396919,48.2013719],[16.3973038,48.2010712],[16.3977258,48.200775599999986],[16.3980517,48.200530000000015]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Erdbergstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8053360","geometry":{"type":"LineString","coordinates":[[16.4006477,48.200114799999994],[16.4005897,48.20014459999996],[16.4000137,48.200441100000006],[16.3994438,48.20073919999999],[16.3989202,48.20101310000001],[16.3985192,48.201226399999996]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Göllnergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"199204972","geometry":{"type":"LineString","coordinates":[[16.4101272,48.198588700000045],[16.4088892,48.20030650000001],[16.4085522,48.200710499999985],[16.4081121,48.20107869999998],[16.4077229,48.20135210000001],[16.4069451,48.201775999999995],[16.4062413,48.202082899999965],[16.4054957,48.202324799999985],[16.4052571,48.20238739999999],[16.404844,48.20248999999998],[16.4039671,48.20267870000001],[16.4032507,48.202801300000004],[16.402691,48.20290270000001],[16.4024917,48.20293369999999],[16.4024007,48.202949700000005],[16.4007809,48.203220199999976],[16.4002899,48.203344000000016],[16.3999264,48.203501500000016],[16.3995402,48.203722899999974],[16.3990461,48.204103799999984],[16.3987779,48.204367700000006],[16.3984266,48.20481569999998],[16.3982568,48.205091100000004],[16.3981549,48.2053171],[16.3980814,48.2055642],[16.3980561,48.2057432],[16.3980339,48.205927],[16.3980276,48.2059792]]},"properties":{"highway":"primary","lanes":"3","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"34909770","geometry":{"type":"LineString","coordinates":[[16.3980517,48.200530000000015],[16.3981662,48.200448800000004],[16.3982633,48.200379999999996],[16.3983996,48.200283299999995],[16.3987572,48.1999261],[16.3991661,48.19945430000004],[16.3994203,48.19920780000001],[16.3995949,48.19905030000001],[16.3996584,48.19899290000001],[16.3996965,48.19895840000001]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Erdbergstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"10070394","geometry":{"type":"LineString","coordinates":[[16.3971779,48.199204500000036],[16.3971955,48.19929239999999],[16.3977569,48.20033329999998],[16.3978622,48.20044250000001],[16.3979873,48.20050029999999],[16.3980517,48.200530000000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Apostelgasse","oneway":"yes"}},{"type":"Feature","id":"7998677","geometry":{"type":"LineString","coordinates":[[16.3934392,48.20146779999999],[16.393472,48.20145049999999],[16.3937128,48.20131789999999],[16.3937324,48.20129180000001],[16.3938275,48.2012306]]},"properties":{"highway":"pedestrian","name":"Hainburger Straße"}},{"type":"Feature","id":"102470909","geometry":{"type":"LineString","coordinates":[[16.3938275,48.2012306],[16.3941441,48.201033600000045],[16.3949077,48.200574700000004],[16.3949576,48.200544699999995]]},"properties":{"highway":"residential","maxspeed":"50","name":"Hainburger Straße"}},{"type":"Feature","id":"425550220","geometry":{"type":"LineString","coordinates":[[16.3934846,48.19942600000002],[16.3935793,48.19945390000001],[16.3938028,48.19953219999999],[16.3939161,48.199571899999995]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"50","name":"Neulinggasse","source":"Bing","surface":"asphalt"}},{"type":"Feature","id":"425550221","geometry":{"type":"LineString","coordinates":[[16.3933464,48.199387099999996],[16.3934846,48.19942600000002]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"50","name":"Neulinggasse","source":"Bing","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"37637911","geometry":{"type":"LineString","coordinates":[[16.3961982,48.20181259999998],[16.3961356,48.201749500000005],[16.3950155,48.200603900000004],[16.3949576,48.200544699999995],[16.3941046,48.19966579999999],[16.3940187,48.1996168],[16.3939161,48.199571899999995]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Wassergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"12621609","geometry":{"type":"LineString","coordinates":[[16.3995445,48.19862699999999],[16.3991846,48.19836110000003],[16.3989443,48.1981457]]},"properties":{"highway":"residential","maxspeed":"30","name":"Keinergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"12621405","geometry":{"type":"LineString","coordinates":[[16.3988156,48.196544500000016],[16.3994602,48.196282999999994],[16.3995425,48.19628639999999],[16.399585,48.19631029999999],[16.4000458,48.196801100000044]]},"properties":{"highway":"residential","maxspeed":"30","name":"St.-Nikolaus-Platz","oneway":"yes"}},{"type":"Feature","id":"12623107","geometry":{"type":"LineString","coordinates":[[16.3996078,48.197739799999965],[16.3995287,48.197673399999985],[16.3991883,48.19723199999996],[16.3991167,48.19713389999998],[16.3987974,48.19664929999999],[16.398796,48.1965907],[16.3988156,48.196544500000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lustgasse","oneway":"yes"}},{"type":"Feature","id":"12621368","geometry":{"type":"LineString","coordinates":[[16.3991167,48.19713389999998],[16.399536,48.19699259999999],[16.399581,48.19699589999999],[16.3996131,48.19703290000001],[16.3995939,48.1970699],[16.3991883,48.19723199999996]]},"properties":{"highway":"service","name":"St.-Nikolaus-Platz","note":"keine Einbahn, obwohl nur 1 Fahrspur, tatsächlich gefahren wirdgegen den Uhrzeigersinn"}},{"type":"Feature","id":"12830871","geometry":{"type":"LineString","coordinates":[[16.3993836,48.19788209999999],[16.3993532,48.19790699999999],[16.3993383,48.197974500000015],[16.3990813,48.19811659999999],[16.3990069,48.19813189999999],[16.3989443,48.1981457]]},"properties":{"foot":"yes","highway":"cycleway","name":"Hainburger Straße","segregated":"yes"}},{"type":"Feature","id":"8053298","geometry":{"type":"LineString","coordinates":[[16.3960608,48.1967971],[16.3960945,48.1967659]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Baumgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"305352438","geometry":{"type":"LineString","coordinates":[[16.3960608,48.1967971],[16.3966827,48.1979982],[16.3971157,48.19902510000003],[16.397177,48.19907520000001],[16.3971779,48.199204500000036]]},"properties":{"highway":"residential","maxspeed":"30","name":"Apostelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8053305","geometry":{"type":"LineString","coordinates":[[16.3958695,48.19678450000001],[16.3960067,48.19679350000001],[16.3960608,48.1967971]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Apostelgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"293932294","geometry":{"type":"LineString","coordinates":[[16.3965398,48.19647689999999],[16.3968721,48.19625500000001],[16.3979157,48.19577180000002],[16.3987964,48.19566090000001],[16.3989344,48.1956107],[16.3990045,48.19558519999998]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Baumgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"293932293","geometry":{"type":"LineString","coordinates":[[16.3960945,48.1967659],[16.3963948,48.196571000000006],[16.3965398,48.19647689999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Baumgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","traffic_calming":"table"}},{"type":"Feature","id":"12622212","geometry":{"type":"LineString","coordinates":[[16.3989443,48.1981457],[16.3988804,48.19800620000001],[16.3981765,48.197039099999984],[16.3979157,48.19577180000002],[16.3969951,48.19512180000001],[16.3969026,48.19505649999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Keinergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8053353","geometry":{"type":"LineString","coordinates":[[16.3950931,48.1979139],[16.3951899,48.1980111],[16.3965734,48.19957630000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Messenhausergasse","oneway":"yes","surface":"asphalt","wikipedia":"de:Cäsar Wenzel Messenhauser"}},{"type":"Feature","id":"30219326","geometry":{"type":"LineString","coordinates":[[16.3933843,48.198151800000005],[16.393338,48.198255200000006],[16.3933053,48.19837139999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dannebergplatz","wikipedia":"de:Dannebergplatz"}},{"type":"Feature","id":"240294969","geometry":{"type":"LineString","coordinates":[[16.3949576,48.200544699999995],[16.3950319,48.200501],[16.396175,48.19981250000001],[16.3965734,48.19957630000002],[16.3971123,48.1992449],[16.3971779,48.199204500000036],[16.3972434,48.199164800000005],[16.3989443,48.1981457]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hainburger Straße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8677644","geometry":{"type":"LineString","coordinates":[[16.394042,48.19667870000001],[16.3937736,48.19729720000001],[16.3936913,48.19746570000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Barmherzigengasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"39234162","geometry":{"type":"LineString","coordinates":[[16.3933843,48.198151800000005],[16.3936913,48.19746570000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Barmherzigengasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"264984484","geometry":{"type":"LineString","coordinates":[[16.4010161,48.190522999999985],[16.4009503,48.190554599999956],[16.4008986,48.19058939999999],[16.4008559,48.190618200000046],[16.4007724,48.19070450000001],[16.3998211,48.19171410000001],[16.39883,48.19272130000002],[16.3987428,48.19280989999996],[16.3986807,48.192873099999986],[16.3986082,48.1929528],[16.3982213,48.193378499999994],[16.3977842,48.193867299999994],[16.3976772,48.193977700000005],[16.3976247,48.19403590000002],[16.3975528,48.19413689999999],[16.3974297,48.19430940000001],[16.3972904,48.19450169999999],[16.3971199,48.19473339999999],[16.3969026,48.19505649999999],[16.3967855,48.19524079999999],[16.3966684,48.195425],[16.3961128,48.19633919999998],[16.3960199,48.19650279999999],[16.3959441,48.196631499999995],[16.3959077,48.196706000000006],[16.3958695,48.19678450000001],[16.3958096,48.196871499999986],[16.3951524,48.197827099999984],[16.3951059,48.19789509999998],[16.3950931,48.1979139],[16.3949452,48.198127699999986],[16.3948096,48.19832360000001],[16.3947889,48.1983487],[16.3946819,48.198508300000015],[16.3942952,48.199078799999995],[16.3939823,48.19948729999999],[16.3939161,48.199571899999995]]},"properties":{"cycleway":"lane","highway":"secondary","maxspeed":"50","name":"Landstraßer Hauptstraße"}},{"type":"Feature","id":"39234161","geometry":{"type":"LineString","coordinates":[[16.394042,48.19667870000001],[16.3941259,48.196476200000006],[16.3943094,48.196058300000004],[16.3946606,48.19527510000003],[16.3946765,48.195235800000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Barmherzigengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"12620137","geometry":{"type":"LineString","coordinates":[[16.3943094,48.196058300000004],[16.3933029,48.1959803],[16.3932488,48.1966429]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kaisergartengasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"12620430","geometry":{"type":"LineString","coordinates":[[16.3959441,48.196631499999995],[16.3958065,48.19661959999999],[16.3948793,48.19653929999998],[16.3941259,48.196476200000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Juchgasse","oneway":"yes"}},{"type":"Feature","id":"158897828","geometry":{"type":"LineString","coordinates":[[16.3931903,48.22012319999999],[16.3931547,48.22027109999996],[16.3930088,48.22092670000001],[16.3930012,48.221022799999986],[16.3930076,48.22111129999999],[16.3930294,48.221182699999986],[16.3930558,48.22123529999996],[16.3930965,48.221291699999966],[16.3931406,48.2213371],[16.3932078,48.22138459999999],[16.3932818,48.221430199999986]]},"properties":{"highway":"residential","maxspeed":"50","name":"Walcherstraße","surface":"asphalt"}},{"type":"Feature","id":"101158563","geometry":{"type":"LineString","coordinates":[[16.3956154,48.2207703],[16.3955782,48.2207502],[16.3954547,48.22068329999999],[16.3937906,48.21981349999999],[16.3933166,48.2195466],[16.3930285,48.2194652],[16.3928089,48.219443299999995],[16.3925489,48.219436299999984]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lassallestraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"354021113","geometry":{"type":"LineString","coordinates":[[16.3934645,48.218796499999996],[16.3933747,48.218978600000014],[16.3932227,48.21912279999998],[16.3930236,48.219266000000005],[16.3928199,48.219365299999964],[16.3926875,48.21941099999998],[16.3925489,48.219436299999984]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"443833292","geometry":{"type":"LineString","coordinates":[[16.3930396,48.21692680000001],[16.3930771,48.21708210000003]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"50","name":"Hauptallee","oneway":"yes"}},{"type":"Feature","id":"164578774","geometry":{"type":"LineString","coordinates":[[16.3930655,48.21668220000001],[16.3930521,48.21680839999999]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"50","name":"Hauptallee","oneway":"yes"}},{"type":"Feature","id":"206463407","geometry":{"type":"LineString","coordinates":[[16.3929151,48.21675350000001],[16.3930655,48.21668220000001]]},"properties":{"highway":"residential","motor_vehicle":"delivery","name":"Hauptallee","oneway":"yes"}},{"type":"Feature","id":"472381897","geometry":{"type":"LineString","coordinates":[[16.3930521,48.21680839999999],[16.3930396,48.21692680000001]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"50","name":"Hauptallee","oneway":"yes"}},{"type":"Feature","id":"4433653","geometry":{"type":"LineString","coordinates":[[16.3924025,48.21691859999996],[16.3927368,48.216840399999995]]},"properties":{"highway":"residential","motor_vehicle":"delivery","name":"Hauptallee","oneway":"yes"}},{"type":"Feature","id":"354021117","geometry":{"type":"LineString","coordinates":[[16.3924025,48.21691859999996],[16.3925702,48.2169231],[16.3928056,48.216966600000006],[16.3930771,48.21708210000003],[16.393168,48.2171515],[16.3933092,48.21730439999999],[16.3933871,48.21743639999997],[16.3934385,48.2175235],[16.3935165,48.217781900000006],[16.3935298,48.217825800000014]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"443833293","geometry":{"type":"LineString","coordinates":[[16.3927368,48.216840399999995],[16.3929151,48.21675350000001]]},"properties":{"highway":"residential","motor_vehicle":"delivery","name":"Hauptallee","oneway":"yes"}},{"type":"Feature","id":"38148640","geometry":{"type":"LineString","coordinates":[[16.3925489,48.219436299999984],[16.3921697,48.21941670000001],[16.3918492,48.21935980000001],[16.3916049,48.2192709],[16.3913529,48.2191287]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"230381509","geometry":{"type":"LineString","coordinates":[[16.3902439,48.21972640000004],[16.390286,48.219729],[16.3904095,48.219737399999985]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","is_in":"Austria,Wien,Leopoldstadt","maxspeed":"50","name":"Kleine Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"24522433","geometry":{"type":"LineString","coordinates":[[16.3917003,48.21686969999999],[16.3917491,48.2167915],[16.3918573,48.2166115],[16.3919018,48.21641800000003],[16.3919247,48.21631829999998],[16.391999,48.2158201],[16.3920706,48.2155855],[16.3921274,48.21553670000003],[16.3923622,48.215535200000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Helenengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"151607874","geometry":{"type":"LineString","coordinates":[[16.3917003,48.21686969999999],[16.3917741,48.21688710000001],[16.3921183,48.216927199999986]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrückenstraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"354021100","geometry":{"type":"LineString","coordinates":[[16.3921183,48.216927199999986],[16.3924025,48.21691859999996]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"354850551","geometry":{"type":"LineString","coordinates":[[16.3912629,48.21723020000002],[16.3913066,48.21721020000001]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"305417447","geometry":{"type":"LineString","coordinates":[[16.3912919,48.21632729999996],[16.3913683,48.21638659999999],[16.3914446,48.2164114],[16.3915757,48.216413999999986],[16.3919018,48.21641800000003]]},"properties":{"highway":"service","maxspeed":"30","name":"Hedwiggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29277036","geometry":{"type":"LineString","coordinates":[[16.3910975,48.216330200000016],[16.3911621,48.21632919999999],[16.3912919,48.21632729999996],[16.3919247,48.21631829999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hedwiggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522427","geometry":{"type":"LineString","coordinates":[[16.3914293,48.21715280000001],[16.3916194,48.2169543],[16.3917003,48.21686969999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Praterstern","oneway":"yes"}},{"type":"Feature","id":"354850552","geometry":{"type":"LineString","coordinates":[[16.3913066,48.21721020000001],[16.3914293,48.21715280000001],[16.3917454,48.217049299999985],[16.3921183,48.216927199999986]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"360942903","geometry":{"type":"LineString","coordinates":[[16.3913529,48.2191287],[16.3911153,48.21899469999997],[16.3910598,48.218959299999995],[16.390999,48.2189204],[16.3909042,48.218863099999965],[16.3908666,48.21883470000003],[16.3906916,48.218680500000005],[16.3905763,48.2185451],[16.3905183,48.21847319999998],[16.3904376,48.21834769999998],[16.3903828,48.218222999999995],[16.3903524,48.21813419999998]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"354021102","geometry":{"type":"LineString","coordinates":[[16.3903524,48.21813419999998],[16.3903558,48.217973400000034],[16.3903873,48.21787199999997],[16.3904165,48.2178308],[16.3904316,48.21780949999999],[16.3906649,48.21756830000001]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"354021109","geometry":{"type":"LineString","coordinates":[[16.3906649,48.21756830000001],[16.3908495,48.217458300000004],[16.3912629,48.21723020000002]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"148101960","geometry":{"type":"LineString","coordinates":[[16.3916049,48.2192709],[16.3912082,48.21917350000004],[16.3910875,48.21916250000001],[16.3909572,48.21916920000004],[16.3907546,48.21920399999999],[16.3906736,48.2192316],[16.3906271,48.21925779999998],[16.3905681,48.21929869999997],[16.390522,48.219342400000016],[16.3904831,48.21940319999999],[16.3904515,48.21946430000003],[16.3904095,48.219737399999985],[16.3903886,48.219825799999995],[16.3903597,48.2199478],[16.3903344,48.2200713],[16.3902742,48.2203399],[16.3902521,48.220527199999964],[16.3901852,48.22089860000003],[16.3901769,48.22092599999999],[16.3901349,48.221055199999995],[16.3900656,48.221187999999984],[16.3899861,48.22134169999998],[16.3899225,48.22145789999999],[16.3898956,48.22153650000001],[16.3898353,48.22181890000002],[16.3897494,48.22226280000001],[16.389723,48.222399499999995],[16.3896572,48.222691499999996],[16.3896177,48.222967900000015],[16.3895711,48.22317429999998],[16.3895483,48.22329580000002],[16.3895326,48.22335590000003],[16.3895322,48.22340299999999],[16.3895238,48.22344279999999],[16.3895071,48.22352120000002],[16.3894959,48.2235599],[16.3894498,48.22373479999999],[16.3894153,48.223821800000024],[16.3893994,48.22386850000001],[16.3893843,48.223905099999996],[16.3893163,48.22407050000001],[16.3892768,48.224199700000014]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Nordbahnstraße","oneway":"yes"}},{"type":"Feature","id":"38148161","geometry":{"type":"LineString","coordinates":[[16.3899171,48.22080390000002],[16.3899246,48.22077669999999],[16.3900782,48.22005570000002],[16.3901419,48.21979809999999],[16.3901618,48.219717599999996]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Nordbahnstraße","oneway":"yes"}},{"type":"Feature","id":"8052790","geometry":{"type":"LineString","coordinates":[[16.388669,48.22072940000001],[16.3886811,48.2206736],[16.388783,48.22020359999999],[16.3887599,48.22012979999997],[16.3887888,48.220008300000046],[16.3888338,48.21994139999998],[16.3889007,48.21965210000002],[16.3889125,48.219601299999994]]},"properties":{"highway":"residential","maxspeed":"50","name":"Holzhausergasse","oneway":"yes"}},{"type":"Feature","id":"25521355","geometry":{"type":"LineString","coordinates":[[16.3872997,48.2197151],[16.3872336,48.21961640000001]]},"properties":{"highway":"residential","name":"Zirkusgasse"}},{"type":"Feature","id":"158798819","geometry":{"type":"LineString","coordinates":[[16.387363,48.2198113],[16.3872997,48.2197151]]},"properties":{"highway":"residential","name":"Fugbachgasse"}},{"type":"Feature","id":"8052796","geometry":{"type":"LineString","coordinates":[[16.3879219,48.22066019999997],[16.3878823,48.22060010000001],[16.387387,48.219847800000025],[16.387363,48.2198113]]},"properties":{"bicycle:backward":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Fugbachgasse","oneway":"yes"}},{"type":"Feature","id":"8030142","geometry":{"type":"LineString","coordinates":[[16.3882979,48.219030299999986],[16.387811,48.21913760000001],[16.3871271,48.21928750000001],[16.3870277,48.219309100000004]]},"properties":{"highway":"pedestrian","name":"Heinestraße"}},{"type":"Feature","id":"38148572","geometry":{"type":"LineString","coordinates":[[16.3883764,48.21913430000001],[16.3884532,48.219226899999995],[16.3884866,48.21926250000001],[16.3888141,48.21954920000002],[16.3889125,48.219601299999994],[16.3891229,48.21962150000002],[16.3900335,48.2197013],[16.3901618,48.219717599999996],[16.3902439,48.21972640000004]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","is_in":"Austria,Wien,Leopoldstadt","maxspeed":"50","name":"Kleine Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"158802951","geometry":{"type":"LineString","coordinates":[[16.3860681,48.220485999999994],[16.3859707,48.220488899999964],[16.3858856,48.22049749999999],[16.385864,48.220499700000005],[16.3857956,48.220517400000006],[16.3856873,48.22055639999999]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Mühlfeldgasse","oneway":"yes"}},{"type":"Feature","id":"347561084","geometry":{"type":"LineString","coordinates":[[16.3863349,48.220509899999996],[16.3860681,48.220485999999994]]},"properties":{"cycleway":"opposite","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Mühlfeldgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"8030126","geometry":{"type":"LineString","coordinates":[[16.3860681,48.220485999999994],[16.3861169,48.2205898]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Rueppgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"158798823","geometry":{"type":"LineString","coordinates":[[16.3853005,48.220616000000035],[16.3849392,48.2197846]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Pillersdorfgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8052772","geometry":{"type":"LineString","coordinates":[[16.384682,48.220944299999985],[16.3842249,48.219925200000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pazmanitengasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148553","geometry":{"type":"LineString","coordinates":[[16.3856873,48.22055639999999],[16.3858517,48.22047140000001],[16.3859983,48.22039569999998],[16.3861262,48.22033210000001]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Heinestraße","old_name":"Augartenallee","old_name:1938-1945":"Schönererstraße","surface":"cobblestone"}},{"type":"Feature","id":"8052774","geometry":{"type":"LineString","coordinates":[[16.3860681,48.220485999999994],[16.3859983,48.22039569999998],[16.3859204,48.22029509999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Rueppgasse","surface":"cobblestone"}},{"type":"Feature","id":"8096040","geometry":{"type":"LineString","coordinates":[[16.3850613,48.21976060000003],[16.3846303,48.2189597]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pillersdorfgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29282751","geometry":{"type":"LineString","coordinates":[[16.3870643,48.21936629999999],[16.3867838,48.21942150000004],[16.385631,48.219648500000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"191545768","geometry":{"type":"LineString","coordinates":[[16.3861262,48.22033210000001],[16.3861902,48.22029900000001],[16.3870909,48.219822599999986],[16.3872997,48.2197151],[16.3883764,48.21913430000001]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Heinestraße","old_name":"Augartenallee","old_name:1938-1945":"Schönererstraße"}},{"type":"Feature","id":"158684121","geometry":{"type":"LineString","coordinates":[[16.385631,48.219648500000005],[16.3858992,48.220246299999985],[16.3859204,48.22029509999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Rueppgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"36055164","geometry":{"type":"LineString","coordinates":[[16.3850613,48.21976060000003],[16.385631,48.219648500000005]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"36055163","geometry":{"type":"LineString","coordinates":[[16.3849392,48.2197846],[16.3850613,48.21976060000003]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29234709","geometry":{"type":"LineString","coordinates":[[16.3901618,48.219717599999996],[16.3902198,48.21944490000001],[16.3902667,48.219278400000036],[16.390604,48.2188903],[16.3906474,48.21884229999998],[16.39069,48.21876209999999],[16.3906916,48.218680500000005]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes"}},{"type":"Feature","id":"29234715","geometry":{"type":"LineString","coordinates":[[16.3902667,48.219278400000036],[16.390236,48.21917260000001],[16.3901676,48.21907569999999],[16.3900105,48.21899930000001],[16.3897833,48.218911299999974],[16.3895642,48.218826500000006],[16.3893557,48.21875219999998],[16.3892662,48.218720399999995],[16.3891173,48.218713199999996]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Praterstern","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"30062345","geometry":{"type":"LineString","coordinates":[[16.3891173,48.218713199999996],[16.3891646,48.218660400000005],[16.3896375,48.21841520000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Heinestraße","note":"Das ist wirklich eine Einbahn. Umkehr nur über Parkplatz möglich.","old_name":"Augartenallee","old_name:1938-1945":"Schönererstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"200689822","geometry":{"type":"LineString","coordinates":[[16.3889461,48.216975399999995],[16.3889106,48.2170098]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mayergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"159743064","geometry":{"type":"LineString","coordinates":[[16.3886125,48.217350100000004],[16.3887637,48.21721819999999],[16.3888211,48.21716809999998]]},"properties":{"highway":"pedestrian","name":"Tethysgasse"}},{"type":"Feature","id":"200689823","geometry":{"type":"LineString","coordinates":[[16.3890424,48.2168853],[16.3889601,48.216961999999995],[16.3889461,48.216975399999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mayergasse","oneway":"yes","source:maxspeed":"AT:zone:30","traffic_calming":"table"}},{"type":"Feature","id":"27322466","geometry":{"type":"LineString","coordinates":[[16.3877236,48.21827410000003],[16.3879888,48.21861629999998],[16.3882979,48.219030299999986],[16.3883175,48.2190549],[16.3883764,48.21913430000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kleine Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29234733","geometry":{"type":"LineString","coordinates":[[16.386762,48.21891819999999],[16.3879888,48.21861629999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Aloisgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148558","geometry":{"type":"LineString","coordinates":[[16.3883764,48.21913430000001],[16.3891173,48.218713199999996]]},"properties":{"highway":"residential","maxspeed":"50","name":"Heinestraße","old_name":"Augartenallee","old_name:1938-1945":"Schönererstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"159711621","geometry":{"type":"LineString","coordinates":[[16.385959,48.21746780000001],[16.3860407,48.21743799999999],[16.3861094,48.21741300000002],[16.3865314,48.21725910000001],[16.3866042,48.21723259999999]]},"properties":{"highway":"pedestrian","name":"Odeongasse"}},{"type":"Feature","id":"159711619","geometry":{"type":"LineString","coordinates":[[16.3858165,48.21752460000002],[16.385959,48.21746780000001]]},"properties":{"highway":"pedestrian","name":"Odeongasse","tunnel":"building_passage"}},{"type":"Feature","id":"159743049","geometry":{"type":"LineString","coordinates":[[16.3874164,48.21756179999997],[16.3872737,48.2176187]]},"properties":{"covered":"yes","highway":"living_street","name":"Ernst-Renz-Gasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"158798830","geometry":{"type":"LineString","coordinates":[[16.3872336,48.21961640000001],[16.3870643,48.21936629999999],[16.3870277,48.219309100000004],[16.386762,48.21891819999999],[16.3865423,48.21860029999999],[16.38651,48.21854909999999],[16.3864827,48.21851100000001],[16.3863165,48.218280600000014],[16.38622,48.21820790000001],[16.3861252,48.21809409999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zirkusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"159743048","geometry":{"type":"LineString","coordinates":[[16.3872737,48.2176187],[16.3871799,48.2176547]]},"properties":{"highway":"living_street","name":"Ernst-Renz-Gasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"26719089","geometry":{"type":"LineString","coordinates":[[16.3893155,48.217785900000024],[16.3886125,48.217350100000004],[16.3883513,48.217188299999975],[16.3874183,48.21661280000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Afrikanergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"30665721","geometry":{"type":"LineString","coordinates":[[16.3883513,48.217188299999975],[16.3874164,48.21756179999997]]},"properties":{"highway":"living_street","name":"Ernst-Renz-Gasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"159711618","geometry":{"type":"LineString","coordinates":[[16.3843579,48.2179294],[16.3844775,48.21789960000001],[16.3848401,48.21780919999998],[16.3851214,48.21773910000002],[16.3857209,48.2175896]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Odeongasse","note":"Fahrverbot ausgen. Fahrrad","vehicle":"no"}},{"type":"Feature","id":"159711620","geometry":{"type":"LineString","coordinates":[[16.3842228,48.217963199999986],[16.3843579,48.2179294]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Odeongasse","note":"Fahrverbot ausgen. Fahrrad","tunnel":"building_passage","vehicle":"no"}},{"type":"Feature","id":"23312416","geometry":{"type":"LineString","coordinates":[[16.3857209,48.2175896],[16.3858165,48.21752460000002]]},"properties":{"highway":"pedestrian","name":"Odeongasse"}},{"type":"Feature","id":"8096039","geometry":{"type":"LineString","coordinates":[[16.3873465,48.21634689999999],[16.3873208,48.21637549999997],[16.3872876,48.21640860000002],[16.3872065,48.21648399999998],[16.3874183,48.21661280000001],[16.3875207,48.216522699999985],[16.3875539,48.21649350000001],[16.3875881,48.2164612]]},"properties":{"highway":"residential","maxspeed":"30","name":"Praterstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"148101975","geometry":{"type":"LineString","coordinates":[[16.3869785,48.216054000000014],[16.3870974,48.21610370000002],[16.3889106,48.2170098],[16.3900852,48.21761430000004],[16.3902369,48.21765440000004],[16.3902731,48.21765719999999],[16.3904868,48.21762849999996],[16.3906649,48.21756830000001]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Praterstraße","old_name":"Jägerzeile","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"200689826","geometry":{"type":"LineString","coordinates":[[16.3868923,48.2161328],[16.3869785,48.216054000000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rotensterngasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"200689827","geometry":{"type":"LineString","coordinates":[[16.386851,48.2161663],[16.3868923,48.2161328]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rotensterngasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"125635497","geometry":{"type":"LineString","coordinates":[[16.3901583,48.217788600000006],[16.3900795,48.21772570000002],[16.3898714,48.21761890000002],[16.3897462,48.21755780000001],[16.3875881,48.2164612],[16.3873465,48.21634689999999],[16.3870747,48.21620979999997],[16.3870398,48.21619220000002],[16.3868923,48.2161328]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Praterstraße","old_name":"Jägerzeile","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8052861","geometry":{"type":"LineString","coordinates":[[16.3901636,48.2158163],[16.3890424,48.2168853]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mayergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"200758454","geometry":{"type":"LineString","coordinates":[[16.3866089,48.21629269999997],[16.3867379,48.216196],[16.3868016,48.21617929999999],[16.386851,48.2161663]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rotensterngasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"200758453","geometry":{"type":"LineString","coordinates":[[16.386851,48.2161663],[16.3868345,48.21619720000001],[16.3868108,48.2162414],[16.3866089,48.21629269999997]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Rotensterngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8096083","geometry":{"type":"LineString","coordinates":[[16.3855689,48.2164229],[16.3862189,48.21593250000001],[16.3862678,48.21590259999999],[16.3863077,48.2158781]]},"properties":{"highway":"pedestrian","name":"Nepomukgasse"}},{"type":"Feature","id":"5144308","geometry":{"type":"LineString","coordinates":[[16.3857517,48.216614100000015],[16.386284,48.216410000000025],[16.3866089,48.21629269999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rotensterngasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522432","geometry":{"type":"LineString","coordinates":[[16.3923622,48.215535200000005],[16.3924078,48.2155138],[16.3924389,48.2154429],[16.3926278,48.214830199999994],[16.3926357,48.21480460000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stoffellagasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522500","geometry":{"type":"LineString","coordinates":[[16.3923441,48.21472510000001],[16.3924796,48.2142647],[16.3925009,48.21415720000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Helenengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"385827350","geometry":{"type":"LineString","coordinates":[[16.3925009,48.21415720000002],[16.3925615,48.2141201],[16.3927761,48.21415050000002],[16.3928183,48.21419589999999]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Vivariumstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"385827351","geometry":{"type":"LineString","coordinates":[[16.3928183,48.21419589999999],[16.3927565,48.214215300000035],[16.3925381,48.21419130000001],[16.3925009,48.21415720000002]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Vivariumstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24662761","geometry":{"type":"LineString","coordinates":[[16.3926357,48.21480460000001],[16.3927566,48.21440150000001],[16.3927925,48.21428190000003],[16.3928183,48.21419589999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stoffellagasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148778","geometry":{"type":"LineString","coordinates":[[16.3928183,48.21419589999999],[16.3933543,48.214284599999985],[16.3947467,48.21447720000003],[16.3953996,48.21461450000001]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Vivariumstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522430","geometry":{"type":"LineString","coordinates":[[16.3916269,48.21394599999999],[16.3916902,48.213959999999986],[16.3918798,48.21405329999999]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Vivariumstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"385827352","geometry":{"type":"LineString","coordinates":[[16.3918798,48.21405329999999],[16.3920663,48.214093399999996],[16.3925009,48.21415720000002]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Vivariumstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"385827349","geometry":{"type":"LineString","coordinates":[[16.3918798,48.21405329999999],[16.3917944,48.2140594],[16.391666,48.214057],[16.3915807,48.214058800000004]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Vivariumstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"8052864","geometry":{"type":"LineString","coordinates":[[16.3895418,48.21393119999999],[16.3895472,48.2139751],[16.3896384,48.2145295]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schwemmgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"40864165","geometry":{"type":"LineString","coordinates":[[16.3909545,48.2173056],[16.3911057,48.217136900000014],[16.3911541,48.21699899999996],[16.3911163,48.2168441],[16.3909467,48.21646340000001],[16.3909176,48.21630830000001],[16.3909251,48.216108899999995],[16.3910767,48.21543890000001],[16.3913116,48.21437800000001],[16.3913671,48.21405490000001],[16.3913816,48.213977400000005]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrückenstraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"30019533","geometry":{"type":"LineString","coordinates":[[16.3903612,48.21404749999999],[16.3904331,48.2144548]]},"properties":{"highway":"residential","maxspeed":"30","name":"Waschhausgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24745889","geometry":{"type":"LineString","coordinates":[[16.3896877,48.21528500000002],[16.3898949,48.214505400000036]]},"properties":{"highway":"residential","maxspeed":"30","name":"Körnergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8052857","geometry":{"type":"LineString","coordinates":[[16.3896877,48.21528500000002],[16.3896046,48.21559279999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Körnergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8052863","geometry":{"type":"LineString","coordinates":[[16.3910767,48.21543890000001],[16.39095,48.21542489999999],[16.3896877,48.21528500000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hofenedergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29277071","geometry":{"type":"LineString","coordinates":[[16.3913671,48.21405490000001],[16.391284,48.21394509999996],[16.3912023,48.21390740000001],[16.3911122,48.21389060000001],[16.3905062,48.21395419999999],[16.3903906,48.2139981],[16.3903612,48.21404749999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Vivariumstraße","oneway":"yes","source:maxspeed":"AT:zone:30","vehicle":"destination"}},{"type":"Feature","id":"148505736","geometry":{"type":"LineString","coordinates":[[16.3915217,48.213609599999984],[16.3915062,48.213612100000006],[16.3914846,48.213616],[16.3914109,48.21362850000003]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","ref":"B227","surface":"asphalt"}},{"type":"Feature","id":"510848419","geometry":{"type":"LineString","coordinates":[[16.3913816,48.213977400000005],[16.3914057,48.21380529999999],[16.3914105,48.213727000000006],[16.3914115,48.21369010000001],[16.3914109,48.21362850000003]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrückenstraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"102564126","geometry":{"type":"LineString","coordinates":[[16.3915337,48.2135074],[16.3915965,48.21359709999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrückenstraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"8105265","geometry":{"type":"LineString","coordinates":[[16.3914109,48.21362850000003],[16.3913802,48.21353689999998]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrücke","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"30085518","geometry":{"type":"LineString","coordinates":[[16.3925009,48.21415720000002],[16.3925264,48.2140569],[16.392562,48.21386319999999],[16.3925437,48.21364],[16.3925096,48.213498200000004],[16.3924742,48.213453000000015],[16.3924287,48.2133949]]},"properties":{"highway":"residential","maxspeed":"30","name":"Helenengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24662762","geometry":{"type":"LineString","coordinates":[[16.3928183,48.21419589999999],[16.3928446,48.214090699999986],[16.3928462,48.21404419999999],[16.3928637,48.21384760000001],[16.3928556,48.2136093],[16.3928096,48.213445199999995],[16.3927997,48.2133948],[16.3927861,48.213325199999986]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stoffellagasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9799417","geometry":{"type":"LineString","coordinates":[[16.3913578,48.21283360000001],[16.3914042,48.21282529999999],[16.3915695,48.212795899999975],[16.3919484,48.212721200000004],[16.3921858,48.21267219999996],[16.3923474,48.2126313],[16.3925204,48.21257299999996],[16.3926515,48.212520299999994],[16.3928305,48.212441600000005],[16.3929678,48.2123665],[16.3931366,48.21225390000001],[16.3932736,48.21214299999997],[16.3933898,48.212027500000005],[16.3935276,48.21188230000001],[16.3936582,48.21173959999999],[16.393814,48.211561200000006],[16.3939618,48.211362399999985]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Weißgerberlände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"185062799","geometry":{"type":"LineString","coordinates":[[16.392217,48.2119098],[16.3925003,48.21218919999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Untere Viaduktgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13447578","geometry":{"type":"LineString","coordinates":[[16.3919681,48.212058299999995],[16.3920624,48.21224560000002],[16.3921434,48.21245479999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obere Viaduktgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25428182","geometry":{"type":"LineString","coordinates":[[16.3921434,48.21245479999999],[16.3922871,48.21240660000001],[16.3924341,48.2123502],[16.392597,48.21227830000004],[16.3928419,48.21215509999999],[16.3930204,48.212052700000015],[16.3932822,48.21188570000001],[16.3934419,48.2117533],[16.3937112,48.21153240000001],[16.3939156,48.211393799999996],[16.3939307,48.21138350000001],[16.3939618,48.211362399999985]]},"properties":{"highway":"primary_link","lanes":"1","lit":"yes","maxspeed":"50","name":"Weißgerberlände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"9799695","geometry":{"type":"LineString","coordinates":[[16.3913802,48.21353689999998],[16.391288,48.21332380000001]]},"properties":{"bridge":"yes","highway":"primary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Franzensbrücke","oneway":"yes","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"102564132","geometry":{"type":"LineString","coordinates":[[16.3915965,48.21359709999999],[16.3916369,48.213662699999986],[16.391644,48.213691400000016],[16.3916474,48.21373150000002],[16.3916494,48.2137668],[16.3916348,48.21387970000001],[16.3916269,48.21394599999999],[16.3915807,48.214058800000004],[16.3915464,48.214142400000014],[16.3914643,48.21446639999999],[16.3912437,48.215456200000006],[16.3910918,48.216126],[16.3910907,48.216241499999995],[16.3910975,48.216330200000016],[16.3911284,48.21642889999998],[16.3911697,48.21650890000001],[16.3912769,48.216641099999975],[16.3913631,48.216721699999994],[16.3914775,48.216785399999964],[16.3916145,48.21684260000001],[16.3917003,48.21686969999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrückenstraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"102564137","geometry":{"type":"LineString","coordinates":[[16.3912204,48.21281569999999],[16.3915337,48.2135074]]},"properties":{"bridge":"yes","highway":"primary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Franzensbrücke","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"102460711","geometry":{"type":"LineString","coordinates":[[16.3909993,48.21289729999998],[16.3913578,48.21283360000001]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Dampfschiffstraße","oneway":"yes","ref":"B227","surface":"asphalt"}},{"type":"Feature","id":"405291442","geometry":{"type":"LineString","coordinates":[[16.391288,48.21332380000001],[16.3910797,48.212842300000005]]},"properties":{"bridge":"yes","highway":"primary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Franzensbrücke","oneway":"yes","source:maxspeed":"AT:urban","surface":"asphalt","turn:lanes":"left|through"}},{"type":"Feature","id":"4469957","geometry":{"type":"LineString","coordinates":[[16.3911236,48.21274679999996],[16.3911503,48.21276660000001],[16.3911729,48.21278000000001],[16.3912025,48.21279870000001],[16.3912204,48.21281569999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrücke","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"419217016","geometry":{"type":"LineString","coordinates":[[16.3911236,48.21274679999996],[16.3912751,48.21272030000003],[16.3914075,48.2126878],[16.3915775,48.21263990000003],[16.3917992,48.21257270000001],[16.3921434,48.21245479999999]]},"properties":{"highway":"primary_link","lanes":"1","lit":"yes","maxspeed":"50","name":"Dampfschiffstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"9799692","geometry":{"type":"LineString","coordinates":[[16.3910797,48.212842300000005],[16.3910772,48.2128189],[16.3910905,48.21279559999999],[16.391113,48.212769699999996],[16.3911236,48.21274679999996]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrücke","source:maxspeed":"AT:urban","surface":"asphalt","turn:lanes":"left|through"}},{"type":"Feature","id":"204274840","geometry":{"type":"LineString","coordinates":[[16.3908951,48.212225399999994],[16.3910898,48.21266969999999],[16.3911236,48.21274679999996]]},"properties":{"cycleway":"lane","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","surface":"cobblestone","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"30011108","geometry":{"type":"LineString","coordinates":[[16.3892942,48.21254540000001],[16.3892866,48.21287269999999]]},"properties":{"bicycle":"designated","highway":"footway","layer":"-1","name":"Angelo-Soliman-Weg","note":"Angelo Soliman; ca. 1721 bis 21. November 1796; Sklave, Kammerdiener, Freimaurer","segregated":"no","source":"http://www.wien.gv.at/kultur/strassennamen/neue-strassen.html#261113","wikipedia":"de:Angelo Soliman"}},{"type":"Feature","id":"9799826","geometry":{"type":"LineString","coordinates":[[16.3900592,48.21291450000001],[16.3903655,48.21288329999999],[16.3906218,48.21284649999998],[16.3909013,48.21279290000001],[16.390977,48.212777200000005],[16.3911236,48.21274679999996]]},"properties":{"highway":"primary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Dampfschiffstraße","oneway":"yes","ref":"B227","turn:lanes":"left|left|through;right"}},{"type":"Feature","id":"161602492","geometry":{"type":"LineString","coordinates":[[16.3927576,48.213101800000004],[16.3922808,48.213232800000014],[16.3918879,48.2133661],[16.3912416,48.21352780000001],[16.3910159,48.21355539999999],[16.3906494,48.213600300000024],[16.3898735,48.21365509999998]]},"properties":{"bicycle":"yes","foot":"yes","highway":"path","motor_vehicle":"private","name":"Praterufer","source:surface":"survey","surface":"paving_stones"}},{"type":"Feature","id":"9825336","geometry":{"type":"LineString","coordinates":[[16.392217,48.2119098],[16.3919681,48.212058299999995],[16.3910071,48.212208000000004],[16.3908951,48.212225399999994]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Obere Weißgerberstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10505194","geometry":{"type":"LineString","coordinates":[[16.3919681,48.212058299999995],[16.3915767,48.2116901],[16.3912532,48.2114555],[16.3906091,48.210984999999994],[16.390515,48.21100580000001],[16.3904875,48.21101680000001],[16.3904606,48.211033799999996],[16.3904337,48.21105979999999],[16.3903962,48.211097800000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obere Viaduktgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"176442979","geometry":{"type":"LineString","coordinates":[[16.3903373,48.211033999999955],[16.3903584,48.21105219999998],[16.390378,48.21107180000004],[16.3903962,48.211097800000005]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"178026561","geometry":{"type":"LineString","coordinates":[[16.3903962,48.211097800000005],[16.390409,48.21112019999998],[16.3904136,48.21113059999999],[16.3908951,48.212225399999994]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"8041139","geometry":{"type":"LineString","coordinates":[[16.3915419,48.21138479999999],[16.3919986,48.2107929],[16.3924564,48.210186599999986],[16.3930775,48.209340999999995],[16.3937103,48.20851189999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Adamsgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25428114","geometry":{"type":"LineString","coordinates":[[16.3913494,48.20886490000004],[16.3914627,48.2091217],[16.3917711,48.2093127],[16.3918348,48.20935449999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolonitzplatz","oneway":"yes","source:maxspeed":"AT:zone","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"8041136","geometry":{"type":"LineString","coordinates":[[16.3942542,48.21103000000002],[16.3934696,48.21067070000001],[16.393392,48.210616000000016],[16.3924564,48.210186599999986],[16.3914697,48.2097239],[16.391396,48.20968930000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krieglergasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"8080552","geometry":{"type":"LineString","coordinates":[[16.3922329,48.209048199999984],[16.3923013,48.2090719],[16.3930775,48.209340999999995],[16.3939516,48.209637499999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Custozzagasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"10068916","geometry":{"type":"LineString","coordinates":[[16.3935422,48.20755270000001],[16.3934643,48.2075375],[16.3927661,48.2074016],[16.3926663,48.207380900000004],[16.3922426,48.2073049],[16.3919079,48.2073657]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kegelgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9653374","geometry":{"type":"LineString","coordinates":[[16.3919079,48.2073657],[16.3919895,48.207826299999965],[16.3920823,48.20833569999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blattgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9653339","geometry":{"type":"LineString","coordinates":[[16.3919079,48.2073657],[16.3919037,48.207325499999996],[16.3914769,48.206438100000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blattgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"46738173","geometry":{"type":"LineString","coordinates":[[16.3979076,48.20691149999999],[16.3978102,48.20747879999999],[16.3977059,48.2078832],[16.3973994,48.208615399999985],[16.3971533,48.20911479999998],[16.3970871,48.20925439999999],[16.3967428,48.20983410000002],[16.3963144,48.21046899999996],[16.3962128,48.210602600000016],[16.3959787,48.210932299999996],[16.3957421,48.2112659],[16.3955619,48.211481099999986],[16.395443,48.21161510000002],[16.3950128,48.21205939999999],[16.3946609,48.21240499999999],[16.3944145,48.21256819999999],[16.3941445,48.21273339999999],[16.3936506,48.212967899999995],[16.3927861,48.213325199999986],[16.3924287,48.2133949],[16.3919211,48.21352110000001],[16.391675,48.213583099999994],[16.3915965,48.21359709999999],[16.3915217,48.213609599999984]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"9653484","geometry":{"type":"LineString","coordinates":[[16.3926448,48.20788330000002],[16.3927661,48.2074016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stammgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9653471","geometry":{"type":"LineString","coordinates":[[16.3919895,48.207826299999965],[16.3920924,48.2078272],[16.3926448,48.20788330000002],[16.3932019,48.20793370000001],[16.3932893,48.20794160000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blütengasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"25428043","geometry":{"type":"LineString","coordinates":[[16.3918348,48.20935449999999],[16.3922329,48.209048199999984],[16.3925419,48.208805100000006],[16.3926964,48.208683399999984],[16.3928392,48.208557299999995],[16.3929131,48.20847739999999],[16.3929311,48.2084552],[16.3929875,48.2083906],[16.3930182,48.20834589999998],[16.3930993,48.2082279],[16.3932893,48.20794160000003]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Löwengasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"176475522","geometry":{"type":"LineString","coordinates":[[16.3903064,48.21074780000001],[16.3902714,48.2107264]]},"properties":{"foot":"yes","highway":"pedestrian","name":"Radetzkyplatz","wikipedia":"de:Radetzkyplatz"}},{"type":"Feature","id":"176442977","geometry":{"type":"LineString","coordinates":[[16.3902494,48.210799399999985],[16.3903064,48.21074780000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkyplatz","wikipedia":"de:Radetzkyplatz"}},{"type":"Feature","id":"176442978","geometry":{"type":"LineString","coordinates":[[16.3902494,48.210799399999985],[16.3902581,48.210864799999996],[16.3902767,48.2109097],[16.3903025,48.210972],[16.3903373,48.211033999999955]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkyplatz","oneway":"yes"}},{"type":"Feature","id":"30011107","geometry":{"type":"LineString","coordinates":[[16.3906091,48.210984999999994],[16.3904376,48.210850600000015],[16.3903477,48.21078019999999],[16.3903064,48.21074780000001]]},"properties":{"foot":"yes","highway":"pedestrian","name":"Radetzkyplatz","wikipedia":"de:Radetzkyplatz"}},{"type":"Feature","id":"8041183","geometry":{"type":"LineString","coordinates":[[16.3904611,48.2105852],[16.3908142,48.21021350000001],[16.3908941,48.210122600000005],[16.3909723,48.210038699999984],[16.3910647,48.20995619999999],[16.3912505,48.20980939999998],[16.391396,48.20968930000001],[16.391607,48.20951930000001],[16.3918348,48.20935449999999]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Löwengasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"9652633","geometry":{"type":"LineString","coordinates":[[16.3901688,48.20978199999999],[16.3901884,48.20979249999999]]},"properties":{"highway":"footway","name":"Kolonitzplatz","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"30011105","geometry":{"type":"LineString","coordinates":[[16.3908142,48.21021350000001],[16.3908752,48.210243400000024],[16.3919986,48.2107929]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dianagasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"182021584","geometry":{"type":"LineString","coordinates":[[16.3908263,48.21010670000001],[16.3908362,48.21009919999997],[16.3908941,48.210122600000005]]},"properties":{"highway":"footway","name":"Kolonitzplatz"}},{"type":"Feature","id":"53772724","geometry":{"type":"LineString","coordinates":[[16.3903064,48.21074780000001],[16.3904611,48.2105852]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxheight":"3.8","maxspeed":"50","name":"Radetzkyplatz","wikipedia":"de:Radetzkyplatz"}},{"type":"Feature","id":"9825305","geometry":{"type":"LineString","coordinates":[[16.3904611,48.2105852],[16.3905136,48.21062399999997],[16.3914682,48.21133019999999],[16.3915419,48.21138479999999],[16.392217,48.2119098]]},"properties":{"highway":"residential","maxspeed":"30","name":"Untere Viaduktgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10065704","geometry":{"type":"LineString","coordinates":[[16.3955704,48.20886860000002],[16.3943917,48.20864919999997],[16.3937103,48.20851189999999],[16.393089,48.2083973],[16.3930764,48.20839649999999],[16.3929875,48.2083906],[16.3928961,48.208383999999995],[16.3921456,48.20833010000001],[16.3920823,48.20833569999999],[16.3911653,48.20843239999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hetzgasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"24702812","geometry":{"type":"LineString","coordinates":[[16.390707,48.207566499999984],[16.3907678,48.20761280000002],[16.3908511,48.207752200000016],[16.3911653,48.20843239999999],[16.3911608,48.2084911],[16.3913494,48.20886490000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Seidlgasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"101967408","geometry":{"type":"LineString","coordinates":[[16.3903609,48.208585200000016],[16.3909613,48.208435899999984],[16.3910569,48.20842190000002],[16.3911653,48.20843239999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hetzgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9654775","geometry":{"type":"LineString","coordinates":[[16.3909332,48.209158599999995],[16.3905323,48.2089144],[16.3903706,48.208627800000016],[16.3903609,48.208585200000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kollergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13446472","geometry":{"type":"LineString","coordinates":[[16.3913494,48.20886490000004],[16.3912315,48.2089484],[16.3909332,48.209158599999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolonitzplatz","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"9654794","geometry":{"type":"LineString","coordinates":[[16.3902148,48.20974320000002],[16.3908594,48.20923880000001],[16.3909332,48.209158599999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolonitzplatz","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"8052912","geometry":{"type":"LineString","coordinates":[[16.3903373,48.211033999999955],[16.390308,48.21101429999999],[16.390277,48.21099889999999],[16.3902318,48.21098330000001],[16.3901954,48.210976200000005],[16.3901652,48.2109744],[16.3901116,48.210974300000004],[16.3899677,48.21098109999997]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","oneway":"yes","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"29075729","geometry":{"type":"LineString","coordinates":[[16.3894629,48.210149099999995],[16.3895572,48.2102137],[16.3894943,48.21026280000001],[16.3894388,48.2102855],[16.3893905,48.21029659999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Armenierplatz","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"13441328","geometry":{"type":"LineString","coordinates":[[16.3895572,48.2102137],[16.3896772,48.21030289999999]]},"properties":{"foot":"yes","highway":"residential","maxspeed":"30","name":"Armenierplatz","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"255730714","geometry":{"type":"LineString","coordinates":[[16.3896772,48.21030289999999],[16.3897276,48.21034040000001],[16.3899721,48.2105268]]},"properties":{"foot":"yes","highway":"residential","maxspeed":"30","name":"Obere Viaduktgasse","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"9825376","geometry":{"type":"LineString","coordinates":[[16.3899677,48.21098109999997],[16.390015,48.21094639999998],[16.3901003,48.210899600000005],[16.3901364,48.21088040000001],[16.3902494,48.210799399999985]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkyplatz","wikipedia":"de:Radetzkyplatz"}},{"type":"Feature","id":"175403012","geometry":{"type":"LineString","coordinates":[[16.389907,48.207762599999995],[16.3903609,48.208585200000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kollergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"175403011","geometry":{"type":"LineString","coordinates":[[16.389907,48.207762599999995],[16.390707,48.207566499999984],[16.3915048,48.20744570000002],[16.3919079,48.2073657]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kegelgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9653943","geometry":{"type":"LineString","coordinates":[[16.3894225,48.20685370000001],[16.389907,48.207762599999995]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Kollergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"178446499","geometry":{"type":"LineString","coordinates":[[16.3900175,48.20685209999999],[16.3896947,48.206431899999984]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Seidlgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"9654268","geometry":{"type":"LineString","coordinates":[[16.390707,48.207566499999984],[16.3900175,48.20685209999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Seidlgasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"9653867","geometry":{"type":"LineString","coordinates":[[16.3902148,48.20974320000002],[16.390173,48.209679300000005],[16.389973,48.209304599999996],[16.3899028,48.20919860000001],[16.3898995,48.20914429999999],[16.3896833,48.208749100000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bechardgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13446308","geometry":{"type":"LineString","coordinates":[[16.3897623,48.21008089999998],[16.3898474,48.210038999999995],[16.3901688,48.20978199999999],[16.3902148,48.20974320000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolonitzgasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"9929568","geometry":{"type":"LineString","coordinates":[[16.3897623,48.21008089999998],[16.3903438,48.21050059999999],[16.3904611,48.2105852]]},"properties":{"foot":"yes","highway":"cycleway","name":"Untere Viaduktgasse"}},{"type":"Feature","id":"8052850","geometry":{"type":"LineString","coordinates":[[16.3876807,48.21472349999999],[16.3888246,48.21460250000001],[16.3896384,48.2145295],[16.3898949,48.214505400000036],[16.3904331,48.2144548],[16.3908296,48.21445330000003],[16.3911528,48.21448570000001],[16.3911631,48.21448319999999],[16.3912304,48.21446689999999],[16.3913116,48.21437800000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lichtenauergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8052865","geometry":{"type":"LineString","coordinates":[[16.3888246,48.21460250000001],[16.3887272,48.21404970000003],[16.3887279,48.2139717],[16.3887375,48.21392740000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Robertgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"513320504","geometry":{"type":"LineString","coordinates":[[16.389282,48.21307139999996],[16.3892806,48.213130500000005]]},"properties":{"bicycle":"designated","highway":"footway","layer":"-1","name":"Angelo-Soliman-Weg","note":"Angelo Soliman; ca. 1721 bis 21. November 1796; Sklave, Kammerdiener, Freimaurer","segregated":"no","source":"http://www.wien.gv.at/kultur/strassennamen/neue-strassen.html#261113","wikipedia":"de:Angelo Soliman"}},{"type":"Feature","id":"8041129","geometry":{"type":"LineString","coordinates":[[16.3878926,48.21154139999999],[16.3895964,48.211691900000005]]},"properties":{"bicycle":"yes","highway":"living_street","maxspeed":"walk","name":"Dißlergasse","oneway":"yes"}},{"type":"Feature","id":"70843879","geometry":{"type":"LineString","coordinates":[[16.3879714,48.21218619999999],[16.3888335,48.2123948],[16.3892155,48.21245290000002]]},"properties":{"alt_name":"Obere Weißgärberstraße","highway":"residential","maxspeed":"30","name":"Obere Weißgerberstraße","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"513320505","geometry":{"type":"LineString","coordinates":[[16.3892866,48.21287269999999],[16.389282,48.21307139999996]]},"properties":{"bicycle":"designated","highway":"footway","layer":"-1","name":"Angelo-Soliman-Weg","note":"Angelo Soliman; ca. 1721 bis 21. November 1796; Sklave, Kammerdiener, Freimaurer","segregated":"no","source":"http://www.wien.gv.at/kultur/strassennamen/neue-strassen.html#261113","tunnel":"yes","wikipedia":"de:Angelo Soliman"}},{"type":"Feature","id":"102460709","geometry":{"type":"LineString","coordinates":[[16.3892806,48.213130500000005],[16.3895246,48.21314460000002],[16.3899823,48.2131239],[16.3906416,48.213045300000005],[16.3908687,48.21300219999998],[16.3910201,48.212971400000015],[16.3914313,48.21288770000004],[16.3916071,48.212851900000004],[16.3924107,48.21269460000002],[16.3927991,48.212545500000004],[16.3930422,48.21240689999999],[16.3932789,48.21224190000004]]},"properties":{"foot":"yes","highway":"cycleway","name":"Weißgerberufer","surface":"cobblestone"}},{"type":"Feature","id":"28171635","geometry":{"type":"LineString","coordinates":[[16.3908951,48.212225399999994],[16.3907578,48.2122468],[16.389403,48.212458099999964],[16.3892155,48.21245290000002]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Obere Weißgerberstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"25190959","geometry":{"type":"LineString","coordinates":[[16.3892155,48.21245290000002],[16.3892942,48.21254540000001]]},"properties":{"bicycle":"yes","highway":"footway","layer":"-1","name":"Angelo-Soliman-Weg","note":"Angelo Soliman; ca. 1721 bis 21. November 1796; Sklave, Kammerdiener, Freimaurer","segregated":"no","source":"http://www.wien.gv.at/kultur/strassennamen/neue-strassen.html#261113","wikipedia":"de:Angelo Soliman"}},{"type":"Feature","id":"419217015","geometry":{"type":"LineString","coordinates":[[16.3890101,48.21295850000001],[16.3892066,48.21294520000001],[16.3895541,48.212940300000014],[16.389828,48.21293259999999],[16.3900592,48.21291450000001]]},"properties":{"highway":"primary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Dampfschiffstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"8052910","geometry":{"type":"LineString","coordinates":[[16.3892066,48.21294520000001],[16.3892155,48.21245290000002]]},"properties":{"highway":"pedestrian","name":"Löwengasse"}},{"type":"Feature","id":"8052867","geometry":{"type":"LineString","coordinates":[[16.3877318,48.21378060000001],[16.3876098,48.213798199999985],[16.3874719,48.213818100000026],[16.3874356,48.21377970000003],[16.3874604,48.21373829999999],[16.3874985,48.21369730000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Fruchtgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"361672180","geometry":{"type":"LineString","coordinates":[[16.3874719,48.213818100000026],[16.3875562,48.21437309999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Fruchtgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"102556653","geometry":{"type":"LineString","coordinates":[[16.3875562,48.21437309999999],[16.3875752,48.2146918]]},"properties":{"highway":"residential","maxspeed":"30","name":"Czerninplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29696030","geometry":{"type":"LineString","coordinates":[[16.3875752,48.2146918],[16.3876807,48.21472349999999],[16.3880002,48.21489510000001],[16.3891124,48.21537510000002],[16.3896046,48.21559279999997],[16.3898231,48.21566330000002],[16.3901636,48.2158163],[16.3907491,48.21608739999999],[16.3907985,48.216093400000005],[16.3909251,48.216108899999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Czerningasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29696032","geometry":{"type":"LineString","coordinates":[[16.3867347,48.21437309999999],[16.3874369,48.21465749999999],[16.3875752,48.2146918]]},"properties":{"highway":"residential","maxspeed":"30","name":"Czerninplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29234546","geometry":{"type":"LineString","coordinates":[[16.3867347,48.21437309999999],[16.3875562,48.21437309999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Czerninplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28617038","geometry":{"type":"LineString","coordinates":[[16.386487,48.211962700000015],[16.3867306,48.21219240000002],[16.3868393,48.21221830000002],[16.3869372,48.21218859999999],[16.3870402,48.212102200000004]]},"properties":{"highway":"tertiary","lanes":"1","maxspeed":"50","name":"Hintere Zollamtsstraße","oneway":"yes"}},{"type":"Feature","id":"10504931","geometry":{"type":"LineString","coordinates":[[16.3870999,48.211965599999985],[16.3879714,48.21218619999999]]},"properties":{"alt_name":"Obere Weißgärberstraße","highway":"residential","maxspeed":"30","name":"Obere Weißgerberstraße","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"28617039","geometry":{"type":"LineString","coordinates":[[16.3870402,48.212102200000004],[16.3869344,48.212309000000005],[16.3869205,48.212373100000036],[16.3869296,48.21241750000004],[16.3869822,48.21247260000001],[16.3870495,48.212519999999984],[16.3872203,48.2125992],[16.3875755,48.212725999999975]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Hintere Zollamtsstraße","oneway":"yes"}},{"type":"Feature","id":"8052903","geometry":{"type":"LineString","coordinates":[[16.3870393,48.2111745],[16.3871272,48.211169100000006],[16.3872845,48.21115930000002]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"255728431","geometry":{"type":"LineString","coordinates":[[16.3870393,48.2111745],[16.3870422,48.21118799999999],[16.3870595,48.21126140000004],[16.3871108,48.2118438],[16.3871211,48.21189129999999],[16.3870999,48.211965599999985],[16.387086,48.21200569999999],[16.3870402,48.212102200000004]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Hintere Zollamtsstraße"}},{"type":"Feature","id":"8096076","geometry":{"type":"LineString","coordinates":[[16.3859669,48.21307250000001],[16.3858922,48.213136899999995],[16.3857613,48.21352780000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ulrichgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"411393122","geometry":{"type":"LineString","coordinates":[[16.3861767,48.211672799999974],[16.3864049,48.211870799999986],[16.386487,48.211962700000015]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Dampfschiffstraße","oneway":"yes","ref":"B227","turn:lanes":"through|through;right"}},{"type":"Feature","id":"9800317","geometry":{"type":"LineString","coordinates":[[16.386487,48.211962700000015],[16.3867161,48.21232229999998],[16.3868141,48.212425499999995],[16.3869489,48.21252620000001],[16.3870288,48.2125619],[16.3872598,48.212645500000036],[16.3875755,48.212725999999975],[16.3878249,48.2127916],[16.3881868,48.212858900000015],[16.388488,48.21290540000001],[16.3886768,48.21292969999999],[16.3888471,48.21294690000002],[16.3890101,48.21295850000001],[16.3892046,48.2129994],[16.389421,48.2130142],[16.3896156,48.21302350000002],[16.3898429,48.21302220000001],[16.3901216,48.213009099999994],[16.3903846,48.212984699999964],[16.3906437,48.2129549],[16.390989,48.21289899999999],[16.3909993,48.21289729999998]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Dampfschiffstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"101259538","geometry":{"type":"LineString","coordinates":[[16.3864938,48.21218749999997],[16.3864314,48.21226870000001],[16.3864972,48.21240940000004],[16.3866125,48.212561300000004],[16.3867708,48.21266319999998],[16.3869317,48.21272569999999],[16.3873421,48.21286520000001],[16.3877444,48.212977800000004],[16.3881655,48.213047500000016],[16.3885813,48.213102899999996],[16.3888093,48.21312069999999],[16.3892806,48.213130500000005]]},"properties":{"bicycle":"no","highway":"footway","name":"Treppelweg"}},{"type":"Feature","id":"234001983","geometry":{"type":"LineString","coordinates":[[16.3882253,48.2104822],[16.388284,48.210878099999974],[16.3883012,48.21099809999998],[16.3883116,48.21109000000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Matthäusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"148101977","geometry":{"type":"LineString","coordinates":[[16.3883116,48.21109000000001],[16.3898147,48.210991199999995],[16.3899677,48.21098109999997]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"8052894","geometry":{"type":"LineString","coordinates":[[16.3892155,48.21245290000002],[16.3891885,48.2124173],[16.3891718,48.21234390000001],[16.3895964,48.211691900000005],[16.3899783,48.211127000000005],[16.3899895,48.2110869],[16.3899923,48.21107670000001],[16.3899858,48.2110332],[16.3899677,48.21098109999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Löwengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"474645006","geometry":{"type":"LineString","coordinates":[[16.3898257,48.21104600000001],[16.3878625,48.21118150000001],[16.3877763,48.2111702],[16.3872178,48.21120730000001],[16.3871737,48.211220200000014],[16.3871361,48.21123109999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Radetzkystraße"}},{"type":"Feature","id":"148000118","geometry":{"type":"LineString","coordinates":[[16.3872845,48.21115930000002],[16.3874663,48.2111481]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","voltage":"600","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"211153464","geometry":{"type":"LineString","coordinates":[[16.3874663,48.2111481],[16.3878575,48.21112120000001],[16.3883116,48.21109000000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"8041130","geometry":{"type":"LineString","coordinates":[[16.3879714,48.21218619999999],[16.3879465,48.211858800000016],[16.3879208,48.211816400000004],[16.3878926,48.21154139999999],[16.3878625,48.21118150000001],[16.3878575,48.21112120000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pfefferhofgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9653639","geometry":{"type":"LineString","coordinates":[[16.3884192,48.21034639999999],[16.3883693,48.21024750000001],[16.3881807,48.2099752],[16.38787,48.20954520000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Matthäusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"172586380","geometry":{"type":"LineString","coordinates":[[16.3888769,48.20973330000001],[16.3881807,48.2099752]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lorbeergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8041125","geometry":{"type":"LineString","coordinates":[[16.3893905,48.21029659999999],[16.3884192,48.21034639999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Kolonitzgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"30011308","geometry":{"type":"LineString","coordinates":[[16.3884192,48.21034639999999],[16.3882119,48.2103644]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolonitzgasse","source:maxspeed":"AT:zone:30","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"138980889","geometry":{"type":"LineString","coordinates":[[16.3882119,48.2103644],[16.3882253,48.2104822]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Matthäusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"199423211","geometry":{"type":"LineString","coordinates":[[16.3872777,48.208584],[16.388273,48.209314500000005],[16.3888769,48.20973330000001],[16.3894629,48.210149099999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obere Viaduktgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"29082735","geometry":{"type":"LineString","coordinates":[[16.3872473,48.20863009999999],[16.3872053,48.208595599999995]]},"properties":{"highway":"steps","incline":"down","name":"Zollgasse"}},{"type":"Feature","id":"101967406","geometry":{"type":"LineString","coordinates":[[16.3903609,48.208585200000016],[16.3898033,48.208729000000005],[16.3896833,48.208749100000006],[16.3895856,48.208780700000034],[16.3885437,48.2091705]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hetzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9654824","geometry":{"type":"LineString","coordinates":[[16.389075,48.20958239999999],[16.389695,48.20929359999997],[16.3899028,48.20919860000001],[16.3905323,48.2089144]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lorbeergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13442610","geometry":{"type":"LineString","coordinates":[[16.38787,48.20954520000001],[16.388273,48.209314500000005]]},"properties":{"fixme":"Einbahn?","highway":"residential","maxspeed":"30","name":"Hetzgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"255728432","geometry":{"type":"LineString","coordinates":[[16.3868997,48.2104453],[16.3870068,48.210543400000006],[16.3870202,48.210604200000034],[16.3870747,48.21099889999999],[16.3870393,48.2111745]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Hintere Zollamtsstraße","oneway":"yes"}},{"type":"Feature","id":"474645007","geometry":{"type":"LineString","coordinates":[[16.3898287,48.2109451],[16.3898065,48.21094649999998],[16.3897768,48.210948299999984],[16.3892304,48.21098319999999],[16.3891621,48.210979399999985],[16.3882792,48.21103600000001],[16.3871571,48.211109300000004],[16.3871195,48.211111700000004]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Radetzkystraße"}},{"type":"Feature","id":"28171637","geometry":{"type":"LineString","coordinates":[[16.3870393,48.2111745],[16.3869977,48.211095400000005],[16.3869765,48.21101899999999],[16.3869679,48.210983],[16.3869531,48.2108547],[16.3869148,48.21057749999997],[16.3868997,48.2104453]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Hintere Zollamtsstraße","oneway":"yes"}},{"type":"Feature","id":"176475530","geometry":{"type":"LineString","coordinates":[[16.3867653,48.209418200000016],[16.3868892,48.20941250000001],[16.3868537,48.2091307],[16.386817,48.20885390000001],[16.3868504,48.208833999999996],[16.3871823,48.20863590000002]]},"properties":{"highway":"residential","name":"Zollgasse"}},{"type":"Feature","id":"30062344","geometry":{"type":"LineString","coordinates":[[16.38787,48.20954520000001],[16.3870087,48.2100322],[16.3868553,48.21011899999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hetzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"138980890","geometry":{"type":"LineString","coordinates":[[16.3868997,48.2104453],[16.3870701,48.210431200000016],[16.3880774,48.21037100000001],[16.3882119,48.2103644]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Kolonitzgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"30062301","geometry":{"type":"LineString","coordinates":[[16.3892529,48.20792399999999],[16.389907,48.207762599999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kegelgasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"10069242","geometry":{"type":"LineString","coordinates":[[16.3877442,48.2076672],[16.3878397,48.207850199999996],[16.3879079,48.20798099999999],[16.3879865,48.208134],[16.3880249,48.2082087],[16.3884833,48.20908969999999],[16.3885437,48.2091705],[16.3886429,48.209260099999995],[16.389075,48.20958239999999],[16.3891071,48.209607000000005],[16.3897623,48.21008089999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Untere Viaduktgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9653841","geometry":{"type":"LineString","coordinates":[[16.3877442,48.2076672],[16.3889818,48.207385999999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hansalgasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"8041175","geometry":{"type":"LineString","coordinates":[[16.3892529,48.20792399999999],[16.3881794,48.20816639999998],[16.3880249,48.2082087]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kegelgasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"9654599","geometry":{"type":"LineString","coordinates":[[16.3884573,48.20646289999999],[16.3895417,48.20645219999997],[16.3896947,48.206431899999984]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geusaugasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"488248614","geometry":{"type":"LineString","coordinates":[[16.3896833,48.208749100000006],[16.3892529,48.20792399999999],[16.3889818,48.207385999999985],[16.3887516,48.206934399999994],[16.3886766,48.20686589999997]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Bechardgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"504594090","geometry":{"type":"LineString","coordinates":[[16.3874603,48.207129699999996],[16.3875004,48.20720560000001],[16.3877442,48.2076672]]},"properties":{"highway":"residential","maxspeed":"30","name":"Untere Viaduktgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13441493","geometry":{"type":"LineString","coordinates":[[16.3865981,48.208294800000004],[16.3865969,48.20841280000002],[16.386608,48.208523799999995],[16.3867197,48.20909900000001],[16.3867413,48.209254999999985],[16.3867653,48.209418200000016],[16.3867661,48.209427800000014],[16.386828,48.209918500000015],[16.3868553,48.21011899999999],[16.3868786,48.210290499999985],[16.3868997,48.2104453]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Hintere Zollamtsstraße"}},{"type":"Feature","id":"13440700","geometry":{"type":"LineString","coordinates":[[16.3865981,48.208294800000004],[16.3866636,48.20830620000004],[16.3866893,48.2083107],[16.38672,48.208315999999996],[16.3868572,48.20834579999999],[16.3870184,48.20841659999999],[16.3871217,48.208474800000005],[16.3872326,48.208552399999974],[16.3872777,48.208584]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obere Viaduktgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10070609","geometry":{"type":"LineString","coordinates":[[16.3866049,48.207407399999994],[16.3866195,48.207496899999995],[16.3866184,48.2077314]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Markthallenbrücke"}},{"type":"Feature","id":"230847295","geometry":{"type":"LineString","coordinates":[[16.3866184,48.2077314],[16.3866176,48.2077764],[16.3866077,48.20791800000001],[16.3865981,48.208294800000004]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Markthallenbrücke","note":"Don't make this bridge=yes, the tramway tracks would be invisible on the Mapnik map then."}},{"type":"Feature","id":"504594089","geometry":{"type":"LineString","coordinates":[[16.3874603,48.207129699999996],[16.3873767,48.20715680000001],[16.3867552,48.20736299999999],[16.3866049,48.207407399999994]]},"properties":{"cycleway":"opposite_track","cycleway:right":"lane","highway":"residential","lanes":"3","lcn":"yes","maxspeed":"30","name":"Marxergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","turn:lanes":"left|through|through;right","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"13437408","geometry":{"type":"LineString","coordinates":[[16.3862017,48.20686739999999],[16.386288,48.206833899999964],[16.3863241,48.206822500000015],[16.3863928,48.20680089999999],[16.3870806,48.2065848]]},"properties":{"highway":"residential","maxspeed":"30","name":"Grailichgasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Wilhelm Josef Grailich"}},{"type":"Feature","id":"30285687","geometry":{"type":"LineString","coordinates":[[16.3868923,48.2161328],[16.3867733,48.21607720000003],[16.3863552,48.215838899999994],[16.3859151,48.21557999999999],[16.3855054,48.215348800000015],[16.3854939,48.215342599999985],[16.3851937,48.21517660000001],[16.3849501,48.21498389999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Praterstraße","old_name":"Jägerzeile","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"200689825","geometry":{"type":"LineString","coordinates":[[16.3849501,48.21498389999999],[16.3852652,48.215102099999996],[16.3855604,48.2152648],[16.3855775,48.21527459999996],[16.3857248,48.215355999999986],[16.3859893,48.21553299999999],[16.3868454,48.21598580000003],[16.3868833,48.216005800000005],[16.3869785,48.216054000000014]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Praterstraße","old_name":"Jägerzeile","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"367500885","geometry":{"type":"LineString","coordinates":[[16.3852371,48.21291350000001],[16.385279,48.21284209999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Tempelgasse","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"367500886","geometry":{"type":"LineString","coordinates":[[16.3850189,48.213601600000004],[16.3850704,48.213415699999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tempelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"206135575","geometry":{"type":"LineString","coordinates":[[16.3848466,48.21415229999997],[16.3849191,48.21398640000001],[16.3850189,48.213601600000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tempelgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"206135576","geometry":{"type":"LineString","coordinates":[[16.3852371,48.21291350000001],[16.3850704,48.213415699999985]]},"properties":{"highway":"living_street","name":"Tempelgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"157533720","geometry":{"type":"LineString","coordinates":[[16.3858922,48.213136899999995],[16.3852371,48.21291350000001]]},"properties":{"cycleway":"opposite_lane","description":"Nebenfahrbahn","highway":"residential","maxspeed":"50","name":"Untere Donaustraße","oneway":"yes","source:maxspeed":"AT:urban","surface":"paved"}},{"type":"Feature","id":"399877914","geometry":{"type":"LineString","coordinates":[[16.3850553,48.21135179999996],[16.3850322,48.21140059999999],[16.3850544,48.21145069999997],[16.3851059,48.211491499999994],[16.3853965,48.211586600000004],[16.385903,48.21173519999999],[16.3861401,48.2118122],[16.3862373,48.211858500000005],[16.3863174,48.21191390000004],[16.3863848,48.21201780000004],[16.3864938,48.21218749999997],[16.3866814,48.2124795],[16.3868036,48.21258449999999],[16.3869706,48.21266220000001],[16.3872634,48.2127744],[16.3876286,48.21286860000001],[16.3881591,48.21296469999996],[16.3886446,48.2130478],[16.3890155,48.213074500000005],[16.3891144,48.2130779],[16.3891604,48.2131167],[16.3892806,48.213130500000005]]},"properties":{"foot":"yes","highway":"cycleway","name":"Weißgerberufer","surface":"paved"}},{"type":"Feature","id":"161844831","geometry":{"type":"LineString","coordinates":[[16.3846418,48.21456949999998],[16.3859812,48.21437320000001],[16.3862993,48.214366299999966],[16.3867347,48.21437309999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Czerningasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8052853","geometry":{"type":"LineString","coordinates":[[16.384477,48.214617000000004],[16.3845717,48.214589700000005],[16.3846418,48.21456949999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Nestroyplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8096080","geometry":{"type":"LineString","coordinates":[[16.38436,48.214663900000005],[16.3842563,48.214696300000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schrottgießergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"200689824","geometry":{"type":"LineString","coordinates":[[16.3849501,48.21498389999999],[16.3845493,48.2147684],[16.38436,48.214663900000005]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Praterstraße","old_name":"Jägerzeile","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8096063","geometry":{"type":"LineString","coordinates":[[16.38436,48.214663900000005],[16.384477,48.214617000000004],[16.3845241,48.214566400000024],[16.3845723,48.214514699999995],[16.3848466,48.21415229999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tempelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"30285690","geometry":{"type":"LineString","coordinates":[[16.38436,48.214663900000005],[16.3842681,48.214613799999995],[16.3842348,48.214595599999996]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Praterstraße"}},{"type":"Feature","id":"165778784","geometry":{"type":"LineString","coordinates":[[16.3843721,48.21136960000001],[16.3844318,48.21136430000004],[16.3844839,48.211359200000004]]},"properties":{"foot":"yes","highway":"cycleway","layer":"-1","lcn":"yes","name":"Rotenturmufer","segregated":"no","source:surface":"survey","surface":"asphalt"}},{"type":"Feature","id":"354850560","geometry":{"type":"LineString","coordinates":[[16.3852725,48.21115639999999],[16.3852836,48.2111745]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"10363296","geometry":{"type":"LineString","coordinates":[[16.3870393,48.2111745],[16.3869213,48.211181900000014],[16.386846,48.21118559999999],[16.3867282,48.211191299999996],[16.3866177,48.21119780000001],[16.3864209,48.211208],[16.3862,48.21121889999998],[16.3860373,48.2112267],[16.3858874,48.211231199999986],[16.3857983,48.211228500000004],[16.3857365,48.21122600000001],[16.3856859,48.21122009999999],[16.3855887,48.21120940000003],[16.3854031,48.211187300000006],[16.3852836,48.2111745]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Radetzkystraße","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"354850563","geometry":{"type":"LineString","coordinates":[[16.3852836,48.2111745],[16.3852913,48.21118719999998]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"354850567","geometry":{"type":"LineString","coordinates":[[16.3852913,48.21118719999998],[16.3853022,48.21120300000004],[16.3853219,48.21123400000002],[16.3853388,48.21126079999999],[16.3853817,48.2113286],[16.385437,48.21141520000003]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"297525873","geometry":{"type":"LineString","coordinates":[[16.3851902,48.2110313],[16.3852299,48.21108640000003],[16.3852501,48.21111960000002],[16.3852725,48.21115639999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"101272247","geometry":{"type":"LineString","coordinates":[[16.3850699,48.211249899999984],[16.385013,48.211270300000024],[16.3848801,48.21127899999999]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes"}},{"type":"Feature","id":"9800405","geometry":{"type":"LineString","coordinates":[[16.384867,48.211211399999996],[16.3849307,48.21121750000003],[16.3850005,48.21122949999997],[16.3850699,48.211249899999984]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Obere Weißgerberstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"101272245","geometry":{"type":"LineString","coordinates":[[16.3850699,48.211249899999984],[16.3851411,48.211277199999984],[16.3851914,48.211299],[16.3852291,48.211315299999995],[16.38532,48.211364400000036],[16.385437,48.21141520000003],[16.3856086,48.2114866],[16.3861767,48.211672799999974]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Obere Weißgerberstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"230626526","geometry":{"type":"LineString","coordinates":[[16.3849865,48.21041869999999],[16.3850469,48.210624300000035]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1","turn:lanes":"left|left|slight_right"}},{"type":"Feature","id":"230626525","geometry":{"type":"LineString","coordinates":[[16.3850469,48.210624300000035],[16.3851902,48.2110313]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1","turn:lanes":"left|left|slight_right|slight_right"}},{"type":"Feature","id":"47120688","geometry":{"type":"LineString","coordinates":[[16.3851902,48.2110313],[16.3851744,48.211079100000006],[16.3851643,48.21110759999999],[16.3851545,48.211139],[16.3851482,48.211167200000006],[16.3851334,48.2111941],[16.3851155,48.21121600000001],[16.3850699,48.211249899999984]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes"}},{"type":"Feature","id":"29076533","geometry":{"type":"LineString","coordinates":[[16.3866049,48.207407399999994],[16.3864613,48.207456699999994],[16.3855751,48.20775499999999],[16.3854845,48.20778580000001],[16.385065,48.20792900000001],[16.3849562,48.207966699999986]]},"properties":{"cycleway":"lane","highway":"tertiary","lanes":"3","lcn":"yes","maxspeed":"50","name":"Marxergasse","source:maxspeed":"AT:urban","surface":"asphalt","turn:lanes:forward":"left;through|through"}},{"type":"Feature","id":"9801104","geometry":{"type":"LineString","coordinates":[[16.3844497,48.211233899999996],[16.3847797,48.21120500000001]]},"properties":{"bridge":"yes","foot":"use_sidepath","highway":"primary","lanes":"3","layer":"1","lit":"yes","maxspeed":"50","name":"Radetzkybrücke","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"slight_left|slight_left|right"}},{"type":"Feature","id":"47120686","geometry":{"type":"LineString","coordinates":[[16.3848801,48.21127899999999],[16.3844721,48.21131439999999]]},"properties":{"bridge":"yes","foot":"use_sidepath","highway":"secondary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Radetzkybrücke","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"297525585","geometry":{"type":"LineString","coordinates":[[16.3847797,48.21120500000001],[16.384867,48.211211399999996]]},"properties":{"bridge":"yes","highway":"primary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Radetzkybrücke","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"5105728","geometry":{"type":"LineString","coordinates":[[16.3847797,48.21120500000001],[16.3848615,48.2111802]]},"properties":{"bridge":"yes","highway":"primary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Radetzkybrücke","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"101272248","geometry":{"type":"LineString","coordinates":[[16.3848615,48.2111802],[16.3849039,48.211164499999995],[16.3849407,48.2111438],[16.3849697,48.21111730000001],[16.3849783,48.211087899999995],[16.3849876,48.211056299999996]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"8041121","geometry":{"type":"LineString","coordinates":[[16.3846049,48.209787500000004],[16.3841704,48.209823]]},"properties":{"bridge":"yes","foot":"yes","highway":"cycleway","layer":"2","name":"Zollamtssteg","segregated":"no","wikipedia":"de:Zollamtssteg"}},{"type":"Feature","id":"316595634","geometry":{"type":"LineString","coordinates":[[16.384718,48.207634299999995],[16.3849106,48.20790310000001],[16.3849562,48.207966699999986]]},"properties":{"highway":"residential","maxspeed":"50","name":"Gigergasse","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"316595635","geometry":{"type":"LineString","coordinates":[[16.3846554,48.207547000000005],[16.384718,48.207634299999995]]},"properties":{"cycleway":"opposite_track","highway":"residential","maxspeed":"50","name":"Gigergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"13440078","geometry":{"type":"LineString","coordinates":[[16.38435,48.2071411],[16.3845561,48.2074135],[16.3846554,48.207547000000005]]},"properties":{"highway":"residential","maxspeed":"50","name":"Gigergasse","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"38182477","geometry":{"type":"LineString","coordinates":[[16.3924224,48.20521450000001],[16.3925757,48.20532280000003],[16.3928525,48.20552449999997],[16.39288,48.20557500000001]]},"properties":{"access":"destination","highway":"service","name":"Salmgasse","service":"driveway"}},{"type":"Feature","id":"474638497","geometry":{"type":"LineString","coordinates":[[16.3946274,48.205755100000005],[16.3944056,48.206097099999994],[16.3943753,48.20614309999999],[16.3942092,48.20639489999999],[16.393969,48.20675909999997],[16.3938531,48.20694019999999],[16.3934643,48.2075375],[16.3932019,48.20793370000001],[16.3929259,48.20834009999999],[16.3928961,48.208383999999995],[16.3928532,48.208433799999995],[16.3928652,48.20845079999998],[16.3928527,48.20846770000003],[16.3928252,48.20849580000004],[16.3927882,48.2085343],[16.3927532,48.20856650000002],[16.3927146,48.2086032],[16.392677,48.208636600000006],[16.392626,48.20867739999997],[16.3925863,48.20870869999999],[16.3925349,48.20874739999999],[16.3921746,48.20902770000001],[16.39185,48.20927789999999],[16.3917997,48.209290899999985],[16.3917711,48.2093127]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Löwengasse"}},{"type":"Feature","id":"182562252","geometry":{"type":"LineString","coordinates":[[16.39288,48.20557500000001],[16.3932878,48.20585760000003]]},"properties":{"highway":"residential","name":"Salmgasse"}},{"type":"Feature","id":"8053412","geometry":{"type":"LineString","coordinates":[[16.3954383,48.205844299999995],[16.3954303,48.20587699999999],[16.3949743,48.2071416],[16.394729,48.20777410000002],[16.3945638,48.20815870000001],[16.3943917,48.20864919999997],[16.3943477,48.20878379999999],[16.3940109,48.20954170000002],[16.3939516,48.209637499999985],[16.3938887,48.209817499999986],[16.3935778,48.21053580000003],[16.3934696,48.21067070000001],[16.3923342,48.211832000000015],[16.392217,48.2119098]]},"properties":{"highway":"residential","maxspeed":"30","name":"Untere Weißgerberstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9653301","geometry":{"type":"LineString","coordinates":[[16.3922793,48.20616960000001],[16.3926663,48.207380900000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stammgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"101266777","geometry":{"type":"LineString","coordinates":[[16.3928356,48.204724],[16.3934896,48.20430680000001],[16.3941978,48.203865699999994],[16.3942664,48.20382380000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Geusaugasse","oneway":"yes"}},{"type":"Feature","id":"101266779","geometry":{"type":"LineString","coordinates":[[16.3925075,48.20461910000003],[16.3925467,48.2046081],[16.3925805,48.20460969999999],[16.3926129,48.204621599999996],[16.3927012,48.20469200000002],[16.3927252,48.20470689999999],[16.3927898,48.204725199999984],[16.3928356,48.204724]]},"properties":{"cycleway":"opposite_lane","highway":"residential","name":"Rasumofskygasse","oneway":"yes"}},{"type":"Feature","id":"24587535","geometry":{"type":"LineString","coordinates":[[16.3928465,48.20482820000001],[16.3928128,48.204789800000015],[16.3927983,48.20476850000003],[16.3927966,48.204754199999996],[16.3928356,48.204724]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rasumofskygasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"8053380","geometry":{"type":"LineString","coordinates":[[16.3928576,48.20267210000003],[16.3927437,48.20267899999999],[16.3923842,48.20271310000001],[16.3922765,48.202721499999996],[16.3921529,48.20271600000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Erdbergstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"130642863","geometry":{"type":"LineString","coordinates":[[16.3928576,48.20267210000003],[16.3929163,48.20272219999998],[16.393747,48.20339179999999],[16.3942664,48.20382380000001],[16.3945759,48.20414840000001],[16.3946774,48.204258400000015],[16.3947383,48.204309499999994],[16.3955156,48.2050801]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Kundmanngasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Carl Kundmann"}},{"type":"Feature","id":"9654327","geometry":{"type":"LineString","coordinates":[[16.3908708,48.20580429999998],[16.3913038,48.20602869999999],[16.3917705,48.20632259999999]]},"properties":{"bicycle":"yes","foot":"yes","highway":"cycleway","name":"Weyrgasse","wikipedia":"de:Rudolf Weyr"}},{"type":"Feature","id":"10069377","geometry":{"type":"LineString","coordinates":[[16.3908708,48.20580429999998],[16.3916433,48.205358200000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geusaugasse","noexit":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"474636891","geometry":{"type":"LineString","coordinates":[[16.3947927,48.20578100000003],[16.3942321,48.206630099999984],[16.3940624,48.206890499999986],[16.393678,48.2074676],[16.3935649,48.2076486],[16.3933777,48.20794839999999],[16.3933074,48.20805300000001],[16.3931068,48.20835120000001],[16.3930764,48.20839649999999],[16.3930269,48.208461],[16.3930228,48.20847850000001],[16.3928505,48.20864599999999],[16.3925441,48.20888869999999],[16.3924911,48.20890249999999],[16.3923395,48.20902140000001],[16.3923389,48.20904060000001],[16.3923013,48.2090719],[16.3917307,48.209513000000015],[16.3914697,48.2097239],[16.3910474,48.21006879999999],[16.3908752,48.210243400000024],[16.3908076,48.2102974],[16.3905691,48.2105507],[16.3905367,48.210583499999984],[16.3905361,48.210598300000015],[16.3905136,48.21062399999997],[16.3903477,48.21078019999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Löwengasse"}},{"type":"Feature","id":"9654341","geometry":{"type":"LineString","coordinates":[[16.3902786,48.2053181],[16.3908508,48.205014199999965]]},"properties":{"highway":"residential","maxspeed":"30","name":"Uchatiusgasse","noexit":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Franz Freiherr von Uchatius"}},{"type":"Feature","id":"10069415","geometry":{"type":"LineString","coordinates":[[16.3901004,48.2054024],[16.3902786,48.2053181]]},"properties":{"highway":"residential","maxspeed":"30","name":"Uchatiusgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"10069379","geometry":{"type":"LineString","coordinates":[[16.3907573,48.205882599999995],[16.3908708,48.20580429999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geusaugasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10069742","geometry":{"type":"LineString","coordinates":[[16.3900984,48.20330169999997],[16.390984,48.2040691]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salmgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"9654394","geometry":{"type":"LineString","coordinates":[[16.390984,48.2040691],[16.3910465,48.204067699999996],[16.3918643,48.203699700000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Siegelgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"10069473","geometry":{"type":"LineString","coordinates":[[16.390984,48.2040691],[16.3909834,48.20410849999996],[16.3914205,48.204491700000005],[16.3917657,48.204792199999986],[16.3918955,48.20489229999998],[16.3919571,48.20488829999999],[16.3921061,48.20481810000004],[16.3922858,48.20473960000004],[16.3924324,48.204653699999994],[16.3925075,48.20461910000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salmgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"101266781","geometry":{"type":"LineString","coordinates":[[16.3941592,48.20562380000001],[16.3940502,48.20558629999999],[16.3939516,48.20555239999999],[16.3938144,48.20550320000001],[16.3931554,48.2050443],[16.392988,48.204932299999996],[16.3928465,48.20482820000001],[16.3926929,48.204770800000006],[16.3925619,48.204685900000015],[16.3925329,48.204657500000025],[16.3925075,48.20461910000003],[16.392414,48.204523999999964],[16.3922575,48.20442729999999],[16.3921655,48.2043156],[16.3920924,48.20417900000001],[16.3920681,48.20401289999998],[16.3920571,48.20391119999999],[16.3920178,48.203839000000016],[16.3918643,48.203699700000016],[16.3916892,48.20354549999999],[16.3909855,48.20294860000001],[16.3909361,48.20292499999999]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","surface":"asphalt","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"10069723","geometry":{"type":"LineString","coordinates":[[16.3909361,48.20292499999999],[16.3908522,48.20292169999999],[16.3900984,48.20330169999997]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Landstraßer Hauptstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"9416721","geometry":{"type":"LineString","coordinates":[[16.3928576,48.20267210000003],[16.392938,48.2026645],[16.3930439,48.20265409999999],[16.3937157,48.202569299999965],[16.3938796,48.202551700000015],[16.3939894,48.20253679999999],[16.3940023,48.20253479999997],[16.3949299,48.202412400000014],[16.395256,48.20232679999998],[16.3955441,48.20219850000001],[16.39611,48.2018659],[16.3961441,48.20184549999999],[16.3961982,48.20181259999998]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Erdbergstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"43403453","geometry":{"type":"LineString","coordinates":[[16.3922417,48.202186100000034],[16.3923481,48.20226969999999],[16.392791,48.2026195],[16.3928576,48.20267210000003]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Kundmanngasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Carl Kundmann"}},{"type":"Feature","id":"8053391","geometry":{"type":"LineString","coordinates":[[16.3915884,48.20175470000001],[16.3917407,48.201787800000005],[16.3921961,48.202149099999986],[16.3922417,48.202186100000034]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Kundmanngasse","oneway":"yes","surface":"asphalt","wikipedia":"de:Carl Kundmann"}},{"type":"Feature","id":"10069690","geometry":{"type":"LineString","coordinates":[[16.3909361,48.20292499999999],[16.3912885,48.2027267],[16.3916619,48.20251669999999]]},"properties":{"highway":"pedestrian","name":"Rochusplatz","surface":"paved","wikipedia":"en:Maria Eis"}},{"type":"Feature","id":"8885404","geometry":{"type":"LineString","coordinates":[[16.3909361,48.20292499999999],[16.3907662,48.20280439999999],[16.3907124,48.202766199999985],[16.3905627,48.20266040000001],[16.3904636,48.2025903]]},"properties":{"bus":"yes","highway":"service","maxspeed":"50","name":"Landstraßer Hauptstraße","oneway":"yes","surface":"cobblestone","vehicle":"no"}},{"type":"Feature","id":"31401323","geometry":{"type":"LineString","coordinates":[[16.3915884,48.20175470000001],[16.3914828,48.20183650000004],[16.3910989,48.202108899999985]]},"properties":{"cycleway:left":"lane","highway":"secondary","maxspeed":"50","name":"Landstraßer Hauptstraße","surface":"asphalt"}},{"type":"Feature","id":"30692801","geometry":{"type":"LineString","coordinates":[[16.3910989,48.202108899999985],[16.3906815,48.20242490000001],[16.3905309,48.20253819999999],[16.3904636,48.2025903]]},"properties":{"cycleway:left":"lane","highway":"secondary","maxspeed":"50","name":"Landstraßer Hauptstraße","surface":"asphalt"}},{"type":"Feature","id":"295186880","geometry":{"type":"LineString","coordinates":[[16.3921529,48.20271600000001],[16.3919923,48.202682400000015],[16.3918288,48.20261429999999],[16.3916619,48.20251669999999],[16.3915126,48.20239090000001],[16.3912678,48.20220040000001],[16.391223,48.2021761],[16.3910989,48.202108899999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Erdbergstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"paved"}},{"type":"Feature","id":"28169221","geometry":{"type":"LineString","coordinates":[[16.4301609,48.19706310000001],[16.4255226,48.199506299999996],[16.4200348,48.2023968],[16.4165115,48.20425470000001],[16.4164,48.20431780000001],[16.4162622,48.20439010000001],[16.4161586,48.204444800000005],[16.4134903,48.205853700000006],[16.4093567,48.20801399999999],[16.407698,48.2088809],[16.406687,48.20940920000001],[16.4025549,48.21157959999999],[16.4013381,48.212211999999994],[16.3999813,48.21292510000001],[16.3989218,48.213474899999966],[16.3981247,48.2138951],[16.3971361,48.214414499999975],[16.3961136,48.2149517],[16.3959219,48.21505959999999],[16.3948192,48.215680599999985],[16.3936975,48.21627120000002],[16.3930172,48.216629299999994],[16.3928795,48.21670179999998]]},"properties":{"highway":"bridleway","name":"Zureitweg","surface":"bark_mulch"}},{"type":"Feature","id":"4583437","geometry":{"type":"LineString","coordinates":[[16.3924518,48.1971618],[16.3923065,48.19775340000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Boerhaavegasse","oneway":"yes","wikipedia":"de:Herman Boerhaave"}},{"type":"Feature","id":"27019189","geometry":{"type":"LineString","coordinates":[[16.3924518,48.1971618],[16.3923304,48.196610899999996]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Boerhaavegasse","oneway":"yes","wikipedia":"de:Herman Boerhaave"}},{"type":"Feature","id":"10213989","geometry":{"type":"LineString","coordinates":[[16.3928943,48.200543900000014],[16.3927869,48.20051529999998],[16.3917156,48.20022990000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hintzerstraße","oneway":"yes"}},{"type":"Feature","id":"31401249","geometry":{"type":"LineString","coordinates":[[16.3939161,48.199571899999995],[16.3938271,48.19965830000001],[16.3936778,48.1998031],[16.3931951,48.2002712],[16.3928943,48.200543900000014],[16.3928125,48.200620500000014],[16.3926247,48.20079749999999],[16.3917274,48.2016634],[16.3915884,48.20175470000001]]},"properties":{"cycleway":"lane","highway":"secondary","maxspeed":"50","name":"Landstraßer Hauptstraße","surface":"asphalt"}},{"type":"Feature","id":"9654905","geometry":{"type":"LineString","coordinates":[[16.3917156,48.20022990000001],[16.3918575,48.199782400000004],[16.3919301,48.1995225],[16.3920308,48.19921389999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ziehrerplatz","oneway":"yes","wikipedia":"de:Carl Michael Ziehrer"}},{"type":"Feature","id":"10213986","geometry":{"type":"LineString","coordinates":[[16.3917156,48.20022990000001],[16.3912819,48.200203200000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Ziehrerplatz","oneway":"yes","surface":"asphalt","wikipedia":"de:Carl Michael Ziehrer"}},{"type":"Feature","id":"10213981","geometry":{"type":"LineString","coordinates":[[16.3915801,48.19918989999999],[16.3915018,48.19946970000001],[16.3914309,48.19971459999999],[16.3914019,48.19982129999997],[16.3913668,48.1999586],[16.3912819,48.200203200000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ziehrerplatz","oneway":"yes","surface":"asphalt","wikipedia":"de:Carl Michael Ziehrer"}},{"type":"Feature","id":"37786715","geometry":{"type":"LineString","coordinates":[[16.3923304,48.196610899999996],[16.3920371,48.19569490000001],[16.392024,48.195653899999996],[16.3918558,48.19512849999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Boerhaavegasse","oneway":"yes","source:maxspeed":"AT:zone","wikipedia":"de:Herman Boerhaave"}},{"type":"Feature","id":"9654883","geometry":{"type":"LineString","coordinates":[[16.3910879,48.20065090000003],[16.3911352,48.200567500000005],[16.3912819,48.200203200000004]]},"properties":{"highway":"residential","name":"Pfarrhofgasse"}},{"type":"Feature","id":"12616751","geometry":{"type":"LineString","coordinates":[[16.3908462,48.19662769999999],[16.3908468,48.197166400000015]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Arenberggasse","oneway":"yes"}},{"type":"Feature","id":"10144095","geometry":{"type":"LineString","coordinates":[[16.3908441,48.19757680000001],[16.3908468,48.197166400000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Arenberggasse","oneway":"yes"}},{"type":"Feature","id":"10144182","geometry":{"type":"LineString","coordinates":[[16.3900658,48.19818470000001],[16.3900737,48.1981548],[16.3902311,48.19756050000001],[16.3908441,48.19757680000001],[16.391241,48.19760880000001],[16.3923065,48.19775340000001],[16.3922673,48.197913200000016],[16.3933843,48.198151800000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dannebergplatz","oneway":"yes","wikipedia":"de:Dannebergplatz"}},{"type":"Feature","id":"178446498","geometry":{"type":"LineString","coordinates":[[16.3891717,48.205885499999965],[16.3886194,48.205357100000015]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Seidlgasse","oneway":"yes","source:maxspeed":"AT:zone","surface":"asphalt","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"164330230","geometry":{"type":"LineString","coordinates":[[16.3886194,48.205357100000015],[16.3884332,48.20518100000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Seidlgasse","source:maxspeed":"AT:zone","surface":"asphalt","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"9654348","geometry":{"type":"LineString","coordinates":[[16.3891717,48.205885499999965],[16.3901004,48.2054024]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Uchatiusgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Franz Freiherr von Uchatius"}},{"type":"Feature","id":"13437472","geometry":{"type":"LineString","coordinates":[[16.3879553,48.2057073],[16.3884573,48.20646289999999],[16.3886766,48.20686589999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Gärtnergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9654618","geometry":{"type":"LineString","coordinates":[[16.3896947,48.206431899999984],[16.3898752,48.20636489999998],[16.3903044,48.206124700000004],[16.3907573,48.205882599999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geusaugasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"178446497","geometry":{"type":"LineString","coordinates":[[16.3896947,48.206431899999984],[16.3891717,48.205885499999965]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Seidlgasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"9654326","geometry":{"type":"LineString","coordinates":[[16.3886713,48.20422260000001],[16.3887655,48.20429339999998],[16.389498,48.20484330000002],[16.3895449,48.20487259999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Weyrgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9654252","geometry":{"type":"LineString","coordinates":[[16.3904821,48.20442400000002],[16.3895449,48.20487259999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Czapkagasse","noexit":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Ignaz Czapka"}},{"type":"Feature","id":"68907937","geometry":{"type":"LineString","coordinates":[[16.3884332,48.20518100000001],[16.3885025,48.2051486],[16.3882277,48.20488370000001],[16.3880997,48.20476339999999],[16.3880228,48.20481890000002]]},"properties":{"highway":"footway","name":"Seidlgasse","source":"estimated","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"9825804","geometry":{"type":"LineString","coordinates":[[16.3907573,48.205882599999995],[16.3901004,48.2054024],[16.3894698,48.20491550000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Esteplatz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Franz Ferdinand von Österreich-Este"}},{"type":"Feature","id":"181770359","geometry":{"type":"LineString","coordinates":[[16.3884332,48.20518100000001],[16.3883701,48.20521009999999],[16.3881031,48.20493970000001],[16.3879963,48.20483279999996],[16.3880228,48.20481890000002]]},"properties":{"highway":"footway","name":"Seidlgasse","source":"estimated","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"10069099","geometry":{"type":"LineString","coordinates":[[16.3895449,48.20487259999999],[16.3897487,48.204901199999995],[16.3902786,48.2053181],[16.3908708,48.20580429999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Esteplatz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Franz Ferdinand von Österreich-Este"}},{"type":"Feature","id":"122239510","geometry":{"type":"LineString","coordinates":[[16.3886407,48.203841100000005],[16.3887616,48.203894099999985]]},"properties":{"foot":"permissive","highway":"footway","name":"Sünnhof-Passage","tunnel":"yes"}},{"type":"Feature","id":"8080548","geometry":{"type":"LineString","coordinates":[[16.3941592,48.20562380000001],[16.3940209,48.20566819999999],[16.393989,48.20567840000001],[16.3932878,48.20585760000003],[16.3922793,48.20616960000001],[16.3917705,48.20632259999999],[16.3914769,48.206438100000014],[16.3904672,48.20675879999999],[16.3900175,48.20685209999999],[16.3894225,48.20685370000001],[16.3886766,48.20686589999997],[16.3875519,48.2071009],[16.3874603,48.207129699999996]]},"properties":{"cycleway":"opposite_track","cycleway:right":"lane","highway":"residential","lcn":"yes","maxspeed":"30","name":"Marxergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"9654250","geometry":{"type":"LineString","coordinates":[[16.3895449,48.20487259999999],[16.3894698,48.20491550000003],[16.3886194,48.205357100000015],[16.3879553,48.2057073]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Czapkagasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Ignaz Czapka"}},{"type":"Feature","id":"10069172","geometry":{"type":"LineString","coordinates":[[16.3879553,48.2057073],[16.3875309,48.2051199],[16.3874845,48.20505560000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Gärtnergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"103273744","geometry":{"type":"LineString","coordinates":[[16.3864901,48.20615140000001],[16.3866158,48.2061118],[16.386724,48.2060774]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ditscheinergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10043642","geometry":{"type":"LineString","coordinates":[[16.3863549,48.20554200000001],[16.3864051,48.205615499999965],[16.386724,48.2060774],[16.3870806,48.2065848],[16.3874065,48.2070525],[16.3874603,48.207129699999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Untere Viaduktgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13437195","geometry":{"type":"LineString","coordinates":[[16.3867504,48.204309800000004],[16.3873739,48.20397299999999],[16.3876887,48.203738999999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Baumannstraße","wikipedia":"de:Oscar Baumann"}},{"type":"Feature","id":"383461134","geometry":{"type":"LineString","coordinates":[[16.3874845,48.20505560000001],[16.3873816,48.20500340000001],[16.3867504,48.204309800000004],[16.3861862,48.203661899999986],[16.3861197,48.2035856]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Beatrixgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"9654387","geometry":{"type":"LineString","coordinates":[[16.3900984,48.20330169999997],[16.3900271,48.20324679999999],[16.3899071,48.20317860000003]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Salmgasse","oneway":"yes"}},{"type":"Feature","id":"7195300","geometry":{"type":"LineString","coordinates":[[16.390552,48.20155119999998],[16.389753,48.20205120000003]]},"properties":{"highway":"residential","maxspeed":"50","name":"Pfarrhofgasse","oneway":"yes"}},{"type":"Feature","id":"175276331","geometry":{"type":"LineString","coordinates":[[16.389753,48.20205120000003],[16.3892948,48.202336599999995]]},"properties":{"highway":"residential","maxspeed":"50","name":"Pfarrhofgasse"}},{"type":"Feature","id":"175276330","geometry":{"type":"LineString","coordinates":[[16.3885236,48.20248950000001],[16.388671,48.20253070000001],[16.3888414,48.20227929999996]]},"properties":{"highway":"footway","name":"Ida-Pfeiffer-Weg"}},{"type":"Feature","id":"5889608","geometry":{"type":"LineString","coordinates":[[16.3898255,48.200117500000005],[16.3893735,48.20007570000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sebastianplatz","oneway":"yes"}},{"type":"Feature","id":"10214000","geometry":{"type":"LineString","coordinates":[[16.3912819,48.200203200000004],[16.3898255,48.200117500000005]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hintzerstraße","oneway":"yes"}},{"type":"Feature","id":"12618067","geometry":{"type":"LineString","coordinates":[[16.3892759,48.200545799999986],[16.3893735,48.20007570000004]]},"properties":{"highway":"residential","name":"Charasgasse"}},{"type":"Feature","id":"7195171","geometry":{"type":"LineString","coordinates":[[16.388998,48.201560200000046],[16.3891373,48.2012527]]},"properties":{"highway":"residential","maxspeed":"50","name":"Karl-Borromäus-Platz","oneway":"no","wikipedia":"de:Karl Borromäus"}},{"type":"Feature","id":"175277095","geometry":{"type":"LineString","coordinates":[[16.3877296,48.20344349999999],[16.387843,48.2034898],[16.3886407,48.203841100000005]]},"properties":{"foot":"permissive","highway":"footway","name":"Sünnhof-Passage"}},{"type":"Feature","id":"122239504","geometry":{"type":"LineString","coordinates":[[16.3878312,48.2035094],[16.387778,48.20355799999996]]},"properties":{"highway":"footway","name":"Ida-Pfeiffer-Weg","tunnel":"yes","wikipedia":"de:Ida Pfeiffer"}},{"type":"Feature","id":"122239505","geometry":{"type":"LineString","coordinates":[[16.387778,48.20355799999996],[16.387608,48.20369980000001],[16.3876887,48.203738999999985]]},"properties":{"highway":"footway","name":"Ida-Pfeiffer-Weg","wikipedia":"de:Ida Pfeiffer"}},{"type":"Feature","id":"122239509","geometry":{"type":"LineString","coordinates":[[16.38704,48.2031533],[16.3871237,48.203185399999995]]},"properties":{"foot":"permissive","highway":"footway","name":"Sünnhof-Passage","tunnel":"yes"}},{"type":"Feature","id":"122239511","geometry":{"type":"LineString","coordinates":[[16.3871237,48.203185399999995],[16.3876735,48.2034208]]},"properties":{"foot":"permissive","highway":"footway","name":"Sünnhof-Passage"}},{"type":"Feature","id":"13435942","geometry":{"type":"LineString","coordinates":[[16.3904636,48.2025903],[16.3903529,48.20250630000001],[16.389753,48.20205120000003],[16.3890818,48.201578600000005],[16.388998,48.201560200000046],[16.3874864,48.2012833],[16.387389,48.201265500000005]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Sechskrügelgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"5889594","geometry":{"type":"LineString","coordinates":[[16.3874611,48.19988900000001],[16.3873746,48.19988910000001],[16.3871631,48.19988949999998],[16.3868541,48.199890400000015],[16.3859323,48.19988699999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Posthorngasse","oneway":"yes","oneway:bicycle":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5889611","geometry":{"type":"LineString","coordinates":[[16.3868218,48.200546],[16.3867865,48.20059240000003],[16.3858866,48.2005757]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krummgasse","oneway":"yes","oneway:bicycle":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5889567","geometry":{"type":"LineString","coordinates":[[16.3868541,48.199890400000015],[16.3868218,48.200546]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krummgasse","oneway":"yes","oneway:bicycle":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"6791754","geometry":{"type":"LineString","coordinates":[[16.3858719,48.200885700000015],[16.3858866,48.2005757]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tongasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"33180762","geometry":{"type":"LineString","coordinates":[[16.3867865,48.20059240000003],[16.3867614,48.200941900000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krummgasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"7195044","geometry":{"type":"LineString","coordinates":[[16.387419,48.20091500000001],[16.3875274,48.200936299999995],[16.3891373,48.2012527],[16.3905146,48.20154200000002],[16.390552,48.20155119999998],[16.3914421,48.20173189999997],[16.3915884,48.20175470000001]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Rochusgasse","oneway":"yes"}},{"type":"Feature","id":"175207089","geometry":{"type":"LineString","coordinates":[[16.3873987,48.19906270000004],[16.3875193,48.199064899999996],[16.3878611,48.19906660000001],[16.3881607,48.19906800000001],[16.3891279,48.199084200000016],[16.3895691,48.1990916],[16.3898245,48.1990959],[16.3900182,48.19910909999999],[16.3915801,48.19918989999999],[16.3916479,48.19919300000001],[16.3917847,48.199200700000006],[16.3920308,48.19921389999999],[16.3927394,48.19925180000001],[16.3929898,48.19929160000001],[16.3932401,48.19935860000001],[16.3933464,48.199387099999996]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"50","name":"Neulinggasse","source":"Bing","surface":"asphalt"}},{"type":"Feature","id":"5889610","geometry":{"type":"LineString","coordinates":[[16.3900182,48.19910909999999],[16.3899175,48.19961280000001],[16.3898777,48.19979729999997],[16.3898255,48.200117500000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sebastianplatz","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5889566","geometry":{"type":"LineString","coordinates":[[16.3893735,48.20007570000004],[16.3894723,48.199579400000005],[16.3895691,48.1990916]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sebastianplatz","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"10144034","geometry":{"type":"LineString","coordinates":[[16.389663,48.19716059999999],[16.3896599,48.196630400000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ottogasse","oneway":"yes"}},{"type":"Feature","id":"5889586","geometry":{"type":"LineString","coordinates":[[16.388187,48.19807829999999],[16.3881632,48.19897359999999],[16.3881607,48.19906800000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Engelsberggasse","oneway":"yes","surface":"asphalt","wikipedia":"de:Eduard Schön"}},{"type":"Feature","id":"5889589","geometry":{"type":"LineString","coordinates":[[16.3891279,48.199084200000016],[16.3891573,48.1981332]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Riesgasse","oneway":"yes","surface":"asphalt","wikipedia":"de:Ferdinand Ries"}},{"type":"Feature","id":"5889568","geometry":{"type":"LineString","coordinates":[[16.3900658,48.19818470000001],[16.3898812,48.19888180000001],[16.3898245,48.1990959]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dannebergplatz","oneway":"yes","surface":"asphalt","wikipedia":"de:Dannebergplatz"}},{"type":"Feature","id":"21601088","geometry":{"type":"LineString","coordinates":[[16.3896599,48.196630400000004],[16.3896523,48.196501600000005],[16.3896577,48.196427400000005],[16.3896903,48.19637260000002],[16.3897663,48.1963437],[16.3898334,48.1963246],[16.3898986,48.19632089999999],[16.3899893,48.19632899999999],[16.3900537,48.1963667],[16.3901499,48.19662930000001]]},"properties":{"emergency":"yes","foot":"yes","highway":"service","name":"Rettungszufahrt","service":"driveway","vehicle":"no"}},{"type":"Feature","id":"5889613","geometry":{"type":"LineString","coordinates":[[16.3872856,48.198075500000016],[16.3873933,48.198070900000005],[16.3877708,48.1980547],[16.388187,48.19807829999999],[16.3891573,48.1981332],[16.3900658,48.19818470000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Dapontegasse","oneway":"yes","wikipedia":"de:Lorenzo da Ponte"}},{"type":"Feature","id":"4789258","geometry":{"type":"LineString","coordinates":[[16.3951524,48.197827099999984],[16.3950156,48.1977933],[16.3936913,48.19746570000001],[16.3924518,48.1971618],[16.3908468,48.197166400000015],[16.389663,48.19716059999999],[16.3896314,48.19716110000002],[16.3872664,48.197196599999984],[16.3871509,48.1971983]]},"properties":{"highway":"residential","maxspeed":"30","name":"Barichgasse","oneway":"yes","wikipedia":"de:Michael von Barich"}},{"type":"Feature","id":"34910071","geometry":{"type":"LineString","coordinates":[[16.3869766,48.19664589999999],[16.3867779,48.196121800000014],[16.3867304,48.19599449999998],[16.3867072,48.1959191],[16.3866814,48.195834899999994],[16.3866642,48.195773599999995],[16.386653,48.19572449999998],[16.3866426,48.195678799999996],[16.386613,48.19549889999999],[16.3865891,48.195348300000006],[16.3865477,48.195073200000024]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Ungargasse","source":"yahoo"}},{"type":"Feature","id":"8677651","geometry":{"type":"LineString","coordinates":[[16.3869766,48.19664589999999],[16.3871031,48.196645200000006],[16.3888991,48.19663480000003],[16.3893369,48.19663230000003],[16.3896599,48.196630400000004],[16.3901499,48.19662930000001],[16.390331,48.19662890000001],[16.3908462,48.19662769999999],[16.3909106,48.19662840000001],[16.390968,48.196628199999964],[16.3914765,48.1966195],[16.3923304,48.196610899999996],[16.3932488,48.1966429],[16.394042,48.19667870000001],[16.3948578,48.19672370000001],[16.3955502,48.1967669],[16.3957316,48.196774300000016],[16.3958695,48.19678450000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Juchgasse","oneway":"yes"}},{"type":"Feature","id":"383629038","geometry":{"type":"LineString","coordinates":[[16.3859624,48.1990888],[16.3870566,48.19906159999999],[16.3872779,48.19906120000002],[16.3873987,48.19906270000004]]},"properties":{"busway":"opposite_lane","cycleway":"opposite_share_busway","highway":"residential","lcn":"yes","maxspeed":"50","name":"Neulinggasse","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","psv":"opposite_lane","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"5889612","geometry":{"type":"LineString","coordinates":[[16.3858866,48.2005757],[16.3859323,48.19988699999999],[16.3859646,48.19924639999999],[16.3859631,48.1991395],[16.3859624,48.1990888]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tongasse","oneway":"yes","oneway:bicycle":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"29082181","geometry":{"type":"LineString","coordinates":[[16.3857313,48.19741269999997],[16.3857655,48.197280500000005],[16.3857857,48.1972025],[16.3858048,48.19713139999999],[16.3858957,48.19679240000002],[16.385963,48.19654159999996],[16.3861126,48.19598389999999],[16.3861447,48.19590869999999],[16.3861882,48.1958769],[16.3862637,48.19584979999999],[16.3864103,48.195839199999995],[16.3865669,48.1958362],[16.3866814,48.195834899999994]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Linke Bahngasse","oneway":"yes"}},{"type":"Feature","id":"318007484","geometry":{"type":"LineString","coordinates":[[16.3856033,48.20576679999999],[16.3855276,48.20578920000003],[16.3854538,48.20581099999998]]},"properties":{"cycleway:left":"lane","highway":"secondary","maxspeed":"50","name":"Landstraßer Hauptstraße","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"231535509","geometry":{"type":"LineString","coordinates":[[16.3866049,48.207407399999994],[16.386524,48.20732799999996],[16.3863491,48.20705939999999],[16.3862017,48.20686739999999],[16.38619,48.206850599999996],[16.3861659,48.2068161],[16.3858669,48.206326700000005],[16.3857675,48.206245300000006],[16.3856701,48.20613470000001],[16.3855188,48.20591640000001],[16.3854538,48.20581099999998]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Invalidenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"231535515","geometry":{"type":"LineString","coordinates":[[16.3856033,48.20576679999999],[16.3856741,48.20587739999999],[16.3856933,48.20590849999999],[16.3863241,48.206822500000015],[16.3865053,48.2070631],[16.3865754,48.20716809999999],[16.3866514,48.207285600000034],[16.3866049,48.207407399999994]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Invalidenstraße","oneway":"yes"}},{"type":"Feature","id":"493705230","geometry":{"type":"LineString","coordinates":[[16.3845868,48.2059338],[16.3845617,48.205897100000016]]},"properties":{"highway":"footway","indoor":"yes","level":"0","name":"W3"}},{"type":"Feature","id":"493689929","geometry":{"type":"LineString","coordinates":[[16.3843313,48.205568700000015],[16.3843958,48.20554770000001]]},"properties":{"highway":"footway","indoor":"yes","level":"0","name":"W3"}},{"type":"Feature","id":"312387421","geometry":{"type":"LineString","coordinates":[[16.3845617,48.205897100000016],[16.3845063,48.2058715],[16.3844352,48.205776199999974]]},"properties":{"highway":"footway","indoor":"yes","level":"0","name":"W3"}},{"type":"Feature","id":"312729490","geometry":{"type":"LineString","coordinates":[[16.3844352,48.205776199999974],[16.3843313,48.205568700000015],[16.3842783,48.20558599999998]]},"properties":{"highway":"footway","indoor":"yes","level":"0","name":"W3"}},{"type":"Feature","id":"28180450","geometry":{"type":"LineString","coordinates":[[16.3842279,48.20618009999998],[16.3846684,48.206050800000014],[16.3853554,48.20583859999999],[16.3854538,48.20581099999998]]},"properties":{"bicycle":"yes","bus":"yes","highway":"pedestrian","lit":"yes","maxspeed":"50","motor_vehicle":"no","name":"Landstraßer Hauptstraße"}},{"type":"Feature","id":"31401407","geometry":{"type":"LineString","coordinates":[[16.3904636,48.2025903],[16.3904004,48.20265469999998],[16.390182,48.20287769999999],[16.389955,48.203127499999994],[16.3899071,48.20317860000003],[16.3898543,48.203226400000005],[16.3892993,48.20369339999999],[16.3889481,48.20397099999997],[16.3888094,48.20409699999999],[16.3887674,48.204135200000024],[16.3886713,48.20422260000001],[16.3885996,48.2042773],[16.3882939,48.20451589999996],[16.3875464,48.2050141],[16.3874845,48.20505560000001],[16.387378,48.20510949999999],[16.3869777,48.205312100000015],[16.3868661,48.205356300000005],[16.3863549,48.20554200000001],[16.3856547,48.20575229999997],[16.3856033,48.20576679999999]]},"properties":{"cycleway:left":"lane","highway":"secondary","maxspeed":"50","name":"Landstraßer Hauptstraße","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"497878745","geometry":{"type":"LineString","coordinates":[[16.3855336,48.197168000000005],[16.3857149,48.1971939]]},"properties":{"bridge":"yes","highway":"footway","layer":"1","name":"Reitschulsteg"}},{"type":"Feature","id":"5889561","geometry":{"type":"LineString","coordinates":[[16.3854936,48.198331199999956],[16.3856296,48.1978058],[16.3857313,48.19741269999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Linke Bahngasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5889588","geometry":{"type":"LineString","coordinates":[[16.3856296,48.1978058],[16.3871381,48.19772529999997],[16.387242,48.197719800000016]]},"properties":{"cycleway:left":"opposite_lane","highway":"residential","maxspeed":"30","name":"Streichergasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"5889575","geometry":{"type":"LineString","coordinates":[[16.3873047,48.198248199999995],[16.3871985,48.19825309999999],[16.3854936,48.198331199999956]]},"properties":{"cycleway:left":"opposite_lane","highway":"residential","maxspeed":"30","name":"Strohgasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"5889616","geometry":{"type":"LineString","coordinates":[[16.3858162,48.19532619999998],[16.3856432,48.19621000000001],[16.3854554,48.197169599999995],[16.3854235,48.197217499999965]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rechte Bahngasse"}},{"type":"Feature","id":"231535522","geometry":{"type":"LineString","coordinates":[[16.3845863,48.204409700000014],[16.3845991,48.2044329],[16.3846414,48.20451009999999],[16.3847714,48.2046957],[16.3848669,48.20482100000001],[16.3849993,48.20498789999999],[16.3852929,48.205357899999996],[16.385529,48.205663500000014],[16.3856033,48.20576679999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Invalidenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"231535511","geometry":{"type":"LineString","coordinates":[[16.3854538,48.20581099999998],[16.3853591,48.20571339999998],[16.385133,48.20538770000002],[16.3849076,48.205062999999996],[16.3848742,48.205016099999995],[16.384825,48.20495319999998],[16.384768,48.20488040000001],[16.3846748,48.20476120000001]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Invalidenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"497922603","geometry":{"type":"LineString","coordinates":[[16.3850357,48.199160199999966],[16.3851718,48.19915129999998]]},"properties":{"bridge":"yes","highway":"residential","layer":"1","lcn":"yes","maxspeed":"50","name":"Neulingbrücke","note":"Seit November 2015 nicht mehr Einbahn zwischen Rechter Bahngasse & Tongasse","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"13429883","geometry":{"type":"LineString","coordinates":[[16.3849187,48.19916749999999],[16.3850357,48.199160199999966]]},"properties":{"highway":"residential","layer":"1","lcn":"yes","maxspeed":"50","name":"Neulinggasse","note":"Seit November 2015 nicht mehr Einbahn zwischen Rechter Bahngasse & Tongasse","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"378750518","geometry":{"type":"LineString","coordinates":[[16.3845863,48.204409700000014],[16.3846118,48.20437609999999],[16.3846395,48.204349699999995],[16.384886,48.204181300000016]]},"properties":{"highway":"secondary","lanes":"3","lanes:backward":"2","lanes:forward":"1","maxspeed":"50","name":"Ungargasse","source":"yahoo","surface":"asphalt","turn:lanes:backward":"slight_left|right"}},{"type":"Feature","id":"13430264","geometry":{"type":"LineString","coordinates":[[16.3849187,48.19916749999999],[16.3849655,48.19910659999999],[16.3850705,48.19873559999999],[16.3851183,48.1985473],[16.3851894,48.198367099999984]]},"properties":{"foot":"yes","highway":"cycleway","name":"Rechte Bahngasse","segregated":"no","source":"yahoo"}},{"type":"Feature","id":"219446600","geometry":{"type":"LineString","coordinates":[[16.384886,48.204181300000016],[16.3851704,48.20400319999999],[16.3854616,48.20381200000003],[16.3856069,48.20374240000001],[16.3860073,48.20361999999997],[16.3861197,48.2035856],[16.3862337,48.20355329999998],[16.3864352,48.20349429999999],[16.3865293,48.2034548],[16.3866381,48.203391899999986],[16.3867477,48.20330440000001],[16.3868644,48.203185399999995],[16.3869234,48.203109400000045],[16.3870007,48.203001700000016],[16.3870681,48.20288119999998],[16.3871561,48.20268870000001],[16.3872274,48.20247410000002],[16.387264,48.2023274],[16.3872905,48.202174000000014],[16.3873037,48.202056999999996],[16.3873248,48.201870299999996],[16.3873506,48.201651500000025],[16.3873693,48.201456699999994],[16.3873788,48.20136579999999],[16.387389,48.201265500000005],[16.387419,48.20091500000001],[16.3874401,48.20064049999999],[16.3874503,48.20041710000001],[16.3874683,48.200131999999996],[16.3874611,48.19988900000001],[16.3874401,48.199512800000036],[16.3874281,48.19932489999999],[16.3874055,48.1991328],[16.3873987,48.19906270000004],[16.3873926,48.198990500000036],[16.3873047,48.198248199999995],[16.3872856,48.198075500000016],[16.387242,48.197719800000016],[16.387221,48.19752549999998],[16.3871843,48.19732719999999],[16.3871674,48.19726190000003],[16.3871509,48.1971983],[16.3869766,48.19664589999999]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Ungargasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"13432476","geometry":{"type":"LineString","coordinates":[[16.3854235,48.197217499999965],[16.3854696,48.19726079999998],[16.3854827,48.19731060000001],[16.3851894,48.198367099999984]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Rechte Bahngasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5889557","geometry":{"type":"LineString","coordinates":[[16.3852899,48.19914410000001],[16.3854936,48.198331199999956]]},"properties":{"highway":"residential","maxspeed":"30","name":"Linke Bahngasse","surface":"asphalt"}},{"type":"Feature","id":"10213917","geometry":{"type":"LineString","coordinates":[[16.3852899,48.19914410000001],[16.3857013,48.19911139999999],[16.3859624,48.1990888]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"50","name":"Neulinggasse","note":"Seit November 2015 nicht mehr Einbahn zwischen Rechter Bahngasse & Tongasse","oneway":"no","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"497922605","geometry":{"type":"LineString","coordinates":[[16.3851718,48.19915129999998],[16.3852899,48.19914410000001]]},"properties":{"highway":"residential","layer":"1","lcn":"yes","maxspeed":"50","name":"Neulinggasse","note":"Seit November 2015 nicht mehr Einbahn zwischen Rechter Bahngasse & Tongasse","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"5889596","geometry":{"type":"LineString","coordinates":[[16.384486,48.2044042],[16.3845655,48.204408599999994],[16.3845863,48.204409700000014]]},"properties":{"highway":"secondary","lanes":"3","lanes:backward":"1","lanes:forward":"2","maxspeed":"50","name":"Ungargasse","source":"yahoo","turn:lanes:forward":"left|slight_right"}},{"type":"Feature","id":"13430504","geometry":{"type":"LineString","coordinates":[[16.3843064,48.20446559999999],[16.384243,48.204454200000015],[16.3841701,48.204449100000005]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"378750514","geometry":{"type":"LineString","coordinates":[[16.384486,48.2044042],[16.3843064,48.20446559999999]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes"}},{"type":"Feature","id":"8739416","geometry":{"type":"LineString","coordinates":[[16.3846748,48.20476120000001],[16.3845048,48.2045894],[16.3844794,48.20456380000002],[16.3844245,48.20451750000004],[16.3843695,48.20448540000004],[16.3843064,48.20446559999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Invalidenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"13430538","geometry":{"type":"LineString","coordinates":[[16.3841501,48.20435549999999],[16.3842618,48.204289500000044],[16.3842919,48.204253299999976],[16.3843066,48.20420560000002],[16.3841944,48.20405379999997],[16.3841953,48.20347989999999],[16.3842031,48.203404199999966]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Linke Bahngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13430076","geometry":{"type":"LineString","coordinates":[[16.3842031,48.203404199999966],[16.3842548,48.2034137],[16.3852886,48.20360410000001],[16.3855449,48.20371549999996],[16.3856069,48.20374240000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Münzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"299346578","geometry":{"type":"LineString","coordinates":[[16.384486,48.2044042],[16.3844145,48.20431120000001],[16.3843066,48.20420560000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Linke Bahngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"227682735","geometry":{"type":"LineString","coordinates":[[16.3841501,48.20435549999999],[16.3842204,48.2043578],[16.3842759,48.20436089999998],[16.3843392,48.20437229999999],[16.384486,48.2044042]]},"properties":{"highway":"secondary","lanes":"2","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"left|slight_right"}},{"type":"Feature","id":"13430001","geometry":{"type":"LineString","coordinates":[[16.3852899,48.19914410000001],[16.3852724,48.1992094],[16.385174,48.1995766],[16.3848547,48.20078799999999],[16.3846705,48.2014786],[16.3846445,48.2015638],[16.3845927,48.20182209999999],[16.3845399,48.20199969999999],[16.3845314,48.20203500000002]]},"properties":{"highway":"footway","name":"Linke Bahngasse","view":"open"}},{"type":"Feature","id":"8080558","geometry":{"type":"LineString","coordinates":[[16.3843656,48.202808300000015],[16.3854311,48.203201200000024],[16.385938,48.20346000000001],[16.3860545,48.2035405],[16.3861197,48.2035856]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Beatrixgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"13430324","geometry":{"type":"LineString","coordinates":[[16.3845314,48.20203500000002],[16.3843518,48.20273480000003],[16.3843656,48.202808300000015]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Anton-von-Webern-Platz","noexit":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Anton Webern"}},{"type":"Feature","id":"13430109","geometry":{"type":"LineString","coordinates":[[16.3842031,48.203404199999966],[16.3843656,48.202808300000015]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Linke Bahngasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29075876","geometry":{"type":"LineString","coordinates":[[16.3843656,48.202808300000015],[16.3842777,48.20277360000006]]},"properties":{"highway":"residential","layer":"1","maxspeed":"30","name":"Beatrixgasse","oneway":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"308095208","geometry":{"type":"LineString","coordinates":[[16.3832641,48.2201144],[16.383011,48.22016420000003],[16.3824846,48.220267800000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"158798828","geometry":{"type":"LineString","coordinates":[[16.3832641,48.2201144],[16.3838252,48.221391600000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Vereinsgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8052767","geometry":{"type":"LineString","coordinates":[[16.3824846,48.220267800000016],[16.3828914,48.22123490000004],[16.383112,48.22176480000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Josefinengasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"158798827","geometry":{"type":"LineString","coordinates":[[16.3823035,48.222190100000006],[16.3824042,48.2221385],[16.3824112,48.22213510000003],[16.383112,48.22176480000002],[16.3838252,48.221391600000004],[16.384682,48.220944299999985],[16.3853005,48.220616000000035],[16.3857424,48.220387200000005],[16.3859204,48.22029509999999],[16.3860709,48.22021649999999],[16.3870039,48.219729299999955],[16.3872336,48.21961640000001]]},"properties":{"highway":"service","maxspeed":"50","name":"Heinestraße","old_name":"Augartenallee","old_name:1938-1945":"Schönererstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"162223971","geometry":{"type":"LineString","coordinates":[[16.3849392,48.2197846],[16.3842249,48.219925200000006],[16.3832641,48.2201144]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"158798826","geometry":{"type":"LineString","coordinates":[[16.3884532,48.219226899999995],[16.387363,48.2198113],[16.3862909,48.22036990000004],[16.3860681,48.220485999999994],[16.3859495,48.220545500000014],[16.3858395,48.22060060000001],[16.3847816,48.22116599999998],[16.3839215,48.22161360000001],[16.382683,48.22225880000002],[16.3825074,48.22222679999999]]},"properties":{"highway":"service","maxspeed":"50","name":"Heinestraße","old_name":"Augartenallee","old_name:1938-1945":"Schönererstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"207499619","geometry":{"type":"LineString","coordinates":[[16.3819693,48.219558000000006],[16.3820997,48.21952870000004],[16.3825432,48.21942920000001],[16.3825812,48.2194207]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Novaragasse"}},{"type":"Feature","id":"8024485","geometry":{"type":"LineString","coordinates":[[16.3812114,48.219728],[16.3812853,48.219711399999994],[16.3819693,48.219558000000006]]},"properties":{"highway":"residential","maxspeed":"50","name":"Novaragasse"}},{"type":"Feature","id":"230482329","geometry":{"type":"LineString","coordinates":[[16.3811988,48.2197032],[16.3812114,48.219728],[16.3813478,48.220012699999984]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"220526231","geometry":{"type":"LineString","coordinates":[[16.3813478,48.220012699999984],[16.3814471,48.220222199999995]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"308095207","geometry":{"type":"LineString","coordinates":[[16.381547,48.2204524],[16.381628,48.220436500000005],[16.3824846,48.220267800000016]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"217575562","geometry":{"type":"LineString","coordinates":[[16.3814471,48.220222199999995],[16.381547,48.2204524],[16.3819634,48.221405300000015],[16.3820673,48.22163699999999],[16.3821667,48.22186540000001],[16.382241,48.22204070000001],[16.3822793,48.22212759999999],[16.3823035,48.222190100000006]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"473313096","geometry":{"type":"LineString","coordinates":[[16.3821961,48.2222007],[16.3820669,48.22188879999999],[16.3817655,48.22116080000001],[16.3814585,48.22047120000002],[16.3812318,48.2199813],[16.3807871,48.219184799999994]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"473313097","geometry":{"type":"LineString","coordinates":[[16.3823596,48.22205470000003],[16.3823312,48.22199089999998],[16.3821133,48.2214745],[16.3820565,48.22138819999998],[16.381628,48.220436500000005],[16.3812853,48.219711399999994],[16.3809926,48.21912309999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"28097557","geometry":{"type":"LineString","coordinates":[[16.3825812,48.2194207],[16.3843912,48.21901389999999],[16.3846303,48.2189597],[16.3851998,48.218835799999994],[16.3854258,48.218787099999986],[16.3863827,48.218577100000005],[16.38651,48.21854909999999],[16.386604,48.2185293],[16.387621,48.2182976],[16.3877236,48.21827410000003],[16.3893155,48.217785900000024],[16.3896491,48.2176752],[16.3897187,48.21761630000003],[16.3897462,48.21755780000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Novaragasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"44453559","geometry":{"type":"LineString","coordinates":[[16.3841036,48.217991299999994],[16.3842228,48.217963199999986]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Odeongasse","note":"Fahrverbot ausgen. Fahrrad","vehicle":"no"}},{"type":"Feature","id":"23312414","geometry":{"type":"LineString","coordinates":[[16.3836729,48.21809779999998],[16.3841036,48.217991299999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Odeongasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"493432605","geometry":{"type":"LineString","coordinates":[[16.3836729,48.21809779999998],[16.3839308,48.21853110000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Mohrengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024487","geometry":{"type":"LineString","coordinates":[[16.3833023,48.217539199999976],[16.3836729,48.21809779999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Mohrengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"33836512","geometry":{"type":"LineString","coordinates":[[16.3837409,48.215824699999985],[16.3839075,48.21593189999999],[16.3843418,48.216273900000004],[16.3849937,48.21684749999997],[16.3850413,48.216889400000014],[16.3850976,48.21694850000003],[16.3857209,48.2175896],[16.3860974,48.218018700000016],[16.3861252,48.21809409999997]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","foot":"yes","highway":"residential","maxspeed":"30","name":"Zirkusgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024274","geometry":{"type":"LineString","coordinates":[[16.3837409,48.215824699999985],[16.3837243,48.215874299999996],[16.3836675,48.2159116],[16.3833559,48.21592369999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schmelzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29275428","geometry":{"type":"LineString","coordinates":[[16.3823598,48.215865699999995],[16.3824658,48.21601609999999],[16.3826497,48.216295599999995],[16.3830345,48.21704299999999],[16.3833023,48.217539199999976]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Mohrengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"159481880","geometry":{"type":"LineString","coordinates":[[16.3827105,48.215884700000004],[16.3826558,48.21588349999996],[16.3823598,48.215865699999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Johannes-von-Gott-Platz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"8024497","geometry":{"type":"LineString","coordinates":[[16.3844596,48.21711909999999],[16.3841012,48.2167096],[16.3833559,48.21592369999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kleine Mohrengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"30285626","geometry":{"type":"LineString","coordinates":[[16.3833559,48.21592369999996],[16.3827105,48.215884700000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schmelzgasse","oneway":"yes","source:maxspeed":"AT:zone:30","source:name":"IRC conversation (see pedestrian area to North)","surface":"asphalt"}},{"type":"Feature","id":"8024535","geometry":{"type":"LineString","coordinates":[[16.380908,48.21896319999999],[16.3809188,48.2190823],[16.3809388,48.219137200000034],[16.3811122,48.21948250000003],[16.3811329,48.2195241],[16.3811988,48.2197032]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"8024483","geometry":{"type":"LineString","coordinates":[[16.3861252,48.21809409999997],[16.3839308,48.21853110000001],[16.3822721,48.21885889999999],[16.380986,48.218959100000006],[16.380908,48.21896319999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Blumauergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"354850557","geometry":{"type":"LineString","coordinates":[[16.3808031,48.21828860000002],[16.3808788,48.218419299999965],[16.3809039,48.21850599999996],[16.3809041,48.218658300000016],[16.3809066,48.218773899999974],[16.380909,48.218882399999984],[16.3809087,48.21892820000002],[16.380908,48.21896319999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"23312531","geometry":{"type":"LineString","coordinates":[[16.3808067,48.21796810000001],[16.3809161,48.21797090000004],[16.3809527,48.21797190000001],[16.3817326,48.21782239999999],[16.3819496,48.21778309999999],[16.3833023,48.217539199999976],[16.3835866,48.21746060000004],[16.3844596,48.21711909999999],[16.3849538,48.216927],[16.3850413,48.216889400000014],[16.3851218,48.21685819999999],[16.3856064,48.21667040000003],[16.3857517,48.216614100000015]]},"properties":{"cycleway":"opposite_track","highway":"residential","maxspeed":"30","name":"Rotensterngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"364145512","geometry":{"type":"LineString","coordinates":[[16.3809041,48.217131499999994],[16.3809021,48.216983400000004],[16.3808854,48.21669940000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"364145511","geometry":{"type":"LineString","coordinates":[[16.3809021,48.216983400000004],[16.3809873,48.21696930000002],[16.3810302,48.2170658],[16.3810633,48.21710089999999]]},"properties":{"highway":"footway","name":"Lancplatz","source":"wien.gv.at-labels"}},{"type":"Feature","id":"473317373","geometry":{"type":"LineString","coordinates":[[16.3809499,48.218881100000004],[16.3809384,48.218506899999994],[16.3809304,48.21822280000001],[16.3809161,48.21797090000004],[16.380899,48.21755139999999],[16.3809041,48.217131499999994]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"8024501","geometry":{"type":"LineString","coordinates":[[16.3814873,48.21746189999999],[16.380899,48.21755139999999],[16.3808013,48.21756629999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hafnergasse","oneway":"yes","place_numbers":"1-5","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"30285661","geometry":{"type":"LineString","coordinates":[[16.3808067,48.21796810000001],[16.3808143,48.2180826],[16.3808108,48.21816749999999],[16.3808031,48.21828860000002]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"5144350","geometry":{"type":"LineString","coordinates":[[16.380908,48.21896319999999],[16.3807805,48.21900099999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Obere Augartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"230482326","geometry":{"type":"LineString","coordinates":[[16.3811988,48.2197032],[16.3810998,48.21962730000004],[16.381024,48.219536300000016],[16.3808993,48.219311800000014],[16.3808453,48.21920639999999],[16.3808268,48.2191703],[16.3808016,48.21909629999999],[16.3807859,48.219029999999975],[16.3807805,48.21900099999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"30285659","geometry":{"type":"LineString","coordinates":[[16.3806496,48.21629999999999],[16.3807395,48.2165445],[16.380765,48.21664409999997],[16.3807877,48.21681649999999],[16.380803,48.21703560000003],[16.3808074,48.21721360000001],[16.3808013,48.21756629999999],[16.3808067,48.21796810000001]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"8024500","geometry":{"type":"LineString","coordinates":[[16.3806496,48.21629999999999],[16.3808966,48.21661020000002],[16.3809492,48.21668439999999],[16.3812233,48.217071000000004],[16.3812606,48.21712619999997],[16.3814873,48.21746189999999],[16.3817326,48.21782239999999],[16.3822721,48.21885889999999],[16.3825812,48.2194207],[16.3827181,48.219693800000016],[16.383011,48.22016420000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Glockengasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"230482328","geometry":{"type":"LineString","coordinates":[[16.3807805,48.21900099999999],[16.3807767,48.21888369999999],[16.3807676,48.218630899999994],[16.3807692,48.2184934]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"356983133","geometry":{"type":"LineString","coordinates":[[16.3808031,48.21828860000002],[16.3807974,48.21832280000001],[16.3807692,48.2184934]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"425297956","geometry":{"type":"LineString","coordinates":[[16.3842563,48.214696300000014],[16.3842044,48.21472879999999],[16.3841673,48.214752000000004],[16.3841023,48.21485229999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schrottgießergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5144257","geometry":{"type":"LineString","coordinates":[[16.3840221,48.21497790000001],[16.3841656,48.21502269999999],[16.3843264,48.215072900000024],[16.3845063,48.21528829999997],[16.3846006,48.2154012],[16.3855689,48.2164229],[16.3857147,48.21657540000001],[16.3857517,48.216614100000015],[16.3858092,48.216667],[16.3858725,48.2167317],[16.385968,48.21682920000001],[16.386001,48.21684749999997],[16.3861808,48.2169475],[16.3863488,48.21704079999998],[16.3866042,48.21723259999999],[16.3871799,48.2176547],[16.3873562,48.217811600000005],[16.3877236,48.21827410000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Weintraubengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9797746","geometry":{"type":"LineString","coordinates":[[16.3914109,48.21362850000003],[16.3913335,48.213641800000005],[16.3908447,48.213734699999975],[16.3903565,48.21381489999999],[16.3897726,48.2139095],[16.3895418,48.21393119999999],[16.3891884,48.21393699999996],[16.3887375,48.21392740000002],[16.3884545,48.2138942],[16.3879828,48.21383759999998],[16.3878098,48.21380669999999],[16.3877318,48.21378060000001],[16.3876159,48.2137419],[16.3875724,48.21372740000001],[16.3874985,48.21369730000001],[16.3873596,48.21364080000001],[16.3868904,48.21344980000001],[16.3859669,48.21307250000001],[16.385279,48.21284209999999],[16.3848048,48.21272010000001],[16.3845259,48.2126643],[16.3840852,48.21257610000001]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Untere Donaustraße","oneway":"yes","ref":"B227","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8093470","geometry":{"type":"LineString","coordinates":[[16.3830065,48.21310919999999],[16.3831118,48.21312630000003],[16.3842277,48.21328669999997],[16.3846748,48.21335099999999],[16.3850704,48.213415699999985],[16.3857613,48.21352780000001],[16.3874719,48.213818100000026]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Ferdinandstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"159492108","geometry":{"type":"LineString","coordinates":[[16.3838521,48.21471079999998],[16.3831736,48.214911900000004]]},"properties":{"highway":"pedestrian","name":"Komödiengasse"}},{"type":"Feature","id":"200689828","geometry":{"type":"LineString","coordinates":[[16.3841023,48.21485229999999],[16.3840221,48.21497790000001],[16.3837945,48.215328699999986],[16.3837269,48.21539499999997],[16.3836617,48.21543580000002],[16.3835243,48.215521799999976]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schrottgießergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9867254","geometry":{"type":"LineString","coordinates":[[16.3835243,48.215521799999976],[16.3837409,48.215824699999985]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zirkusgasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"157533725","geometry":{"type":"LineString","coordinates":[[16.3833025,48.21245830000001],[16.3831485,48.2124403]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Untere Donaustraße","oneway":"yes","ref":"B227","turn:lanes":"left;through|through|through|right"}},{"type":"Feature","id":"204274838","geometry":{"type":"LineString","coordinates":[[16.3830065,48.21310919999999],[16.3830367,48.2130009],[16.3831278,48.212623899999954],[16.3831423,48.212502700000016],[16.3831485,48.2124403]]},"properties":{"highway":"secondary","is_in":"Wien","lanes":"5","lanes:backward":"2","lanes:forward":"3","lit":"yes","maxspeed":"50","name":"Aspernbrückengasse","turn:lanes:forward":"through|through|right"}},{"type":"Feature","id":"157533724","geometry":{"type":"LineString","coordinates":[[16.3834836,48.212481499999996],[16.3833025,48.21245830000001]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Untere Donaustraße","oneway":"yes","ref":"B227","surface":"asphalt","turn:lanes":"left;through|through|through|right"}},{"type":"Feature","id":"230626524","geometry":{"type":"LineString","coordinates":[[16.3840852,48.21257610000001],[16.3834836,48.212481499999996]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Untere Donaustraße","oneway":"yes","ref":"B227","source:maxspeed":"AT:urban","surface":"asphalt","turn:lanes":"left;through|through|through|right"}},{"type":"Feature","id":"9284167","geometry":{"type":"LineString","coordinates":[[16.3831488,48.212334],[16.3830269,48.211924100000005]]},"properties":{"bicycle":"use_sidepath","bridge":"yes","description":"Erected 1951, Length 89 meter.","highway":"secondary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Aspernbrücke","turn:lanes:backward":"left|left|through|through","turn:lanes:forward":"none|none"}},{"type":"Feature","id":"25702234","geometry":{"type":"LineString","coordinates":[[16.3898735,48.21365509999998],[16.3894188,48.21366629999997],[16.3889744,48.213664499999965],[16.388587,48.21363809999997],[16.3885165,48.2136333],[16.3880518,48.21357309999999],[16.3877035,48.21350069999997],[16.3874899,48.21345629999999],[16.3869846,48.213316099999986],[16.3866724,48.2132129],[16.3855615,48.21278050000004],[16.385149,48.21264980000001],[16.3848134,48.212538600000016],[16.3843,48.21240990000001],[16.3838737,48.212341400000014],[16.3836533,48.21230600000001],[16.383445,48.21231349999999],[16.3831694,48.21228819999999]]},"properties":{"bicycle":"yes","foot":"yes","highway":"path","layer":"-1","motor_vehicle":"private","name":"Praterufer","segregated":"no","source:surface":"survey","surface":"asphalt"}},{"type":"Feature","id":"8105276","geometry":{"type":"LineString","coordinates":[[16.3831485,48.2124403],[16.3831488,48.212334]]},"properties":{"highway":"secondary","lanes":"4","lanes:backward":"2","lanes:forward":"2","lit":"yes","maxspeed":"50","name":"Aspernbrücke","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"9867424","geometry":{"type":"LineString","coordinates":[[16.3831736,48.214911900000004],[16.3822306,48.21530490000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Komödiengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"509806352","geometry":{"type":"LineString","coordinates":[[16.3822306,48.21530490000001],[16.3822891,48.21565849999999],[16.3823598,48.215865699999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Mohrengasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"204274839","geometry":{"type":"LineString","coordinates":[[16.3825801,48.21304000000001],[16.3823017,48.21299930000001],[16.3813801,48.2128721],[16.3812657,48.21287380000001],[16.381136,48.21300489999999]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Ferdinandstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024369","geometry":{"type":"LineString","coordinates":[[16.3835243,48.215521799999976],[16.3831736,48.214911900000004],[16.3824488,48.21404230000002],[16.3820941,48.21366950000001],[16.3820792,48.21363959999999],[16.3820851,48.2135955],[16.3821267,48.213558500000005],[16.3822129,48.2135179]]},"properties":{"highway":"residential","maxspeed":"30","name":"Zirkusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8093463","geometry":{"type":"LineString","coordinates":[[16.3830065,48.21310919999999],[16.3828829,48.2130842],[16.3825801,48.21304000000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Ferdinandstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4437077","geometry":{"type":"LineString","coordinates":[[16.3828704,48.2136562],[16.3830065,48.21310919999999]]},"properties":{"highway":"secondary","is_in":"Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Aspernbrückengasse"}},{"type":"Feature","id":"437864409","geometry":{"type":"LineString","coordinates":[[16.3842348,48.214595599999996],[16.3840135,48.21447499999999],[16.383078,48.21390629999996],[16.3829166,48.213784000000004],[16.3828704,48.2136562]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Praterstraße"}},{"type":"Feature","id":"8093462","geometry":{"type":"LineString","coordinates":[[16.3824898,48.21237150000002],[16.3824748,48.212425199999984],[16.3823017,48.21299930000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Fischergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26718832","geometry":{"type":"LineString","coordinates":[[16.381547,48.2204524],[16.3814585,48.22047120000002],[16.3805695,48.22066029999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"201325518","geometry":{"type":"LineString","coordinates":[[16.3784712,48.2204419],[16.3785619,48.22042959999999],[16.3786663,48.22046549999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obere Augartenstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"7996090","geometry":{"type":"LineString","coordinates":[[16.3800223,48.21952160000001],[16.3801239,48.21962049999999],[16.380163,48.2196534],[16.3805695,48.22066029999999],[16.3811357,48.22210710000002],[16.3813418,48.22265479999999],[16.3813521,48.2226823],[16.3813972,48.22279420000001]]},"properties":{"cycleway":"opposite_track","cycleway:left":"track","cycleway:right":"lane","highway":"residential","maxspeed":"30","name":"Castellezgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26956697","geometry":{"type":"LineString","coordinates":[[16.3789921,48.22022369999999],[16.3789197,48.22017809999997],[16.3788498,48.220134099999996],[16.378804,48.22010529999997],[16.3784899,48.21953690000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Sperlgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"207499621","geometry":{"type":"LineString","coordinates":[[16.3795407,48.21984980000002],[16.3796419,48.2199004],[16.3797292,48.219965099999996],[16.3797448,48.219976599999995]]},"properties":{"highway":"service","name":"Am Augartenspitz","service":"driveway"}},{"type":"Feature","id":"358900460","geometry":{"type":"LineString","coordinates":[[16.3796419,48.2199004],[16.3800322,48.21963920000002]]},"properties":{"bicycle":"yes","foot":"yes","highway":"cycleway","lcn":"yes","name":"Am Augartenspitz","segregated":"yes"}},{"type":"Feature","id":"28093861","geometry":{"type":"LineString","coordinates":[[16.3801759,48.2194284],[16.380089,48.21936950000003],[16.3798884,48.21925759999999],[16.3792126,48.21939120000002],[16.3790474,48.2194245],[16.3784899,48.21953690000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kleine Pfarrgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"230482323","geometry":{"type":"LineString","coordinates":[[16.3807805,48.21900099999999],[16.3807253,48.219043699999986],[16.3803675,48.219291200000015],[16.3802792,48.219353900000016],[16.3801759,48.2194284],[16.3800907,48.21947660000001],[16.3800223,48.21952160000001]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Obere Augartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"28097053","geometry":{"type":"LineString","coordinates":[[16.3792126,48.21939120000002],[16.379153,48.219091400000025]]},"properties":{"bicycle":"private","foot":"yes","highway":"residential","maxspeed":"30","motor_vehicle":"private","name":"Alexander-Poch-Platz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473317372","geometry":{"type":"LineString","coordinates":[[16.3810075,48.2166684],[16.3809062,48.2164932],[16.3808063,48.21632389999999],[16.3807131,48.21615409999998],[16.3805481,48.21585110000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"473313095","geometry":{"type":"LineString","coordinates":[[16.3807141,48.218883500000004],[16.3806914,48.21849879999999],[16.3807057,48.218461399999995],[16.3806923,48.21796669999998],[16.3806923,48.217209999999994],[16.3807111,48.2169744],[16.380685,48.21693239999996],[16.3806682,48.21675189999999],[16.3806347,48.216606299999995],[16.380522,48.216319699999985],[16.3805074,48.21623979999998],[16.3803686,48.21594490000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"8024334","geometry":{"type":"LineString","coordinates":[[16.3803914,48.215756500000026],[16.380238,48.215678800000006],[16.3801926,48.2156688]]},"properties":{"highway":"residential","maxspeed":"30","name":"Karmeliterplatz","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29275429","geometry":{"type":"LineString","coordinates":[[16.3823598,48.215865699999995],[16.3805367,48.21576519999999],[16.3803914,48.215756500000026]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schmelzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"176336103","geometry":{"type":"LineString","coordinates":[[16.3803914,48.215756500000026],[16.3804301,48.215842699999996],[16.3804709,48.215949300000005],[16.3806496,48.21629999999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"367960083","geometry":{"type":"LineString","coordinates":[[16.3803131,48.213924099999986],[16.3811472,48.21378730000001]]},"properties":{"highway":"footway","motor_vehicle":"private","name":"Durchhaus Taborstraße 10"}},{"type":"Feature","id":"354850554","geometry":{"type":"LineString","coordinates":[[16.3800508,48.2144576],[16.3801886,48.2150225],[16.380323,48.215572500000036],[16.3803492,48.2156511],[16.3803561,48.2156703],[16.3803914,48.215756500000026]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"493432294","geometry":{"type":"LineString","coordinates":[[16.3801926,48.2156688],[16.3799683,48.215619300000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Karmeliterplatz","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28094002","geometry":{"type":"LineString","coordinates":[[16.3797246,48.21795469999998],[16.3806923,48.21796669999998],[16.3808067,48.21796810000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Haidgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"8024372","geometry":{"type":"LineString","coordinates":[[16.3797132,48.21717810000001],[16.3797246,48.21795469999998],[16.3797391,48.21860029999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rotenkreuzgasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"28640751","geometry":{"type":"LineString","coordinates":[[16.3799683,48.215619300000014],[16.3798368,48.2156463],[16.3796926,48.21566960000001],[16.3795181,48.21567949999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Karmeliterplatz","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29274200","geometry":{"type":"LineString","coordinates":[[16.3796899,48.21612479999999],[16.3795127,48.216368999999986],[16.3794905,48.21645910000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Karmeliterplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"58706177","geometry":{"type":"LineString","coordinates":[[16.3799961,48.2139736],[16.3800265,48.2139684]]},"properties":{"highway":"footway","name":"Durchhaus Taborstraße 10"}},{"type":"Feature","id":"222621755","geometry":{"type":"LineString","coordinates":[[16.3799303,48.21408840000001],[16.3799909,48.2142532],[16.3800508,48.2144576]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"354850548","geometry":{"type":"LineString","coordinates":[[16.380033,48.214460900000006],[16.3800508,48.2144576]]},"properties":{"highway":"residential","maxspeed":"30","name":"Negerlegasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29234592","geometry":{"type":"LineString","coordinates":[[16.3796263,48.21509129999998],[16.3800764,48.215036199999986],[16.3801886,48.2150225]]},"properties":{"highway":"residential","maxspeed":"50","name":"Lassingleithnerplatz","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"354673512","geometry":{"type":"LineString","coordinates":[[16.3798405,48.213530899999995],[16.3799679,48.213506300000006]]},"properties":{"fixme":"Lage","highway":"footway","name":"Durchhaus Taborstraße 6","tunnel":"building_passage"}},{"type":"Feature","id":"29250957","geometry":{"type":"LineString","coordinates":[[16.3798122,48.21353640000001],[16.3798405,48.213530899999995]]},"properties":{"fixme":"Lage","highway":"footway","name":"Durchhaus Taborstraße 6"}},{"type":"Feature","id":"354673513","geometry":{"type":"LineString","coordinates":[[16.3799679,48.213506300000006],[16.3807916,48.21334729999998]]},"properties":{"fixme":"Lage","highway":"footway","name":"Durchhaus Taborstraße 6"}},{"type":"Feature","id":"58706178","geometry":{"type":"LineString","coordinates":[[16.3798999,48.213748399999986],[16.380937,48.21353490000001]]},"properties":{"fixme":"Lage","highway":"footway","name":"Durchhaus Taborstraße 8"}},{"type":"Feature","id":"473320440","geometry":{"type":"LineString","coordinates":[[16.3801915,48.21548179999999],[16.3800764,48.215036199999986],[16.3799936,48.21467280000002],[16.3799491,48.21448179999999],[16.379842,48.214176399999985],[16.3797478,48.21407160000001],[16.3797353,48.21403000000001],[16.379731,48.21401610000001],[16.3797247,48.21399600000001],[16.3797096,48.213948000000016],[16.3797031,48.2139282]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"367960081","geometry":{"type":"LineString","coordinates":[[16.3800265,48.2139684],[16.3803131,48.213924099999986]]},"properties":{"highway":"footway","name":"Durchhaus Taborstraße 10","tunnel":"building_passage"}},{"type":"Feature","id":"316995463","geometry":{"type":"LineString","coordinates":[[16.3788451,48.21581259999999],[16.3783227,48.21593150000001],[16.3781805,48.21599710000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kleine Sperlgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"164335726","geometry":{"type":"LineString","coordinates":[[16.3795181,48.21567949999999],[16.3788451,48.21581259999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kleine Sperlgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28093968","geometry":{"type":"LineString","coordinates":[[16.3781805,48.21599710000001],[16.3781825,48.21653869999997],[16.3782269,48.21662069999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Große Sperlgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"164103747","geometry":{"type":"LineString","coordinates":[[16.3782269,48.21662069999999],[16.3783753,48.21658830000001],[16.3794905,48.21645910000001],[16.380426,48.21633449999999],[16.380522,48.216319699999985],[16.3806496,48.21629999999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Karmelitergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28097212","geometry":{"type":"LineString","coordinates":[[16.379153,48.219091400000025],[16.3790195,48.2189807],[16.3789684,48.21868790000002]]},"properties":{"highway":"pedestrian","name":"Alexander-Poch-Platz"}},{"type":"Feature","id":"26739853","geometry":{"type":"LineString","coordinates":[[16.3784899,48.21953690000001],[16.3783786,48.218743500000045],[16.3782812,48.217973099999966],[16.3782018,48.2171299]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Sperlgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"28093964","geometry":{"type":"LineString","coordinates":[[16.3782018,48.2171299],[16.3782027,48.21711139999999],[16.3782235,48.21668979999998],[16.3782269,48.21662069999999]]},"properties":{"bicycle":"designated","highway":"pedestrian","motor_vehicle":"private","name":"Große Sperlgasse","oneway":"no"}},{"type":"Feature","id":"355120500","geometry":{"type":"LineString","coordinates":[[16.378662,48.21406179999997],[16.3786529,48.214037099999985]]},"properties":{"highway":"footway","name":"Schoellerhofgasse"}},{"type":"Feature","id":"28602163","geometry":{"type":"LineString","coordinates":[[16.3788451,48.21581259999999],[16.378315,48.215149800000006],[16.3781771,48.21493559999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Lilienbrunngasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29234593","geometry":{"type":"LineString","coordinates":[[16.3789107,48.21474020000002],[16.3788845,48.2146688],[16.3787946,48.21442379999999],[16.3787348,48.21426059999999],[16.378662,48.21406179999997]]},"properties":{"foot":"yes","highway":"service","name":"Schoellerhofgasse","service":"driveway","vehicle":"private"}},{"type":"Feature","id":"8024338","geometry":{"type":"LineString","coordinates":[[16.3781771,48.21493559999999],[16.3789107,48.21474020000002],[16.3799491,48.21448179999999],[16.380033,48.214460900000006]]},"properties":{"fixme":"Radfahrer von Einbahn ausgenommen?","highway":"residential","maxspeed":"30","name":"Negerlegasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29234599","geometry":{"type":"LineString","coordinates":[[16.3781264,48.21361039999999],[16.378171,48.21354249999999],[16.3782122,48.2134915],[16.3783132,48.2134705],[16.3784696,48.21350960000001],[16.3785211,48.21362590000001],[16.3785588,48.21371910000002]]},"properties":{"highway":"service","maxspeed":"50","name":"Gredlerstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"29234612","geometry":{"type":"LineString","coordinates":[[16.3786529,48.214037099999985],[16.3785812,48.213794800000045],[16.3785588,48.21371910000002]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schoellerhofgasse","oneway":"no","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"225611118","geometry":{"type":"LineString","coordinates":[[16.3802806,48.21266450000002],[16.3804179,48.2127332],[16.380635,48.21277979999999],[16.3808655,48.21286860000001],[16.381136,48.21300489999999],[16.3815144,48.21320850000001],[16.3818753,48.2133795],[16.3822129,48.2135179],[16.3825821,48.213667000000015],[16.382675,48.21367019999997],[16.3827675,48.21365610000001],[16.3828704,48.2136562]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Praterstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"230483963","geometry":{"type":"LineString","coordinates":[[16.3792906,48.21279329999996],[16.3796202,48.21335920000004],[16.3797093,48.213542399999994],[16.3798528,48.21390109999999],[16.3798761,48.21395419999999],[16.3799083,48.214033700000016],[16.3799303,48.21408840000001]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"473317364","geometry":{"type":"LineString","coordinates":[[16.3804357,48.215649299999995],[16.3803949,48.215509200000014],[16.3803675,48.21539519999999],[16.38035,48.21532239999999],[16.3801679,48.21450569999999],[16.3801129,48.21430559999999],[16.3799961,48.2139736],[16.3798999,48.213748399999986],[16.3798122,48.21353640000001],[16.37972,48.21333150000001],[16.3794987,48.212958799999996],[16.3793246,48.21266000000003]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"8096059","geometry":{"type":"LineString","coordinates":[[16.3802806,48.21266450000002],[16.3803215,48.21279240000001],[16.3807916,48.21334729999998],[16.380937,48.21353490000001],[16.3811472,48.21378730000001],[16.3815288,48.21428559999998],[16.3818886,48.214714500000014],[16.3822306,48.21530490000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Mohrengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"230483961","geometry":{"type":"LineString","coordinates":[[16.379207,48.2125078],[16.3792302,48.21256579999999],[16.3792514,48.21261720000001],[16.3792599,48.2126567],[16.3792906,48.21279329999996]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"1","maxspeed":"50","name":"Taborstraße","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"437864410","geometry":{"type":"LineString","coordinates":[[16.3793406,48.21262780000001],[16.3794709,48.2126452],[16.3799915,48.2125824],[16.3800513,48.212580900000006],[16.3800848,48.21258080000001],[16.3801313,48.212588900000014],[16.3802288,48.212627],[16.3802806,48.21266450000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Praterstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9292382","geometry":{"type":"LineString","coordinates":[[16.3792514,48.21261720000001],[16.3793406,48.21262780000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Praterstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28098517","geometry":{"type":"LineString","coordinates":[[16.3802806,48.21266450000002],[16.380372,48.21248940000001],[16.3803626,48.21243609999999],[16.3803531,48.21238210000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Mohrengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"146984833","geometry":{"type":"LineString","coordinates":[[16.3831485,48.2124403],[16.3829944,48.212420899999984],[16.3824898,48.21237150000002],[16.3818005,48.21234659999999],[16.3810081,48.212357500000024],[16.3803531,48.21238210000001],[16.3798886,48.21241309999999],[16.3793174,48.21249180000001],[16.379207,48.2125078]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Untere Donaustraße","oneway":"yes","ref":"B227","sidewalk":"right"}},{"type":"Feature","id":"230483956","geometry":{"type":"LineString","coordinates":[[16.3791754,48.2124383],[16.379207,48.2125078]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","maxspeed":"50","name":"Schwedenbrücke","oneway":"yes"}},{"type":"Feature","id":"230483958","geometry":{"type":"LineString","coordinates":[[16.3790843,48.212525699999986],[16.3790515,48.212460300000004]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","maxspeed":"50","name":"Schwedenbrücke","oneway":"yes"}},{"type":"Feature","id":"146984829","geometry":{"type":"LineString","coordinates":[[16.379207,48.2125078],[16.3791402,48.2125168],[16.3790843,48.212525699999986]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"230483957","geometry":{"type":"LineString","coordinates":[[16.3792906,48.21279329999996],[16.3792151,48.21272400000001],[16.3791681,48.2126633],[16.3791445,48.212631499999986],[16.3791168,48.212587499999955],[16.3790843,48.212525699999986]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"1","maxspeed":"50","name":"Taborstraße","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"230483959","geometry":{"type":"LineString","coordinates":[[16.3790515,48.212460300000004],[16.3787369,48.21181250000001]]},"properties":{"bridge":"yes","cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"2","layer":"1","maxspeed":"50","name":"Schwedenbrücke","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"473320413","geometry":{"type":"LineString","coordinates":[[16.3792694,48.212422100000026],[16.3792389,48.212396299999995],[16.3790773,48.212053999999995],[16.3789517,48.21177430000003]]},"properties":{"bridge":"yes","footway":"sidewalk","highway":"footway","name":"Schwedenbrücke"}},{"type":"Feature","id":"473322435","geometry":{"type":"LineString","coordinates":[[16.3786374,48.21182730000001],[16.3786148,48.21177990000004]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Schwedenbrücke"}},{"type":"Feature","id":"230483960","geometry":{"type":"LineString","coordinates":[[16.3788613,48.2117897],[16.3789474,48.21196810000001],[16.3790909,48.2122636],[16.3791754,48.2124383]]},"properties":{"bridge":"yes","cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"2","layer":"1","maxspeed":"50","name":"Schwedenbrücke","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"473320403","geometry":{"type":"LineString","coordinates":[[16.3789478,48.21247869999999],[16.3786374,48.21182730000001]]},"properties":{"bridge":"yes","footway":"sidewalk","highway":"footway","name":"Schwedenbrücke"}},{"type":"Feature","id":"230483964","geometry":{"type":"LineString","coordinates":[[16.3790843,48.212525699999986],[16.3789736,48.2125418],[16.3789251,48.21254999999999],[16.3786943,48.21258679999997],[16.3784635,48.212635199999994],[16.3781069,48.212721000000016]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","sidewalk":"right","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"225611117","geometry":{"type":"LineString","coordinates":[[16.3789251,48.21254999999999],[16.3788137,48.212643199999974],[16.3785367,48.21270470000002],[16.3782071,48.21277789999999],[16.3779302,48.2127797]]},"properties":{"highway":"service","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"201325517","geometry":{"type":"LineString","coordinates":[[16.3775832,48.220943000000005],[16.3784712,48.2204419]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Obere Augartenstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024395","geometry":{"type":"LineString","coordinates":[[16.377409,48.21785430000003],[16.3774745,48.21786320000001],[16.3782812,48.217973099999966],[16.3789856,48.217952999999966],[16.3797246,48.21795469999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Haidgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148466","geometry":{"type":"LineString","coordinates":[[16.3800223,48.21952160000001],[16.3799276,48.21958190000001],[16.3795407,48.21984980000002],[16.3790634,48.220175100000006],[16.3789921,48.22022369999999],[16.3788916,48.220298299999996],[16.3786663,48.22046549999999],[16.3778495,48.221080299999954]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Obere Augartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8024174","geometry":{"type":"LineString","coordinates":[[16.3808074,48.21721360000001],[16.3806923,48.217209999999994],[16.3797132,48.21717810000001],[16.3782018,48.2171299],[16.3777182,48.2171189],[16.377602,48.21711629999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Tandelmarktgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"30011215","geometry":{"type":"LineString","coordinates":[[16.377733,48.21609669999998],[16.3775118,48.215658899999994],[16.3778319,48.215452400000004]]},"properties":{"highway":"service","maxspeed":"30","name":"Kleine Sperlgasse","old_name":"Kleine Ankergasse","source:maxspeed":"AT:zone:30","vehicle":"no"}},{"type":"Feature","id":"26956617","geometry":{"type":"LineString","coordinates":[[16.3781805,48.21599710000001],[16.377733,48.21609669999998],[16.377386,48.2161782],[16.3772489,48.216210399999994]]},"properties":{"cycleway":"opposite_track","highway":"residential","maxspeed":"30","name":"Kleine Sperlgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26956613","geometry":{"type":"LineString","coordinates":[[16.3772489,48.216210399999994],[16.3772877,48.21627609999999],[16.3775295,48.21668549999998],[16.3775588,48.216780400000005],[16.3775848,48.21686440000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hollandstraße","old_name":"Große Ankergasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024528","geometry":{"type":"LineString","coordinates":[[16.3775848,48.21686440000002],[16.3777096,48.216804499999995],[16.3780871,48.21668260000001],[16.3782269,48.21662069999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krummbaumgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28096878","geometry":{"type":"LineString","coordinates":[[16.376454,48.21788129999999],[16.3765396,48.21787890000002],[16.3766831,48.217874800000004],[16.3769619,48.21786700000001],[16.3772891,48.217857699999996],[16.3773266,48.217856600000005],[16.377409,48.21785430000003]]},"properties":{"highway":"pedestrian","name":"Haidgasse"}},{"type":"Feature","id":"8024172","geometry":{"type":"LineString","coordinates":[[16.3807692,48.2184934],[16.3806914,48.21849879999999],[16.3797391,48.21860029999999],[16.3789684,48.21868790000002],[16.3783786,48.218743500000045],[16.3769939,48.21887920000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Pfarrgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"8024257","geometry":{"type":"LineString","coordinates":[[16.3765633,48.21988289999999],[16.3767164,48.21989669999999],[16.3774322,48.21975689999999],[16.3784899,48.21953690000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kleine Pfarrgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024349","geometry":{"type":"LineString","coordinates":[[16.3768596,48.2191378],[16.3772724,48.219220399999955],[16.3774322,48.21975689999999]]},"properties":{"highway":"living_street","name":"Schwarzingergasse","oneway":"yes","source:maxspeed":"AT:walk","surface":"cobblestone"}},{"type":"Feature","id":"26739823","geometry":{"type":"LineString","coordinates":[[16.3767212,48.21911610000001],[16.3766601,48.218833700000005],[16.376454,48.21788129999999],[16.3764522,48.2178007]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Im Werd"}},{"type":"Feature","id":"399455501","geometry":{"type":"LineString","coordinates":[[16.3764522,48.2178007],[16.3763502,48.21738799999997],[16.3762173,48.21696459999998],[16.3762032,48.216919700000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Im Werd","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024132","geometry":{"type":"LineString","coordinates":[[16.3755683,48.216933900000015],[16.3755567,48.21726190000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Schiffgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"173502220","geometry":{"type":"LineString","coordinates":[[16.3755567,48.21726190000001],[16.3757706,48.21807179999999],[16.3758939,48.218520100000035],[16.3760151,48.219086499999975]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Schiffgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024131","geometry":{"type":"LineString","coordinates":[[16.3761985,48.220257600000025],[16.3760099,48.22037810000003],[16.375776,48.2205381]]},"properties":{"highway":"residential","maxspeed":"30","name":"Leopoldsgasse","oneway":"no","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024241","geometry":{"type":"LineString","coordinates":[[16.375498,48.219028700000024],[16.3751948,48.219863799999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Raimundgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024245","geometry":{"type":"LineString","coordinates":[[16.3775832,48.220943000000005],[16.3764786,48.220396300000004],[16.3761985,48.220257600000025]]},"properties":{"highway":"residential","maxspeed":"30","name":"Malzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"164288578","geometry":{"type":"LineString","coordinates":[[16.3760442,48.214853800000014],[16.3762604,48.2151092],[16.3772071,48.2161639],[16.3772489,48.216210399999994]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Hollandstraße","old_name":"Große Ankergasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"31129303","geometry":{"type":"LineString","coordinates":[[16.3761985,48.220257600000025],[16.3763181,48.22017050000002],[16.3764249,48.22009650000001],[16.376472,48.220063900000014],[16.3765633,48.21988289999999],[16.3768596,48.2191378],[16.3769939,48.21887920000003],[16.377409,48.21785430000003],[16.3774308,48.217791699999964],[16.3774402,48.21776460000001],[16.3775778,48.2173689],[16.3775914,48.217205500000006],[16.377602,48.21711629999999],[16.3776016,48.217070199999995],[16.3775895,48.216922600000004],[16.3775848,48.21686440000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Leopoldsgasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024133","geometry":{"type":"LineString","coordinates":[[16.3755683,48.216933900000015],[16.3762032,48.216919700000005],[16.3774277,48.216887799999995],[16.3774864,48.2168791],[16.3775848,48.21686440000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krummbaumgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"201325515","geometry":{"type":"LineString","coordinates":[[16.3778378,48.2141264],[16.377963,48.214466000000016],[16.3780369,48.21471580000002],[16.3781771,48.21493559999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Lilienbrunngasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"355120253","geometry":{"type":"LineString","coordinates":[[16.3778727,48.21353400000001],[16.3781264,48.21361039999999],[16.3785588,48.21371910000002],[16.3793576,48.21391750000001],[16.379731,48.21401610000001],[16.3797604,48.214024800000004],[16.3799303,48.21408840000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Gredlerstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"9288654","geometry":{"type":"LineString","coordinates":[[16.3776235,48.21349599999999],[16.3778727,48.21353400000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Gredlerstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"355120254","geometry":{"type":"LineString","coordinates":[[16.3778727,48.21353400000001],[16.3777628,48.21355249999999],[16.377697,48.213578299999995],[16.3776441,48.21361289999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Gredlerstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"30085564","geometry":{"type":"LineString","coordinates":[[16.3776235,48.21349599999999],[16.3776441,48.21361289999999]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Lilienbrunngasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473322441","geometry":{"type":"LineString","coordinates":[[16.3797478,48.21407160000001],[16.3791789,48.2139378],[16.3785812,48.213794800000045],[16.3778927,48.21361790000003],[16.3778116,48.21359419999999],[16.3777674,48.2135902],[16.3777211,48.21360229999999],[16.3777023,48.21362500000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Gredlerstraße"}},{"type":"Feature","id":"355135033","geometry":{"type":"LineString","coordinates":[[16.3776441,48.21361289999999],[16.3776523,48.21363490000002],[16.377705,48.21377580000001],[16.3777585,48.213918500000034],[16.3777929,48.214007700000025],[16.3778132,48.214061500000014],[16.3778378,48.2141264]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lilienbrunngasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473322442","geometry":{"type":"LineString","coordinates":[[16.3775859,48.213202499999966],[16.3777755,48.213438800000006]]},"properties":{"footway":"sidewalk","highway":"footway","lit":"yes","name":"Lilienbrunngasse"}},{"type":"Feature","id":"385078743","geometry":{"type":"LineString","coordinates":[[16.3777755,48.213438800000006],[16.3778024,48.21345310000001],[16.377921,48.21351200000001],[16.3780983,48.21355779999996],[16.378171,48.21354249999999],[16.3785211,48.21362590000001],[16.3785817,48.21364220000004],[16.3786493,48.213700200000005],[16.3790764,48.21380529999999],[16.3795894,48.21393130000001],[16.3796502,48.21394269999999],[16.3797031,48.2139282]]},"properties":{"footway":"sidewalk","highway":"footway","lit":"yes","name":"Gredlerstraße"}},{"type":"Feature","id":"8024438","geometry":{"type":"LineString","coordinates":[[16.3762604,48.2151092],[16.3763831,48.21506290000002],[16.377963,48.214466000000016]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hammer-Purgstall-Gasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"361117235","geometry":{"type":"LineString","coordinates":[[16.3773024,48.21300840000001],[16.3772429,48.213031900000004]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","sidewalk":"right","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8024409","geometry":{"type":"LineString","coordinates":[[16.3772429,48.213031900000004],[16.3772753,48.213091899999995],[16.3772974,48.21311459999998],[16.3774684,48.21330960000003],[16.3776235,48.21349599999999]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Lilienbrunngasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"473322438","geometry":{"type":"LineString","coordinates":[[16.3776131,48.213642899999996],[16.3775702,48.21349950000001],[16.3774147,48.213329999999985],[16.3773489,48.213280499999996],[16.377178,48.21310869999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Lilienbrunngasse"}},{"type":"Feature","id":"263062086","geometry":{"type":"LineString","coordinates":[[16.3771853,48.212960899999985],[16.3771944,48.21297240000001],[16.3772429,48.213031900000004]]},"properties":{"cycleway:left":"opposite_lane","cycleway:right":"shared_lane","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Marienbrücke","oneway":"yes","oneway:bicycle":"no","turn:lanes":"left|through"}},{"type":"Feature","id":"9293458","geometry":{"type":"LineString","coordinates":[[16.3757503,48.21458640000003],[16.3755624,48.21452549999998],[16.3754604,48.214492500000006]]},"properties":{"cycleway":"lane","highway":"tertiary","lanes":"3","lanes:backward":"1","lanes:forward":"2","maxspeed":"50","name":"Salztorbrücke","turn:lanes:forward":"left;through|through"}},{"type":"Feature","id":"8024442","geometry":{"type":"LineString","coordinates":[[16.3757503,48.21458640000003],[16.3758022,48.21462450000004],[16.3758577,48.21467369999999],[16.3759812,48.214791899999994],[16.3760442,48.214853800000014]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Friedrich-Wilhelm-Raiffeisen-Platz","old_name":"Große Ankergasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"127240496","geometry":{"type":"LineString","coordinates":[[16.3772429,48.213031900000004],[16.3771448,48.213072600000004],[16.3769886,48.2131407],[16.3766399,48.213299199999994],[16.37647,48.21338579999997],[16.3763784,48.21343250000001],[16.3761801,48.213551300000034],[16.3760589,48.21365230000001],[16.3760242,48.213695599999994],[16.3759627,48.21377229999999],[16.3758711,48.21392490000002],[16.3758334,48.214021],[16.3758128,48.214108900000014],[16.3757681,48.214483599999966],[16.3757503,48.21458640000003]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"357504712","geometry":{"type":"LineString","coordinates":[[16.3753237,48.21442239999999],[16.3753966,48.21431230000002],[16.3754261,48.21425689999998],[16.3755141,48.214090699999986],[16.3755723,48.213981700000005],[16.3756573,48.21388329999999],[16.3758621,48.213668900000016]]},"properties":{"bicycle":"yes","foot":"yes","highway":"path","motor_vehicle":"private","name":"Dianabadufer"}},{"type":"Feature","id":"357504706","geometry":{"type":"LineString","coordinates":[[16.3771821,48.21291230000003],[16.377059,48.212966800000004],[16.3769201,48.212991999999986],[16.3766493,48.21313140000001],[16.3762474,48.2133666],[16.3760498,48.213510600000006],[16.3758621,48.213668900000016]]},"properties":{"bicycle":"yes","fixme":"name Donaukanalufer-Abschnitt","foot":"yes","highway":"path","layer":"-1","motor_vehicle":"private","name":"Dianabadufer","segregated":"no","source:surface":"survey","surface":"asphalt"}},{"type":"Feature","id":"229033717","geometry":{"type":"LineString","coordinates":[[16.3781069,48.212721000000016],[16.3779302,48.2127797],[16.3776358,48.21287610000002],[16.3775698,48.2129027],[16.3774028,48.21296960000001],[16.3773385,48.212994099999975],[16.3773024,48.21300840000001]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","sidewalk":"right","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"357504701","geometry":{"type":"LineString","coordinates":[[16.3831694,48.21228819999999],[16.3828696,48.21226070000003],[16.3827526,48.21220919999999],[16.3822927,48.2121822],[16.381504,48.212164100000024],[16.381255,48.21216980000003],[16.3810067,48.212174300000015],[16.3807586,48.21219240000002],[16.3800692,48.21224560000002],[16.3795256,48.21231740000002],[16.3793181,48.2123584],[16.3788669,48.212428500000016],[16.3787192,48.2124369],[16.3784889,48.212472700000006],[16.3778581,48.21263250000001],[16.3775258,48.21274360000001],[16.377373,48.21279750000002],[16.3773181,48.212852],[16.3771821,48.21291230000003]]},"properties":{"bicycle":"yes","foot":"yes","highway":"path","layer":"-1","motor_vehicle":"private","name":"Schlagbrückenufer","segregated":"no","source:surface":"survey","surface":"asphalt"}},{"type":"Feature","id":"263062087","geometry":{"type":"LineString","coordinates":[[16.3766438,48.2123694],[16.3771853,48.212960899999985]]},"properties":{"bridge":"yes","cycleway:left":"opposite_lane","cycleway:right":"shared_lane","highway":"tertiary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Marienbrücke","oneway":"yes","oneway:bicycle":"no","sidewalk":"left","turn:lanes":"left|through"}},{"type":"Feature","id":"9801481","geometry":{"type":"LineString","coordinates":[[16.3766298,48.21234560000002],[16.3766438,48.2123694]]},"properties":{"cycleway:left":"opposite_lane","cycleway:right":"shared_lane","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Marienbrücke","oneway":"yes","oneway:bicycle":"no","turn:lanes":"left|through"}},{"type":"Feature","id":"31130930","geometry":{"type":"LineString","coordinates":[[16.3763674,48.21199250000001],[16.3764042,48.2120381]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","name":"Rotenturmstraße","oneway":"yes","sidewalk":"no","turn:lanes":"through|through|right|right"}},{"type":"Feature","id":"239945781","geometry":{"type":"LineString","coordinates":[[16.3764042,48.2120381],[16.3765745,48.21227619999999]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","name":"Rotenturmstraße","oneway":"yes","sidewalk":"left","turn:lanes":"through|through|right|right"}},{"type":"Feature","id":"229033665","geometry":{"type":"LineString","coordinates":[[16.3765745,48.21227619999999],[16.3766466,48.21224569999998]]},"properties":{"bicycle":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","turn:lanes":"left;through|none|none|none"}},{"type":"Feature","id":"7832222","geometry":{"type":"LineString","coordinates":[[16.3765745,48.21227619999999],[16.3766298,48.21234560000002]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Marienbrücke","turn:lanes":"left|through"}},{"type":"Feature","id":"229033666","geometry":{"type":"LineString","coordinates":[[16.3755732,48.21281920000001],[16.3758219,48.212657999999976],[16.3760872,48.21250950000001],[16.3762105,48.21243580000004],[16.3764864,48.2123153],[16.3765745,48.21227619999999]]},"properties":{"bicycle":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"left|through|through|through|through"}},{"type":"Feature","id":"354850544","geometry":{"type":"LineString","coordinates":[[16.3766466,48.21224569999998],[16.376684,48.21223149999997],[16.3767926,48.21218590000001],[16.3770756,48.2120755],[16.3774159,48.21196409999996],[16.3775516,48.21192940000003]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"left;through|none|none|none"}},{"type":"Feature","id":"437864416","geometry":{"type":"LineString","coordinates":[[16.3763364,48.21195940000001],[16.3763674,48.21199250000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Rotenturmstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"252813847","geometry":{"type":"LineString","coordinates":[[16.3761943,48.21181659999999],[16.3762705,48.21189229999999],[16.3763364,48.21195940000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Rotenturmstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"25950723","geometry":{"type":"LineString","coordinates":[[16.3751924,48.212129800000014],[16.3753103,48.21208569999999],[16.3757476,48.211950900000005],[16.3760815,48.21185170000001],[16.3761322,48.21183540000001],[16.3761943,48.21181659999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Franz-Josefs-Kai","sidewalk":"right"}},{"type":"Feature","id":"230626522","geometry":{"type":"LineString","coordinates":[[16.3830269,48.211924100000005],[16.382948,48.21156690000001]]},"properties":{"bicycle":"use_sidepath","bridge":"yes","description":"Erected 1951, Length 89 meter.","highway":"secondary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Aspernbrücke","turn:lanes:backward":"none|none|none","turn:lanes:forward":"left;through|through|through"}},{"type":"Feature","id":"47120687","geometry":{"type":"LineString","coordinates":[[16.3844721,48.21131439999999],[16.3833227,48.21141279999998],[16.3832206,48.211426200000005],[16.3831461,48.211443799999955],[16.3830924,48.211468800000006],[16.3830464,48.211491499999994]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Uraniastraße","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"351544193","geometry":{"type":"LineString","coordinates":[[16.3831338,48.2115129],[16.3832312,48.21146909999999],[16.3843721,48.21136960000001]]},"properties":{"bicycle":"designated","foot":"yes","footway":"sidewalk","highway":"cycleway","name":"Uraniastraße"}},{"type":"Feature","id":"358966127","geometry":{"type":"LineString","coordinates":[[16.3830464,48.211491499999994],[16.382948,48.21156690000001]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Uraniastraße","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"203868703","geometry":{"type":"LineString","coordinates":[[16.3833554,48.210912500000006],[16.3833995,48.2109662],[16.3834629,48.21108910000001],[16.3834967,48.21115399999999],[16.3835226,48.21119909999999],[16.3835361,48.2112262],[16.3835792,48.211306500000006]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Julius-Raab-Platz","old_name":"Aspernplatz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"102712070","geometry":{"type":"LineString","coordinates":[[16.382948,48.21156690000001],[16.3829052,48.2114694],[16.3828674,48.211365400000005]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes:backward":"1","lanes:forward":"3","lit":"yes","maxspeed":"50","name":"Aspernbrücke","oneway":"no","turn:lanes:backward":"none","turn:lanes:forward":"through;left|through|through"}},{"type":"Feature","id":"36561888","geometry":{"type":"LineString","coordinates":[[16.3828674,48.211365400000005],[16.3830069,48.21135430000001],[16.3832285,48.21133710000001],[16.3835792,48.211306500000006],[16.3843249,48.21124409999999],[16.3844497,48.211233899999996]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Uraniastraße","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"slight_left|slight_left|through;right"}},{"type":"Feature","id":"29068220","geometry":{"type":"LineString","coordinates":[[16.3828674,48.211365400000005],[16.3828346,48.211257200000006],[16.3828295,48.21122890000001],[16.3828232,48.21119469999999],[16.3827985,48.21108720000001]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Julius-Raab-Platz","old_name":"Aspernplatz","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"230626523","geometry":{"type":"LineString","coordinates":[[16.3810643,48.21142040000001],[16.3825067,48.21138740000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"5","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"left;through|through|through|right|right"}},{"type":"Feature","id":"236757554","geometry":{"type":"LineString","coordinates":[[16.3825067,48.21138740000001],[16.3826837,48.211376900000005],[16.3828674,48.211365400000005]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","placement":"middle_of:3","ref":"B227","sidewalk":"no","turn:lanes":"left|through|through|through"}},{"type":"Feature","id":"236757556","geometry":{"type":"LineString","coordinates":[[16.3825067,48.21138740000001],[16.3825858,48.211345199999954],[16.3826661,48.21128609999997],[16.3826896,48.21126430000001],[16.3827182,48.21123639999999],[16.3827535,48.21119959999996],[16.382768,48.2111754],[16.3827985,48.21108720000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"right|right"}},{"type":"Feature","id":"203868702","geometry":{"type":"LineString","coordinates":[[16.3829685,48.21076069999998],[16.3830778,48.21078640000002],[16.3831832,48.210820600000005],[16.3833002,48.210876600000034],[16.3833554,48.210912500000006]]},"properties":{"cycleway":"opposite","foot":"use_sidepath","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Julius-Raab-Platz","old_name":"Aspernplatz","oneway":"yes","oneway:bicycle":"no","sidewalk":"right","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"354021098","geometry":{"type":"LineString","coordinates":[[16.3827985,48.21108720000001],[16.3827788,48.2109586],[16.3827576,48.21084460000003],[16.3827379,48.2107647]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Julius-Raab-Platz","old_name":"Aspernplatz","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"25427884","geometry":{"type":"LineString","coordinates":[[16.3833554,48.210912500000006],[16.3833976,48.210886199999976],[16.383991,48.210516299999995],[16.3840806,48.2104602]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Reischachstraße","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473367765","geometry":{"type":"LineString","coordinates":[[16.3835497,48.211149199999994],[16.3834388,48.21092970000001],[16.3833976,48.210886199999976],[16.3832943,48.21081910000001],[16.3830885,48.21073000000001],[16.3830643,48.21071119999999],[16.3830559,48.210675699999996]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Julius-Raab-Platz"}},{"type":"Feature","id":"25427883","geometry":{"type":"LineString","coordinates":[[16.3843249,48.21124409999999],[16.3843445,48.211175800000035],[16.3843453,48.21114929999999],[16.3843421,48.21112120000001],[16.3842879,48.21083470000002],[16.384238,48.210554900000005],[16.3842254,48.21052550000002],[16.384204,48.21049639999998],[16.3841682,48.21047110000001],[16.3841364,48.21045860000004],[16.3841093,48.210457700000006],[16.3840806,48.2104602],[16.3840722,48.21042890000001],[16.3840452,48.21039289999999],[16.3840309,48.21033349999999],[16.383901,48.20984859999999],[16.3837874,48.209410100000014],[16.3838036,48.2093266],[16.3838506,48.2092567],[16.3838848,48.20918219999996],[16.3838919,48.20913920000001],[16.3838894,48.209091099999995],[16.3838735,48.20904860000002],[16.3834576,48.20847380000001]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Schallautzerstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"203868705","geometry":{"type":"LineString","coordinates":[[16.3825631,48.209088699999995],[16.3828129,48.21003089999999],[16.3829951,48.21072319999999],[16.3829685,48.21076069999998]]},"properties":{"cycleway":"opposite_lane","foot":"use_sidepath","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Stubenring","oneway":"yes","oneway:bicycle":"no","sidewalk":"right","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"203868704","geometry":{"type":"LineString","coordinates":[[16.3825591,48.21006],[16.3826542,48.210048099999995],[16.3828129,48.21003089999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stubenring","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9067293","geometry":{"type":"LineString","coordinates":[[16.382246,48.2098795],[16.3823298,48.209867599999995],[16.3824169,48.209858000000025],[16.3825036,48.20984820000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Georg-Coch-Platz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"190494840","geometry":{"type":"LineString","coordinates":[[16.3825476,48.21001519999999],[16.3824638,48.21002329999999],[16.3823733,48.21003060000001],[16.3822823,48.210037099999994]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Georg-Coch-Platz","oneway":"yes","sidewalk":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473363100","geometry":{"type":"LineString","coordinates":[[16.3822208,48.210980000000006],[16.3822534,48.210920999999985],[16.3823755,48.2108226],[16.3823942,48.210786900000016]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Julius-Raab-Platz"}},{"type":"Feature","id":"26565296","geometry":{"type":"LineString","coordinates":[[16.3822208,48.210980000000006],[16.3822892,48.210957500000006],[16.3824241,48.21085629999996],[16.3824722,48.210827600000044],[16.3825768,48.210794899999996],[16.3826561,48.210777399999984],[16.3827379,48.2107647],[16.3828541,48.210755000000006],[16.3829552,48.2107585],[16.3829685,48.21076069999998]]},"properties":{"foot":"use_sidepath","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Julius-Raab-Platz","old_name":"Aspernplatz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25427955","geometry":{"type":"LineString","coordinates":[[16.3835307,48.208449900000005],[16.3834576,48.20847380000001],[16.3825563,48.20878350000004],[16.3824664,48.20881510000001],[16.3823603,48.2088521],[16.3822333,48.20889439999999]]},"properties":{"cycleway:left":"track","cycleway:right":"lane","highway":"tertiary","maxspeed":"30","name":"Oskar-Kokoschka-Platz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25702238","geometry":{"type":"LineString","coordinates":[[16.3824664,48.20881510000001],[16.3825168,48.20890159999996],[16.3825631,48.209088699999995]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Stubenring","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"116531158","geometry":{"type":"LineString","coordinates":[[16.3812097,48.21068020000001],[16.3821422,48.21096979999996],[16.3822208,48.210980000000006]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Wiesingerstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"351541097","geometry":{"type":"LineString","coordinates":[[16.3822239,48.21004199999999],[16.3822104,48.21004429999999],[16.3820823,48.2100662],[16.3818558,48.210071399999975],[16.3813205,48.21008020000002]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Georg-Coch-Platz"}},{"type":"Feature","id":"116531155","geometry":{"type":"LineString","coordinates":[[16.3813205,48.2098838],[16.3818526,48.20987149999999],[16.3820637,48.20986049999999],[16.3821544,48.2098795],[16.3821839,48.20988569999997]]},"properties":{"access":"destination","highway":"service","lit":"yes","name":"Georg-Coch-Platz","oneway":"yes"}},{"type":"Feature","id":"10126619","geometry":{"type":"LineString","coordinates":[[16.3838932,48.208331499999986],[16.3838781,48.20833640000001]]},"properties":{"cycleway:left":"track","cycleway:right":"lane","highway":"tertiary","lcn":"yes","maxspeed":"30","name":"Marxergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"417857919","geometry":{"type":"LineString","coordinates":[[16.3838781,48.20833640000001],[16.3835307,48.208449900000005]]},"properties":{"bridge":"yes","cycleway:left":"track","cycleway:right":"lane","highway":"tertiary","layer":"1","lcn":"yes","maxspeed":"30","name":"Kleine Marxerbrücke","source:maxspeed":"AT:zone:30","wikipedia":"de:Kleine Marxerbrücke"}},{"type":"Feature","id":"13440416","geometry":{"type":"LineString","coordinates":[[16.3832425,48.20697050000004],[16.3840358,48.206708700000036]]},"properties":{"foot":"yes","highway":"pedestrian","name":"Sparefrohgasse","wikipedia":"de:Sparefroh"}},{"type":"Feature","id":"13439376","geometry":{"type":"LineString","coordinates":[[16.38435,48.2071411],[16.3835525,48.20739900000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Henslerstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"13439541","geometry":{"type":"LineString","coordinates":[[16.3838217,48.207814300000024],[16.3846554,48.207547000000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Stelzhamergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:urban","wikipedia":"de:Franz Stelzhamer"}},{"type":"Feature","id":"29076530","geometry":{"type":"LineString","coordinates":[[16.3849562,48.207966699999986],[16.3842566,48.20820410000002],[16.3841522,48.208239899999995],[16.3840155,48.2082867],[16.3838932,48.208331499999986]]},"properties":{"cycleway":"lane","highway":"tertiary","lcn":"yes","maxspeed":"50","name":"Marxergasse","source:maxspeed":"AT:urban","surface":"asphalt","turn:lanes:forward":"left|through|right","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"26421998","geometry":{"type":"LineString","coordinates":[[16.3824664,48.20881510000001],[16.3824148,48.20873169999999],[16.3815491,48.20788709999999],[16.3813939,48.20785789999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Stubenring","oneway":"yes","sidewalk":"left","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"190494842","geometry":{"type":"LineString","coordinates":[[16.3813939,48.20785789999999],[16.3811528,48.20761730000001]]},"properties":{"cycleway":"opposite_lane","foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Stubenring","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473367766","geometry":{"type":"LineString","coordinates":[[16.3830559,48.210675699999996],[16.3829993,48.21043639999999],[16.3828585,48.20993010000001],[16.3827753,48.2096334],[16.3827049,48.2093385],[16.3826211,48.20903510000002],[16.3825661,48.20888450000001],[16.3825956,48.20884509999999],[16.3825563,48.20878350000004],[16.3825265,48.208721800000035],[16.3824796,48.20870790000001],[16.3823542,48.20859039999999],[16.3819988,48.20824720000002],[16.381734,48.208000999999996],[16.3815918,48.20785889999999],[16.3814382,48.207806600000026],[16.3811935,48.20756979999999],[16.3811861,48.20746969999996],[16.3809703,48.207257]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Stubenring"}},{"type":"Feature","id":"203868701","geometry":{"type":"LineString","coordinates":[[16.3834576,48.20847380000001],[16.3833714,48.20840679999998],[16.3822721,48.20687860000001],[16.3822452,48.206841199999985],[16.3822204,48.20680669999999]]},"properties":{"highway":"pedestrian","name":"Fritz-Wotruba-Promenade"}},{"type":"Feature","id":"190494843","geometry":{"type":"LineString","coordinates":[[16.3811528,48.20761730000001],[16.3811297,48.207483800000006],[16.3809615,48.207309899999984],[16.3809264,48.2072771],[16.3808801,48.207233]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Stubenring","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"20179290","geometry":{"type":"LineString","coordinates":[[16.3822908,48.20672669999999],[16.3826359,48.20663300000001]]},"properties":{"bridge":"yes","highway":"tertiary","layer":"1","maxspeed":"30","name":"Stubenbrücke","source:maxspeed":"sign","wikipedia":"de:Stubenbrücke"}},{"type":"Feature","id":"38176653","geometry":{"type":"LineString","coordinates":[[16.3815004,48.206952],[16.3822908,48.20672669999999]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Weiskirchnerstraße","sidewalk":"both","source:maxspeed":"sign"}},{"type":"Feature","id":"4469959","geometry":{"type":"LineString","coordinates":[[16.3827379,48.2107647],[16.3827261,48.21071899999998],[16.3825591,48.21006],[16.3825476,48.21001519999999],[16.3825036,48.20984820000001],[16.3822657,48.20896970000001],[16.3822333,48.20889439999999],[16.3821652,48.20881850000001],[16.3815315,48.20820040000001],[16.3807166,48.2074001],[16.3806527,48.207336]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Stubenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"41923839","geometry":{"type":"LineString","coordinates":[[16.3806527,48.207336],[16.3804774,48.20716110000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Stubenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"8024769","geometry":{"type":"LineString","coordinates":[[16.3815004,48.206952],[16.3813388,48.20702219999998],[16.3812471,48.2070621],[16.3808801,48.207233],[16.3808206,48.2072584],[16.3807785,48.20727929999998],[16.3806527,48.207336]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Weiskirchnerstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"sign"}},{"type":"Feature","id":"8024758","geometry":{"type":"LineString","coordinates":[[16.3804774,48.20716110000001],[16.3806278,48.20712760000001],[16.3806769,48.2071162],[16.381052,48.2070301],[16.3811509,48.20700640000001],[16.3815004,48.206952]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Weiskirchnerstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"sign"}},{"type":"Feature","id":"8043949","geometry":{"type":"LineString","coordinates":[[16.3799431,48.2096755],[16.3798745,48.20962],[16.3798422,48.20955939999996],[16.3798239,48.2093107]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone","surface":"cobblestone"}},{"type":"Feature","id":"116531164","geometry":{"type":"LineString","coordinates":[[16.3799431,48.2096755],[16.3799389,48.20986690000001],[16.3799666,48.2103266],[16.3799855,48.21057250000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"8041117","geometry":{"type":"LineString","coordinates":[[16.3799666,48.2103266],[16.3812097,48.21068020000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Wiesingerstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"116531166","geometry":{"type":"LineString","coordinates":[[16.3799855,48.21057250000001],[16.3799919,48.21127559999999],[16.3799946,48.211318300000016],[16.3799919,48.21147759999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"473360182","geometry":{"type":"LineString","coordinates":[[16.3800824,48.21127559999999],[16.3806079,48.211239199999994],[16.3810962,48.21122439999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"354616025","geometry":{"type":"LineString","coordinates":[[16.3798767,48.208542800000004],[16.3799145,48.208592899999985],[16.379954,48.2087291]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"101971900","geometry":{"type":"LineString","coordinates":[[16.3797404,48.208688800000004],[16.3798012,48.208722800000004],[16.3798253,48.2087837],[16.3798239,48.2093107]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","sidewalk":"left","source:maxspeed":"AT:zone","surface":"cobblestone"}},{"type":"Feature","id":"8030144","geometry":{"type":"LineString","coordinates":[[16.3815315,48.20820040000001],[16.3814286,48.2082374],[16.3813888,48.20825049999999],[16.3812984,48.20828589999999],[16.3812329,48.2083068],[16.3806214,48.20850200000004],[16.379954,48.2087291]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Falkestraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"187676913","geometry":{"type":"LineString","coordinates":[[16.379954,48.2087291],[16.3799289,48.20890990000001],[16.3799593,48.20952859999997],[16.3799431,48.2096755]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","oneway:bicycle":"no","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"8030143","geometry":{"type":"LineString","coordinates":[[16.3799431,48.2096755],[16.3811345,48.20926920000002],[16.3818763,48.20901620000001],[16.3819737,48.20898270000001],[16.38207,48.20895020000003],[16.3821524,48.20892200000003],[16.3822333,48.20889439999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rosenbursenstraße","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"473360134","geometry":{"type":"LineString","coordinates":[[16.3800824,48.21127559999999],[16.3799919,48.21127559999999],[16.3798878,48.211282900000015],[16.3798424,48.21128609999997],[16.379369,48.2113296]]},"properties":{"foot":"yes","footway":"sidewalk","highway":"footway","lit":"yes","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"8024749","geometry":{"type":"LineString","coordinates":[[16.37912,48.211566800000014],[16.3793192,48.21146469999999],[16.3793585,48.211431800000014],[16.3793629,48.211425899999995],[16.3793661,48.211417600000004],[16.3793691,48.21141069999999],[16.3793706,48.21140199999999],[16.3793718,48.211350900000014],[16.379369,48.2113296]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Postgasse","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"30018147","geometry":{"type":"LineString","coordinates":[[16.3789696,48.2092054],[16.3790084,48.20931339999996],[16.3790101,48.209412300000025],[16.3789724,48.20947150000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Postgasse","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"101971899","geometry":{"type":"LineString","coordinates":[[16.3798239,48.2093107],[16.3789696,48.2092054]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Barbaragasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone","surface":"cobblestone"}},{"type":"Feature","id":"12327855","geometry":{"type":"LineString","coordinates":[[16.3792412,48.210689100000025],[16.3798327,48.21056709999999],[16.3799855,48.21057250000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Auwinkel","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"229033715","geometry":{"type":"LineString","coordinates":[[16.3787075,48.21165719999999],[16.3787742,48.21164189999999]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no"}},{"type":"Feature","id":"230483955","geometry":{"type":"LineString","coordinates":[[16.3787742,48.21164189999999],[16.3788209,48.211720000000014],[16.3788613,48.2117897]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","maxspeed":"50","name":"Schwedenbrücke","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"230483962","geometry":{"type":"LineString","coordinates":[[16.3787369,48.21181250000001],[16.3787086,48.21175149999999],[16.3786681,48.21166580000002]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","maxspeed":"50","name":"Schwedenbrücke","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"473322436","geometry":{"type":"LineString","coordinates":[[16.3789517,48.21177430000003],[16.3789477,48.21176539999999],[16.3789378,48.21174339999999],[16.3789184,48.21169739999996]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Schwedenbrücke"}},{"type":"Feature","id":"354021083","geometry":{"type":"LineString","coordinates":[[16.3787742,48.21164189999999],[16.3788761,48.2116178],[16.37912,48.211566800000014],[16.3794172,48.211523099999994],[16.3796896,48.2114947],[16.3798993,48.21148149999999],[16.3799919,48.21147759999997],[16.3801776,48.211467700000014],[16.3810643,48.21142040000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no"}},{"type":"Feature","id":"192914507","geometry":{"type":"LineString","coordinates":[[16.3786623,48.20822580000001],[16.3788053,48.20817929999998]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"30","name":"Bäckerstraße","note":"fahrverbot ausgen. räder, lieferverkehr, anrainer","sidewalk":"both","source:maxspeed":"AT:zone:30","tunnel":"building_passage","vehicle":"delivery"}},{"type":"Feature","id":"8043951","geometry":{"type":"LineString","coordinates":[[16.3788693,48.20907729999999],[16.379005,48.209037300000006],[16.3796039,48.208707499999974],[16.3796767,48.208681799999994],[16.3797404,48.208688800000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Predigergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone","surface":"cobblestone"}},{"type":"Feature","id":"359891028","geometry":{"type":"LineString","coordinates":[[16.3789724,48.20947150000001],[16.3789303,48.209557700000005],[16.3789132,48.20964759999998],[16.3788904,48.209831199999996]]},"properties":{"fixme":"ist das stück wirklich wohnstraße?","highway":"residential","lit":"yes","maxspeed":"30","name":"Postgasse","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"346399778","geometry":{"type":"LineString","coordinates":[[16.3788904,48.209831199999996],[16.3789139,48.209873699999974],[16.3789154,48.20999449999999],[16.3789121,48.21004909999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Postgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"352684735","geometry":{"type":"LineString","coordinates":[[16.379369,48.2113296],[16.3793303,48.21118010000001],[16.3792751,48.210990899999985],[16.3792405,48.2108513],[16.3792406,48.2108212],[16.3792412,48.210689100000025],[16.3792234,48.21053230000001],[16.3789777,48.2101562],[16.3789423,48.2101016],[16.3789121,48.21004909999999]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Postgasse","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"26420444","geometry":{"type":"LineString","coordinates":[[16.3824722,48.210827600000044],[16.3824675,48.210771900000026],[16.3823779,48.210411100000016],[16.3822944,48.21007470000001],[16.3822823,48.210037099999994],[16.382246,48.2098795],[16.3822359,48.2098383],[16.3820125,48.2090714],[16.3819737,48.20898270000001],[16.3819221,48.20890830000002],[16.3812984,48.20828589999999],[16.3804942,48.20750290000001],[16.380424,48.20743959999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Stubenring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"473363081","geometry":{"type":"LineString","coordinates":[[16.3823942,48.210786900000016],[16.3823191,48.21050539999999],[16.3822995,48.21042130000001],[16.3822188,48.210075399999994],[16.3822104,48.21004429999999],[16.3822096,48.21004189999999],[16.3821566,48.20988590000002],[16.3821544,48.2098795],[16.3821407,48.20983659999999],[16.3820836,48.20960389999996],[16.3819958,48.20928079999999],[16.3819341,48.209106599999984],[16.3818763,48.20901620000001],[16.3818258,48.208930200000026],[16.3817987,48.20888400000001],[16.3813863,48.20846219999996],[16.3812329,48.2083068],[16.3808371,48.207929500000034],[16.3804213,48.20752600000003]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Stubenring"}},{"type":"Feature","id":"8034529","geometry":{"type":"LineString","coordinates":[[16.3810643,48.21142040000001],[16.3810831,48.211327299999994],[16.3810872,48.21130169999998],[16.3810948,48.21124839999999],[16.3810962,48.21122439999999],[16.3812097,48.21068020000001],[16.3812638,48.21035090000001],[16.3813175,48.210102199999994],[16.3813205,48.21008020000002],[16.381331,48.20999380000001],[16.3813205,48.2098838],[16.3813098,48.2098508],[16.381278,48.209742000000006],[16.3811345,48.20926920000002],[16.3806214,48.20850200000004],[16.3798957,48.207675600000016]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Biberstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"44028854","geometry":{"type":"LineString","coordinates":[[16.3798604,48.20731710000001],[16.3801214,48.207239500000014],[16.3802063,48.20721760000001]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Dr.-Karl-Lueger-Platz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone","surface":"asphalt"}},{"type":"Feature","id":"26421922","geometry":{"type":"LineString","coordinates":[[16.380424,48.20743959999999],[16.3803157,48.20732910000001]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Stubenring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"8034530","geometry":{"type":"LineString","coordinates":[[16.3806527,48.207336],[16.3804892,48.207410100000004],[16.380424,48.20743959999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dr.-Karl-Lueger-Platz","oneway":"yes","sidewalk":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"38176647","geometry":{"type":"LineString","coordinates":[[16.3802063,48.20721760000001],[16.3804774,48.20716110000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Dr.-Karl-Lueger-Platz","oneway":"yes","sidewalk":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"265058774","geometry":{"type":"LineString","coordinates":[[16.3803157,48.20732910000001],[16.3802063,48.20721760000001]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Stubenring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"30018143","geometry":{"type":"LineString","coordinates":[[16.3793778,48.20793170000002],[16.3795701,48.208167300000014],[16.3798767,48.208542800000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","oneway:bicycle":"no","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"30018146","geometry":{"type":"LineString","coordinates":[[16.3792423,48.20799379999997],[16.3792791,48.207976900000006]]},"properties":{"bicycle":"yes","foot":"yes","highway":"cycleway","name":"Bäckerstraße"}},{"type":"Feature","id":"104939933","geometry":{"type":"LineString","coordinates":[[16.3792423,48.20799379999997],[16.3790753,48.20807020000001]]},"properties":{"bicycle":"yes","foot":"yes","highway":"cycleway","lit":"yes","name":"Bäckerstraße","sidewalk":"both","tunnel":"building_passage"}},{"type":"Feature","id":"192247779","geometry":{"type":"LineString","coordinates":[[16.3792791,48.207976900000006],[16.3793778,48.20793170000002]]},"properties":{"highway":"cycleway","name":"Bäckerstraße"}},{"type":"Feature","id":"285559321","geometry":{"type":"LineString","coordinates":[[16.3790449,48.20756829999999],[16.3790587,48.20758630000003],[16.3790795,48.207647200000025],[16.3792384,48.207795900000036],[16.3793379,48.20788909999996],[16.3793778,48.20793170000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Dr.-Karl-Lueger-Platz","surface":"sett"}},{"type":"Feature","id":"38176665","geometry":{"type":"LineString","coordinates":[[16.380424,48.20743959999999],[16.3803556,48.20747059999999],[16.3798957,48.207675600000016],[16.3794238,48.20788590000001],[16.3793778,48.20793170000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dr.-Karl-Lueger-Platz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"192251105","geometry":{"type":"LineString","coordinates":[[16.3790954,48.207553899999965],[16.3796653,48.20737750000001],[16.3798604,48.20731710000001]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Dr.-Karl-Lueger-Platz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone","surface":"asphalt"}},{"type":"Feature","id":"30018145","geometry":{"type":"LineString","coordinates":[[16.3788053,48.20817929999998],[16.3790753,48.20807020000001]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"30","name":"Bäckerstraße","noexit":"yes","note":"fahrverbot ausgen. räder, lieferverkehr, anrainer","sidewalk":"both","source:maxspeed":"AT:zone:30","vehicle":"delivery"}},{"type":"Feature","id":"26565201","geometry":{"type":"LineString","coordinates":[[16.3787531,48.207653600000015],[16.3790449,48.20756829999999],[16.3790954,48.207553899999965]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Wollzeile","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone","tourist_bus":"no","traffic_calming":"table"}},{"type":"Feature","id":"191072102","geometry":{"type":"LineString","coordinates":[[16.3799645,48.20699960000002],[16.379632,48.206669999999974]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Parkring","sidewalk":"right"}},{"type":"Feature","id":"229033716","geometry":{"type":"LineString","coordinates":[[16.3775516,48.21192940000003],[16.378161,48.21177250000002],[16.3785219,48.21169710000004],[16.3786681,48.21166580000002],[16.3787075,48.21165719999999]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"left|through|through|through|through"}},{"type":"Feature","id":"348882575","geometry":{"type":"LineString","coordinates":[[16.3752739,48.211720299999996],[16.3752663,48.211997499999995],[16.3753103,48.21208569999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Rabensteig","sidewalk":"both"}},{"type":"Feature","id":"44005502","geometry":{"type":"LineString","coordinates":[[16.3760225,48.21162429999998],[16.3761639,48.211783],[16.3761943,48.21181659999999]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Rotenturmstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"185849935","geometry":{"type":"LineString","coordinates":[[16.3780152,48.21135799999999],[16.3782843,48.21132940000001],[16.3784089,48.211307799999986],[16.3784735,48.211295699999994],[16.3785363,48.211284000000035]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Schwedenplatz"}},{"type":"Feature","id":"347015852","geometry":{"type":"LineString","coordinates":[[16.3789724,48.20947150000001],[16.3788783,48.209507599999995],[16.3787759,48.20954599999999],[16.3787007,48.2095539],[16.3786313,48.20954760000001]]},"properties":{"highway":"living_street","name":"Schönlaterngasse","note":"n.b.: ist hier keine Einbahn","sidewalk":"left"}},{"type":"Feature","id":"29250956","geometry":{"type":"LineString","coordinates":[[16.3783052,48.2109308],[16.3782376,48.21094870000002],[16.3782123,48.21095439999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hafnersteig","noexit":"yes","sidewalk":"right"}},{"type":"Feature","id":"347034704","geometry":{"type":"LineString","coordinates":[[16.3793303,48.21118010000001],[16.3792563,48.21118849999999],[16.3787028,48.21125140000001],[16.3786164,48.2112683],[16.3785363,48.211284000000035]]},"properties":{"bicycle":"delivery","highway":"service","horse":"delivery","lit":"yes","maxheight":"2.6","motor_vehicle":"delivery","name":"Schwedenplatz","note":"Allgemeines Fahrverbot außer Zustellung","surface":"paved","vehicle":"delivery"}},{"type":"Feature","id":"29250955","geometry":{"type":"LineString","coordinates":[[16.3771298,48.211169100000006],[16.3770835,48.21153240000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Hafnersteig"}},{"type":"Feature","id":"133677621","geometry":{"type":"LineString","coordinates":[[16.3768259,48.2122631],[16.3769791,48.212201300000004],[16.3772328,48.21211640000001],[16.377511,48.212031499999995],[16.3777925,48.21196539999997],[16.3783375,48.211838099999994],[16.3785633,48.211795499999994],[16.3786148,48.21177990000004],[16.3787086,48.21175149999999],[16.378757,48.211736900000005],[16.3788209,48.211720000000014],[16.3789184,48.21169739999996],[16.3789441,48.211691400000035],[16.3790974,48.211670999999996],[16.3792764,48.2116599],[16.3794346,48.21165780000001],[16.3796825,48.2116331],[16.3799048,48.211611000000005],[16.3799896,48.2115833],[16.3805156,48.211558300000036],[16.3809439,48.21153939999999],[16.3811816,48.21152710000001],[16.3815598,48.21151370000001],[16.3823151,48.21151929999999],[16.3825372,48.211533799999984],[16.3826426,48.21152459999999],[16.3827339,48.211501]]},"properties":{"foot":"yes","footway":"sidewalk","highway":"cycleway","name":"Franz-Josefs-Kai","segregated":"no"}},{"type":"Feature","id":"26565476","geometry":{"type":"LineString","coordinates":[[16.3769443,48.21008130000001],[16.3774278,48.2105426]]},"properties":{"highway":"living_street","name":"Wolfengasse"}},{"type":"Feature","id":"346403315","geometry":{"type":"LineString","coordinates":[[16.3782123,48.21095439999999],[16.3778194,48.211054399999995],[16.3771298,48.211169100000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hafnersteig","noexit":"yes","sidewalk":"right","surface":"cobblestone"}},{"type":"Feature","id":"25950762","geometry":{"type":"LineString","coordinates":[[16.3779148,48.2103644],[16.3779551,48.210419599999994],[16.3781542,48.2106876],[16.378208,48.21077270000001],[16.3783052,48.2109308],[16.3784032,48.21108850000002],[16.3784187,48.21111379999999],[16.3785363,48.211284000000035],[16.3786076,48.211391100000014],[16.378628,48.2114225],[16.378698,48.21151630000003],[16.3787742,48.21164189999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Laurenzerberg","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"186174716","geometry":{"type":"LineString","coordinates":[[16.3771561,48.211098100000015],[16.3771597,48.2110467]]},"properties":{"highway":"steps","incline":"up","lit":"yes","name":"Hafnersteig","step_count":"20"}},{"type":"Feature","id":"26565479","geometry":{"type":"LineString","coordinates":[[16.3777177,48.20994289999999],[16.377818,48.21003509999997],[16.3780515,48.2103166]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"30","name":"Drachengasse","noexit":"yes","note":"living_street ist zwar nicht beschildert, aber am besten zutreffend","sidewalk":"no"}},{"type":"Feature","id":"9225239","geometry":{"type":"LineString","coordinates":[[16.3789121,48.21004909999999],[16.37882,48.210079500000006],[16.3786473,48.2101222],[16.3783096,48.210222199999976],[16.3780515,48.2103166],[16.3779148,48.2103644]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fleischmarkt","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"29067496","geometry":{"type":"LineString","coordinates":[[16.3757114,48.211275400000005],[16.3757857,48.21124700000004],[16.3760402,48.21114969999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Steyrerhof"}},{"type":"Feature","id":"4952926","geometry":{"type":"LineString","coordinates":[[16.3758148,48.21139170000001],[16.375301,48.211545099999995]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Rotenturmstraße"}},{"type":"Feature","id":"29067451","geometry":{"type":"LineString","coordinates":[[16.376548,48.212535599999995],[16.3765731,48.2124809],[16.3770968,48.21227329999999],[16.3773433,48.21214649999999],[16.3779985,48.2119625],[16.3783318,48.2119026],[16.3789094,48.211823100000004],[16.3790466,48.21179900000001],[16.3793003,48.21178079999996],[16.3801316,48.211688400000014],[16.3806346,48.21166089999997],[16.3810459,48.21164039999999],[16.3812668,48.21163229999999],[16.3819869,48.21162150000001],[16.3826832,48.2116523],[16.3832287,48.21170349999997],[16.3833574,48.21165740000001],[16.3836325,48.21169029999999],[16.3838693,48.211713],[16.3840299,48.21171079999999],[16.3841682,48.2116824],[16.3842525,48.211646900000005],[16.3843233,48.21159499999996],[16.3843816,48.211533],[16.3844006,48.2114775],[16.3843843,48.211414700000006],[16.3843721,48.21136960000001]]},"properties":{"bicycle":"designated","foot":"yes","highway":"cycleway","layer":"-1","lcn":"yes","name":"Rotenturmufer","segregated":"no","source:surface":"survey","surface":"asphalt"}},{"type":"Feature","id":"352166817","geometry":{"type":"LineString","coordinates":[[16.3761639,48.211783],[16.376199,48.21177199999997],[16.3762262,48.21176379999997],[16.3766742,48.2116278],[16.376851,48.21157419999997],[16.3769142,48.211555000000004],[16.3770835,48.21153240000001],[16.377553,48.21144459999999],[16.3779831,48.2113641],[16.3780152,48.21135799999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"25950771","geometry":{"type":"LineString","coordinates":[[16.3758246,48.21042910000003],[16.3758774,48.21039110000001],[16.376114,48.21028050000001],[16.3762661,48.21019089999996]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Grashofgasse","noexit":"yes","sidewalk":"left","surface":"asphalt"}},{"type":"Feature","id":"4952869","geometry":{"type":"LineString","coordinates":[[16.3754516,48.21095819999999],[16.3755278,48.210935800000016],[16.3758682,48.210813400000006],[16.376031,48.21078410000001],[16.3770114,48.21065620000002],[16.3770729,48.210650999999984],[16.3771996,48.21062749999999],[16.3772848,48.21059579999999],[16.3774278,48.2105426],[16.3779148,48.2103644]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fleischmarkt","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"25950770","geometry":{"type":"LineString","coordinates":[[16.376031,48.21078410000001],[16.3760051,48.21071810000001],[16.3758246,48.21042910000003]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Köllnerhofgasse","sidewalk":"both"}},{"type":"Feature","id":"9225440","geometry":{"type":"LineString","coordinates":[[16.3770729,48.210650999999984],[16.3772089,48.2107383],[16.3772287,48.21077330000003],[16.3771994,48.21085640000001],[16.3771414,48.2109744],[16.3771146,48.21103179999997],[16.3770755,48.211071900000036],[16.3759943,48.2114866],[16.3759236,48.21151370000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Griechengasse","surface":"cobblestone"}},{"type":"Feature","id":"116531174","geometry":{"type":"LineString","coordinates":[[16.3758246,48.21042910000003],[16.37526,48.20982539999997]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Köllnerhofgasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"26420460","geometry":{"type":"LineString","coordinates":[[16.3785664,48.208240200000006],[16.3785623,48.20818339999997],[16.3784324,48.20781410000001],[16.378412,48.20775020000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Postgasse","oneway":"yes","sidewalk":"left","source:maxspeed":"AT:zone","surface":"asphalt"}},{"type":"Feature","id":"30018144","geometry":{"type":"LineString","coordinates":[[16.3785664,48.208240200000006],[16.3786623,48.20822580000001]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"30","name":"Bäckerstraße","note":"fahrverbot ausgen. räder, lieferverkehr, anrainer","sidewalk":"both","source:maxspeed":"AT:zone:30","vehicle":"delivery"}},{"type":"Feature","id":"26420450","geometry":{"type":"LineString","coordinates":[[16.3785664,48.208240200000006],[16.3785278,48.20837280000001],[16.3785395,48.208502299999964],[16.3786032,48.20869790000003],[16.3787142,48.208886500000006],[16.3788693,48.20907729999999],[16.3789696,48.2092054]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Postgasse","sidewalk":"both","source:maxspeed":"AT:zone","surface":"asphalt"}},{"type":"Feature","id":"9225349","geometry":{"type":"LineString","coordinates":[[16.3788904,48.209831199999996],[16.3788014,48.209738200000004],[16.3786313,48.20954760000001],[16.3784775,48.209388700000005],[16.3783328,48.20924260000001],[16.3782731,48.209234700000025]]},"properties":{"highway":"living_street","lit":"yes","name":"Schönlaterngasse","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"7830308","geometry":{"type":"LineString","coordinates":[[16.3784863,48.20702829999999],[16.3789988,48.2075145],[16.3790313,48.20754999999997],[16.3790449,48.20756829999999]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Stubenbastei","surface":"sett"}},{"type":"Feature","id":"8034540","geometry":{"type":"LineString","coordinates":[[16.3773043,48.208517899999975],[16.3773261,48.208546600000034],[16.3773023,48.20864979999999],[16.3773537,48.2087142],[16.3774619,48.20884610000002]]},"properties":{"highway":"living_street","lit":"yes","name":"Dr.-Ignaz-Seipel-Platz","name:de":"Doktor Ignaz Seipel Platz","old_name":"Universitätsplatz","surface":"cobblestone"}},{"type":"Feature","id":"116761140","geometry":{"type":"LineString","coordinates":[[16.3774432,48.208613000000014],[16.3775097,48.2085884]]},"properties":{"highway":"living_street","lit":"yes","name":"Bäckerstraße","sidewalk":"right","tunnel":"building_passage"}},{"type":"Feature","id":"39314766","geometry":{"type":"LineString","coordinates":[[16.3773023,48.20864979999999],[16.3774432,48.208613000000014]]},"properties":{"highway":"living_street","lit":"yes","name":"Bäckerstraße","surface":"cobblestone"}},{"type":"Feature","id":"26565439","geometry":{"type":"LineString","coordinates":[[16.3773265,48.20898030000001],[16.3773493,48.209004100000044],[16.3773571,48.20901219999999],[16.3775491,48.209224800000015],[16.3777223,48.2094348],[16.3777255,48.20943829999999],[16.3777376,48.20945119999999]]},"properties":{"access":"no","fixme":"recheck periodically","highway":"footway","lit":"yes","name":"Jesuitengasse","note":"Derzeit durch Zäune abgesperrt, Bauschutt/Abbruchschutt (oder Material, das so aussieht) liegt herum.","note:en":"Currently fenced off. Apparent construction or destruction detritus lies around.","surface":"cobblestone"}},{"type":"Feature","id":"116761145","geometry":{"type":"LineString","coordinates":[[16.3778758,48.20845249999999],[16.3779222,48.20843529999999]]},"properties":{"highway":"living_street","lit":"yes","name":"Bäckerstraße","sidewalk":"right","tunnel":"building_passage"}},{"type":"Feature","id":"116761144","geometry":{"type":"LineString","coordinates":[[16.3775097,48.2085884],[16.3778758,48.20845249999999]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Bäckerstraße","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"43364710","geometry":{"type":"LineString","coordinates":[[16.3774491,48.2080292],[16.3775605,48.20820259999999]]},"properties":{"highway":"pedestrian","name":"Riemergasse","surface":"concrete"}},{"type":"Feature","id":"116761148","geometry":{"type":"LineString","coordinates":[[16.3779222,48.20843529999999],[16.3782139,48.208329700000036],[16.3782871,48.208311899999984],[16.3785664,48.208240200000006]]},"properties":{"highway":"living_street","lit":"yes","name":"Bäckerstraße","sidewalk":"right"}},{"type":"Feature","id":"192797122","geometry":{"type":"LineString","coordinates":[[16.3771315,48.2086985],[16.3773023,48.20864979999999]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Bäckerstraße","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"25375537","geometry":{"type":"LineString","coordinates":[[16.3753556,48.20872880000002],[16.3756628,48.20894470000002],[16.3759977,48.20917080000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Essiggasse","surface":"asphalt"}},{"type":"Feature","id":"29066138","geometry":{"type":"LineString","coordinates":[[16.3774619,48.20884610000002],[16.3773811,48.208947300000005],[16.3773265,48.20898030000001],[16.3767104,48.20924209999998],[16.3766792,48.20925590000002],[16.3766157,48.209282900000034],[16.3765493,48.209311799999995],[16.3761913,48.20947389999998],[16.3761253,48.20950490000001],[16.375725,48.209693000000016],[16.3755761,48.209747100000016],[16.37526,48.20982539999997]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Sonnenfelsgasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"26565515","geometry":{"type":"LineString","coordinates":[[16.3763191,48.20903290000001],[16.3766157,48.209282900000034]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Windhaaggasse","surface":"asphalt"}},{"type":"Feature","id":"346399780","geometry":{"type":"LineString","coordinates":[[16.3782731,48.209234700000025],[16.3777376,48.20945119999999],[16.3775582,48.209510999999964],[16.3774325,48.20953530000003],[16.3773649,48.209541099999996],[16.3772867,48.2095396],[16.3772,48.2095181]]},"properties":{"attraction":"history;shooting_location","description:en":"Famous, small, winding alley in the Vienna city centre depected on stamps and coins. (Source: wikipedia:de)","highway":"living_street","lit":"yes","maxspeed":"5","name":"Schönlaterngasse","oneway":"yes","sidewalk":"right","tourism":"attraction","wikipedia":"de:Schönlaterngasse","wikipedia:en":"Schönlaterngasse"}},{"type":"Feature","id":"346399779","geometry":{"type":"LineString","coordinates":[[16.3772,48.2095181],[16.3770085,48.20943009999999],[16.3767104,48.20924209999998]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Schönlaterngasse","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"8072989","geometry":{"type":"LineString","coordinates":[[16.3771326,48.207622600000036],[16.3771859,48.207683600000024],[16.3774092,48.20797809999999],[16.3774491,48.2080292]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Riemergasse","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"26565618","geometry":{"type":"LineString","coordinates":[[16.3771326,48.207622600000036],[16.3770876,48.207567599999976],[16.3767388,48.207161600000035]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Riemergasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"8034547","geometry":{"type":"LineString","coordinates":[[16.3767388,48.207161600000035],[16.3768556,48.20710890000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Jakobergasse","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"345873399","geometry":{"type":"LineString","coordinates":[[16.375822,48.2073872],[16.3760478,48.207697699999954],[16.3762798,48.20799650000001]]},"properties":{"highway":"service","lit":"yes","name":"Kumpfgasse","sidewalk":"no","surface":"cobblestone","vehicle":"destination"}},{"type":"Feature","id":"471847010","geometry":{"type":"LineString","coordinates":[[16.3840978,48.20586900000001],[16.3839819,48.205905599999994]]},"properties":{"covered":"yes","highway":"footway","indoor":"yes","name":"Raiffeisen Passage","tunnel":"building_passage"}},{"type":"Feature","id":"471847011","geometry":{"type":"LineString","coordinates":[[16.3839819,48.205905599999994],[16.3841022,48.2060735]]},"properties":{"covered":"yes","highway":"footway","indoor":"yes","name":"Raiffeisen Passage","tunnel":"building_passage"}},{"type":"Feature","id":"481469024","geometry":{"type":"LineString","coordinates":[[16.3837509,48.206321900000006],[16.384184,48.2061932],[16.3842279,48.20618009999998]]},"properties":{"bicycle":"yes","bus":"yes","highway":"pedestrian","lit":"yes","maxspeed":"50","motor_vehicle":"no","name":"Landstraßer Hauptstraße","surface":"concrete"}},{"type":"Feature","id":"13440005","geometry":{"type":"LineString","coordinates":[[16.3837509,48.206321900000006],[16.3838132,48.206406500000014],[16.3839977,48.206657199999995],[16.3840358,48.206708700000036],[16.38435,48.2071411]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Gigergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"189184275","geometry":{"type":"LineString","coordinates":[[16.3839801,48.20568299999999],[16.3840978,48.20586900000001]]},"properties":{"covered":"yes","highway":"footway","indoor":"yes","name":"Raiffeisen Passage","tunnel":"building_passage"}},{"type":"Feature","id":"312729489","geometry":{"type":"LineString","coordinates":[[16.3844352,48.205776199999974],[16.3841175,48.20586370000001]]},"properties":{"highway":"footway","indoor":"yes","level":"0","name":"W3"}},{"type":"Feature","id":"493689935","geometry":{"type":"LineString","coordinates":[[16.3841175,48.20586370000001],[16.3840978,48.20586900000001]]},"properties":{"covered":"yes","highway":"footway","indoor":"yes","name":"Raiffeisen Passage","tunnel":"building_passage"}},{"type":"Feature","id":"13439381","geometry":{"type":"LineString","coordinates":[[16.38285,48.20657109999999],[16.3829843,48.2066461],[16.3830264,48.206666299999995],[16.3832425,48.20697050000004],[16.3835525,48.20739900000001],[16.3836718,48.207647399999985]]},"properties":{"highway":"residential","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"318007486","geometry":{"type":"LineString","coordinates":[[16.3827453,48.206603200000046],[16.38285,48.20657109999999]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Landstraßer Hauptstraße"}},{"type":"Feature","id":"101272246","geometry":{"type":"LineString","coordinates":[[16.3849876,48.211056299999996],[16.3848481,48.210419400000006],[16.3847211,48.209778099999994],[16.3846535,48.2094089],[16.3845578,48.209111199999995],[16.3843093,48.20868999999999],[16.3840765,48.20837039999998],[16.3840155,48.2082867],[16.3839611,48.2082173],[16.3828121,48.206692299999986],[16.3827453,48.206603200000046]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"417857940","geometry":{"type":"LineString","coordinates":[[16.3826359,48.20663300000001],[16.3826692,48.20662400000003],[16.3827453,48.206603200000046]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Landstraßer Hauptstraße","source:maxspeed":"sign"}},{"type":"Feature","id":"13431697","geometry":{"type":"LineString","coordinates":[[16.38285,48.20657109999999],[16.3829068,48.206662300000005],[16.3834698,48.2074226],[16.3836718,48.207647399999985],[16.3838217,48.207814300000024],[16.3840991,48.20817130000003],[16.3841522,48.208239899999995],[16.3842208,48.208327],[16.3844466,48.20861360000001],[16.3846626,48.209089000000034],[16.3847138,48.2092614],[16.3847565,48.20940540000001],[16.3848379,48.20977340000002],[16.3849373,48.21023669999997],[16.3849865,48.21041869999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"26564982","geometry":{"type":"LineString","coordinates":[[16.38285,48.20657109999999],[16.3830156,48.20652340000001],[16.3837509,48.206321900000006]]},"properties":{"highway":"residential","maxspeed":"50","name":"Landstraßer Hauptstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"67571241","geometry":{"type":"LineString","coordinates":[[16.3812064,48.20631689999999],[16.3811766,48.206222499999996]]},"properties":{"bridge":"yes","foot":"yes","highway":"footway","layer":"1","name":"Elfriede-Gerstl-Steg"}},{"type":"Feature","id":"23649016","geometry":{"type":"LineString","coordinates":[[16.3819055,48.20562109999997],[16.3815708,48.2057308]]},"properties":{"bicycle":"no","bridge":"yes","foot":"yes","highway":"footway","layer":"1","name":"Kleine Ungarbrücke","wikidata":"Q1746540","wikipedia":"de:Kleine Ungarbrücke"}},{"type":"Feature","id":"378750512","geometry":{"type":"LineString","coordinates":[[16.3836854,48.20442459999998],[16.3841501,48.20435549999999]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"left|slight_right|right","view":"open"}},{"type":"Feature","id":"378750516","geometry":{"type":"LineString","coordinates":[[16.3839403,48.204455800000005],[16.3836854,48.20442459999998]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"left|left","view":"open"}},{"type":"Feature","id":"13430499","geometry":{"type":"LineString","coordinates":[[16.3841701,48.204449100000005],[16.3839403,48.204455800000005]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"3","layer":"1","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"left|left|right","view":"open"}},{"type":"Feature","id":"378750513","geometry":{"type":"LineString","coordinates":[[16.3839403,48.204455800000005],[16.3836036,48.20451190000003]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"1","layer":"1","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"right","view":"open"}},{"type":"Feature","id":"227682739","geometry":{"type":"LineString","coordinates":[[16.3834316,48.20433489999999],[16.3835521,48.20438680000004],[16.3836854,48.20442459999998]]},"properties":{"bridge":"yes","highway":"secondary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","view":"open"}},{"type":"Feature","id":"227682738","geometry":{"type":"LineString","coordinates":[[16.3834361,48.2044425],[16.3836854,48.20442459999998]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"4","lanes:backward":"2","lanes:forward":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"no","surface":"asphalt","turn:lanes:backward":"left|left","view":"open"}},{"type":"Feature","id":"227682737","geometry":{"type":"LineString","coordinates":[[16.3832341,48.20447250000001],[16.3832579,48.20461560000001]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"378750515","geometry":{"type":"LineString","coordinates":[[16.3836036,48.20451190000003],[16.3834402,48.204539600000004]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"right|right","view":"open"}},{"type":"Feature","id":"127061657","geometry":{"type":"LineString","coordinates":[[16.3834402,48.204539600000004],[16.3834212,48.204542300000014],[16.3833595,48.2045526],[16.3833178,48.20456469999999],[16.3832924,48.204581700000006],[16.3832579,48.20461560000001]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"right|right","view":"open"}},{"type":"Feature","id":"227682741","geometry":{"type":"LineString","coordinates":[[16.3830986,48.20460670000003],[16.3831274,48.20453979999999],[16.3831469,48.20451369999998],[16.3831844,48.204488999999995],[16.3832341,48.20447250000001]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","view":"open"}},{"type":"Feature","id":"5105738","geometry":{"type":"LineString","coordinates":[[16.3827453,48.206603200000046],[16.3826654,48.206486900000016],[16.3824501,48.206185000000005],[16.3824034,48.206085900000005],[16.3823743,48.205929200000014],[16.3824109,48.20570090000001],[16.3825451,48.20551649999996],[16.3829093,48.20524230000001],[16.3830852,48.205005400000005],[16.38312,48.20488790000002],[16.3831198,48.204769],[16.3831056,48.20466160000001],[16.3831011,48.20463319999996],[16.3830986,48.20460670000003]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Stadtpark","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"13431689","geometry":{"type":"LineString","coordinates":[[16.3832579,48.20461560000001],[16.3832611,48.2046335],[16.3832676,48.20480029999996],[16.3832616,48.20487510000001],[16.3832151,48.205044800000024],[16.383138,48.20515259999999],[16.3827155,48.20552029999999],[16.3825823,48.205679299999986],[16.3825109,48.20583379999999],[16.3825097,48.20596599999999],[16.3825372,48.2060678],[16.3825612,48.20613850000001],[16.3826449,48.2062717],[16.382772,48.2064532],[16.38285,48.20657109999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Stadtpark","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"299346579","geometry":{"type":"LineString","coordinates":[[16.3832341,48.20447250000001],[16.3831554,48.2044645],[16.3831159,48.20445599999999],[16.3830794,48.2044367],[16.3830526,48.20441679999999]]},"properties":{"highway":"secondary","lanes":"2","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"481469026","geometry":{"type":"LineString","coordinates":[[16.3830986,48.20460670000003],[16.3830526,48.20441679999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"227682740","geometry":{"type":"LineString","coordinates":[[16.3832341,48.20447250000001],[16.3833466,48.204453900000004],[16.3834037,48.20444610000001],[16.3834361,48.2044425]]},"properties":{"highway":"secondary","lanes":"4","lanes:backward":"2","lanes:forward":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"no","surface":"asphalt","turn:lanes:backward":"left|left","view":"open"}},{"type":"Feature","id":"31400897","geometry":{"type":"LineString","coordinates":[[16.3839286,48.19916090000001],[16.3837453,48.200573899999995],[16.3834461,48.201300300000014],[16.3831812,48.20182890000001],[16.3828724,48.202080799999976]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Reisnerstraße","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"13430527","geometry":{"type":"LineString","coordinates":[[16.3849187,48.19916749999999],[16.3843145,48.20151659999996],[16.3842513,48.20168960000004],[16.3841449,48.202038199999976],[16.3839756,48.20266320000002]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Rechte Bahngasse","note":"Since reconstruction of the Beatrixbrücke in 2015, one-way direction is changed from south to north!","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt","view":"open"}},{"type":"Feature","id":"29075854","geometry":{"type":"LineString","coordinates":[[16.3839756,48.20266320000002],[16.3833943,48.202348900000004],[16.3828724,48.202080799999976]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Beatrixgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"497922598","geometry":{"type":"LineString","coordinates":[[16.3840832,48.202707299999986],[16.3839756,48.20266320000002]]},"properties":{"highway":"residential","layer":"1","maxspeed":"30","name":"Beatrixgasse","oneway":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"28171642","geometry":{"type":"LineString","coordinates":[[16.383392,48.20424800000001],[16.3834086,48.204130299999974],[16.3834334,48.20400990000002],[16.3834462,48.2039647],[16.3834837,48.203869499999996],[16.3835308,48.20376670000002],[16.38364,48.20357339999998],[16.3837439,48.20337430000001],[16.3838198,48.20321389999998],[16.3839334,48.202920199999994],[16.3839542,48.20285580000001],[16.3839707,48.202788699999985],[16.383979,48.20271660000003],[16.3839756,48.20266320000002]]},"properties":{"foot":"yes","highway":"cycleway","lit":"yes","name":"Rechte Bahngasse","segregated":"yes"}},{"type":"Feature","id":"497922599","geometry":{"type":"LineString","coordinates":[[16.3842777,48.20277360000006],[16.3840832,48.202707299999986]]},"properties":{"bridge":"yes","highway":"residential","layer":"1","maxspeed":"30","name":"Beatrixbrücke","oneway":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"5889555","geometry":{"type":"LineString","coordinates":[[16.3837658,48.197269000000006],[16.3836456,48.195633799999996],[16.3836433,48.19560229999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Reisnerstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5889553","geometry":{"type":"LineString","coordinates":[[16.3829839,48.199117],[16.3830583,48.19825739999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gottfried-Keller-Gasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Gottfried Keller"}},{"type":"Feature","id":"503176372","geometry":{"type":"LineString","coordinates":[[16.3829839,48.199117],[16.3839286,48.19916090000001],[16.3849187,48.19916749999999]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"50","name":"Neulinggasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5889602","geometry":{"type":"LineString","coordinates":[[16.3837658,48.197269000000006],[16.3838485,48.198289700000004],[16.3839286,48.19916090000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Reisnerstraße","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"315639227","geometry":{"type":"LineString","coordinates":[[16.3816552,48.20096190000001],[16.382609,48.201109900000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bayerngasse","oneway":"no"}},{"type":"Feature","id":"481469025","geometry":{"type":"LineString","coordinates":[[16.3828669,48.20398660000001],[16.3829985,48.20410290000001],[16.3831189,48.204256799999996],[16.3831659,48.2043295],[16.3831907,48.204367399999995],[16.3832341,48.20447250000001]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"5889584","geometry":{"type":"LineString","coordinates":[[16.3828026,48.20060440000003],[16.3828653,48.20029299999999],[16.3829455,48.19983619999999],[16.3829718,48.19934749999999],[16.3829839,48.199117]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Am Modenapark","oneway":"yes","oneway:bicycle":"no","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13413952","geometry":{"type":"LineString","coordinates":[[16.382609,48.201109900000006],[16.3827198,48.20087699999999],[16.3828026,48.20060440000003]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Gottfried-Keller-Gasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","wikipedia":"de:Gottfried Keller"}},{"type":"Feature","id":"5889572","geometry":{"type":"LineString","coordinates":[[16.3820989,48.19907839999999],[16.3820841,48.19929809999999],[16.3820429,48.19962789999997],[16.3819795,48.199952800000005],[16.3818955,48.20024219999999],[16.3818444,48.20042699999999]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Am Modenapark","oneway":"yes","oneway:bicycle":"no","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5889577","geometry":{"type":"LineString","coordinates":[[16.3824073,48.19613850000002],[16.3824102,48.1961829],[16.3824821,48.19727979999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Metternichgasse","oneway":"yes","source":"yahoo","wikipedia":"de:Klemens Wenzel Lothar von Metternich"}},{"type":"Feature","id":"10142888","geometry":{"type":"LineString","coordinates":[[16.3820989,48.19907839999999],[16.3824121,48.1990921],[16.3825417,48.19909770000001],[16.3826498,48.199102400000015],[16.3829839,48.199117]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"50","name":"Am Modenapark","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5889600","geometry":{"type":"LineString","coordinates":[[16.3824821,48.19727979999999],[16.3825236,48.19734940000001],[16.3825407,48.19764169999999],[16.3825178,48.1977091],[16.3825546,48.19822060000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Metternichgasse","oneway":"yes","source":"yahoo","surface":"asphalt","wikipedia":"de:Klemens Wenzel Lothar von Metternich"}},{"type":"Feature","id":"5889556","geometry":{"type":"LineString","coordinates":[[16.3821629,48.198217099999994],[16.3820989,48.19907839999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Grimmelshausengasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Hans Jakob Christoffel von Grimmelshausen"}},{"type":"Feature","id":"5889617","geometry":{"type":"LineString","coordinates":[[16.381139,48.19733690000001],[16.3824821,48.19727979999999],[16.3825978,48.19730479999998],[16.3837658,48.197269000000006],[16.3854235,48.197217499999965]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Jaurèsgasse","oneway":"yes","source":"yahoo","wikipedia":"de:Jean Jaurès"}},{"type":"Feature","id":"503176371","geometry":{"type":"LineString","coordinates":[[16.3810313,48.1990246],[16.3820989,48.19907839999999]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"50","name":"Neulinggasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"13413999","geometry":{"type":"LineString","coordinates":[[16.3818444,48.20042699999999],[16.3816552,48.20096190000001],[16.3814687,48.20149520000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Grimmelshausengasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","wikipedia":"de:Hans Jakob Christoffel von Grimmelshausen"}},{"type":"Feature","id":"315639229","geometry":{"type":"LineString","coordinates":[[16.3828724,48.202080799999976],[16.3823707,48.201800399999996],[16.3820268,48.2016457],[16.3814687,48.20149520000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Beatrixgasse","oneway":"yes","oneway:bicycle":"no","surface":"cobblestone","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"44166606","geometry":{"type":"LineString","coordinates":[[16.3828724,48.202080799999976],[16.3817253,48.20297640000001],[16.3816712,48.203018799999995],[16.3816157,48.203068],[16.3815651,48.203113099999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Reisnerstraße","oneway":"yes","source":"yahoo","view":"narrow"}},{"type":"Feature","id":"81299493","geometry":{"type":"LineString","coordinates":[[16.3810313,48.1990246],[16.3810074,48.198769700000014],[16.3810415,48.19839919999998],[16.3810942,48.198189799999994],[16.3810936,48.19777139999999],[16.381139,48.19733690000001],[16.381194,48.196818699999994],[16.3811895,48.1967889],[16.3811716,48.19672270000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salesianergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"26564864","geometry":{"type":"LineString","coordinates":[[16.3802299,48.204153399999996],[16.3805878,48.2038742]]},"properties":{"bicycle":"no","bridge":"yes","foot":"yes","highway":"footway","layer":"1","lit":"yes","name":"Stadtparksteg","surface":"wood","wikipedia":"de:Stadtparksteg"}},{"type":"Feature","id":"8072641","geometry":{"type":"LineString","coordinates":[[16.3779509,48.20595929999999],[16.3788632,48.2068544]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Cobdengasse","sidewalk":"both"}},{"type":"Feature","id":"8061593","geometry":{"type":"LineString","coordinates":[[16.3797454,48.206448800000004],[16.3796011,48.206512599999996],[16.3795463,48.2065369],[16.3795114,48.20655239999999]]},"properties":{"highway":"residential","name":"Zedlitzgasse","oneway":"yes"}},{"type":"Feature","id":"26421952","geometry":{"type":"LineString","coordinates":[[16.379632,48.206669999999974],[16.3795114,48.20655239999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Parkring","sidewalk":"right"}},{"type":"Feature","id":"8072634","geometry":{"type":"LineString","coordinates":[[16.3780176,48.20657830000002],[16.3784863,48.20702829999999]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Stubenbastei"}},{"type":"Feature","id":"30322868","geometry":{"type":"LineString","coordinates":[[16.3804774,48.20716110000001],[16.38041,48.2070923],[16.3803747,48.20705800000002],[16.380141,48.206832400000025],[16.3797454,48.206448800000004]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Parkring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"26421933","geometry":{"type":"LineString","coordinates":[[16.3795114,48.20655239999999],[16.3786024,48.20565830000001]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Parkring","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"8052922","geometry":{"type":"LineString","coordinates":[[16.3788315,48.20555630000001],[16.378696,48.205614699999984],[16.3786024,48.20565830000001],[16.3785331,48.205690300000015],[16.3779509,48.20595929999999],[16.3776433,48.20609719999999],[16.3775659,48.206130400000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Liebenberggasse","sidewalk":"both"}},{"type":"Feature","id":"8024755","geometry":{"type":"LineString","coordinates":[[16.3780176,48.20657830000002],[16.3776209,48.20618759999999],[16.3775659,48.206130400000006]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Stubenbastei","oneway":"yes","oneway:bicycle":"no","sidewalk":"both"}},{"type":"Feature","id":"13415393","geometry":{"type":"LineString","coordinates":[[16.3801049,48.20175169999999],[16.3801945,48.20186129999996],[16.3807121,48.20239320000002],[16.3814968,48.202979200000016],[16.3815392,48.20301090000004],[16.3816157,48.203068],[16.3828669,48.20398660000001]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"13430470","geometry":{"type":"LineString","coordinates":[[16.3807956,48.2013542],[16.3802796,48.20169899999999],[16.3802106,48.20172099999999],[16.3801775,48.20173059999999],[16.3801049,48.20175169999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Beatrixgasse","surface":"cobblestone","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"13413672","geometry":{"type":"LineString","coordinates":[[16.3808552,48.20085879999999],[16.3816552,48.20096190000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bayerngasse","oneway":"yes"}},{"type":"Feature","id":"34254051","geometry":{"type":"LineString","coordinates":[[16.3807956,48.2013542],[16.3807223,48.20123529999998],[16.3807751,48.20107619999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rudolf-Sallinger-Platz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"13414556","geometry":{"type":"LineString","coordinates":[[16.3811156,48.2014125],[16.3811446,48.20131169999999],[16.380945,48.201096699999994],[16.3807751,48.20107619999999]]},"properties":{"access":"private","foot":"yes","highway":"service","name":"Rudolf-Sallinger-Platz","wikipedia":"de:Rudolf Sallinger"}},{"type":"Feature","id":"315639228","geometry":{"type":"LineString","coordinates":[[16.3814687,48.20149520000001],[16.3811156,48.2014125],[16.3807956,48.2013542]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Beatrixgasse","oneway":"yes","oneway:bicycle":"no","surface":"cobblestone","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"30692803","geometry":{"type":"LineString","coordinates":[[16.3799428,48.2017984],[16.3801049,48.20175169999999]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Johannesgasse","ref":"B1","source":"yahoo"}},{"type":"Feature","id":"4583332","geometry":{"type":"LineString","coordinates":[[16.3830526,48.20441679999999],[16.3829735,48.20424969999996],[16.3828911,48.20414339999999],[16.3816199,48.203155699999996],[16.3815651,48.203113099999996],[16.3814845,48.20305530000002],[16.3812512,48.202887900000036],[16.3804839,48.20227700000001],[16.3800763,48.201920400000006],[16.3799428,48.2017984]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"5891871","geometry":{"type":"LineString","coordinates":[[16.3799428,48.2017984],[16.3798291,48.201677399999994],[16.3796955,48.201535199999995],[16.3792413,48.20108529999999]]},"properties":{"cycleway":"lane","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes"}},{"type":"Feature","id":"13415593","geometry":{"type":"LineString","coordinates":[[16.3792413,48.20108529999999],[16.3796854,48.201402],[16.3799598,48.20159770000001]]},"properties":{"cycleway":"lane","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes"}},{"type":"Feature","id":"230209913","geometry":{"type":"LineString","coordinates":[[16.3802076,48.201613399999985],[16.3793335,48.20102259999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Am Heumarkt","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"5889615","geometry":{"type":"LineString","coordinates":[[16.3793335,48.20102259999999],[16.3797828,48.200736800000016]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Lagergasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"5889604","geometry":{"type":"LineString","coordinates":[[16.3801049,48.20175169999999],[16.3801411,48.2017084],[16.3801606,48.201685],[16.3802076,48.201613399999985],[16.380567,48.20137700000001],[16.3806,48.20132510000002],[16.3805714,48.2012685]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salesianergasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"191072093","geometry":{"type":"LineString","coordinates":[[16.3799598,48.20159770000001],[16.3801049,48.20175169999999]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes"}},{"type":"Feature","id":"29068073","geometry":{"type":"LineString","coordinates":[[16.3791212,48.2027047],[16.3790018,48.20260830000001],[16.3789839,48.20259200000001],[16.3789622,48.202582999999976],[16.3789326,48.202577700000006],[16.3788998,48.202577899999994],[16.3788669,48.202580100000006],[16.3788254,48.2025878],[16.3787879,48.20259669999999],[16.378757,48.2026075]]},"properties":{"highway":"steps","lit":"yes","name":"Wienflußeinwölbung"}},{"type":"Feature","id":"236764173","geometry":{"type":"LineString","coordinates":[[16.378757,48.2026075],[16.3787232,48.202630699999986],[16.3787013,48.2026515],[16.3786867,48.2026702],[16.37868,48.202685599999995],[16.3786737,48.2027052],[16.3786726,48.2027238],[16.3786806,48.202740699999964],[16.378692,48.202755000000025],[16.3787626,48.202817900000014],[16.3787989,48.2028526]]},"properties":{"highway":"steps","lit":"yes","name":"Wienflußeinwölbung"}},{"type":"Feature","id":"26570638","geometry":{"type":"LineString","coordinates":[[16.3786333,48.20054189999999],[16.3793335,48.20102259999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Am Heumarkt","sidewalk":"both"}},{"type":"Feature","id":"391774032","geometry":{"type":"LineString","coordinates":[[16.3779785,48.20177480000001],[16.3785171,48.202293199999986],[16.378612,48.2023844]]},"properties":{"highway":"primary","lanes:backward":"1","lanes:forward":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","ref":"B1","turn:lanes:forward":"left|none|none","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"9353371","geometry":{"type":"LineString","coordinates":[[16.378612,48.2023844],[16.3788115,48.202296700000005],[16.3790129,48.20220810000001],[16.379882,48.2018252],[16.3799428,48.2017984]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Johannesgasse","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"79040082","geometry":{"type":"LineString","coordinates":[[16.3803103,48.19898599999999],[16.3810313,48.1990246]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"50","name":"Zaunergasse","source":"yahoo","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"47003522","geometry":{"type":"LineString","coordinates":[[16.3795952,48.19953430000001],[16.3801408,48.19908219999999],[16.3803103,48.19898599999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Marokkanergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"182668450","geometry":{"type":"LineString","coordinates":[[16.3806965,48.200131400000004],[16.3808246,48.2002052]]},"properties":{"covered":"yes","highway":"residential","layer":"-1","maxspeed":"30","name":"Traungasse","oneway":"yes","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"182668451","geometry":{"type":"LineString","coordinates":[[16.3808246,48.2002052],[16.3809376,48.20026200000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Traungasse","oneway":"yes","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"182668449","geometry":{"type":"LineString","coordinates":[[16.3807751,48.20107619999999],[16.3808552,48.20085879999999],[16.3809376,48.20026200000001],[16.3809771,48.199628399999995],[16.3809825,48.19951420000001],[16.3810011,48.199226700000025],[16.3810098,48.19919519999999],[16.3810313,48.1990246]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salesianergasse","oneway":"yes"}},{"type":"Feature","id":"79040080","geometry":{"type":"LineString","coordinates":[[16.3795952,48.19953430000001],[16.3806313,48.2001358],[16.3806965,48.200131400000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Traungasse","oneway":"yes","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"13412258","geometry":{"type":"LineString","coordinates":[[16.3806313,48.2001358],[16.3797828,48.200736800000016]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Lagergasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"81299491","geometry":{"type":"LineString","coordinates":[[16.3803103,48.19898599999999],[16.3803997,48.1981442],[16.380454,48.1976353],[16.3800756,48.19725399999999],[16.380047,48.19722519999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Marokkanergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"175307293","geometry":{"type":"LineString","coordinates":[[16.3796028,48.19811870000001],[16.3795144,48.19809429999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Strohgasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5889554","geometry":{"type":"LineString","coordinates":[[16.3851894,48.198367099999984],[16.3838485,48.198289700000004],[16.3830583,48.19825739999999],[16.3825546,48.19822060000001],[16.3824692,48.19823420000003],[16.3821629,48.198217099999994],[16.3819252,48.19820229999999],[16.3817571,48.1982146],[16.3810942,48.198189799999994],[16.3803997,48.1981442],[16.3796028,48.19811870000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Strohgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5889598","geometry":{"type":"LineString","coordinates":[[16.3796028,48.19811870000001],[16.37955,48.198980800000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Veithgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"175308752","geometry":{"type":"LineString","coordinates":[[16.379354,48.19897979999999],[16.37955,48.198980800000015],[16.3797421,48.19898309999999]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Zaunergasse","source":"yahoo","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"175308749","geometry":{"type":"LineString","coordinates":[[16.3797421,48.19898309999999],[16.379878,48.198984699999954]]},"properties":{"covered":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Zaunergasse","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"175308751","geometry":{"type":"LineString","coordinates":[[16.379878,48.198984699999954],[16.3803103,48.19898599999999]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Zaunergasse","source":"yahoo","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"38609095","geometry":{"type":"LineString","coordinates":[[16.3790577,48.197507099999996],[16.3791148,48.19757900000002],[16.3791339,48.19760160000001],[16.3794635,48.19799169999999],[16.3795072,48.19804039999997],[16.3795144,48.19809429999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Veithgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5889587","geometry":{"type":"LineString","coordinates":[[16.3790825,48.198165000000046],[16.3787283,48.1977526],[16.3787083,48.19772929999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Auenbruggergasse","oneway":"yes","source":"yahoo","surface":"asphalt","wikipedia":"de:Leopold von Auenbrugger"}},{"type":"Feature","id":"81299488","geometry":{"type":"LineString","coordinates":[[16.3788007,48.198970400000036],[16.3795022,48.19951090000001],[16.3795952,48.19953430000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Traungasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5889551","geometry":{"type":"LineString","coordinates":[[16.3805714,48.2012685],[16.3797828,48.200736800000016],[16.3788642,48.200120500000025]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ölzeltgasse","oneway":"yes","surface":"cobblestone","wikipedia":"de:Anton Ölzelt"}},{"type":"Feature","id":"175308750","geometry":{"type":"LineString","coordinates":[[16.3792224,48.19897940000001],[16.379354,48.19897979999999]]},"properties":{"covered":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Zaunergasse","source":"yahoo","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"31400751","geometry":{"type":"LineString","coordinates":[[16.3788007,48.198970400000036],[16.3792224,48.19897940000001]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Zaunergasse","source":"yahoo","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"230210078","geometry":{"type":"LineString","coordinates":[[16.3788642,48.200120500000025],[16.3795952,48.19953430000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Marokkanergasse","oneway":"yes","sidewalk":"both","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"175307294","geometry":{"type":"LineString","coordinates":[[16.3795144,48.19809429999998],[16.3792952,48.198094200000014],[16.3790825,48.198165000000046],[16.3781811,48.198513100000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Strohgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5889592","geometry":{"type":"LineString","coordinates":[[16.3776526,48.19812379999999],[16.3776861,48.1981485],[16.3781811,48.198513100000014],[16.3788007,48.198970400000036]]},"properties":{"highway":"residential","maxspeed":"30","name":"Traungasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"230210079","geometry":{"type":"LineString","coordinates":[[16.3784143,48.20042080000002],[16.3788642,48.200120500000025]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Marokkanergasse","oneway":"no","sidewalk":"both","source":"yahoo"}},{"type":"Feature","id":"5889583","geometry":{"type":"LineString","coordinates":[[16.3783496,48.20049169999996],[16.3784143,48.20042080000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Marokkanergasse","oneway":"no","sidewalk":"both","source":"yahoo"}},{"type":"Feature","id":"26570745","geometry":{"type":"LineString","coordinates":[[16.3792413,48.20108529999999],[16.3783496,48.20049169999996]]},"properties":{"cycleway":"lane","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Am Heumarkt"}},{"type":"Feature","id":"36866841","geometry":{"type":"LineString","coordinates":[[16.3859335,48.194759799999986],[16.3855829,48.194873599999994],[16.3855123,48.1948974],[16.3850085,48.195066999999995],[16.3843186,48.19533659999999],[16.3841719,48.195393999999965],[16.3840866,48.195427600000045],[16.3836433,48.19560229999999],[16.3834114,48.195692099999974],[16.3824073,48.19613850000002],[16.3818885,48.19636639999996],[16.3814724,48.19656899999998],[16.3812905,48.196655899999996],[16.3811716,48.19672270000001],[16.381057,48.19678160000001],[16.3808523,48.196887300000014],[16.3806564,48.196979400000004],[16.3803523,48.197103200000015],[16.380047,48.19722519999999],[16.3798557,48.1972925],[16.3791148,48.19757900000002],[16.3787083,48.19772929999999],[16.3776526,48.19812379999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Rennweg","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"12987167","geometry":{"type":"LineString","coordinates":[[16.3775642,48.19806729999999],[16.3790577,48.197507099999996],[16.3794015,48.1973811],[16.3797438,48.197248],[16.3797956,48.19722890000003],[16.3800741,48.197128599999985],[16.3803504,48.19703390000001],[16.3805594,48.19696139999999],[16.3806305,48.196935199999956],[16.3809107,48.196803999999986],[16.3810218,48.1967506],[16.381177,48.196665800000005],[16.3823536,48.196080199999955],[16.3836307,48.19551019999997],[16.3840105,48.195349300000004],[16.3840765,48.19532129999999],[16.3840984,48.195312],[16.3849567,48.194976199999985],[16.3854181,48.19480870000001],[16.3854687,48.194790299999994]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Rennweg","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"29066259","geometry":{"type":"LineString","coordinates":[[16.3769255,48.20557410000001],[16.3779127,48.20506979999999],[16.3779639,48.205043700000004]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Gartenbaupromenade"}},{"type":"Feature","id":"44072091","geometry":{"type":"LineString","coordinates":[[16.3795114,48.20655239999999],[16.3794591,48.20657679999999],[16.3788632,48.2068544],[16.3784863,48.20702829999999],[16.3774007,48.20750559999996],[16.3772117,48.20758799999999],[16.3771326,48.207622600000036]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Zedlitzgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"29066993","geometry":{"type":"LineString","coordinates":[[16.3775659,48.206130400000006],[16.3774798,48.20617340000001],[16.3771746,48.20631960000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Liebenberggasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"8034548","geometry":{"type":"LineString","coordinates":[[16.3771746,48.20631960000003],[16.3772262,48.20637000000002],[16.3773205,48.20690290000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"An der Hülben","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"8052941","geometry":{"type":"LineString","coordinates":[[16.3771069,48.20567879999999],[16.378053,48.20520479999999]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Theodor-Herzl-Platz","oneway":"yes"}},{"type":"Feature","id":"355382610","geometry":{"type":"LineString","coordinates":[[16.3768556,48.20710890000001],[16.3773205,48.20690290000002],[16.3780176,48.20657830000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Jakobergasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"29066987","geometry":{"type":"LineString","coordinates":[[16.3771746,48.20631960000003],[16.3770698,48.20629869999999],[16.3768011,48.206171900000044]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilerstätte","sidewalk":"both"}},{"type":"Feature","id":"75529656","geometry":{"type":"LineString","coordinates":[[16.3769074,48.20399370000001],[16.3769964,48.203953799999994],[16.3771335,48.20389239999997]]},"properties":{"highway":"residential","lit":"yes","name":"Himmelpfortgasse","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"8052944","geometry":{"type":"LineString","coordinates":[[16.3786024,48.20565830000001],[16.3779639,48.205043700000004],[16.377546,48.20462439999997],[16.3774728,48.20454999999998],[16.3774259,48.20450349999999],[16.3769074,48.20399370000001]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Parkring","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"344047864","geometry":{"type":"LineString","coordinates":[[16.377401,48.204582200000004],[16.3774728,48.20454999999998],[16.3775284,48.20452589999999],[16.37771,48.204456599999986]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","oneway":"no"}},{"type":"Feature","id":"473371385","geometry":{"type":"LineString","coordinates":[[16.3807342,48.20695049999998],[16.3807034,48.20696709999996],[16.3806692,48.20696709999996],[16.3804747,48.2067677],[16.3802239,48.20652150000001],[16.3800281,48.20632710000001],[16.3791115,48.2054225],[16.3779814,48.20431450000001],[16.3777012,48.204040400000025],[16.3774407,48.20378550000004],[16.3769061,48.20325729999996]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Parkring"}},{"type":"Feature","id":"473379554","geometry":{"type":"LineString","coordinates":[[16.3807342,48.20695049999998],[16.3807034,48.20696709999996],[16.3806692,48.20696709999996],[16.3804747,48.2067677],[16.3802239,48.20652150000001],[16.3800281,48.20632710000001],[16.3791115,48.2054225],[16.3779814,48.20431450000001],[16.3777012,48.204040400000025],[16.3774407,48.20378550000004],[16.3769061,48.20325729999996]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Parkring"}},{"type":"Feature","id":"30322934","geometry":{"type":"LineString","coordinates":[[16.3797454,48.206448800000004],[16.3788315,48.20555630000001],[16.3777897,48.204532900000004],[16.37771,48.204456599999986],[16.3776471,48.20439110000001],[16.3771335,48.20389239999997],[16.3766084,48.20338850000002],[16.3765466,48.20332640000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Parkring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"12276040","geometry":{"type":"LineString","coordinates":[[16.3765466,48.20332640000001],[16.3766827,48.20327160000002],[16.3767641,48.203239199999985],[16.3770553,48.2031101],[16.3772416,48.203025499999995]]},"properties":{"highway":"tertiary","lanes:backward":"2","lanes:forward":"1","lit":"yes","maxspeed":"30","name":"Johannesgasse","turn:lanes:backward":"left|through"}},{"type":"Feature","id":"8072631","geometry":{"type":"LineString","coordinates":[[16.3754372,48.20557740000001],[16.3757538,48.20537160000001],[16.3760517,48.20520429999999],[16.376121,48.205161799999985]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"26565617","geometry":{"type":"LineString","coordinates":[[16.3759976,48.206301999999994],[16.3767388,48.207161600000035]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Riemergasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"8072643","geometry":{"type":"LineString","coordinates":[[16.376121,48.205161799999985],[16.3762126,48.2052333],[16.3763152,48.20531829999999],[16.3764704,48.205380599999984],[16.376595,48.20542089999998],[16.3767383,48.20547640000001],[16.3769255,48.20557410000001],[16.3771069,48.20567879999999],[16.3772146,48.20575429999997],[16.3775119,48.206075099999964],[16.3775659,48.206130400000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Coburgbastei","sidewalk":"both","surface":"asphalt","wikidata":"Q17522073","wikipedia":"de:Coburgbastei"}},{"type":"Feature","id":"5930410","geometry":{"type":"LineString","coordinates":[[16.3754923,48.20647290000002],[16.3757928,48.206894500000004],[16.3758461,48.20704620000001],[16.377149,48.20833849999997],[16.375822,48.2073872]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Kumpfgasse","surface":"cobblestone"}},{"type":"Feature","id":"5930432","geometry":{"type":"LineString","coordinates":[[16.3768011,48.206171900000044],[16.3754372,48.20557740000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilerstätte","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"344649352","geometry":{"type":"LineString","coordinates":[[16.3763705,48.20446659999999],[16.3764803,48.2045196],[16.3768276,48.2048393]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hegelgasse","oneway":"yes","sidewalk":"right","wikidata":"Q16916609","wikipedia":"de:Hegelgasse (Wien)"}},{"type":"Feature","id":"43308569","geometry":{"type":"LineString","coordinates":[[16.3756113,48.203756],[16.3762031,48.20430680000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hegelgasse","oneway":"yes","sidewalk":"both","wikidata":"Q16916609","wikipedia":"de:Hegelgasse (Wien)"}},{"type":"Feature","id":"344649349","geometry":{"type":"LineString","coordinates":[[16.3762031,48.20430680000001],[16.3763705,48.20446659999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hegelgasse","oneway":"no","sidewalk":"both","wikidata":"Q16916609","wikipedia":"de:Hegelgasse (Wien)"}},{"type":"Feature","id":"387002798","geometry":{"type":"LineString","coordinates":[[16.376121,48.205161799999985],[16.3762035,48.20512289999999],[16.3767168,48.20488940000001],[16.3768276,48.2048393],[16.377401,48.204582200000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","oneway":"no","sidewalk":"both"}},{"type":"Feature","id":"8072744","geometry":{"type":"LineString","coordinates":[[16.376121,48.205161799999985],[16.3760677,48.20511809999999],[16.3755071,48.20462950000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schellinggasse","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"26154343","geometry":{"type":"LineString","coordinates":[[16.3765466,48.20332640000001],[16.37642,48.203389000000016],[16.3763309,48.2034343]]},"properties":{"highway":"residential","lit":"yes","name":"Johannesgasse","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"5930434","geometry":{"type":"LineString","coordinates":[[16.3769074,48.20399370000001],[16.3763819,48.20348280000002],[16.3763309,48.2034343]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Parkring","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"473369132","geometry":{"type":"LineString","coordinates":[[16.3762678,48.20346459999999],[16.3763157,48.20351149999996],[16.376839,48.20402410000003],[16.3770499,48.2042352],[16.3773516,48.2045334],[16.377401,48.204582200000004],[16.3774709,48.20464879999997],[16.3779127,48.20506979999999],[16.378053,48.20520479999999],[16.3784855,48.20562459999999],[16.3785331,48.205690300000015],[16.3790535,48.206182299999995],[16.3794591,48.20657679999999],[16.3795858,48.206695999999994],[16.3798813,48.206974],[16.3799645,48.20699960000002]]},"properties":{"foot":"yes","footway":"sidewalk","highway":"footway","lit":"yes","name":"Parkring"}},{"type":"Feature","id":"391809133","geometry":{"type":"LineString","coordinates":[[16.3772416,48.203025499999995],[16.3774985,48.20290890000001],[16.3779785,48.202690599999954],[16.3782359,48.20257290000001],[16.378365,48.20251669999999],[16.3784907,48.20245729999999],[16.3785326,48.20242809999996],[16.378612,48.2023844]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Johannesgasse"}},{"type":"Feature","id":"8058902","geometry":{"type":"LineString","coordinates":[[16.3774985,48.20290890000001],[16.3770119,48.2024179],[16.3769662,48.20237400000002]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Kantgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"26570456","geometry":{"type":"LineString","coordinates":[[16.3768528,48.200692599999996],[16.3774683,48.201283700000005],[16.3779785,48.20177480000001]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Lothringerstraße","ref":"B1","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"28778296","geometry":{"type":"LineString","coordinates":[[16.3783496,48.20049169999996],[16.3774845,48.199975300000006],[16.3773285,48.1998849]]},"properties":{"cycleway":"lane","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Am Heumarkt"}},{"type":"Feature","id":"26930795","geometry":{"type":"LineString","coordinates":[[16.3766199,48.200986400000005],[16.3770978,48.20144170000003],[16.377396,48.20173080000001],[16.3775857,48.201915299999996],[16.3777524,48.20208150000002],[16.3781781,48.2025141],[16.3782359,48.20257290000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Lothringerstraße","oneway":"yes","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"30127398","geometry":{"type":"LineString","coordinates":[[16.3765426,48.20196609999999],[16.3764712,48.20196570000002],[16.3762999,48.20182310000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Beethovenplatz"}},{"type":"Feature","id":"5930419","geometry":{"type":"LineString","coordinates":[[16.3769662,48.20237400000002],[16.3768635,48.20227609999998],[16.3765426,48.20196609999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Beethovenplatz"}},{"type":"Feature","id":"26945906","geometry":{"type":"LineString","coordinates":[[16.3762372,48.20271730000002],[16.3767025,48.20317860000003],[16.3767641,48.203239199999985]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Schubertring","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"30773247","geometry":{"type":"LineString","coordinates":[[16.3757954,48.20291209999999],[16.3762666,48.203372900000005],[16.3763309,48.2034343]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Schubertring","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"8072752","geometry":{"type":"LineString","coordinates":[[16.3760187,48.202808300000015],[16.3761519,48.202752799999985],[16.3761623,48.202748499999984],[16.3762372,48.20271730000002],[16.3763127,48.20268089999999],[16.3769662,48.20237400000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fichtegasse","sidewalk":"both"}},{"type":"Feature","id":"103428968","geometry":{"type":"LineString","coordinates":[[16.3763232,48.20176480000001],[16.376415,48.20175849999998],[16.3765068,48.2017165],[16.3768871,48.20153959999999],[16.3770978,48.20144170000003]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Beethovenplatz"}},{"type":"Feature","id":"26930739","geometry":{"type":"LineString","coordinates":[[16.3758938,48.20132019999997],[16.3762942,48.201717700000046],[16.3763232,48.20176480000001],[16.3763192,48.2017936]]},"properties":{"cycleway":"opposite_track","highway":"residential","lit":"yes","maxspeed":"30","name":"Kantgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"31400599","geometry":{"type":"LineString","coordinates":[[16.3765591,48.20036429999999],[16.3766319,48.20031900000001],[16.376751,48.2002464],[16.3771325,48.20000940000003],[16.3773285,48.1998849]]},"properties":{"cycleway":"opposite_share_busway","fixme":"bicycle+psv oder nur bicycle+bus gegen einbahn erlaubt?","highway":"residential","lit":"yes","maxspeed":"50","name":"Lisztstraße","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","wikipedia":"de:Franz Liszt"}},{"type":"Feature","id":"127061645","geometry":{"type":"LineString","coordinates":[[16.3773285,48.1998849],[16.3763737,48.19938479999999]]},"properties":{"cycleway":"lane","highway":"tertiary","maxspeed":"50","name":"Am Heumarkt"}},{"type":"Feature","id":"31399710","geometry":{"type":"LineString","coordinates":[[16.3765591,48.20036429999999],[16.3766706,48.200457],[16.3768528,48.200692599999996]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"5891890","geometry":{"type":"LineString","coordinates":[[16.3765591,48.20036429999999],[16.3764574,48.2004254],[16.3762143,48.200484200000005],[16.3760149,48.20052809999996]]},"properties":{"bus":"yes","highway":"service","lanes":"1","maxspeed":"50","name":"Lisztstraße","oneway":"yes","vehicle":"no","wikipedia":"de:Franz Liszt"}},{"type":"Feature","id":"5095739","geometry":{"type":"LineString","coordinates":[[16.3768528,48.200692599999996],[16.3767086,48.200594800000005],[16.3765618,48.20052970000003],[16.3764247,48.2005183],[16.3760149,48.20052809999996]]},"properties":{"highway":"primary","lanes":"1","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"29066035","geometry":{"type":"LineString","coordinates":[[16.3763192,48.2017936],[16.3762999,48.20182310000001],[16.3757364,48.2020838],[16.3757038,48.202101400000004],[16.3756435,48.202134]]},"properties":{"cycleway":"opposite_track","highway":"residential","lit":"yes","maxspeed":"30","name":"Christinengasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both"}},{"type":"Feature","id":"5930423","geometry":{"type":"LineString","coordinates":[[16.3756435,48.202134],[16.375559,48.20216929999998],[16.3754319,48.2022254]]},"properties":{"highway":"residential","name":"Christinengasse","source":"yahoo"}},{"type":"Feature","id":"5930466","geometry":{"type":"LineString","coordinates":[[16.3756435,48.202134],[16.3762372,48.20271730000002]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Schubertring","oneway":"yes","sidewalk":"right","surface":"cobblestone"}},{"type":"Feature","id":"29065761","geometry":{"type":"LineString","coordinates":[[16.3765466,48.20332640000001],[16.3764948,48.203275099999985],[16.3760187,48.202808300000015],[16.3754319,48.2022254]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schubertring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"244105226","geometry":{"type":"LineString","coordinates":[[16.3753836,48.20006840000002],[16.3754839,48.2000893],[16.3762879,48.200286500000004],[16.3765591,48.20036429999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"482008873","geometry":{"type":"LineString","coordinates":[[16.3753836,48.20006840000002],[16.3752207,48.20033329999998]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","turn:lanes":"left|left|through|through"}},{"type":"Feature","id":"31400524","geometry":{"type":"LineString","coordinates":[[16.3760149,48.20052809999996],[16.3759279,48.200519999999955],[16.3753384,48.2003661],[16.3752207,48.20033329999998]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","turn:lanes":"through|through|through;right","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"425297957","geometry":{"type":"LineString","coordinates":[[16.3756742,48.199561500000016],[16.375438,48.19998369999999]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","turn:lanes":"through|through|through|through;right"}},{"type":"Feature","id":"28744713","geometry":{"type":"LineString","coordinates":[[16.375702,48.19933789999999],[16.3757146,48.199403099999984],[16.3757105,48.199469600000015],[16.3756742,48.199561500000016]]},"properties":{"foot":"no","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"298780343","geometry":{"type":"LineString","coordinates":[[16.375438,48.19998369999999],[16.3753836,48.20006840000002]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","turn:lanes":"left|left|through|through"}},{"type":"Feature","id":"100664198","geometry":{"type":"LineString","coordinates":[[16.377299,48.198977299999996],[16.3788007,48.198970400000036]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lcn":"yes","maxspeed":"50","name":"Zaunergasse","oneway":"yes","source":"yahoo","surface":"asphalt","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"5889570","geometry":{"type":"LineString","coordinates":[[16.3778956,48.1995326],[16.3776511,48.19937159999998],[16.3774226,48.1992209],[16.3771871,48.19906399999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Daffingerstraße","oneway":"yes","surface":"asphalt","wikipedia":"de:Moritz Daffinger"}},{"type":"Feature","id":"5889576","geometry":{"type":"LineString","coordinates":[[16.3788007,48.198970400000036],[16.3785758,48.19911239999999],[16.3778956,48.1995326],[16.3773285,48.1998849]]},"properties":{"highway":"residential","maxspeed":"50","name":"Lisztstraße","wikipedia":"de:Franz Liszt"}},{"type":"Feature","id":"240294968","geometry":{"type":"LineString","coordinates":[[16.3771871,48.19906399999999],[16.3772242,48.19901229999999],[16.377299,48.198977299999996]]},"properties":{"highway":"residential","maxspeed":"50","name":"Daffingerstraße","surface":"asphalt","wikipedia":"de:Moritz Daffinger"}},{"type":"Feature","id":"29499146","geometry":{"type":"LineString","coordinates":[[16.3759564,48.19913389999999],[16.3760342,48.19915559999998],[16.3761036,48.1991893],[16.3762057,48.19925570000001]]},"properties":{"foot":"no","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"concrete"}},{"type":"Feature","id":"28833714","geometry":{"type":"LineString","coordinates":[[16.3763737,48.19938479999999],[16.3762824,48.19934940000002],[16.3762057,48.19925570000001]]},"properties":{"cycleway":"lane","highway":"tertiary","maxspeed":"50","name":"Am Heumarkt","surface":"asphalt"}},{"type":"Feature","id":"28340741","geometry":{"type":"LineString","coordinates":[[16.3761132,48.19908299999997],[16.3762164,48.199047500000006],[16.3762899,48.19901199999998],[16.3763648,48.19896649999998],[16.3764592,48.1988911],[16.3765601,48.198803999999996],[16.3767716,48.19862960000003],[16.3771702,48.19830949999999],[16.3774011,48.1981548],[16.3775642,48.19806729999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"428784485","geometry":{"type":"LineString","coordinates":[[16.3759564,48.19913389999999],[16.3760615,48.199097600000016],[16.3761132,48.19908299999997]]},"properties":{"foot":"no","highway":"secondary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"28744821","geometry":{"type":"LineString","coordinates":[[16.3754586,48.199279399999995],[16.3755431,48.199241900000004],[16.375638,48.19921389999999],[16.3759564,48.19913389999999]]},"properties":{"foot":"no","highway":"secondary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"12985513","geometry":{"type":"LineString","coordinates":[[16.3762057,48.19925570000001],[16.3759938,48.19927710000002],[16.3757745,48.1993286],[16.375702,48.19933789999999]]},"properties":{"foot":"no","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"358974052","geometry":{"type":"LineString","coordinates":[[16.3756969,48.199327400000016],[16.375702,48.19933789999999]]},"properties":{"foot":"no","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes"}},{"type":"Feature","id":"28340742","geometry":{"type":"LineString","coordinates":[[16.3753185,48.19935989999999],[16.375395,48.1993114],[16.3754586,48.199279399999995]]},"properties":{"foot":"no","highway":"secondary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"28744715","geometry":{"type":"LineString","coordinates":[[16.375702,48.19933789999999],[16.3756298,48.1993387],[16.3755688,48.19933040000001],[16.37551,48.1993114],[16.3754586,48.199279399999995]]},"properties":{"foot":"no","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes"}},{"type":"Feature","id":"5891899","geometry":{"type":"LineString","coordinates":[[16.3776526,48.19812379999999],[16.3775856,48.19815840000001],[16.3775175,48.1982046],[16.3773808,48.198333899999994],[16.3772554,48.19846079999999],[16.37693,48.1987216],[16.3768262,48.19881750000002],[16.3765422,48.199044499999985],[16.3763418,48.199204700000024],[16.3762971,48.199228000000005],[16.3762057,48.19925570000001],[16.3760886,48.199307199999964],[16.375944,48.19935319999999],[16.3758336,48.19940610000003],[16.3757469,48.19947859999999],[16.3756742,48.199561500000016]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes"}},{"type":"Feature","id":"298784841","geometry":{"type":"LineString","coordinates":[[16.3752523,48.19844560000004],[16.3752559,48.198467300000004],[16.3752655,48.198498099999995],[16.3753541,48.19879180000001],[16.3753891,48.19887449999999],[16.3754366,48.198943799999995]]},"properties":{"highway":"tertiary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt","turn:lanes":"through|through|slight_right;right"}},{"type":"Feature","id":"12985308","geometry":{"type":"LineString","coordinates":[[16.3754366,48.198943799999995],[16.375519,48.1990136],[16.3756095,48.199061900000004],[16.3757275,48.19909849999999],[16.3758655,48.1991189],[16.3759564,48.19913389999999]]},"properties":{"foot":"no","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt","turn:lanes":"through|right"}},{"type":"Feature","id":"12985835","geometry":{"type":"LineString","coordinates":[[16.3754366,48.198943799999995],[16.375638,48.19921389999999],[16.3756969,48.199327400000016]]},"properties":{"foot":"no","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"28744804","geometry":{"type":"LineString","coordinates":[[16.3754586,48.199279399999995],[16.3752947,48.1991031]]},"properties":{"foot":"no","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"146683488","geometry":{"type":"LineString","coordinates":[[16.3808328,48.188986400000005],[16.3807846,48.18906390000001],[16.3807315,48.189154299999984],[16.3806337,48.18932989999996],[16.3804338,48.18968580000001],[16.3800327,48.1903916],[16.3795795,48.19119460000002],[16.3794413,48.19144200000002],[16.3793092,48.19167870000001],[16.3792054,48.19185909999999],[16.3791629,48.191926300000006],[16.3791129,48.19200359999999],[16.3791079,48.192012500000004],[16.3785012,48.19290839999999],[16.3771701,48.19447539999999],[16.3771154,48.1945398],[16.3770379,48.19464239999999],[16.3769692,48.19474249999996],[16.3755953,48.19695490000001],[16.3752338,48.19756430000001]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Prinz-Eugen-Straße","name:wikipedia":"de:Eugen von Savoyen","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8024350","geometry":{"type":"LineString","coordinates":[[16.3761985,48.220257600000025],[16.3756249,48.21996050000001],[16.3751948,48.219863799999985],[16.3748501,48.2197936]]},"properties":{"alt_name":"Malzg","highway":"residential","maxspeed":"30","name":"Malzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024130","geometry":{"type":"LineString","coordinates":[[16.3741255,48.2196357],[16.3743689,48.218911899999995]]},"properties":{"fixme":"radeln gegen einbahn?","highway":"residential","maxspeed":"30","name":"Schreygasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"317851643","geometry":{"type":"LineString","coordinates":[[16.3741255,48.2196357],[16.3738876,48.2199329]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schreygasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"317851641","geometry":{"type":"LineString","coordinates":[[16.3748501,48.2197936],[16.3741255,48.2196357]]},"properties":{"alt_name":"Malzg","cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Malzgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024248","geometry":{"type":"LineString","coordinates":[[16.3734445,48.22024189999999],[16.3748366,48.221189400000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Nestroygasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024253","geometry":{"type":"LineString","coordinates":[[16.3753189,48.2208545],[16.3738876,48.2199329]]},"properties":{"highway":"residential","maxspeed":"30","name":"Adambergergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"7982001","geometry":{"type":"LineString","coordinates":[[16.3748501,48.2197936],[16.3747933,48.21985240000001],[16.3747815,48.21990060000002],[16.3748077,48.219938300000024],[16.375776,48.2205381],[16.3770239,48.2213141]]},"properties":{"highway":"residential","maxspeed":"30","name":"Miesbachgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024182","geometry":{"type":"LineString","coordinates":[[16.3741386,48.2183996],[16.3734663,48.21787040000001],[16.373379,48.2178016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Herminengasse","noexit":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024184","geometry":{"type":"LineString","coordinates":[[16.3758939,48.218520100000035],[16.3741386,48.2183996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Herminengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024185","geometry":{"type":"LineString","coordinates":[[16.3746358,48.217996699999986],[16.3757706,48.21807179999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Nickelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"126548963","geometry":{"type":"LineString","coordinates":[[16.3736134,48.21881669999999],[16.3743689,48.218911899999995],[16.375498,48.219028700000024],[16.3760151,48.219086499999975],[16.376222,48.21910359999998],[16.3767212,48.21911610000001],[16.3768596,48.2191378]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schiffamtsgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"33523187","geometry":{"type":"LineString","coordinates":[[16.373379,48.2178016],[16.3733092,48.21777259999999],[16.373181,48.2176896],[16.3731152,48.21768079999998]]},"properties":{"foot":"yes","highway":"cycleway","name":"Herminengasse"}},{"type":"Feature","id":"8024189","geometry":{"type":"LineString","coordinates":[[16.3727362,48.21824609999999],[16.3727916,48.21828339999999],[16.372819,48.21830299999999],[16.3735182,48.21880279999996],[16.3736134,48.21881669999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schiffamtsgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"317851644","geometry":{"type":"LineString","coordinates":[[16.3738876,48.2199329],[16.3734445,48.22024189999999],[16.3727367,48.220662800000014]]},"properties":{"fixme":"radeln gegen einbahn?","highway":"residential","maxspeed":"30","name":"Schreygasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"7835453","geometry":{"type":"LineString","coordinates":[[16.3721193,48.220175100000006],[16.3736134,48.21881669999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Franz-Hochedlinger-Gasse","old_name":"Kleine Schiffgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"127240498","geometry":{"type":"LineString","coordinates":[[16.3731152,48.21768079999998],[16.3729316,48.21800970000004],[16.3727362,48.21824609999999],[16.3725173,48.21841309999999],[16.3718195,48.21882530000002]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"7835462","geometry":{"type":"LineString","coordinates":[[16.3736134,48.21881669999999],[16.3741386,48.2183996],[16.3746358,48.217996699999986],[16.3750401,48.217657],[16.37531,48.21731539999999],[16.375407,48.217264],[16.3755567,48.21726190000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Franz-Hochedlinger-Gasse","old_name":"Kleine Schiffgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024179","geometry":{"type":"LineString","coordinates":[[16.3746239,48.21608760000001],[16.3746368,48.21615679999999],[16.374651,48.21623310000001],[16.3748304,48.2175895],[16.3749187,48.217646099999996],[16.3750401,48.217657]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Floßgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"158028092","geometry":{"type":"LineString","coordinates":[[16.3755683,48.216933900000015],[16.3755943,48.21680079999999],[16.3755677,48.21646659999999],[16.3755448,48.2164166],[16.3753382,48.21599019999999],[16.3751194,48.21569739999998],[16.3750782,48.215684100000004],[16.3750506,48.21567630000001],[16.3749816,48.21565509999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Schiffgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"180883196","geometry":{"type":"LineString","coordinates":[[16.3724895,48.215300100000036],[16.3722159,48.21554520000001],[16.3719517,48.215801699999986],[16.3718696,48.21585730000004]]},"properties":{"fixme":"Wird das als Einbahn für Fußgänger interpretiert?","highway":"pedestrian","name":"Franz-Josefs-Kai","oneway":"yes"}},{"type":"Feature","id":"25943349","geometry":{"type":"LineString","coordinates":[[16.3718696,48.21585730000004],[16.3713361,48.216352]]},"properties":{"highway":"residential","maxspeed":"30","name":"Franz-Josefs-Kai","oneway":"yes"}},{"type":"Feature","id":"229032985","geometry":{"type":"LineString","coordinates":[[16.3707931,48.21943289999999],[16.3706117,48.21955109999996],[16.3704381,48.21967399999997],[16.3700607,48.21994280000001]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","turn:lanes":"left|left|through|through"}},{"type":"Feature","id":"40818455","geometry":{"type":"LineString","coordinates":[[16.3710234,48.21930209999999],[16.3709689,48.21933310000003],[16.370905,48.21936940000003],[16.3707931,48.21943289999999]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"8024743","geometry":{"type":"LineString","coordinates":[[16.3710234,48.21930209999999],[16.3710798,48.21934930000003],[16.3711224,48.219383100000044],[16.3721193,48.220175100000006],[16.3727367,48.220662800000014]]},"properties":{"highway":"tertiary","is_in":"Austria,Vienna,Wien,Leopoldstadt,1020","lanes":"1","lit":"yes","maxspeed":"30","name":"Untere Augartenstraße","oneway":"yes","source:maxspeed":"sign"}},{"type":"Feature","id":"27813925","geometry":{"type":"LineString","coordinates":[[16.3708046,48.2191148],[16.3709266,48.219216200000005],[16.3710234,48.21930209999999]]},"properties":{"cycleway:right":"lane","description":"Richtung 2.Bezirk","destination:lanes":"Augarten","highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"50","name":"Augartenbrücke","oneway":"yes","turn:lanes":"through"}},{"type":"Feature","id":"27813933","geometry":{"type":"LineString","coordinates":[[16.3706793,48.2191775],[16.370733,48.2192541],[16.3707586,48.219308600000005],[16.3707931,48.21943289999999]]},"properties":{"destination:lanes":"Brigittenau|Brigittenau","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","source":"yahoo","turn:lanes":"left|left"}},{"type":"Feature","id":"269389349","geometry":{"type":"LineString","coordinates":[[16.3698049,48.22019259999999],[16.3697301,48.220259999999996],[16.3697087,48.22028499999999],[16.3696378,48.22036779999999],[16.36956,48.22050439999998],[16.3695197,48.220749299999966],[16.3695483,48.220926399999996],[16.3696306,48.22150619999999],[16.3696641,48.221721900000006],[16.3696706,48.2217641],[16.3696846,48.222038999999995],[16.3696729,48.2221754],[16.3695684,48.22276819999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"355829948","geometry":{"type":"LineString","coordinates":[[16.3740244,48.22360309999999],[16.3739235,48.223513],[16.3737281,48.22335429999998],[16.3727257,48.222533699999985],[16.3726555,48.22247620000002],[16.3718891,48.221838700000006],[16.3713621,48.22141619999999],[16.3700527,48.22034980000001],[16.3698871,48.220241999999985],[16.3698049,48.22019259999999]]},"properties":{"highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"30","name":"Rembrandtstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"229032984","geometry":{"type":"LineString","coordinates":[[16.3700607,48.21994280000001],[16.369868,48.2201355],[16.3698049,48.22019259999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"176450120","geometry":{"type":"LineString","coordinates":[[16.3700607,48.21994280000001],[16.3699005,48.220012],[16.3697828,48.220035199999984],[16.3696646,48.22003499999997],[16.3695423,48.220025599999985]]},"properties":{"highway":"secondary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Roßauer Brücke","oneway":"yes","turn:lanes":"left|left"}},{"type":"Feature","id":"8044242","geometry":{"type":"LineString","coordinates":[[16.3698049,48.22019259999999],[16.3697318,48.2201479],[16.3695423,48.220025599999985]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Roßauer Brücke","oneway":"yes"}},{"type":"Feature","id":"5010652","geometry":{"type":"LineString","coordinates":[[16.3678694,48.21988679999998],[16.3679085,48.21968210000003]]},"properties":{"highway":"secondary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","source":"yahoo","turn:lanes":"slight_right|slight_right;right"}},{"type":"Feature","id":"27814025","geometry":{"type":"LineString","coordinates":[[16.3695423,48.220025599999985],[16.3689956,48.219706599999995]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"5","layer":"1","lit":"yes","maxspeed":"50","name":"Roßauer Brücke","oneway":"yes","turn:lanes":"left|left|through|through|through","wikidata":"Q2167645","wikipedia":"de:Rossauer Brücke"}},{"type":"Feature","id":"27814726","geometry":{"type":"LineString","coordinates":[[16.3691995,48.22026170000001],[16.3690732,48.220647499999984],[16.3690075,48.22083850000001],[16.3689047,48.22125360000001],[16.3688669,48.22142839999998],[16.3688343,48.22160789999998],[16.3687966,48.2218656],[16.3687626,48.2220782],[16.3687487,48.222359600000004],[16.3687477,48.22323779999999],[16.3687445,48.22341420000001],[16.3687402,48.223772],[16.3687218,48.2241836]]},"properties":{"bicycle":"yes","foot":"yes","highway":"path","motor_vehicle":"no","name":"Anton-Schmid-Promenade"}},{"type":"Feature","id":"269389355","geometry":{"type":"LineString","coordinates":[[16.3689956,48.219706599999995],[16.3685718,48.219507599999986]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"3","layer":"1","lit":"yes","maxspeed":"50","name":"Roßauer Brücke","oneway":"yes","turn:lanes":"through|through|through","wikidata":"Q2167645","wikipedia":"de:Rossauer Brücke"}},{"type":"Feature","id":"176450124","geometry":{"type":"LineString","coordinates":[[16.3689956,48.219706599999995],[16.3686097,48.2194509]]},"properties":{"bridge":"yes","highway":"secondary_link","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Roßauer Brücke","oneway":"yes","turn:lanes":"left|left","wikidata":"Q2167645","wikipedia":"de:Rossauer Brücke"}},{"type":"Feature","id":"158722440","geometry":{"type":"LineString","coordinates":[[16.3679085,48.21968210000003],[16.367781,48.219643899999994]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Berggasse","oneway":"yes"}},{"type":"Feature","id":"271227048","geometry":{"type":"LineString","coordinates":[[16.3679085,48.21968210000003],[16.3680122,48.21945189999997],[16.3680468,48.21936170000001],[16.3680584,48.219290400000006]]},"properties":{"highway":"secondary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","source":"yahoo","turn:lanes":"right|right"}},{"type":"Feature","id":"229033625","geometry":{"type":"LineString","coordinates":[[16.3678694,48.21988679999998],[16.3681557,48.2194935],[16.3682606,48.21937679999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","ref":"B227","turn:lanes":"through|through|through"}},{"type":"Feature","id":"27814028","geometry":{"type":"LineString","coordinates":[[16.3685718,48.219507599999986],[16.3683951,48.21942729999998],[16.3682606,48.21937679999999]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Roßauer Brücke","oneway":"yes","turn:lanes":"through|through|through"}},{"type":"Feature","id":"269389351","geometry":{"type":"LineString","coordinates":[[16.3718195,48.21882530000002],[16.3710916,48.219256400000006],[16.3710234,48.21930209999999]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","turn:lanes":"through|through|through|right"}},{"type":"Feature","id":"27813924","geometry":{"type":"LineString","coordinates":[[16.3698969,48.21838389999999],[16.3699516,48.21842810000001],[16.3706432,48.21898379999999],[16.3708046,48.2191148]]},"properties":{"bridge":"yes","cycleway:right":"lane","description":"Richtung 2.Bezirk","destination:lanes":"Augarten","highway":"tertiary","lanes":"1","layer":"1","lit":"yes","maxspeed":"50","name":"Augartenbrücke","oneway":"yes","turn:lanes":"through"}},{"type":"Feature","id":"27813937","geometry":{"type":"LineString","coordinates":[[16.3697699,48.2184546],[16.3706793,48.2191775]]},"properties":{"bridge":"yes","description":"Richtung 20. Bezirk","destination:lanes":"Brigittenau|Brigittenau","highway":"secondary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Augartenbrücke","oneway":"yes","source":"yahoo","turn:lanes":"left|left"}},{"type":"Feature","id":"146982059","geometry":{"type":"LineString","coordinates":[[16.3697637,48.21828260000001],[16.3699366,48.21817290000004]]},"properties":{"bicycle":"use_sidepath","foot":"no","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"31976184","geometry":{"type":"LineString","coordinates":[[16.3697637,48.21828260000001],[16.3698969,48.21838389999999]]},"properties":{"cycleway:right":"lane","description":"Richtung 2.Bezirk","destination:lanes":"Augarten","highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"50","name":"Augartenbrücke","oneway":"yes","turn:lanes":"through"}},{"type":"Feature","id":"355985159","geometry":{"type":"LineString","coordinates":[[16.3699366,48.21817290000004],[16.3702421,48.2179984],[16.370886,48.217657900000006],[16.3712842,48.217423800000006]]},"properties":{"bicycle":"use_sidepath","foot":"no","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"229033627","geometry":{"type":"LineString","coordinates":[[16.3686173,48.2190674],[16.3687501,48.21896960000001],[16.3695044,48.2184494],[16.3695426,48.218423],[16.3696564,48.218350799999996]]},"properties":{"destination:lanes":"Brigittenau|Augarten|Zentrum|Zentrum|Zentrum|Zentrum","highway":"primary","lanes":"6","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","ref":"B227","turn:lanes":"left|left|through|through|through|through"}},{"type":"Feature","id":"31976183","geometry":{"type":"LineString","coordinates":[[16.3696564,48.218350799999996],[16.3697699,48.2184546]]},"properties":{"description":"Richtung 20. Bezirk","destination:lanes":"Brigittenau|Brigittenau","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Augartenbrücke","oneway":"yes","source":"yahoo","turn:lanes":"left|left"}},{"type":"Feature","id":"229033626","geometry":{"type":"LineString","coordinates":[[16.3682606,48.21937679999999],[16.3685038,48.21915100000001],[16.3686173,48.2190674]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"176450128","geometry":{"type":"LineString","coordinates":[[16.3686097,48.2194509],[16.3685453,48.21939370000001],[16.3685384,48.21934590000001],[16.3685319,48.21930079999996],[16.3685535,48.21919600000001],[16.3686173,48.2190674]]},"properties":{"highway":"secondary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","ref":"B227","turn:lanes":"left|left"}},{"type":"Feature","id":"24216207","geometry":{"type":"LineString","coordinates":[[16.3694024,48.21804319999998],[16.3696344,48.218100899999996],[16.369684,48.218112700000006],[16.3699366,48.21817290000004]]},"properties":{"destination:lanes":"Zentrum","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Carl-Szokoll-Platz","oneway":"yes"}},{"type":"Feature","id":"277887334","geometry":{"type":"LineString","coordinates":[[16.3694024,48.21804319999998],[16.3695953,48.21816390000001],[16.3696221,48.2181837],[16.3697637,48.21828260000001]]},"properties":{"cycleway:right":"lane","description":"Richtung 2.Bezirk","destination:lanes":"Augarten","highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"50","name":"Carl-Szokoll-Platz","oneway":"yes","turn:lanes":"through"}},{"type":"Feature","id":"329030928","geometry":{"type":"LineString","coordinates":[[16.3689787,48.218597999999986],[16.3689824,48.2185432],[16.3691597,48.2183344],[16.3693177,48.21820010000002],[16.3693569,48.218170999999984]]},"properties":{"highway":"footway","name":"Carl-Szokoll-Platz"}},{"type":"Feature","id":"277889586","geometry":{"type":"LineString","coordinates":[[16.3696564,48.218350799999996],[16.3697637,48.21828260000001]]},"properties":{"destination:lanes":"Augarten|Augarten|Zentrum|Zentrum|Zentrum|Zentrum","highway":"primary","lanes":"6","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","ref":"B227","turn:lanes":"left|left|through|through|through|through"}},{"type":"Feature","id":"8652881","geometry":{"type":"LineString","coordinates":[[16.3691111,48.217930300000006],[16.3694024,48.21804319999998]]},"properties":{"cycleway:right":"lane","description":"Richtung 2.Bezirk","destination:lanes":"Augarten|Augarten;Zentrum","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Carl-Szokoll-Platz","oneway":"yes","turn:lanes":"through|through;right"}},{"type":"Feature","id":"4583709","geometry":{"type":"LineString","coordinates":[[16.3694024,48.21804319999998],[16.3695174,48.218042500000024],[16.3695809,48.21802699999998],[16.3699645,48.21767350000002],[16.3699768,48.21764710000002],[16.3699735,48.217622500000004]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes"}},{"type":"Feature","id":"9286530","geometry":{"type":"LineString","coordinates":[[16.3691111,48.217930300000006],[16.3692352,48.218018],[16.3695112,48.21823040000001],[16.3695394,48.21825369999996],[16.3696564,48.218350799999996]]},"properties":{"description":"Richtung 20. Bezirk","destination:lanes":"Brigittenau|Brigittenau","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Carl-Szokoll-Platz","oneway":"yes","source":"yahoo","turn:lanes":"left|left"}},{"type":"Feature","id":"316874895","geometry":{"type":"LineString","coordinates":[[16.3713031,48.216356399999995],[16.37128,48.21643560000001],[16.3712349,48.216478499999965],[16.3709303,48.21676830000001],[16.3708002,48.216892]]},"properties":{"foot":"yes","highway":"cycleway","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"31247423","geometry":{"type":"LineString","coordinates":[[16.3688403,48.21686569999997],[16.3697267,48.217276200000015],[16.3700708,48.217437200000006],[16.3702739,48.217488900000006],[16.370384,48.21751169999999],[16.3705073,48.21752790000002],[16.3706576,48.21753899999999],[16.3708204,48.217536300000006],[16.3709327,48.217526099999986],[16.3710226,48.21751119999999],[16.3710949,48.2174938],[16.3711584,48.21747089999997],[16.3712842,48.217423800000006]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schottenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"25978726","geometry":{"type":"LineString","coordinates":[[16.370229,48.21728730000001],[16.3702795,48.217291700000004],[16.37036,48.2172832],[16.3707389,48.21692289999996],[16.3707444,48.21687729999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Franz-Josefs-Kai","oneway":"yes"}},{"type":"Feature","id":"170553610","geometry":{"type":"LineString","coordinates":[[16.3684481,48.21690369999999],[16.368398,48.21694389999999],[16.3679694,48.21737400000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Deutschmeisterplatz","oneway":"yes"}},{"type":"Feature","id":"26257143","geometry":{"type":"LineString","coordinates":[[16.3699735,48.217622500000004],[16.3699571,48.21759930000002],[16.3699176,48.217576699999995],[16.3684481,48.21690369999999]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"50","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"208876058","geometry":{"type":"LineString","coordinates":[[16.3682237,48.2167168],[16.3682708,48.21666970000004],[16.3683161,48.21662430000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Deutschmeisterplatz","oneway":"yes"}},{"type":"Feature","id":"25943354","geometry":{"type":"LineString","coordinates":[[16.3707444,48.21687729999999],[16.3707338,48.21685679999999],[16.3704527,48.216691]]},"properties":{"cycleway":"opposite_lane","highway":"residential","name":"Zelinkagasse","oneway":"yes"}},{"type":"Feature","id":"44024901","geometry":{"type":"LineString","coordinates":[[16.3688403,48.21686569999997],[16.3688799,48.21682659999996],[16.3689304,48.2167767],[16.3689953,48.216712700000016]]},"properties":{"highway":"residential","name":"Gonzagagasse","oneway":"yes"}},{"type":"Feature","id":"31247489","geometry":{"type":"LineString","coordinates":[[16.3689953,48.216712700000016],[16.370229,48.21728730000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"84789882","geometry":{"type":"LineString","coordinates":[[16.3681664,48.21677410000001],[16.3684481,48.21690369999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schottenring"}},{"type":"Feature","id":"5010642","geometry":{"type":"LineString","coordinates":[[16.3694754,48.216248500000034],[16.3693027,48.21618999999998],[16.3687969,48.21595719999999],[16.3687507,48.21592420000002],[16.3685641,48.21583560000002],[16.3680889,48.2156339]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zelinkagasse","oneway":"yes"}},{"type":"Feature","id":"31247471","geometry":{"type":"LineString","coordinates":[[16.3694754,48.216248500000034],[16.3695262,48.21617740000002],[16.3699543,48.21575150000001],[16.3705284,48.215213800000015]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Gonzagagasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"124875757","geometry":{"type":"LineString","coordinates":[[16.3705284,48.215213800000015],[16.3718215,48.21579510000001],[16.3718696,48.21585730000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Werdertorgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"43980603","geometry":{"type":"LineString","coordinates":[[16.3704527,48.216691],[16.3703675,48.216645],[16.3695932,48.21629730000001],[16.3694754,48.216248500000034]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zelinkagasse","oneway":"yes"}},{"type":"Feature","id":"31247424","geometry":{"type":"LineString","coordinates":[[16.3689953,48.216712700000016],[16.3690663,48.21664279999999],[16.3691358,48.21661130000001],[16.3693975,48.21633810000003],[16.3694754,48.216248500000034]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Gonzagagasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"9331276","geometry":{"type":"LineString","coordinates":[[16.3659837,48.21913839999999],[16.365468,48.22024429999999],[16.3652929,48.22083420000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Hahngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"442796216","geometry":{"type":"LineString","coordinates":[[16.367781,48.219643899999994],[16.3659837,48.21913839999999]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Berggasse","oneway":"yes"}},{"type":"Feature","id":"269389357","geometry":{"type":"LineString","coordinates":[[16.3676576,48.2203409],[16.3678694,48.21988679999998]]},"properties":{"highway":"primary","lanes":"5","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","parking:condition:left":"no_stopping","parking:condition:left:time_interval":"Mo-Fr 06:30-19:00","parking:lane:left":"parallel","ref":"B227","turn:lanes":"through|through|through|right|right"}},{"type":"Feature","id":"270077843","geometry":{"type":"LineString","coordinates":[[16.3674262,48.22101509999999],[16.3675919,48.22054880000002],[16.3676576,48.2203409]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","parking:condition:left":"no_stopping","parking:condition:left:time_interval":"Mo-Fr 06:30-19:00","parking:lane:left":"parallel","ref":"B227","surface":"asphalt","turn:lanes":"through|through|through"}},{"type":"Feature","id":"8103718","geometry":{"type":"LineString","coordinates":[[16.3682606,48.21937679999999],[16.3681758,48.21933870000004],[16.3680584,48.219290400000006],[16.3665393,48.218584299999975],[16.3664154,48.218526699999984]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","name":"Türkenstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"81813061","geometry":{"type":"LineString","coordinates":[[16.3651854,48.218973800000015],[16.3651714,48.21907049999999]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Berggasse","source":"yahoo"}},{"type":"Feature","id":"126555255","geometry":{"type":"LineString","coordinates":[[16.3660369,48.219051200000024],[16.3659837,48.21913839999999]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Hahngasse","oneway":"yes"}},{"type":"Feature","id":"172056444","geometry":{"type":"LineString","coordinates":[[16.3664154,48.218526699999984],[16.3660369,48.219051200000024]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Hahngasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"84789879","geometry":{"type":"LineString","coordinates":[[16.3656171,48.218297800000016],[16.3657003,48.21817670000004]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Roßauer Gasse","oneway":"yes"}},{"type":"Feature","id":"269389360","geometry":{"type":"LineString","coordinates":[[16.3664154,48.218526699999984],[16.3657003,48.21817670000004]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"30","name":"Türkenstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5010623","geometry":{"type":"LineString","coordinates":[[16.3651854,48.218973800000015],[16.3652014,48.21891349999996],[16.3656171,48.218297800000016]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Roßauer Gasse","oneway":"yes"}},{"type":"Feature","id":"275947222","geometry":{"type":"LineString","coordinates":[[16.3644,48.218919],[16.3651854,48.218973800000015],[16.3660369,48.219051200000024]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Berggasse","oneway":"yes"}},{"type":"Feature","id":"81813060","geometry":{"type":"LineString","coordinates":[[16.3659837,48.21913839999999],[16.3651714,48.21907049999999],[16.3643904,48.21901070000001]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Berggasse","oneway":"yes"}},{"type":"Feature","id":"8044140","geometry":{"type":"LineString","coordinates":[[16.3664154,48.218526699999984],[16.3656171,48.218297800000016],[16.3648913,48.21808229999999],[16.364822,48.21806169999999]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Türkenstraße","oneway":"yes"}},{"type":"Feature","id":"271227049","geometry":{"type":"LineString","coordinates":[[16.3657003,48.21817670000004],[16.3649641,48.2178371],[16.3648988,48.217803900000035]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"30","name":"Türkenstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8044247","geometry":{"type":"LineString","coordinates":[[16.3648988,48.217803900000035],[16.3648162,48.21776539999999]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","name":"Türkenstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"275947228","geometry":{"type":"LineString","coordinates":[[16.3643307,48.2188103],[16.3645745,48.21847109999999],[16.3648058,48.21812460000004],[16.364822,48.21806169999999],[16.3648988,48.217803900000035]]},"properties":{"highway":"tertiary","lanes":"1","maxspeed":"50","name":"Schlickgasse","oneway":"yes"}},{"type":"Feature","id":"275947225","geometry":{"type":"LineString","coordinates":[[16.3643904,48.21901070000001],[16.3642677,48.21901600000001],[16.3641127,48.21902690000002]]},"properties":{"highway":"residential","lanes":"1","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"275947229","geometry":{"type":"LineString","coordinates":[[16.364281,48.219067300000006],[16.3642892,48.22041300000001],[16.3643022,48.22048380000001],[16.3643533,48.220760799999994],[16.3643602,48.2207985]]},"properties":{"highway":"living_street","lanes":"1","name":"Servitengasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"355985160","geometry":{"type":"LineString","coordinates":[[16.3641719,48.21888289999998],[16.3642305,48.218910300000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","maxspeed":"30","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"356123184","geometry":{"type":"LineString","coordinates":[[16.3640414,48.2189267],[16.3641024,48.218916199999995],[16.3642305,48.218910300000005]]},"properties":{"highway":"tertiary","is_in":"Austria,Vienna,Wien","lanes":"1","maxspeed":"50","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"148091887","geometry":{"type":"LineString","coordinates":[[16.3642305,48.218910300000005],[16.3644,48.218919]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"8044135","geometry":{"type":"LineString","coordinates":[[16.3642305,48.218910300000005],[16.3642677,48.21901600000001],[16.364281,48.219067300000006]]},"properties":{"highway":"living_street","lanes":"1","name":"Jörg-Mauthe-Platz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"275947224","geometry":{"type":"LineString","coordinates":[[16.3643904,48.21901070000001],[16.3643062,48.21897659999999],[16.3642305,48.218910300000005]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"275947223","geometry":{"type":"LineString","coordinates":[[16.3642305,48.218910300000005],[16.3641731,48.21898859999999],[16.3641127,48.21902690000002]]},"properties":{"highway":"tertiary","is_in":"Austria,Vienna,Wien","lanes":"1","maxspeed":"50","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"148091890","geometry":{"type":"LineString","coordinates":[[16.3640158,48.21893059999999],[16.3640414,48.2189267]]},"properties":{"highway":"tertiary","is_in":"Austria,Vienna,Wien","lanes":"1","maxspeed":"50","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"148091889","geometry":{"type":"LineString","coordinates":[[16.3640556,48.2188328],[16.3641719,48.21888289999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","maxspeed":"30","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"8107312","geometry":{"type":"LineString","coordinates":[[16.3642305,48.218910300000005],[16.3643307,48.2188103]]},"properties":{"highway":"tertiary","lanes":"1","maxspeed":"50","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"84789874","geometry":{"type":"LineString","coordinates":[[16.364822,48.21806169999999],[16.3646556,48.218011099999984],[16.3644367,48.21794459999998],[16.364018,48.217814199999964]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Türkenstraße","oneway":"yes"}},{"type":"Feature","id":"355985162","geometry":{"type":"LineString","coordinates":[[16.3668157,48.21593359999997],[16.3669396,48.21599050000003],[16.3675083,48.2162524],[16.3683161,48.21662430000001],[16.3688403,48.21686569999997]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schottenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"113145601","geometry":{"type":"LineString","coordinates":[[16.3676598,48.216106999999994],[16.3689953,48.216712700000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"15243450","geometry":{"type":"LineString","coordinates":[[16.3676946,48.21724679999997],[16.3681279,48.2168126],[16.3681664,48.21677410000001],[16.3682237,48.2167168]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"50","name":"Deutschmeisterplatz","oneway":"yes"}},{"type":"Feature","id":"13273481","geometry":{"type":"LineString","coordinates":[[16.3669553,48.21578869999996],[16.3670857,48.21584759999999],[16.3676598,48.216106999999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"355985161","geometry":{"type":"LineString","coordinates":[[16.3667006,48.215880999999996],[16.3668157,48.21593359999997]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schottenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"8900336","geometry":{"type":"LineString","coordinates":[[16.3648988,48.217803900000035],[16.3649317,48.217734699999994],[16.364995,48.2176522],[16.3653991,48.21726180000002],[16.3654881,48.21717580000001],[16.3655866,48.2170806],[16.3658693,48.216807500000016],[16.3661049,48.21661449999999],[16.3661345,48.21659020000001],[16.3661993,48.21653709999998]]},"properties":{"highway":"tertiary","lanes":"1","maxspeed":"50","name":"Schlickplatz","oneway":"yes"}},{"type":"Feature","id":"277887337","geometry":{"type":"LineString","coordinates":[[16.3661993,48.21653709999998],[16.3662707,48.21657099999999],[16.3676946,48.21724679999997],[16.3677508,48.21727279999999],[16.3678654,48.2173258],[16.3679694,48.21737400000001],[16.3691111,48.217930300000006]]},"properties":{"cycleway":"lane","destination:lanes":"Brigittenau|Augarten;Zentrum","highway":"secondary","lanes":"2","lcn":"yes","lit":"yes","maxspeed":"50","name":"Maria-Theresien-Straße","oneway":"yes","turn:lanes":"left|through;right"}},{"type":"Feature","id":"5010657","geometry":{"type":"LineString","coordinates":[[16.3655953,48.216255399999966],[16.3655287,48.21632089999997],[16.3650202,48.216820799999994],[16.36492,48.21692010000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schlickplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"356123186","geometry":{"type":"LineString","coordinates":[[16.3661439,48.216510399999976],[16.3661993,48.21653709999998]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lcn":"yes","lit":"yes","maxspeed":"50","name":"Maria-Theresien-Straße","oneway":"yes"}},{"type":"Feature","id":"349539113","geometry":{"type":"LineString","coordinates":[[16.3648445,48.21590330000001],[16.364925,48.21594099999999],[16.3655953,48.216255399999966],[16.3660736,48.216478300000034],[16.3661439,48.216510399999976]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lcn":"yes","lit":"yes","maxspeed":"50","name":"Maria-Theresien-Straße","oneway":"yes"}},{"type":"Feature","id":"95194308","geometry":{"type":"LineString","coordinates":[[16.3661993,48.21653709999998],[16.3662354,48.21650249999999],[16.3666171,48.216135699999995],[16.3666695,48.216085400000026],[16.3666919,48.216060999999996],[16.3668157,48.21593359999997]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Börsegasse","oneway":"yes"}},{"type":"Feature","id":"26257159","geometry":{"type":"LineString","coordinates":[[16.3681664,48.21677410000001],[16.3667831,48.21613759999997],[16.3666695,48.216085400000026]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"84790903","geometry":{"type":"LineString","coordinates":[[16.364245,48.216464799999954],[16.3650202,48.216820799999994]]},"properties":{"highway":"service","maxspeed":"30","name":"Kolingasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"35302217","geometry":{"type":"LineString","coordinates":[[16.3641435,48.216564500000004],[16.36492,48.21692010000001],[16.3653721,48.21712360000001],[16.3654881,48.21717580000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolingasse","note":"die Straßenbahn fährt hier mittig auf der Kolingasse. /al","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"158722443","geometry":{"type":"LineString","coordinates":[[16.3643064,48.2175283],[16.3628145,48.216834199999994]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","name":"Hörlgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"356128807","geometry":{"type":"LineString","coordinates":[[16.3648162,48.21776539999999],[16.3647686,48.21774329999997],[16.3643064,48.2175283]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","name":"Türkenstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28235067","geometry":{"type":"LineString","coordinates":[[16.364018,48.217814199999964],[16.3643064,48.2175283]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Schlickplatz","oneway":"yes"}},{"type":"Feature","id":"84789886","geometry":{"type":"LineString","coordinates":[[16.36492,48.21692010000001],[16.36483,48.2170093],[16.3643064,48.2175283]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schlickplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"84790901","geometry":{"type":"LineString","coordinates":[[16.3635415,48.21614170000001],[16.3641777,48.216433999999964],[16.364245,48.216464799999954]]},"properties":{"highway":"service","maxspeed":"30","name":"Kolingasse","oneway":"yes","source:maxspeed":"AT:zone:30","vehicle":"private"}},{"type":"Feature","id":"271227047","geometry":{"type":"LineString","coordinates":[[16.3628145,48.216834199999994],[16.363347,48.21632700000001],[16.3634374,48.21624080000001],[16.3635415,48.21614170000001]]},"properties":{"highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","maxspeed":"50","name":"Liechtensteinstraße","source":"yahoo"}},{"type":"Feature","id":"35302218","geometry":{"type":"LineString","coordinates":[[16.3634374,48.21624080000001],[16.3641435,48.216564500000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolingasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"84790899","geometry":{"type":"LineString","coordinates":[[16.3653991,48.21726180000002],[16.3653451,48.217240299999986],[16.3652841,48.217212899999964],[16.36483,48.2170093],[16.363347,48.21632700000001]]},"properties":{"highway":"service","maxspeed":"30","name":"Kolingasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10130497","geometry":{"type":"LineString","coordinates":[[16.3648445,48.21590330000001],[16.364782,48.215961899999996],[16.364245,48.216464799999954],[16.3642296,48.21647970000001],[16.3641435,48.216564500000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Peregringasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"208876059","geometry":{"type":"LineString","coordinates":[[16.3666695,48.216085400000026],[16.3665366,48.2160274],[16.3659572,48.21576890000003],[16.3654076,48.21550619999999],[16.3652879,48.215451299999984]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"113145582","geometry":{"type":"LineString","coordinates":[[16.3680889,48.2156339],[16.367769,48.215937999999994],[16.3677366,48.216001500000004],[16.3676598,48.216106999999994],[16.3676026,48.21616040000001],[16.3675083,48.2162524]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Neutorgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"31247400","geometry":{"type":"LineString","coordinates":[[16.3654289,48.21529509999999],[16.3655473,48.215349599999996],[16.3655828,48.21536599999999],[16.3663971,48.21574129999999],[16.3667006,48.215880999999996]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schottenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"31247388","geometry":{"type":"LineString","coordinates":[[16.3654289,48.21529509999999],[16.365314,48.215419499999996],[16.3652879,48.215451299999984]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"50","name":"Wipplingerstraße","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"30072789","geometry":{"type":"LineString","coordinates":[[16.3657283,48.215221299999996],[16.3667727,48.215703899999994],[16.3669553,48.21578869999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"35302219","geometry":{"type":"LineString","coordinates":[[16.3652879,48.215451299999984],[16.3652433,48.21549679999998],[16.3650772,48.21566489999998],[16.3648734,48.2158737],[16.3648445,48.21590330000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"50","name":"Wipplingerstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"35302222","geometry":{"type":"LineString","coordinates":[[16.3652879,48.215451299999984],[16.3651391,48.21538319999999],[16.3646808,48.21517370000001],[16.3646003,48.21513690000003]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"397523793","geometry":{"type":"LineString","coordinates":[[16.3646003,48.21513690000003],[16.3644605,48.215269199999994]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"50","name":"Hohenstaufengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"349539109","geometry":{"type":"LineString","coordinates":[[16.3641285,48.21558249999998],[16.3647065,48.21584150000001],[16.3648445,48.21590330000001]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lcn":"yes","lit":"yes","maxspeed":"50","name":"Maria-Theresien-Straße","oneway":"yes"}},{"type":"Feature","id":"8103726","geometry":{"type":"LineString","coordinates":[[16.3641285,48.21558249999998],[16.3640757,48.21563280000001],[16.3639735,48.215710400000006],[16.3639062,48.21577959999999],[16.3636349,48.216048900000004],[16.3635415,48.21614170000001]]},"properties":{"busway":"opposite_lane","cycleway:left":"share_busway","cycleway:right":"lane","highway":"tertiary","maxspeed":"50","name":"Liechtensteinstraße","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"10130639","geometry":{"type":"LineString","coordinates":[[16.3644605,48.215269199999994],[16.3643136,48.215406],[16.3641285,48.21558249999998]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"50","name":"Hohenstaufengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"30062227","geometry":{"type":"LineString","coordinates":[[16.3754604,48.214492500000006],[16.3744013,48.2141513]]},"properties":{"bridge":"yes","cycleway":"lane","highway":"tertiary","lanes":"3","lanes:backward":"1","lanes:forward":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Salztorbrücke","sidewalk":"both","turn:lanes:forward":"left;through|through"}},{"type":"Feature","id":"9293454","geometry":{"type":"LineString","coordinates":[[16.3744013,48.2141513],[16.3743383,48.214131399999985],[16.3742064,48.214064699999994]]},"properties":{"highway":"tertiary","lanes:backward":"1","lanes:forward":"2","maxspeed":"50","name":"Salztorbrücke","turn:lanes:forward":"left;through|through"}},{"type":"Feature","id":"420290632","geometry":{"type":"LineString","coordinates":[[16.3749221,48.21331380000001],[16.3752121,48.2130746],[16.3754659,48.212883799999986],[16.3755732,48.21281920000001]]},"properties":{"bicycle":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no"}},{"type":"Feature","id":"44024905","geometry":{"type":"LineString","coordinates":[[16.3743703,48.213071000000014],[16.374571,48.21319040000003],[16.3746045,48.213208899999955]]},"properties":{"highway":"residential","lanes":"2","lcn":"yes","maxspeed":"30","name":"Morzinplatz","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"351751342","geometry":{"type":"LineString","coordinates":[[16.3746045,48.213208899999955],[16.3746832,48.213248899999996],[16.3748031,48.213289299999985],[16.3749221,48.21331380000001]]},"properties":{"highway":"residential","lanes":"2","lcn":"yes","name":"Morzinplatz","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"31131259","geometry":{"type":"LineString","coordinates":[[16.3739963,48.213936700000005],[16.373968,48.21391680000002],[16.3739134,48.21388279999999]]},"properties":{"highway":"tertiary","is_in":"Austria,Wien,Innere Stadt","lanes":"3","lanes:backward":"1","lanes:forward":"2","lcn":"yes","name":"Salztorgasse","oneway":"yes"}},{"type":"Feature","id":"8024664","geometry":{"type":"LineString","coordinates":[[16.3742064,48.214064699999994],[16.3740971,48.2140009],[16.3740464,48.21397089999999],[16.3739963,48.213936700000005]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria,Wien,Innere Stadt","lanes":"3","lanes:backward":"1","lanes:forward":"2","name":"Salztorgasse","oneway":"yes"}},{"type":"Feature","id":"23148505","geometry":{"type":"LineString","coordinates":[[16.3740581,48.212713699999995],[16.3741001,48.212824599999976],[16.3741419,48.21293510000001]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Morzinplatz","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"420290639","geometry":{"type":"LineString","coordinates":[[16.3741419,48.21293510000001],[16.3743703,48.213071000000014]]},"properties":{"highway":"residential","lanes":"2","lcn":"yes","maxspeed":"30","name":"Morzinplatz","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"351751337","geometry":{"type":"LineString","coordinates":[[16.3746045,48.213208899999955],[16.3745286,48.21331549999999],[16.3739802,48.21382620000003],[16.3739134,48.21388279999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Franz-Josefs-Kai","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"30062299","geometry":{"type":"LineString","coordinates":[[16.3742064,48.214064699999994],[16.3742872,48.21395770000001],[16.3745931,48.2136184],[16.3749221,48.21331380000001]]},"properties":{"bicycle":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no"}},{"type":"Feature","id":"229033624","geometry":{"type":"LineString","coordinates":[[16.373662,48.21487139999999],[16.3739776,48.21436840000001],[16.3741311,48.214142400000014],[16.3742064,48.214064699999994]]},"properties":{"bicycle":"use_sidepath","foot":"no","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","turn:lanes":"left;through|through|through|through|right|right"}},{"type":"Feature","id":"25943353","geometry":{"type":"LineString","coordinates":[[16.373473,48.2143988],[16.372584,48.21526030000001],[16.3724895,48.215300100000036]]},"properties":{"highway":"residential","maxspeed":"30","name":"Franz-Josefs-Kai","oneway":"yes"}},{"type":"Feature","id":"140400523","geometry":{"type":"LineString","coordinates":[[16.3757503,48.21458640000003],[16.3756776,48.214709],[16.3754368,48.21505959999999],[16.3749816,48.21565509999999],[16.3746239,48.21608760000001],[16.3744855,48.21623539999999],[16.3742555,48.21648090000002],[16.3736605,48.21706180000001],[16.3732855,48.217487500000004],[16.3731152,48.21768079999998]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"474848395","geometry":{"type":"LineString","coordinates":[[16.374571,48.21319040000003],[16.374424,48.21334590000001],[16.3739372,48.21379719999999],[16.3738659,48.21385470000001],[16.3737974,48.213920900000005],[16.3738349,48.21398479999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"44024903","geometry":{"type":"LineString","coordinates":[[16.3739134,48.21388279999999],[16.3738659,48.21385470000001],[16.3735399,48.213654700000006],[16.3732063,48.21345070000001]]},"properties":{"highway":"tertiary","lanes":"3","lanes:backward":"1","lanes:forward":"2","lcn":"yes","maxspeed":"30","name":"Salztorgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4583428","geometry":{"type":"LineString","coordinates":[[16.3732063,48.21345070000001],[16.3725889,48.2138047]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria,Wien,Innere Stadt","lanes":"1","maxspeed":"30","name":"Gonzagagasse","oneway":"yes"}},{"type":"Feature","id":"82235424","geometry":{"type":"LineString","coordinates":[[16.3722582,48.21354439999999],[16.3725889,48.2138047],[16.3728593,48.2140292]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Rudolfsplatz","oneway":"yes"}},{"type":"Feature","id":"185849943","geometry":{"type":"LineString","coordinates":[[16.373473,48.2143988],[16.3736599,48.214209600000004],[16.3738349,48.21398479999999]]},"properties":{"bicycle":"no","highway":"footway","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"82235425","geometry":{"type":"LineString","coordinates":[[16.3728593,48.2140292],[16.372984,48.21411880000002],[16.3734574,48.21434789999998],[16.373473,48.2143988]]},"properties":{"highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Gölsdorfgasse","oneway":"yes"}},{"type":"Feature","id":"31260904","geometry":{"type":"LineString","coordinates":[[16.3727532,48.21293130000001],[16.3728934,48.2128974],[16.3738573,48.21273959999999],[16.3740581,48.212713699999995]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Salzgries","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"270461283","geometry":{"type":"LineString","coordinates":[[16.3732063,48.21345070000001],[16.373161,48.213419999999985],[16.372793,48.2130124],[16.3727532,48.21293130000001]]},"properties":{"highway":"tertiary","lanes":"2","lcn":"yes","maxspeed":"30","name":"Salztorgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"25943350","geometry":{"type":"LineString","coordinates":[[16.3732063,48.21345070000001],[16.3741419,48.21293510000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Gonzagagasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"348867233","geometry":{"type":"LineString","coordinates":[[16.3744279,48.2123646],[16.3743796,48.21231039999998]]},"properties":{"highway":"footway","name":"Ruprechtsstiege","surface":"asphalt"}},{"type":"Feature","id":"123412917","geometry":{"type":"LineString","coordinates":[[16.3745609,48.21238370000003],[16.3744776,48.21242030000002],[16.3744279,48.2123646]]},"properties":{"highway":"steps","incline":"up","name":"Ruprechtsstiege","ramp":"yes","ramp:stroller":"yes","ramp:wheelchair":"no","step_count":"32"}},{"type":"Feature","id":"185248908","geometry":{"type":"LineString","coordinates":[[16.3746267,48.212424],[16.3746832,48.21239489999999],[16.3748044,48.21233219999999],[16.3751924,48.212129800000014]]},"properties":{"bicycle":"yes","foot":"yes","highway":"pedestrian","lit":"yes","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"348867232","geometry":{"type":"LineString","coordinates":[[16.3743796,48.21231039999998],[16.3743225,48.21225279999999]]},"properties":{"highway":"steps","incline":"up","name":"Ruprechtsstiege","ramp":"yes","ramp:stroller":"yes","ramp:wheelchair":"no","step_count":"22"}},{"type":"Feature","id":"4952915","geometry":{"type":"LineString","coordinates":[[16.3750967,48.21110250000001],[16.3751218,48.211157000000014],[16.375301,48.211545099999995],[16.3753054,48.211625999999995],[16.3752739,48.211720299999996]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Rabensteig"}},{"type":"Feature","id":"176378054","geometry":{"type":"LineString","coordinates":[[16.3754516,48.21095819999999],[16.3753596,48.211002699999995],[16.3750967,48.21110250000001],[16.3748788,48.21118530000001],[16.3744072,48.21134829999997]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fleischmarkt","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4952923","geometry":{"type":"LineString","coordinates":[[16.3740783,48.21197570000001],[16.3737736,48.21219210000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Salzgasse","sidewalk":"no","surface":"cobblestone"}},{"type":"Feature","id":"8072679","geometry":{"type":"LineString","coordinates":[[16.3740581,48.212713699999995],[16.3741236,48.21268029999999],[16.374614,48.212430100000006],[16.3746267,48.212424]]},"properties":{"bicycle":"yes","foot":"yes","highway":"pedestrian","lit":"yes","name":"Morzinplatz"}},{"type":"Feature","id":"4998483","geometry":{"type":"LineString","coordinates":[[16.3743225,48.21225279999999],[16.3742921,48.212203200000005],[16.3742681,48.21216749999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Ruprechtsstiege"}},{"type":"Feature","id":"506998433","geometry":{"type":"LineString","coordinates":[[16.3744072,48.21134829999997],[16.373849,48.21091659999999],[16.3736961,48.210780400000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bauernmarkt","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"185242442","geometry":{"type":"LineString","coordinates":[[16.3744072,48.21134829999997],[16.3743238,48.211368299999975],[16.3741977,48.2114033]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fleischmarkt"}},{"type":"Feature","id":"185242443","geometry":{"type":"LineString","coordinates":[[16.3741293,48.21141080000001],[16.3741626,48.21145000000001],[16.374121,48.2114814]]},"properties":{"highway":"steps","incline":"up","lit":"yes","name":"Jerusalem-Stiege"}},{"type":"Feature","id":"4952902","geometry":{"type":"LineString","coordinates":[[16.3736854,48.2114622],[16.373891,48.21162279999999],[16.3739346,48.211673099999985],[16.373994,48.211832500000014],[16.3740783,48.21197570000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Judengasse","sidewalk":"no","surface":"paving_stones"}},{"type":"Feature","id":"26013826","geometry":{"type":"LineString","coordinates":[[16.374121,48.2114814],[16.373891,48.21162279999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Desider-Friedmann-Platz","surface":"paving_stones"}},{"type":"Feature","id":"4952913","geometry":{"type":"LineString","coordinates":[[16.373994,48.211832500000014],[16.3741258,48.21180100000001],[16.374545,48.21170099999998],[16.3750655,48.211699100000004],[16.375207,48.211709600000006],[16.3752739,48.211720299999996]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Seitenstettengasse","surface":"cobblestone"}},{"type":"Feature","id":"4952872","geometry":{"type":"LineString","coordinates":[[16.3737436,48.21033220000001],[16.3738604,48.21043589999999],[16.374215,48.210698699999966],[16.3748788,48.21118530000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Rotgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both"}},{"type":"Feature","id":"4952871","geometry":{"type":"LineString","coordinates":[[16.3736524,48.21074140000002],[16.3736519,48.210740999999985],[16.3735449,48.210663100000005]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bauernmarkt","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"4952877","geometry":{"type":"LineString","coordinates":[[16.374215,48.210698699999966],[16.373849,48.21091659999999]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Fischhof","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"506998432","geometry":{"type":"LineString","coordinates":[[16.3736961,48.210780400000004],[16.3736524,48.21074140000002]]},"properties":{"covered":"yes","highway":"residential","lit":"yes","maxspeed":"30","name":"Bauernmarkt","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"185258175","geometry":{"type":"LineString","coordinates":[[16.3731956,48.211823100000004],[16.373238,48.21179359999999]]},"properties":{"highway":"footway","lit":"yes","name":"Sterngasse"}},{"type":"Feature","id":"4952858","geometry":{"type":"LineString","coordinates":[[16.3729343,48.21199989999997],[16.3739649,48.212596099999985],[16.3740083,48.21264240000002],[16.3740581,48.212713699999995]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Marc-Aurel-Straße","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"8058876","geometry":{"type":"LineString","coordinates":[[16.3727532,48.21293130000001],[16.3727258,48.212862900000005],[16.3727369,48.21275480000003],[16.3728199,48.21208469999999],[16.372832,48.21201999999997]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Vorlaufstraße","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"25949687","geometry":{"type":"LineString","coordinates":[[16.3729212,48.21192350000001],[16.3729549,48.211906],[16.3731956,48.211823100000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Sterngasse","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"4952863","geometry":{"type":"LineString","coordinates":[[16.3731297,48.21091130000002],[16.3733766,48.2111912],[16.3736854,48.2114622]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Judengasse","noexit":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"26731187","geometry":{"type":"LineString","coordinates":[[16.3733592,48.21175919999999],[16.3739346,48.211673099999985]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Sterngasse","sidewalk":"no","surface":"cobblestone"}},{"type":"Feature","id":"4952891","geometry":{"type":"LineString","coordinates":[[16.373238,48.21179359999999],[16.3733592,48.21175919999999]]},"properties":{"highway":"steps","incline":"up","lit":"yes","name":"Theodor-Herzl-Stiege"}},{"type":"Feature","id":"364911324","geometry":{"type":"LineString","coordinates":[[16.3723698,48.21154050000001],[16.3727785,48.2118907],[16.3728245,48.2119155]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Marc-Aurel-Straße","sidewalk":"both"}},{"type":"Feature","id":"165778776","geometry":{"type":"LineString","coordinates":[[16.3730115,48.2107302],[16.373425,48.2104947]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Hoher Markt","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"28151969","geometry":{"type":"LineString","coordinates":[[16.3730115,48.2107302],[16.3730856,48.21079739999999],[16.3731288,48.2108441],[16.3731297,48.21091130000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hoher Markt","surface":"cobblestone"}},{"type":"Feature","id":"26565519","geometry":{"type":"LineString","coordinates":[[16.37526,48.20982539999997],[16.3751973,48.20983749999999],[16.3749288,48.209871700000036],[16.3748803,48.20986690000001],[16.3748415,48.20984809999999],[16.3748259,48.20982190000001],[16.3748271,48.20979560000001],[16.3750008,48.20962789999999]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","myth":"yes","name":"Lugeck","name:myth":"Der Bärenhäuter","oneway":"yes","sidewalk":"right","surface":"asphalt","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/sagen_legenden_gugitz/baerenhaeuter.html"}},{"type":"Feature","id":"26565521","geometry":{"type":"LineString","coordinates":[[16.3748415,48.20984809999999],[16.374551,48.20996830000004]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Lugeck","sidewalk":"both"}},{"type":"Feature","id":"8034542","geometry":{"type":"LineString","coordinates":[[16.3741539,48.210131399999995],[16.3742148,48.210105999999996],[16.3742626,48.21008610000001],[16.374551,48.20996830000004]]},"properties":{"bicycle":"designated","foot":"designated","highway":"cycleway","lit":"yes","name":"Lugeck","segregated":"no"}},{"type":"Feature","id":"353893666","geometry":{"type":"LineString","coordinates":[[16.3745408,48.209057299999984],[16.374575,48.2090968]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof"}},{"type":"Feature","id":"116531142","geometry":{"type":"LineString","coordinates":[[16.3744895,48.209142799999995],[16.374454,48.209102]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof"}},{"type":"Feature","id":"175222091","geometry":{"type":"LineString","coordinates":[[16.3748353,48.20948809999999],[16.374745,48.209393699999964],[16.3746077,48.209255299999995]]},"properties":{"bicycle":"no","foot":"yes","highway":"footway","lit":"yes","name":"Schmeckender-Wurm-Hof","url":"https://www.wien.gv.at/spaziergang/innenhoefe/wurmhof.html"}},{"type":"Feature","id":"175222089","geometry":{"type":"LineString","coordinates":[[16.3746077,48.209255299999995],[16.3745154,48.209166400000015]]},"properties":{"bicycle":"no","foot":"yes","highway":"footway","lit":"yes","name":"Schmeckender-Wurm-Hof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00","tunnel":"building_passage"}},{"type":"Feature","id":"175222087","geometry":{"type":"LineString","coordinates":[[16.3745154,48.209166400000015],[16.3744895,48.209142799999995]]},"properties":{"bicycle":"no","foot":"yes","highway":"footway","name":"Schmeckender-Wurm-Hof"}},{"type":"Feature","id":"175222086","geometry":{"type":"LineString","coordinates":[[16.3749345,48.2095918],[16.3748353,48.20948809999999]]},"properties":{"bicycle":"no","foot":"yes","highway":"footway","lit":"yes","name":"Schmeckender-Wurm-Hof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00","tunnel":"building_passage"}},{"type":"Feature","id":"175222092","geometry":{"type":"LineString","coordinates":[[16.3750008,48.20962789999999],[16.3749411,48.20959869999999],[16.3749345,48.2095918]]},"properties":{"bicycle":"no","foot":"yes","highway":"footway","name":"Schmeckender-Wurm-Hof"}},{"type":"Feature","id":"353893664","geometry":{"type":"LineString","coordinates":[[16.3744328,48.2089321],[16.3745408,48.209057299999984]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00","tunnel":"building_passage"}},{"type":"Feature","id":"353893662","geometry":{"type":"LineString","coordinates":[[16.3741816,48.20864400000002],[16.3742881,48.20876559999999]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof","opening_hours":"6:00-22:00","tunnel":"building_passage"}},{"type":"Feature","id":"353893667","geometry":{"type":"LineString","coordinates":[[16.3743399,48.20896830000001],[16.3741975,48.2088019]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00"}},{"type":"Feature","id":"26565523","geometry":{"type":"LineString","coordinates":[[16.3750008,48.20962789999999],[16.3750795,48.209565999999995],[16.3755168,48.2093749],[16.3759977,48.20917080000001],[16.3763191,48.20903290000001],[16.3764076,48.20899589999999],[16.3771315,48.2086985]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Bäckerstraße","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"116758242","geometry":{"type":"LineString","coordinates":[[16.3747199,48.20844979999998],[16.3743371,48.20855869999997]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"destination","name":"Schulerstraße","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"353893665","geometry":{"type":"LineString","coordinates":[[16.3742881,48.20876559999999],[16.3744328,48.2089321]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof"}},{"type":"Feature","id":"353893663","geometry":{"type":"LineString","coordinates":[[16.374454,48.209102],[16.3743399,48.20896830000001]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00","tunnel":"building_passage"}},{"type":"Feature","id":"26419634","geometry":{"type":"LineString","coordinates":[[16.3737436,48.21033220000001],[16.373702,48.21028980000003],[16.373437,48.21005310000001],[16.3732001,48.20988030000001]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Kramergasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4952862","geometry":{"type":"LineString","coordinates":[[16.373425,48.2104947],[16.3737436,48.21033220000001],[16.3740868,48.21016449999996],[16.3741539,48.210131399999995]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Lichtensteg","sidewalk":"both"}},{"type":"Feature","id":"30323046","geometry":{"type":"LineString","coordinates":[[16.3741539,48.210131399999995],[16.3742495,48.210198399999996],[16.3743147,48.21024410000001],[16.3747394,48.21057239999999],[16.3748196,48.210626700000006],[16.3750011,48.2107494],[16.3752404,48.2108614],[16.3753643,48.21091630000001],[16.3754516,48.21095819999999],[16.3755064,48.21101620000002],[16.3757114,48.211275400000005],[16.3758148,48.21139170000001],[16.3759236,48.21151370000001],[16.3760225,48.21162429999998]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Rotenturmstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"44028860","geometry":{"type":"LineString","coordinates":[[16.3734907,48.20964670000001],[16.3735838,48.20971850000004],[16.3736399,48.209761799999995],[16.3740622,48.21006539999996],[16.3741539,48.210131399999995]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Rotenturmstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"346394521","geometry":{"type":"LineString","coordinates":[[16.3734924,48.2097794],[16.3735797,48.209849599999984]]},"properties":{"highway":"footway","lit":"yes","name":"Rotenturmstraße","surface":"paving_stones"}},{"type":"Feature","id":"26419641","geometry":{"type":"LineString","coordinates":[[16.3731034,48.210226199999994],[16.3731456,48.210206],[16.3734046,48.21007019999999],[16.373437,48.21005310000001],[16.3734616,48.210025099999996],[16.3735797,48.209849599999984],[16.3736399,48.209761799999995]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Ertlgasse","surface":"asphalt"}},{"type":"Feature","id":"397704243","geometry":{"type":"LineString","coordinates":[[16.3743371,48.20855869999997],[16.3742734,48.20857000000001],[16.374142,48.2085969],[16.3740454,48.20862410000001],[16.3740323,48.20862890000001]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"destination","name":"Schulerstraße","oneway":"yes","sidewalk":"right","surface":"cobblestone"}},{"type":"Feature","id":"28642352","geometry":{"type":"LineString","coordinates":[[16.374142,48.2085969],[16.3741816,48.20864400000002]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof"}},{"type":"Feature","id":"353893669","geometry":{"type":"LineString","coordinates":[[16.3741975,48.2088019],[16.3740867,48.20867329999999]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00","tunnel":"building_passage"}},{"type":"Feature","id":"353893668","geometry":{"type":"LineString","coordinates":[[16.3740867,48.20867329999999],[16.3740454,48.20862410000001]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00"}},{"type":"Feature","id":"346394520","geometry":{"type":"LineString","coordinates":[[16.372777,48.209202800000014],[16.3728251,48.20923779999998]]},"properties":{"highway":"footway","lit":"yes","name":"Rotenturmstraße","surface":"asphalt"}},{"type":"Feature","id":"375938469","geometry":{"type":"LineString","coordinates":[[16.3728251,48.20923779999998],[16.3734924,48.2097794]]},"properties":{"covered":"arcade","highway":"footway","lit":"yes","name":"Rotenturmstraße"}},{"type":"Feature","id":"349488863","geometry":{"type":"LineString","coordinates":[[16.3732001,48.20988030000001],[16.3730876,48.209819400000015],[16.3728045,48.20961360000001],[16.3724427,48.209366200000005]]},"properties":{"highway":"residential","lanes":"2","lit":"yes","maxspeed":"30","name":"Kramergasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"437865756","geometry":{"type":"LineString","coordinates":[[16.3724505,48.208810399999976],[16.3726933,48.2091078],[16.3727459,48.20917750000004],[16.372777,48.209202800000014]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"311792001","geometry":{"type":"LineString","coordinates":[[16.3724505,48.208810399999976],[16.3722998,48.208880799999974]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"189149569","geometry":{"type":"LineString","coordinates":[[16.372777,48.209202800000014],[16.3728955,48.209160199999985]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"30","name":"Brandstätte","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"10130315","geometry":{"type":"LineString","coordinates":[[16.3728955,48.209160199999985],[16.3734907,48.20964670000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Rotenturmstraße","oneway":"yes","sidewalk":"right","surface":"concrete"}},{"type":"Feature","id":"343157907","geometry":{"type":"LineString","coordinates":[[16.3726684,48.20925030000001],[16.372777,48.209202800000014]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"30","name":"Brandstätte","oneway":"yes","surface":"concrete"}},{"type":"Feature","id":"345895351","geometry":{"type":"LineString","coordinates":[[16.3740323,48.20862890000001],[16.373763,48.20870790000001],[16.3735847,48.20877010000004],[16.373056,48.20903709999999],[16.372938,48.209094100000016],[16.3728955,48.209160199999985]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"destination","name":"Schulerstraße","oneway":"yes","sidewalk":"right","surface":"cobblestone"}},{"type":"Feature","id":"311792005","geometry":{"type":"LineString","coordinates":[[16.3723171,48.2086759],[16.3722497,48.20870479999999],[16.3722119,48.2087023]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"184019789","geometry":{"type":"LineString","coordinates":[[16.3702913,48.21909170000001],[16.3708955,48.21872020000001],[16.3712716,48.21850169999999],[16.3721871,48.2179697],[16.37226,48.217944700000004],[16.3723341,48.21790429999999],[16.3724353,48.21784020000001],[16.3724514,48.21780079999999],[16.3727164,48.2176173],[16.3728389,48.217582100000016],[16.3730119,48.217448899999994],[16.3730768,48.21738840000003],[16.3730775,48.2173349],[16.3736012,48.216809600000005],[16.3737184,48.21664400000003],[16.3737717,48.216616499999986],[16.373926,48.216396300000014],[16.3739467,48.216328900000036],[16.3740223,48.2162251],[16.3742583,48.215876699999995],[16.3745102,48.215497899999974],[16.3745809,48.21545900000001],[16.3747192,48.215258199999994],[16.3747269,48.215199799999965],[16.3750276,48.21476670000001],[16.3751707,48.21456739999999],[16.3752553,48.21452579999999],[16.3753237,48.21442239999999]]},"properties":{"bicycle":"yes","foot":"yes","highway":"path","motor_vehicle":"private","name":"Schiffamtsufer"}},{"type":"Feature","id":"8072674","geometry":{"type":"LineString","coordinates":[[16.3724895,48.215300100000036],[16.3717045,48.21479929999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Heinrichsgasse","oneway":"yes"}},{"type":"Feature","id":"124875749","geometry":{"type":"LineString","coordinates":[[16.3705284,48.215213800000015],[16.3712599,48.214510700000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Gonzagagasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"82235422","geometry":{"type":"LineString","coordinates":[[16.3717045,48.21479929999998],[16.3712599,48.214510700000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rudolfsplatz","oneway":"yes"}},{"type":"Feature","id":"354021079","geometry":{"type":"LineString","coordinates":[[16.3712842,48.217423800000006],[16.3715182,48.2172807],[16.3716002,48.217210300000005],[16.3719263,48.2169337],[16.3720276,48.21683469999999],[16.3728008,48.216079199999996],[16.3730219,48.21576909999999],[16.373662,48.21487139999999]]},"properties":{"bicycle":"use_sidepath","foot":"no","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"82235423","geometry":{"type":"LineString","coordinates":[[16.3708633,48.214241500000014],[16.3701483,48.213806500000004],[16.3701213,48.213786699999986],[16.3700781,48.2137405]]},"properties":{"highway":"residential","maxspeed":"30","name":"Heinrichsgasse","oneway":"yes"}},{"type":"Feature","id":"31261119","geometry":{"type":"LineString","coordinates":[[16.3712599,48.214510700000005],[16.3711201,48.2144213],[16.3708633,48.214241500000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rudolfsplatz","oneway":"yes"}},{"type":"Feature","id":"13275666","geometry":{"type":"LineString","coordinates":[[16.3717045,48.21479929999998],[16.3720166,48.21460300000001],[16.3727004,48.214128399999964],[16.3728593,48.2140292]]},"properties":{"highway":"living_street","name":"Rudolfsplatz","oneway":"yes"}},{"type":"Feature","id":"23148524","geometry":{"type":"LineString","coordinates":[[16.370934,48.2129453],[16.3705998,48.21297820000004],[16.3703265,48.2130037],[16.3701082,48.21301869999999]]},"properties":{"highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Passauer Platz","surface":"cobblestone"}},{"type":"Feature","id":"26088764","geometry":{"type":"LineString","coordinates":[[16.3700781,48.2137405],[16.3701098,48.213716500000004],[16.3701256,48.21369759999999],[16.3701528,48.21364999999997],[16.3701725,48.2136271],[16.3701958,48.21360720000001],[16.3702415,48.2135863],[16.3703123,48.21356509999998],[16.3720051,48.213129699999996],[16.3726391,48.2129573],[16.3727532,48.21293130000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salzgries","oneway":"yes"}},{"type":"Feature","id":"183960511","geometry":{"type":"LineString","coordinates":[[16.3701353,48.2130665],[16.3701082,48.21301869999999]]},"properties":{"highway":"footway","name":"Marienstiege"}},{"type":"Feature","id":"25949698","geometry":{"type":"LineString","coordinates":[[16.37019,48.213226599999985],[16.3701353,48.2130665]]},"properties":{"handrail:left":"yes","handrail:right":"yes","highway":"steps","incline":"up","name":"Marienstiege","step_count":"41"}},{"type":"Feature","id":"27122129","geometry":{"type":"LineString","coordinates":[[16.3720051,48.213129699999996],[16.3722582,48.21354439999999]]},"properties":{"highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Gölsdorfgasse","oneway":"yes"}},{"type":"Feature","id":"8080546","geometry":{"type":"LineString","coordinates":[[16.3703123,48.21356509999998],[16.37019,48.213226599999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Marienstiege"}},{"type":"Feature","id":"15243475","geometry":{"type":"LineString","coordinates":[[16.3708633,48.214241500000014],[16.3713045,48.214015399999994],[16.3722582,48.21354439999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Rudolfsplatz","oneway":"yes"}},{"type":"Feature","id":"124875756","geometry":{"type":"LineString","coordinates":[[16.3685376,48.21430979999997],[16.3691793,48.21460250000001],[16.3705284,48.215213800000015]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Werdertorgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"172206106","geometry":{"type":"LineString","coordinates":[[16.368947,48.21390769999999],[16.3685376,48.21430979999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börsegasse"}},{"type":"Feature","id":"337813348","geometry":{"type":"LineString","coordinates":[[16.3694232,48.213259600000015],[16.3696507,48.213153000000005]]},"properties":{"highway":"footway","name":"Am Gestade"}},{"type":"Feature","id":"337813349","geometry":{"type":"LineString","coordinates":[[16.3694121,48.2132646],[16.3694232,48.213259600000015]]},"properties":{"highway":"steps","incline":"up","name":"Am Gestade","step_count":"3"}},{"type":"Feature","id":"481200538","geometry":{"type":"LineString","coordinates":[[16.3692796,48.2133005],[16.3693167,48.213281300000034],[16.3693347,48.213276699999994],[16.3693925,48.21326930000001],[16.3694121,48.2132646]]},"properties":{"highway":"footway","name":"Am Gestade"}},{"type":"Feature","id":"35170716","geometry":{"type":"LineString","coordinates":[[16.3694122,48.21343409999997],[16.3694113,48.2134475],[16.3694074,48.21346399999999],[16.3693972,48.21348090000001],[16.3693788,48.21350029999999],[16.3693438,48.21353259999998],[16.3692515,48.2136199],[16.368947,48.21390769999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Börsegasse","oneway":"yes"}},{"type":"Feature","id":"25943352","geometry":{"type":"LineString","coordinates":[[16.3694122,48.21343409999997],[16.3694391,48.2134355],[16.3694635,48.21343890000003],[16.36952,48.21345629999999],[16.3695744,48.213478899999984],[16.3697283,48.21355080000001],[16.3697573,48.213564399999996],[16.3699879,48.21367169999999],[16.3700293,48.213694799999985],[16.370054,48.213715699999995],[16.3700781,48.2137405]]},"properties":{"access":"destination","bicycle":"yes","foot":"yes","highway":"residential","motor_vehicle":"destination","name":"Concordiaplatz","psv":"designated"}},{"type":"Feature","id":"11410182","geometry":{"type":"LineString","coordinates":[[16.36876,48.21937059999999],[16.3697079,48.218665499999986],[16.3703976,48.21826630000001],[16.3709349,48.21786240000003],[16.3715873,48.2173621],[16.371753,48.21723500000002],[16.3723259,48.21678800000001],[16.3728469,48.216321300000004],[16.3732596,48.2159116],[16.3734511,48.215654900000004],[16.3736001,48.215455299999974],[16.3742523,48.21453249999999],[16.3743815,48.214351100000016],[16.3747235,48.21392399999999],[16.3747778,48.213859799999966],[16.3751338,48.213478899999984],[16.3752948,48.213310500000006],[16.3755947,48.2130842],[16.376027,48.212799200000035],[16.376548,48.212535599999995]]},"properties":{"bicycle":"designated","foot":"yes","highway":"cycleway","layer":"-1","lcn":"yes","name":"Schanzelufer","segregated":"no","surface":"asphalt"}},{"type":"Feature","id":"23309134","geometry":{"type":"LineString","coordinates":[[16.3686885,48.2127184],[16.368534,48.212787100000014]]},"properties":{"bridge":"yes","cycleway":"opposite_lane","highway":"tertiary","layer":"1","maxspeed":"30","name":"Hohe Brücke","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"185253723","geometry":{"type":"LineString","coordinates":[[16.3699693,48.21287409999999],[16.3701082,48.21301869999999]]},"properties":{"highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Passauer Platz","surface":"cobblestone"}},{"type":"Feature","id":"183960509","geometry":{"type":"LineString","coordinates":[[16.3696507,48.213153000000005],[16.3699612,48.213012099999986]]},"properties":{"highway":"steps","incline":"up","name":"Am Gestade"}},{"type":"Feature","id":"183960510","geometry":{"type":"LineString","coordinates":[[16.3699612,48.213012099999986],[16.3701082,48.21301869999999]]},"properties":{"highway":"footway","name":"Am Gestade"}},{"type":"Feature","id":"4998694","geometry":{"type":"LineString","coordinates":[[16.3679711,48.21486440000004],[16.3678521,48.2148804],[16.3677377,48.214886199999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börseplatz","oneway":"no"}},{"type":"Feature","id":"5010645","geometry":{"type":"LineString","coordinates":[[16.3713361,48.216352],[16.3713031,48.216356399999995],[16.3712475,48.216346499999986],[16.3699543,48.21575150000001],[16.3686262,48.215159099999994],[16.3679711,48.21486440000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Eßlinggasse","oneway":"yes","source":"yahoo","wikidata":"Q19971190","wikipedia":"de:Esslinggasse"}},{"type":"Feature","id":"93629719","geometry":{"type":"LineString","coordinates":[[16.3678208,48.214944],[16.3677898,48.214913300000006],[16.3677377,48.214886199999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börseplatz","oneway":"yes"}},{"type":"Feature","id":"40856788","geometry":{"type":"LineString","coordinates":[[16.3688387,48.21385000000001],[16.3687524,48.2138894],[16.3686801,48.213942299999985],[16.3681527,48.214462]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börsegasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"406390904","geometry":{"type":"LineString","coordinates":[[16.3676537,48.21328099999997],[16.3675872,48.213192900000024]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Renngasse","oneway":"no"}},{"type":"Feature","id":"121805562","geometry":{"type":"LineString","coordinates":[[16.368947,48.21390769999999],[16.3688387,48.21385000000001],[16.3687522,48.21380830000001],[16.3676537,48.21328099999997]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Renngasse","oneway":"yes"}},{"type":"Feature","id":"113145683","geometry":{"type":"LineString","coordinates":[[16.3676537,48.21328099999997],[16.3670151,48.21391270000001]]},"properties":{"highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Wipplingerstraße","oneway":"yes"}},{"type":"Feature","id":"5010658","geometry":{"type":"LineString","coordinates":[[16.3700781,48.2137405],[16.3700006,48.21380160000001],[16.3699568,48.21384309999999],[16.3691793,48.21460250000001],[16.3686262,48.215159099999994],[16.3680889,48.2156339]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Neutorgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"8058874","geometry":{"type":"LineString","coordinates":[[16.3715243,48.212115900000015],[16.371554,48.212138100000004]]},"properties":{"highway":"footway","name":"Fischerstiege"}},{"type":"Feature","id":"185258177","geometry":{"type":"LineString","coordinates":[[16.3716038,48.21217390000001],[16.371554,48.212138100000004]]},"properties":{"highway":"steps","incline":"up","name":"Fischerstiege"}},{"type":"Feature","id":"185258176","geometry":{"type":"LineString","coordinates":[[16.3716038,48.21217390000001],[16.3716871,48.212213399999996]]},"properties":{"highway":"footway","name":"Fischerstiege"}},{"type":"Feature","id":"25949689","geometry":{"type":"LineString","coordinates":[[16.3718391,48.212366900000006],[16.3718075,48.2123225],[16.3716871,48.212213399999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fischerstiege","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"25949685","geometry":{"type":"LineString","coordinates":[[16.3718391,48.212366900000006],[16.3719383,48.2126743],[16.3720173,48.21304810000001],[16.3720051,48.213129699999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fischerstiege","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"4952857","geometry":{"type":"LineString","coordinates":[[16.3720356,48.211261500000035],[16.3721227,48.211323599999986],[16.3721665,48.2113521]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Marc-Aurel-Straße","sidewalk":"both"}},{"type":"Feature","id":"73227422","geometry":{"type":"LineString","coordinates":[[16.3721665,48.2113521],[16.3723698,48.21154050000001]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Marc-Aurel-Straße","sidewalk":"both"}},{"type":"Feature","id":"4952889","geometry":{"type":"LineString","coordinates":[[16.3727896,48.211995599999995],[16.3726437,48.2120238],[16.3722961,48.21215749999996],[16.3718391,48.212366900000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Sterngasse","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"4952878","geometry":{"type":"LineString","coordinates":[[16.3735449,48.210663100000005],[16.3731712,48.210856699999994],[16.3731297,48.21091130000002],[16.3722824,48.211297099999996],[16.3721665,48.2113521]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Hoher Markt","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"4952861","geometry":{"type":"LineString","coordinates":[[16.3720356,48.211261500000035],[16.3721517,48.21118100000001],[16.3722544,48.2111252],[16.372486,48.211003000000005],[16.3728813,48.21079640000002],[16.3730115,48.2107302]]},"properties":{"highway":"residential","lanes":"2","lcn":"yes","lit":"yes","maxspeed":"30","name":"Hoher Markt","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"8080532","geometry":{"type":"LineString","coordinates":[[16.3702903,48.21203169999998],[16.3703139,48.21206189999998],[16.3705462,48.212216100000006],[16.3709467,48.212456599999996]]},"properties":{"highway":"residential","maxspeed":"30","myth":"yes","name":"Stoß im Himmel","name:myth":"Stoß im Himmel","oneway":"yes","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/sagen_legenden_gugitz/himmel.html"}},{"type":"Feature","id":"113296985","geometry":{"type":"LineString","coordinates":[[16.3702613,48.2108188],[16.3698956,48.21046609999999],[16.3698889,48.21039630000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kleeblattgasse","oneway":"yes","sidewalk":"no","source:maxspeed":"AT:zone:30","vehicle":"delivery"}},{"type":"Feature","id":"4998704","geometry":{"type":"LineString","coordinates":[[16.3709007,48.21046039999999],[16.3702613,48.2108188]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kleeblattgasse","sidewalk":"no","source:maxspeed":"AT:zone:30","vehicle":"delivery"}},{"type":"Feature","id":"4998721","geometry":{"type":"LineString","coordinates":[[16.370945,48.21139980000001],[16.3717016,48.211037499999975]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Schultergasse","oneway":"yes","sidewalk":"no","surface":"cobblestone","vehicle":"delivery"}},{"type":"Feature","id":"4998698","geometry":{"type":"LineString","coordinates":[[16.3711878,48.2116661],[16.3711416,48.211612],[16.370945,48.21139980000001],[16.3708518,48.211303799999996],[16.3707557,48.21128429999999],[16.3700874,48.211541100000005]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Jordangasse","sidewalk":"no","surface":"cobblestone","vehicle":"delivery"}},{"type":"Feature","id":"8080531","geometry":{"type":"LineString","coordinates":[[16.3699693,48.21287409999999],[16.3703911,48.2128189],[16.3705057,48.212784399999975],[16.3705506,48.21276159999999],[16.3706649,48.212681499999974],[16.3709467,48.212456599999996],[16.3711393,48.212306600000005],[16.371495,48.21213040000001],[16.3715243,48.212115900000015],[16.3718263,48.21193650000001],[16.3719962,48.2117805],[16.3723698,48.21154050000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salvatorgasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"15243463","geometry":{"type":"LineString","coordinates":[[16.3684441,48.211452800000046],[16.3686626,48.211524],[16.368859,48.211552299999965],[16.368977,48.21156819999999],[16.3691745,48.211672799999974]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Drahtgasse","surface":"cobblestone"}},{"type":"Feature","id":"28007000","geometry":{"type":"LineString","coordinates":[[16.368859,48.211552299999965],[16.3687231,48.211669700000016],[16.3687267,48.21175600000004],[16.3687862,48.211839999999995],[16.3685648,48.21196019999999]]},"properties":{"bicycle":"no","highway":"pedestrian","name":"Ledererhof","note":"zu eng für Fahrzeuge, von der Färbergasse aus ist der Ledererhof es als Fuzo ohne Ausnahmen beschildert","surface":"cobblestone"}},{"type":"Feature","id":"8072723","geometry":{"type":"LineString","coordinates":[[16.368068,48.211657599999995],[16.3682359,48.2117068],[16.3685648,48.21196019999999],[16.3691465,48.21240879999999],[16.3692244,48.21248610000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Färbergasse","oneway":"yes"}},{"type":"Feature","id":"23148518","geometry":{"type":"LineString","coordinates":[[16.3694105,48.212397099999976],[16.3699693,48.21287409999999]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Schwertgasse","oneway":"yes","oneway:bicycle":"no","surface":"cobblestone"}},{"type":"Feature","id":"8072685","geometry":{"type":"LineString","coordinates":[[16.3701508,48.21209269999997],[16.3700902,48.21202790000001],[16.3700653,48.21200210000001],[16.3697581,48.211684399999996]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Fütterergasse","surface":"cobblestone"}},{"type":"Feature","id":"307625165","geometry":{"type":"LineString","coordinates":[[16.3684796,48.211170400000015],[16.3684195,48.211194000000006]]},"properties":{"highway":"residential","lit":"no","maxheight":"3.1","maxspeed":"30","motor_vehicle":"private","name":"Schulhof","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30","surface":"cobblestone","tunnel":"building_passage"}},{"type":"Feature","id":"15243471","geometry":{"type":"LineString","coordinates":[[16.3690959,48.21099610000002],[16.369144,48.21106839999999],[16.3692616,48.21128870000001],[16.3694876,48.2115326]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","maxheight":"3.1","name":"Parisergasse","surface":"cobblestone"}},{"type":"Feature","id":"4998714","geometry":{"type":"LineString","coordinates":[[16.3720356,48.211261500000035],[16.3719731,48.21132410000001],[16.3712908,48.21161319999999],[16.3711878,48.2116661],[16.3708174,48.21181949999999],[16.3702903,48.21203169999998],[16.3701508,48.21209269999997],[16.3696156,48.2123052],[16.3694105,48.212397099999976],[16.3693059,48.21244709999999],[16.3692244,48.21248610000001],[16.3686885,48.2127184]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Wipplingerstraße","oneway":"yes","oneway:bicycle":"no","source":"geoimage"}},{"type":"Feature","id":"307625166","geometry":{"type":"LineString","coordinates":[[16.3684195,48.211194000000006],[16.3682668,48.211254]]},"properties":{"highway":"residential","lit":"yes","maxheight":"3.1","maxspeed":"30","motor_vehicle":"private","name":"Schulhof","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"190494839","geometry":{"type":"LineString","coordinates":[[16.3682668,48.211254],[16.3684441,48.211452800000046],[16.368068,48.211657599999995],[16.3675488,48.2112611],[16.367113,48.210937400000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Am Hof","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"29068009","geometry":{"type":"LineString","coordinates":[[16.3689607,48.2104717],[16.3690312,48.21044269999999]]},"properties":{"bicycle":"no","covered":"yes","highway":"pedestrian","lit":"yes","name":"Tuchlaubenhof","surface":"paving_stones"}},{"type":"Feature","id":"349498511","geometry":{"type":"LineString","coordinates":[[16.3690312,48.21044269999999],[16.3691609,48.2103755]]},"properties":{"bicycle":"no","highway":"pedestrian","lit":"yes","name":"Tuchlaubenhof","surface":"paving_stones","tunnel":"building_passage"}},{"type":"Feature","id":"185196004","geometry":{"type":"LineString","coordinates":[[16.3691944,48.2106689],[16.3691425,48.21066780000001],[16.3690873,48.2106493],[16.3689607,48.2104717]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","motor_vehicle":"private","name":"Seitzergasse","surface":"paving_stones"}},{"type":"Feature","id":"172986927","geometry":{"type":"LineString","coordinates":[[16.367113,48.210937400000006],[16.3676976,48.210571500000015]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Am Hof","oneway":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"15243469","geometry":{"type":"LineString","coordinates":[[16.3691944,48.2106689],[16.3692437,48.21076069999998],[16.3692407,48.210801300000014],[16.3692225,48.21085120000001],[16.3691881,48.210895300000004],[16.3691498,48.2109614],[16.3690959,48.21099610000002],[16.3686351,48.2111094],[16.3684796,48.211170400000015]]},"properties":{"highway":"residential","lit":"yes","maxheight":"3.1","maxspeed":"30","motor_vehicle":"private","name":"Schulhof","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"8072684","geometry":{"type":"LineString","coordinates":[[16.3692684,48.21065920000001],[16.3696612,48.210902000000004],[16.3697878,48.21102339999999],[16.3699637,48.211313200000006],[16.3699598,48.21134120000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Kurrentgasse","surface":"cobblestone"}},{"type":"Feature","id":"8072689","geometry":{"type":"LineString","coordinates":[[16.3676976,48.210571500000015],[16.3677877,48.210645400000004],[16.3682668,48.211254]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Am Hof","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"461378953","geometry":{"type":"LineString","coordinates":[[16.3722998,48.208880799999974],[16.3721669,48.20894200000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Jasomirgottstraße","surface":"paving_stones"}},{"type":"Feature","id":"9226410","geometry":{"type":"LineString","coordinates":[[16.3701668,48.20977479999999],[16.3699346,48.210052700000006],[16.3699137,48.21011579999998]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Milchgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"9226587","geometry":{"type":"LineString","coordinates":[[16.3720634,48.210643800000014],[16.371642,48.210334200000005],[16.3712557,48.20990130000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Wildpretmarkt","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"9226541","geometry":{"type":"LineString","coordinates":[[16.3716207,48.21097950000001],[16.3720634,48.210643800000014],[16.3724699,48.2104257],[16.372987,48.2101567]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Landskrongasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4952856","geometry":{"type":"LineString","coordinates":[[16.3720356,48.211261500000035],[16.371951,48.2112023],[16.371915,48.211177099999986],[16.3717016,48.211037499999975],[16.3716207,48.21097950000001],[16.3709007,48.21046039999999],[16.3706487,48.210304199999996],[16.3705516,48.210252800000035]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Tuchlauben","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4952816","geometry":{"type":"LineString","coordinates":[[16.3705516,48.210252800000035],[16.3706296,48.21019380000001],[16.3706651,48.21016660000001],[16.3708211,48.210098500000015],[16.3712557,48.20990130000001],[16.3716726,48.2097162],[16.3717849,48.209664600000025],[16.3718675,48.209653],[16.3724427,48.209366200000005],[16.3726684,48.20925030000001]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Brandstätte","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"9226381","geometry":{"type":"LineString","coordinates":[[16.3709145,48.20926670000003],[16.3705122,48.209503299999994]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Freisingergasse","note":"left sidewalk narrowed at end positions of street","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"4998730","geometry":{"type":"LineString","coordinates":[[16.3716726,48.2097162],[16.3716266,48.209674800000016],[16.371505,48.209622800000005],[16.3711829,48.20941490000001],[16.3709145,48.20926670000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bauernmarkt","oneway":"yes","sidewalk":"both","source":"yahoo"}},{"type":"Feature","id":"9226639","geometry":{"type":"LineString","coordinates":[[16.3718675,48.209653],[16.3724956,48.20991889999999],[16.3727685,48.21005099999999],[16.372987,48.2101567],[16.3731034,48.210226199999994],[16.373425,48.2104947]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bauernmarkt","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4998722","geometry":{"type":"LineString","coordinates":[[16.3705516,48.210252800000035],[16.3705394,48.21009040000001],[16.3704142,48.20992080000002],[16.3703132,48.2098067],[16.3702142,48.20972760000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Kühfußgasse"}},{"type":"Feature","id":"4998715","geometry":{"type":"LineString","coordinates":[[16.3718458,48.20843180000003],[16.3714245,48.20863320000001],[16.370883,48.20889199999999],[16.3708267,48.208929299999994]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Goldschmiedgasse","oneway":"yes"}},{"type":"Feature","id":"4998724","geometry":{"type":"LineString","coordinates":[[16.3708267,48.208929299999994],[16.3704111,48.20915830000001],[16.3701791,48.20928649999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Goldschmiedgasse","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"27204217","geometry":{"type":"LineString","coordinates":[[16.3709145,48.20926670000003],[16.3708927,48.209210799999994],[16.3708524,48.20901470000001],[16.3708267,48.208929299999994]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Freisingergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"345649138","geometry":{"type":"LineString","coordinates":[[16.3721669,48.20894200000001],[16.3711829,48.20941490000001]]},"properties":{"highway":"living_street","lit":"yes","name":"Jasomirgottstraße","sidewalk":"both"}},{"type":"Feature","id":"29066935","geometry":{"type":"LineString","coordinates":[[16.3677076,48.20984949999999],[16.3679435,48.21000599999999]]},"properties":{"highway":"pedestrian","name":"Körblergasse"}},{"type":"Feature","id":"250748306","geometry":{"type":"LineString","coordinates":[[16.3689607,48.2104717],[16.3686249,48.2099662]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Seitzergasse","surface":"paving_stones"}},{"type":"Feature","id":"349498512","geometry":{"type":"LineString","coordinates":[[16.3697057,48.2100839],[16.369756,48.21005869999999]]},"properties":{"bicycle":"no","covered":"yes","highway":"pedestrian","lit":"yes","name":"Tuchlaubenhof","surface":"paving_stones"}},{"type":"Feature","id":"4998726","geometry":{"type":"LineString","coordinates":[[16.3699137,48.21011579999998],[16.3698985,48.21018169999999],[16.3695864,48.21042829999999],[16.3692684,48.21065920000001],[16.3691944,48.2106689]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","motor_vehicle":"private","name":"Steindlgasse","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"349495913","geometry":{"type":"LineString","coordinates":[[16.3698889,48.21039630000001],[16.3701196,48.21016739999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kleeblattgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"cobblestone","vehicle":"delivery"}},{"type":"Feature","id":"25950172","geometry":{"type":"LineString","coordinates":[[16.3699137,48.21011579999998],[16.3701196,48.21016739999999],[16.3703746,48.210227100000026],[16.370461,48.21024439999999],[16.3705516,48.210252800000035]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Tuchlauben","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"25950054","geometry":{"type":"LineString","coordinates":[[16.367483,48.2102946],[16.3677479,48.210494100000005]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Irisgasse"}},{"type":"Feature","id":"349498513","geometry":{"type":"LineString","coordinates":[[16.3691609,48.2103755],[16.3697057,48.2100839]]},"properties":{"bicycle":"no","covered":"building_passage","highway":"pedestrian","lit":"yes","name":"Tuchlaubenhof","surface":"paving_stones"}},{"type":"Feature","id":"29067329","geometry":{"type":"LineString","coordinates":[[16.3671985,48.209343200000035],[16.3675989,48.209622499999995]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Neubadgasse","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"30322216","geometry":{"type":"LineString","coordinates":[[16.3701668,48.20977479999999],[16.3700265,48.209704200000004],[16.369596,48.209457799999996],[16.3695651,48.20940709999999],[16.3695748,48.209363800000006],[16.3696247,48.209280699999994],[16.369648,48.209247500000004],[16.3696875,48.209220500000015]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Petersplatz","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"30322208","geometry":{"type":"LineString","coordinates":[[16.3696875,48.209220500000015],[16.3697564,48.209197699999976],[16.3698256,48.20917],[16.3698981,48.20916630000002],[16.3699733,48.209189400000014],[16.3701791,48.20928649999999],[16.3705122,48.209503299999994],[16.3702142,48.20972760000001],[16.3701668,48.20977479999999]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Petersplatz","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"8043984","geometry":{"type":"LineString","coordinates":[[16.3685027,48.20941909999999],[16.3686379,48.2095717],[16.3686813,48.209612600000014],[16.3688515,48.20969389999999]]},"properties":{"bicycle":"no","highway":"pedestrian","lit":"yes","name":"Tuchlauben","source":"geoimage"}},{"type":"Feature","id":"8084084","geometry":{"type":"LineString","coordinates":[[16.3688515,48.20969389999999],[16.3686249,48.2099662],[16.3683127,48.210139699999985],[16.3681011,48.210254099999986],[16.3678448,48.21040579999999],[16.3677479,48.210494100000005],[16.3676976,48.210571500000015]]},"properties":{"bicycle":"yes","foot":"yes","highway":"pedestrian","lcn":"yes","lit":"yes","myth":"yes","name":"Bognergasse","name:myth":"Zum Totenkopf","surface":"paving_stones","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/sagen_legenden_gugitz/zum_totenkopf.html","wikidata":"Q15789208","wikipedia":"de:Bognergasse"}},{"type":"Feature","id":"30322084","geometry":{"type":"LineString","coordinates":[[16.3688515,48.20969389999999],[16.369756,48.21005869999999],[16.3699137,48.21011579999998]]},"properties":{"bicycle":"yes","foot":"yes","highway":"pedestrian","lcn":"yes","lit":"yes","name":"Tuchlauben","surface":"paving_stones"}},{"type":"Feature","id":"4998699","geometry":{"type":"LineString","coordinates":[[16.3691736,48.20898360000001],[16.3693269,48.20901739999999],[16.3694951,48.20912360000003],[16.3696287,48.2092164],[16.3696875,48.209220500000015]]},"properties":{"bicycle":"yes","emergency":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","myth":"yes","name":"Jungferngasse","name:myth":"Die Sage vom Jungferngässchen und dem Wiener Don Juan","oneway":"yes","psv":"yes","sidewalk":"both","taxi":"yes","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/1_bezirk/Jungferngaesschen.html"}},{"type":"Feature","id":"4583430","geometry":{"type":"LineString","coordinates":[[16.3685027,48.20941909999999],[16.3690528,48.20907110000002],[16.3691736,48.20898360000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Graben","wikipedia":"de:Graben (Wien)"}},{"type":"Feature","id":"93629726","geometry":{"type":"LineString","coordinates":[[16.3677377,48.214886199999995],[16.3676818,48.2148608],[16.3672151,48.21464710000001],[16.3668139,48.21446340000003],[16.3666576,48.21441459999997],[16.3665387,48.214390500000036],[16.3664204,48.214361199999985],[16.3663697,48.21435009999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börseplatz","oneway":"yes"}},{"type":"Feature","id":"30072788","geometry":{"type":"LineString","coordinates":[[16.3665387,48.214390500000036],[16.3664709,48.21445299999999],[16.3664207,48.21448379999998],[16.3657974,48.21510740000002],[16.3657181,48.21518900000001],[16.3657283,48.215221299999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wipplingerstraße","oneway":"yes"}},{"type":"Feature","id":"31725051","geometry":{"type":"LineString","coordinates":[[16.3668157,48.21593359999997],[16.3669045,48.21584139999999],[16.3669553,48.21578869999996],[16.3670095,48.21573240000001],[16.3671202,48.21561750000001],[16.3678208,48.214944],[16.3678796,48.214906499999984],[16.3679711,48.21486440000004],[16.3683086,48.21453389999999],[16.3685376,48.21430979999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börsegasse","oneway":"yes"}},{"type":"Feature","id":"10130488","geometry":{"type":"LineString","coordinates":[[16.3663697,48.21435009999999],[16.3657288,48.2149733],[16.3656121,48.2150953],[16.3655609,48.21514880000001],[16.3655101,48.21520509999999],[16.3654289,48.21529509999999]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"30","name":"Wipplingerstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"25950273","geometry":{"type":"LineString","coordinates":[[16.368534,48.212787100000014],[16.3678244,48.2130751],[16.3675872,48.213192900000024],[16.3668802,48.21385240000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"30","name":"Wipplingerstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"113145685","geometry":{"type":"LineString","coordinates":[[16.3662418,48.21355449999999],[16.3668802,48.21385240000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rockhgasse","oneway":"yes"}},{"type":"Feature","id":"469205306","geometry":{"type":"LineString","coordinates":[[16.3657431,48.2140287],[16.3662418,48.21355449999999],[16.3671131,48.2126676]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hohenstaufengasse","oneway":"yes"}},{"type":"Feature","id":"468761498","geometry":{"type":"LineString","coordinates":[[16.3669651,48.2124886],[16.3670459,48.21245450000001],[16.3673209,48.21224089999998],[16.3673045,48.21223250000003]]},"properties":{"highway":"footway","name":"Wächtergasse"}},{"type":"Feature","id":"172206108","geometry":{"type":"LineString","coordinates":[[16.3668802,48.21385240000001],[16.3670151,48.21391270000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börseplatz","oneway":"no"}},{"type":"Feature","id":"10130730","geometry":{"type":"LineString","coordinates":[[16.3668802,48.21385240000001],[16.3667938,48.21397429999999],[16.3664618,48.2142839],[16.3663697,48.21435009999999]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"30","name":"Börseplatz","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"406390894","geometry":{"type":"LineString","coordinates":[[16.3670151,48.21391270000001],[16.3670441,48.213931099999996],[16.3681048,48.21444149999999],[16.3681527,48.214462],[16.3683086,48.21453389999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börseplatz","oneway":"yes"}},{"type":"Feature","id":"30072665","geometry":{"type":"LineString","coordinates":[[16.3643762,48.213907000000006],[16.3653862,48.21441039999999]]},"properties":{"highway":"pedestrian","name":"Schottenbastei"}},{"type":"Feature","id":"113300209","geometry":{"type":"LineString","coordinates":[[16.3649157,48.21484829999997],[16.3653862,48.21441039999999],[16.3655607,48.214241000000044],[16.3657064,48.21409790000004],[16.3657431,48.2140287]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hohenstaufengasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"35306132","geometry":{"type":"LineString","coordinates":[[16.3638942,48.214366900000016],[16.3649157,48.21484829999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"10130642","geometry":{"type":"LineString","coordinates":[[16.3647603,48.2149934],[16.3648509,48.21491019999999],[16.3649157,48.21484829999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hohenstaufengasse","source":"yahoo"}},{"type":"Feature","id":"5010654","geometry":{"type":"LineString","coordinates":[[16.3649157,48.21484829999997],[16.3654627,48.2151035],[16.3655609,48.21514880000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"35302221","geometry":{"type":"LineString","coordinates":[[16.3646003,48.21513690000003],[16.3646649,48.2150757],[16.3647603,48.2149934]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Hohenstaufengasse","source":"yahoo"}},{"type":"Feature","id":"8080524","geometry":{"type":"LineString","coordinates":[[16.3662418,48.21355449999999],[16.3659007,48.2133948],[16.365851,48.21338159999999],[16.3657922,48.21339119999999],[16.3650531,48.21367279999998]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rockhgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"30072662","geometry":{"type":"LineString","coordinates":[[16.3643762,48.213907000000006],[16.3645639,48.21375130000001],[16.3648101,48.21355169999998]]},"properties":{"highway":"pedestrian","name":"Heßgasse"}},{"type":"Feature","id":"8080525","geometry":{"type":"LineString","coordinates":[[16.3643762,48.213907000000006],[16.364351,48.21393119999999],[16.3638942,48.214366900000016]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Heßgasse","oneway":"yes"}},{"type":"Feature","id":"9536246","geometry":{"type":"LineString","coordinates":[[16.3636384,48.214607099999995],[16.3636855,48.2145634],[16.3637263,48.21452450000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Heßgasse"}},{"type":"Feature","id":"442794472","geometry":{"type":"LineString","coordinates":[[16.3635707,48.21467000000001],[16.3636384,48.214607099999995]]},"properties":{"highway":"residential","maxspeed":"50","name":"Heßgasse"}},{"type":"Feature","id":"442794473","geometry":{"type":"LineString","coordinates":[[16.3631112,48.2151288],[16.3635707,48.21467000000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Heßgasse"}},{"type":"Feature","id":"441635691","geometry":{"type":"LineString","coordinates":[[16.3646003,48.21513690000003],[16.3635707,48.21467000000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"35284028","geometry":{"type":"LineString","coordinates":[[16.3630061,48.21396630000001],[16.3638942,48.214366900000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring"}},{"type":"Feature","id":"113300211","geometry":{"type":"LineString","coordinates":[[16.3638942,48.214366900000016],[16.3638196,48.21443690000001],[16.3637735,48.2144802],[16.3637263,48.21452450000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Heßgasse"}},{"type":"Feature","id":"29067252","geometry":{"type":"LineString","coordinates":[[16.3630941,48.212681],[16.3629435,48.21263060000001]]},"properties":{"highway":"steps","incline":"up","name":"Mölker Steig"}},{"type":"Feature","id":"44028858","geometry":{"type":"LineString","coordinates":[[16.3632246,48.213254500000005],[16.363544,48.21293559999998]]},"properties":{"cycleway":"lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Schottengasse"}},{"type":"Feature","id":"8900171","geometry":{"type":"LineString","coordinates":[[16.3663697,48.21435009999999],[16.3657431,48.2140287],[16.3652688,48.21378390000001],[16.3650531,48.21367279999998],[16.3648101,48.21355169999998],[16.3646935,48.213499799999994],[16.3645673,48.21345600000001],[16.3638287,48.21308020000001],[16.363544,48.21293559999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Helferstorferstraße","oneway":"yes"}},{"type":"Feature","id":"8901329","geometry":{"type":"LineString","coordinates":[[16.3632246,48.213254500000005],[16.3643035,48.21386580000001],[16.3643762,48.213907000000006]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schottenbastei","oneway":"yes"}},{"type":"Feature","id":"44028857","geometry":{"type":"LineString","coordinates":[[16.3630745,48.21317379999999],[16.3632246,48.213254500000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"8072718","geometry":{"type":"LineString","coordinates":[[16.3663435,48.21126509999999],[16.3664086,48.21131359999998],[16.3670027,48.21163269999997],[16.367593,48.21202099999999],[16.3680792,48.21235760000002],[16.3684937,48.212657699999994],[16.3690092,48.2130889],[16.3692796,48.2133005],[16.3693295,48.21333820000001],[16.3693758,48.21337190000003],[16.3693942,48.21338700000001],[16.3694049,48.21340040000001],[16.3694113,48.21341810000004],[16.3694122,48.21343409999997]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","maxheight":"default","maxspeed":"30","name":"Tiefer Graben","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"406390906","geometry":{"type":"LineString","coordinates":[[16.3675872,48.213192900000024],[16.367559,48.213128900000015],[16.3674582,48.213031099999995],[16.3671131,48.2126676],[16.3670215,48.212557799999985],[16.3669651,48.2124886],[16.3664869,48.2120961]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Renngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"113145641","geometry":{"type":"LineString","coordinates":[[16.3657801,48.21151069999999],[16.3658713,48.21146970000001],[16.3662555,48.211297],[16.3663435,48.21126509999999]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Freyung","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"25950117","geometry":{"type":"LineString","coordinates":[[16.3675471,48.210252999999994],[16.3673466,48.210119099999986],[16.3670475,48.210050800000005],[16.3666393,48.20975709999996]]},"properties":{"foot":"yes","highway":"pedestrian","lit":"yes","name":"Haarhof","surface":"paving_stones"}},{"type":"Feature","id":"27368746","geometry":{"type":"LineString","coordinates":[[16.3663435,48.21126509999999],[16.3664302,48.211229599999996],[16.3666754,48.21113120000001],[16.3669684,48.211012900000014],[16.367113,48.210937400000006]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Heidenschuß","oneway":"no"}},{"type":"Feature","id":"4998711","geometry":{"type":"LineString","coordinates":[[16.3686379,48.2095717],[16.3679435,48.21000599999999],[16.3675471,48.210252999999994],[16.367483,48.2102946],[16.3666177,48.21085199999999],[16.3665837,48.21093719999999],[16.3666754,48.21113120000001]]},"properties":{"foot":"yes","highway":"pedestrian","lit":"yes","name":"Naglergasse"}},{"type":"Feature","id":"113145639","geometry":{"type":"LineString","coordinates":[[16.3664869,48.2120961],[16.3657801,48.21151069999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Renngasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"184553838","geometry":{"type":"LineString","coordinates":[[16.3656938,48.21129389999999],[16.3654738,48.211081199999995],[16.3653823,48.21100279999999],[16.3651487,48.2107958],[16.3650358,48.21076069999998]]},"properties":{"bicycle":"dismount","foot":"permissive","highway":"footway","name":"Ferstelpassage","tunnel":"building_passage"}},{"type":"Feature","id":"25950853","geometry":{"type":"LineString","coordinates":[[16.3656311,48.21041249999999],[16.3660781,48.21016270000001],[16.3662067,48.21007770000003],[16.3665856,48.209796900000015]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Wallnerstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4998710","geometry":{"type":"LineString","coordinates":[[16.3663435,48.21126509999999],[16.3662743,48.211186],[16.3661875,48.21108290000001],[16.3659006,48.21072659999999],[16.3656979,48.21048909999996],[16.3656311,48.21041249999999],[16.365392,48.210153899999995]]},"properties":{"highway":"residential","historic_context:de":"im Jahr 1320 erstmals erwähnt, ...https://www.wien.gv.at/wiki/index.php?title=Strauchgasse","historic_name":"Strauchgässel","lit":"yes","maxspeed":"30","name":"Strauchgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"31131383","geometry":{"type":"LineString","coordinates":[[16.3655338,48.209964000000014],[16.3660781,48.21016270000001]]},"properties":{"cycleway":"opposite","highway":"residential","historic_context:de":"seit 1985, nach Leopold Figl, ...https://www.wien.gv.at/wiki/index.php?title=Leopold-Figl-Gasse","lit":"yes","maxspeed":"30","name":"Leopold-Figl-Gasse","old_name":"Regierungsgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"170511029","geometry":{"type":"LineString","coordinates":[[16.364477,48.21160710000001],[16.3643614,48.21180179999999],[16.3642437,48.21194750000001],[16.3641875,48.211978999999985],[16.3641107,48.2119869]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Freyung","oneway":"yes"}},{"type":"Feature","id":"4998693","geometry":{"type":"LineString","coordinates":[[16.3641616,48.21205370000001],[16.3641107,48.2119869]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Teinfaltstraße","oneway":"yes"}},{"type":"Feature","id":"30062411","geometry":{"type":"LineString","coordinates":[[16.3643614,48.21180179999999],[16.3643849,48.21184029999998],[16.364451,48.21186929999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Freyung","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"30323418","geometry":{"type":"LineString","coordinates":[[16.363544,48.21293559999998],[16.363576,48.21287220000002],[16.3639914,48.21230370000001],[16.3641616,48.21205370000001]]},"properties":{"bicycle":"yes","cycleway":"opposite_track","highway":"residential","lit":"yes","maxspeed":"30","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"455386120","geometry":{"type":"LineString","coordinates":[[16.3648643,48.210923200000025],[16.3641025,48.21062090000001]]},"properties":{"highway":"residential","maxspeed":"20","name":"Bankgasse","note":"Begegnungszone","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4998733","geometry":{"type":"LineString","coordinates":[[16.3633468,48.21088499999999],[16.362891,48.21151630000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rosengasse","oneway":"yes"}},{"type":"Feature","id":"28007162","geometry":{"type":"LineString","coordinates":[[16.3641616,48.21205370000001],[16.364451,48.21186929999999],[16.3645051,48.21185349999999],[16.3646588,48.21180670000001],[16.3648306,48.21177460000001],[16.3651732,48.211707399999966],[16.3654043,48.21165669999999],[16.3657801,48.21151069999999]]},"properties":{"bicycle":"yes","cycleway":"opposite_track","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Freyung","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"8107355","geometry":{"type":"LineString","coordinates":[[16.3640034,48.20995540000001],[16.3641033,48.209980599999994],[16.3652061,48.21041020000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Landhausgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4998709","geometry":{"type":"LineString","coordinates":[[16.3636535,48.21044269999999],[16.3640034,48.20995540000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Petrarcagasse","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"4998718","geometry":{"type":"LineString","coordinates":[[16.3640034,48.20995540000001],[16.3631965,48.20970840000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Minoritenplatz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"29065085","geometry":{"type":"LineString","coordinates":[[16.3631965,48.20970840000001],[16.362903,48.21013909999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Abraham-a-Sancta-Clara-Gasse","oneway":"yes"}},{"type":"Feature","id":"26153832","geometry":{"type":"LineString","coordinates":[[16.365392,48.210153899999995],[16.3653398,48.21022579999999],[16.3652061,48.21041020000001],[16.3649833,48.21074390000001],[16.3648643,48.210923200000025],[16.3647017,48.211164999999966],[16.3645902,48.211335599999984],[16.364477,48.21160710000001]]},"properties":{"cycleway":"opposite","highway":"residential","historic_context:de":"Wie schon ihr Name verrät war sie einst Sitz des landständischen Adels. Ohne Zweifel ist sie eine der ältesten Straßen Wiens, ... https://www.wien.gv.at/wiki/index.php?title=Herrengasse","historic_name":"Hochstraße","maxspeed":"20","name":"Herrengasse","note":"Begegnungszone","old_name":"Freiheitsgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"4998720","geometry":{"type":"LineString","coordinates":[[16.3641025,48.21062090000001],[16.3638318,48.21051349999999],[16.3636535,48.21044269999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bankgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4998719","geometry":{"type":"LineString","coordinates":[[16.3635526,48.210960899999975],[16.3638318,48.21051349999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schenkenstraße","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"4998713","geometry":{"type":"LineString","coordinates":[[16.3665856,48.209796900000015],[16.3664291,48.20972740000002],[16.3658797,48.209503100000006]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"20","name":"Fahnengasse","note":"Begegnungszone","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","wikidata":"Q19971200","wikipedia":"de:Fahnengasse"}},{"type":"Feature","id":"4998728","geometry":{"type":"LineString","coordinates":[[16.3678568,48.208954000000034],[16.3671985,48.209343200000035],[16.3666393,48.20975709999996],[16.3665856,48.209796900000015]]},"properties":{"foot":"yes","highway":"pedestrian","lit":"yes","name":"Wallnerstraße","surface":"paving_stones"}},{"type":"Feature","id":"4998731","geometry":{"type":"LineString","coordinates":[[16.3655338,48.209964000000014],[16.3654466,48.2099168],[16.3645071,48.20953180000001],[16.3644166,48.20949999999999]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"30","name":"Leopold-Figl-Gasse","vehicle":"private"}},{"type":"Feature","id":"29065101","geometry":{"type":"LineString","coordinates":[[16.3640034,48.20995540000001],[16.3644166,48.20949999999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Minoritenplatz","surface":"cobblestone"}},{"type":"Feature","id":"4998700","geometry":{"type":"LineString","coordinates":[[16.3631965,48.20970840000001],[16.3634533,48.2092634],[16.3634069,48.209184600000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Minoritenplatz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"326786857","geometry":{"type":"LineString","coordinates":[[16.3641381,48.20857459999996],[16.364256,48.20855059999997]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Bruno-Kreisky-Gasse","surface":"cobblestone"}},{"type":"Feature","id":"4998701","geometry":{"type":"LineString","coordinates":[[16.3634069,48.209184600000015],[16.3628124,48.20886010000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Metastasiogasse","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"8052916","geometry":{"type":"LineString","coordinates":[[16.374831,48.208406999999994],[16.3751996,48.20878910000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Strobelgasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"326369577","geometry":{"type":"LineString","coordinates":[[16.374151,48.20841419999999],[16.3742215,48.20839479999998]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"5930426","geometry":{"type":"LineString","coordinates":[[16.3747199,48.20844979999998],[16.3745578,48.20824759999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Domgasse","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"326369578","geometry":{"type":"LineString","coordinates":[[16.3739886,48.208288100000004],[16.374151,48.20841419999999],[16.3743371,48.20855869999997]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"311792006","geometry":{"type":"LineString","coordinates":[[16.3719075,48.208217399999995],[16.3720796,48.20837990000001],[16.3723171,48.2086759],[16.3724505,48.208810399999976]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"345867042","geometry":{"type":"LineString","coordinates":[[16.3745578,48.20824759999999],[16.3747838,48.208151799999996],[16.3749432,48.208084499999984],[16.3751478,48.20797369999997],[16.3752415,48.20794999999998],[16.3756772,48.20777910000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Domgasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"311792003","geometry":{"type":"LineString","coordinates":[[16.3738372,48.208102199999985],[16.3739291,48.208018400000014]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"8043885","geometry":{"type":"LineString","coordinates":[[16.3771326,48.207622600000036],[16.3770555,48.20765639999999],[16.3764752,48.207888],[16.3762798,48.20799650000001],[16.3759438,48.20811180000001],[16.3755134,48.20822529999998],[16.3751119,48.20831240000001],[16.374831,48.208406999999994],[16.3747199,48.20844979999998]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Schulerstraße","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"24774407","geometry":{"type":"LineString","coordinates":[[16.3730102,48.20758939999999],[16.3729154,48.20762250000004],[16.3720725,48.207877499999995]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Singerstraße","noexit":"yes","oneway":"no","sidewalk":"both"}},{"type":"Feature","id":"26154417","geometry":{"type":"LineString","coordinates":[[16.3731465,48.207962899999984],[16.3729154,48.20762250000004]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Churhausgasse","sidewalk":"no","surface":"paving_stones"}},{"type":"Feature","id":"7830283","geometry":{"type":"LineString","coordinates":[[16.3734907,48.20964670000001],[16.3735456,48.20962129999998],[16.3744895,48.209142799999995],[16.374575,48.2090968],[16.3750324,48.20886999999999],[16.3751996,48.20878910000002],[16.3753556,48.20872880000002],[16.3762524,48.208402500000005],[16.3770346,48.208159300000034],[16.377315,48.2080746],[16.3773686,48.2080574],[16.3774491,48.2080292],[16.3775283,48.2080062],[16.378412,48.20775020000002],[16.3785551,48.207707200000016],[16.3787531,48.207653600000015]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Wollzeile","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone","surface":"asphalt","tourist_bus":"no"}},{"type":"Feature","id":"26154535","geometry":{"type":"LineString","coordinates":[[16.3720725,48.207877499999995],[16.3718536,48.2079512]]},"properties":{"highway":"pedestrian","is_in":"Europe,Austria,Vienna,Wien,Innere Stadt","lit":"yes","name":"Singerstraße"}},{"type":"Feature","id":"311792000","geometry":{"type":"LineString","coordinates":[[16.3718458,48.20843180000003],[16.3720796,48.20837990000001],[16.3723653,48.2082819],[16.3728528,48.2081355],[16.3731952,48.20803939999999],[16.3737227,48.208060399999965],[16.3738372,48.208102199999985],[16.3739886,48.208288100000004],[16.3739554,48.20838409999999],[16.3738377,48.2084869],[16.3737762,48.208613000000014],[16.373763,48.20870790000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"5930438","geometry":{"type":"LineString","coordinates":[[16.3759438,48.20811180000001],[16.3759043,48.208045200000015],[16.3756772,48.20777910000001],[16.3756667,48.20773990000001],[16.3752696,48.20736529999999],[16.3752335,48.20733760000002],[16.3749353,48.20711],[16.3746136,48.206863699999985]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Grünangergasse","oneway":"yes","place_numbers":"1-12","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"8072628","geometry":{"type":"LineString","coordinates":[[16.3749353,48.20711],[16.37456,48.20733899999999],[16.3745307,48.207355500000006]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"7","name":"Nikolaigasse","noexit":"yes","sidewalk":"no","surface":"cobblestone"}},{"type":"Feature","id":"116758240","geometry":{"type":"LineString","coordinates":[[16.3742134,48.2062694],[16.3747146,48.20595399999999],[16.3749324,48.205885300000006],[16.3753543,48.2056585],[16.3754372,48.20557740000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"355374713","geometry":{"type":"LineString","coordinates":[[16.3741816,48.20624239999998],[16.3742134,48.2062694]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Ballgasse","surface":"cobblestone","view":"narrow"}},{"type":"Feature","id":"355374714","geometry":{"type":"LineString","coordinates":[[16.3744347,48.206517599999984],[16.3743713,48.20645429999999],[16.374273,48.2063861],[16.3742024,48.206287799999984]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Franziskanerplatz","sidewalk":"left","surface":"cobblestone"}},{"type":"Feature","id":"5930411","geometry":{"type":"LineString","coordinates":[[16.3747329,48.20680340000004],[16.3744347,48.206517599999984]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Franziskanerplatz","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"43308573","geometry":{"type":"LineString","coordinates":[[16.3750325,48.203218700000036],[16.3750895,48.20322390000001],[16.3751394,48.20321320000002],[16.3757428,48.20293620000001],[16.3757954,48.20291209999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Fichtegasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"43308574","geometry":{"type":"LineString","coordinates":[[16.3743256,48.20357709999999],[16.3745773,48.203430499999996],[16.3750325,48.203218700000036]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Fichtegasse"}},{"type":"Feature","id":"43308570","geometry":{"type":"LineString","coordinates":[[16.3756113,48.203756],[16.3752201,48.203373699999986],[16.3751266,48.20328309999999],[16.3750948,48.20325009999999],[16.3750895,48.20322390000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Hegelgasse","oneway":"yes","sidewalk":"both","wikidata":"Q16916609","wikipedia":"de:Hegelgasse (Wien)"}},{"type":"Feature","id":"75529655","geometry":{"type":"LineString","coordinates":[[16.3745511,48.2051304],[16.3755071,48.20462950000001],[16.3762031,48.20430680000001],[16.376839,48.20402410000003],[16.3769074,48.20399370000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Himmelpfortgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"43308572","geometry":{"type":"LineString","coordinates":[[16.374902,48.2040801],[16.3749663,48.20413839999998],[16.3755071,48.20462950000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Schellinggasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"5930455","geometry":{"type":"LineString","coordinates":[[16.3738155,48.20729299999999],[16.3739913,48.2074599],[16.3742723,48.20773329999997],[16.3743573,48.207802500000014],[16.3745099,48.20791700000001],[16.3747838,48.208151799999996]]},"properties":{"highway":"pedestrian","lit":"yes","myth":"yes","name":"Blutgasse","name:myth":"Das Blutgässchen","surface":"cobblestone","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/sagen_legenden_gugitz/blutgaesschen.html"}},{"type":"Feature","id":"32008717","geometry":{"type":"LineString","coordinates":[[16.3741593,48.2044262],[16.3740976,48.204374400000006],[16.3735555,48.20393889999997]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilerstätte","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"32008719","geometry":{"type":"LineString","coordinates":[[16.3741593,48.2044262],[16.3742025,48.20447630000001],[16.3745511,48.2051304],[16.3754372,48.20557740000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilerstätte","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"185127705","geometry":{"type":"LineString","coordinates":[[16.3731592,48.20557629999999],[16.3739086,48.205383900000015],[16.3744385,48.20520429999999],[16.3745511,48.2051304]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Himmelpfortgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"116758238","geometry":{"type":"LineString","coordinates":[[16.3740493,48.2061295],[16.3741816,48.20624239999998]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Ballgasse","surface":"cobblestone","tunnel":"building_passage","view":"narrow"}},{"type":"Feature","id":"116758239","geometry":{"type":"LineString","coordinates":[[16.3740099,48.206495399999994],[16.3742024,48.206287799999984],[16.3742134,48.2062694]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","oneway":"yes","sidewalk":"right","surface":"cobblestone"}},{"type":"Feature","id":"30692804","geometry":{"type":"LineString","coordinates":[[16.3763309,48.2034343],[16.3762678,48.20346459999999],[16.3756113,48.203756],[16.3749722,48.204048],[16.374902,48.2040801],[16.3748216,48.204116],[16.3742354,48.20437820000001],[16.3741593,48.2044262]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Johannesgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"5930449","geometry":{"type":"LineString","coordinates":[[16.3735393,48.202883799999995],[16.3734355,48.20306679999999],[16.3731562,48.20355030000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schwarzenbergstraße","oneway":"yes","sidewalk":"both","source":"yahoo","view":"open"}},{"type":"Feature","id":"43308571","geometry":{"type":"LineString","coordinates":[[16.374902,48.2040801],[16.3748348,48.20402150000001],[16.3743256,48.20357709999999],[16.3736452,48.20297719999999],[16.3735393,48.202883799999995]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Schellinggasse","oneway":"yes","sidewalk":"both","source":"yahoo"}},{"type":"Feature","id":"8072751","geometry":{"type":"LineString","coordinates":[[16.3735555,48.20393889999997],[16.3743256,48.20357709999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fichtegasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4997569","geometry":{"type":"LineString","coordinates":[[16.3728256,48.20665980000001],[16.3729524,48.20660889999999],[16.3732437,48.20642839999999],[16.3732977,48.20623660000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Blumenstockgasse","surface":"cobblestone"}},{"type":"Feature","id":"4997576","geometry":{"type":"LineString","coordinates":[[16.372663,48.206352100000004],[16.3730019,48.20629059999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Ballgasse","sidewalk":"right","sidewalk:right:width":"1 m","surface":"cobblestone"}},{"type":"Feature","id":"344663251","geometry":{"type":"LineString","coordinates":[[16.3727762,48.2065877],[16.372663,48.206352100000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rauhensteingasse","oneway":"yes","sidewalk":"both","sidewalk:both:width":"1"}},{"type":"Feature","id":"26154386","geometry":{"type":"LineString","coordinates":[[16.3727506,48.206982599999975],[16.3729623,48.20692780000002],[16.3732765,48.20685449999999],[16.3733806,48.20681309999998],[16.3736114,48.20671780000001],[16.3737902,48.206623399999984],[16.3740099,48.206495399999994]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4997588","geometry":{"type":"LineString","coordinates":[[16.3729623,48.20692780000002],[16.3728256,48.20665980000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rauhensteingasse","oneway":"yes","sidewalk":"both","sidewalk:both:width":"1"}},{"type":"Feature","id":"344663252","geometry":{"type":"LineString","coordinates":[[16.3728256,48.20665980000001],[16.3727762,48.2065877]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rauhensteingasse","oneway":"yes","sidewalk":"both","sidewalk:left:width":"1","sidewalk:right:width":"0.3"}},{"type":"Feature","id":"26154383","geometry":{"type":"LineString","coordinates":[[16.3727506,48.206982599999975],[16.3724007,48.20704069999999],[16.3721881,48.207058200000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","noexit":"yes","oneway":"no","sidewalk":"both"}},{"type":"Feature","id":"5930457","geometry":{"type":"LineString","coordinates":[[16.3730102,48.20758939999999],[16.3727506,48.206982599999975]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Liliengasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"26154250","geometry":{"type":"LineString","coordinates":[[16.3718606,48.20511960000002],[16.3740576,48.2044741],[16.3741593,48.2044262]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Johannesgasse","sidewalk":"both"}},{"type":"Feature","id":"185127704","geometry":{"type":"LineString","coordinates":[[16.3726258,48.20571270000002],[16.3731592,48.20557629999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Himmelpfortgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"26581342","geometry":{"type":"LineString","coordinates":[[16.372347,48.20578019999999],[16.372487,48.20574640000004],[16.3726258,48.20571270000002]]},"properties":{"highway":"residential","is_in":"Austria,Wien,Innere Stadt","lit":"yes","maxspeed":"30","name":"Himmelpfortgasse","oneway":"yes"}},{"type":"Feature","id":"26154331","geometry":{"type":"LineString","coordinates":[[16.372196,48.20581520000002],[16.372347,48.20578019999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Himmelpfortgasse"}},{"type":"Feature","id":"344663253","geometry":{"type":"LineString","coordinates":[[16.372663,48.206352100000004],[16.3726055,48.20622910000003],[16.3724646,48.205992500000036],[16.3723612,48.205820700000004],[16.372347,48.20578019999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rauhensteingasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"344663250","geometry":{"type":"LineString","coordinates":[[16.3730019,48.20629059999999],[16.3732977,48.20623660000001],[16.3734567,48.20620290000002],[16.3737181,48.20605160000002],[16.373933,48.206029],[16.3740493,48.2061295]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Ballgasse","surface":"cobblestone"}},{"type":"Feature","id":"82137513","geometry":{"type":"LineString","coordinates":[[16.3768011,48.206171900000044],[16.3759976,48.206301999999994],[16.3758267,48.20634480000001],[16.3754923,48.20647290000002],[16.3751276,48.206619200000006],[16.3747329,48.20680340000004],[16.3746136,48.206863699999985],[16.3740424,48.207185200000026],[16.3738155,48.20729299999999],[16.3736493,48.20735730000001],[16.3731568,48.207538700000015],[16.3730102,48.20758939999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Singerstraße","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"8072630","geometry":{"type":"LineString","coordinates":[[16.3731562,48.20355030000002],[16.3730026,48.203538699999996],[16.3728975,48.203537900000015],[16.3724007,48.20366419999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Krugerstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"8072632","geometry":{"type":"LineString","coordinates":[[16.3731562,48.20355030000002],[16.373163,48.203619],[16.3735555,48.20393889999997]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilerstätte","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"26158600","geometry":{"type":"LineString","coordinates":[[16.3724007,48.20366419999999],[16.3718586,48.203811400000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Krugerstraße","sidewalk":"both"}},{"type":"Feature","id":"405652135","geometry":{"type":"LineString","coordinates":[[16.3702997,48.20818760000003],[16.3703958,48.20825479999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Dorotheergasse"}},{"type":"Feature","id":"93629721","geometry":{"type":"LineString","coordinates":[[16.370883,48.20889199999999],[16.3706791,48.20871349999999],[16.3702141,48.208359599999994]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Trattnerhof","source":"yahoo"}},{"type":"Feature","id":"461378954","geometry":{"type":"LineString","coordinates":[[16.3716826,48.20800430000003],[16.3719075,48.208217399999995]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stock-im-Eisen-Platz","surface":"paving_stones"}},{"type":"Feature","id":"437878037","geometry":{"type":"LineString","coordinates":[[16.3716826,48.20800430000003],[16.3718536,48.2079512]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stock-im-Eisen-Platz","name:zh":"丁型廣場"}},{"type":"Feature","id":"26420644","geometry":{"type":"LineString","coordinates":[[16.3705983,48.20689260000003],[16.3707327,48.20712019999999],[16.3708321,48.2072828],[16.371174,48.20783369999998]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilergasse","noexit":"yes","sidewalk":"both"}},{"type":"Feature","id":"26740402","geometry":{"type":"LineString","coordinates":[[16.3716333,48.207102400000025],[16.3721881,48.207058200000006]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Weihburggasse"}},{"type":"Feature","id":"25527147","geometry":{"type":"LineString","coordinates":[[16.3708321,48.2072828],[16.371646,48.20716429999999]]},"properties":{"highway":"pedestrian","is_in":"Austria,Wien,Innere Stadt","myth":"yes","name":"Kärntner Durchgang","name:myth":"Das Hasenhaus","source":"yahoo","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/sagen_legenden_gugitz/hasenhaus.html"}},{"type":"Feature","id":"4997556","geometry":{"type":"LineString","coordinates":[[16.3713051,48.208051100000006],[16.371174,48.20783369999998]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Seilergasse"}},{"type":"Feature","id":"311792004","geometry":{"type":"LineString","coordinates":[[16.371457,48.2080354],[16.3714979,48.20803169999999],[16.3716826,48.20800430000003]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stock-im-Eisen-Platz","name:zh":"丁型廣場"}},{"type":"Feature","id":"5930417","geometry":{"type":"LineString","coordinates":[[16.3708691,48.20611009999999],[16.3713829,48.20598100000001]]},"properties":{"highway":"pedestrian","name":"Donnergasse","surface":"paving_stones"}},{"type":"Feature","id":"8043965","geometry":{"type":"LineString","coordinates":[[16.3713829,48.20598100000001],[16.372196,48.20581520000002]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Himmelpfortgasse","surface":"cobblestone"}},{"type":"Feature","id":"349688241","geometry":{"type":"LineString","coordinates":[[16.3706277,48.205686799999995],[16.3706869,48.2058347],[16.3707506,48.20598189999998],[16.3707875,48.2060008],[16.3708264,48.20602360000001],[16.3708481,48.206053199999985],[16.3708691,48.20611009999999],[16.3708885,48.206173500000006],[16.3708921,48.206207500000005],[16.3708794,48.2062392],[16.370843,48.20627059999998],[16.3709576,48.2067859]]},"properties":{"highway":"service","lit":"yes","maxspeed":"30","name":"Neuer Markt","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"31247112","geometry":{"type":"LineString","coordinates":[[16.3705381,48.2061836],[16.3705797,48.206252000000006],[16.3706141,48.2062813],[16.3706469,48.206296399999985],[16.3707452,48.20642989999999],[16.3708144,48.20655400000001],[16.3708789,48.20679319999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Neuer Markt","oneway":"yes","sidewalk":"left","surface":"asphalt"}},{"type":"Feature","id":"26154492","geometry":{"type":"LineString","coordinates":[[16.3709576,48.2067859],[16.3715529,48.2067418]]},"properties":{"highway":"pedestrian","name":"Kupferschmiedgasse","source":"geoimage"}},{"type":"Feature","id":"349688240","geometry":{"type":"LineString","coordinates":[[16.3708789,48.20679319999999],[16.3705983,48.20689260000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kupferschmiedgasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"4997574","geometry":{"type":"LineString","coordinates":[[16.3709576,48.2067859],[16.3708789,48.20679319999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kupferschmiedgasse","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"25950336","geometry":{"type":"LineString","coordinates":[[16.3690286,48.20695290000003],[16.3691352,48.207121099999995],[16.3692593,48.207287199999996],[16.3693855,48.207441200000005],[16.3694644,48.20752949999999],[16.3696161,48.20767570000004],[16.3698006,48.20783879999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dorotheergasse","noexit":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"4997578","geometry":{"type":"LineString","coordinates":[[16.3701218,48.207279400000004],[16.3707327,48.20712019999999]]},"properties":{"highway":"footway","lit":"yes","name":"Göttweihergasse","sidewalk":"no","surface":"asphalt"}},{"type":"Feature","id":"343878884","geometry":{"type":"LineString","coordinates":[[16.3683462,48.2072465],[16.3686229,48.20758409999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bräunerstraße","noexit":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"316392893","geometry":{"type":"LineString","coordinates":[[16.3696809,48.20866970000003],[16.3692077,48.20822870000001],[16.3689837,48.20800820000002],[16.3688227,48.20782209999999],[16.3686229,48.20758409999999]]},"properties":{"foot":"yes","highway":"pedestrian","lit":"yes","name":"Bräunerstraße","surface":"asphalt"}},{"type":"Feature","id":"26419793","geometry":{"type":"LineString","coordinates":[[16.3705228,48.208019500000034],[16.3706155,48.208193900000026]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Spiegelgasse"}},{"type":"Feature","id":"30322134","geometry":{"type":"LineString","coordinates":[[16.3691736,48.20898360000001],[16.3696809,48.20866970000003],[16.3702141,48.208359599999994],[16.3703958,48.20825479999999],[16.370517,48.20821670000001],[16.3706155,48.208193900000026],[16.3709305,48.208132199999994],[16.3713051,48.208051100000006],[16.371457,48.2080354]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Graben","name:한국의":"그라벤 거리","wikipedia":"de:Graben (Wien)"}},{"type":"Feature","id":"8072657","geometry":{"type":"LineString","coordinates":[[16.3698006,48.20783879999999],[16.3702997,48.20818760000003]]},"properties":{"bicycle":"no","highway":"residential","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Dorotheergasse"}},{"type":"Feature","id":"4997584","geometry":{"type":"LineString","coordinates":[[16.3705381,48.2061836],[16.3701971,48.206322],[16.3701443,48.2063665],[16.3699959,48.2064211],[16.369748,48.206514],[16.3696064,48.206558899999976],[16.3689164,48.20683220000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Plankengasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"349830559","geometry":{"type":"LineString","coordinates":[[16.3682219,48.2062052],[16.3683072,48.20623570000001]]},"properties":{"highway":"footway","lit":"yes","name":"Dorotheergasse","surface":"asphalt"}},{"type":"Feature","id":"349522275","geometry":{"type":"LineString","coordinates":[[16.3682672,48.206197599999996],[16.3683072,48.20623570000001],[16.3687132,48.20662279999999],[16.3687506,48.20668749999999],[16.3689164,48.20683220000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dorotheergasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"116758237","geometry":{"type":"LineString","coordinates":[[16.3705983,48.20689260000003],[16.3705221,48.206873099999996],[16.3701443,48.2063665]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilergasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"31247165","geometry":{"type":"LineString","coordinates":[[16.3689164,48.20683220000001],[16.3690286,48.20695290000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dorotheergasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"25950341","geometry":{"type":"LineString","coordinates":[[16.3696064,48.206558899999976],[16.3696444,48.206602799999985],[16.3698384,48.206846799999994],[16.3701218,48.207279400000004],[16.3702543,48.20749539999997],[16.3705228,48.208019500000034]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Spiegelgasse","noexit":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"26154272","geometry":{"type":"LineString","coordinates":[[16.3701316,48.20555000000002],[16.3705739,48.205442300000016]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Neuer Markt","surface":"asphalt"}},{"type":"Feature","id":"26154479","geometry":{"type":"LineString","coordinates":[[16.3701316,48.20555000000002],[16.370213,48.20560040000001],[16.3702696,48.20565640000001],[16.3703181,48.2057274],[16.3704907,48.206073600000025],[16.3705171,48.20612449999999],[16.3705381,48.2061836]]},"properties":{"highway":"residential","maxspeed":"30","name":"Neuer Markt","oneway":"yes","sidewalk":"left","surface":"asphalt"}},{"type":"Feature","id":"26419322","geometry":{"type":"LineString","coordinates":[[16.3702696,48.20565640000001],[16.3706277,48.205686799999995]]},"properties":{"highway":"service","lit":"yes","maxspeed":"30","name":"Neuer Markt","oneway":"yes","sidewalk":"no","surface":"asphalt"}},{"type":"Feature","id":"4997557","geometry":{"type":"LineString","coordinates":[[16.3696064,48.206558899999976],[16.3692016,48.206149400000015],[16.3688502,48.2057916],[16.368837,48.205724799999956]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Spiegelgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"26154324","geometry":{"type":"LineString","coordinates":[[16.3702377,48.20421759999999],[16.3692334,48.20443660000001],[16.3691374,48.20445739999997]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Maysedergasse","noexit":"yes","sidewalk":"both"}},{"type":"Feature","id":"26154315","geometry":{"type":"LineString","coordinates":[[16.3704679,48.20470230000001],[16.3707334,48.204658800000004]]},"properties":{"highway":"pedestrian","name":"Führichgasse","source":"yahoo"}},{"type":"Feature","id":"8043964","geometry":{"type":"LineString","coordinates":[[16.3710657,48.205338799999964],[16.3718606,48.20511960000002]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Johannesgasse","surface":"cobblestone"}},{"type":"Feature","id":"26158696","geometry":{"type":"LineString","coordinates":[[16.3695227,48.20490720000001],[16.3704679,48.20470230000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Führichgasse","noexit":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"349689200","geometry":{"type":"LineString","coordinates":[[16.3705739,48.205442300000016],[16.3709265,48.205361100000005],[16.3710657,48.205338799999964]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Marco-d'Aviano-Gasse","surface":"paving_stones"}},{"type":"Feature","id":"5930416","geometry":{"type":"LineString","coordinates":[[16.3691635,48.203892199999984],[16.3697229,48.20376590000001],[16.37005,48.20369740000001],[16.3701497,48.20366630000001],[16.3703259,48.20359139999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Philharmonikerstraße","sidewalk":"both"}},{"type":"Feature","id":"5083429","geometry":{"type":"LineString","coordinates":[[16.3718536,48.2079512],[16.3718334,48.207851000000005],[16.3718108,48.20771020000001],[16.3717648,48.207647899999984],[16.371646,48.20716429999999],[16.3716333,48.207102400000025],[16.3715529,48.2067418],[16.3715128,48.206559700000014],[16.3713829,48.20598100000001],[16.3710657,48.205338799999964],[16.3707334,48.204658800000004],[16.3705177,48.20415489999996],[16.3704911,48.204036900000006],[16.3703834,48.203824199999985],[16.3703099,48.20372040000001],[16.3703259,48.20359139999999]]},"properties":{"bicycle":"no","highway":"pedestrian","lit":"yes","name":"Kärntner Straße","surface":"paving_stones"}},{"type":"Feature","id":"26154359","geometry":{"type":"LineString","coordinates":[[16.3718586,48.203811400000006],[16.3705177,48.20415489999996]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Krugerstraße","surface":"paving_stones"}},{"type":"Feature","id":"8078857","geometry":{"type":"LineString","coordinates":[[16.3707334,48.204658800000004],[16.371212,48.20452829999999],[16.3716902,48.20439720000002],[16.3719837,48.20432060000002],[16.3725861,48.20414579999999],[16.3727821,48.20410270000002],[16.3734455,48.203983600000015],[16.3735555,48.20393889999997]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Annagasse","surface":"cobblestone"}},{"type":"Feature","id":"8072746","geometry":{"type":"LineString","coordinates":[[16.3705177,48.20415489999996],[16.3702377,48.20421759999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Maysedergasse"}},{"type":"Feature","id":"351265515","geometry":{"type":"LineString","coordinates":[[16.3701575,48.20303200000001],[16.3709682,48.2028449]]},"properties":{"covered":"yes","highway":"pedestrian","lit":"yes","name":"Mahlerstraße"}},{"type":"Feature","id":"8072740","geometry":{"type":"LineString","coordinates":[[16.3703259,48.20359139999999],[16.370428,48.20357169999997],[16.3714749,48.2033409],[16.3720553,48.20321010000001],[16.3721508,48.20318850000004],[16.372238,48.20317159999999],[16.3733521,48.20292570000001],[16.3735393,48.202883799999995]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Walfischgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both"}},{"type":"Feature","id":"5930436","geometry":{"type":"LineString","coordinates":[[16.370071,48.20305250000001],[16.3701575,48.20303200000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Mahlerstraße"}},{"type":"Feature","id":"29065276","geometry":{"type":"LineString","coordinates":[[16.3714749,48.2033409],[16.3715567,48.20351149999996],[16.3719443,48.203549899999956]]},"properties":{"highway":"pedestrian","name":"Alte Walfischgasse"}},{"type":"Feature","id":"4997568","geometry":{"type":"LineString","coordinates":[[16.3695227,48.20490720000001],[16.3686696,48.20515130000001],[16.3685631,48.20513969999996],[16.3684471,48.205115000000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Führichgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4997586","geometry":{"type":"LineString","coordinates":[[16.369829,48.205265999999995],[16.3689067,48.2057116],[16.368837,48.205724799999956]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Gluckgasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"261458721","geometry":{"type":"LineString","coordinates":[[16.3691374,48.20445739999997],[16.3693511,48.20472979999997],[16.3693808,48.20475759999999],[16.3695227,48.20490720000001],[16.369829,48.205265999999995],[16.370056,48.2055091],[16.3701316,48.20555000000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Tegetthoffstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"31261009","geometry":{"type":"LineString","coordinates":[[16.3687023,48.20406969999999],[16.3686183,48.203943400000014]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Albertinaplatz","oneway":"yes"}},{"type":"Feature","id":"4997559","geometry":{"type":"LineString","coordinates":[[16.3688613,48.2043525],[16.3690233,48.20432260000001]]},"properties":{"highway":"residential","name":"Albertinaplatz","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"4997572","geometry":{"type":"LineString","coordinates":[[16.3688613,48.2043525],[16.3687023,48.20406969999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Albertinaplatz","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"4997555","geometry":{"type":"LineString","coordinates":[[16.3690233,48.20432260000001],[16.369089,48.20440019999998],[16.3691374,48.20445739999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tegetthoffstraße","note":"von der Maysedergasse kommend nicht als verkehrte Einbahn ausgeschildert","oneway":"yes","source":"survey"}},{"type":"Feature","id":"384966548","geometry":{"type":"LineString","coordinates":[[16.3689954,48.2040571],[16.3688521,48.20406209999999],[16.3687023,48.20406969999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Albertinaplatz","oneway":"yes"}},{"type":"Feature","id":"29067898","geometry":{"type":"LineString","coordinates":[[16.3691635,48.203892199999984],[16.3690263,48.20400359999999],[16.3689954,48.2040571],[16.3689871,48.204106800000005],[16.3690233,48.20432260000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Albertinaplatz","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"4997580","geometry":{"type":"LineString","coordinates":[[16.3687023,48.20406969999999],[16.3688837,48.20393899999999],[16.3691635,48.203892199999984]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Albertinaplatz","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"456335163","geometry":{"type":"LineString","coordinates":[[16.3686183,48.203943400000014],[16.3688837,48.20393899999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Albertinaplatz","oneway":"yes"}},{"type":"Feature","id":"29067098","geometry":{"type":"LineString","coordinates":[[16.368837,48.205724799999956],[16.3688032,48.20566629999999],[16.3683707,48.205308599999995],[16.3683408,48.205276200000014],[16.3682952,48.2052348]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Lobkowitzplatz","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"8072726","geometry":{"type":"LineString","coordinates":[[16.3686183,48.203943400000014],[16.3685889,48.20388],[16.3681196,48.20297599999998],[16.3681016,48.202941399999986],[16.3680855,48.202910900000006],[16.3680679,48.20287799999997],[16.3680679,48.202872600000006]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"2","lit":"yes","maxspeed":"30","name":"Operngasse","oneway":"yes","sidewalk":"right","turn:lanes":"through|through;right"}},{"type":"Feature","id":"481975920","geometry":{"type":"LineString","coordinates":[[16.3684322,48.20279310000004],[16.3683182,48.20281850000001]]},"properties":{"access":"permissive","bicycle":"yes","cycleway":"opposite_lane","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"481973540","geometry":{"type":"LineString","coordinates":[[16.3683182,48.20281850000001],[16.3682321,48.20283760000001]]},"properties":{"access":"permissive","bicycle":"yes","cycleway":"opposite_lane","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"481973537","geometry":{"type":"LineString","coordinates":[[16.3682321,48.20283760000001],[16.3681598,48.20285289999998],[16.3680679,48.202872600000006]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"349522277","geometry":{"type":"LineString","coordinates":[[16.3670384,48.2074102],[16.3671702,48.207360600000015]]},"properties":{"highway":"footway","lit":"yes","name":"Reitschulgasse","surface":"asphalt"}},{"type":"Feature","id":"4997570","geometry":{"type":"LineString","coordinates":[[16.3677834,48.2076002],[16.3676591,48.207577000000015],[16.3670384,48.2074102]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Habsburgergasse","oneway":"no","oneway:bicycle":"no","psv":"yes","sidewalk":"both","surface":"asphalt","taxi":"yes","vehicle:backward":"no","vehicle:forward":"yes"}},{"type":"Feature","id":"9226260","geometry":{"type":"LineString","coordinates":[[16.3677834,48.2076002],[16.3678639,48.207689000000016],[16.3679677,48.207796799999954],[16.3684763,48.2083394],[16.368796,48.20866549999997],[16.3690739,48.20894100000001],[16.3691057,48.208960400000024],[16.3691736,48.20898360000001]]},"properties":{"bicycle":"yes","emergency":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Habsburgergasse","oneway":"yes","psv":"yes","sidewalk":"both","taxi":"yes"}},{"type":"Feature","id":"224242588","geometry":{"type":"LineString","coordinates":[[16.3676591,48.207577000000015],[16.367583,48.207674699999984]]},"properties":{"highway":"footway","name":"Michaeler Durchgang","source:name":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html","website":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html"}},{"type":"Feature","id":"224242591","geometry":{"type":"LineString","coordinates":[[16.367583,48.207674699999984],[16.3675335,48.207739300000014]]},"properties":{"access":"permissive","highway":"footway","lit":"yes","name":"Michaeler Durchgang","source:name":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html","surface":"cobblestone","tunnel":"building_passage","website":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html"}},{"type":"Feature","id":"224242587","geometry":{"type":"LineString","coordinates":[[16.3675335,48.207739300000014],[16.367528,48.20774420000001],[16.3671086,48.20781650000001]]},"properties":{"access":"permissive","highway":"footway","lit":"yes","name":"Michaeler Durchgang","source:name":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html","surface":"cobblestone","website":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html"}},{"type":"Feature","id":"349522276","geometry":{"type":"LineString","coordinates":[[16.3674652,48.2068759],[16.3674854,48.20684850000001]]},"properties":{"highway":"footway","lit":"yes","name":"Reitschulgasse","surface":"asphalt"}},{"type":"Feature","id":"349522278","geometry":{"type":"LineString","coordinates":[[16.3671702,48.207360600000015],[16.3674652,48.2068759]]},"properties":{"highway":"footway","lit":"yes","name":"Reitschulgasse","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"4997582","geometry":{"type":"LineString","coordinates":[[16.3690286,48.20695290000003],[16.3689123,48.206995500000005],[16.3683934,48.2072168],[16.3683462,48.2072465],[16.3679958,48.207486700000004],[16.3679405,48.20752590000001],[16.3678604,48.20757080000001],[16.3677834,48.2076002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Stallburggasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"118736578","geometry":{"type":"LineString","coordinates":[[16.3672227,48.2071196],[16.3673219,48.20695680000003]]},"properties":{"cycleway":"opposite_lane","foot":"no","highway":"residential","lit":"yes","maxspeed":"30","name":"Reitschulgasse","oneway":"yes","sidewalk":"no","tunnel":"building_passage"}},{"type":"Feature","id":"116758232","geometry":{"type":"LineString","coordinates":[[16.3682036,48.207057299999974],[16.3682118,48.207083899999986],[16.3682026,48.2071124],[16.3679958,48.207486700000004]]},"properties":{"highway":"living_street","lit":"yes","name":"Bräunerstraße","oneway":"yes","source":"geoimage","surface":"cobblestone"}},{"type":"Feature","id":"31130247","geometry":{"type":"LineString","coordinates":[[16.3670384,48.2074102],[16.3672007,48.207155099999994],[16.3672227,48.2071196]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Reitschulgasse","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"27497428","geometry":{"type":"LineString","coordinates":[[16.3676494,48.20624290000001],[16.3677524,48.206109200000014],[16.36779,48.206040900000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Augustinerstraße","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"4997564","geometry":{"type":"LineString","coordinates":[[16.3673757,48.20681780000001],[16.3674753,48.2068457],[16.3674854,48.20684850000001],[16.3681612,48.2070305],[16.3682036,48.207057299999974]]},"properties":{"highway":"living_street","lit":"yes","name":"Bräunerstraße","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"355350759","geometry":{"type":"LineString","coordinates":[[16.3673757,48.20681780000001],[16.3676494,48.20624290000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Josefsplatz","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"27497426","geometry":{"type":"LineString","coordinates":[[16.3673219,48.20695680000003],[16.3673757,48.20681780000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Josefsplatz","oneway":"yes","sidewalk":"no","surface":"asphalt"}},{"type":"Feature","id":"73313456","geometry":{"type":"LineString","coordinates":[[16.3662849,48.2081331],[16.3662324,48.20806809999999],[16.366215,48.20802380000001],[16.3662096,48.20796870000001],[16.366227,48.20791790000001],[16.3662575,48.207865699999985],[16.3663087,48.2078214]]},"properties":{"bicycle":"yes","highway":"residential","horse":"yes","maxspeed":"30","motor_vehicle":"no","name":"Michaelerplatz","oneway":"yes","sidewalk":"right","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"224242586","geometry":{"type":"LineString","coordinates":[[16.3669298,48.20784359999999],[16.366797,48.20786179999999]]},"properties":{"highway":"footway","name":"Michaeler Durchgang","source:name":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html","website":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html"}},{"type":"Feature","id":"43981491","geometry":{"type":"LineString","coordinates":[[16.3662849,48.2081331],[16.3663467,48.20816750000003],[16.3663752,48.20817859999997],[16.3664235,48.20819180000001],[16.3665029,48.20819900000001]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Michaelerplatz","oneway":"yes","sidewalk":"left","surface":"cobblestone"}},{"type":"Feature","id":"4998703","geometry":{"type":"LineString","coordinates":[[16.3665029,48.20819900000001],[16.366494,48.20828349999999],[16.3664613,48.20837],[16.3659699,48.2093682],[16.3658797,48.209503100000006],[16.3655338,48.209964000000014],[16.36542,48.210116400000004],[16.365392,48.210153899999995]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"20","name":"Herrengasse","note":"Begegnungszone","oneway":"yes","oneway:bicycle":"no","oneway:bus":"no","oneway:carriage":"no","oneway:taxi":"no","sidewalk":"both"}},{"type":"Feature","id":"4583750","geometry":{"type":"LineString","coordinates":[[16.366756,48.20814950000002],[16.3669004,48.208260800000005],[16.3678568,48.208954000000034],[16.3685027,48.20941909999999]]},"properties":{"foot":"yes","highway":"pedestrian","lit":"yes","name":"Kohlmarkt","surface":"paving_stones"}},{"type":"Feature","id":"4997554","geometry":{"type":"LineString","coordinates":[[16.3665029,48.20819900000001],[16.3666086,48.20819109999999],[16.3666793,48.20817579999999],[16.366756,48.20814950000002]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Michaelerplatz","oneway":"yes","psv":"yes","sidewalk":"left","surface":"cobblestone","taxi":"yes"}},{"type":"Feature","id":"37675404","geometry":{"type":"LineString","coordinates":[[16.3654899,48.20704649999999],[16.3656358,48.20696939999999]]},"properties":{"highway":"footway","lit":"yes","name":"Schweizertor","opening_hours":"24/7","tunnel":"building_passage","wheelchair":"limited","wikipedia":"de:Hofburg#Schweizertrakt"}},{"type":"Feature","id":"237726307","geometry":{"type":"LineString","coordinates":[[16.3651182,48.207071299999996],[16.3657499,48.20746140000003]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"In der Burg","psv":"yes","sidewalk":"both"}},{"type":"Feature","id":"251669260","geometry":{"type":"LineString","coordinates":[[16.3657499,48.20746140000003],[16.3662126,48.20775739999999]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"In der Burg","psv":"yes","sidewalk":"both","tunnel":"building_passage"}},{"type":"Feature","id":"4583443","geometry":{"type":"LineString","coordinates":[[16.366741,48.20779909999999],[16.3668226,48.20773600000001],[16.3670384,48.2074102]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Reitschulgasse","oneway":"no","psv":"yes","sidewalk":"both","surface":"asphalt","taxi":"yes"}},{"type":"Feature","id":"251669262","geometry":{"type":"LineString","coordinates":[[16.3662126,48.20775739999999],[16.3663087,48.2078214]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"In der Burg","psv":"yes","sidewalk":"both"}},{"type":"Feature","id":"44005501","geometry":{"type":"LineString","coordinates":[[16.366741,48.20779909999999],[16.3666342,48.20776480000001],[16.3665743,48.20775969999997],[16.3664861,48.207763400000005],[16.3664175,48.20777709999999],[16.3663533,48.207800399999996],[16.3663087,48.2078214]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","maxspeed":"30","motor_vehicle":"no","name":"Michaelerplatz","oneway":"no","psv":"yes","sidewalk":"left","source":"yahoo","surface":"cobblestone","taxi":"yes"}},{"type":"Feature","id":"437878036","geometry":{"type":"LineString","coordinates":[[16.366756,48.20814950000002],[16.3667794,48.20813490000003],[16.3668259,48.20808060000002],[16.3668433,48.20803860000001],[16.3668509,48.2080052],[16.3668441,48.2079512],[16.3668271,48.2079081],[16.366797,48.20786179999999],[16.3667773,48.20783549999999],[16.366741,48.20779909999999]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Michaelerplatz","oneway":"yes","psv":"yes","sidewalk":"left","surface":"cobblestone","taxi":"yes"}},{"type":"Feature","id":"224242590","geometry":{"type":"LineString","coordinates":[[16.3671086,48.20781650000001],[16.3669298,48.20784359999999]]},"properties":{"access":"permissive","highway":"footway","lit":"yes","name":"Michaeler Durchgang","source:name":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html","surface":"cobblestone","tunnel":"building_passage","website":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html"}},{"type":"Feature","id":"51482681","geometry":{"type":"LineString","coordinates":[[16.3641513,48.20789970000001],[16.3642963,48.207789399999996]]},"properties":{"highway":"footway","name":"Löweltor","opening_hours":"24/7","tunnel":"building_passage"}},{"type":"Feature","id":"307641760","geometry":{"type":"LineString","coordinates":[[16.3634698,48.207839500000006],[16.3637534,48.207993999999985],[16.3635576,48.20817699999998],[16.3634023,48.20829800000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Ballhausplatz","sidewalk":"both"}},{"type":"Feature","id":"375939521","geometry":{"type":"LineString","coordinates":[[16.3640988,48.20837019999999],[16.3642716,48.20839309999997],[16.365005,48.2083083],[16.3654841,48.20829189999998],[16.3658524,48.20825049999999],[16.3662004,48.20818990000001],[16.3662849,48.2081331]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Schauflergasse","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"4998702","geometry":{"type":"LineString","coordinates":[[16.3635576,48.20817699999998],[16.3640988,48.20837019999999]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Ballhausplatz","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"326786856","geometry":{"type":"LineString","coordinates":[[16.3644137,48.20897420000003],[16.364256,48.20855059999997],[16.3642716,48.20839309999997]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Bruno-Kreisky-Gasse","surface":"cobblestone"}},{"type":"Feature","id":"326786855","geometry":{"type":"LineString","coordinates":[[16.3642976,48.20899030000004],[16.3641381,48.20857459999996],[16.364104,48.208485600000046],[16.3640988,48.20837019999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Bruno-Kreisky-Gasse","surface":"cobblestone"}},{"type":"Feature","id":"73313455","geometry":{"type":"LineString","coordinates":[[16.3645233,48.2067261],[16.3645899,48.206764599999985],[16.3648992,48.206943499999994]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"In der Burg","psv":"yes","sidewalk":"both"}},{"type":"Feature","id":"237726306","geometry":{"type":"LineString","coordinates":[[16.3648992,48.206943499999994],[16.3651182,48.207071299999996]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxheight":"3","maxspeed":"30","motor_vehicle":"no","name":"In der Burg","psv":"yes","sidewalk":"both","tunnel":"building_passage"}},{"type":"Feature","id":"349830565","geometry":{"type":"LineString","coordinates":[[16.3678443,48.2059285],[16.3679291,48.205957100000006],[16.3680441,48.2060194],[16.3681091,48.2060644],[16.3682082,48.206140000000005],[16.3682672,48.206197599999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dorotheergasse","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"4997571","geometry":{"type":"LineString","coordinates":[[16.3678443,48.2059285],[16.3679035,48.20597809999998],[16.3679286,48.2059921]]},"properties":{"highway":"footway","lit":"yes","name":"Dorotheergasse","surface":"asphalt"}},{"type":"Feature","id":"349830562","geometry":{"type":"LineString","coordinates":[[16.3679286,48.2059921],[16.3680181,48.206041400000004],[16.3681188,48.206118300000014],[16.3682219,48.2062052]]},"properties":{"highway":"footway","lit":"yes","name":"Dorotheergasse","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"261458722","geometry":{"type":"LineString","coordinates":[[16.3677682,48.204498599999994],[16.3676887,48.20456100000001],[16.3669526,48.20517909999998],[16.3670904,48.20525559999999]]},"properties":{"highway":"residential","incline":"up","lit":"yes","maxspeed":"30","name":"Hanuschgasse","sidewalk":"right"}},{"type":"Feature","id":"260383373","geometry":{"type":"LineString","coordinates":[[16.3627908,48.20570699999999],[16.3628219,48.205725400000006],[16.3629127,48.20578219999999],[16.3631601,48.20592880000001],[16.3637646,48.2062813],[16.3643729,48.20663590000001],[16.3645233,48.2067261]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Heldenplatz","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"349522268","geometry":{"type":"LineString","coordinates":[[16.36779,48.206040900000005],[16.3678443,48.2059285],[16.3680249,48.2055014],[16.3680362,48.20548009999999],[16.3680806,48.205396800000045],[16.3681557,48.2053233],[16.3681966,48.20529160000001],[16.3682952,48.2052348],[16.3684039,48.205162599999994],[16.3684471,48.205115000000006],[16.3686375,48.2047757],[16.3688159,48.20443940000001],[16.3688376,48.2043989],[16.3688613,48.2043525]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Augustinerstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"29065314","geometry":{"type":"LineString","coordinates":[[16.3670904,48.20525559999999],[16.3677237,48.20473240000001],[16.3681069,48.20442510000001]]},"properties":{"highway":"pedestrian","layer":"1","lit":"yes","name":"Augustinerbastei"}},{"type":"Feature","id":"25678136","geometry":{"type":"LineString","coordinates":[[16.3662566,48.2032949],[16.3662859,48.20334439999999],[16.3662963,48.20336199999997],[16.3663908,48.20357419999999],[16.3663923,48.2036756],[16.3679046,48.20440479999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Goethegasse","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"5930428","geometry":{"type":"LineString","coordinates":[[16.3686183,48.203943400000014],[16.368507,48.20397170000001],[16.3684419,48.20400649999999],[16.3680254,48.204320699999954],[16.3679046,48.20440479999999],[16.3678383,48.204450399999985],[16.3677682,48.204498599999994]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hanuschgasse","sidewalk":"both"}},{"type":"Feature","id":"318007485","geometry":{"type":"LineString","coordinates":[[16.3680679,48.202872600000006],[16.3680168,48.202782799999994]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"2","lit":"yes","maxspeed":"30","name":"Operngasse","oneway":"yes","sidewalk":"right","turn:lanes":"through|through;right"}},{"type":"Feature","id":"474349133","geometry":{"type":"LineString","coordinates":[[16.3682305,48.2029115],[16.3682096,48.202917600000006],[16.3681945,48.20292169999999],[16.3681016,48.202941399999986],[16.3679237,48.20297980000001],[16.3662859,48.20334439999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Opernring"}},{"type":"Feature","id":"5930409","geometry":{"type":"LineString","coordinates":[[16.3680855,48.202910900000006],[16.3679646,48.20293620000001],[16.3679041,48.202949399999994],[16.3678346,48.202963899999986],[16.3676998,48.202974400000016],[16.3662566,48.2032949]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"353060497","geometry":{"type":"LineString","coordinates":[[16.3660418,48.20351149999996],[16.3660884,48.2035424],[16.3663923,48.2036756]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Goethegasse","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"128859766","geometry":{"type":"LineString","coordinates":[[16.3658042,48.20300980000002],[16.3660612,48.202953699999995]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"5930407","geometry":{"type":"LineString","coordinates":[[16.3641651,48.203377399999994],[16.3656789,48.20303910000001],[16.3658042,48.20300980000002]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"91929235","geometry":{"type":"LineString","coordinates":[[16.3662566,48.2032949],[16.3661821,48.2032739],[16.3659701,48.20332309999998],[16.3659648,48.20334940000001],[16.3660168,48.20346219999999],[16.3660418,48.20351149999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Goethegasse","oneway":"yes","sidewalk":"left","surface":"asphalt"}},{"type":"Feature","id":"474349126","geometry":{"type":"LineString","coordinates":[[16.3659648,48.20334940000001],[16.3658698,48.203424900000016],[16.3644092,48.2037579]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Opernring"}},{"type":"Feature","id":"5930413","geometry":{"type":"LineString","coordinates":[[16.3643365,48.203536499999984],[16.3642706,48.20353059999999],[16.364226,48.20351360000001],[16.364202,48.203484],[16.3641883,48.20344990000001],[16.3641651,48.203377399999994]]},"properties":{"highway":"unclassified","lit":"yes","maxspeed":"30","name":"Eschenbachgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"31130167","geometry":{"type":"LineString","coordinates":[[16.3635162,48.203820699999994],[16.3635615,48.20384730000001],[16.3636605,48.203905899999995],[16.3637175,48.20393609999999]]},"properties":{"highway":"unclassified","lit":"yes","maxspeed":"50","name":"Babenbergerstraße"}},{"type":"Feature","id":"425095719","geometry":{"type":"LineString","coordinates":[[16.3638772,48.20355810000001],[16.3640594,48.2034151],[16.3641651,48.203377399999994]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Burgring","oneway":"yes","oneway:bicycle":"no","oneway:bus":"no","oneway:psv":"no","sidewalk":"right"}},{"type":"Feature","id":"440821948","geometry":{"type":"LineString","coordinates":[[16.363624,48.2037526],[16.3638772,48.20355810000001]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Burgring","oneway":"yes","oneway:bicycle":"no","oneway:bus":"no","oneway:psv":"no","sidewalk":"right"}},{"type":"Feature","id":"28975208","geometry":{"type":"LineString","coordinates":[[16.3635162,48.203820699999994],[16.363624,48.2037526]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Burgring","oneway":"yes","oneway:bicycle":"no","oneway:bus":"no","oneway:psv":"no","sidewalk":"right"}},{"type":"Feature","id":"474349118","geometry":{"type":"LineString","coordinates":[[16.3641546,48.20333959999999],[16.3640164,48.20337309999999],[16.3635561,48.20371460000004]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Burgring"}},{"type":"Feature","id":"148091891","geometry":{"type":"LineString","coordinates":[[16.3616716,48.21992979999999],[16.3617638,48.21982449999999],[16.3619311,48.219703100000004],[16.3620109,48.219633199999976],[16.3620947,48.21958859999998],[16.3622313,48.219531500000016],[16.3626992,48.21933100000004],[16.3629528,48.21922230000001],[16.3630784,48.219177],[16.3634307,48.219073699999996],[16.3640158,48.21893059999999]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria,Vienna,Wien","lanes":"1","maxspeed":"50","name":"Porzellangasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"275947227","geometry":{"type":"LineString","coordinates":[[16.3641127,48.21902690000002],[16.3639969,48.21904870000003],[16.3638165,48.21907479999999],[16.3634691,48.219151899999986],[16.3630703,48.21928109999999],[16.3627463,48.219429399999996],[16.3623386,48.2196012],[16.3623037,48.21962980000001],[16.3622581,48.219658400000014],[16.3621975,48.2196854],[16.3620894,48.21972149999999],[16.3619766,48.219770600000004],[16.361825,48.219854999999995],[16.3616716,48.21992979999999]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria,Vienna,Wien","lanes":"1","maxspeed":"50","name":"Porzellangasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"9331362","geometry":{"type":"LineString","coordinates":[[16.3632248,48.220973500000014],[16.3627639,48.21948609999998],[16.3627463,48.219429399999996],[16.3626992,48.21933100000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Müllnergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"29052343","geometry":{"type":"LineString","coordinates":[[16.3617394,48.21805359999999],[16.3618358,48.2180855],[16.3640556,48.2188328]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Berggasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone","surface":"asphalt"}},{"type":"Feature","id":"271227046","geometry":{"type":"LineString","coordinates":[[16.3628145,48.216834199999994],[16.3617447,48.216357000000045]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","name":"Hörlgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5010662","geometry":{"type":"LineString","coordinates":[[16.3620894,48.21972149999999],[16.3620109,48.219633199999976],[16.3619584,48.21961060000001],[16.3610374,48.2192148],[16.360956,48.21917990000003]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Thurngasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"390784950","geometry":{"type":"LineString","coordinates":[[16.3616716,48.21992979999999],[16.3610936,48.2204404]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria,Vienna,Wien","lanes":"2","maxspeed":"50","name":"Porzellangasse","surface":"cobblestone"}},{"type":"Feature","id":"81813057","geometry":{"type":"LineString","coordinates":[[16.3610936,48.2204404],[16.3608776,48.22063929999999],[16.3607942,48.2207143],[16.360752,48.22080059999999],[16.3607396,48.22086569999999],[16.3607381,48.220956099999995],[16.3607337,48.2210321],[16.3607322,48.22111510000002],[16.3607305,48.221144100000004],[16.3607271,48.221317399999975],[16.3607261,48.22142400000001],[16.3607281,48.22147129999999],[16.3607343,48.22151020000001],[16.3607488,48.22155649999999],[16.3609758,48.22206490000002],[16.3612282,48.22261900000001],[16.361337,48.222860499999996],[16.3613561,48.2229035],[16.3613958,48.22299819999998],[16.3614083,48.2230313]]},"properties":{"highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Porzellangasse","surface":"concrete:plates"}},{"type":"Feature","id":"81813056","geometry":{"type":"LineString","coordinates":[[16.360956,48.21917990000003],[16.3609947,48.2191244],[16.3616567,48.21818160000001],[16.3616937,48.21812110000002],[16.3617394,48.21805359999999],[16.3617785,48.217995599999995],[16.3618316,48.217920100000015],[16.3623184,48.21727820000001],[16.3628145,48.216834199999994]]},"properties":{"highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Liechtensteinstraße","sidewalk":"both","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"27033538","geometry":{"type":"LineString","coordinates":[[16.361197,48.21693090000002],[16.3613006,48.21696600000001],[16.3623184,48.21727820000001],[16.364018,48.217814199999964]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Türkenstraße","oneway":"yes"}},{"type":"Feature","id":"171949398","geometry":{"type":"LineString","coordinates":[[16.361197,48.21693090000002],[16.3605842,48.21758019999996],[16.3605239,48.217644199999995]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Wasagasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"122929941","geometry":{"type":"LineString","coordinates":[[16.3596657,48.218604700000014],[16.3605013,48.2176695],[16.3605239,48.217644199999995]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Wasagasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"171935436","geometry":{"type":"LineString","coordinates":[[16.3592903,48.21845319999997],[16.3596657,48.218604700000014]]},"properties":{"highway":"steps","name":"Thurnstiege","ramp:wheelchair":"yes"}},{"type":"Feature","id":"157574142","geometry":{"type":"LineString","coordinates":[[16.3591969,48.21924490000001],[16.3607691,48.21955489999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dietrichsteingasse","oneway":"yes","source":"wien.gv.at"}},{"type":"Feature","id":"293227146","geometry":{"type":"LineString","coordinates":[[16.360956,48.21917990000003],[16.3608642,48.219138999999984],[16.3596657,48.218604700000014]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Thurngasse","oneway":"yes"}},{"type":"Feature","id":"339590033","geometry":{"type":"LineString","coordinates":[[16.3593165,48.217242899999974],[16.3593731,48.217261699999995],[16.3605239,48.217644199999995],[16.3616737,48.218031499999995],[16.3617394,48.21805359999999]]},"properties":{"cycleway":"lane","highway":"unclassified","lit":"yes","maxspeed":"30","name":"Berggasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"171949392","geometry":{"type":"LineString","coordinates":[[16.3599967,48.216545300000035],[16.3600589,48.21656530000001],[16.361197,48.21693090000002]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Türkenstraße","oneway":"yes"}},{"type":"Feature","id":"8107342","geometry":{"type":"LineString","coordinates":[[16.3591841,48.2171975],[16.3592591,48.2172238],[16.3593165,48.217242899999974]]},"properties":{"cycleway":"lane","highway":"secondary","maxspeed":"30","name":"Berggasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"172311092","geometry":{"type":"LineString","coordinates":[[16.3624031,48.21576670000002],[16.3625312,48.215677400000004],[16.3630704,48.215167399999956],[16.3631112,48.2151288]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Wasagasse","oneway":"yes"}},{"type":"Feature","id":"84790898","geometry":{"type":"LineString","coordinates":[[16.3613711,48.215144699999996],[16.3614551,48.21518330000001],[16.3625312,48.215677400000004],[16.3635415,48.21614170000001]]},"properties":{"highway":"service","lanes":"1","maxspeed":"30","name":"Kolingasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583564","geometry":{"type":"LineString","coordinates":[[16.3612652,48.2152452],[16.361356,48.2152868],[16.3617869,48.215484300000014],[16.3624031,48.21576670000002],[16.3634374,48.21624080000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Kolingasse"}},{"type":"Feature","id":"84790902","geometry":{"type":"LineString","coordinates":[[16.363347,48.21632700000001],[16.3622921,48.2158445],[16.3617032,48.21557039999999],[16.3617869,48.215484300000014]]},"properties":{"highway":"service","maxspeed":"30","name":"Kolingasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8083974","geometry":{"type":"LineString","coordinates":[[16.3617447,48.216357000000045],[16.3622921,48.2158445],[16.3624031,48.21576670000002]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Wasagasse","oneway":"yes"}},{"type":"Feature","id":"148093430","geometry":{"type":"LineString","coordinates":[[16.361197,48.21693090000002],[16.3617447,48.216357000000045]]},"properties":{"highway":"pedestrian","lanes":"1","name":"Wasagasse","source":"ViennaGIS"}},{"type":"Feature","id":"27192095","geometry":{"type":"LineString","coordinates":[[16.3619434,48.214603400000016],[16.3619003,48.21464470000001],[16.3618352,48.21470909999999],[16.3613711,48.215144699999996],[16.3612652,48.2152452],[16.3608494,48.21567529999999]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"30146816","geometry":{"type":"LineString","coordinates":[[16.3619434,48.214603400000016],[16.3620399,48.21463589999999],[16.3631112,48.2151288],[16.3641285,48.21558249999998]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lcn":"yes","lit":"yes","maxspeed":"50","name":"Maria-Theresien-Straße","oneway":"yes"}},{"type":"Feature","id":"339590031","geometry":{"type":"LineString","coordinates":[[16.3608494,48.21567529999999],[16.3607092,48.2157311],[16.3605049,48.2157321]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Währinger Straße","oneway":"yes"}},{"type":"Feature","id":"27033537","geometry":{"type":"LineString","coordinates":[[16.3617447,48.216357000000045],[16.3607403,48.21588800000001],[16.3606722,48.21585529999996],[16.3605754,48.215810000000005],[16.3605049,48.2157321]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","name":"Hörlgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"339590029","geometry":{"type":"LineString","coordinates":[[16.3591841,48.2171975],[16.3592378,48.2171333],[16.3594443,48.2169117],[16.3598842,48.2165042],[16.3600467,48.216344899999996],[16.3602304,48.216160900000006],[16.3603699,48.215998299999995],[16.3604316,48.215876699999995],[16.360447,48.21584570000002],[16.3604769,48.21578579999999],[16.3605049,48.2157321]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes"}},{"type":"Feature","id":"26644701","geometry":{"type":"LineString","coordinates":[[16.3601117,48.21546949999998],[16.3599095,48.21556229999999]]},"properties":{"highway":"service","layer":"-1","name":"Votivpark Garage","note":"Ausfahrt Tiefgarage","oneway":"yes","source":"geoimage.at","tunnel":"yes"}},{"type":"Feature","id":"329030549","geometry":{"type":"LineString","coordinates":[[16.3608494,48.21567529999999],[16.3607541,48.21577209999998],[16.3606722,48.21585529999996],[16.360614,48.21592860000001],[16.3603589,48.216204000000005],[16.3601178,48.2164344],[16.3599967,48.216545300000035],[16.3595972,48.216940300000005],[16.3595617,48.2169724],[16.3593963,48.2171457],[16.3593638,48.2171869],[16.3593165,48.217242899999974]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes"}},{"type":"Feature","id":"35302220","geometry":{"type":"LineString","coordinates":[[16.3635707,48.21467000000001],[16.3625347,48.2142125],[16.3624868,48.21419309999999],[16.3623969,48.21415289999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"50","name":"Schottenring","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"170564299","geometry":{"type":"LineString","coordinates":[[16.3623969,48.21415289999999],[16.3623223,48.21422560000002],[16.362108,48.21444300000002],[16.3620326,48.21451999999999],[16.3619434,48.214603400000016]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"238045925","geometry":{"type":"LineString","coordinates":[[16.3616317,48.21447410000002],[16.3617421,48.214518999999996]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"through|through"}},{"type":"Feature","id":"459434419","geometry":{"type":"LineString","coordinates":[[16.3617421,48.214518999999996],[16.3619434,48.214603400000016]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Maria-Theresien-Straße","oneway":"yes","turn:lanes":"through|through"}},{"type":"Feature","id":"242053153","geometry":{"type":"LineString","coordinates":[[16.361649,48.21439019999997],[16.361696,48.214409399999994],[16.3617997,48.2144299],[16.3618914,48.214425500000004],[16.3619462,48.21441520000002],[16.3620049,48.21439290000001]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Universitätstraße","oneway":"yes"}},{"type":"Feature","id":"57779366","geometry":{"type":"LineString","coordinates":[[16.3617421,48.214518999999996],[16.3620049,48.21439290000001]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"242052007","geometry":{"type":"LineString","coordinates":[[16.3606432,48.2140886],[16.3607549,48.21409460000001],[16.3608509,48.21410879999999],[16.3609532,48.2141331]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"through|through|right|right"}},{"type":"Feature","id":"421513031","geometry":{"type":"LineString","coordinates":[[16.3609532,48.2141331],[16.3611312,48.21420119999999]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"through|through|right|right"}},{"type":"Feature","id":"442794481","geometry":{"type":"LineString","coordinates":[[16.3611012,48.214091800000006],[16.3611312,48.21420119999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"8044227","geometry":{"type":"LineString","coordinates":[[16.3611312,48.21420119999999],[16.3613211,48.214334699999995],[16.3614426,48.214387200000004],[16.3615758,48.214448800000014],[16.3615898,48.214455300000026],[16.3616317,48.21447410000002]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","surface":"asphalt","turn:lanes":"through|through"}},{"type":"Feature","id":"57779370","geometry":{"type":"LineString","coordinates":[[16.3611312,48.21420119999999],[16.361649,48.21439019999997]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"right|right"}},{"type":"Feature","id":"57779369","geometry":{"type":"LineString","coordinates":[[16.3605049,48.2157321],[16.3605865,48.21563420000001],[16.3607071,48.21548050000001],[16.361587,48.214627699999994],[16.3616137,48.214607599999994],[16.36169,48.21454990000001],[16.3617421,48.214518999999996]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Währinger Straße","oneway":"yes"}},{"type":"Feature","id":"57776718","geometry":{"type":"LineString","coordinates":[[16.3592618,48.214287600000034],[16.359391,48.214269900000005],[16.3594395,48.214261900000025],[16.3599739,48.214173200000005]]},"properties":{"highway":"unclassified","lanes":"1","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"234978093","geometry":{"type":"LineString","coordinates":[[16.3592618,48.214287600000034],[16.3592617,48.214206899999965]]},"properties":{"highway":"residential","lanes":"2","name":"Reichsratsstraße","oneway":"yes"}},{"type":"Feature","id":"9331754","geometry":{"type":"LineString","coordinates":[[16.3605049,48.2157321],[16.3604091,48.21562610000001],[16.3593035,48.214391000000006],[16.3592902,48.21436399999999],[16.3592618,48.214287600000034]]},"properties":{"alt_name":"Straße des 8. Mai","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Straße des Achten Mai","oneway":"yes","turn:lanes":"through;left|through|right|right"}},{"type":"Feature","id":"27803343","geometry":{"type":"LineString","coordinates":[[16.3592592,48.214092600000015],[16.3594789,48.21411520000001],[16.3595093,48.21411839999999],[16.3596328,48.21412910000001]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"234978092","geometry":{"type":"LineString","coordinates":[[16.3596328,48.21412910000001],[16.35974,48.2141441],[16.3599739,48.214173200000005]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"356867812","geometry":{"type":"LineString","coordinates":[[16.3592617,48.214206899999965],[16.3592611,48.214179400000006],[16.3592592,48.214092600000015]]},"properties":{"highway":"residential","lanes":"2","name":"Reichsratsstraße","oneway":"yes"}},{"type":"Feature","id":"171935437","geometry":{"type":"LineString","coordinates":[[16.3589626,48.21984499999999],[16.3590365,48.21965319999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wasagasse","source":"wien.gv.at"}},{"type":"Feature","id":"179639785","geometry":{"type":"LineString","coordinates":[[16.3584819,48.218098],[16.3578299,48.21879899999999]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"157574145","geometry":{"type":"LineString","coordinates":[[16.3590365,48.21965319999998],[16.3591969,48.21924490000001],[16.3592773,48.21904030000002],[16.3596657,48.218604700000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wasagasse","oneway":"yes","source":"wien.gv.at"}},{"type":"Feature","id":"179641934","geometry":{"type":"LineString","coordinates":[[16.3578299,48.21879899999999],[16.357549,48.2190904],[16.3574485,48.21919460000001]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"200671385","geometry":{"type":"LineString","coordinates":[[16.3571544,48.22464830000004],[16.3577255,48.22356550000001],[16.3579115,48.2232056],[16.3579854,48.2231103],[16.3582452,48.222839300000004],[16.3587721,48.22226599999999],[16.3590639,48.22194769999996],[16.3591349,48.221873000000016],[16.3592162,48.22178749999998],[16.3593601,48.22164029999999],[16.3600952,48.22086410000003],[16.3601963,48.220761900000014],[16.3602419,48.22067389999998],[16.3602488,48.22065589999997],[16.3605942,48.219953799999985],[16.3607691,48.21955489999996],[16.3609259,48.219240299999996],[16.360956,48.21917990000003]]},"properties":{"cycleway":"lane","highway":"tertiary","lanes":"2","maxspeed":"50","name":"Liechtensteinstraße"}},{"type":"Feature","id":"179641933","geometry":{"type":"LineString","coordinates":[[16.3574485,48.21919460000001],[16.3568796,48.21975789999999]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"157574143","geometry":{"type":"LineString","coordinates":[[16.3605942,48.219953799999985],[16.3590365,48.21965319999998]]},"properties":{"bus":"no","highway":"residential","maxspeed":"30","name":"Harmoniegasse","oneway":"yes","source":"wien.gv.at"}},{"type":"Feature","id":"393175884","geometry":{"type":"LineString","coordinates":[[16.3593165,48.217242899999974],[16.3592443,48.2173123],[16.3590905,48.21746009999998],[16.3586882,48.21787219999999]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"339590030","geometry":{"type":"LineString","coordinates":[[16.3586882,48.21787219999999],[16.3584819,48.218098]]},"properties":{"cycleway:right":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"171935435","geometry":{"type":"LineString","coordinates":[[16.3584819,48.218098],[16.3592903,48.21845319999997]]},"properties":{"highway":"residential","maxspeed":"50","name":"Thurngasse"}},{"type":"Feature","id":"171935434","geometry":{"type":"LineString","coordinates":[[16.3561501,48.22042450000001],[16.3562323,48.2204385],[16.3567596,48.220538000000005],[16.3568105,48.22072350000002],[16.356828,48.22085210000003],[16.3568215,48.221023599999995],[16.3567783,48.22119140000001],[16.3567531,48.22123149999996],[16.356299,48.22195289999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Boltzmanngasse","note":"Fahrverbot für Anhänger","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5010637","geometry":{"type":"LineString","coordinates":[[16.3564436,48.21827620000002],[16.3569266,48.217529799999994],[16.3562931,48.21736240000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Beethovengasse","oneway":"yes","source":"wien.gv.at"}},{"type":"Feature","id":"5010638","geometry":{"type":"LineString","coordinates":[[16.3558565,48.21807269999999],[16.3564436,48.21827620000002],[16.3569758,48.218468900000005],[16.3571394,48.2185437],[16.3577327,48.21876090000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lackierergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"245116550","geometry":{"type":"LineString","coordinates":[[16.3568796,48.21975789999999],[16.3566341,48.2200076],[16.3566088,48.22002950000001],[16.3565146,48.220114499999994],[16.3563296,48.22028940000001],[16.3562294,48.22036320000001],[16.3561501,48.22042450000001]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"26971400","geometry":{"type":"LineString","coordinates":[[16.3566088,48.22002950000001],[16.3566069,48.220160899999996],[16.3567596,48.220538000000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Boltzmanngasse","note":"Fahrverbot für Anhänger","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"431702927","geometry":{"type":"LineString","coordinates":[[16.3561501,48.22042450000001],[16.3560177,48.22050329999996],[16.3558208,48.220602799999995],[16.3555144,48.22079720000002],[16.3546254,48.2214185]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"329030550","geometry":{"type":"LineString","coordinates":[[16.3552078,48.22088439999999],[16.3552949,48.22082549999999],[16.3557225,48.2205443],[16.3558148,48.220484400000004],[16.3560459,48.220348400000006],[16.3561181,48.22029939999999],[16.3561851,48.22025389999999],[16.3564322,48.22002309999999],[16.3566628,48.21981219999998],[16.3570383,48.21946550000001],[16.3573515,48.2191641],[16.3573522,48.21916350000001],[16.3577327,48.21876090000001],[16.3579311,48.2185575],[16.358122,48.218354000000005],[16.3583046,48.2181482],[16.3584128,48.2179903],[16.35848,48.217923600000006]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"9915214","geometry":{"type":"LineString","coordinates":[[16.3555845,48.2184867],[16.3558565,48.21807269999999]]},"properties":{"created_by":"Potlatch 0.10f","cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Garnisongasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5010632","geometry":{"type":"LineString","coordinates":[[16.3573515,48.2191641],[16.3567412,48.2188898],[16.3555845,48.2184867]]},"properties":{"highway":"residential","maxspeed":"30","name":"Van-Swieten-Gasse","oneway":"yes","source":"wien.gv.at"}},{"type":"Feature","id":"328764040","geometry":{"type":"LineString","coordinates":[[16.3572308,48.21653190000001],[16.3575772,48.21664989999999],[16.3581274,48.2168374],[16.358439,48.21694360000001],[16.3591253,48.21717749999999],[16.3591841,48.2171975]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Schwarzspanierstraße","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"339590034","geometry":{"type":"LineString","coordinates":[[16.35848,48.217923600000006],[16.358709,48.21767199999999],[16.3588945,48.217491300000034],[16.3590929,48.217288800000006],[16.3591841,48.2171975]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"5010631","geometry":{"type":"LineString","coordinates":[[16.3600467,48.216344899999996],[16.3599903,48.21631239999999],[16.3596298,48.216044599999975],[16.3595141,48.2159757],[16.3586808,48.21631099999996],[16.3585507,48.216308800000036]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rooseveltplatz","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"328764039","geometry":{"type":"LineString","coordinates":[[16.3569394,48.21633889999998],[16.3570364,48.216408],[16.357111,48.21645569999998],[16.3572308,48.21653190000001]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Schwarzspanierstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"8089369","geometry":{"type":"LineString","coordinates":[[16.3585507,48.216308800000036],[16.3581274,48.2168374]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Günthergasse","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"328764037","geometry":{"type":"LineString","coordinates":[[16.3572308,48.21653190000001],[16.3570895,48.216496800000016],[16.3569583,48.21645810000001],[16.3569027,48.216424200000006],[16.356864,48.216381299999995],[16.3568416,48.21635169999999]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Schwarzspanierstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"5010633","geometry":{"type":"LineString","coordinates":[[16.3585507,48.216308800000036],[16.3584333,48.21625560000001],[16.358124,48.21591380000001],[16.3581038,48.2158915],[16.3579494,48.21572900000001],[16.3577412,48.215512700000005],[16.3577004,48.215407700000014]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rooseveltplatz","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"5010636","geometry":{"type":"LineString","coordinates":[[16.3581038,48.2158915],[16.3570761,48.21630400000001],[16.3569394,48.21633889999998],[16.3568416,48.21635169999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Ferstelgasse","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"84192046","geometry":{"type":"LineString","coordinates":[[16.3558565,48.21807269999999],[16.3560926,48.217717100000016],[16.3562931,48.21736240000001],[16.3563345,48.21727340000004],[16.3565079,48.21682379999996]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Garnisongasse","sidewalk":"both","source":"wien.gv.at","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"173497757","geometry":{"type":"LineString","coordinates":[[16.3560899,48.21723459999998],[16.3562093,48.2172535],[16.3562282,48.21725649999999]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Richter-Tor","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"173497759","geometry":{"type":"LineString","coordinates":[[16.3552094,48.2171213],[16.3553607,48.217141200000015]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Wagner-Riegner-Tor","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"328764038","geometry":{"type":"LineString","coordinates":[[16.3568416,48.21635169999999],[16.3568294,48.21633780000002],[16.3567893,48.21624539999999],[16.3567678,48.216145299999994],[16.3567843,48.21605340000002]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Garnisongasse","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"8089390","geometry":{"type":"LineString","coordinates":[[16.3568416,48.21635169999999],[16.3566913,48.21632919999999],[16.3551975,48.2161045]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Schwarzspanierstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"29052198","geometry":{"type":"LineString","coordinates":[[16.3568416,48.21635169999999],[16.3567128,48.21642689999999],[16.356679,48.216458399999965],[16.3565079,48.21682379999996]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Garnisongasse","oneway":"yes","sidewalk":"both","source":"yahoo","source:maxspeed":"AT:zone30","surface":"asphalt"}},{"type":"Feature","id":"5010634","geometry":{"type":"LineString","coordinates":[[16.3565079,48.21682379999996],[16.3552652,48.21666490000001],[16.3551674,48.216646500000024],[16.355135,48.21661270000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Rotenhausgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone30","surface":"asphalt"}},{"type":"Feature","id":"147396079","geometry":{"type":"LineString","coordinates":[[16.3551551,48.214839600000005],[16.3551522,48.214882899999964],[16.3551308,48.21500450000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Frankhplatz","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5010640","geometry":{"type":"LineString","coordinates":[[16.3560155,48.21555080000002],[16.355955,48.214971299999974]]},"properties":{"highway":"residential","maxspeed":"30","name":"Garelligasse","source":"yahoo","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"374535115","geometry":{"type":"LineString","coordinates":[[16.3567843,48.21605340000002],[16.3568294,48.216126900000006],[16.3568776,48.21623060000002],[16.3569234,48.216313299999996],[16.3569394,48.21633889999998]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Garnisongasse","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"25527470","geometry":{"type":"LineString","coordinates":[[16.3552348,48.21562370000001],[16.355343,48.21560170000001],[16.3560155,48.21555080000002],[16.3566639,48.21550719999999],[16.3577004,48.215407700000014]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Frankgasse","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"27608418","geometry":{"type":"LineString","coordinates":[[16.3551975,48.2161045],[16.3552075,48.216012199999994],[16.3552461,48.21580799999998],[16.3552494,48.2156736],[16.3552348,48.21562370000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Otto-Wagner-Platz","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5010630","geometry":{"type":"LineString","coordinates":[[16.355135,48.21661270000001],[16.3551148,48.216536099999985],[16.3551975,48.2161045]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Alfred-Grünfeld-Gasse","oneway":"yes","source:maxspeed":"AT:zone30","surface":"asphalt"}},{"type":"Feature","id":"413585866","geometry":{"type":"LineString","coordinates":[[16.3544951,48.21606320000001],[16.3546341,48.216091300000016],[16.3550751,48.21612059999998],[16.3551975,48.2161045]]},"properties":{"highway":"service","name":"Otto-Wagner-Platz"}},{"type":"Feature","id":"29072726","geometry":{"type":"LineString","coordinates":[[16.3551308,48.21500450000002],[16.355955,48.214971299999974]]},"properties":{"highway":"residential","maxspeed":"30","name":"Frankhplatz","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"179638536","geometry":{"type":"LineString","coordinates":[[16.3551308,48.21500450000002],[16.3550857,48.215240300000005],[16.3550509,48.2154462],[16.3550492,48.215484599999996],[16.3550766,48.215549400000015],[16.3551274,48.21559579999999],[16.3552348,48.21562370000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haulerstraße","sidewalk":"right","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"8044164","geometry":{"type":"LineString","coordinates":[[16.3587574,48.21433540000001],[16.3585347,48.214367100000004],[16.3584886,48.21437370000001],[16.3582651,48.21442200000001]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes:forward":"left|left|through;right"}},{"type":"Feature","id":"42984985","geometry":{"type":"LineString","coordinates":[[16.3583227,48.21420789999999],[16.3583392,48.21431390000001],[16.3582651,48.21442200000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"50","name":"Rooseveltplatz","oneway":"yes"}},{"type":"Feature","id":"73236998","geometry":{"type":"LineString","coordinates":[[16.3583227,48.21420789999999],[16.3584314,48.21419470000001],[16.3591,48.21411219999996],[16.3592592,48.214092600000015]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lcn":"yes","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"30156333","geometry":{"type":"LineString","coordinates":[[16.3592618,48.214287600000034],[16.3592118,48.21427200000002],[16.3587574,48.21433540000001]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"237915143","geometry":{"type":"LineString","coordinates":[[16.3564798,48.214685900000006],[16.3563497,48.21469509999997]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"left|left|through"}},{"type":"Feature","id":"237926039","geometry":{"type":"LineString","coordinates":[[16.3564798,48.214685900000006],[16.3564719,48.214775799999984]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"50","name":"Garnisongasse","oneway":"yes"}},{"type":"Feature","id":"237915139","geometry":{"type":"LineString","coordinates":[[16.3564719,48.214775799999984],[16.3563497,48.21469509999997]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"50","name":"Garnisongasse","oneway":"yes"}},{"type":"Feature","id":"328764035","geometry":{"type":"LineString","coordinates":[[16.3567843,48.21605340000002],[16.3566639,48.21550719999999],[16.3564831,48.21481840000001],[16.3564719,48.214775799999984]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Garnisongasse","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"237931026","geometry":{"type":"LineString","coordinates":[[16.3563637,48.2144672],[16.3563912,48.2145204]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes","turn:lanes":"left|through|right"}},{"type":"Feature","id":"237915133","geometry":{"type":"LineString","coordinates":[[16.3563912,48.2145204],[16.3564365,48.21459440000001],[16.3564512,48.214619400000004],[16.3564798,48.214685900000006]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Garnisongasse","oneway":"yes","turn:lanes":"left|through"}},{"type":"Feature","id":"237915136","geometry":{"type":"LineString","coordinates":[[16.3570537,48.214603100000005],[16.3566322,48.21466609999999],[16.3565885,48.2146726],[16.3564798,48.214685900000006]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"left|left|through|right"}},{"type":"Feature","id":"37851390","geometry":{"type":"LineString","coordinates":[[16.356529,48.21445890000001],[16.3573774,48.214325299999985],[16.3581513,48.214229200000005],[16.3583227,48.21420789999999]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lcn":"yes","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"237915148","geometry":{"type":"LineString","coordinates":[[16.3582651,48.21442200000001],[16.3570537,48.214603100000005]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"left|left|through;right"}},{"type":"Feature","id":"8089315","geometry":{"type":"LineString","coordinates":[[16.3577004,48.215407700000014],[16.3577346,48.215353600000014],[16.3578471,48.21527600000002],[16.3585086,48.215015799999975],[16.3585673,48.21497840000001],[16.3585579,48.21494010000001],[16.358341,48.2145563],[16.3583199,48.21452149999999],[16.3582651,48.21442200000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Rooseveltplatz"}},{"type":"Feature","id":"237915141","geometry":{"type":"LineString","coordinates":[[16.3563912,48.2145204],[16.356529,48.21445890000001]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"237926037","geometry":{"type":"LineString","coordinates":[[16.3543479,48.21474269999999],[16.3548324,48.214731099999995],[16.3553286,48.2147123],[16.3556438,48.21469909999999],[16.3558455,48.214679700000005]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Frankhplatz","oneway":"yes","surface":"asphalt","turn:lanes":"through|through|right"}},{"type":"Feature","id":"237926035","geometry":{"type":"LineString","coordinates":[[16.3563497,48.21469509999997],[16.3562448,48.21470980000001],[16.3562001,48.2147205],[16.355937,48.21478479999999]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"179638535","geometry":{"type":"LineString","coordinates":[[16.355937,48.21478479999999],[16.3559506,48.214837700000004],[16.355955,48.214971299999974]]},"properties":{"highway":"residential","maxspeed":"30","name":"Frankhplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237915138","geometry":{"type":"LineString","coordinates":[[16.3562498,48.214577899999995],[16.3562168,48.21451050000002]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"2","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"237915146","geometry":{"type":"LineString","coordinates":[[16.3562498,48.214577899999995],[16.3563912,48.2145204]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"237926043","geometry":{"type":"LineString","coordinates":[[16.3563497,48.21469509999997],[16.3563058,48.21465710000001],[16.3562838,48.214631699999984],[16.3562498,48.214577899999995]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Garnisongasse","oneway":"yes"}},{"type":"Feature","id":"237911276","geometry":{"type":"LineString","coordinates":[[16.3558455,48.214679700000005],[16.3559844,48.2146515],[16.3560976,48.21462280000003],[16.35613,48.21461339999999],[16.3561709,48.214601500000015],[16.3562498,48.214577899999995]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"237911279","geometry":{"type":"LineString","coordinates":[[16.3558455,48.214679700000005],[16.3559608,48.21462039999997],[16.3560247,48.214562099999995],[16.3560454,48.2145304],[16.3560765,48.21446019999999],[16.3561138,48.214202400000005]]},"properties":{"highway":"secondary_link","lanes":"1","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"237932835","geometry":{"type":"LineString","coordinates":[[16.3562168,48.21451050000002],[16.3561857,48.21445209999999],[16.3561138,48.214202400000005]]},"properties":{"highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"2","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"299497635","geometry":{"type":"LineString","coordinates":[[16.3534472,48.2201805],[16.3538954,48.2197855]]},"properties":{"highway":"footway","name":"Herta-Pammer-Weg"}},{"type":"Feature","id":"173356376","geometry":{"type":"LineString","coordinates":[[16.3530505,48.219483999999994],[16.3531136,48.21941079999999],[16.353272,48.21943380000002],[16.3532822,48.21941960000001],[16.353036,48.21931879999997],[16.3530451,48.21930550000002],[16.3532174,48.21932859999998],[16.3532323,48.219314999999995],[16.3532523,48.21924799999999],[16.3535076,48.21883890000001]]},"properties":{"bicycle":"yes","highway":"footway","name":"Viktor-C.-Frankl-Weg","surface":"asphalt"}},{"type":"Feature","id":"172244891","geometry":{"type":"LineString","coordinates":[[16.3536928,48.218101700000005],[16.3536534,48.21810339999999],[16.3530645,48.21814429999998],[16.3529856,48.2181478],[16.3527917,48.218162500000005]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Leopold-Bauer-Weg","surface":"asphalt"}},{"type":"Feature","id":"171935439","geometry":{"type":"LineString","coordinates":[[16.3555845,48.2184867],[16.355543,48.21847589999999],[16.3540279,48.218079999999986],[16.3538659,48.218067899999994],[16.3536928,48.218101700000005]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","motor_vehicle":"private","name":"Leopold-Bauer-Weg","surface":"asphalt"}},{"type":"Feature","id":"371516347","geometry":{"type":"LineString","coordinates":[[16.3535076,48.21883890000001],[16.3534672,48.218734499999954],[16.3535029,48.21863950000002],[16.3535841,48.21842319999996],[16.3535959,48.21838819999999],[16.3536928,48.218101700000005]]},"properties":{"bicycle":"yes","highway":"service","maxspeed":"20","motor_vehicle":"private","name":"Viktor-C.-Frankl-Weg","surface":"asphalt"}},{"type":"Feature","id":"194468314","geometry":{"type":"LineString","coordinates":[[16.3519865,48.21930809999998],[16.3520485,48.21945790000004],[16.3521127,48.21965319999998],[16.352194,48.21983319999998],[16.3524752,48.2204552],[16.3526368,48.2208325],[16.3527031,48.220977300000015],[16.3527718,48.221131299999996],[16.3529301,48.2214802]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Spitalgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"229742508","geometry":{"type":"LineString","coordinates":[[16.3532022,48.222307],[16.3531368,48.2221907],[16.3530766,48.22208140000001],[16.3528595,48.22158619999999],[16.3528206,48.221502799999996],[16.3527028,48.22124439999999],[16.3526625,48.22115450000004],[16.3525928,48.22099939999998],[16.3525274,48.22085329999999],[16.3524708,48.22072700000004],[16.352355,48.2204801],[16.3520363,48.219754800000004],[16.3519614,48.21960330000002],[16.3519115,48.21950290000001]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Spitalgasse","oneway":"yes"}},{"type":"Feature","id":"4997411","geometry":{"type":"LineString","coordinates":[[16.3522373,48.2191833],[16.3521487,48.21917260000001],[16.3520585,48.2192149],[16.3520255,48.219238099999984],[16.3520139,48.21924630000001],[16.3519865,48.21930809999998]]},"properties":{"cycleway":"lane","highway":"tertiary_link","maxspeed":"30","name":"Sensengasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"474815927","geometry":{"type":"LineString","coordinates":[[16.3519645,48.218815500000005],[16.3519793,48.21883589999999],[16.352484,48.218806],[16.3524111,48.21839800000001],[16.3523548,48.218362299999995],[16.3523276,48.21818249999998]]},"properties":{"highway":"footway","name":"Leopold-Bauer-Weg"}},{"type":"Feature","id":"4279826","geometry":{"type":"LineString","coordinates":[[16.3558148,48.220484400000004],[16.3557485,48.2204601],[16.3551295,48.22023269999997],[16.3549501,48.22017200000002],[16.3541409,48.21987580000001],[16.3538954,48.2197855],[16.3533977,48.2196026],[16.3530505,48.219483999999994],[16.3524121,48.21924680000001],[16.3522373,48.2191833],[16.3520703,48.219111500000025],[16.3519709,48.21906880000003],[16.3518535,48.21900740000001]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Sensengasse","source:maxspeed":"sign"}},{"type":"Feature","id":"243315937","geometry":{"type":"LineString","coordinates":[[16.3518535,48.21900740000001],[16.3519131,48.2191406],[16.3519865,48.21930809999998]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Spitalgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"243315941","geometry":{"type":"LineString","coordinates":[[16.3518535,48.21900740000001],[16.3516278,48.21889010000001]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Spitalgasse","surface":"asphalt"}},{"type":"Feature","id":"243313491","geometry":{"type":"LineString","coordinates":[[16.3519115,48.21950290000001],[16.3517962,48.2192857],[16.3517251,48.21912370000001],[16.351703,48.219068600000014],[16.3516278,48.21889010000001]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Spitalgasse","oneway":"yes","surface":"asphalt","turn:lanes":"through|right"}},{"type":"Feature","id":"84346509","geometry":{"type":"LineString","coordinates":[[16.3510422,48.218503699999985],[16.3511801,48.2185212],[16.3512935,48.21850519999998],[16.3513869,48.21847410000001],[16.3514411,48.2184278]]},"properties":{"highway":"secondary_link","maxspeed":"30","name":"Lazarettgasse","oneway":"yes"}},{"type":"Feature","id":"216685763","geometry":{"type":"LineString","coordinates":[[16.3516278,48.21889010000001],[16.3515584,48.21873819999999],[16.3515004,48.21859280000001],[16.3514411,48.2184278]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Spitalgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"391517773","geometry":{"type":"LineString","coordinates":[[16.3536928,48.218101700000005],[16.3536832,48.218027500000005],[16.3536266,48.21758969999999]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","motor_vehicle":"private","name":"Viktor-C.-Frankl-Weg","surface":"asphalt"}},{"type":"Feature","id":"173497756","geometry":{"type":"LineString","coordinates":[[16.3542074,48.217067499999985],[16.3544206,48.21705990000001]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Piccolomini-Tor","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"173497755","geometry":{"type":"LineString","coordinates":[[16.3540111,48.21755490000001],[16.3539874,48.2174177]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Peuerbach-Tor","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"140050742","geometry":{"type":"LineString","coordinates":[[16.3551975,48.2161045],[16.3550617,48.216064200000005],[16.3546297,48.21604400000001],[16.3544951,48.21606320000001],[16.3539708,48.21603240000002],[16.353881,48.21602680000001]]},"properties":{"highway":"service","name":"Otto-Wagner-Platz"}},{"type":"Feature","id":"173497764","geometry":{"type":"LineString","coordinates":[[16.3536058,48.21681000000001],[16.3535887,48.2167216]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Suess-Tor","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"241921392","geometry":{"type":"LineString","coordinates":[[16.3527638,48.21673470000002],[16.352792,48.2169007]]},"properties":{"bicycle":"yes","foot":"yes","highway":"footway","name":"Jahoda-Tor","tunnel":"building_passage"}},{"type":"Feature","id":"242778970","geometry":{"type":"LineString","coordinates":[[16.3513705,48.216812799999985],[16.3515016,48.21680280000001]]},"properties":{"bicycle":"yes","highway":"service","maxspeed":"10","name":"Johannes-Tor","tunnel":"building_passage","vehicle":"private"}},{"type":"Feature","id":"242778971","geometry":{"type":"LineString","coordinates":[[16.3515775,48.21685819999999],[16.3515906,48.21694930000001]]},"properties":{"bicycle":"yes","foot":"yes","highway":"footway","name":"Menger-Tor","tunnel":"building_passage"}},{"type":"Feature","id":"242778973","geometry":{"type":"LineString","coordinates":[[16.3512029,48.216825400000005],[16.3513217,48.2168169]]},"properties":{"highway":"service","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Spitalgasse","oneway":"yes"}},{"type":"Feature","id":"191978447","geometry":{"type":"LineString","coordinates":[[16.3514411,48.2184278],[16.351368,48.21790140000002],[16.3513348,48.217669],[16.3512494,48.21716630000003],[16.3512287,48.21700560000002],[16.3512029,48.216825400000005],[16.3511328,48.21635069999999],[16.3510874,48.21602520000002]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Spitalgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"192631691","geometry":{"type":"LineString","coordinates":[[16.351398,48.21600240000001],[16.3512523,48.216013000000004]]},"properties":{"foot":"yes","highway":"footway","name":"Freud-Tor","tunnel":"building_passage"}},{"type":"Feature","id":"259940620","geometry":{"type":"LineString","coordinates":[[16.355937,48.21478479999999],[16.355774,48.214802399999996],[16.3551551,48.214839600000005],[16.3548739,48.21484940000002],[16.3545025,48.21484559999999],[16.3543466,48.2148358]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Frankhplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"237926042","geometry":{"type":"LineString","coordinates":[[16.3525165,48.215055800000044],[16.3525033,48.214962499999984]]},"properties":{"highway":"footway","name":"Sonnenfels-Tor","tunnel":"building_passage"}},{"type":"Feature","id":"192631724","geometry":{"type":"LineString","coordinates":[[16.351272,48.2151719],[16.3511297,48.21518040000001]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Viktor-C.-Frankl-Weg","tunnel":"building_passage"}},{"type":"Feature","id":"140050738","geometry":{"type":"LineString","coordinates":[[16.3525083,48.215598399999976],[16.3521583,48.21546419999996],[16.3518729,48.21535510000001],[16.3518517,48.21535789999999],[16.3518306,48.21535879999999],[16.3518052,48.215356999999955],[16.3517815,48.2153519],[16.3517631,48.21534249999999],[16.3517478,48.215330499999965],[16.3517392,48.21531920000001],[16.3517341,48.21530680000001],[16.3515471,48.21524120000001],[16.3513298,48.215177100000034],[16.351272,48.2151719]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Viktor-C.-Frankl-Weg"}},{"type":"Feature","id":"192631731","geometry":{"type":"LineString","coordinates":[[16.3511297,48.21518040000001],[16.351103,48.21518230000001],[16.3510741,48.2151844]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Viktor-C.-Frankl-Weg"}},{"type":"Feature","id":"259940621","geometry":{"type":"LineString","coordinates":[[16.3543466,48.2148358],[16.3542746,48.21483119999999],[16.3539813,48.21483280000001],[16.3533186,48.21487110000001],[16.3524976,48.2149259],[16.3518227,48.21497059999999]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"237926040","geometry":{"type":"LineString","coordinates":[[16.3510874,48.21602520000002],[16.3510587,48.21582809999998],[16.3509649,48.21515400000001],[16.3509505,48.215060300000005],[16.350947,48.21503540000003]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Spitalgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"243583617","geometry":{"type":"LineString","coordinates":[[16.350947,48.21503540000003],[16.3509955,48.21492570000001]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"237926036","geometry":{"type":"LineString","coordinates":[[16.3518227,48.21497059999999],[16.3511889,48.21501670000001],[16.3511305,48.21502090000001],[16.3510541,48.2150283]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"237926034","geometry":{"type":"LineString","coordinates":[[16.3510541,48.2150283],[16.350947,48.21503540000003]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"243315940","geometry":{"type":"LineString","coordinates":[[16.3510541,48.2150283],[16.3510587,48.215053299999994],[16.3510741,48.2151844],[16.3511126,48.215411700000004],[16.3511727,48.21581499999999],[16.3512011,48.21601659999999],[16.3512545,48.21636459999999],[16.3513217,48.2168169],[16.3513498,48.216998200000006],[16.3513717,48.217156800000026],[16.3514275,48.217555800000014],[16.3514857,48.2178959],[16.3515079,48.21802489999999],[16.3515481,48.218281399999995],[16.3515856,48.21839840000004],[16.351665,48.218558599999994],[16.3517579,48.21877359999999],[16.3517784,48.21882120000001],[16.3518535,48.21900740000001]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Spitalgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"237926032","geometry":{"type":"LineString","coordinates":[[16.3509955,48.21492570000001],[16.3510192,48.21492430000001],[16.3511234,48.21491919999997],[16.3516111,48.21489009999999],[16.3522187,48.2148517],[16.3530669,48.214797799999985],[16.3537749,48.21476169999997],[16.3543479,48.21474269999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"39814210","geometry":{"type":"LineString","coordinates":[[16.3509955,48.21492570000001],[16.3510541,48.2150283]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4469956","geometry":{"type":"LineString","coordinates":[[16.3625036,48.21397110000001],[16.3636451,48.21448780000003],[16.3637263,48.21452450000001],[16.3647603,48.2149934],[16.3653046,48.21523880000001],[16.3654289,48.21529509999999]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schottenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"442794474","geometry":{"type":"LineString","coordinates":[[16.3625036,48.21397110000001],[16.3623969,48.21415289999999]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"84789892","geometry":{"type":"LineString","coordinates":[[16.3620049,48.21439290000001],[16.3621415,48.21428570000003],[16.3623163,48.2141158],[16.3625036,48.21397110000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schottengasse","oneway":"yes","turn:lanes":"left|through"}},{"type":"Feature","id":"4998692","geometry":{"type":"LineString","coordinates":[[16.3625036,48.21397110000001],[16.3626602,48.21379919999998]]},"properties":{"cycleway":"lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Schottengasse"}},{"type":"Feature","id":"44028856","geometry":{"type":"LineString","coordinates":[[16.3627441,48.21348069999999],[16.3630745,48.21317379999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"30321483","geometry":{"type":"LineString","coordinates":[[16.3626602,48.21379919999998],[16.3632246,48.213254500000005]]},"properties":{"cycleway":"lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Schottengasse"}},{"type":"Feature","id":"44028859","geometry":{"type":"LineString","coordinates":[[16.3626602,48.21379919999998],[16.3625576,48.21365559999998],[16.3627441,48.21348069999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"8080526","geometry":{"type":"LineString","coordinates":[[16.3619085,48.21254759999999],[16.3622028,48.212708899999996],[16.3626471,48.21295229999998],[16.3629857,48.21312779999997],[16.3630745,48.21317379999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mölker Bastei","oneway":"yes"}},{"type":"Feature","id":"442794485","geometry":{"type":"LineString","coordinates":[[16.3610134,48.213851000000005],[16.3610387,48.21390880000001],[16.3610504,48.213940199999996],[16.3610911,48.214054799999985],[16.3611012,48.214091800000006]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"172206111","geometry":{"type":"LineString","coordinates":[[16.3615902,48.21269430000001],[16.3617739,48.21329109999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Universitätsring","vehicle":"destination"}},{"type":"Feature","id":"4998695","geometry":{"type":"LineString","coordinates":[[16.3622537,48.210487099999995],[16.3633468,48.21088499999999],[16.3635526,48.210960899999975]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schenkenstraße","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"29067229","geometry":{"type":"LineString","coordinates":[[16.3629539,48.211815599999994],[16.3629155,48.21194000000003],[16.3628662,48.2119907],[16.3627934,48.21204030000001],[16.3627008,48.21208140000002],[16.3625958,48.21210260000001],[16.3620581,48.21238030000001]]},"properties":{"highway":"pedestrian","name":"Schreyvogelgasse","surface":"cobblestone"}},{"type":"Feature","id":"29067246","geometry":{"type":"LineString","coordinates":[[16.3627008,48.21208140000002],[16.3626675,48.21212719999997],[16.3626671,48.212205100000006],[16.3627027,48.21225720000001],[16.3628388,48.21232470000004],[16.3628218,48.2124034],[16.3626941,48.2125034],[16.3626928,48.21254510000003],[16.3629435,48.21263060000001]]},"properties":{"highway":"pedestrian","name":"Mölker Steig","surface":"cobblestone"}},{"type":"Feature","id":"4998697","geometry":{"type":"LineString","coordinates":[[16.3618207,48.21242600000002],[16.3619053,48.21236379999999],[16.3620033,48.212314100000015],[16.3624688,48.21206670000001],[16.3629539,48.211815599999994],[16.3632436,48.211659500000025]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schreyvogelgasse"}},{"type":"Feature","id":"361876876","geometry":{"type":"LineString","coordinates":[[16.3619451,48.21056569999999],[16.3619282,48.2105272],[16.3619554,48.21049829999998]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt links","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"113150039","geometry":{"type":"LineString","coordinates":[[16.3620581,48.21238030000001],[16.3620756,48.2124312],[16.3626663,48.2127399],[16.3628024,48.212809899999996]]},"properties":{"highway":"pedestrian","name":"Mölker Bastei","surface":"cobblestone"}},{"type":"Feature","id":"361876873","geometry":{"type":"LineString","coordinates":[[16.3620781,48.20987289999999],[16.3620013,48.20994239999996],[16.3619347,48.209965899999986]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt rechts","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"113296995","geometry":{"type":"LineString","coordinates":[[16.3636535,48.21044269999999],[16.3635518,48.21038579999998],[16.362903,48.21013909999999],[16.3620781,48.20987289999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bankgasse","sidewalk":"both"}},{"type":"Feature","id":"361876871","geometry":{"type":"LineString","coordinates":[[16.3619554,48.21049829999998],[16.3620803,48.2104803]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt links","oneway":"yes","service":"driveway","tunnel":"building_passage"}},{"type":"Feature","id":"361876877","geometry":{"type":"LineString","coordinates":[[16.3620803,48.2104803],[16.3622537,48.210487099999995]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt links","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"360818422","geometry":{"type":"LineString","coordinates":[[16.3613925,48.21089760000001],[16.3616064,48.21086550000004]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt links","oneway":"yes","service":"driveway","tunnel":"building_passage"}},{"type":"Feature","id":"170511032","geometry":{"type":"LineString","coordinates":[[16.3641107,48.2119869],[16.3632436,48.211659500000025],[16.362891,48.21151630000003],[16.3617939,48.21105749999998]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Teinfaltstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"8079193","geometry":{"type":"LineString","coordinates":[[16.3624688,48.21206670000001],[16.3615552,48.2112851]]},"properties":{"highway":"residential","maxspeed":"30","name":"Oppolzergasse"}},{"type":"Feature","id":"171923860","geometry":{"type":"LineString","coordinates":[[16.361191,48.21133090000001],[16.3615191,48.21244530000001],[16.3615902,48.21269430000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Universitätsring","oneway":"yes"}},{"type":"Feature","id":"4998732","geometry":{"type":"LineString","coordinates":[[16.3618207,48.21242600000002],[16.3618749,48.2124728],[16.3619085,48.21254759999999],[16.3618677,48.212637],[16.3617614,48.2126748],[16.3615902,48.21269430000001],[16.3614851,48.212751000000026],[16.3613388,48.212768100000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mölker Bastei","oneway":"yes"}},{"type":"Feature","id":"170511031","geometry":{"type":"LineString","coordinates":[[16.3612537,48.21247979999998],[16.361399,48.212460899999996],[16.3615191,48.21244530000001],[16.3617083,48.212420699999996],[16.3618207,48.21242600000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schreyvogelgasse"}},{"type":"Feature","id":"360818423","geometry":{"type":"LineString","coordinates":[[16.3614037,48.209691599999985],[16.3612731,48.209710900000005]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt rechts","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"361876874","geometry":{"type":"LineString","coordinates":[[16.3618027,48.209981700000014],[16.3617706,48.20998349999999],[16.3617183,48.20985489999998]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt rechts","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"361876872","geometry":{"type":"LineString","coordinates":[[16.3619347,48.209965899999986],[16.3618027,48.209981700000014]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt rechts","oneway":"yes","service":"driveway","tunnel":"building_passage"}},{"type":"Feature","id":"360818418","geometry":{"type":"LineString","coordinates":[[16.3616064,48.21086550000004],[16.361728,48.21084619999999]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt links","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"30979875","geometry":{"type":"LineString","coordinates":[[16.3612768,48.2135064],[16.3612158,48.213280499999996],[16.3611286,48.212976200000014],[16.3610492,48.2126992],[16.3609881,48.212474799999995],[16.3609192,48.212245300000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Universitätsring","surface":"asphalt"}},{"type":"Feature","id":"360818421","geometry":{"type":"LineString","coordinates":[[16.3611303,48.21108960000001],[16.3612716,48.21093730000001],[16.361328,48.21091050000004],[16.3613925,48.21089760000001]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt links","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"4998691","geometry":{"type":"LineString","coordinates":[[16.3617939,48.21105749999998],[16.3616897,48.211166100000014],[16.3615552,48.2112851],[16.361191,48.21133090000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Löwelstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"22818072","geometry":{"type":"LineString","coordinates":[[16.3611303,48.21108960000001],[16.3611628,48.21122],[16.361191,48.21133090000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Universitätsring"}},{"type":"Feature","id":"8072955","geometry":{"type":"LineString","coordinates":[[16.3611448,48.212119400000006],[16.3610733,48.2121291],[16.3609868,48.212140799999986],[16.3608929,48.21215350000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Rathausplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"442794477","geometry":{"type":"LineString","coordinates":[[16.3609192,48.212245300000006],[16.3608929,48.21215350000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Universitätsring"}},{"type":"Feature","id":"9567011","geometry":{"type":"LineString","coordinates":[[16.3634023,48.20829800000001],[16.3630469,48.20860089999999],[16.3628124,48.20886010000001],[16.3626098,48.20908180000001],[16.361966,48.209822],[16.3620781,48.20987289999999],[16.3621252,48.210047299999985],[16.3622537,48.210487099999995],[16.3621784,48.210580600000014],[16.3618766,48.21095500000001],[16.3617939,48.21105749999998],[16.3617111,48.2110266],[16.3611303,48.21108960000001],[16.3610445,48.2110974],[16.3609248,48.211113100000006],[16.3608576,48.2111232]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Löwelstraße","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"360818417","geometry":{"type":"LineString","coordinates":[[16.3612731,48.209710900000005],[16.3610572,48.20974150000001]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt rechts","oneway":"yes","service":"driveway","tunnel":"building_passage"}},{"type":"Feature","id":"128298947","geometry":{"type":"LineString","coordinates":[[16.3599739,48.214173200000005],[16.3602964,48.21412820000003],[16.3605308,48.214098000000035],[16.3606432,48.2140886]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"30156334","geometry":{"type":"LineString","coordinates":[[16.3592592,48.214092600000015],[16.3592328,48.21399760000003],[16.3590241,48.213276699999994]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","lanes":"2","maxspeed":"30","name":"Reichsratsstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"30979915","geometry":{"type":"LineString","coordinates":[[16.3592592,48.214092600000015],[16.3594849,48.21401109999999],[16.3595459,48.21400299999999],[16.3608745,48.213826400000016],[16.3609632,48.213830400000006],[16.3610134,48.213851000000005]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","lcn":"yes","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"489071605","geometry":{"type":"LineString","coordinates":[[16.3588119,48.212515999999994],[16.3588007,48.212434900000005]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","lanes":"2","maxspeed":"30","name":"Reichsratsstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","turn:lanes":"through|right"}},{"type":"Feature","id":"277877545","geometry":{"type":"LineString","coordinates":[[16.3590241,48.213276699999994],[16.3588119,48.212515999999994]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","lanes":"2","maxspeed":"30","name":"Reichsratsstraße","oneway":"yes","source:maxspeed":"AT:zone:30","turn:lanes":"through|right"}},{"type":"Feature","id":"204792829","geometry":{"type":"LineString","coordinates":[[16.3608929,48.21215350000003],[16.3608259,48.2121626],[16.3589837,48.21241029999999],[16.3588007,48.212434900000005]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rathausplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4997677","geometry":{"type":"LineString","coordinates":[[16.3573774,48.214325299999985],[16.3573551,48.214252200000004],[16.3571308,48.21351659999999],[16.3569009,48.21276230000001],[16.3568763,48.21268169999999],[16.3566008,48.211777900000016]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","maxspeed":"30","name":"Rathausstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237926031","geometry":{"type":"LineString","coordinates":[[16.3560356,48.212794],[16.3560445,48.212873],[16.3561733,48.21363769999999]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"2","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"237915147","geometry":{"type":"LineString","coordinates":[[16.3561733,48.21363769999999],[16.3563252,48.21433250000001],[16.3563427,48.214412400000015],[16.3563637,48.2144672]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes","turn:lanes":"left|through|right"}},{"type":"Feature","id":"237915137","geometry":{"type":"LineString","coordinates":[[16.3561138,48.214202400000005],[16.3560963,48.21409589999999],[16.3560029,48.213472499999995],[16.3559535,48.2132172]]},"properties":{"highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"4583374","geometry":{"type":"LineString","coordinates":[[16.3590241,48.213276699999994],[16.358084,48.213390300000015],[16.3571308,48.21351659999999],[16.3561733,48.21363769999999]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","maxspeed":"30","name":"Liebiggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26420698","geometry":{"type":"LineString","coordinates":[[16.3585509,48.21152480000001],[16.3585756,48.21161280000001],[16.3587113,48.21209500000003],[16.3587894,48.21235329999999],[16.3588007,48.212434900000005]]},"properties":{"highway":"residential","lanes":"2","maxspeed":"30","name":"Rathausplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583382","geometry":{"type":"LineString","coordinates":[[16.3585509,48.21152480000001],[16.3584053,48.21154390000001],[16.3576475,48.2116436],[16.3575637,48.2116546],[16.3574635,48.21166740000001],[16.3566008,48.211777900000016]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","lanes":"2","maxspeed":"30","name":"Felderstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583426","geometry":{"type":"LineString","coordinates":[[16.3575637,48.2116546],[16.3575886,48.21173870000001],[16.3578329,48.2125633],[16.357855,48.212636],[16.358084,48.213390300000015],[16.358288,48.21408890000001],[16.3582999,48.2141297],[16.3583227,48.21420789999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Wien,Österreich,Europe","maxspeed":"30","name":"Ebendorferstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"171856617","geometry":{"type":"LineString","coordinates":[[16.358495,48.2113214],[16.3585509,48.21152480000001]]},"properties":{"highway":"pedestrian","name":"Rathausplatz"}},{"type":"Feature","id":"360817728","geometry":{"type":"LineString","coordinates":[[16.3607927,48.209620700000016],[16.3607671,48.20953900000001],[16.3607589,48.209508599999964],[16.360782,48.2094682],[16.3608224,48.20944189999997],[16.3612106,48.20938979999997],[16.3612924,48.20939600000003],[16.3613709,48.20955079999999]]},"properties":{"highway":"service","name":"Josef-Meinrad-Platz"}},{"type":"Feature","id":"4583445","geometry":{"type":"LineString","coordinates":[[16.3604255,48.2096573],[16.3605802,48.20964129999999],[16.3606657,48.20963219999999],[16.3607927,48.209620700000016],[16.3613709,48.20955079999999],[16.3614864,48.20960370000003],[16.3618307,48.20976150000001],[16.3618899,48.209788599999996],[16.361966,48.209822]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Josef-Meinrad-Platz"}},{"type":"Feature","id":"360818419","geometry":{"type":"LineString","coordinates":[[16.3610572,48.20974150000001],[16.3609653,48.209746199999984],[16.3609251,48.209744400000005],[16.3607927,48.209620700000016]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt rechts","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"26420693","geometry":{"type":"LineString","coordinates":[[16.3581039,48.209880099999964],[16.3581476,48.2100341]]},"properties":{"highway":"pedestrian","name":"Rathausplatz"}},{"type":"Feature","id":"4583400","geometry":{"type":"LineString","coordinates":[[16.3581039,48.209880099999964],[16.3570785,48.210017600000015],[16.3561406,48.21013959999999]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","maxspeed":"30","name":"Lichtenfelsgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26569905","geometry":{"type":"LineString","coordinates":[[16.3561406,48.21013959999999],[16.3561565,48.21020179999999],[16.3563188,48.21079789999999],[16.3564072,48.21110870000001],[16.3566008,48.211777900000016]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","maxspeed":"30","name":"Friedrich-Schmidt-Platz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26386412","geometry":{"type":"LineString","coordinates":[[16.3578084,48.2089775],[16.3578386,48.20905640000001],[16.3579489,48.2093443],[16.3580395,48.20965749999999],[16.3581039,48.209880099999964]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rathausplatz"}},{"type":"Feature","id":"26570291","geometry":{"type":"LineString","coordinates":[[16.3578084,48.2089775],[16.357633,48.208998500000035],[16.3575742,48.20900560000001],[16.3574861,48.20901760000001],[16.357431,48.20902490000003],[16.3568112,48.20910570000001]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Stadiongasse"}},{"type":"Feature","id":"4997703","geometry":{"type":"LineString","coordinates":[[16.3570785,48.210017600000015],[16.356836,48.2091901],[16.3568112,48.20910570000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bartensteingasse","oneway":"yes"}},{"type":"Feature","id":"126907687","geometry":{"type":"LineString","coordinates":[[16.3568112,48.20910570000001],[16.3562959,48.2091715],[16.356101,48.2091877]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Stadiongasse","surface":"concrete"}},{"type":"Feature","id":"341327814","geometry":{"type":"LineString","coordinates":[[16.356101,48.2091877],[16.3559036,48.209263600000014]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Stadiongasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"23486469","geometry":{"type":"LineString","coordinates":[[16.3559036,48.209263600000014],[16.355913,48.2093112],[16.3559207,48.209350099999995],[16.3561406,48.21013959999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Rathausstraße","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"29065909","geometry":{"type":"LineString","coordinates":[[16.3601365,48.20866190000001],[16.3601647,48.20875910000001],[16.3601993,48.2088784],[16.3604255,48.2096573],[16.3606428,48.210416700000025],[16.3606609,48.21046710000002],[16.3606788,48.210516900000016],[16.3608576,48.2111232],[16.3611448,48.212119400000006],[16.3611721,48.2122095],[16.3612537,48.21247979999998],[16.3613388,48.212768100000005],[16.3615242,48.21338739999999],[16.3615541,48.213453799999996],[16.3615843,48.213498500000014],[16.3616316,48.21355349999996],[16.3617047,48.21360580000001],[16.3620842,48.213779200000005],[16.3623711,48.21391049999997],[16.3625036,48.21397110000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsring","note:name":"wurde 2012 von KL-Ring in Unversitätsring umbenannt werden, siehe http://www.orf.at/stories/2116059/2116060/","old_name":"Dr.-Karl-Lueger-Ring","oneway":"yes","sidewalk":"no","surface":"asphalt","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"474366377","geometry":{"type":"LineString","coordinates":[[16.3602722,48.20858449999997],[16.3603168,48.20873499999999],[16.3603554,48.2088693],[16.3605802,48.20964129999999],[16.360637,48.20987260000001],[16.3606343,48.209955699999995],[16.3606356,48.21001560000002],[16.360645,48.21006919999999],[16.3606552,48.21010760000004]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Universitätsring"}},{"type":"Feature","id":"126196701","geometry":{"type":"LineString","coordinates":[[16.3598682,48.20870180000003],[16.3597908,48.20871260000001],[16.3594132,48.208764400000035]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Rathausplatz","source":"yahoo"}},{"type":"Feature","id":"25535788","geometry":{"type":"LineString","coordinates":[[16.3601365,48.20866190000001],[16.3599932,48.208683899999954],[16.3598682,48.20870180000003]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Rathausplatz","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"183649171","geometry":{"type":"LineString","coordinates":[[16.3598145,48.2084926],[16.3597709,48.20832300000001],[16.3595462,48.207537900000034],[16.3594431,48.207201999999995]]},"properties":{"bicycle":"yes","footway":"sidewalk","highway":"pedestrian","motor_vehicle":"emergency","name":"Dr. Karl Renner Ring","surface":"paving_stones"}},{"type":"Feature","id":"474368816","geometry":{"type":"LineString","coordinates":[[16.3578386,48.20905640000001],[16.3579861,48.209037499999994],[16.3594365,48.208850900000016],[16.3598156,48.20880290000002]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rathausplatz"}},{"type":"Feature","id":"4583414","geometry":{"type":"LineString","coordinates":[[16.3573443,48.20741720000001],[16.3574188,48.20744830000001],[16.3574837,48.20745130000003],[16.3576005,48.2074422],[16.357871,48.2074063],[16.3579067,48.2074016],[16.3584989,48.2073207],[16.358819,48.20727980000001],[16.3593378,48.20721370000001],[16.3594431,48.207201999999995],[16.3594741,48.2072019],[16.3594995,48.20720320000001],[16.3595393,48.20720690000002],[16.3595787,48.20721430000003],[16.3597125,48.207259300000004]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4583355","geometry":{"type":"LineString","coordinates":[[16.3572872,48.20743479999999],[16.3573011,48.20748689999999],[16.3575152,48.20820370000001],[16.3577112,48.20883679999997],[16.357748,48.20889009999999],[16.3578084,48.2089775]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Reichsratsstraße"}},{"type":"Feature","id":"126907683","geometry":{"type":"LineString","coordinates":[[16.3568112,48.20910570000001],[16.3567898,48.209030600000034],[16.3565878,48.20832039999999],[16.3563771,48.207571099999996]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Bartensteingasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"474368820","geometry":{"type":"LineString","coordinates":[[16.3597601,48.20860829999998],[16.3590102,48.20871170000001],[16.3589365,48.20874520000001],[16.3578455,48.208877900000005],[16.357748,48.20889009999999],[16.3577211,48.20889299999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rathausplatz"}},{"type":"Feature","id":"217195737","geometry":{"type":"LineString","coordinates":[[16.3594132,48.208764400000035],[16.3589254,48.20882850000001],[16.3580149,48.20894609999996],[16.3579184,48.2089608],[16.3578084,48.2089775]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Rathausplatz","source":"yahoo"}},{"type":"Feature","id":"205299979","geometry":{"type":"LineString","coordinates":[[16.3570423,48.2073676],[16.3570467,48.20731519999998],[16.3570612,48.2072665],[16.3570829,48.2072325],[16.357123,48.207199599999996],[16.3572178,48.20714510000002],[16.3573081,48.207140700000025],[16.3573462,48.20714960000001],[16.3574005,48.207197399999984]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Leopold-Gratz-Platz","oneway":"yes"}},{"type":"Feature","id":"23703782","geometry":{"type":"LineString","coordinates":[[16.3574005,48.207197399999984],[16.3573726,48.20725329999996],[16.3573472,48.2073235],[16.3573443,48.20741720000001],[16.3572872,48.20743479999999],[16.3571824,48.20741670000004],[16.3571115,48.2073939],[16.3570423,48.2073676]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Leopold-Gratz-Platz","oneway":"yes"}},{"type":"Feature","id":"4997688","geometry":{"type":"LineString","coordinates":[[16.3588007,48.212434900000005],[16.3586664,48.2124527],[16.3578329,48.2125633],[16.3568763,48.21268169999999],[16.3560356,48.212794],[16.3558673,48.212772400000034]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","maxspeed":"30","name":"Grillparzerstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"37788971","geometry":{"type":"LineString","coordinates":[[16.3559535,48.2132172],[16.3558798,48.2128367],[16.3558673,48.212772400000034],[16.3556892,48.211986800000005],[16.3556692,48.21189869999998]]},"properties":{"highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"147396080","geometry":{"type":"LineString","coordinates":[[16.3558256,48.21187839999999],[16.3558452,48.21196380000001],[16.3560356,48.212794]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"2","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"26569832","geometry":{"type":"LineString","coordinates":[[16.3566008,48.211777900000016],[16.3563765,48.21180699999999],[16.3559381,48.211863600000015],[16.3558256,48.21187839999999]]},"properties":{"highway":"residential","lanes":"2","maxspeed":"30","name":"Friedrich-Schmidt-Platz","source:maxspeed":"AT:zone:30","turn:lanes:forward":"left|through;right"}},{"type":"Feature","id":"39813826","geometry":{"type":"LineString","coordinates":[[16.3556692,48.21189869999998],[16.3556418,48.21176890000001],[16.3555767,48.21148289999999]]},"properties":{"cycleway":"track","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrich-Schmidt-Platz","note":"nicht Landesgerichtstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"341326431","geometry":{"type":"LineString","coordinates":[[16.3534763,48.2132034],[16.3533294,48.21319199999999]]},"properties":{"bicycle":"no","foot":"permissive","highway":"footway","name":"Therese-Schlesinger-Hof","tunnel":"building_passage"}},{"type":"Feature","id":"341326429","geometry":{"type":"LineString","coordinates":[[16.3539442,48.21323989999999],[16.353801,48.2132287]]},"properties":{"bicycle":"no","foot":"permissive","highway":"footway","name":"Therese-Schlesinger-Hof","tunnel":"building_passage"}},{"type":"Feature","id":"341326427","geometry":{"type":"LineString","coordinates":[[16.353801,48.2132287],[16.3534763,48.2132034]]},"properties":{"bicycle":"no","foot":"permissive","highway":"footway","name":"Therese-Schlesinger-Hof"}},{"type":"Feature","id":"341326428","geometry":{"type":"LineString","coordinates":[[16.3540369,48.21324709999999],[16.3539442,48.21323989999999]]},"properties":{"bicycle":"no","foot":"permissive","highway":"footway","name":"Therese-Schlesinger-Hof"}},{"type":"Feature","id":"95410565","geometry":{"type":"LineString","coordinates":[[16.3542765,48.2122143],[16.3544648,48.211538599999955]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Wickenburggasse","oneway":"yes","oneway:bicycle":"no","surface":"cobblestone"}},{"type":"Feature","id":"225488658","geometry":{"type":"LineString","coordinates":[[16.35395,48.211565999999976],[16.3544648,48.211538599999955]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Tulpengasse","oneway":"yes","oneway:bicycle":"no","surface":"cobblestone"}},{"type":"Feature","id":"237926033","geometry":{"type":"LineString","coordinates":[[16.3537749,48.21476169999997],[16.3537795,48.214729000000005],[16.3538738,48.214066],[16.3539165,48.21376620000001],[16.3540369,48.21324709999999],[16.3542765,48.2122143]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wickenburggasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"42726878","geometry":{"type":"LineString","coordinates":[[16.3556692,48.21189869999998],[16.355511,48.212011700000005],[16.3554784,48.2120745],[16.355459,48.2122837],[16.3553846,48.21235250000001],[16.3553096,48.21236060000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Landesgerichtsstraße","note":"dieses Straßenstück sollte man nicht benennen bzw. wenn, ist es Landesgerichtstraße /al","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"25498421","geometry":{"type":"LineString","coordinates":[[16.3552465,48.211504400000024],[16.3553459,48.211502499999995],[16.3555767,48.21148289999999]]},"properties":{"highway":"residential","name":"Tulpengasse","surface":"asphalt"}},{"type":"Feature","id":"225488657","geometry":{"type":"LineString","coordinates":[[16.3544648,48.211538599999955],[16.3552465,48.211504400000024]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tulpengasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"26569994","geometry":{"type":"LineString","coordinates":[[16.3552465,48.211504400000024],[16.3552714,48.21181450000003],[16.3552844,48.21197219999999],[16.3553154,48.21230700000001],[16.3553096,48.21236060000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Friedrich-Schmidt-Platz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"22924574","geometry":{"type":"LineString","coordinates":[[16.353422,48.212106500000004],[16.3535822,48.211526100000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schlösselgasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"26570072","geometry":{"type":"LineString","coordinates":[[16.3535822,48.211526100000015],[16.35395,48.211565999999976]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tulpengasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"341326430","geometry":{"type":"LineString","coordinates":[[16.3533294,48.21319199999999],[16.3532338,48.21318450000001]]},"properties":{"bicycle":"no","foot":"permissive","highway":"footway","name":"Therese-Schlesinger-Hof"}},{"type":"Feature","id":"28080759","geometry":{"type":"LineString","coordinates":[[16.3531935,48.21343239999999],[16.3530709,48.21476369999999],[16.3530669,48.214797799999985]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schlösselgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"28080755","geometry":{"type":"LineString","coordinates":[[16.3510886,48.213350399999996],[16.3512228,48.2133585],[16.3518269,48.21338399999996],[16.3531935,48.21343239999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Laudongasse","surface":"asphalt"}},{"type":"Feature","id":"339378978","geometry":{"type":"LineString","coordinates":[[16.3509955,48.21492570000001],[16.3509946,48.21487350000001],[16.3509958,48.2148425],[16.3510021,48.21467659999999],[16.3510291,48.21427200000002],[16.3510519,48.2138607],[16.3510886,48.213350399999996]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Lange Gasse","surface":"concrete"}},{"type":"Feature","id":"4997423","geometry":{"type":"LineString","coordinates":[[16.353422,48.212106500000004],[16.3532338,48.21318450000001],[16.3532032,48.21336009999996],[16.3531935,48.21343239999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schlösselgasse","oneway":"yes"}},{"type":"Feature","id":"4997412","geometry":{"type":"LineString","coordinates":[[16.3521419,48.21195370000004],[16.3518269,48.21338399999996]]},"properties":{"created_by":"Potlatch 0.4c","highway":"residential","maxspeed":"30","name":"Lammgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"25555587","geometry":{"type":"LineString","coordinates":[[16.3561406,48.21013959999999],[16.3559035,48.210170300000044],[16.3555422,48.210217099999994],[16.3554663,48.2102275]]},"properties":{"highway":"residential","lanes":"3","maxspeed":"30","name":"Friedrich-Schmidt-Platz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"126046671","geometry":{"type":"LineString","coordinates":[[16.3554663,48.2102275],[16.3555029,48.21039680000001],[16.3555439,48.21056870000001],[16.3558015,48.21175310000001],[16.3558256,48.21187839999999]]},"properties":{"cycleway":"track","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrich-Schmidt-Platz","note":"nicht Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"24341926","geometry":{"type":"LineString","coordinates":[[16.3555767,48.21148289999999],[16.355366,48.210409999999996],[16.3553365,48.21024589999999]]},"properties":{"cycleway":"track","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrich-Schmidt-Platz","note":"nicht Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"4997660","geometry":{"type":"LineString","coordinates":[[16.3518692,48.2104008],[16.3532778,48.210611099999994]]},"properties":{"created_by":"Potlatch 0.10f","highway":"residential","maxspeed":"30","name":"Schmidgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"22923704","geometry":{"type":"LineString","coordinates":[[16.3532778,48.210611099999994],[16.3540457,48.2107245],[16.3551765,48.21067669999999]]},"properties":{"highway":"living_street","name":"Schmidgasse","oneway":"yes","surface":"sett"}},{"type":"Feature","id":"29320218","geometry":{"type":"LineString","coordinates":[[16.3532778,48.210611099999994],[16.3528568,48.21204080000001]]},"properties":{"created_by":"Potlatch 0.4b","highway":"residential","maxspeed":"30","name":"Buchfeldgasse","oneway":"yes"}},{"type":"Feature","id":"4997666","geometry":{"type":"LineString","coordinates":[[16.3550563,48.2099671],[16.3551188,48.210014],[16.3551205,48.21013159999998],[16.3551282,48.2102452],[16.3551575,48.2103755],[16.3551706,48.21043159999999],[16.3551765,48.21067669999999],[16.3552183,48.21117140000001],[16.3552465,48.211504400000024]]},"properties":{"highway":"living_street","name":"Friedrich-Schmidt-Platz","oneway":"yes"}},{"type":"Feature","id":"22923803","geometry":{"type":"LineString","coordinates":[[16.354416,48.20999230000001],[16.3550563,48.2099671]]},"properties":{"highway":"living_street","name":"Loidoldgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4997695","geometry":{"type":"LineString","coordinates":[[16.3558922,48.209188400000016],[16.3558896,48.209152700000004],[16.3558846,48.20913489999998],[16.3557393,48.2086199]]},"properties":{"highway":"service","name":"Rathausstraße"}},{"type":"Feature","id":"474368822","geometry":{"type":"LineString","coordinates":[[16.3558204,48.209325500000006],[16.355913,48.2093112],[16.356836,48.2091901],[16.3576591,48.20908029999998],[16.3578386,48.20905640000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Stadiongasse"}},{"type":"Feature","id":"474368818","geometry":{"type":"LineString","coordinates":[[16.3577211,48.20889299999999],[16.3576725,48.20889709999997],[16.3576101,48.208925300000004],[16.3567898,48.209030600000034],[16.3558846,48.20913489999998],[16.3557124,48.209123699999964],[16.3553342,48.2091671]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Stadiongasse"}},{"type":"Feature","id":"4997678","geometry":{"type":"LineString","coordinates":[[16.3553748,48.207697300000035],[16.3562551,48.20759010000003],[16.3563771,48.207571099999996],[16.3569841,48.2074983],[16.3570298,48.2074686],[16.3570418,48.20743300000001],[16.3570423,48.2073676]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schmerlingplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"204801643","geometry":{"type":"LineString","coordinates":[[16.3557393,48.2086199],[16.3557618,48.208487399999996],[16.3557443,48.208415099999996]]},"properties":{"highway":"footway","name":"Rathausstraße"}},{"type":"Feature","id":"128272253","geometry":{"type":"LineString","coordinates":[[16.3554452,48.20845299999999],[16.3557443,48.208415099999996],[16.3563806,48.2083294],[16.3565878,48.20832039999999],[16.3575152,48.20820370000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Doblhoffgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583353","geometry":{"type":"LineString","coordinates":[[16.355225,48.20923500000001],[16.3550924,48.209237400000006]]},"properties":{"foot":"use_sidepath","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"126046674","geometry":{"type":"LineString","coordinates":[[16.3553365,48.21024589999999],[16.3553072,48.210115700000046],[16.355265,48.209927599999986],[16.3551237,48.2093625],[16.3550924,48.209237400000006]]},"properties":{"cycleway":"track","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"341327811","geometry":{"type":"LineString","coordinates":[[16.355225,48.20923500000001],[16.3553388,48.209217799999976],[16.3558922,48.209188400000016],[16.356101,48.2091877]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Stadiongasse","oneway":"yes","surface":"concrete"}},{"type":"Feature","id":"39814130","geometry":{"type":"LineString","coordinates":[[16.3550924,48.209237400000006],[16.3549547,48.209233600000005],[16.3548907,48.2092318],[16.3546781,48.2092284]]},"properties":{"foot":"use_sidepath","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"73234438","geometry":{"type":"LineString","coordinates":[[16.3559036,48.209263600000014],[16.3554365,48.20929219999999],[16.3553471,48.209291000000036],[16.355225,48.20923500000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Stadiongasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"146984828","geometry":{"type":"LineString","coordinates":[[16.355225,48.20923500000001],[16.3552576,48.209362699999986],[16.3554348,48.210100100000005],[16.3554663,48.2102275]]},"properties":{"cycleway":"track","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"24341927","geometry":{"type":"LineString","coordinates":[[16.3550924,48.209237400000006],[16.3550696,48.209147400000006],[16.3549555,48.208696299999986],[16.3549718,48.2085625]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Auerspergstraße","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"25498422","geometry":{"type":"LineString","coordinates":[[16.3551184,48.20845610000001],[16.3553734,48.20842590000001],[16.3554452,48.20845299999999]]},"properties":{"bicycle":"designated","foot":"designated","highway":"path","name":"Doblhoffgasse","segregated":"yes","source":"yahoo"}},{"type":"Feature","id":"4997682","geometry":{"type":"LineString","coordinates":[[16.3546781,48.2092284],[16.3546848,48.2092141],[16.3547195,48.20914590000001],[16.3548514,48.208777],[16.3549555,48.208696299999986]]},"properties":{"highway":"residential","maxspeed":"50","name":"Auerspergstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"30265527","geometry":{"type":"LineString","coordinates":[[16.3552213,48.20784090000001],[16.3543447,48.20771830000001],[16.3542806,48.207708]]},"properties":{"highway":"residential","maxspeed":"30","name":"Trautsongasse","oneway":"no"}},{"type":"Feature","id":"4849683","geometry":{"type":"LineString","coordinates":[[16.3538327,48.20927040000001],[16.3538197,48.20930179999999],[16.3532778,48.210611099999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Buchfeldgasse","oneway":"yes"}},{"type":"Feature","id":"30586910","geometry":{"type":"LineString","coordinates":[[16.3517439,48.20819399999999],[16.3521525,48.20823339999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zeltgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"30586919","geometry":{"type":"LineString","coordinates":[[16.3521525,48.20823339999998],[16.3523058,48.2082513]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zeltgasse","oneway":"yes","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"30586922","geometry":{"type":"LineString","coordinates":[[16.3523058,48.2082513],[16.3523289,48.20825410000003],[16.3525266,48.208274700000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Hugo-Bettauer-Platz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"8105817","geometry":{"type":"LineString","coordinates":[[16.3525266,48.208274700000004],[16.3542045,48.20849240000001],[16.3549718,48.2085625]]},"properties":{"cycleway":"opposite","highway":"living_street","name":"Josefsgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"22794336","geometry":{"type":"LineString","coordinates":[[16.3510886,48.213350399999996],[16.3511001,48.21328119999998],[16.3511671,48.212984699999964],[16.3514193,48.211917],[16.351432,48.211862999999994],[16.351448,48.21180890000002],[16.3518089,48.21058740000001],[16.3518692,48.2104008],[16.3521812,48.209407699999986],[16.3521931,48.20937000000001],[16.352211,48.209311100000036],[16.3525266,48.208274700000004]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lange Gasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"25498423","geometry":{"type":"LineString","coordinates":[[16.3546781,48.2092284],[16.3546717,48.20924310000001],[16.3546653,48.2092619],[16.354416,48.20999230000001],[16.3540626,48.21063720000001],[16.3540457,48.2107245],[16.3540009,48.2112975],[16.3539639,48.2113325],[16.35395,48.211565999999976]]},"properties":{"highway":"living_street","name":"Lenaugasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"126907684","geometry":{"type":"LineString","coordinates":[[16.3546781,48.2092284],[16.3544691,48.209231999999986],[16.3538327,48.20927040000001],[16.3522847,48.2093644],[16.3521931,48.20937000000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"concrete:plates"}},{"type":"Feature","id":"30265539","geometry":{"type":"LineString","coordinates":[[16.3541306,48.207685200000014],[16.3542806,48.207708]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"15","name":"Trautsongasse","oneway":"yes","tunnel":"building_passage"}},{"type":"Feature","id":"4583719","geometry":{"type":"LineString","coordinates":[[16.3527753,48.20748609999998],[16.3541306,48.207685200000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Trautsongasse","oneway":"no"}},{"type":"Feature","id":"287202873","geometry":{"type":"LineString","coordinates":[[16.3523289,48.20825410000003],[16.3523634,48.208112400000005],[16.3525708,48.208134400000006]]},"properties":{"highway":"footway","name":"Hugo-Bettauer-Platz"}},{"type":"Feature","id":"8105818","geometry":{"type":"LineString","coordinates":[[16.3509004,48.20812169999999],[16.3510047,48.208130600000004],[16.3514849,48.20817149999999],[16.3515844,48.20817779999996]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zeltgasse","oneway":"yes"}},{"type":"Feature","id":"30586907","geometry":{"type":"LineString","coordinates":[[16.3515844,48.20817779999996],[16.3517439,48.20819399999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zeltgasse","oneway":"yes","tunnel":"building_passage"}},{"type":"Feature","id":"29065206","geometry":{"type":"LineString","coordinates":[[16.3634698,48.207839500000006],[16.3633118,48.20775739999999],[16.362463,48.20726669999999],[16.361633,48.20675370000001],[16.3610492,48.20641549999999]]},"properties":{"highway":"service","lit":"yes","maxspeed":"30","name":"Heldenplatz","parking":"yes","service":"parking_aisle"}},{"type":"Feature","id":"474366381","geometry":{"type":"LineString","coordinates":[[16.3599787,48.2069151],[16.3598987,48.20697740000003],[16.3598558,48.207035099999985],[16.359835,48.20709719999999],[16.3598383,48.20716199999998],[16.360041,48.20782700000001],[16.3602281,48.20843909999999],[16.3602722,48.20858449999997]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Dr. Karl Renner Ring"}},{"type":"Feature","id":"4997697","geometry":{"type":"LineString","coordinates":[[16.3597284,48.206965999999994],[16.3596428,48.20699530000002],[16.3595797,48.20699250000001],[16.3594923,48.206982599999975],[16.3594489,48.206954499999995],[16.3593284,48.2068768]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes"}},{"type":"Feature","id":"147216221","geometry":{"type":"LineString","coordinates":[[16.3599349,48.20648419999998],[16.3599197,48.206500800000015],[16.3598917,48.206531299999995],[16.359554,48.20678699999999],[16.3594888,48.206803699999995],[16.3594471,48.20681440000001],[16.3593961,48.206840400000004],[16.3593284,48.2068768]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"50","motor_vehicle":"no","name":"Dr.-Karl-Renner-Ring","surface":"asphalt"}},{"type":"Feature","id":"29065888","geometry":{"type":"LineString","coordinates":[[16.3602861,48.206528399999996],[16.359956,48.206783599999994],[16.3597778,48.206919],[16.3597284,48.206965999999994],[16.3596971,48.207013700000005],[16.3596794,48.20705850000002],[16.3596739,48.2071009],[16.359677,48.20714319999999],[16.3597125,48.207259300000004],[16.3600752,48.2084624],[16.3601365,48.20866190000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Dr.-Karl-Renner-Ring","oneway":"yes","sidewalk":"no","surface":"asphalt","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"260383372","geometry":{"type":"LineString","coordinates":[[16.3626011,48.20559209999999],[16.3627908,48.20570699999999]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Heldenplatz","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"4997590","geometry":{"type":"LineString","coordinates":[[16.3620041,48.205227399999984],[16.362061,48.20526380000001],[16.3621796,48.20533649999999]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Heldenplatz","sidewalk":"both"}},{"type":"Feature","id":"437877428","geometry":{"type":"LineString","coordinates":[[16.3621796,48.20533649999999],[16.3626011,48.20559209999999]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Heldenplatz","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"31130147","geometry":{"type":"LineString","coordinates":[[16.3600878,48.20632600000002],[16.360188,48.2063751],[16.3602682,48.206449099999986],[16.3602861,48.206528399999996]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Bellariastraße","oneway":"yes","sidewalk":"no","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"474353096","geometry":{"type":"LineString","coordinates":[[16.3621345,48.2054775],[16.3608949,48.20642219999996]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Burgring"}},{"type":"Feature","id":"183649169","geometry":{"type":"LineString","coordinates":[[16.3598844,48.20635200000001],[16.359918,48.206384299999996],[16.359939,48.20641499999999],[16.3599418,48.2064378],[16.3599417,48.2064613],[16.3599349,48.20648419999998]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"50","motor_vehicle":"no","name":"Bellariastraße"}},{"type":"Feature","id":"474349119","geometry":{"type":"LineString","coordinates":[[16.3643559,48.20371420000001],[16.3639652,48.204002],[16.3639842,48.204075200000005],[16.3639057,48.204133600000006],[16.3627987,48.20497940000001],[16.3623613,48.20530790000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Burgring"}},{"type":"Feature","id":"133999725","geometry":{"type":"LineString","coordinates":[[16.3618093,48.205103699999995],[16.3619055,48.205029499999995],[16.3623345,48.20470710000001],[16.362701,48.20443850000001],[16.3627909,48.2043395],[16.3632443,48.20400029999999],[16.3634093,48.2038776],[16.3635162,48.203820699999994]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Burgring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"27220131","geometry":{"type":"LineString","coordinates":[[16.3637839,48.20285469999999],[16.3636595,48.2028933],[16.3628617,48.20330050000001],[16.3627571,48.203372599999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Elisabethstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10127038","geometry":{"type":"LineString","coordinates":[[16.3635162,48.203820699999994],[16.3627571,48.203372599999994],[16.362093,48.202972800000026]]},"properties":{"bicycle":"yes","highway":"unclassified","lit":"yes","maxspeed":"50","name":"Babenbergerstraße"}},{"type":"Feature","id":"441318930","geometry":{"type":"LineString","coordinates":[[16.362093,48.202972800000026],[16.3621953,48.20290539999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Nibelungengasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"44005500","geometry":{"type":"LineString","coordinates":[[16.3600878,48.20632600000002],[16.3602063,48.20629980000001],[16.3602915,48.206243900000004],[16.3603859,48.20616899999999],[16.3612816,48.205478700000015],[16.3617118,48.205174899999975],[16.3618093,48.205103699999995]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"50","name":"Burgring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"474350469","geometry":{"type":"LineString","coordinates":[[16.3633684,48.203853699999996],[16.3627442,48.20431400000001],[16.3622646,48.20466759999999],[16.3618376,48.20499240000001],[16.3616513,48.2051366],[16.3612298,48.2054497],[16.3603204,48.206134099999986],[16.3601299,48.2062775],[16.3601155,48.206285199999996],[16.3600649,48.2063124]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Burgring"}},{"type":"Feature","id":"29065863","geometry":{"type":"LineString","coordinates":[[16.3643365,48.203536499999984],[16.3642312,48.20358139999999],[16.3640541,48.203703899999994],[16.363903,48.2038067],[16.3638246,48.20386880000001],[16.3637175,48.20393609999999],[16.3621139,48.205142300000006],[16.3620041,48.205227399999984],[16.3618852,48.20531890000001],[16.3614916,48.20559990000001],[16.3604662,48.206384299999996],[16.3602861,48.206528399999996]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Burgring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"147216219","geometry":{"type":"LineString","coordinates":[[16.3589549,48.20581469999999],[16.3590731,48.205882900000006],[16.359823,48.20631509999998],[16.3598844,48.20635200000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Bellariastraße"}},{"type":"Feature","id":"47800672","geometry":{"type":"LineString","coordinates":[[16.3583738,48.206252500000005],[16.3584517,48.206193799999994],[16.3589077,48.205850200000015],[16.3589549,48.20581469999999],[16.3590626,48.20577349999999],[16.3591074,48.20575880000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Hansenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"204826758","geometry":{"type":"LineString","coordinates":[[16.3591074,48.20575880000001],[16.3590985,48.205794],[16.3590731,48.205882900000006],[16.3590225,48.205921200000006],[16.3585734,48.2062617],[16.3584818,48.206331199999994],[16.358467,48.20634239999998],[16.3583472,48.2064824]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Hansenstraße","oneway":"yes"}},{"type":"Feature","id":"442912313","geometry":{"type":"LineString","coordinates":[[16.3593284,48.2068768],[16.359098,48.20674360000001],[16.3589372,48.206649],[16.3586191,48.20647070000004],[16.3585734,48.206445099999996],[16.358467,48.20634239999998],[16.3583738,48.206252500000005]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"356848626","geometry":{"type":"LineString","coordinates":[[16.3580251,48.2051707],[16.3579939,48.205192100000005]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumstraße","oneway":"yes"}},{"type":"Feature","id":"147216220","geometry":{"type":"LineString","coordinates":[[16.3589549,48.20581469999999],[16.3580237,48.20527710000002],[16.3579402,48.20522890000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Bellariastraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"8876804","geometry":{"type":"LineString","coordinates":[[16.3580741,48.205135600000006],[16.3581537,48.20518200000001],[16.358444,48.2053559],[16.3591074,48.20575880000001],[16.3600649,48.2063124],[16.3600878,48.20632600000002]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Bellariastraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"26570366","geometry":{"type":"LineString","coordinates":[[16.3580741,48.205135600000006],[16.3580251,48.2051707]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"184311042","geometry":{"type":"LineString","coordinates":[[16.3575082,48.20698429999999],[16.3575546,48.206861],[16.35772,48.206731399999995],[16.3578636,48.2066188],[16.3580455,48.2065556]]},"properties":{"foot":"yes","highway":"service","lit":"yes","name":"Schmerlingplatz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"239911080","geometry":{"type":"LineString","coordinates":[[16.3579575,48.205073699999986],[16.3580741,48.205135600000006]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"315603122","geometry":{"type":"LineString","coordinates":[[16.3584275,48.204057199999994],[16.3581399,48.204320300000006]]},"properties":{"highway":"footway","name":"Electric Avenue","tunnel":"building_passage"}},{"type":"Feature","id":"264690090","geometry":{"type":"LineString","coordinates":[[16.3578381,48.204693099999986],[16.3577538,48.20465200000001],[16.357698,48.204624800000005]]},"properties":{"foot":"yes","highway":"footway","motor_vehicle":"delivery","name":"Meteoritenpassage","tunnel":"building_passage","website":"www.meteoritenpassage.org"}},{"type":"Feature","id":"28786334","geometry":{"type":"LineString","coordinates":[[16.3577533,48.204307099999994],[16.3578683,48.204199500000016]]},"properties":{"highway":"footway","motor_vehicle":"delivery","name":"Tonspurpassage","tunnel":"building_passage","website":"www.tonspur.at"}},{"type":"Feature","id":"4997667","geometry":{"type":"LineString","coordinates":[[16.3558556,48.20683589999999],[16.3559842,48.20687620000001],[16.3560453,48.206895299999985],[16.3567888,48.207156499999996],[16.3569818,48.207168800000005],[16.3572178,48.20714510000002]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes"}},{"type":"Feature","id":"11689310","geometry":{"type":"LineString","coordinates":[[16.3572178,48.20714510000002],[16.3573771,48.207080700000006],[16.3575082,48.20698429999999],[16.3576905,48.20687910000001],[16.3578118,48.2067802],[16.357858,48.2067395],[16.3579739,48.20664819999999],[16.3580455,48.2065556],[16.3582638,48.20633939999996],[16.3582981,48.20631230000001],[16.3583738,48.206252500000005]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes"}},{"type":"Feature","id":"147216223","geometry":{"type":"LineString","coordinates":[[16.3585734,48.206445099999996],[16.3585085,48.20644090000002],[16.3584239,48.2064498],[16.3583472,48.2064824],[16.3582426,48.20656539999999],[16.3580535,48.20670849999999],[16.3576867,48.20698780000001],[16.3575162,48.2071133],[16.3574005,48.207197399999984]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes"}},{"type":"Feature","id":"99574058","geometry":{"type":"LineString","coordinates":[[16.3560943,48.20662979999997],[16.3562076,48.20669860000001],[16.3569818,48.207168800000005]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes","source":"Bing"}},{"type":"Feature","id":"25498424","geometry":{"type":"LineString","coordinates":[[16.3555972,48.20691120000001],[16.3556534,48.20684840000001]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumstraße","oneway":"yes"}},{"type":"Feature","id":"37788972","geometry":{"type":"LineString","coordinates":[[16.3549718,48.2085625],[16.3552213,48.20784090000001],[16.3553,48.20761409999997],[16.3553905,48.20731860000001],[16.3554274,48.20721209999999],[16.3554605,48.20713119999999],[16.3554926,48.20706780000003],[16.3555418,48.20698759999999],[16.3555972,48.20691120000001]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Auerspergstraße","oneway":"yes"}},{"type":"Feature","id":"25555589","geometry":{"type":"LineString","coordinates":[[16.3570423,48.2073676],[16.3563994,48.207181899999995],[16.355888,48.207013200000034],[16.3557376,48.206960400000014]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes"}},{"type":"Feature","id":"4997709","geometry":{"type":"LineString","coordinates":[[16.3557376,48.206960400000014],[16.3555972,48.20691120000001]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"44352609","geometry":{"type":"LineString","coordinates":[[16.3557376,48.206960400000014],[16.3556891,48.207033800000005],[16.3555833,48.20720829999999],[16.3553748,48.207697300000035],[16.3551184,48.20845610000001],[16.3550956,48.2085634],[16.3550953,48.20869990000003],[16.3552044,48.209150100000016],[16.355225,48.20923500000001]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Auerspergstraße","oneway":"yes"}},{"type":"Feature","id":"25498425","geometry":{"type":"LineString","coordinates":[[16.3558556,48.20683589999999],[16.3557896,48.20689920000001],[16.3557376,48.206960400000014]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Auerspergstraße","oneway":"yes"}},{"type":"Feature","id":"122729050","geometry":{"type":"LineString","coordinates":[[16.3513413,48.206681],[16.3513957,48.206450099999984]]},"properties":{"bus":"yes","highway":"platform","name":"Piaristengasse","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"155492878","geometry":{"type":"LineString","coordinates":[[16.3555972,48.20691120000001],[16.3555265,48.20688999999999],[16.3554474,48.20687090000001],[16.3553553,48.206854899999996],[16.3548297,48.2067892],[16.3544196,48.2067079]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4997665","geometry":{"type":"LineString","coordinates":[[16.3544196,48.2067079],[16.3549264,48.206680199999965],[16.3551463,48.20669860000001],[16.355434,48.20673900000003],[16.3555148,48.20675249999999],[16.3556211,48.20677190000001],[16.3557135,48.2067945],[16.3557897,48.206816],[16.3558556,48.20683589999999]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"28080135","geometry":{"type":"LineString","coordinates":[[16.3525266,48.208274700000004],[16.3525708,48.208134400000006],[16.3527753,48.20748609999998],[16.3530738,48.2065221]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lange Gasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4997669","geometry":{"type":"LineString","coordinates":[[16.3514849,48.20817149999999],[16.3520633,48.206382400000024]]},"properties":{"created_by":"Potlatch 0.4b","highway":"living_street","name":"Neudeggergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"122605516","geometry":{"type":"LineString","coordinates":[[16.3514408,48.20631839999999],[16.3515929,48.206322],[16.3520633,48.206382400000024],[16.353042,48.206517200000036],[16.3530738,48.2065221],[16.3539315,48.20664719999999],[16.3540736,48.20666489999999],[16.3544196,48.2067079]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"secondary","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"25643766","geometry":{"type":"LineString","coordinates":[[16.3583738,48.206252500000005],[16.3582752,48.20619410000003],[16.3574531,48.2057068],[16.3573648,48.20565450000001]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"secondary","lit":"yes","maxspeed":"50","name":"Volksgartenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"239913339","geometry":{"type":"LineString","coordinates":[[16.3579939,48.205192100000005],[16.3579402,48.20522890000001],[16.3578839,48.20526770000001],[16.3573648,48.20565450000001]]},"properties":{"cycleway":"track","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Museumstraße","oneway":"yes","turn:lanes":"left|left|through|through"}},{"type":"Feature","id":"442912312","geometry":{"type":"LineString","coordinates":[[16.3568607,48.20463790000002],[16.3568737,48.20462409999999],[16.3569185,48.20457290000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Museumstraße","oneway":"yes","source:maxspeed":"sign","surface":"asphalt"}},{"type":"Feature","id":"26544177","geometry":{"type":"LineString","coordinates":[[16.3542301,48.2054023],[16.3541756,48.20574189999999],[16.3539315,48.20664719999999]]},"properties":{"highway":"living_street","is_in":"Europe,Vienna,Wien","name":"Mechitaristengasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"142538894","geometry":{"type":"LineString","coordinates":[[16.3559657,48.206063900000004],[16.3561299,48.20563709999999],[16.3561842,48.205495900000045]]},"properties":{"highway":"service","maxspeed":"30","name":"Museumstraße","source:maxspeed":"AT:zone:30","vehicle":"private"}},{"type":"Feature","id":"442910726","geometry":{"type":"LineString","coordinates":[[16.3573648,48.20565450000001],[16.3572143,48.20559320000004],[16.3570684,48.205579400000005],[16.3566773,48.20554520000002],[16.3562905,48.20550589999999],[16.3561842,48.205495900000045]]},"properties":{"bicycle":"yes","busway":"lane","cycleway":"share_busway","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Neustiftgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"155492879","geometry":{"type":"LineString","coordinates":[[16.3573648,48.20565450000001],[16.3572484,48.20574010000004],[16.3566342,48.20619159999998],[16.3560943,48.20662979999997],[16.3559035,48.2067945],[16.3558556,48.20683589999999]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"149681443","geometry":{"type":"LineString","coordinates":[[16.3561842,48.205495900000045],[16.3568094,48.204702999999995],[16.3568529,48.20464749999999],[16.3568607,48.20463790000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Museumstraße","oneway":"yes","source:maxspeed":"sign"}},{"type":"Feature","id":"22924498","geometry":{"type":"LineString","coordinates":[[16.3544931,48.204960200000016],[16.354833,48.205006]]},"properties":{"highway":"pedestrian","name":"Zitterhofergasse"}},{"type":"Feature","id":"356848625","geometry":{"type":"LineString","coordinates":[[16.3556534,48.20684840000001],[16.3557135,48.2067945],[16.3557851,48.20673399999998],[16.3565103,48.206112099999956],[16.356915,48.20581730000001],[16.3570844,48.2056905],[16.3572143,48.20559320000004],[16.3577583,48.20519730000001],[16.3578565,48.20513700000001],[16.3578894,48.20511529999999],[16.3579575,48.205073699999986]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"142539393","geometry":{"type":"LineString","coordinates":[[16.3549107,48.20506119999999],[16.3554333,48.20512089999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Zitterhofergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"10420666","geometry":{"type":"LineString","coordinates":[[16.3565404,48.2044324],[16.3565897,48.204449100000005]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"142527750","geometry":{"type":"LineString","coordinates":[[16.3549141,48.204406000000006],[16.354833,48.205006],[16.3549107,48.20506119999999],[16.3549104,48.2054325]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gardegasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"56212551","geometry":{"type":"LineString","coordinates":[[16.3568607,48.20463790000002],[16.3566227,48.204498400000006],[16.3565404,48.2044324]]},"properties":{"highway":"residential","lit":"yes","name":"Burggasse","oneway":"yes"}},{"type":"Feature","id":"235381038","geometry":{"type":"LineString","coordinates":[[16.3565897,48.204449100000005],[16.3569185,48.20457290000002],[16.3572652,48.20473100000001],[16.3576663,48.204914],[16.3577605,48.2049658],[16.3578342,48.2050069],[16.3579575,48.205073699999986]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","turn:lanes":"left|through;right|right"}},{"type":"Feature","id":"122729058","geometry":{"type":"LineString","coordinates":[[16.3516788,48.20532280000003],[16.3519441,48.205335399999996]]},"properties":{"bus":"yes","highway":"platform","name":"Kellermanngasse","network":"VOR","public_transport":"platform","shelter":"yes","wheelchair":"yes"}},{"type":"Feature","id":"122729054","geometry":{"type":"LineString","coordinates":[[16.3515824,48.20544330000001],[16.3515973,48.20534859999998]]},"properties":{"bus":"yes","highway":"platform","name":"Kellermanngasse","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"7837746","geometry":{"type":"LineString","coordinates":[[16.3515375,48.205275900000004],[16.3515345,48.20533840000002],[16.3515284,48.20538380000002],[16.3515444,48.2059854],[16.3515314,48.206242599999996],[16.3514408,48.20631839999999]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"50","name":"Kellermanngasse","oneway":"yes"}},{"type":"Feature","id":"255682499","geometry":{"type":"LineString","coordinates":[[16.3511485,48.20529620000002],[16.3511799,48.20556110000001]]},"properties":{"highway":"service","motor_vehicle":"private","name":"Augustinplatz"}},{"type":"Feature","id":"4997672","geometry":{"type":"LineString","coordinates":[[16.3515334,48.20489739999999],[16.3518888,48.204892700000016],[16.3523702,48.2048863]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Zeismannsbrunngasse","sidewalk":"no","surface":"cobblestone"}},{"type":"Feature","id":"239913342","geometry":{"type":"LineString","coordinates":[[16.3565171,48.204319699999985],[16.3565135,48.204349500000006],[16.3565177,48.20437369999999],[16.3565268,48.2044047],[16.3565404,48.2044324]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Breite Gasse"}},{"type":"Feature","id":"335975303","geometry":{"type":"LineString","coordinates":[[16.3572088,48.2031829],[16.357235,48.203187299999996],[16.3573718,48.20321039999999]]},"properties":{"bicycle":"dismount","highway":"footway","level":"0","name":"Streetartpassage","website":"www.betonblumen.org"}},{"type":"Feature","id":"9802562","geometry":{"type":"LineString","coordinates":[[16.3570934,48.20295329999999],[16.3570949,48.203011000000004],[16.3570845,48.20305969999998],[16.3570606,48.203103500000026],[16.3570351,48.203149999999994],[16.3569624,48.20329910000004],[16.3565171,48.204319699999985]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Breite Gasse"}},{"type":"Feature","id":"28786379","geometry":{"type":"LineString","coordinates":[[16.3571819,48.203177400000015],[16.3572088,48.2031829]]},"properties":{"highway":"footway","name":"Streetartpassage","tunnel":"building_passage","website":"www.betonblumen.org"}},{"type":"Feature","id":"424683976","geometry":{"type":"LineString","coordinates":[[16.357235,48.203187299999996],[16.3572421,48.20317560000001],[16.3572133,48.203172600000016]]},"properties":{"bicycle":"dismount","highway":"footway","name":"Streetartpassage","website":"www.betonblumen.org"}},{"type":"Feature","id":"424683975","geometry":{"type":"LineString","coordinates":[[16.3572133,48.203172600000016],[16.3571513,48.20316059999999],[16.3571264,48.203167199999996]]},"properties":{"bicycle":"dismount","highway":"footway","name":"Streetartpassage","tunnel":"building_passage","website":"www.betonblumen.org","wheelchair":"yes"}},{"type":"Feature","id":"335975301","geometry":{"type":"LineString","coordinates":[[16.3571264,48.203167199999996],[16.3571819,48.203177400000015]]},"properties":{"highway":"steps","incline":"up","name":"Streetartpassage","tunnel":"building_passage"}},{"type":"Feature","id":"4997673","geometry":{"type":"LineString","coordinates":[[16.3544088,48.205410900000004],[16.3544931,48.204960200000016],[16.3546079,48.20441389999999],[16.3546449,48.204396299999985],[16.3549141,48.204406000000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Faßziehergasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"84285766","geometry":{"type":"LineString","coordinates":[[16.3549364,48.20415109999996],[16.3549141,48.204406000000006]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Gardegasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"28159218","geometry":{"type":"LineString","coordinates":[[16.3554333,48.20512089999997],[16.3557544,48.20429830000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kirchberggasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"111604772","geometry":{"type":"LineString","coordinates":[[16.3540923,48.20410240000004],[16.3544474,48.20412189999999],[16.3549364,48.20415109999996],[16.3550079,48.20416229999998],[16.3554451,48.204245000000014],[16.3557544,48.20429830000003],[16.3563727,48.204403799999994],[16.3565237,48.2044296],[16.3565404,48.2044324]]},"properties":{"busway":"lane","cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4997664","geometry":{"type":"LineString","coordinates":[[16.3543577,48.202910599999996],[16.3547545,48.202960899999965],[16.3547497,48.20297980000001],[16.3547214,48.2030925],[16.3545602,48.203670200000005],[16.3545384,48.203765000000004],[16.3544474,48.20412189999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Schrankgasse","surface":"cobblestone"}},{"type":"Feature","id":"28798324","geometry":{"type":"LineString","coordinates":[[16.3514539,48.20422800000003],[16.3515194,48.204303400000015],[16.3515334,48.20489739999999],[16.3515443,48.20521450000001],[16.3515375,48.205275900000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Kirchengasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"4997704","geometry":{"type":"LineString","coordinates":[[16.3527249,48.20423059999999],[16.3527936,48.2049088],[16.3526808,48.20496840000001],[16.3525921,48.20499190000004],[16.3525285,48.2050031],[16.3525189,48.20509560000002],[16.3527099,48.205335899999994]]},"properties":{"highway":"pedestrian","lit":"yes","name":"St.-Ulrichs-Platz","sidewalk":"no","surface":"cobblestone"}},{"type":"Feature","id":"28676244","geometry":{"type":"LineString","coordinates":[[16.3523593,48.20423709999997],[16.3523702,48.2048863],[16.3525285,48.2050031]]},"properties":{"highway":"pedestrian","lit":"yes","name":"St.-Ulrichs-Platz","sidewalk":"no","surface":"cobblestone"}},{"type":"Feature","id":"29048686","geometry":{"type":"LineString","coordinates":[[16.3514539,48.20422800000003],[16.3515833,48.204230800000005],[16.3523593,48.20423709999997],[16.3527249,48.20423059999999],[16.3532382,48.2041921],[16.3537421,48.20413500000001],[16.3539678,48.20410589999997],[16.3539717,48.2041054],[16.3540923,48.20410240000004]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5010775","geometry":{"type":"LineString","coordinates":[[16.3506686,48.22082990000004],[16.352355,48.2204801],[16.3524752,48.2204552]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gießergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"50928132","geometry":{"type":"LineString","coordinates":[[16.3492661,48.219646299999994],[16.3492674,48.21968319999999],[16.3492712,48.21974320000001],[16.3492729,48.219775200000015],[16.3492464,48.219840799999986],[16.3492216,48.21990579999999],[16.349221,48.21995839999997],[16.3492491,48.22002029999999],[16.3492701,48.2200641],[16.3492776,48.220124099999964],[16.3492167,48.220274700000004]]},"properties":{"highway":"footway","name":"Gartenhof"}},{"type":"Feature","id":"205686980","geometry":{"type":"LineString","coordinates":[[16.3485361,48.219681699999995],[16.3485374,48.220978900000006]]},"properties":{"highway":"service","maxspeed":"30","name":"An der Ostseite","source:maxspeed":"AT:zone:30","vehicle":"no"}},{"type":"Feature","id":"48523818","geometry":{"type":"LineString","coordinates":[[16.3451883,48.220323699999994],[16.344174,48.22031559999999]]},"properties":{"fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"406","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"48523817","geometry":{"type":"LineString","coordinates":[[16.3451861,48.220461400000005],[16.3442377,48.220449900000006]]},"properties":{"amenity":"parking_space","fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"407","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"43483890","geometry":{"type":"LineString","coordinates":[[16.345195,48.2199104],[16.3441443,48.2199138],[16.3439827,48.21991270000001]]},"properties":{"fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"403","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"43483891","geometry":{"type":"LineString","coordinates":[[16.3451928,48.22004820000001],[16.3447319,48.22004770000001],[16.3442036,48.22004720000001],[16.3440464,48.220046999999994]]},"properties":{"fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"404","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"43483892","geometry":{"type":"LineString","coordinates":[[16.3451905,48.22018589999999],[16.3447318,48.220183899999995],[16.3442054,48.22018170000001],[16.3441102,48.22018130000001]]},"properties":{"fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"405","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"8895635","geometry":{"type":"LineString","coordinates":[[16.3435886,48.21957910000003],[16.3440178,48.220456299999995],[16.3441899,48.22063880000002]]},"properties":{"highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Westring","oneway":"yes","source:maxspeed":"AT:zone:30","taxi":"yes"}},{"type":"Feature","id":"24256158","geometry":{"type":"LineString","coordinates":[[16.3441899,48.22063880000002],[16.3442865,48.220651299999986],[16.3443699,48.22060790000003],[16.3443626,48.220236],[16.3443526,48.219733399999996],[16.3443496,48.219580199999996]]},"properties":{"highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Haupteingang","oneway":"yes","source:maxspeed":"AT:zone:30","taxi":"yes"}},{"type":"Feature","id":"43483888","geometry":{"type":"LineString","coordinates":[[16.3451995,48.21963499999998],[16.3438551,48.219644099999954]]},"properties":{"fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"401","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"43483889","geometry":{"type":"LineString","coordinates":[[16.3451972,48.219772699999965],[16.3441461,48.219779099999954],[16.3439189,48.219778399999996]]},"properties":{"fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"402","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"197334644","geometry":{"type":"LineString","coordinates":[[16.3492014,48.218318900000014],[16.3492066,48.2185939],[16.349629,48.21859319999999],[16.3496733,48.21859310000002],[16.3497849,48.21875440000002],[16.3498428,48.218838000000005],[16.3498326,48.21899700000003]]},"properties":{"highway":"service","maxspeed":"30","name":"Dr. Siebensohn-Weg","source:maxspeed":"AT:zone:30","surface":"asphalt","vehicle":"no"}},{"type":"Feature","id":"39979418","geometry":{"type":"LineString","coordinates":[[16.3495172,48.21899350000001],[16.3496202,48.219208699999996],[16.3498643,48.2197185],[16.3501261,48.220317300000005]]},"properties":{"highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Ostring"}},{"type":"Feature","id":"9655994","geometry":{"type":"LineString","coordinates":[[16.3514857,48.2178959],[16.351368,48.21790140000002],[16.3510306,48.21790519999999],[16.3509198,48.217894],[16.3508091,48.2178552],[16.3502899,48.2174708],[16.3499805,48.21748450000001]]},"properties":{"highway":"residential","is_in":"Austria,Vienna,Wien","maxspeed":"30","name":"Nadlergasse","oneway":"yes"}},{"type":"Feature","id":"205668861","geometry":{"type":"LineString","coordinates":[[16.3473947,48.219264099999975],[16.3473962,48.21957549999999]]},"properties":{"highway":"footway","name":"Prof. Deutsch Weg"}},{"type":"Feature","id":"24256163","geometry":{"type":"LineString","coordinates":[[16.3465222,48.21953740000001],[16.346578,48.21957789999999],[16.3471181,48.2195763],[16.3473962,48.21957549999999],[16.3476101,48.21957609999998],[16.3476122,48.21962099999999]]},"properties":{"highway":"service","maxspeed":"30","name":"Südring","source:maxspeed":"AT:zone:30","vehicle":"no"}},{"type":"Feature","id":"205668860","geometry":{"type":"LineString","coordinates":[[16.3473975,48.2189582],[16.3468453,48.218954199999985]]},"properties":{"highway":"service","maxspeed":"30","name":"Ladedock Südgarten"}},{"type":"Feature","id":"205686974","geometry":{"type":"LineString","coordinates":[[16.3481476,48.21968229999999],[16.3481488,48.219550199999986],[16.348149,48.21952350000001],[16.348149,48.21911750000001],[16.3481524,48.2189846]]},"properties":{"highway":"service","maxspeed":"30","name":"Lazarettgassenweg","source:maxspeed":"AT:zone:30","vehicle":"no"}},{"type":"Feature","id":"23028165","geometry":{"type":"LineString","coordinates":[[16.3481524,48.2189846],[16.3495172,48.21899350000001]]},"properties":{"highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Ostring"}},{"type":"Feature","id":"91338377","geometry":{"type":"LineString","coordinates":[[16.3481583,48.21838249999999],[16.3479547,48.2183852],[16.3474055,48.21839080000001],[16.3471861,48.2183172],[16.3469561,48.218318900000014],[16.3466434,48.218321299999985]]},"properties":{"highway":"service","maxspeed":"30","name":"Schulbezirk"}},{"type":"Feature","id":"47214336","geometry":{"type":"LineString","coordinates":[[16.3492014,48.218318900000014],[16.3481589,48.218321299999985]]},"properties":{"highway":"service","maxspeed":"30","name":"Wohnbezirk","surface":"asphalt"}},{"type":"Feature","id":"25099895","geometry":{"type":"LineString","coordinates":[[16.3473948,48.219149000000044],[16.3473975,48.2189582],[16.3474055,48.21839080000001]]},"properties":{"highway":"service","maxspeed":"30","name":"Prof. Deutsch Weg"}},{"type":"Feature","id":"205686976","geometry":{"type":"LineString","coordinates":[[16.3454009,48.21957109999997],[16.3455131,48.21957019999999],[16.3456463,48.21955099999997],[16.3457362,48.219538],[16.3463254,48.219539999999995],[16.3465222,48.21953740000001]]},"properties":{"highway":"service","maxspeed":"30","name":"Südring","source:maxspeed":"AT:zone:30","vehicle":"no"}},{"type":"Feature","id":"8895616","geometry":{"type":"LineString","coordinates":[[16.3443496,48.219580199999996],[16.3454009,48.21957109999997]]},"properties":{"highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Südgartenweg","source:maxspeed":"AT:zone:30","taxi":"yes"}},{"type":"Feature","id":"24423432","geometry":{"type":"LineString","coordinates":[[16.3461221,48.219748100000004],[16.3458544,48.219360300000005]]},"properties":{"bridge":"yes","highway":"footway","layer":"1","name":"Arnold-Pollak-Brücke"}},{"type":"Feature","id":"4997431","geometry":{"type":"LineString","coordinates":[[16.3445798,48.21806650000002],[16.3447083,48.21804399999996],[16.3454392,48.2179161],[16.3462271,48.217779500000034],[16.3462268,48.21747110000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Borschkegasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"84346490","geometry":{"type":"LineString","coordinates":[[16.3462271,48.217779500000034],[16.3462301,48.21809350000001]]},"properties":{"highway":"pedestrian","name":"Walter-Beck-Platz"}},{"type":"Feature","id":"8678425","geometry":{"type":"LineString","coordinates":[[16.3481679,48.21740429999997],[16.3481671,48.21750209999999],[16.3481666,48.2175398],[16.3481658,48.21762079999999],[16.3481629,48.217910500000016],[16.3481589,48.218321299999985],[16.3481583,48.21838249999999],[16.3481555,48.21866929999999],[16.3481524,48.2189846]]},"properties":{"highway":"service","maxspeed":"30","name":"Lazarettgassenweg"}},{"type":"Feature","id":"84346499","geometry":{"type":"LineString","coordinates":[[16.3502616,48.21723739999999],[16.3512494,48.21716630000003],[16.3513717,48.217156800000026]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria,Vienna,Wien","maxspeed":"30","name":"Rummelhardtgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4997425","geometry":{"type":"LineString","coordinates":[[16.3499515,48.2172592],[16.3502616,48.21723739999999]]},"properties":{"highway":"residential","is_in":"Austria,Vienna,Wien","maxspeed":"30","name":"Rummelhardtgasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4997415","geometry":{"type":"LineString","coordinates":[[16.3498011,48.21773089999999],[16.3499805,48.21748450000001],[16.3499664,48.21737519999999],[16.3499515,48.2172592]]},"properties":{"highway":"residential","maxspeed":"30","name":"Höfergasse","source":"yahoo"}},{"type":"Feature","id":"23120132","geometry":{"type":"LineString","coordinates":[[16.3499515,48.2172592],[16.3499422,48.21720349999998],[16.3497361,48.2159657]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Höfergasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4997413","geometry":{"type":"LineString","coordinates":[[16.3462123,48.216857000000005],[16.3454621,48.21685740000001]]},"properties":{"highway":"residential","is_in":"Austria,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Gilgegasse","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583856","geometry":{"type":"LineString","coordinates":[[16.3516278,48.21889010000001],[16.3515083,48.21880540000001],[16.3514166,48.21874600000001],[16.3510422,48.218503699999985],[16.3506642,48.218209],[16.3502286,48.217939900000005],[16.3498011,48.21773089999999],[16.3494019,48.217648999999994],[16.3482657,48.2174239],[16.3481679,48.21740429999997],[16.3480248,48.21738400000001],[16.3474156,48.2173756],[16.3471385,48.21739360000001],[16.3468679,48.21741109999999],[16.3462268,48.21747110000001]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lazarettgasse"}},{"type":"Feature","id":"9656015","geometry":{"type":"LineString","coordinates":[[16.3454392,48.2179161],[16.3454627,48.21716549999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Brünnlbadgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"23120135","geometry":{"type":"LineString","coordinates":[[16.3450755,48.216370600000005],[16.3447897,48.21571130000001]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Mauthnergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4997410","geometry":{"type":"LineString","coordinates":[[16.3454627,48.21716549999999],[16.3454611,48.217089199999975],[16.3454609,48.21701250000001],[16.3454621,48.21685740000001],[16.3454611,48.21645029999996],[16.3454181,48.21638919999998]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Brünnlbadgasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"243315939","geometry":{"type":"LineString","coordinates":[[16.3511727,48.21581499999999],[16.3510587,48.21582809999998],[16.3497361,48.2159657],[16.3489075,48.21603999999999],[16.348099,48.21611530000004],[16.3457934,48.21635530000003],[16.345699,48.21636649999999],[16.3454181,48.21638919999998],[16.3450755,48.216370600000005]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Mariannengasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"23199403","geometry":{"type":"LineString","coordinates":[[16.3462268,48.21747110000001],[16.3454627,48.21716549999999],[16.3446785,48.216858599999995],[16.3445443,48.216820799999994]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"30","name":"Lazarettgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"15792888","geometry":{"type":"LineString","coordinates":[[16.3445443,48.216820799999994],[16.3445045,48.2169169],[16.3444914,48.21701269999997],[16.3445711,48.218023500000015],[16.3445798,48.21806650000002]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Meynertgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237844082","geometry":{"type":"LineString","coordinates":[[16.3461522,48.215465300000005],[16.3460621,48.21546940000002],[16.3458909,48.21547349999997],[16.3457204,48.215490999999986]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","turn:lanes":"left|through"}},{"type":"Feature","id":"23481795","geometry":{"type":"LineString","coordinates":[[16.3457934,48.21635530000003],[16.345772,48.21591050000001],[16.3457269,48.215543999999994],[16.3457204,48.215490999999986]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Brünnlbadgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"207353691","geometry":{"type":"LineString","coordinates":[[16.3440562,48.21690480000001],[16.3438086,48.216954800000025],[16.3436531,48.21698509999999]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"298330811","geometry":{"type":"LineString","coordinates":[[16.3437354,48.21689979999999],[16.3438585,48.216906600000016],[16.3440562,48.21690480000001]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"200671386","geometry":{"type":"LineString","coordinates":[[16.3444446,48.216499],[16.3441481,48.21655770000001]]},"properties":{"highway":"service","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Mariannengasse","postal_code":"1090"}},{"type":"Feature","id":"27497479","geometry":{"type":"LineString","coordinates":[[16.3437153,48.21667780000004],[16.3437101,48.216781200000014],[16.3437416,48.21685350000001],[16.3437354,48.21689979999999],[16.3436531,48.21698509999999]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583625","geometry":{"type":"LineString","coordinates":[[16.3445443,48.216820799999994],[16.3444029,48.21682329999999],[16.3440562,48.21690480000001]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237839810","geometry":{"type":"LineString","coordinates":[[16.3457204,48.215490999999986],[16.3456233,48.21550640000001],[16.3452099,48.21559970000001],[16.3447897,48.21571130000001],[16.3439738,48.215922500000005],[16.3438622,48.21597230000003],[16.3438057,48.216010900000015],[16.3437709,48.216055900000015]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"30","name":"Kinderspitalgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237194286","geometry":{"type":"LineString","coordinates":[[16.3437709,48.216055900000015],[16.3437536,48.21610960000001],[16.3437153,48.21667780000004]]},"properties":{"cycleway":"opposite","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"30","name":"Hebragasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26738742","geometry":{"type":"LineString","coordinates":[[16.3450755,48.216370600000005],[16.3444446,48.216499]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Mariannengasse","postal_code":"1090","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38660527","geometry":{"type":"LineString","coordinates":[[16.3445443,48.216820799999994],[16.3445465,48.216737499999994],[16.3444641,48.216541800000016],[16.3444446,48.216499]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"205746178","geometry":{"type":"LineString","coordinates":[[16.3432387,48.220750100000004],[16.3436103,48.220680800000025],[16.3437939,48.22061439999996],[16.3440363,48.22052690000001],[16.3444834,48.220440499999995]]},"properties":{"bridge":"yes","covered":"yes","foot":"yes","highway":"footway","layer":"1","name":"Michelbeuernsteg"}},{"type":"Feature","id":"24412290","geometry":{"type":"LineString","coordinates":[[16.342988,48.21855120000001],[16.3433982,48.21883679999999],[16.3435858,48.219317399999994]]},"properties":{"bicycle":"no","foot":"no","highway":"service","maxspeed":"5","name":"Tiefgarage","oneway":"yes"}},{"type":"Feature","id":"37519303","geometry":{"type":"LineString","coordinates":[[16.3421478,48.218504300000006],[16.3423186,48.218477199999995],[16.3427828,48.21840340000003],[16.3429038,48.2183536]]},"properties":{"highway":"residential","maxspeed":"50","name":"Währinger Gürtel","oneway":"yes"}},{"type":"Feature","id":"6122618","geometry":{"type":"LineString","coordinates":[[16.3427415,48.22001160000002],[16.3415148,48.22023630000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schumanngasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"471274566","geometry":{"type":"LineString","coordinates":[[16.3415148,48.22023630000001],[16.340405,48.220548699999995]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Schumanngasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4996507","geometry":{"type":"LineString","coordinates":[[16.3417881,48.2206918],[16.3421381,48.22062729999999],[16.3425194,48.220558400000016],[16.3428552,48.22049709999999],[16.3429362,48.220482300000015]]},"properties":{"highway":"pedestrian","name":"Klettenhofergasse"}},{"type":"Feature","id":"24412287","geometry":{"type":"LineString","coordinates":[[16.343526,48.22185849999997],[16.3434955,48.22180320000001],[16.3434288,48.22167279999999],[16.3432345,48.2212031],[16.3431569,48.22101559999999],[16.3429362,48.220482300000015],[16.3427415,48.22001160000002],[16.3421658,48.21854590000001],[16.3421478,48.218504300000006]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxheight":"default","maxspeed":"50","name":"Währinger Gürtel","oneway":"yes","ref":"B221","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"52296261","geometry":{"type":"LineString","coordinates":[[16.3429038,48.2183536],[16.3427624,48.2183617],[16.3424859,48.2184043],[16.3423034,48.21843239999998],[16.3422316,48.218443500000035],[16.3421284,48.2184594]]},"properties":{"highway":"residential","maxspeed":"50","name":"Währinger Gürtel","oneway":"yes"}},{"type":"Feature","id":"324549970","geometry":{"type":"LineString","coordinates":[[16.3420252,48.21851029999996],[16.3421284,48.2184594]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Leo-Slezak-Gasse","oneway":"yes"}},{"type":"Feature","id":"210597181","geometry":{"type":"LineString","coordinates":[[16.3397278,48.21894549999999],[16.3402148,48.218852],[16.3402954,48.218820100000016],[16.3409226,48.21870179999999],[16.3420252,48.21851029999996],[16.3421478,48.218504300000006]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Leo-Slezak-Gasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"23711934","geometry":{"type":"LineString","coordinates":[[16.3384073,48.21991510000001],[16.3380305,48.21937729999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Syringgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"4996484","geometry":{"type":"LineString","coordinates":[[16.3399699,48.219589499999955],[16.3397706,48.219629699999956],[16.3397127,48.219643899999994],[16.339645,48.2196601]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Blumengasse","oneway":"yes","sidewalk":"both","source":"wien.at","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"53555533","geometry":{"type":"LineString","coordinates":[[16.339645,48.2196601],[16.3384073,48.21991510000001],[16.336262,48.22035919999999]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"residential","lit":"yes","maxspeed":"30","name":"Blumengasse","oneway":"yes","sidewalk":"both","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"33184733","geometry":{"type":"LineString","coordinates":[[16.3397755,48.2207205],[16.3397475,48.22067700000002],[16.339602,48.22045080000001],[16.3401289,48.2202896],[16.3401536,48.22028209999999],[16.340231,48.22025839999998]]},"properties":{"highway":"service","name":"Lutherhof","surface":"gravel","vehicle":"private"}},{"type":"Feature","id":"171978231","geometry":{"type":"LineString","coordinates":[[16.336262,48.22035919999999],[16.3366029,48.220748499999985]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hildebrandgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"4996525","geometry":{"type":"LineString","coordinates":[[16.3395494,48.22169220000001],[16.3390404,48.220916200000005],[16.3384073,48.21991510000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dempschergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28766892","geometry":{"type":"LineString","coordinates":[[16.3351935,48.21927980000001],[16.3349769,48.21866270000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Jörgerbadgasse","noexit":"yes","surface":"cobblestone"}},{"type":"Feature","id":"37519370","geometry":{"type":"LineString","coordinates":[[16.3378102,48.21873310000001],[16.3380305,48.21937729999996]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Syringgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"23711937","geometry":{"type":"LineString","coordinates":[[16.3393624,48.219039399999986],[16.3397278,48.21894549999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Leo-Slezak-Gasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both"}},{"type":"Feature","id":"28079386","geometry":{"type":"LineString","coordinates":[[16.3380305,48.21937729999996],[16.3386613,48.2192173],[16.3393624,48.219039399999986]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Beheimgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"172222299","geometry":{"type":"LineString","coordinates":[[16.3404235,48.217507900000015],[16.3404471,48.21756430000002],[16.3409226,48.21870179999999],[16.3415148,48.22023630000001],[16.3417881,48.2206918],[16.3420432,48.221120299999995],[16.3420779,48.22117860000003],[16.3426137,48.22203670000002],[16.3426438,48.222128399999974]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Theresiengasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"27323306","geometry":{"type":"LineString","coordinates":[[16.3445798,48.21806650000002],[16.3437258,48.21821269999998],[16.343066,48.2183258],[16.3429038,48.2183536]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Borschkegasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"8096263","geometry":{"type":"LineString","coordinates":[[16.3416682,48.217337600000036],[16.3415519,48.217353599999996],[16.3404235,48.217507900000015]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Jörgerstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"324549972","geometry":{"type":"LineString","coordinates":[[16.3421478,48.218504300000006],[16.3421284,48.2184594],[16.3421083,48.21841290000003],[16.3417073,48.21742930000002],[16.3416951,48.217399400000005],[16.3416682,48.217337600000036]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Währinger Gürtel","oneway":"yes","ref":"B221","surface":"paved"}},{"type":"Feature","id":"218017203","geometry":{"type":"LineString","coordinates":[[16.3419537,48.21729529999999],[16.3419906,48.217354400000005],[16.3421182,48.217569499999996],[16.3422802,48.21789530000001],[16.3424762,48.218380800000034],[16.3424859,48.2184043]]},"properties":{"highway":"service","lit":"yes","maxspeed":"50","name":"Währinger Gürtel","oneway":"yes"}},{"type":"Feature","id":"277657664","geometry":{"type":"LineString","coordinates":[[16.3392305,48.21766410000001],[16.3388396,48.21768639999999]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Jörgerstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"11381454","geometry":{"type":"LineString","coordinates":[[16.3392305,48.21766410000001],[16.3392544,48.21772560000002],[16.3397278,48.21894549999999],[16.3399083,48.2194226],[16.3399699,48.219589499999955],[16.3400683,48.219852599999996],[16.340231,48.22025839999998],[16.3403674,48.220485999999994],[16.340405,48.220548699999995],[16.3404401,48.22059759999999],[16.340917,48.22126109999999],[16.3409478,48.22130390000001],[16.340989,48.221362],[16.3415988,48.22222160000001],[16.3416439,48.222285200000016]]},"properties":{"cycleway":"no","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Martinstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"171978982","geometry":{"type":"LineString","coordinates":[[16.339645,48.2196601],[16.3395695,48.219481599999995],[16.3393624,48.219039399999986],[16.3390247,48.21827400000004],[16.3388538,48.21773160000001],[16.3388396,48.21768639999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Ranftlgasse","oneway":"yes","oneway:bicycle":"yes","sidewalk":"both","source":"wien.at","surface":"asphalt"}},{"type":"Feature","id":"384794715","geometry":{"type":"LineString","coordinates":[[16.3404235,48.217507900000015],[16.3393231,48.21765199999999],[16.3392305,48.21766410000001]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Jörgerstraße","oneway":"yes","surface":"asphalt","turn:lanes":"through|right"}},{"type":"Feature","id":"53378164","geometry":{"type":"LineString","coordinates":[[16.3353567,48.217888199999976],[16.3353773,48.21794439999999],[16.3355276,48.2183546],[16.3355858,48.2185135],[16.3358173,48.21914530000004],[16.336055,48.2197941],[16.336262,48.22035919999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bergsteiggasse","oneway":"yes"}},{"type":"Feature","id":"146985781","geometry":{"type":"LineString","coordinates":[[16.3388396,48.21768639999999],[16.3385519,48.21771029999999],[16.3382145,48.217746500000004],[16.3379315,48.217755899999986],[16.3375506,48.21769119999996],[16.3373825,48.21766310000001],[16.3370054,48.21761009999997],[16.3369154,48.21762050000001],[16.3354273,48.2178758],[16.3353567,48.217888199999976]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Jörgerstraße","oneway":"yes"}},{"type":"Feature","id":"23711936","geometry":{"type":"LineString","coordinates":[[16.3375506,48.21769119999996],[16.3375621,48.2177446],[16.3376885,48.21826849999999],[16.3377361,48.218450099999984],[16.3378102,48.21873310000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Syringgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"210597317","geometry":{"type":"LineString","coordinates":[[16.3349268,48.2174258],[16.3349569,48.21749679999999],[16.3352875,48.2178031],[16.3352887,48.21780460000002],[16.3353567,48.217888199999976]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bergsteiggasse","oneway":"yes","source:maxspeed":"sign"}},{"type":"Feature","id":"224762051","geometry":{"type":"LineString","coordinates":[[16.343154,48.216954499999986],[16.343467,48.21689900000001],[16.3437354,48.21689979999999]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237505066","geometry":{"type":"LineString","coordinates":[[16.3436531,48.21698509999999],[16.3432089,48.21707539999997]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"138562516","geometry":{"type":"LineString","coordinates":[[16.3432089,48.21707539999997],[16.3431726,48.216995999999995],[16.343154,48.216954499999986]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermanngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26738659","geometry":{"type":"LineString","coordinates":[[16.3432948,48.217259600000006],[16.3434381,48.21723],[16.3438163,48.21715050000003],[16.3440666,48.2171003],[16.3444391,48.21702350000001],[16.3444914,48.21701269999997]]},"properties":{"highway":"pedestrian","name":"Zimmermannplatz"}},{"type":"Feature","id":"4996487","geometry":{"type":"LineString","coordinates":[[16.3437258,48.21821269999998],[16.3433693,48.217339100000004],[16.3432948,48.217259600000006],[16.3432353,48.217132100000015],[16.3432264,48.217112999999955],[16.3432089,48.21707539999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermanngasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237194279","geometry":{"type":"LineString","coordinates":[[16.3427868,48.21615439999999],[16.3430021,48.21610800000002],[16.3434091,48.21602010000001],[16.3434676,48.21600749999999]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"30","name":"Kinderspitalgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"concrete"}},{"type":"Feature","id":"20440237","geometry":{"type":"LineString","coordinates":[[16.3434676,48.21600749999999],[16.3436069,48.215967500000005],[16.3436743,48.21592670000001],[16.3436858,48.21589800000001],[16.3437057,48.2158197],[16.3437177,48.21561029999998]]},"properties":{"highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"30","name":"Hebragasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237916536","geometry":{"type":"LineString","coordinates":[[16.3434676,48.21600749999999],[16.3436265,48.216026599999964],[16.3437709,48.216055900000015]]},"properties":{"cycleway":"opposite","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Kinderspitalgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"35383449","geometry":{"type":"LineString","coordinates":[[16.343154,48.216954499999986],[16.3431341,48.216911100000004],[16.3431044,48.21684640000001],[16.3430778,48.2167886],[16.3428644,48.216323399999965],[16.3427868,48.21615439999999]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermanngasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"concrete"}},{"type":"Feature","id":"26738646","geometry":{"type":"LineString","coordinates":[[16.3430778,48.2167886],[16.3436426,48.2166766],[16.3436827,48.216676500000005],[16.3437153,48.21667780000004]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"146985785","geometry":{"type":"LineString","coordinates":[[16.3424207,48.21722879999999],[16.342322,48.21724280000004],[16.3420185,48.21728590000001],[16.3419537,48.21729529999999],[16.3418897,48.21730489999999],[16.3418378,48.21731270000001],[16.3417946,48.217320400000006],[16.3416682,48.217337600000036]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","turn:lanes":"left|through|through"}},{"type":"Feature","id":"23311963","geometry":{"type":"LineString","coordinates":[[16.3424207,48.21722879999999],[16.3424441,48.21728329999999],[16.3424708,48.217335099999985],[16.3429038,48.2183536],[16.342988,48.21855120000001],[16.3433094,48.2193417],[16.3433658,48.2194786],[16.3434154,48.2195988],[16.3437198,48.220254600000004],[16.3439725,48.22059970000004],[16.344293,48.22094680000001],[16.3447075,48.22130279999999],[16.3450598,48.221535899999964],[16.3454278,48.221733700000016],[16.3456406,48.22184960000001],[16.3460994,48.22203600000003],[16.3465761,48.222185999999994],[16.3471133,48.2223309],[16.3477258,48.22249339999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Währinger Gürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"384292261","geometry":{"type":"LineString","coordinates":[[16.3416682,48.217337600000036],[16.3416003,48.217201700000004],[16.3415386,48.21707719999998],[16.3414824,48.216968500000036]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"4","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"26738607","geometry":{"type":"LineString","coordinates":[[16.3432089,48.21707539999997],[16.3425829,48.21719730000001],[16.3425232,48.21720890000003],[16.3424207,48.21722879999999]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"30","name":"Lazarettgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"378275518","geometry":{"type":"LineString","coordinates":[[16.34195,48.21634259999999],[16.3419993,48.2164344],[16.3422837,48.21695750000001],[16.3423271,48.217044999999985],[16.3423466,48.217081399999984],[16.3423632,48.2171123],[16.3423725,48.217131600000016],[16.3424207,48.21722879999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"4","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","ref":"B221","turn:lanes":"left|through|through|through;right"}},{"type":"Feature","id":"35317166","geometry":{"type":"LineString","coordinates":[[16.34195,48.21634259999999],[16.3427868,48.21615439999999]]},"properties":{"cycleway:left":"opposite_lane","cycleway:right":"lane","highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"30","name":"Kinderspitalgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"224762049","geometry":{"type":"LineString","coordinates":[[16.3423632,48.2171123],[16.3424704,48.21709089999999],[16.343154,48.216954499999986]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"30","name":"Lazarettgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4996478","geometry":{"type":"LineString","coordinates":[[16.3370054,48.21761009999997],[16.3370367,48.21752179999996],[16.337242,48.21711750000003]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Palffygasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"sign"}},{"type":"Feature","id":"384794714","geometry":{"type":"LineString","coordinates":[[16.3408041,48.216596100000004],[16.3410953,48.21653040000001],[16.3412394,48.21649790000001]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:urban","turn:lanes":"through|through|right"}},{"type":"Feature","id":"384292260","geometry":{"type":"LineString","coordinates":[[16.3414824,48.216968500000036],[16.3412881,48.2165928],[16.3412394,48.21649790000001]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"5","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","ref":"B221","turn:lanes":"left|through|through|through|through"}},{"type":"Feature","id":"5010789","geometry":{"type":"LineString","coordinates":[[16.3404235,48.217507900000015],[16.3403824,48.21740220000001],[16.3403731,48.21737630000001],[16.340146,48.216744499999976]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Müglendergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"sign","surface":"asphalt"}},{"type":"Feature","id":"210597285","geometry":{"type":"LineString","coordinates":[[16.3389994,48.2169634],[16.3391893,48.217541799999964],[16.3391976,48.217567],[16.3392305,48.21766410000001]]},"properties":{"highway":"tertiary","is_in":"Wien","lanes":"1","lit":"yes","maxspeed":"30","name":"Veronikagasse","oneway":"yes","sidewalk":"both","source:maxspeed":"sign"}},{"type":"Feature","id":"224715391","geometry":{"type":"LineString","coordinates":[[16.3411778,48.215821000000034],[16.3411845,48.215795000000014],[16.3413389,48.21576240000002],[16.3413772,48.2157838],[16.341628,48.2162495],[16.3416112,48.216274],[16.341508,48.21630099999999],[16.3414728,48.21633409999998],[16.3414743,48.216374900000005],[16.3414927,48.21639880000001],[16.34155,48.21643040000001]]},"properties":{"highway":"service","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"224715392","geometry":{"type":"LineString","coordinates":[[16.341508,48.21630099999999],[16.3414575,48.21629630000001],[16.3414206,48.21626029999999]]},"properties":{"highway":"service","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"376410648","geometry":{"type":"LineString","coordinates":[[16.3413684,48.216472099999976],[16.34155,48.21643040000001],[16.3417638,48.216383500000035],[16.3418205,48.21637100000001],[16.34195,48.21634259999999]]},"properties":{"cycleway:left":"opposite_lane","cycleway:right":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","oneway:bicycle":"no","turn:lanes":"left|through"}},{"type":"Feature","id":"245115220","geometry":{"type":"LineString","coordinates":[[16.3412394,48.21649790000001],[16.3413684,48.216472099999976]]},"properties":{"cycleway:right":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"4996503","geometry":{"type":"LineString","coordinates":[[16.3316878,48.22291569999999],[16.3310124,48.22172420000001],[16.3306752,48.22111380000001],[16.330311,48.220468600000004],[16.3298513,48.21984770000003]]},"properties":{"created_by":"Potlatch 0.10f","highway":"residential","maxspeed":"30","name":"Kastnergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5010790","geometry":{"type":"LineString","coordinates":[[16.3320632,48.21997859999996],[16.3323449,48.220602300000024],[16.3327043,48.2211676],[16.3333166,48.22215449999999],[16.3333519,48.22221150000004],[16.3340208,48.22296890000001],[16.3347675,48.223805200000044]]},"properties":{"highway":"residential","maxspeed":"30","name":"Weidmanngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"37519307","geometry":{"type":"LineString","coordinates":[[16.3289414,48.220138899999995],[16.3293648,48.22079600000001],[16.329384,48.22088670000002],[16.3297548,48.22143030000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Lacknergasse","oneway":"yes"}},{"type":"Feature","id":"37519305","geometry":{"type":"LineString","coordinates":[[16.3306752,48.22111380000001],[16.3314843,48.220840200000026],[16.3315553,48.220820599999996],[16.3323449,48.220602300000024],[16.3331256,48.220390399999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Beheimgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"53556204","geometry":{"type":"LineString","coordinates":[[16.3281299,48.22041799999997],[16.3285369,48.22106919999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rokitanskygasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"30190610","geometry":{"type":"LineString","coordinates":[[16.336262,48.22035919999999],[16.3349181,48.220639500000004],[16.3341114,48.2207966]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blumengasse","oneway":"yes"}},{"type":"Feature","id":"227970769","geometry":{"type":"LineString","coordinates":[[16.3331256,48.220390399999985],[16.3344245,48.2201278],[16.336055,48.2197941],[16.3380305,48.21937729999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Beheimgasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"11384861","geometry":{"type":"LineString","coordinates":[[16.3338278,48.224264000000005],[16.3330875,48.22342420000001],[16.3327199,48.22300759999999],[16.3325305,48.22279399999999],[16.332435,48.22268679999999],[16.3323881,48.22263319999999],[16.33235,48.22258360000001],[16.3323322,48.222557300000005],[16.332316,48.22252230000004],[16.3322825,48.22245269999999],[16.332211,48.222312399999964],[16.3320708,48.222027],[16.3318174,48.22151389999999],[16.3317914,48.22146129999996],[16.3317707,48.221419499999996],[16.3314843,48.220840200000026],[16.3311818,48.2202168],[16.3310881,48.2200215],[16.330995,48.219818599999996],[16.330938,48.21964800000001],[16.3308885,48.21947060000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Hormayrgasse"}},{"type":"Feature","id":"227970783","geometry":{"type":"LineString","coordinates":[[16.3329009,48.21974740000002],[16.3320632,48.21997859999996],[16.3311818,48.2202168],[16.3310649,48.22026320000003],[16.330311,48.220468600000004],[16.3293648,48.22079600000001],[16.3285369,48.22106919999999],[16.3276881,48.221348199999966]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pezzlgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"23712060","geometry":{"type":"LineString","coordinates":[[16.3308885,48.21947060000002],[16.3309088,48.2194624],[16.3309345,48.2194571],[16.3309815,48.21944719999999],[16.3326133,48.2191282],[16.3326792,48.21911530000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rötzergasse","source":"yahoo"}},{"type":"Feature","id":"60640443","geometry":{"type":"LineString","coordinates":[[16.327352,48.220685100000026],[16.3273127,48.220616500000006],[16.3267001,48.21954640000001],[16.326678,48.2195217],[16.3266206,48.219457500000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rosensteingasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"4996482","geometry":{"type":"LineString","coordinates":[[16.327352,48.220685100000026],[16.3280701,48.22044679999999],[16.3281299,48.22041799999997],[16.328213,48.22037810000003],[16.3289414,48.220138899999995],[16.3298513,48.21984770000003],[16.3304671,48.21965319999998],[16.3307837,48.21955199999999],[16.3308116,48.21953869999999],[16.3308361,48.21951640000003],[16.3308885,48.21947060000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rötzergasse"}},{"type":"Feature","id":"505413699","geometry":{"type":"LineString","coordinates":[[16.3224428,48.22108450000002],[16.3228315,48.22094959999998],[16.3233604,48.22075459999999],[16.3236484,48.220643499999994],[16.3241802,48.2204107],[16.3248097,48.22013850000002],[16.3254117,48.21987390000001],[16.3261996,48.21952249999998],[16.3262766,48.21948430000003],[16.3263149,48.21945980000001],[16.3263434,48.21943590000001],[16.3263969,48.219389500000034]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"56455210","geometry":{"type":"LineString","coordinates":[[16.3266206,48.219457500000004],[16.3263485,48.21962300000001],[16.3254745,48.22001560000001],[16.3237251,48.2207717],[16.3229229,48.22108539999999],[16.3224737,48.22125539999999],[16.3222498,48.2212739]]},"properties":{"bicycle":"yes","highway":"service","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","vehicle":"destination"}},{"type":"Feature","id":"223971683","geometry":{"type":"LineString","coordinates":[[16.3264774,48.21933769999998],[16.3264452,48.2193164],[16.3264305,48.219305399999996],[16.3264261,48.21930090000001],[16.3264148,48.2192895],[16.3264025,48.21926869999996],[16.3263892,48.21924179999999],[16.3263729,48.219189099999994]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Rosensteingasse","oneway":"yes"}},{"type":"Feature","id":"505413704","geometry":{"type":"LineString","coordinates":[[16.3263729,48.219189099999994],[16.3263381,48.21906680000001]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Rosensteingasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"56455223","geometry":{"type":"LineString","coordinates":[[16.3224428,48.22108450000002],[16.3225485,48.220977000000005],[16.3233016,48.22069920000001],[16.3241188,48.22034869999999],[16.3253818,48.2198094],[16.3261694,48.219468800000016],[16.3264015,48.21936840000001],[16.3264774,48.21933769999998]]},"properties":{"bicycle":"yes","highway":"service","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","vehicle":"destination"}},{"type":"Feature","id":"5004102","geometry":{"type":"LineString","coordinates":[[16.3266206,48.219457500000004],[16.3265563,48.21940860000001],[16.3264774,48.21933769999998]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Rosensteingasse","oneway":"yes"}},{"type":"Feature","id":"4996501","geometry":{"type":"LineString","coordinates":[[16.3378102,48.21873310000001],[16.3358173,48.21914530000004],[16.3351935,48.21927980000001],[16.3342875,48.219466600000004],[16.3329009,48.21974740000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pezzlgasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29570105","geometry":{"type":"LineString","coordinates":[[16.3326792,48.21911530000003],[16.3327653,48.21909839999998],[16.3340489,48.21884609999998],[16.3342294,48.21881059999998],[16.3342791,48.21879070000003],[16.3342857,48.218744300000026],[16.3341211,48.21824179999999],[16.3341004,48.2181913]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rötzergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"150133452","geometry":{"type":"LineString","coordinates":[[16.3336007,48.2208909],[16.3331256,48.220390399999985],[16.3329009,48.21974740000002],[16.3327015,48.21917879999998],[16.3326792,48.21911530000003],[16.3326568,48.21904670000001],[16.332526,48.21864690000004],[16.3324084,48.218247700000006],[16.3323968,48.2182085],[16.332379,48.2181482]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Kalvarienberggasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"150120123","geometry":{"type":"LineString","coordinates":[[16.332379,48.2181482],[16.3322095,48.21817200000001],[16.331969,48.218207699999994],[16.3317921,48.21821699999998],[16.3316925,48.21821929999999],[16.3312037,48.21822259999999]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Elterleinplatz","oneway":"yes","source":"geoimage.at (high res)"}},{"type":"Feature","id":"442914476","geometry":{"type":"LineString","coordinates":[[16.3312037,48.21822259999999],[16.3310171,48.21820960000002],[16.3307416,48.2181904]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Elterleinplatz","oneway":"yes","source":"geoimage.at (high res)"}},{"type":"Feature","id":"138646486","geometry":{"type":"LineString","coordinates":[[16.3308885,48.21947060000002],[16.3308015,48.2193455],[16.3307902,48.219234900000004],[16.3307879,48.21909700000003],[16.3308082,48.218896899999976],[16.3308274,48.21873640000001],[16.3308967,48.2182947],[16.3308981,48.218284900000015],[16.3308945,48.218274399999984],[16.3308872,48.21826340000004],[16.3308678,48.218241500000005],[16.3308115,48.21821320000001],[16.3307416,48.2181904]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"50","name":"Hormayrgasse","oneway":"yes","source":"geoimage.at (high res)"}},{"type":"Feature","id":"150120133","geometry":{"type":"LineString","coordinates":[[16.3312037,48.21822259999999],[16.3311065,48.218286500000005],[16.3311016,48.218291599999986],[16.3310788,48.21831550000002],[16.3310599,48.21834450000003],[16.3310196,48.2185681],[16.3309752,48.218814700000024],[16.330939,48.21891550000004],[16.3309016,48.21906849999999],[16.3308859,48.219258300000035],[16.3308885,48.21947060000002]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"50","name":"Hormayrgasse","oneway":"yes","source":"geoimage.at (high res)"}},{"type":"Feature","id":"195532942","geometry":{"type":"LineString","coordinates":[[16.3263969,48.219389500000034],[16.326437,48.2193618],[16.3264774,48.21933769999998],[16.3265297,48.21931760000001],[16.3266925,48.21924760000002],[16.3274629,48.21891640000001],[16.3275349,48.21888550000003],[16.3275585,48.21887429999998],[16.327692,48.218813600000004],[16.3281978,48.21863479999999],[16.3282325,48.218626700000016],[16.328265,48.21862229999999],[16.328329,48.21861710000002],[16.3284484,48.21861050000004]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"138646547","geometry":{"type":"LineString","coordinates":[[16.3274882,48.218643799999995],[16.327516,48.21874109999999],[16.3275287,48.21878579999998]]},"properties":{"cycleway":"no","electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"4789272","geometry":{"type":"LineString","coordinates":[[16.3281978,48.21863479999999],[16.3282126,48.21868530000003],[16.3282273,48.218735699999996],[16.3282499,48.21878140000001],[16.3288973,48.22009009999999],[16.3289414,48.220138899999995]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Lacknergasse","oneway":"yes"}},{"type":"Feature","id":"285182494","geometry":{"type":"LineString","coordinates":[[16.3275287,48.21878579999998],[16.3275379,48.218814399999985],[16.3275467,48.21884159999999],[16.3275585,48.21887429999998]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes"}},{"type":"Feature","id":"23711733","geometry":{"type":"LineString","coordinates":[[16.3284484,48.21861050000004],[16.3283521,48.2186705],[16.3283129,48.218696300000005],[16.3282722,48.21871709999999],[16.3282273,48.218735699999996],[16.3279686,48.2188414],[16.3274457,48.219088400000004],[16.3274326,48.21909410000001],[16.3268554,48.21935239999999],[16.3268111,48.21937220000001],[16.3266206,48.219457500000004],[16.3263163,48.219570000000004],[16.3260416,48.21968720000001],[16.3254467,48.21994849999999],[16.3236863,48.22071690000001],[16.3228836,48.22102000000001],[16.3225429,48.2211451],[16.3224711,48.2211748],[16.322387,48.22120960000001],[16.3223097,48.221243500000014],[16.3222498,48.2212739],[16.3221177,48.2213462],[16.3219575,48.221424299999995],[16.32177,48.2214994],[16.3216111,48.22155409999999],[16.3215556,48.2215707],[16.321441,48.221604799999994]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"37421738","geometry":{"type":"LineString","coordinates":[[16.3249453,48.2186883],[16.3261857,48.21853089999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mariengasse","oneway":"yes"}},{"type":"Feature","id":"244147727","geometry":{"type":"LineString","coordinates":[[16.3274136,48.21837020000001],[16.3274297,48.21842910000004],[16.3274882,48.218643799999995]]},"properties":{"cycleway":"no","electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"160894195","geometry":{"type":"LineString","coordinates":[[16.3301389,48.21824290000001],[16.3298255,48.21829829999999],[16.329507,48.218357499999996],[16.3288798,48.21849],[16.3284484,48.21861050000004]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße","source":"yahoo"}},{"type":"Feature","id":"210598154","geometry":{"type":"LineString","coordinates":[[16.3261857,48.21853089999999],[16.3262605,48.218521100000004],[16.327345,48.218379200000015],[16.3274136,48.21837020000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Mariengasse","oneway":"yes","sidewalk":"both","source:maxspeed":"sign"}},{"type":"Feature","id":"141233620","geometry":{"type":"LineString","coordinates":[[16.3307416,48.2181904],[16.3307153,48.2181928],[16.3305541,48.218201300000004],[16.3303846,48.21821380000003],[16.3301389,48.21824290000001]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße"}},{"type":"Feature","id":"150120124","geometry":{"type":"LineString","coordinates":[[16.3307416,48.2181904],[16.3309992,48.21814789999999],[16.33101,48.21814710000001],[16.3316804,48.218098999999995],[16.3321253,48.21805760000004],[16.3321929,48.218051299999985],[16.3323462,48.21803129999998]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Elterleinplatz","oneway":"yes","source":"geoimage.at (high res)"}},{"type":"Feature","id":"211549406","geometry":{"type":"LineString","coordinates":[[16.3315795,48.21775950000003],[16.3316212,48.2177097],[16.3316064,48.217614499999996],[16.3316577,48.21750700000004]]},"properties":{"highway":"footway","name":"Kindermanngasse"}},{"type":"Feature","id":"211549403","geometry":{"type":"LineString","coordinates":[[16.3316212,48.2177097],[16.3317087,48.2177456]]},"properties":{"highway":"footway","name":"Kindermanngasse"}},{"type":"Feature","id":"211549405","geometry":{"type":"LineString","coordinates":[[16.3315916,48.21783210000004],[16.3315795,48.21775950000003]]},"properties":{"highway":"steps","name":"Kindermanngasse"}},{"type":"Feature","id":"211549401","geometry":{"type":"LineString","coordinates":[[16.3317087,48.2177456],[16.331718,48.2178016]]},"properties":{"highway":"steps","name":"Kindermanngasse"}},{"type":"Feature","id":"211549404","geometry":{"type":"LineString","coordinates":[[16.331718,48.2178016],[16.3316386,48.21785059999999]]},"properties":{"highway":"footway","name":"Kindermanngasse"}},{"type":"Feature","id":"249412429","geometry":{"type":"LineString","coordinates":[[16.3316734,48.2180668],[16.3316386,48.21785059999999],[16.3315916,48.21783210000004]]},"properties":{"highway":"footway","name":"Kindermanngasse"}},{"type":"Feature","id":"24341674","geometry":{"type":"LineString","coordinates":[[16.3353567,48.217888199999976],[16.3352632,48.217919199999955],[16.3352407,48.21792669999999],[16.3350057,48.21803489999999],[16.3347704,48.2181253],[16.3346718,48.2181482],[16.3345724,48.218165400000004],[16.3343443,48.218181200000004],[16.3341004,48.2181913],[16.3328375,48.2181453],[16.3325916,48.21813839999999],[16.3325295,48.21813660000004],[16.332379,48.2181482]]},"properties":{"cycleway":"lane","highway":"secondary","history":"Retrieved from v11","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Jörgerstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"211549402","geometry":{"type":"LineString","coordinates":[[16.3316577,48.21750700000004],[16.3315858,48.21710970000001]]},"properties":{"highway":"service","name":"Kindermanngasse","service":"driveway"}},{"type":"Feature","id":"4583411","geometry":{"type":"LineString","coordinates":[[16.3323462,48.21803129999998],[16.332504,48.218003399999986],[16.3328549,48.21789060000003],[16.333229,48.217766299999994],[16.3335084,48.2177222],[16.3343108,48.217601],[16.3344962,48.21757299999999],[16.3348565,48.2174498],[16.3349268,48.2174258],[16.3351931,48.2173152],[16.3354141,48.21720210000001],[16.3356558,48.21711139999999],[16.3359051,48.21705140000003],[16.3360928,48.21702060000001],[16.3362933,48.21700520000002],[16.3364964,48.216996600000016],[16.3367149,48.21701030000003],[16.3369462,48.2170548],[16.337242,48.21711750000003],[16.3375672,48.21715950000001],[16.3377612,48.217167200000006],[16.3379795,48.21714130000001],[16.3382807,48.2170888],[16.3389994,48.2169634],[16.340146,48.216744499999976],[16.3408041,48.216596100000004]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"175493927","geometry":{"type":"LineString","coordinates":[[16.3316577,48.21750700000004],[16.3317296,48.217536000000024],[16.3322473,48.21746830000001]]},"properties":{"highway":"service","name":"St.-Bartholomäus-Platz","service":"driveway"}},{"type":"Feature","id":"146985784","geometry":{"type":"LineString","coordinates":[[16.3267495,48.215931799999964],[16.3267664,48.215993499999996],[16.3269092,48.2165143],[16.3271733,48.217481599999985],[16.3274136,48.21837020000001]]},"properties":{"cycleway":"no","electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"4996475","geometry":{"type":"LineString","coordinates":[[16.3273106,48.21593279999999],[16.3268193,48.215933800000016]]},"properties":{"foot":"yes","highway":"footway","name":"Mayssengasse"}},{"type":"Feature","id":"11831120","geometry":{"type":"LineString","coordinates":[[16.3273411,48.216507500000006],[16.3281493,48.21650589999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Parhamerplatz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"11830819","geometry":{"type":"LineString","coordinates":[[16.3284484,48.21861050000004],[16.3284346,48.218518200000005],[16.3281418,48.216562899999985],[16.3281493,48.21650589999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weißgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"210597467","geometry":{"type":"LineString","coordinates":[[16.3269092,48.2165143],[16.3269814,48.21651320000001],[16.3273411,48.216507500000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geblergasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"11830574","geometry":{"type":"LineString","coordinates":[[16.3281961,48.2156368],[16.3290343,48.21562929999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Spitzackergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"31906237","geometry":{"type":"LineString","coordinates":[[16.3281961,48.2156368],[16.3272956,48.215650900000014]]},"properties":{"foot":"yes","highway":"footway","name":"Parhamerplatz"}},{"type":"Feature","id":"5004064","geometry":{"type":"LineString","coordinates":[[16.3272956,48.215650900000014],[16.3273106,48.21593279999999],[16.3273411,48.216507500000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Parhamerplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"11830827","geometry":{"type":"LineString","coordinates":[[16.3281493,48.21650589999999],[16.3281583,48.216437299999996],[16.3281961,48.2156368]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Parhamerplatz","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"488828280","geometry":{"type":"LineString","coordinates":[[16.3300496,48.21567379999996],[16.3299644,48.215710400000006],[16.3299608,48.21574460000002],[16.3299458,48.215927300000004]]},"properties":{"access":"no","highway":"service","motor_vehicle":"designated","name":"Einfahrt Tiefgarage Parhamerplatz","service":"parking_aisle","surface":"asphalt"}},{"type":"Feature","id":"141233628","geometry":{"type":"LineString","coordinates":[[16.3266994,48.215744099999995],[16.3267495,48.215931799999964]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"23487751","geometry":{"type":"LineString","coordinates":[[16.3281493,48.21650589999999],[16.3290586,48.216503700000004],[16.3300259,48.216498],[16.3319361,48.21648959999999],[16.3320677,48.21648099999999],[16.3321823,48.216473500000006],[16.3333852,48.216436200000004],[16.3335148,48.21643040000001],[16.3345693,48.2163472],[16.3355835,48.216264300000006],[16.3372575,48.2161361],[16.3387674,48.21601070000003],[16.3408749,48.21582230000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geblergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"11820124","geometry":{"type":"LineString","coordinates":[[16.3271733,48.217481599999985],[16.3270952,48.21749109999999],[16.3260499,48.2176178],[16.3259382,48.217631400000016]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Lobenhauerngasse","oneway":"yes","sidewalk":"both","source:maxspeed":"sign"}},{"type":"Feature","id":"210598155","geometry":{"type":"LineString","coordinates":[[16.3259382,48.217631400000016],[16.3245964,48.217801899999955],[16.3232337,48.21794750000001],[16.3223438,48.2180592]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lobenhauerngasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"141233627","geometry":{"type":"LineString","coordinates":[[16.3263381,48.21906680000001],[16.3261857,48.21853089999999],[16.3259382,48.217631400000016],[16.3256772,48.21669829999999],[16.3255466,48.2162252],[16.3254907,48.216036299999985],[16.3254797,48.21600180000004]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Rosensteingasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"210597462","geometry":{"type":"LineString","coordinates":[[16.3256772,48.21669829999999],[16.3257616,48.2166857],[16.3268325,48.2165258],[16.3269092,48.2165143]]},"properties":{"highway":"residential","maxspeed":"50","name":"Geblergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"23985123","geometry":{"type":"LineString","coordinates":[[16.3267495,48.215931799999964],[16.3266483,48.215935099999996],[16.3255619,48.21597700000001],[16.3254745,48.215981400000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"50","name":"Mayssengasse","oneway":"yes"}},{"type":"Feature","id":"237844086","geometry":{"type":"LineString","coordinates":[[16.3502668,48.21497600000001],[16.3507853,48.214939500000014],[16.3508558,48.2149345],[16.3509751,48.214926399999996],[16.3509955,48.21492570000001]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt","turn:lanes":"through|right"}},{"type":"Feature","id":"172550567","geometry":{"type":"LineString","coordinates":[[16.3493913,48.2149613],[16.3494105,48.214985600000006],[16.3494311,48.21501230000001],[16.3494637,48.215040200000004],[16.3494839,48.215046599999994],[16.3495221,48.21505859999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Kochgasse","oneway":"yes"}},{"type":"Feature","id":"20444390","geometry":{"type":"LineString","coordinates":[[16.3493913,48.2149613],[16.3493244,48.2149967],[16.3492104,48.21500470000001],[16.3491415,48.215001200000046],[16.3490047,48.2149747],[16.3486238,48.21485200000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Skodagasse","oneway":"yes"}},{"type":"Feature","id":"8096351","geometry":{"type":"LineString","coordinates":[[16.3482146,48.21404609999999],[16.3494553,48.214084799999995]]},"properties":{"created_by":"Potlatch alpha","cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Haspingergasse","oneway":"yes"}},{"type":"Feature","id":"149641164","geometry":{"type":"LineString","coordinates":[[16.345685,48.215290299999964],[16.3459039,48.21534439999999],[16.3460236,48.2153706],[16.3461416,48.2153768]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"237839814","geometry":{"type":"LineString","coordinates":[[16.3457204,48.215490999999986],[16.345685,48.215290299999964]]},"properties":{"highway":"residential","maxspeed":"30","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"237844088","geometry":{"type":"LineString","coordinates":[[16.3472713,48.215273499999995],[16.3475436,48.2152413],[16.347909,48.215211700000026]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","turn:lanes":"left|through"}},{"type":"Feature","id":"237844085","geometry":{"type":"LineString","coordinates":[[16.347909,48.215211700000026],[16.3480082,48.21523640000001],[16.348039,48.215260700000016],[16.3480464,48.2152931],[16.348051,48.21534249999999],[16.348099,48.21611530000004],[16.3481408,48.21690830000003],[16.3481639,48.21727899999999],[16.3481679,48.21740429999997]]},"properties":{"highway":"residential","is_in":"Europe,Austria,Vienna,Wien","maxspeed":"30","name":"Pelikangasse","oneway":"yes","place_numbers":"1-18"}},{"type":"Feature","id":"237844079","geometry":{"type":"LineString","coordinates":[[16.3461416,48.2153768],[16.3464264,48.2153557],[16.3469079,48.21531010000001],[16.3472713,48.215273499999995]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"28079922","geometry":{"type":"LineString","coordinates":[[16.345685,48.215290299999964],[16.3456744,48.2152361],[16.3456031,48.21454769999997],[16.3455631,48.21447269999999],[16.3455458,48.214193300000005]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Feldgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"122605517","geometry":{"type":"LineString","coordinates":[[16.3486238,48.21485200000001],[16.3484589,48.2147995],[16.3481738,48.2146941],[16.3480086,48.21457939999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Skodagasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"237844090","geometry":{"type":"LineString","coordinates":[[16.347909,48.215211700000026],[16.3481994,48.215191300000015],[16.3485671,48.21516550000001],[16.3485937,48.21516359999998],[16.349098,48.2151188],[16.3491375,48.21511430000001],[16.3495221,48.21505859999999],[16.3498758,48.215008100000006],[16.3502668,48.21497600000001]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"243583618","geometry":{"type":"LineString","coordinates":[[16.350947,48.21503540000003],[16.350868,48.215040999999985],[16.3506134,48.21506170000001],[16.3501628,48.215084899999994],[16.3495955,48.2151403],[16.3491967,48.2151954],[16.3491623,48.2152002],[16.3486621,48.215249399999976],[16.348578,48.21525460000001],[16.3483891,48.21526620000003],[16.3480464,48.2152931],[16.3473692,48.2153539],[16.3467483,48.21541379999999],[16.3462002,48.21546119999999],[16.3461522,48.215465300000005]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"475073387","geometry":{"type":"LineString","coordinates":[[16.3484849,48.213222099999996],[16.3485785,48.21322649999999],[16.3489313,48.213243300000016],[16.3493955,48.21326959999999],[16.3494241,48.213271099999986],[16.3495107,48.2132756]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Laudongasse","source":"yahoo","surface":"concrete"}},{"type":"Feature","id":"475073386","geometry":{"type":"LineString","coordinates":[[16.3495107,48.2132756],[16.349594,48.21327930000001],[16.3509961,48.213346],[16.3510886,48.213350399999996]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Laudongasse","source":"yahoo","surface":"concrete"}},{"type":"Feature","id":"4997670","geometry":{"type":"LineString","coordinates":[[16.3485856,48.21259550000002],[16.3486387,48.21259710000001],[16.3494787,48.2126226],[16.349552,48.212624799999986]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"50","name":"Mölker Gasse","oneway":"yes"}},{"type":"Feature","id":"4997414","geometry":{"type":"LineString","coordinates":[[16.347284,48.213166599999994],[16.347278,48.21323180000002],[16.3471939,48.21415139999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Daungasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"435036266","geometry":{"type":"LineString","coordinates":[[16.3461723,48.213132400000006],[16.3461179,48.21319399999999],[16.3460729,48.213245900000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Skodagasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"211272013","geometry":{"type":"LineString","coordinates":[[16.3459152,48.2130463],[16.3459839,48.21312149999997]]},"properties":{"highway":"residential","maxspeed":"50","name":"Skodagasse","source":"yahoo","surface":"concrete","voltage":"600"}},{"type":"Feature","id":"4997426","geometry":{"type":"LineString","coordinates":[[16.3455458,48.214193300000005],[16.3455683,48.214157099999994],[16.3454776,48.21317049999999],[16.3454729,48.21311879999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Feldgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"8096326","geometry":{"type":"LineString","coordinates":[[16.3459839,48.21312149999997],[16.3460194,48.213171200000005],[16.3460729,48.213245900000004],[16.3463457,48.21362740000001],[16.3464322,48.213712999999984],[16.3465384,48.213783199999995],[16.3467534,48.2139052],[16.3471939,48.21415139999999],[16.3477361,48.2144423],[16.3479213,48.21453550000004],[16.3479496,48.21454969999999],[16.3480086,48.21457939999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Skodagasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"27275492","geometry":{"type":"LineString","coordinates":[[16.3459839,48.21312149999997],[16.3461723,48.213132400000006],[16.3462975,48.21313969999997],[16.3466256,48.21314910000001],[16.3469604,48.21315759999999],[16.347284,48.213166599999994],[16.3475791,48.213177599999995],[16.3478873,48.21319189999994],[16.3483888,48.2132172],[16.3484849,48.213222099999996]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Laudongasse","source":"yahoo","surface":"concrete"}},{"type":"Feature","id":"95406738","geometry":{"type":"LineString","coordinates":[[16.3454729,48.21311879999999],[16.3454211,48.21266270000001],[16.3454121,48.212615],[16.3454011,48.21252399999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Feldgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"211632046","geometry":{"type":"LineString","coordinates":[[16.3454011,48.21252399999997],[16.3454687,48.2125662],[16.3455007,48.2125887],[16.3455181,48.21260100000001],[16.3455562,48.2126293],[16.3455844,48.21265460000001],[16.3456364,48.21270369999999],[16.3457003,48.21277359999999],[16.3457565,48.21284719999997],[16.3458292,48.21294369999998],[16.3458742,48.21299880000001],[16.3459152,48.2130463]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Skodagasse","source:maxspeed":"AT:urban","surface":"concrete"}},{"type":"Feature","id":"4997417","geometry":{"type":"LineString","coordinates":[[16.3495934,48.21184490000002],[16.34959,48.21190939999997],[16.349552,48.212624799999986],[16.3495299,48.21308920000004],[16.3495156,48.21319840000001],[16.3495107,48.2132756],[16.3495094,48.21328700000004],[16.349505,48.21335210000001],[16.3494553,48.214084799999995],[16.3493913,48.2149613]]},"properties":{"highway":"residential","maxspeed":"50","name":"Kochgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"29048688","geometry":{"type":"LineString","coordinates":[[16.3500407,48.21180900000002],[16.3495934,48.21184490000002]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Florianigasse","oneway":"yes"}},{"type":"Feature","id":"4997657","geometry":{"type":"LineString","coordinates":[[16.3518089,48.21058740000001],[16.3503931,48.210584299999994],[16.3503201,48.210584100000034]]},"properties":{"highway":"living_street","name":"Maria-Treu-Gasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"4997701","geometry":{"type":"LineString","coordinates":[[16.3480692,48.21079610000001],[16.3486864,48.21079309999999],[16.3487548,48.21079280000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Löwenburggasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4583660","geometry":{"type":"LineString","coordinates":[[16.3553096,48.21236060000001],[16.3552428,48.212356400000004],[16.3542765,48.2122143],[16.353422,48.212106500000004],[16.3528568,48.21204080000001],[16.3521419,48.21195370000004],[16.351507,48.21187259999999],[16.351432,48.211862999999994],[16.3513393,48.211851300000006],[16.3511391,48.21182619999999],[16.3505171,48.211776800000024],[16.3501904,48.21179620000004],[16.3501728,48.211797700000005],[16.3500407,48.21180900000002]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","maxspeed":"30","name":"Florianigasse","oneway":"yes"}},{"type":"Feature","id":"96173591","geometry":{"type":"LineString","coordinates":[[16.3452813,48.212466800000016],[16.3453019,48.21239650000001],[16.3453111,48.21229439999999]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Skodagasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4997705","geometry":{"type":"LineString","coordinates":[[16.3462709,48.211163699999986],[16.3462887,48.211232499999994],[16.3465335,48.2116934]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Kupkagasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4997428","geometry":{"type":"LineString","coordinates":[[16.3470321,48.21157299999999],[16.3465335,48.2116934],[16.3452354,48.21201740000001],[16.3451626,48.21203560000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Krotenthallergasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"29048689","geometry":{"type":"LineString","coordinates":[[16.3495934,48.21184490000002],[16.3487363,48.21193499999998],[16.3486508,48.21194650000001],[16.3485483,48.211960800000014],[16.3482502,48.21200159999998],[16.3479476,48.2120314],[16.3473442,48.21210099999999],[16.3469506,48.212152300000014],[16.3468637,48.212194899999986],[16.346347,48.21228690000001],[16.3456089,48.212414800000005],[16.3455451,48.212425800000005],[16.3454777,48.2124628],[16.3454306,48.212500500000004],[16.3454011,48.21252399999997]]},"properties":{"highway":"residential","is_in":"Austria,Europe,Vienna,Wien","maxspeed":"30","name":"Florianigasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26125316","geometry":{"type":"LineString","coordinates":[[16.3462709,48.211163699999986],[16.3460026,48.21064710000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","motorcar":"no","name":"Hamerlingplatz","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"4997699","geometry":{"type":"LineString","coordinates":[[16.3471182,48.210916],[16.3463899,48.21108609999999],[16.3463159,48.211122399999965],[16.3462709,48.211163699999986]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Klesheimgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"26125210","geometry":{"type":"LineString","coordinates":[[16.3462709,48.211163699999986],[16.3458997,48.21125760000004],[16.345516,48.21135480000001],[16.3450517,48.211472300000025],[16.3450161,48.21148130000003],[16.3448976,48.211511299999984]]},"properties":{"bicycle":"yes","highway":"pedestrian","motorcar":"no","name":"Hamerlingplatz","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"26125366","geometry":{"type":"LineString","coordinates":[[16.3447904,48.211538399999995],[16.3444332,48.21103440000002]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Hamerlingplatz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"26125289","geometry":{"type":"LineString","coordinates":[[16.3455451,48.212425800000005],[16.3454715,48.2124225],[16.3454224,48.21240180000001],[16.3453874,48.21237000000002],[16.3453111,48.21229439999999],[16.3451626,48.21203560000001],[16.3451015,48.2119457],[16.3450238,48.21187869999997],[16.3447904,48.211538399999995]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Skodagasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"28079923","geometry":{"type":"LineString","coordinates":[[16.344126,48.21191570000002],[16.3446432,48.21216739999997],[16.3448855,48.21228769999999],[16.3451262,48.212396600000005],[16.3452813,48.212466800000016],[16.3454011,48.21252399999997]]},"properties":{"highway":"residential","maxspeed":"50","name":"Florianigasse","source:maxspeed":"AT:urban","surface":"concrete"}},{"type":"Feature","id":"4996506","geometry":{"type":"LineString","coordinates":[[16.3444332,48.21103440000002],[16.3443541,48.21094249999999],[16.3442281,48.21086460000001]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Skodagasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"367126508","geometry":{"type":"LineString","coordinates":[[16.3443541,48.21094249999999],[16.3442637,48.21092889999997],[16.3441905,48.21092759999999],[16.3441468,48.21093160000001]]},"properties":{"highway":"residential","name":"Josef-Matthias-Hauer-Platz","oneway":"yes"}},{"type":"Feature","id":"12718114","geometry":{"type":"LineString","coordinates":[[16.3440045,48.210982900000005],[16.3440289,48.21096890000004],[16.3440553,48.21095869999999],[16.3441468,48.21093160000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Josef-Matthias-Hauer-Platz","oneway":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"304002815","geometry":{"type":"LineString","coordinates":[[16.3442281,48.21086460000001],[16.3440787,48.21065759999999],[16.3440516,48.2106206],[16.3440363,48.210603899999995]]},"properties":{"cycleway":"opposite_track","highway":"residential","lanes":"2","maxspeed":"30","name":"Josef-Matthias-Hauer-Platz","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4997691","geometry":{"type":"LineString","coordinates":[[16.3445228,48.211012900000014],[16.3446462,48.2109787],[16.3447105,48.21096300000002],[16.3455376,48.2107608],[16.345641,48.21073549999997],[16.3460026,48.21064710000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","motor_vehicle":"designated","motorcar":"no","name":"Hamerlingplatz","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"367126507","geometry":{"type":"LineString","coordinates":[[16.3441468,48.21093160000001],[16.3441936,48.210898499999985],[16.3442281,48.21086460000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Josef-Matthias-Hauer-Platz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"245222094","geometry":{"type":"LineString","coordinates":[[16.3437177,48.21561029999998],[16.3437351,48.2153553],[16.3437435,48.21531590000001],[16.3437615,48.2152749]]},"properties":{"highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"30","name":"Hebragasse","oneway":"yes","source:maxspeed":"AT:zone:30","turn:lanes":"left|right"}},{"type":"Feature","id":"237626855","geometry":{"type":"LineString","coordinates":[[16.3437615,48.2152749],[16.3437811,48.21520240000001]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße"}},{"type":"Feature","id":"442914474","geometry":{"type":"LineString","coordinates":[[16.3437811,48.21520240000001],[16.3438767,48.215206800000004],[16.3442351,48.21522350000001],[16.3452835,48.21525919999999],[16.3455803,48.21527800000001],[16.345685,48.215290299999964]]},"properties":{"highway":"secondary","is_in":"Austria,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"15793004","geometry":{"type":"LineString","coordinates":[[16.3427727,48.2152538],[16.3427732,48.21528409999999],[16.3427868,48.21615439999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermanngasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"26609861","geometry":{"type":"LineString","coordinates":[[16.3438773,48.21383399999999],[16.3441336,48.21383980000002],[16.3441109,48.21417450000001]]},"properties":{"created_by":"Potlatch 0.6c","highway":"residential","maxspeed":"30","name":"Albertplatz","oneway":"yes"}},{"type":"Feature","id":"12717809","geometry":{"type":"LineString","coordinates":[[16.3441109,48.21417450000001],[16.344082,48.21457769999998],[16.3438336,48.21457129999999]]},"properties":{"created_by":"Potlatch 0.6c","highway":"residential","maxspeed":"30","name":"Albertplatz","oneway":"yes"}},{"type":"Feature","id":"20440224","geometry":{"type":"LineString","coordinates":[[16.343854,48.214169200000015],[16.3438336,48.21457129999999],[16.3437887,48.21512500000003],[16.3437813,48.215172999999965],[16.3437811,48.21520240000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Albertgasse","oneway":"yes"}},{"type":"Feature","id":"237626847","geometry":{"type":"LineString","coordinates":[[16.3427655,48.21517079999998],[16.3427693,48.215206499999994],[16.3427719,48.215233100000006],[16.3427727,48.2152538]]},"properties":{"highway":"residential","is_in":"Austria,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Alser Straße"}},{"type":"Feature","id":"237626842","geometry":{"type":"LineString","coordinates":[[16.3437615,48.2152749],[16.3436745,48.21527320000001],[16.3427727,48.2152538],[16.3419324,48.215234200000026],[16.3415203,48.215226],[16.3414652,48.21522490000001],[16.3413557,48.2152227]]},"properties":{"highway":"secondary","is_in":"Austria,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"237626838","geometry":{"type":"LineString","coordinates":[[16.3413063,48.215131499999956],[16.341421,48.21513449999998],[16.3419124,48.21514730000001],[16.3427655,48.21517079999998],[16.3433285,48.2151868],[16.3436258,48.21519699999999],[16.3436809,48.21519889999999],[16.3437811,48.21520240000001]]},"properties":{"highway":"secondary","is_in":"Austria,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"237626849","geometry":{"type":"LineString","coordinates":[[16.3413557,48.2152227],[16.3411306,48.21521569999996],[16.3408404,48.21520699999999],[16.3407177,48.21520530000004],[16.3405086,48.215182200000015]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"27657701","geometry":{"type":"LineString","coordinates":[[16.3415606,48.21413770000001],[16.3407546,48.2141297]]},"properties":{"created_by":"Potlatch 0.7","highway":"residential","maxspeed":"30","name":"Breitenfelder Gasse","source":"yahoo"}},{"type":"Feature","id":"28080758","geometry":{"type":"LineString","coordinates":[[16.3455458,48.214193300000005],[16.3441109,48.21417450000001],[16.343854,48.214169200000015],[16.3436004,48.21416540000001],[16.3434644,48.21416249999996],[16.3426267,48.21415769999999],[16.3415606,48.21413770000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Breitenfelder Gasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"227698376","geometry":{"type":"LineString","coordinates":[[16.3404639,48.2150877],[16.3406698,48.215114099999994],[16.3407897,48.21511680000003],[16.3410813,48.2151231],[16.3411596,48.215126],[16.3413063,48.215131499999956]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"351329884","geometry":{"type":"LineString","coordinates":[[16.338588,48.215051200000005],[16.3388472,48.215081699999985],[16.3391054,48.21509019999999],[16.3396847,48.21509019999999],[16.3398262,48.21507629999999],[16.3402795,48.2150709],[16.3403395,48.21507700000001],[16.3404639,48.2150877]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße","oneway":"yes"}},{"type":"Feature","id":"23713138","geometry":{"type":"LineString","coordinates":[[16.3385914,48.21510520000001],[16.3386062,48.2151815],[16.3387674,48.21601070000003],[16.3389088,48.216662499999956],[16.3389994,48.2169634]]},"properties":{"highway":"residential","is_in":"Wien","lit":"yes","maxspeed":"30","name":"Veronikagasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"146985783","geometry":{"type":"LineString","coordinates":[[16.3405086,48.215182200000015],[16.3403941,48.21517180000001],[16.340079,48.21515410000001],[16.3389779,48.215137999999996],[16.3388835,48.2151327],[16.338789,48.21512580000001],[16.3386909,48.21511749999999],[16.3385914,48.21510520000001]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße","oneway":"yes"}},{"type":"Feature","id":"147545881","geometry":{"type":"LineString","coordinates":[[16.337242,48.21711750000003],[16.3372635,48.21705560000001],[16.3372575,48.2161361],[16.337142,48.21498],[16.337134,48.214900400000005]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Palffygasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"254723023","geometry":{"type":"LineString","coordinates":[[16.3385914,48.21510520000001],[16.3385012,48.21509259999996],[16.3384104,48.2150776],[16.3382281,48.21504490000001],[16.3380453,48.215015600000044]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße","oneway":"yes"}},{"type":"Feature","id":"254723024","geometry":{"type":"LineString","coordinates":[[16.3380453,48.215015600000044],[16.3382873,48.21500450000002],[16.3385119,48.2150388],[16.338588,48.215051200000005]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße","oneway":"yes"}},{"type":"Feature","id":"171978159","geometry":{"type":"LineString","coordinates":[[16.3385914,48.21510520000001],[16.338588,48.215051200000005]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"residential","is_in":"Wien","lit":"yes","maxspeed":"50","name":"Veronikagasse","surface":"asphalt"}},{"type":"Feature","id":"254723019","geometry":{"type":"LineString","coordinates":[[16.338588,48.215051200000005],[16.3385846,48.2149958],[16.3385269,48.2140665]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Wien","lit":"yes","maxspeed":"30","name":"Veronikagasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4996477","geometry":{"type":"LineString","coordinates":[[16.3385269,48.2140665],[16.3368528,48.2140057]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Payergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29048733","geometry":{"type":"LineString","coordinates":[[16.3385269,48.2140665],[16.339939,48.2141005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Thelemangasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28693078","geometry":{"type":"LineString","coordinates":[[16.3368528,48.2140057],[16.3369828,48.2144193]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Brunnengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"99209608","geometry":{"type":"LineString","coordinates":[[16.339939,48.2141005],[16.3401144,48.214106800000025],[16.3402228,48.21411070000002],[16.340533,48.21412179999999],[16.3406187,48.21412480000001],[16.3407546,48.2141297]]},"properties":{"highway":"residential","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"234873388","geometry":{"type":"LineString","coordinates":[[16.3369828,48.2144193],[16.3371024,48.21480109999999],[16.337134,48.214900400000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Brunnengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8089523","geometry":{"type":"LineString","coordinates":[[16.3427655,48.21517079999998],[16.3427617,48.21515010000002],[16.3426267,48.21415769999999],[16.3424876,48.2131249]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Bennogasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"95406718","geometry":{"type":"LineString","coordinates":[[16.341172,48.21313989999999],[16.341209,48.21323490000003],[16.3415606,48.21413770000001],[16.3418667,48.215023099999996],[16.3419052,48.215128600000014],[16.3419124,48.21514730000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Blindengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26609862","geometry":{"type":"LineString","coordinates":[[16.3438773,48.21383399999999],[16.3436209,48.213830400000006],[16.3436004,48.21416540000001],[16.3435739,48.214560500000005],[16.3438336,48.21457129999999]]},"properties":{"created_by":"Potlatch 0.6c","highway":"residential","maxspeed":"30","name":"Albertplatz","oneway":"yes"}},{"type":"Feature","id":"26609858","geometry":{"type":"LineString","coordinates":[[16.3423787,48.21240879999999],[16.3426793,48.21239640000002],[16.3426508,48.21209809999999],[16.3426452,48.21204]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bennoplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"12717820","geometry":{"type":"LineString","coordinates":[[16.3420307,48.21206319999999],[16.3420674,48.212417000000016],[16.3423133,48.212410500000004],[16.3423787,48.21240879999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bennoplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"28080757","geometry":{"type":"LineString","coordinates":[[16.341172,48.21313989999999],[16.3412733,48.2131387],[16.3424033,48.213125899999994],[16.3424876,48.2131249],[16.3439237,48.2131287],[16.3454729,48.21311879999999],[16.345561,48.21312119999999],[16.3458721,48.2131186],[16.3459839,48.21312149999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Laudongasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26609859","geometry":{"type":"LineString","coordinates":[[16.3426452,48.21204],[16.342625,48.211863600000015],[16.3426032,48.21165819999999],[16.3423672,48.21166869999999],[16.3423068,48.21167140000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bennoplatz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"26609860","geometry":{"type":"LineString","coordinates":[[16.3420307,48.21206319999999],[16.3419802,48.211684899999995],[16.3422439,48.211674000000016],[16.3423068,48.21167140000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bennoplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"96190456","geometry":{"type":"LineString","coordinates":[[16.344126,48.21191570000002],[16.3440888,48.21189509999999],[16.3440655,48.211883],[16.3440455,48.21186919999997],[16.3440268,48.2118538],[16.3440058,48.2118308],[16.3439886,48.21181070000003],[16.3439784,48.21178800000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Albertgasse","source:maxspeed":"AT:zone:30","surface":"cobblestone","voltage":"600"}},{"type":"Feature","id":"28079920","geometry":{"type":"LineString","coordinates":[[16.344126,48.21191570000002],[16.3440021,48.21197240000001],[16.3439955,48.21203729999999],[16.3439237,48.2131287],[16.3438773,48.21383399999999],[16.343854,48.214169200000015]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Albertgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4996483","geometry":{"type":"LineString","coordinates":[[16.3440021,48.21197240000001],[16.3438833,48.2119783],[16.3426452,48.21204],[16.342347,48.212050600000026]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Florianigasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"26738443","geometry":{"type":"LineString","coordinates":[[16.3397966,48.21236479999999],[16.340235,48.2131631],[16.3407546,48.2141297],[16.3412647,48.21505589999998],[16.3412826,48.21508850000001],[16.3413063,48.215131499999956],[16.3413557,48.2152227],[16.3413774,48.2152634],[16.3419201,48.21628629999998],[16.34195,48.21634259999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"28244395","geometry":{"type":"LineString","coordinates":[[16.3408809,48.21237940000003],[16.341153,48.21309020000001],[16.341172,48.21313989999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Blindengasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"4996514","geometry":{"type":"LineString","coordinates":[[16.340136,48.21240119999999],[16.3408809,48.21237940000003]]},"properties":{"highway":"service","maxspeed":"30","name":"Uhlplatz"}},{"type":"Feature","id":"28080756","geometry":{"type":"LineString","coordinates":[[16.340235,48.2131631],[16.3410809,48.21314220000002],[16.341172,48.21313989999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Laudongasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26738446","geometry":{"type":"LineString","coordinates":[[16.3397036,48.21198509999999],[16.3397242,48.212095500000004],[16.3397966,48.21236479999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Uhlplatz","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"95406733","geometry":{"type":"LineString","coordinates":[[16.342347,48.212050600000026],[16.3420307,48.21206319999999],[16.3408755,48.21210909999999],[16.3407986,48.21211220000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Florianigasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"28079389","geometry":{"type":"LineString","coordinates":[[16.3407986,48.21211220000001],[16.3408255,48.21219959999999],[16.3408809,48.21237940000003]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Uhlplatz","oneway":"yes","oneway:bicycle":"no","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4996498","geometry":{"type":"LineString","coordinates":[[16.3407063,48.211843999999985],[16.3406073,48.2118481],[16.3401586,48.211866499999985],[16.339937,48.2119017],[16.3398489,48.211933200000004],[16.3397036,48.21198509999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Uhlplatz","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"28079388","geometry":{"type":"LineString","coordinates":[[16.3407063,48.211843999999985],[16.3407741,48.212041],[16.3407986,48.21211220000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Uhlplatz","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"205999088","geometry":{"type":"LineString","coordinates":[[16.3413684,48.216472099999976],[16.3414057,48.21641439999999],[16.3414206,48.21626029999999],[16.3411778,48.215821000000034],[16.340863,48.21524819999999],[16.3408404,48.21520699999999],[16.3407897,48.21511680000003],[16.3407367,48.21502129999999],[16.3402228,48.21411070000002],[16.3397263,48.21318200000002],[16.3392384,48.212266099999994],[16.3391955,48.212185699999964]]},"properties":{"highway":"service","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"146687715","geometry":{"type":"LineString","coordinates":[[16.3384177,48.21221639999996],[16.3384815,48.21321120000002],[16.3385269,48.2140665]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Wien","lit":"yes","maxspeed":"30","name":"Veronikagasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4986589","geometry":{"type":"LineString","coordinates":[[16.3375383,48.213224800000006],[16.3373645,48.21231679999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dettergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4996489","geometry":{"type":"LineString","coordinates":[[16.3394444,48.2131924],[16.3384815,48.21321120000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schellhammergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9866259","geometry":{"type":"LineString","coordinates":[[16.3394444,48.2131924],[16.3396027,48.213186500000006],[16.3397263,48.21318200000002],[16.3400214,48.21317099999999],[16.340235,48.2131631]]},"properties":{"highway":"residential","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"29048898","geometry":{"type":"LineString","coordinates":[[16.3384815,48.21321120000002],[16.3375383,48.213224800000006]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schellhammergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4986576","geometry":{"type":"LineString","coordinates":[[16.3389164,48.21217579999998],[16.3387751,48.21218729999998],[16.3387201,48.2121918],[16.3384177,48.21221639999996]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"lane","highway":"residential","maxspeed":"30","name":"Friedmanngasse","network":"lcn","oneway":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"23311966","geometry":{"type":"LineString","coordinates":[[16.3412394,48.21649790000001],[16.3411939,48.21641540000002],[16.3409857,48.21602819999998],[16.3408749,48.21582230000001],[16.3405357,48.21523530000002],[16.3405086,48.215182200000015],[16.3404639,48.2150877],[16.3404365,48.21503870000001],[16.339939,48.2141005],[16.3394444,48.2131924],[16.338967,48.2122732],[16.3389164,48.21217579999998]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"18343136","geometry":{"type":"LineString","coordinates":[[16.3397036,48.21198509999999],[16.3395865,48.21208039999999],[16.3394613,48.21214499999999],[16.3393362,48.212178300000005],[16.3391955,48.212185699999964],[16.3390686,48.21218329999999],[16.3390096,48.212180399999994],[16.3389164,48.21217579999998]]},"properties":{"cycleway":"lane","highway":"primary_link","lanes":"2","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"211632045","geometry":{"type":"LineString","coordinates":[[16.3439784,48.21178800000004],[16.3439707,48.21177019999996],[16.3439675,48.2117533],[16.3439635,48.211713299999985],[16.343966,48.21162190000001],[16.343968,48.211439600000006],[16.3439608,48.21121339999996],[16.3439608,48.211153800000005],[16.3439649,48.21109010000001],[16.3439771,48.2110366],[16.3439913,48.2110041],[16.3440045,48.210982900000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Albertgasse","source:maxspeed":"AT:zone:30","surface":"concrete"}},{"type":"Feature","id":"4996515","geometry":{"type":"LineString","coordinates":[[16.3404555,48.21100040000002],[16.3404703,48.21106620000003],[16.3407063,48.211843999999985]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Blindengasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"27657700","geometry":{"type":"LineString","coordinates":[[16.3424876,48.2131249],[16.3423787,48.21240879999999],[16.342347,48.212050600000026],[16.3423287,48.21187789999999],[16.3423068,48.21167140000003],[16.3422098,48.21086700000001],[16.3422031,48.210811699999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bennogasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"148729664","geometry":{"type":"LineString","coordinates":[[16.3396766,48.2110806],[16.3395185,48.2111003]]},"properties":{"foot":"use_sidepath","highway":"tertiary","history":"Retrieved from v9","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"concrete"}},{"type":"Feature","id":"211266009","geometry":{"type":"LineString","coordinates":[[16.3403589,48.210690099999994],[16.3404044,48.210839899999996]]},"properties":{"highway":"residential","maxspeed":"50","name":"Blindengasse","source":"yahoo","surface":"concrete"}},{"type":"Feature","id":"172058503","geometry":{"type":"LineString","coordinates":[[16.3404044,48.210839899999996],[16.3404366,48.210930399999995],[16.3404555,48.21100040000002]]},"properties":{"highway":"residential","maxspeed":"50","name":"Blindengasse","surface":"concrete"}},{"type":"Feature","id":"211634375","geometry":{"type":"LineString","coordinates":[[16.3399811,48.21104840000001],[16.3404555,48.21100040000002],[16.3405678,48.21098860000001],[16.3406795,48.21097689999999],[16.3416021,48.21087890000001],[16.3422031,48.210811699999994],[16.3428309,48.21075160000001],[16.3436493,48.21065770000001],[16.3438384,48.21063700000002],[16.3439333,48.21062409999999],[16.3440363,48.210603899999995]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Josefstädter Straße","surface":"concrete:plates"}},{"type":"Feature","id":"211634374","geometry":{"type":"LineString","coordinates":[[16.3399811,48.21104840000001],[16.3396766,48.2110806]]},"properties":{"foot":"use_sidepath","highway":"tertiary","history":"Retrieved from v9","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"concrete"}},{"type":"Feature","id":"25535791","geometry":{"type":"LineString","coordinates":[[16.338719,48.21075010000001],[16.338642,48.21077930000004],[16.3385619,48.21079499999999],[16.3384969,48.21079850000001],[16.3384016,48.210801900000035],[16.3382038,48.21081620000001],[16.3380194,48.21083390000004]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Neulerchenfelder Straße","surface":"asphalt"}},{"type":"Feature","id":"4996492","geometry":{"type":"LineString","coordinates":[[16.3358084,48.21472780000002],[16.3357968,48.2148095],[16.3355835,48.216264300000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Helblinggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"219270808","geometry":{"type":"LineString","coordinates":[[16.3357535,48.213894299999964],[16.3346699,48.21376380000001]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"30","name":"Yppenplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9866286","geometry":{"type":"LineString","coordinates":[[16.3344467,48.21455900000001],[16.3344731,48.214465099999984],[16.3346699,48.21376380000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Weyprechtgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"29048839","geometry":{"type":"LineString","coordinates":[[16.3357535,48.213894299999964],[16.3358451,48.21390629999996],[16.3367406,48.214023199999986],[16.3368528,48.2140057]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Payergasse"}},{"type":"Feature","id":"4986562","geometry":{"type":"LineString","coordinates":[[16.3357535,48.213894299999964],[16.3355742,48.21461260000001],[16.3355502,48.2146985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Yppengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"219442433","geometry":{"type":"LineString","coordinates":[[16.3332056,48.21440899999996],[16.3338214,48.214479600000004],[16.3344467,48.21455900000001],[16.334536,48.214570400000014],[16.3352025,48.21465520000001],[16.3355502,48.2146985],[16.3356809,48.2147133],[16.3358084,48.21472780000002],[16.3361381,48.21476979999997],[16.337134,48.214900400000005],[16.3378625,48.214991399999974],[16.3380453,48.215015600000044]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße"}},{"type":"Feature","id":"9866200","geometry":{"type":"LineString","coordinates":[[16.3331967,48.21483809999998],[16.3331606,48.214472900000004],[16.3332056,48.21440899999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Steinergasse","oneway":"yes","source":"survey","surface":"asphalt"}},{"type":"Feature","id":"4996524","geometry":{"type":"LineString","coordinates":[[16.3344467,48.21455900000001],[16.3344226,48.214650500000005],[16.3345693,48.2163472],[16.3349268,48.2174258]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bergsteiggasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5774543","geometry":{"type":"LineString","coordinates":[[16.3333852,48.216436200000004],[16.3331967,48.21483809999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Steinergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5004112","geometry":{"type":"LineString","coordinates":[[16.3331967,48.21483809999998],[16.331736,48.2149416],[16.3300421,48.2150695]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haslingergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"372336863","geometry":{"type":"LineString","coordinates":[[16.3300421,48.2150695],[16.3290549,48.21513920000001],[16.3282155,48.21520079999999],[16.3272784,48.215275099999985]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Haslingergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"484502154","geometry":{"type":"LineString","coordinates":[[16.3315755,48.21421459999999],[16.3316128,48.21422050000001],[16.331711,48.21423370000002],[16.3320003,48.21427249999999],[16.3332056,48.21440899999996]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße","surface":"paved"}},{"type":"Feature","id":"6122435","geometry":{"type":"LineString","coordinates":[[16.332379,48.2181482],[16.3323671,48.2181037],[16.3323585,48.2180779],[16.3323462,48.21803129999998],[16.3323353,48.2179687],[16.3322586,48.2175287],[16.3322473,48.21746830000001],[16.3321813,48.21710279999999],[16.3320677,48.21648099999999],[16.331736,48.2149416],[16.331626,48.214297999999985],[16.3316128,48.21422050000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kalvarienberggasse","oneway":"yes","oneway:bicycle":"yes","source":"wien.gv.at","source:maxspeed":"AT:zone:30","surface":"paved"}},{"type":"Feature","id":"4986566","geometry":{"type":"LineString","coordinates":[[16.3346699,48.21376380000001],[16.3334519,48.21360390000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Payergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4996476","geometry":{"type":"LineString","coordinates":[[16.3281961,48.2156368],[16.3282155,48.21520079999999],[16.3282518,48.21432779999998],[16.3283131,48.21371149999999],[16.3283203,48.213639]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Weißgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4986580","geometry":{"type":"LineString","coordinates":[[16.3290586,48.216503700000004],[16.3290589,48.2159767],[16.3290341,48.21579969999999],[16.3290343,48.21562929999999],[16.3290377,48.21540590000001],[16.3290549,48.21513920000001],[16.329036,48.213839199999995],[16.3290349,48.213766899999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Frauengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583627","geometry":{"type":"LineString","coordinates":[[16.3300755,48.21395519999999],[16.3300841,48.2140311],[16.3300421,48.2150695],[16.3300569,48.215418400000004],[16.3300496,48.21567379999996],[16.3300259,48.216498],[16.3300762,48.2172745],[16.3301337,48.21818059999998],[16.3301389,48.21824290000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ortliebgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"372336864","geometry":{"type":"LineString","coordinates":[[16.3272784,48.215275099999985],[16.3266562,48.21532239999999],[16.3266498,48.215323600000005],[16.3265865,48.21533529999999]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Haslingergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28424033","geometry":{"type":"LineString","coordinates":[[16.3253168,48.215305900000004],[16.3254241,48.21530839999997],[16.3265087,48.215333499999986],[16.3265865,48.21533529999999]]},"properties":{"highway":"living_street","name":"Lorenz-Bayer-Platz","oneway":"yes"}},{"type":"Feature","id":"26617436","geometry":{"type":"LineString","coordinates":[[16.3265865,48.21533529999999],[16.3266994,48.215744099999995]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"138647301","geometry":{"type":"LineString","coordinates":[[16.3265398,48.21428],[16.326437,48.21428480000003],[16.3263696,48.21428800000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Lorenz-Bayer-Platz","oneway":"yes"}},{"type":"Feature","id":"26617432","geometry":{"type":"LineString","coordinates":[[16.3265398,48.21428],[16.3265646,48.2151705],[16.3265865,48.21533529999999]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Lorenz-Bayer-Platz","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"172962673","geometry":{"type":"LineString","coordinates":[[16.3265398,48.21428],[16.3266268,48.214282200000014],[16.3272344,48.214295299999975],[16.3282518,48.21432779999998]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Teichgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source":"wien.gv.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5004098","geometry":{"type":"LineString","coordinates":[[16.3263696,48.21428800000001],[16.3260733,48.214301500000005],[16.3256535,48.21432060000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Lorenz-Bayer-Platz","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26617426","geometry":{"type":"LineString","coordinates":[[16.3272018,48.21342379999999],[16.3272051,48.2135117],[16.3272344,48.214295299999975],[16.3272784,48.215275099999985],[16.3272956,48.215650900000014]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Nattergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5004103","geometry":{"type":"LineString","coordinates":[[16.3265268,48.213474599999984],[16.3265246,48.213519200000036]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"141233629","geometry":{"type":"LineString","coordinates":[[16.3265246,48.213519200000036],[16.3265309,48.21385219999999],[16.3265341,48.214022899999975],[16.3265366,48.21413380000001],[16.3265398,48.21428]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"29048911","geometry":{"type":"LineString","coordinates":[[16.335939,48.21316860000002],[16.3363689,48.21322169999999],[16.3365877,48.21323100000001],[16.3366857,48.213235199999986],[16.3367371,48.2132374]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Schellhammergasse","surface":"asphalt"}},{"type":"Feature","id":"219270809","geometry":{"type":"LineString","coordinates":[[16.335939,48.21316860000002],[16.3357656,48.21384689999999],[16.3357535,48.213894299999964]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Yppenplatz","surface":"asphalt"}},{"type":"Feature","id":"463861959","geometry":{"type":"LineString","coordinates":[[16.3365877,48.21323100000001],[16.3368528,48.2140057]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Brunnengasse","surface":"asphalt"}},{"type":"Feature","id":"29048900","geometry":{"type":"LineString","coordinates":[[16.3375383,48.213224800000006],[16.3367371,48.2132374]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schellhammergasse","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4986582","geometry":{"type":"LineString","coordinates":[[16.3306864,48.212726799999956],[16.3307066,48.21290909999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brestelgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"157746412","geometry":{"type":"LineString","coordinates":[[16.3300755,48.21395519999999],[16.330068,48.21389340000002],[16.3299546,48.212957700000004]]},"properties":{"highway":"residential","history":"Retrieved from v5","maxspeed":"30","name":"Lindauergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4986571","geometry":{"type":"LineString","coordinates":[[16.3299546,48.212957700000004],[16.3307066,48.21290909999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brestelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29048926","geometry":{"type":"LineString","coordinates":[[16.3348448,48.21302750000001],[16.3336442,48.21288899999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schellhammergasse","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"234873387","geometry":{"type":"LineString","coordinates":[[16.3307066,48.21290909999999],[16.3308284,48.21402220000002],[16.3308366,48.214097100000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brestelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4996504","geometry":{"type":"LineString","coordinates":[[16.3348448,48.21302750000001],[16.3349506,48.21304109999997],[16.335939,48.21316860000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Yppenplatz","surface":"asphalt"}},{"type":"Feature","id":"339373201","geometry":{"type":"LineString","coordinates":[[16.3346699,48.21376380000001],[16.3348348,48.213159099999984],[16.3348448,48.21302750000001]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"30","name":"Yppenplatz","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"60640442","geometry":{"type":"LineString","coordinates":[[16.3337573,48.212399000000005],[16.3338793,48.212407299999995],[16.3350145,48.212402199999985],[16.3362871,48.212390400000004]]},"properties":{"cycleway":"opposite","highway":"residential","lcn":"yes","maxspeed":"30","name":"Friedmanngasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9565616","geometry":{"type":"LineString","coordinates":[[16.3337573,48.212399000000005],[16.3336442,48.21288899999999],[16.3334519,48.21360390000001],[16.3334146,48.213740099999995],[16.3332543,48.21433880000001],[16.3332056,48.21440899999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hubergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5774544","geometry":{"type":"LineString","coordinates":[[16.3350145,48.212402199999985],[16.3348448,48.21302750000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Weyprechtgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9866370","geometry":{"type":"LineString","coordinates":[[16.3283203,48.213639],[16.3283167,48.2135686],[16.3282667,48.21259700000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hellgasse","oneway":"yes"}},{"type":"Feature","id":"185166834","geometry":{"type":"LineString","coordinates":[[16.3289548,48.2125566],[16.3287278,48.21257130000001],[16.3283376,48.212593099999964],[16.3282667,48.21259700000002]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Friedmanngasse","oneway":"yes"}},{"type":"Feature","id":"141233625","geometry":{"type":"LineString","coordinates":[[16.3263498,48.21326760000002],[16.3265293,48.21330039999998]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Johann-Nepomuk-Berger-Platz"}},{"type":"Feature","id":"26617351","geometry":{"type":"LineString","coordinates":[[16.3265293,48.21330039999998],[16.3268816,48.213358]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße"}},{"type":"Feature","id":"141233624","geometry":{"type":"LineString","coordinates":[[16.3268816,48.213358],[16.3272018,48.21342379999999],[16.3283203,48.213639],[16.3290349,48.213766899999996],[16.3293391,48.213820999999996],[16.3300755,48.21395519999999],[16.330559,48.21404580000004],[16.3308366,48.214097100000004],[16.3315134,48.21420470000004],[16.3315755,48.21421459999999]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße"}},{"type":"Feature","id":"138647475","geometry":{"type":"LineString","coordinates":[[16.3265293,48.21330039999998],[16.3265311,48.21340939999999],[16.3265268,48.213474599999984]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes"}},{"type":"Feature","id":"234029155","geometry":{"type":"LineString","coordinates":[[16.3260098,48.21320559999998],[16.3263498,48.21326760000002]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Johann-Nepomuk-Berger-Platz"}},{"type":"Feature","id":"410316538","geometry":{"type":"LineString","coordinates":[[16.3282667,48.21259700000002],[16.3279481,48.2126083],[16.3278254,48.212608200000005],[16.3276047,48.21258510000001]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Neulerchenfelder Straße","note":"Der westliche Teil dieses Straßenstücks heißt tatsächlich anders, als das östliche Stück.","oneway":"yes"}},{"type":"Feature","id":"60640433","geometry":{"type":"LineString","coordinates":[[16.3276047,48.21258510000001],[16.3275113,48.21260849999999],[16.3272976,48.2126585],[16.3269616,48.212738099999996],[16.3265828,48.21283679999999]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Neulerchenfelder Straße","surface":"concrete:plates"}},{"type":"Feature","id":"192640521","geometry":{"type":"LineString","coordinates":[[16.3265828,48.21283679999999],[16.3265474,48.21288329999999],[16.3265325,48.2132263],[16.3265293,48.21330039999998]]},"properties":{"highway":"residential","maxspeed":"50","name":"Johann-Nepomuk-Berger-Platz","oneway":"yes"}},{"type":"Feature","id":"212471617","geometry":{"type":"LineString","coordinates":[[16.325787,48.21316490000001],[16.3260098,48.21320559999998]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Johann-Nepomuk-Berger-Platz"}},{"type":"Feature","id":"229820220","geometry":{"type":"LineString","coordinates":[[16.3258085,48.21307150000001],[16.3258457,48.213059799999996],[16.3259681,48.21302320000001],[16.3260742,48.21299379999999],[16.326123,48.21298189999999],[16.3261745,48.2129693],[16.3264789,48.21289960000004],[16.3265284,48.212886000000026],[16.3265474,48.21288329999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Johann-Nepomuk-Berger-Platz"}},{"type":"Feature","id":"60640435","geometry":{"type":"LineString","coordinates":[[16.3362871,48.212390400000004],[16.3365655,48.2123847],[16.3373645,48.21231679999997],[16.3384177,48.21221639999996]]},"properties":{"cycleway":"opposite","highway":"residential","lcn":"yes","maxspeed":"30","name":"Friedmanngasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4986564","geometry":{"type":"LineString","coordinates":[[16.338667,48.21157280000003],[16.3384595,48.2115919],[16.3361475,48.211804700000016],[16.3337067,48.212047299999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gaullachergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"27890154","geometry":{"type":"LineString","coordinates":[[16.3359794,48.21109899999999],[16.3359822,48.211112199999974],[16.3359945,48.2111568],[16.3361475,48.211804700000016],[16.3362871,48.212390400000004],[16.3365877,48.21323100000001]]},"properties":{"highway":"pedestrian","name":"Brunnengasse","surface":"paved"}},{"type":"Feature","id":"192640516","geometry":{"type":"LineString","coordinates":[[16.3337067,48.212047299999995],[16.3330341,48.2121238],[16.3328705,48.21215780000003],[16.332668,48.21217659999999],[16.3325165,48.21217920000001],[16.3318081,48.21226179999999]]},"properties":{"highway":"living_street","name":"Gaullachergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"261704729","geometry":{"type":"LineString","coordinates":[[16.3318081,48.21226179999999],[16.3312798,48.21232459999999]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Gaullachergasse","oneway":"yes"}},{"type":"Feature","id":"64977654","geometry":{"type":"LineString","coordinates":[[16.3337573,48.212399000000005],[16.3322353,48.21241620000001],[16.3320348,48.21239959999997],[16.3319104,48.212354499999975],[16.3318081,48.21226179999999]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Friedmanngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"172053733","geometry":{"type":"LineString","coordinates":[[16.3316128,48.21422050000001],[16.3316006,48.214158],[16.3315537,48.2139353],[16.3315662,48.213862500000005],[16.3314998,48.21350419999999],[16.331468,48.21345070000001],[16.3314058,48.2131311],[16.3314183,48.213052800000014],[16.331305,48.21245739999998],[16.3312798,48.21232459999999],[16.3311767,48.21176220000004],[16.3311674,48.211711199999996],[16.3311569,48.211657900000006],[16.3310016,48.21086980000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haberlgasse","oneway":"yes","source":"wien.gv.at","surface":"paved"}},{"type":"Feature","id":"23487748","geometry":{"type":"LineString","coordinates":[[16.3262994,48.21218340000004],[16.3265487,48.212773],[16.3265828,48.21283679999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Johann-Nepomuk-Berger-Platz"}},{"type":"Feature","id":"8610239","geometry":{"type":"LineString","coordinates":[[16.3262994,48.21218340000004],[16.3260746,48.21236920000004],[16.3257356,48.21264930000001],[16.325538,48.212808199999984],[16.32541,48.21291289999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Johann-Nepomuk-Berger-Platz","oneway":"yes"}},{"type":"Feature","id":"9866315","geometry":{"type":"LineString","coordinates":[[16.3290349,48.213766899999996],[16.3290305,48.213701000000015],[16.3289548,48.2125566],[16.3289467,48.212293200000005],[16.3289449,48.21223309999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Deinhardsteingasse","oneway":"yes"}},{"type":"Feature","id":"261704728","geometry":{"type":"LineString","coordinates":[[16.3312798,48.21232459999999],[16.3298846,48.21250070000002],[16.3289548,48.2125566]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Friedmanngasse","oneway":"yes"}},{"type":"Feature","id":"26617399","geometry":{"type":"LineString","coordinates":[[16.3308223,48.21090239999998],[16.3299852,48.211241],[16.3297283,48.21135389999998],[16.3289048,48.21167700000004],[16.3278669,48.211859000000004],[16.3274045,48.211931900000025],[16.3264498,48.21214359999999],[16.3262994,48.21218340000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Abelegasse","oneway":"yes"}},{"type":"Feature","id":"9866351","geometry":{"type":"LineString","coordinates":[[16.3289048,48.21167700000004],[16.3289399,48.21216309999997],[16.3289449,48.21223309999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Deinhardsteingasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26617402","geometry":{"type":"LineString","coordinates":[[16.3260348,48.2115785],[16.3262994,48.21218340000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Eckmüllnergasse","oneway":"yes"}},{"type":"Feature","id":"9866312","geometry":{"type":"LineString","coordinates":[[16.3298096,48.212011200000006],[16.329819,48.212072199999994],[16.3298846,48.21250070000002],[16.3299546,48.212957700000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lindauergasse","oneway":"yes"}},{"type":"Feature","id":"4986567","geometry":{"type":"LineString","coordinates":[[16.3253329,48.211663300000026],[16.3254411,48.21165199999999],[16.3260348,48.2115785],[16.3273139,48.2114019],[16.3276917,48.2113516],[16.3287685,48.211189200000035],[16.32966,48.21105219999998],[16.3299027,48.21101770000001],[16.330638,48.2109083],[16.3308223,48.21090239999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Friedrich-Kaiser-Gasse","oneway":"yes"}},{"type":"Feature","id":"181550803","geometry":{"type":"LineString","coordinates":[[16.3380194,48.21083390000004],[16.3369994,48.210958800000014],[16.3360583,48.21108850000002],[16.3359794,48.21109899999999],[16.3359246,48.211105599999996],[16.3349835,48.21121299999999],[16.3341202,48.211305400000015],[16.3339504,48.21132699999998],[16.3337995,48.211350099999976],[16.3336418,48.211377700000014],[16.3335684,48.21139049999999],[16.3335179,48.21139720000002],[16.3312434,48.21170099999998],[16.3311674,48.211711199999996],[16.3310794,48.21172519999999],[16.3309652,48.211743299999995],[16.3306841,48.211800400000016],[16.3298096,48.212011200000006],[16.3291804,48.212168899999995],[16.3289449,48.21223309999999],[16.3287572,48.212295599999976],[16.3282763,48.21241960000003],[16.3276047,48.21258510000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Neulerchenfelder Straße","surface":"concrete:plates"}},{"type":"Feature","id":"474396508","geometry":{"type":"LineString","coordinates":[[16.3385743,48.21075129999997],[16.3382538,48.21077120000004],[16.3382049,48.21074699999997],[16.3372889,48.2108552],[16.3372473,48.21088869999997],[16.3368429,48.2109342],[16.3368006,48.2109255],[16.336379,48.21097849999998],[16.3362156,48.211007600000016],[16.3360443,48.211030300000004],[16.3359671,48.21104060000002],[16.335914,48.21104729999999],[16.3358331,48.2110577],[16.3357779,48.2110648],[16.3353665,48.211110599999984],[16.3352635,48.21112210000001],[16.3348652,48.2111654],[16.3340504,48.211252400000006],[16.3337425,48.2112923],[16.3336266,48.2113138],[16.3335545,48.2113272],[16.333528,48.21133209999999],[16.3335098,48.21135939999999],[16.332819,48.211455099999995],[16.3321471,48.2115412],[16.3312345,48.211660799999976],[16.3311965,48.21165400000001],[16.3311569,48.211657900000006],[16.3311068,48.21166269999998],[16.3310772,48.21168699999998],[16.3310437,48.211693800000006],[16.3307843,48.21174239999999],[16.3306662,48.21177009999997],[16.33063,48.2117714],[16.3305305,48.21176500000004],[16.3301986,48.2118423],[16.3298805,48.21191959999996],[16.3298015,48.21194589999999],[16.3297492,48.21198719999998],[16.3294975,48.21204989999998],[16.329442,48.2120353],[16.3289399,48.21216309999997],[16.3288971,48.21217339999998],[16.3288723,48.21220600000001],[16.3285054,48.212298799999985],[16.3282077,48.21237120000001],[16.3274638,48.2125518],[16.3274,48.21257940000001],[16.3273009,48.21260319999999],[16.32722,48.21262669999999],[16.3271596,48.212627],[16.3265487,48.212773]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Neulerchenfelder Straße"}},{"type":"Feature","id":"474396507","geometry":{"type":"LineString","coordinates":[[16.3385571,48.21083620000002],[16.3380902,48.210881099999995],[16.3370401,48.211010200000004],[16.3365711,48.21106639999999],[16.3364672,48.21107889999999],[16.3364264,48.2110988],[16.336177,48.2111323],[16.3360725,48.211146299999996],[16.3359945,48.2111568],[16.3359353,48.21116510000002],[16.3358019,48.21118390000001],[16.334979,48.211279099999985],[16.3342999,48.2113487],[16.3340102,48.2113856],[16.3336562,48.21143789999999],[16.3335807,48.21144910000001],[16.3335305,48.21145610000002],[16.3329904,48.21153100000001],[16.3323492,48.21161359999999],[16.3318334,48.211683100000016],[16.3317685,48.211683600000015],[16.3317358,48.21168800000001],[16.3315613,48.21171129999999],[16.3314847,48.21174100000002],[16.331333,48.211759],[16.3312648,48.2117671],[16.3312512,48.21176870000002],[16.3312082,48.211758],[16.3311767,48.21176220000004],[16.3310816,48.21177180000004],[16.3309587,48.211786700000005],[16.3307311,48.21183530000002],[16.3306917,48.211860599999994],[16.329819,48.212072199999994],[16.3292414,48.21222180000004],[16.3289467,48.212293200000005],[16.3286987,48.21235480000004],[16.3282947,48.212457700000044],[16.3278695,48.212560800000006],[16.3278254,48.212608200000005],[16.3277949,48.21264790000001],[16.3273741,48.2126854],[16.3272921,48.21270270000002],[16.3271556,48.21273550000001],[16.3266179,48.2128678],[16.326584,48.21287610000002],[16.3265474,48.21288329999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Neulerchenfelder Straße"}},{"type":"Feature","id":"247977997","geometry":{"type":"LineString","coordinates":[[16.3521931,48.20937000000001],[16.3520915,48.20937549999999],[16.3512074,48.20941369999997],[16.3507073,48.2094482],[16.3506529,48.209452],[16.3505677,48.20945819999997]]},"properties":{"foot":"use_sidepath","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"concrete:plates"}},{"type":"Feature","id":"4997690","geometry":{"type":"LineString","coordinates":[[16.3481702,48.20972990000001],[16.3481652,48.20978259999998],[16.3480692,48.21079610000001],[16.3479476,48.2120314]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Fuhrmannsgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"122605524","geometry":{"type":"LineString","coordinates":[[16.3487814,48.20990929999999],[16.3487972,48.209736900000024]]},"properties":{"bus":"yes","highway":"platform","name":"Lederergasse/Josefstädter Straße","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"4850272","geometry":{"type":"LineString","coordinates":[[16.3469174,48.20997310000001],[16.3469409,48.21002609999999],[16.3470413,48.21025270000001],[16.3471055,48.210584600000004],[16.3471182,48.210916],[16.3470321,48.21157299999999],[16.3469506,48.212152300000014]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Schönborngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"26125318","geometry":{"type":"LineString","coordinates":[[16.3460026,48.21064710000002],[16.3459365,48.21057059999998],[16.3457852,48.210287600000015],[16.3457546,48.2102304]]},"properties":{"highway":"residential","maxspeed":"50","name":"Kupkagasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"215607030","geometry":{"type":"LineString","coordinates":[[16.3457546,48.2102304],[16.3454669,48.21029329999999]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Josefstädter Straße","surface":"concrete:plates"}},{"type":"Feature","id":"4997430","geometry":{"type":"LineString","coordinates":[[16.3480086,48.21457939999999],[16.3482146,48.21404609999999],[16.3484267,48.213415499999996],[16.3484633,48.2132938],[16.3484849,48.213222099999996],[16.3484959,48.213150799999994],[16.3485856,48.21259550000002],[16.3486425,48.212008999999995],[16.3486508,48.21194650000001],[16.3486552,48.21187599999999],[16.3487489,48.21085660000003],[16.3487548,48.21079280000001],[16.3488471,48.209781899999996],[16.3488384,48.209687700000046],[16.3487798,48.2096392]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Lederergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"97349393","geometry":{"type":"LineString","coordinates":[[16.3487798,48.2096392],[16.3486735,48.209651399999984],[16.3485068,48.209676400000006],[16.3481702,48.20972990000001],[16.3475615,48.2098335],[16.3469174,48.20997310000001],[16.3463847,48.2100901],[16.3457546,48.2102304]]},"properties":{"foot":"use_sidepath","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"concrete:plates","voltage":"600"}},{"type":"Feature","id":"4850270","geometry":{"type":"LineString","coordinates":[[16.3454669,48.21029329999999],[16.3454784,48.2102223],[16.3457085,48.20880700000001],[16.3457199,48.20873880000002]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lerchengasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"219645195","geometry":{"type":"LineString","coordinates":[[16.3505677,48.20945819999997],[16.3504733,48.20946440000003],[16.3500084,48.209496099999996],[16.3496094,48.20952260000004],[16.3494702,48.20953789999999],[16.3493043,48.209561000000036],[16.3491263,48.2095932],[16.3489035,48.20962339999997],[16.3487798,48.2096392]]},"properties":{"foot":"use_sidepath","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"concrete:plates"}},{"type":"Feature","id":"219735569","geometry":{"type":"LineString","coordinates":[[16.3440363,48.210603899999995],[16.3441753,48.210575199999994],[16.3442895,48.210551699999996],[16.3447872,48.210439399999956],[16.3454669,48.21029329999999]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Josefstädter Straße","surface":"concrete:plates"}},{"type":"Feature","id":"171952284","geometry":{"type":"LineString","coordinates":[[16.3440363,48.210603899999995],[16.3440245,48.210590800000006],[16.3439782,48.210539799999964],[16.34397,48.21051370000001],[16.3439608,48.21047579999998],[16.3438533,48.209069400000004],[16.3438492,48.208992300000006]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Albertgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"7838185","geometry":{"type":"LineString","coordinates":[[16.3419273,48.209260700000016],[16.3419397,48.209330300000005],[16.342192,48.21074949999996],[16.3422031,48.210811699999994]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Stolzenthalergasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"23985400","geometry":{"type":"LineString","coordinates":[[16.3414074,48.209334600000005],[16.3414976,48.209361099999995],[16.34164,48.2093447],[16.3418719,48.209320399999996],[16.3419273,48.209260700000016]]},"properties":{"foot":"designated","highway":"cycleway","name":"Pfeilgasse","segregated":"yes"}},{"type":"Feature","id":"27608022","geometry":{"type":"LineString","coordinates":[[16.3448906,48.208805100000006],[16.3448885,48.20885479999998],[16.344789,48.210375899999974],[16.3447872,48.210439399999956]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tigergasse","oneway":"yes"}},{"type":"Feature","id":"23985425","geometry":{"type":"LineString","coordinates":[[16.3444008,48.20890850000001],[16.3444141,48.20887429999999],[16.3448906,48.208805100000006]]},"properties":{"foot":"yes","highway":"cycleway","name":"Pfeilgasse","segregated":"yes"}},{"type":"Feature","id":"23985404","geometry":{"type":"LineString","coordinates":[[16.3419273,48.209260700000016],[16.3437385,48.209007799999995],[16.3438492,48.208992300000006],[16.3439407,48.208978400000035],[16.3444008,48.20890850000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pfeilgasse"}},{"type":"Feature","id":"8105815","geometry":{"type":"LineString","coordinates":[[16.3509004,48.20812169999999],[16.3508321,48.2081144],[16.3500794,48.20802170000002],[16.3491432,48.20793280000001],[16.3490403,48.20793800000001]]},"properties":{"cycleway:left":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zeltgasse","oneway":"yes"}},{"type":"Feature","id":"95415643","geometry":{"type":"LineString","coordinates":[[16.3507951,48.2066222],[16.350182,48.20659810000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Roter Hof","noexit":"yes","surface":"cobblestone","vehicle":"destination"}},{"type":"Feature","id":"29072920","geometry":{"type":"LineString","coordinates":[[16.3512679,48.206702699999965],[16.3509862,48.20668549999999],[16.3507951,48.2066222]]},"properties":{"highway":"residential","maxspeed":"50","name":"Roter Hof","noexit":"yes","surface":"cobblestone"}},{"type":"Feature","id":"7837684","geometry":{"type":"LineString","coordinates":[[16.3493514,48.20641520000001],[16.3494456,48.206404899999995],[16.3497007,48.206390099999965],[16.3499751,48.20637739999998]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"secondary","maxspeed":"50","name":"Lerchenfelder Straße"}},{"type":"Feature","id":"27608020","geometry":{"type":"LineString","coordinates":[[16.344902,48.20862890000001],[16.3448906,48.208805100000006]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Tigergasse","oneway":"yes"}},{"type":"Feature","id":"8095140","geometry":{"type":"LineString","coordinates":[[16.3457199,48.20873880000002],[16.3467895,48.2084893],[16.3478162,48.208236400000004],[16.3484028,48.208100599999966],[16.3487384,48.20802069999999],[16.3489495,48.207974199999995],[16.3490403,48.20793800000001]]},"properties":{"cycleway:left":"opposite_lane","highway":"residential","maxspeed":"30","name":"Pfeilgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"35377168","geometry":{"type":"LineString","coordinates":[[16.3457199,48.20873880000002],[16.3457342,48.2086573]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lerchengasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"95410536","geometry":{"type":"LineString","coordinates":[[16.3438492,48.208992300000006],[16.3438331,48.20893480000001],[16.3434716,48.20764120000001],[16.3434482,48.20755600000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Albertgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4997434","geometry":{"type":"LineString","coordinates":[[16.3493514,48.20641520000001],[16.349266,48.20642430000001],[16.3490018,48.20645830000001],[16.34785,48.206648]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße"}},{"type":"Feature","id":"7837715","geometry":{"type":"LineString","coordinates":[[16.3487798,48.2096392],[16.3487299,48.20959500000001],[16.3487053,48.20951070000001],[16.3490135,48.20802829999997],[16.349025,48.207979600000016],[16.3490403,48.20793800000001],[16.3490564,48.207888800000006],[16.349331,48.206649899999974],[16.34936,48.206512299999986],[16.3493561,48.20647710000003],[16.3493514,48.20641520000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Strozzigasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"36925871","geometry":{"type":"LineString","coordinates":[[16.3457342,48.2086573],[16.3457733,48.208466499999986],[16.3458069,48.20801320000001],[16.3457536,48.207667500000014],[16.3456095,48.20711210000002]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lerchengasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4850271","geometry":{"type":"LineString","coordinates":[[16.344842,48.207274299999995],[16.3448603,48.207347700000014],[16.344911,48.207910399999975],[16.3449359,48.20824440000001],[16.344902,48.20862890000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tigergasse","oneway":"yes"}},{"type":"Feature","id":"45189907","geometry":{"type":"LineString","coordinates":[[16.3412898,48.207667799999996],[16.3413026,48.207719999999995]]},"properties":{"highway":"footway","name":"Enzingergasse"}},{"type":"Feature","id":"139118446","geometry":{"type":"LineString","coordinates":[[16.3413026,48.207719999999995],[16.3414028,48.207982000000015]]},"properties":{"highway":"residential","name":"Enzingergasse"}},{"type":"Feature","id":"26213743","geometry":{"type":"LineString","coordinates":[[16.3416718,48.207929699999994],[16.3419273,48.209260700000016]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Stolzenthalergasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"138369435","geometry":{"type":"LineString","coordinates":[[16.3424133,48.207516],[16.3424937,48.20768190000001],[16.3427303,48.207632200000006],[16.3429756,48.20758140000001],[16.343252,48.2075241],[16.3432946,48.20751580000001]]},"properties":{"highway":"footway","name":"Ceija-Stojka-Platz"}},{"type":"Feature","id":"28798328","geometry":{"type":"LineString","coordinates":[[16.3434482,48.20755600000001],[16.3434334,48.20748800000001],[16.3433906,48.20733470000002]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"4997698","geometry":{"type":"LineString","coordinates":[[16.3433906,48.20733470000002],[16.3451294,48.20689870000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Badhausgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"138369439","geometry":{"type":"LineString","coordinates":[[16.342969,48.207435100000026],[16.3429893,48.20750170000002],[16.342947,48.20750739999997],[16.3429756,48.20758140000001],[16.3429826,48.20759829999997]]},"properties":{"highway":"footway","name":"Ceija-Stojka-Platz"}},{"type":"Feature","id":"4583769","geometry":{"type":"LineString","coordinates":[[16.3432872,48.20702899999998],[16.3431179,48.2070549],[16.3419622,48.20723140000001],[16.3420503,48.20748150000003],[16.3420857,48.20756800000001],[16.3421518,48.20775830000002],[16.3421754,48.207826299999965]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Mentergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"486139500","geometry":{"type":"LineString","coordinates":[[16.3432946,48.20751580000001],[16.3432479,48.20739449999999],[16.342969,48.207435100000026],[16.3424133,48.207516],[16.3420857,48.20756800000001]]},"properties":{"highway":"footway","name":"Ceija-Stojka-Platz"}},{"type":"Feature","id":"4997692","geometry":{"type":"LineString","coordinates":[[16.3493514,48.20641520000001],[16.3493515,48.206337700000006],[16.3491285,48.20549009999999],[16.3491133,48.20543240000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Neubaugasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"96132147","geometry":{"type":"LineString","coordinates":[[16.3514408,48.20631839999999],[16.3513392,48.20640470000001],[16.3513124,48.20652370000002],[16.3512679,48.206702699999965],[16.3509172,48.20805680000001],[16.3509004,48.20812169999999],[16.3508877,48.20817279999997],[16.3505801,48.20940830000001],[16.3505677,48.20945819999997],[16.3505539,48.20951790000001],[16.3505159,48.209668300000004],[16.3503484,48.210464599999995],[16.3503319,48.210534300000006],[16.3503201,48.210584100000034],[16.350308,48.2106378],[16.3502543,48.21087639999996],[16.3500407,48.21180900000002]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Piaristengasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"106806622","geometry":{"type":"LineString","coordinates":[[16.3499751,48.20637739999998],[16.3512909,48.206323199999986],[16.3514408,48.20631839999999]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"secondary","maxspeed":"50","name":"Lerchenfelder Straße"}},{"type":"Feature","id":"4997658","geometry":{"type":"LineString","coordinates":[[16.3499751,48.20637739999998],[16.3497239,48.20538690000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Döblergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"sign","surface":"asphalt"}},{"type":"Feature","id":"56212545","geometry":{"type":"LineString","coordinates":[[16.3504798,48.20421699999997],[16.3505756,48.20414299999996],[16.3508029,48.20413150000002],[16.3512571,48.20412429999999],[16.3513543,48.204121799999996],[16.3515058,48.20412849999997],[16.3522454,48.20416109999999],[16.3523593,48.20423709999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"122605534","geometry":{"type":"LineString","coordinates":[[16.3489086,48.204157899999984],[16.3489167,48.2040533],[16.348917,48.20403429999999],[16.3489087,48.2040135],[16.3488906,48.20397320000001]]},"properties":{"bus":"yes","highway":"platform","name":"Neubaugasse/Burggasse","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"122605530","geometry":{"type":"LineString","coordinates":[[16.3481986,48.20424209999999],[16.3484605,48.204232700000006]]},"properties":{"bus":"yes","highway":"platform","name":"Neubaugasse/Burggasse","network":"VOR","public_transport":"platform","shelter":"yes","wheelchair":"yes"}},{"type":"Feature","id":"4849376","geometry":{"type":"LineString","coordinates":[[16.34785,48.206648],[16.3476275,48.20561129999999],[16.3476294,48.20554250000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Myrthengasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"12254044","geometry":{"type":"LineString","coordinates":[[16.3476294,48.20554250000001],[16.3476511,48.20428460000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Myrthengasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"149681438","geometry":{"type":"LineString","coordinates":[[16.346903,48.20278619999999],[16.346897,48.2029469],[16.3469811,48.20300740000002],[16.3472791,48.20301760000001],[16.3473345,48.20305859999999],[16.3472647,48.20426349999997],[16.3472632,48.20428960000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hermanngasse","oneway":"yes"}},{"type":"Feature","id":"4849267","geometry":{"type":"LineString","coordinates":[[16.3460177,48.20279310000004],[16.346903,48.20278619999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Kandlgasse","oneway":"yes","oneway:bicycle":"no","source":"knowledge"}},{"type":"Feature","id":"4583458","geometry":{"type":"LineString","coordinates":[[16.3460103,48.204299100000014],[16.3460177,48.20279310000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Bandgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"54568121","geometry":{"type":"LineString","coordinates":[[16.3450175,48.202786299999985],[16.3450131,48.20283359999996],[16.3450171,48.204240200000015],[16.3449683,48.204306900000006],[16.3449069,48.2043788],[16.3448513,48.205642100000006],[16.3448576,48.205703],[16.3448647,48.20577229999998],[16.3449612,48.20624490000003],[16.3451294,48.20689870000001],[16.3452065,48.20719410000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zieglergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"313461800","geometry":{"type":"LineString","coordinates":[[16.3433906,48.20733470000002],[16.3432872,48.20702899999998],[16.3432083,48.206599799999964],[16.3432004,48.206473999999986],[16.3431095,48.2058825],[16.3431009,48.20582189999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"4996508","geometry":{"type":"LineString","coordinates":[[16.3449612,48.20624490000003],[16.3432083,48.206599799999964]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bernardgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"412060011","geometry":{"type":"LineString","coordinates":[[16.3431009,48.20582189999999],[16.3431025,48.20575850000003],[16.3431354,48.20439300000001],[16.3431405,48.204317]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"4849355","geometry":{"type":"LineString","coordinates":[[16.3415327,48.204326400000014],[16.3414026,48.20587089999998],[16.3414064,48.20593619999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Halbgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"184506228","geometry":{"type":"LineString","coordinates":[[16.3415327,48.204326400000014],[16.3416696,48.2027928]]},"properties":{"highway":"residential","maxspeed":"30","name":"Halbgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"148092693","geometry":{"type":"LineString","coordinates":[[16.3394082,48.210393899999985],[16.3395173,48.21033390000002],[16.3395557,48.2103128],[16.3399429,48.21012179999997],[16.3400169,48.21007380000003],[16.3400431,48.21005360000001],[16.3401096,48.21000049999998],[16.3401273,48.20998829999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Sanettystraße","oneway":"yes","surface":"concrete"}},{"type":"Feature","id":"148092692","geometry":{"type":"LineString","coordinates":[[16.3391479,48.21052739999999],[16.3393754,48.21041300000002],[16.3394082,48.210393899999985]]},"properties":{"highway":"residential","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes"}},{"type":"Feature","id":"26738034","geometry":{"type":"LineString","coordinates":[[16.3391479,48.21052739999999],[16.3393136,48.210567499999996],[16.3394577,48.21067959999999]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes"}},{"type":"Feature","id":"324297226","geometry":{"type":"LineString","coordinates":[[16.338893,48.20856659999998],[16.3389112,48.208605000000006],[16.3389436,48.20868530000001],[16.3389546,48.208720200000016],[16.3392716,48.20963359999999],[16.3393844,48.21026170000002],[16.3394082,48.210393899999985],[16.3394577,48.21067959999999],[16.3395047,48.21099079999999],[16.3395185,48.2111003],[16.3395497,48.21124259999999],[16.3395529,48.211257399999994],[16.3396782,48.2118639],[16.3397036,48.21198509999999]]},"properties":{"highway":"primary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"474377043","geometry":{"type":"LineString","coordinates":[[16.3549465,48.20914719999999],[16.3547195,48.20914590000001],[16.3543638,48.20917800000001],[16.3522989,48.20930559999999],[16.352211,48.209311100000036],[16.3521067,48.20932640000001],[16.3513885,48.209370199999995],[16.3513081,48.20936169999996],[16.3506627,48.20940300000001],[16.3505801,48.20940830000001],[16.3504741,48.209416000000004],[16.3492703,48.20950379999999],[16.3488839,48.20956899999999],[16.3487299,48.20959500000001],[16.3486606,48.20960869999999],[16.3485533,48.209629800000016],[16.3479752,48.2097205],[16.3478574,48.2097273],[16.3475416,48.20978220000001],[16.3474799,48.209805500000016],[16.3473726,48.20980230000001],[16.3470159,48.20987740000001],[16.346633,48.2099695],[16.3463364,48.21004210000001],[16.3463136,48.21005550000001],[16.3462305,48.210059099999995],[16.3454784,48.2102223],[16.344789,48.210375899999974],[16.3441357,48.210521099999994],[16.3440418,48.2105229],[16.3439782,48.210539799999964],[16.3438991,48.210560799999996],[16.3438279,48.21057969999998],[16.3435695,48.210606799999994],[16.3431361,48.21065250000004],[16.3429957,48.21066719999999],[16.342192,48.21074949999996],[16.3421146,48.21077539999999],[16.3417632,48.21081379999998],[16.3417123,48.210800800000015],[16.3405713,48.210921600000006],[16.34051,48.21092809999999],[16.3404366,48.210930399999995],[16.3401605,48.21096019999999],[16.3396516,48.211019300000004]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Josefstädter Straße"}},{"type":"Feature","id":"474377042","geometry":{"type":"LineString","coordinates":[[16.3549546,48.209271099999995],[16.3546653,48.2092619],[16.354516,48.209260700000016],[16.3538197,48.20930179999999],[16.3522748,48.20940169999997],[16.3521812,48.209407699999986],[16.3520792,48.20941149999999],[16.3518338,48.20942059999999],[16.3510244,48.20946169999999],[16.3506462,48.20948580000001],[16.350604,48.209516699999966],[16.3505539,48.20951790000001],[16.3504994,48.209518900000006],[16.3504726,48.20950679999996],[16.3496129,48.209564],[16.3493889,48.2095903],[16.3493152,48.20960099999999],[16.3492461,48.2096128],[16.3491811,48.20962309999999],[16.3490902,48.20963739999999],[16.3490214,48.2096473],[16.3489599,48.20965430000001],[16.3489169,48.2096607],[16.3488901,48.209681200000006],[16.3488384,48.209687700000046],[16.3487627,48.2096933],[16.3487083,48.209697800000015],[16.3486885,48.2097009],[16.3481652,48.20978259999998],[16.3478936,48.20982329999998],[16.3478339,48.209817499999986],[16.3475724,48.20986129999997],[16.3475523,48.20989209999999],[16.3469409,48.21002609999999],[16.3461467,48.210205900000005],[16.3457852,48.210287600000015],[16.3454936,48.21034129999998],[16.3448418,48.21048339999996],[16.3446299,48.210529699999995],[16.3443196,48.21059739999998],[16.3442255,48.21061800000001],[16.3442049,48.2106235],[16.3440787,48.21065759999999],[16.3439856,48.21068280000003],[16.3439395,48.2106952],[16.3438963,48.21070700000001],[16.3438756,48.21071269999999],[16.343864,48.210707299999996],[16.3438111,48.21070370000001],[16.3431439,48.21077519999997],[16.3422098,48.21086700000001],[16.3414112,48.210954000000015],[16.3412468,48.210970799999984],[16.3407965,48.211016599999994],[16.3405715,48.21103959999999],[16.3405172,48.21106139999998],[16.3404703,48.21106620000003],[16.3404092,48.211069899999984],[16.339698,48.211143899999996]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Josefstädter Straße"}},{"type":"Feature","id":"23985375","geometry":{"type":"LineString","coordinates":[[16.3398812,48.20951910000002],[16.3399002,48.2095171],[16.3414074,48.209334600000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pfeilgasse","surface":"asphalt"}},{"type":"Feature","id":"4583352","geometry":{"type":"LineString","coordinates":[[16.3398812,48.20951910000002],[16.3398588,48.209521600000016],[16.3397631,48.209532800000034],[16.3392716,48.20963359999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Pfeilgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4986573","geometry":{"type":"LineString","coordinates":[[16.338719,48.21075010000001],[16.3388804,48.21063029999999],[16.3391479,48.21052739999999]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes"}},{"type":"Feature","id":"250864445","geometry":{"type":"LineString","coordinates":[[16.3386767,48.20860579999999],[16.3387035,48.2086568],[16.3388743,48.20898159999999],[16.3389501,48.20917299999999],[16.3389935,48.20934270000001],[16.3390481,48.20964219999996],[16.3391488,48.21041389999999],[16.3391486,48.2104348],[16.3391479,48.21052739999999],[16.3391555,48.2105957],[16.3391559,48.210604399999994],[16.3392099,48.210958000000005],[16.3392222,48.2110059]]},"properties":{"highway":"pedestrian","name":"Lerchenfelder Gürtel"}},{"type":"Feature","id":"26332665","geometry":{"type":"LineString","coordinates":[[16.3389164,48.21217579999998],[16.3388599,48.21208609999999],[16.3387583,48.21193389999999],[16.3387072,48.21180580000001],[16.3386756,48.211696200000006],[16.3386743,48.21167750000001],[16.3386732,48.2116613],[16.33867,48.21161620000001],[16.338667,48.21157280000003],[16.3386774,48.211304299999995],[16.3386961,48.21109199999998],[16.3387005,48.21099719999998],[16.3387095,48.210876799999994],[16.338719,48.21075010000001],[16.3387135,48.21062119999999],[16.3386903,48.21006969999996],[16.3385974,48.20938989999999],[16.3385362,48.209171800000036],[16.3382498,48.208757899999995],[16.3382115,48.20870350000004],[16.3381825,48.20866240000001]]},"properties":{"highway":"primary","is_in":"Wien,Östereich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221","surface":"concrete"}},{"type":"Feature","id":"23842012","geometry":{"type":"LineString","coordinates":[[16.338893,48.20856659999998],[16.3387964,48.2085879],[16.3386767,48.20860579999999],[16.3383461,48.20865649999999],[16.3381825,48.20866240000001]]},"properties":{"highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"70843156","geometry":{"type":"LineString","coordinates":[[16.3381825,48.20866240000001],[16.3381316,48.20858049999998]]},"properties":{"highway":"primary","is_in":"Wien,Östereich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"5003917","geometry":{"type":"LineString","coordinates":[[16.3354543,48.20911000000001],[16.3357117,48.20995229999997],[16.3359671,48.21104060000002],[16.3359752,48.211083],[16.3359794,48.21109899999999]]},"properties":{"highway":"pedestrian","name":"Brunnengasse","surface":"asphalt"}},{"type":"Feature","id":"486145107","geometry":{"type":"LineString","coordinates":[[16.3380864,48.208702200000005],[16.3360405,48.2090192],[16.335627,48.20908320000001],[16.3355435,48.209096200000005],[16.3354543,48.20911000000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"486146201","geometry":{"type":"LineString","coordinates":[[16.333888,48.20920939999999],[16.3348105,48.209062500000044],[16.3353413,48.20897809999997]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"486145102","geometry":{"type":"LineString","coordinates":[[16.3379966,48.20856280000001],[16.337943,48.20858290000001],[16.3364081,48.20882180000001],[16.3355024,48.208956900000004]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"4583668","geometry":{"type":"LineString","coordinates":[[16.3379207,48.2086611],[16.3379767,48.20863970000002],[16.3380339,48.20861780000001],[16.3381316,48.20858049999998]]},"properties":{"highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"28984254","geometry":{"type":"LineString","coordinates":[[16.333911,48.20927689999999],[16.3353264,48.209058999999996],[16.3354337,48.20904250000004],[16.3355236,48.209028700000005],[16.336431,48.20888969999996],[16.3379207,48.2086611]]},"properties":{"cycleway":"no","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Thaliastraße","oneway":"no","surface":"asphalt"}},{"type":"Feature","id":"70843155","geometry":{"type":"LineString","coordinates":[[16.3381825,48.20866240000001],[16.3380598,48.208661800000016],[16.3380065,48.208661500000034],[16.3379207,48.2086611]]},"properties":{"highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4849351","geometry":{"type":"LineString","coordinates":[[16.3432004,48.206473999999986],[16.3427516,48.20651599999999],[16.3397225,48.2071095],[16.3395136,48.207158899999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bernardgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"73261335","geometry":{"type":"LineString","coordinates":[[16.3388375,48.208449900000005],[16.3388673,48.2085127],[16.338893,48.20856659999998]]},"properties":{"highway":"primary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"324297228","geometry":{"type":"LineString","coordinates":[[16.3388375,48.208449900000005],[16.3389884,48.20845299999999],[16.3391389,48.208456600000005]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"47379824","geometry":{"type":"LineString","coordinates":[[16.3381316,48.20858049999998],[16.3382698,48.20853930000001],[16.3387307,48.20846000000003],[16.3388375,48.208449900000005]]},"properties":{"highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"324297227","geometry":{"type":"LineString","coordinates":[[16.3391389,48.208456600000005],[16.3390143,48.20851329999999],[16.338893,48.20856659999998]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"106806632","geometry":{"type":"LineString","coordinates":[[16.339313,48.20842099999999],[16.339293,48.20842509999997],[16.3391389,48.208456600000005]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","surface":"asphalt"}},{"type":"Feature","id":"211030127","geometry":{"type":"LineString","coordinates":[[16.3403589,48.210690099999994],[16.3403452,48.21064079999999],[16.3403301,48.210575000000006],[16.340197,48.21019079999999],[16.3401293,48.209994600000016],[16.3401273,48.20998829999999],[16.3400963,48.209920299999965],[16.3400341,48.20978149999999],[16.3398812,48.20951910000002],[16.3398513,48.20947469999996],[16.3396636,48.2091556],[16.3394583,48.20876839999997],[16.3393516,48.2085553],[16.3393375,48.20852550000001],[16.3393219,48.20848149999998],[16.3393164,48.2084524],[16.339313,48.20842099999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Blindengasse","source":"yahoo","surface":"asphalt","voltage":"600"}},{"type":"Feature","id":"26621213","geometry":{"type":"LineString","coordinates":[[16.3383682,48.20611389999996],[16.3383989,48.20618239999999],[16.3384309,48.20635200000001],[16.3388657,48.207231000000036]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Wimbergergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"189893586","geometry":{"type":"LineString","coordinates":[[16.34785,48.206648],[16.3456095,48.20711210000002],[16.3452065,48.20719410000001],[16.344842,48.207274299999995],[16.3440217,48.207440899999995],[16.3435406,48.2075366],[16.3434482,48.20755600000001],[16.3433517,48.207576500000016],[16.3430014,48.20765069999999],[16.3425313,48.20774890000001],[16.3421754,48.207826299999965],[16.3416718,48.207929699999994],[16.3414028,48.207982000000015],[16.3394293,48.20839749999999],[16.3393348,48.2084165],[16.339313,48.20842099999999]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße"}},{"type":"Feature","id":"4585729","geometry":{"type":"LineString","coordinates":[[16.3395136,48.207158899999996],[16.3395009,48.2071603],[16.3388657,48.207231000000036],[16.3382321,48.207310500000006],[16.338148,48.20732100000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bernardgasse","oneway":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"23799236","geometry":{"type":"LineString","coordinates":[[16.3345715,48.206484899999964],[16.3350018,48.207761499999975],[16.335219,48.208405700000014],[16.3354089,48.208969199999984],[16.3354337,48.20904250000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brunnengasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"47379823","geometry":{"type":"LineString","coordinates":[[16.3381316,48.20858049999998],[16.3380922,48.20852210000001],[16.3377492,48.208013600000015],[16.3373546,48.207397000000014]]},"properties":{"highway":"primary","is_in":"Wien,Östereich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"4986591","geometry":{"type":"LineString","coordinates":[[16.335219,48.208405700000014],[16.3362157,48.20825120000001],[16.3377492,48.208013600000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Menzelgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"118102638","geometry":{"type":"LineString","coordinates":[[16.3369327,48.206173699999994],[16.3367461,48.2061832],[16.3365797,48.20618719999999]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Neustiftgasse","oneway":"yes"}},{"type":"Feature","id":"4408002","geometry":{"type":"LineString","coordinates":[[16.3365797,48.20618719999999],[16.3355684,48.20633160000003],[16.3345715,48.206484899999964]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Koppstraße","oneway":"yes","ref":"B223"}},{"type":"Feature","id":"4583455","geometry":{"type":"LineString","coordinates":[[16.336431,48.20888969999996],[16.3364081,48.20882180000001],[16.3362157,48.20825120000001],[16.3359985,48.20760710000002],[16.3355684,48.20633160000003]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hippgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"118102647","geometry":{"type":"LineString","coordinates":[[16.3371651,48.20616480000001],[16.3369327,48.206173699999994]]},"properties":{"bridge":"yes","busway":"lane","highway":"primary","lit":"yes","maxspeed":"50","name":"Neustiftgasse","oneway":"yes"}},{"type":"Feature","id":"4583745","geometry":{"type":"LineString","coordinates":[[16.3373996,48.206152599999996],[16.3372714,48.2061592],[16.3371651,48.20616480000001]]},"properties":{"busway":"lane","highway":"primary","lit":"yes","maxspeed":"50","name":"Neustiftgasse","oneway":"yes"}},{"type":"Feature","id":"149681441","geometry":{"type":"LineString","coordinates":[[16.3460177,48.20279310000004],[16.3451006,48.20278719999996],[16.3450175,48.202786299999985],[16.3449442,48.202787900000004],[16.3432616,48.2027942],[16.3432365,48.20279380000002],[16.3431831,48.202792999999986],[16.3430995,48.2027928],[16.3416696,48.2027928],[16.3403178,48.20280079999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Kandlgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"205992795","geometry":{"type":"LineString","coordinates":[[16.33945,48.2027664],[16.3403178,48.20280079999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Kandlgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"172232745","geometry":{"type":"LineString","coordinates":[[16.3385008,48.204259500000035],[16.3399339,48.20432210000001],[16.3400243,48.20432539999999],[16.3400452,48.204325900000015],[16.3400643,48.20432600000001],[16.3401255,48.20432729999999],[16.3403323,48.2043266],[16.3415327,48.204326400000014],[16.3430368,48.20431880000001],[16.3431405,48.204317],[16.3432249,48.20431640000001],[16.3448601,48.204306900000006],[16.3449683,48.204306900000006],[16.3450705,48.204306299999985],[16.3452198,48.2043051],[16.3460103,48.204299100000014],[16.3467723,48.204293300000046],[16.3472632,48.20428960000001],[16.3476511,48.20428460000002],[16.3484036,48.20426660000001],[16.3488621,48.2042481],[16.348954,48.20424600000001],[16.3490571,48.2042443],[16.3496773,48.204215199999965],[16.3503893,48.204217200000045],[16.3504798,48.20421699999997],[16.3510974,48.204222000000016],[16.3513099,48.20422300000001],[16.3514539,48.20422800000003]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"172232746","geometry":{"type":"LineString","coordinates":[[16.337525,48.20422429999999],[16.3376421,48.2042247],[16.3385008,48.204259500000035]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4583595","geometry":{"type":"LineString","coordinates":[[16.3561842,48.205495900000045],[16.3549104,48.2054325],[16.3544088,48.205410900000004],[16.3542301,48.2054023],[16.3532052,48.20535960000001],[16.3527099,48.205335899999994],[16.3523636,48.2053181],[16.3522422,48.20531159999999],[16.3518595,48.20529139999999],[16.3516309,48.20527809999999],[16.3515375,48.205275900000004],[16.3514535,48.20527820000001],[16.3511485,48.20529620000002],[16.351127,48.205297599999994],[16.3497239,48.20538690000001],[16.3492057,48.20542369999998],[16.3491133,48.20543240000001],[16.3490291,48.20543910000001],[16.3485764,48.205470899999995],[16.3476294,48.20554250000001],[16.3450896,48.20569410000002],[16.3449438,48.205697499999985],[16.3448576,48.205703],[16.3447401,48.20571039999999],[16.3431982,48.205815299999955],[16.3431009,48.20582189999999],[16.3430145,48.20582709999999],[16.3414807,48.20593119999998],[16.3414064,48.20593619999997],[16.3398126,48.20603909999997],[16.3397177,48.20604540000002],[16.3396978,48.20604689999999],[16.3396148,48.206050000000005],[16.3393553,48.20606219999999],[16.3383682,48.20611389999996],[16.3375169,48.20614789999999],[16.3373996,48.206152599999996]]},"properties":{"bicycle":"yes","busway":"lane","cycleway":"share_busway","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Neustiftgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"140768281","geometry":{"type":"LineString","coordinates":[[16.3374004,48.20551130000001],[16.3371741,48.20550940000001]]},"properties":{"highway":"service","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes"}},{"type":"Feature","id":"140469819","geometry":{"type":"LineString","coordinates":[[16.3371741,48.20550940000001],[16.3368806,48.20549870000002]]},"properties":{"bridge":"yes","foot":"yes","highway":"service","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes"}},{"type":"Feature","id":"118102645","geometry":{"type":"LineString","coordinates":[[16.336996,48.2041926],[16.3370141,48.20419340000001]]},"properties":{"admin_level":"9","boundary":"administrative","bridge":"yes","highway":"primary","lit":"yes","maxspeed":"50","name":"Burggasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"147402927","geometry":{"type":"LineString","coordinates":[[16.3370141,48.20419340000001],[16.3372343,48.20420390000001]]},"properties":{"bridge":"yes","highway":"primary","lanes":"3","layer":"1","lit":"yes","maxspeed":"50","name":"Burggasse","oneway":"yes","surface":"asphalt","turn:lanes":"left|left|through"}},{"type":"Feature","id":"118102650","geometry":{"type":"LineString","coordinates":[[16.3372343,48.20420390000001],[16.3373023,48.204207199999985],[16.3373869,48.2042112],[16.337525,48.20422429999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Burggasse","oneway":"yes","surface":"asphalt","turn:lanes":"left|left|through"}},{"type":"Feature","id":"26738383","geometry":{"type":"LineString","coordinates":[[16.337525,48.20422429999999],[16.3375177,48.204299700000036],[16.3374004,48.20551130000001],[16.3373452,48.206081600000005],[16.3373996,48.206152599999996],[16.3374543,48.20623789999999],[16.338148,48.20732100000001],[16.3387478,48.20828740000002],[16.3388216,48.208416],[16.3388375,48.208449900000005]]},"properties":{"highway":"primary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"4583748","geometry":{"type":"LineString","coordinates":[[16.3367537,48.2041797],[16.336864,48.2041863],[16.3369348,48.2041897],[16.336996,48.2041926]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"primary","lit":"yes","maxspeed":"50","name":"Burggasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"379080492","geometry":{"type":"LineString","coordinates":[[16.3370066,48.20413500000001],[16.3372885,48.20414640000004]]},"properties":{"bus":"yes","highway":"platform","name":"Burggasse-Stadthalle","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"161604958","geometry":{"type":"LineString","coordinates":[[16.3368806,48.20549870000002],[16.3368345,48.20547210000001],[16.3367966,48.205450299999995],[16.3367966,48.2053966],[16.3369055,48.2042663],[16.3369348,48.2041897]]},"properties":{"highway":"service","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes"}},{"type":"Feature","id":"26242735","geometry":{"type":"LineString","coordinates":[[16.3348358,48.20539819999999],[16.3356535,48.20543319999999],[16.3366347,48.205475199999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Herbststraße"}},{"type":"Feature","id":"140469776","geometry":{"type":"LineString","coordinates":[[16.3366347,48.205475199999995],[16.3367887,48.20551660000001]]},"properties":{"bicycle":"designated","foot":"designated","highway":"path","name":"Herbststraße","segregated":"no","source":"yahoo"}},{"type":"Feature","id":"140768326","geometry":{"type":"LineString","coordinates":[[16.3373546,48.207397000000014],[16.3365797,48.20618719999999],[16.3366347,48.205475199999995],[16.3367491,48.2042577],[16.3367537,48.2041797]]},"properties":{"highway":"primary","is_in":"Wien,Östereich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"26242732","geometry":{"type":"LineString","coordinates":[[16.3346724,48.20539120000004],[16.3347508,48.205394600000005],[16.3348358,48.20539819999999]]},"properties":{"foot":"yes","highway":"cycleway","name":"Herbststraße"}},{"type":"Feature","id":"26242733","geometry":{"type":"LineString","coordinates":[[16.3346724,48.20539120000004],[16.3346622,48.2054991],[16.3346588,48.205530099999976],[16.3346209,48.20595620000003],[16.3345715,48.206484899999964]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ludo-Hartmann-Platz","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"5743296","geometry":{"type":"LineString","coordinates":[[16.3348009,48.204096400000026],[16.3347565,48.20454380000001],[16.3347362,48.2047489],[16.3346724,48.20539120000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brunnengasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"192640518","geometry":{"type":"LineString","coordinates":[[16.3355684,48.20633160000003],[16.3356535,48.20543319999999],[16.3357604,48.20413780000001]]},"properties":{"cycleway":"opposite","highway":"residential","kerb":"yes","maxspeed":"30","name":"Hippgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both"}},{"type":"Feature","id":"401254052","geometry":{"type":"LineString","coordinates":[[16.3357604,48.20413780000001],[16.3366507,48.20417710000001],[16.3367537,48.2041797]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"primary","lanes":"4","lanes:psv":"3","lit":"yes","maxspeed":"50","name":"Gablenzgasse","oneway":"yes","ref":"B223","turn:lanes":"through|through|through|right"}},{"type":"Feature","id":"4583254","geometry":{"type":"LineString","coordinates":[[16.3318878,48.2095855],[16.331937,48.2096497],[16.3324407,48.210307099999994],[16.3326368,48.210562899999985]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Fröbelgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"112630083","geometry":{"type":"LineString","coordinates":[[16.333911,48.20927689999999],[16.3331067,48.209399500000046],[16.3330136,48.20941369999997]]},"properties":{"cycleway":"no","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Östereich,Europe","maxspeed":"50","name":"Hofferplatz"}},{"type":"Feature","id":"192640517","geometry":{"type":"LineString","coordinates":[[16.3326368,48.210562899999985],[16.3333456,48.210419],[16.3357117,48.20995229999997],[16.3385974,48.20938989999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Grundsteingasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"4583248","geometry":{"type":"LineString","coordinates":[[16.3330136,48.20941369999997],[16.3330387,48.209489700000006],[16.3333456,48.210419],[16.3335545,48.2113272],[16.3335684,48.21139049999999],[16.3335807,48.21144910000001],[16.3337067,48.212047299999995],[16.3337573,48.212399000000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kirchstetterngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"486145097","geometry":{"type":"LineString","coordinates":[[16.3353476,48.20912630000001],[16.3331374,48.209471699999995]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"12288414","geometry":{"type":"LineString","coordinates":[[16.335219,48.208405700000014],[16.3336933,48.20863739999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Menzelgasse","oneway":"yes"}},{"type":"Feature","id":"4474215","geometry":{"type":"LineString","coordinates":[[16.333911,48.20927689999999],[16.333888,48.20920939999999],[16.3336933,48.20863739999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hofferplatz","oneway":"yes"}},{"type":"Feature","id":"29107339","geometry":{"type":"LineString","coordinates":[[16.332789,48.208754400000004],[16.332805,48.2088018],[16.3329903,48.209352499999994],[16.3330136,48.20941369999997]]},"properties":{"highway":"residential","maxspeed":"50","name":"Hofferplatz","oneway":"yes"}},{"type":"Feature","id":"486145099","geometry":{"type":"LineString","coordinates":[[16.3330805,48.20933629999999],[16.3338014,48.20922300000001],[16.333888,48.20920939999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Hofferplatz"}},{"type":"Feature","id":"122967030","geometry":{"type":"LineString","coordinates":[[16.3298096,48.212011200000006],[16.3298015,48.21194589999999],[16.3297283,48.21135389999998],[16.32966,48.21105219999998],[16.3295022,48.210598800000014],[16.3290905,48.21008169999999],[16.3290408,48.2100193]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lindauergasse","oneway":"yes"}},{"type":"Feature","id":"4986587","geometry":{"type":"LineString","coordinates":[[16.3310016,48.21086980000001],[16.331207,48.210770499999995],[16.3317489,48.21056729999998],[16.3319599,48.21049259999998],[16.3324407,48.210307099999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bertoligasse","oneway":"no","surface":"cobblestone"}},{"type":"Feature","id":"8086400","geometry":{"type":"LineString","coordinates":[[16.3326368,48.210562899999985],[16.3321219,48.21066579999999],[16.3318398,48.21072079999999],[16.3312276,48.210836099999995],[16.3310016,48.21086980000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Grundsteingasse","oneway":"yes"}},{"type":"Feature","id":"4789264","geometry":{"type":"LineString","coordinates":[[16.3317489,48.21056729999998],[16.3314005,48.210123399999986]]},"properties":{"highway":"residential","maxspeed":"30","name":"Liebhartsgasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"29107417","geometry":{"type":"LineString","coordinates":[[16.3317489,48.21056729999998],[16.3318398,48.21072079999999]]},"properties":{"highway":"footway","name":"Liebhartsgasse"}},{"type":"Feature","id":"4986569","geometry":{"type":"LineString","coordinates":[[16.3310016,48.21086980000001],[16.3308223,48.21090239999998],[16.3303835,48.21037430000001],[16.3300653,48.20993630000004],[16.3300176,48.20987059999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haberlgasse","oneway":"yes"}},{"type":"Feature","id":"486145093","geometry":{"type":"LineString","coordinates":[[16.3328997,48.209368100000006],[16.3328538,48.2093663],[16.3320066,48.20949300000001],[16.3309894,48.209645800000004],[16.330407,48.20973900000001],[16.3303694,48.209751900000015],[16.3300683,48.20979790000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"112630084","geometry":{"type":"LineString","coordinates":[[16.3330136,48.20941369999997],[16.3329191,48.209427800000014],[16.3320306,48.20956350000003],[16.3318878,48.2095855],[16.3310752,48.20970890000001],[16.330103,48.20985749999997],[16.3300176,48.20987059999999]]},"properties":{"cycleway":"no","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Thaliastraße"}},{"type":"Feature","id":"486145095","geometry":{"type":"LineString","coordinates":[[16.3329433,48.209491799999995],[16.331937,48.2096497],[16.3311282,48.20977639999998],[16.3305748,48.209859600000016],[16.3301451,48.20992430000004],[16.3300653,48.20993630000004],[16.3299596,48.20995199999999],[16.3290905,48.21008169999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"192640523","geometry":{"type":"LineString","coordinates":[[16.3314005,48.210123399999986],[16.3311282,48.20977639999998],[16.3310752,48.20970890000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Liebhartsgasse","oneway":"yes"}},{"type":"Feature","id":"486146200","geometry":{"type":"LineString","coordinates":[[16.3280668,48.210095499999994],[16.3271037,48.21024589999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Richard-Wagner-Platz"}},{"type":"Feature","id":"192653304","geometry":{"type":"LineString","coordinates":[[16.3280906,48.21016430000003],[16.3271266,48.21031000000002]]},"properties":{"cycleway":"no","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Richard-Wagner-Platz"}},{"type":"Feature","id":"9866343","geometry":{"type":"LineString","coordinates":[[16.3280906,48.21016430000003],[16.3281341,48.21022320000003],[16.3284762,48.2106866],[16.3285498,48.21074229999999],[16.3286098,48.21077500000001],[16.3286684,48.210937099999995],[16.3287314,48.21112210000001],[16.3287685,48.211189200000035],[16.3288018,48.211290099999985],[16.3288179,48.21134599999999],[16.3288997,48.21162659999999],[16.3289048,48.21167700000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Deinhardsteingasse","oneway":"yes"}},{"type":"Feature","id":"486146199","geometry":{"type":"LineString","coordinates":[[16.3271037,48.21024589999999],[16.3261261,48.2103951],[16.3253148,48.21051829999999],[16.3252734,48.21051059999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"192653305","geometry":{"type":"LineString","coordinates":[[16.3271266,48.21031000000002],[16.3261491,48.210463000000004],[16.3253218,48.210587900000036],[16.3252037,48.21060640000002],[16.3250818,48.210625300000004],[16.3241617,48.2107675],[16.3237391,48.210829099999984],[16.3231119,48.21092540000001],[16.3227423,48.2109801],[16.3220749,48.211082199999964],[16.3210464,48.21124090000001],[16.3206501,48.2113013],[16.3200065,48.211398799999984],[16.3196513,48.211453199999994]]},"properties":{"cycleway":"no","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Thaliastraße"}},{"type":"Feature","id":"4986585","geometry":{"type":"LineString","coordinates":[[16.3271266,48.21031000000002],[16.3271487,48.2103764],[16.327313,48.210871199999985],[16.3272905,48.210925799999984],[16.3272508,48.21098760000001],[16.3273139,48.2114019],[16.3273537,48.21159299999999],[16.3274045,48.211931900000025],[16.3273792,48.2120194],[16.3273041,48.212551099999985],[16.3273009,48.21260319999999],[16.3272976,48.2126585],[16.3272921,48.21270270000002],[16.3272103,48.2133556],[16.3272018,48.21342379999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blumberggasse","oneway":"yes"}},{"type":"Feature","id":"4986575","geometry":{"type":"LineString","coordinates":[[16.3254075,48.211218],[16.3255156,48.211201399999965],[16.3263705,48.21107030000002],[16.3272905,48.210925799999984],[16.3285498,48.21074229999999],[16.3295022,48.210598800000014],[16.3303835,48.21037430000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bachgasse"}},{"type":"Feature","id":"29109676","geometry":{"type":"LineString","coordinates":[[16.3263705,48.21107030000002],[16.3261733,48.21052929999999],[16.3261491,48.210463000000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wendgasse","oneway":"yes"}},{"type":"Feature","id":"29107726","geometry":{"type":"LineString","coordinates":[[16.3266715,48.20903820000001],[16.3268497,48.20953610000001],[16.3271037,48.21024589999999],[16.3271266,48.21031000000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Richard-Wagner-Platz","oneway":"yes"}},{"type":"Feature","id":"192653297","geometry":{"type":"LineString","coordinates":[[16.3218309,48.20977690000001],[16.3226657,48.209649600000006],[16.3237295,48.209487300000006],[16.3246648,48.209344499999986],[16.3247731,48.209328],[16.3248699,48.209313200000025],[16.3257168,48.20918389999997],[16.3266715,48.20903820000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hasnerstraße","surface":"asphalt"}},{"type":"Feature","id":"486145091","geometry":{"type":"LineString","coordinates":[[16.3299047,48.209823400000005],[16.3294426,48.209889499999974],[16.329018,48.2099503],[16.3280668,48.210095499999994]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"36335937","geometry":{"type":"LineString","coordinates":[[16.3278219,48.20938670000001],[16.3268497,48.20953610000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Richard-Wagner-Platz","oneway":"yes"}},{"type":"Feature","id":"436724659","geometry":{"type":"LineString","coordinates":[[16.3300176,48.20987059999999],[16.3299306,48.2098838],[16.3290408,48.2100193],[16.3280906,48.21016430000003]]},"properties":{"cycleway":"no","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Thaliastraße"}},{"type":"Feature","id":"475890997","geometry":{"type":"LineString","coordinates":[[16.3253461,48.21066029999997],[16.3253877,48.21065490000001],[16.3258243,48.210587799999985],[16.3261733,48.21052929999999],[16.3271487,48.2103764],[16.3281341,48.21022320000003],[16.3290905,48.21008169999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"192653298","geometry":{"type":"LineString","coordinates":[[16.3278515,48.20885820000001],[16.3286188,48.2087411],[16.3295803,48.20859440000001],[16.3305762,48.208442399999996],[16.3315962,48.2082867],[16.3325799,48.20813659999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hasnerstraße"}},{"type":"Feature","id":"192653293","geometry":{"type":"LineString","coordinates":[[16.3276499,48.20888889999998],[16.3277324,48.20887640000001],[16.3278515,48.20885820000001]]},"properties":{"foot":"yes","highway":"cycleway","name":"Hasnerstraße"}},{"type":"Feature","id":"192653303","geometry":{"type":"LineString","coordinates":[[16.3266715,48.20903820000001],[16.3276499,48.20888889999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Richard-Wagner-Platz","surface":"asphalt"}},{"type":"Feature","id":"29107696","geometry":{"type":"LineString","coordinates":[[16.3280906,48.21016430000003],[16.3280668,48.210095499999994],[16.3278219,48.20938670000001],[16.3276499,48.20888889999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Richard-Wagner-Platz","oneway":"yes"}},{"type":"Feature","id":"192653296","geometry":{"type":"LineString","coordinates":[[16.3327599,48.20810869999997],[16.3334756,48.20799790000001],[16.3350018,48.207761499999975],[16.3359985,48.20760710000002],[16.3373546,48.207397000000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hasnerstraße"}},{"type":"Feature","id":"29107347","geometry":{"type":"LineString","coordinates":[[16.3336933,48.20863739999996],[16.3334756,48.20799790000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Neumayrgasse","oneway":"yes"}},{"type":"Feature","id":"37074289","geometry":{"type":"LineString","coordinates":[[16.3325799,48.20813659999999],[16.3326678,48.20812300000003],[16.3327599,48.20810869999997]]},"properties":{"foot":"yes","highway":"cycleway","name":"Hasnerstraße"}},{"type":"Feature","id":"192640524","geometry":{"type":"LineString","coordinates":[[16.3334756,48.20799790000001],[16.3335981,48.206639499999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Neumayrgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"5003921","geometry":{"type":"LineString","coordinates":[[16.3319441,48.206258100000014],[16.3336562,48.206002799999965]]},"properties":{"highway":"residential","maxspeed":"30","name":"Nödlgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"26242727","geometry":{"type":"LineString","coordinates":[[16.3345715,48.206484899999964],[16.3335981,48.206639499999994]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Ludo-Hartmann-Platz","oneway":"yes","ref":"B223"}},{"type":"Feature","id":"4789243","geometry":{"type":"LineString","coordinates":[[16.3335981,48.206639499999994],[16.3336562,48.206002799999965],[16.3336635,48.205922300000026],[16.3337035,48.20548400000001],[16.3337106,48.2054062],[16.3337157,48.20535029999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ludo-Hartmann-Platz","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"26242731","geometry":{"type":"LineString","coordinates":[[16.3337157,48.20535029999999],[16.3341998,48.205371000000014],[16.3342141,48.20537160000001],[16.3346724,48.20539120000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ludo-Hartmann-Platz"}},{"type":"Feature","id":"5003918","geometry":{"type":"LineString","coordinates":[[16.3317388,48.20565149999999],[16.3318294,48.205637800000005],[16.3328649,48.2054809],[16.3337157,48.20535029999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Herbststraße"}},{"type":"Feature","id":"26231343","geometry":{"type":"LineString","coordinates":[[16.3277427,48.20625720000001],[16.3277635,48.206317299999995],[16.3281111,48.207318799999996],[16.3281477,48.207417899999996],[16.3281964,48.207468999999975],[16.3286188,48.2087411],[16.329018,48.2099503],[16.3290408,48.2100193]]},"properties":{"highway":"residential","maxspeed":"30","name":"Habichergasse","oneway":"yes"}},{"type":"Feature","id":"37136213","geometry":{"type":"LineString","coordinates":[[16.3281111,48.207318799999996],[16.3285898,48.20724559999999]]},"properties":{"bicycle":"no","highway":"pedestrian","horse":"no","maxspeed":"30","motor_vehicle":"destination","name":"Koppstraße"}},{"type":"Feature","id":"4789261","geometry":{"type":"LineString","coordinates":[[16.3317388,48.20565149999999],[16.3316338,48.20566740000001],[16.3307506,48.20580129999999],[16.3297239,48.20595690000002],[16.3287135,48.20611009999999],[16.3278607,48.20623930000002],[16.3277427,48.20625720000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Herbststraße"}},{"type":"Feature","id":"436724662","geometry":{"type":"LineString","coordinates":[[16.3300176,48.20987059999999],[16.3299963,48.20980829999999],[16.3295803,48.20859440000001],[16.3291379,48.207327099999986],[16.3290798,48.207165799999984],[16.3287135,48.20611009999999],[16.3282896,48.204854600000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haberlgasse","oneway":"yes"}},{"type":"Feature","id":"146982061","geometry":{"type":"LineString","coordinates":[[16.3273358,48.20500279999999],[16.3273577,48.205072],[16.3274023,48.205212700000004],[16.3277093,48.20615480000001],[16.3277427,48.20625720000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Habichergasse","oneway":"no","source":"yahoo","surface":"concrete:plates"}},{"type":"Feature","id":"4583649","geometry":{"type":"LineString","coordinates":[[16.3261491,48.210463000000004],[16.3261261,48.2103951],[16.3257168,48.20918389999997],[16.3252843,48.20790389999999],[16.3248761,48.206695999999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ganglbauergasse","oneway":"yes"}},{"type":"Feature","id":"192653302","geometry":{"type":"LineString","coordinates":[[16.3262565,48.207762599999995],[16.3266715,48.20903820000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Hyrtlgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"4469955","geometry":{"type":"LineString","coordinates":[[16.3254263,48.20529809999999],[16.325847,48.20655070000001],[16.3262565,48.207762599999995]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Hyrtlgasse","oneway":"yes"}},{"type":"Feature","id":"26231342","geometry":{"type":"LineString","coordinates":[[16.3277427,48.20625720000001],[16.3276684,48.20626880000003],[16.3268042,48.20640320000001],[16.325847,48.20655070000001],[16.3248761,48.206695999999994],[16.3240276,48.206830800000006],[16.3239326,48.20684589999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Herbststraße","surface":"concrete:plates"}},{"type":"Feature","id":"26242729","geometry":{"type":"LineString","coordinates":[[16.3335981,48.206639499999994],[16.3322598,48.20684190000003],[16.3321475,48.206858900000015],[16.3320454,48.20687459999999],[16.3318047,48.206912200000005],[16.3311621,48.207010699999984],[16.3301396,48.207169300000004],[16.3291379,48.207327099999986],[16.3281964,48.207468999999975],[16.3272157,48.20761270000003],[16.3262565,48.207762599999995],[16.3252843,48.20790389999999],[16.3248665,48.207970200000005],[16.3244396,48.208035600000045],[16.3243315,48.20805050000001],[16.3242174,48.208068200000014],[16.3232987,48.2082111],[16.3222476,48.20836750000001],[16.3215343,48.208480500000036],[16.321202,48.208529999999996],[16.3201785,48.2086908],[16.3191179,48.2088468],[16.3187311,48.20890689999999],[16.3180554,48.209014800000006],[16.3159737,48.209332399999994]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Koppstraße","oneway":"yes","ref":"B223"}},{"type":"Feature","id":"9866320","geometry":{"type":"LineString","coordinates":[[16.3276499,48.20888889999998],[16.3272157,48.20761270000003],[16.3268042,48.20640320000001],[16.3263773,48.2051486]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haymerlegasse","oneway":"yes"}},{"type":"Feature","id":"26242730","geometry":{"type":"LineString","coordinates":[[16.3337157,48.20535029999999],[16.3338056,48.20412779999998],[16.3338109,48.20405640000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Neumayrgasse"}},{"type":"Feature","id":"5003920","geometry":{"type":"LineString","coordinates":[[16.3328649,48.2054809],[16.3324159,48.2042232]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schinnaglgasse","oneway":"yes"}},{"type":"Feature","id":"228701465","geometry":{"type":"LineString","coordinates":[[16.3339175,48.20333230000003],[16.3338714,48.20343679999999],[16.3338374,48.20381029999996],[16.3338219,48.203953799999994],[16.3338109,48.20405640000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Moeringgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5003731","geometry":{"type":"LineString","coordinates":[[16.3320306,48.20956350000003],[16.3320066,48.20949300000001],[16.3315962,48.2082867],[16.3311621,48.207010699999984],[16.3307506,48.20580129999999],[16.3303495,48.204622400000005],[16.3303218,48.20454090000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lcn":"yes","maxspeed":"30","name":"Fröbelgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"37524624","geometry":{"type":"LineString","coordinates":[[16.3302082,48.204556999999994],[16.3303218,48.20454090000001],[16.3304125,48.2045286]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Gablenzgasse","ref":"B223"}},{"type":"Feature","id":"37524625","geometry":{"type":"LineString","coordinates":[[16.3304125,48.2045286],[16.3304534,48.20452260000002],[16.3313142,48.20439669999999],[16.3317565,48.20432249999999],[16.3319741,48.204290000000015],[16.3324159,48.2042232],[16.3335472,48.20404810000002],[16.3336727,48.20405210000001],[16.3338109,48.20405640000001],[16.3339158,48.20406059999999],[16.3343615,48.20408029999996],[16.3348009,48.204096400000026],[16.3357604,48.20413780000001]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Gablenzgasse","oneway":"yes","ref":"B223"}},{"type":"Feature","id":"379080489","geometry":{"type":"LineString","coordinates":[[16.3315093,48.20432349999999],[16.3318838,48.20426570000001]]},"properties":{"bench":"yes","highway":"platform","name":"Vogelweidpark/Stadthalle","public_transport":"platform","shelter":"yes"}},{"type":"Feature","id":"4474216","geometry":{"type":"LineString","coordinates":[[16.3313142,48.20439669999999],[16.3317114,48.20557059999999],[16.3317388,48.20565149999999],[16.331764,48.20572579999998],[16.3319441,48.206258100000014],[16.3321195,48.2067763],[16.3321475,48.206858900000015],[16.3321674,48.206917799999985],[16.3325799,48.20813659999999],[16.332789,48.208754400000004]]},"properties":{"highway":"residential","maxspeed":"50","name":"Kirchstetterngasse","oneway":"yes"}},{"type":"Feature","id":"5003725","geometry":{"type":"LineString","coordinates":[[16.33134,48.20383480000001],[16.3302052,48.203831199999996]]},"properties":{"created_by":"Potlatch 0.4c","highway":"living_street","name":"Volkergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5838279","geometry":{"type":"LineString","coordinates":[[16.3273358,48.20500279999999],[16.3273121,48.2049375],[16.3272638,48.204804499999966],[16.3271612,48.20446340000001]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Camillo-Sitte-Gasse","surface":"asphalt"}},{"type":"Feature","id":"31508908","geometry":{"type":"LineString","coordinates":[[16.317234,48.20653379999999],[16.3174098,48.20650699999999],[16.3174734,48.206497300000024],[16.3182886,48.2063728],[16.3193353,48.206213100000014],[16.3203445,48.20605900000004],[16.3208186,48.205983599999996],[16.3210437,48.20594539999999],[16.3213763,48.205891399999956],[16.321608,48.205856600000004],[16.3224385,48.205733399999986],[16.3234942,48.20557869999996],[16.3244507,48.2054421],[16.3250771,48.20534910000001],[16.3254263,48.20529809999999],[16.3263773,48.2051486],[16.3271234,48.20503579999999],[16.3272355,48.20501840000003],[16.3273358,48.20500279999999],[16.3274318,48.20498789999999],[16.3282896,48.204854600000004],[16.3292926,48.204699300000044],[16.3301487,48.20456619999999],[16.3302082,48.204556999999994]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Gablenzgasse","oneway":"yes","ref":"B223"}},{"type":"Feature","id":"4950565","geometry":{"type":"LineString","coordinates":[[16.3292926,48.204699300000044],[16.3297239,48.20595690000002],[16.3301396,48.207169300000004],[16.3305762,48.208442399999996],[16.3309894,48.209645800000004],[16.3310752,48.20970890000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Liebhartsgasse","oneway":"yes"}},{"type":"Feature","id":"29104202","geometry":{"type":"LineString","coordinates":[[16.3269935,48.20349439999998],[16.3269031,48.20349859999999],[16.3262582,48.20352889999998],[16.3255003,48.2035611]]},"properties":{"highway":"residential","maxspeed":"30","name":"Walkürengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"189028774","geometry":{"type":"LineString","coordinates":[[16.3262582,48.20352889999998],[16.3263145,48.204454699999985]]},"properties":{"cycleway":"opposite","highway":"living_street","name":"Brunhildengasse","oneway":"yes"}},{"type":"Feature","id":"5003724","geometry":{"type":"LineString","coordinates":[[16.3298996,48.203564400000005],[16.3280309,48.2036597]]},"properties":{"highway":"residential","maxspeed":"30","name":"Giselhergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"25940679","geometry":{"type":"LineString","coordinates":[[16.3302052,48.203831199999996],[16.3300885,48.203834299999954],[16.3299769,48.203845]]},"properties":{"highway":"residential","maxspeed":"30","name":"Volkergasse","oneway":"no","source":"yahoo"}},{"type":"Feature","id":"5003712","geometry":{"type":"LineString","coordinates":[[16.3254857,48.20453789999999],[16.3263145,48.204454699999985],[16.32714,48.204358799999994],[16.327222,48.20435050000003],[16.3281215,48.204259500000035],[16.329949,48.20405980000001],[16.3300315,48.204050600000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hagengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"219430757","geometry":{"type":"LineString","coordinates":[[16.3271612,48.20446340000001],[16.3271462,48.2043894]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Camillo-Sitte-Gasse","surface":"asphalt"}},{"type":"Feature","id":"23323918","geometry":{"type":"LineString","coordinates":[[16.3300167,48.2028181],[16.3300416,48.20306020000001],[16.3300818,48.20329480000001]]},"properties":{"bicycle":"permissive","highway":"living_street","lcn":"yes","name":"Markgraf-Rüdiger-Straße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003711","geometry":{"type":"LineString","coordinates":[[16.331417,48.202843900000005],[16.3300167,48.2028181]]},"properties":{"bicycle":"permissive","created_by":"Potlatch 0.10f","highway":"living_street","name":"Reuenthalgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003708","geometry":{"type":"LineString","coordinates":[[16.3280208,48.20305260000001],[16.3298078,48.2030642]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gernotgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"35977389","geometry":{"type":"LineString","coordinates":[[16.3300818,48.20329480000001],[16.3301381,48.20355359999999],[16.3302052,48.203831199999996],[16.3303896,48.20445729999997],[16.3304125,48.2045286]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Markgraf-Rüdiger-Straße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"35985257","geometry":{"type":"LineString","coordinates":[[16.3300818,48.20329480000001],[16.3313847,48.20334980000004]]},"properties":{"highway":"living_street","name":"Dankwartgasse","oneway":"yes"}},{"type":"Feature","id":"5003721","geometry":{"type":"LineString","coordinates":[[16.3298493,48.203295300000036],[16.3299644,48.20329319999999],[16.3300818,48.20329480000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dankwartgasse","oneway":"yes"}},{"type":"Feature","id":"5003709","geometry":{"type":"LineString","coordinates":[[16.3269935,48.20349439999998],[16.328025,48.203464800000035]]},"properties":{"highway":"residential","maxspeed":"30","name":"Walkürengasse","source":"yahoo"}},{"type":"Feature","id":"473379542","geometry":{"type":"LineString","coordinates":[[16.3741438,48.201809999999995],[16.37446,48.2018947],[16.3746782,48.20195319999999],[16.3747694,48.20199339999999],[16.3757428,48.20293620000001],[16.3761976,48.2034012],[16.3762678,48.20346459999999]]},"properties":{"footway":"sidewalk","highway":"footway","lit":"yes","name":"Schubertring"}},{"type":"Feature","id":"270709587","geometry":{"type":"LineString","coordinates":[[16.3754319,48.2022254],[16.3751088,48.20191969999996]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schubertring","oneway":"yes","sidewalk":"no","turn:lanes":"left;through|through|through;right","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"128859772","geometry":{"type":"LineString","coordinates":[[16.3756435,48.202134],[16.3755916,48.2020636],[16.3755414,48.20200310000001],[16.375234,48.2016993],[16.3751845,48.20164760000003]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Schubertring","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"179636209","geometry":{"type":"LineString","coordinates":[[16.3757954,48.20291209999999],[16.3749245,48.202062600000005],[16.3748329,48.20197919999998],[16.3746998,48.20191129999998],[16.3744854,48.2018497],[16.374169,48.201763099999994]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Schubertring","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"8072727","geometry":{"type":"LineString","coordinates":[[16.3739416,48.2021853],[16.3750325,48.203218700000036]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Hegelgasse","oneway":"yes","sidewalk":"both","wikidata":"Q16916609","wikipedia":"de:Hegelgasse (Wien)"}},{"type":"Feature","id":"5930442","geometry":{"type":"LineString","coordinates":[[16.3724007,48.20366419999999],[16.3721829,48.203251800000004],[16.3721508,48.20318850000004],[16.372121,48.20313340000001],[16.3718682,48.20264359999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Akademiestraße","oneway":"yes","sidewalk":"both","source":"yahoo"}},{"type":"Feature","id":"8072736","geometry":{"type":"LineString","coordinates":[[16.3718682,48.20264359999999],[16.371847,48.20260329999999],[16.3716029,48.20212860000001],[16.3715952,48.202113500000024],[16.3715794,48.20208059999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Max-Weiler-Platz"}},{"type":"Feature","id":"26158627","geometry":{"type":"LineString","coordinates":[[16.3718682,48.20264359999999],[16.373516,48.20227599999998],[16.3737577,48.2022264],[16.3739416,48.2021853]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Mahlerstraße","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473379525","geometry":{"type":"LineString","coordinates":[[16.3741438,48.201809999999995],[16.3740405,48.201783500000005],[16.3738477,48.20173510000001],[16.3736561,48.201694599999996],[16.3735246,48.20169729999998],[16.3716685,48.2021139],[16.3716029,48.20212860000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Kärntner Ring"}},{"type":"Feature","id":"43980600","geometry":{"type":"LineString","coordinates":[[16.3740776,48.201928399999986],[16.3741369,48.20182289999997],[16.3741438,48.201809999999995],[16.374169,48.201763099999994]]},"properties":{"highway":"residential","lanes":"3","lanes:backward":"1","lanes:forward":"2","lit":"yes","maxspeed":"30","name":"Schwarzenbergstraße","sidewalk":"both"}},{"type":"Feature","id":"26399545","geometry":{"type":"LineString","coordinates":[[16.3735393,48.202883799999995],[16.373561,48.20284609999999],[16.3738535,48.20235650000001],[16.3739416,48.2021853],[16.3740776,48.201928399999986]]},"properties":{"highway":"residential","lanes":"3","lanes:backward":"1","lanes:forward":"2","lit":"yes","maxspeed":"30","name":"Schwarzenbergstraße","sidewalk":"both"}},{"type":"Feature","id":"26158620","geometry":{"type":"LineString","coordinates":[[16.3709682,48.2028449],[16.3710602,48.202824599999985],[16.3718682,48.20264359999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Mahlerstraße","sidewalk":"both"}},{"type":"Feature","id":"26158639","geometry":{"type":"LineString","coordinates":[[16.3715794,48.20208059999999],[16.3715496,48.202019500000006],[16.3715185,48.201970200000005],[16.3714944,48.201921]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Akademiestraße"}},{"type":"Feature","id":"482008862","geometry":{"type":"LineString","coordinates":[[16.3714944,48.201921],[16.3714535,48.20193040000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Kärntner Ring","oneway":"yes","sidewalk":"no","turn:lanes":"through|through|through;right","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"128859764","geometry":{"type":"LineString","coordinates":[[16.3711067,48.20182320000001],[16.3712731,48.201786999999996],[16.3713019,48.2017807],[16.3714046,48.20175309999999],[16.3714393,48.201744899999994]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"355378660","geometry":{"type":"LineString","coordinates":[[16.3714046,48.20175309999999],[16.3714387,48.201817000000005],[16.3714944,48.201921]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Akademiestraße","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"473379541","geometry":{"type":"LineString","coordinates":[[16.3767756,48.20314110000001],[16.3763127,48.20268089999999],[16.3757126,48.2021101],[16.3757038,48.202101400000004],[16.3752729,48.201680100000004],[16.3751845,48.20164760000003]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Schubertring"}},{"type":"Feature","id":"142585626","geometry":{"type":"LineString","coordinates":[[16.3745806,48.201493],[16.3746687,48.20154200000002],[16.3747505,48.201571900000005],[16.3749661,48.20162819999999],[16.3750387,48.201636699999995],[16.3750867,48.20163980000001],[16.3751845,48.20164760000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schubertring","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"26930679","geometry":{"type":"LineString","coordinates":[[16.3751845,48.20164760000003],[16.3756994,48.2014116],[16.3758938,48.20132019999997],[16.3765289,48.20102669999997],[16.3766199,48.200986400000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Pestalozzigasse","oneway":"yes"}},{"type":"Feature","id":"298780844","geometry":{"type":"LineString","coordinates":[[16.3748732,48.20094610000001],[16.3746519,48.201363000000015],[16.3745806,48.201493]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","turn:lanes":"left|left|through;right"}},{"type":"Feature","id":"43981492","geometry":{"type":"LineString","coordinates":[[16.374169,48.201763099999994],[16.3741818,48.2017372],[16.3742399,48.201625000000035]]},"properties":{"highway":"residential","lanes":"3","lanes:backward":"1","lanes:forward":"2","lit":"yes","name":"Schwarzenbergstraße","source":"yahoo"}},{"type":"Feature","id":"482008866","geometry":{"type":"LineString","coordinates":[[16.3742399,48.201625000000035],[16.374209,48.2016175]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Kärntner Ring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"270709589","geometry":{"type":"LineString","coordinates":[[16.3751088,48.20191969999996],[16.3750027,48.201839399999955],[16.3748525,48.20178379999999],[16.37457,48.201707699999986],[16.3742399,48.201625000000035]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Schubertring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left;through|through|through;right","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"298780990","geometry":{"type":"LineString","coordinates":[[16.3745806,48.201493],[16.3745451,48.201544299999995],[16.3744965,48.201584],[16.3744299,48.20161189999999],[16.3742399,48.201625000000035]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","turn:lanes":"left|left|through"}},{"type":"Feature","id":"437179221","geometry":{"type":"LineString","coordinates":[[16.3740504,48.2013699],[16.3741704,48.201402]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"482008877","geometry":{"type":"LineString","coordinates":[[16.3714393,48.201744899999994],[16.3714863,48.20173430000003],[16.372789,48.20144099999999],[16.3735847,48.20125519999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26399482","geometry":{"type":"LineString","coordinates":[[16.374169,48.201763099999994],[16.3738752,48.201686199999955],[16.3737421,48.20165469999998],[16.3736411,48.20163629999999],[16.3735188,48.20164439999999],[16.3716463,48.202066],[16.3715794,48.20208059999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"29065779","geometry":{"type":"LineString","coordinates":[[16.374209,48.2016175],[16.373951,48.20155310000001],[16.3737167,48.201491000000004],[16.3736509,48.201481599999994],[16.3735683,48.20147610000001],[16.3734726,48.20148200000003],[16.3733774,48.20149950000001],[16.3728714,48.20161380000002],[16.3715713,48.20190450000001],[16.3714944,48.201921]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Kärntner Ring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"5930415","geometry":{"type":"LineString","coordinates":[[16.3728714,48.20161380000002],[16.3728478,48.20156639999999],[16.3728247,48.20151279999999],[16.372789,48.20144099999999],[16.3727699,48.20140330000001],[16.3725113,48.20089229999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dumbastraße","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8072733","geometry":{"type":"LineString","coordinates":[[16.371159,48.201231300000046],[16.3713813,48.2017036],[16.3714046,48.20175309999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Akademiestraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"25702402","geometry":{"type":"LineString","coordinates":[[16.3735847,48.20125519999999],[16.374001,48.201359000000025],[16.3740504,48.2013699]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5930421","geometry":{"type":"LineString","coordinates":[[16.3735847,48.20125519999999],[16.3735694,48.20122309999999],[16.373326,48.20071419999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Canovagasse","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5930427","geometry":{"type":"LineString","coordinates":[[16.373326,48.20071419999999],[16.3725113,48.20089229999999],[16.3724408,48.20090859999999],[16.3713287,48.201160000000016],[16.3712396,48.20118740000001],[16.371159,48.201231300000046]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bösendorferstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"298780843","geometry":{"type":"LineString","coordinates":[[16.3752207,48.20033329999998],[16.3751705,48.200416099999984],[16.3750998,48.200537800000035],[16.3748732,48.20094610000001]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","turn:lanes":"none|none"}},{"type":"Feature","id":"298780842","geometry":{"type":"LineString","coordinates":[[16.3752207,48.20033329999998],[16.3750184,48.200281099999984]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","turn:lanes":"left;through|through|through","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"31400518","geometry":{"type":"LineString","coordinates":[[16.3750184,48.200281099999984],[16.3748255,48.20023019999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","turn:lanes":"left;through|through|through","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"298781349","geometry":{"type":"LineString","coordinates":[[16.3749712,48.19996449999999],[16.3750181,48.19988319999999],[16.3753185,48.19935989999999]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","turn:lanes":"slight_left|slight_left|slight_right|slight_right"}},{"type":"Feature","id":"298781348","geometry":{"type":"LineString","coordinates":[[16.3749712,48.19996449999999],[16.3753836,48.20006840000002]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","turn:lanes":"left|through|through","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"444330549","geometry":{"type":"LineString","coordinates":[[16.3729221,48.19994629999999],[16.3729679,48.1999984],[16.3730136,48.200070100000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Canovagasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"27356234","geometry":{"type":"LineString","coordinates":[[16.3730136,48.200070100000005],[16.373326,48.20071419999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Canovagasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"12987041","geometry":{"type":"LineString","coordinates":[[16.3742399,48.201625000000035],[16.3741538,48.201545399999986],[16.3741405,48.201490000000035],[16.3741504,48.201435300000014],[16.3741704,48.201402],[16.374784,48.2003134],[16.3748255,48.20023019999999],[16.3748643,48.20015749999999],[16.3749712,48.19996449999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"9353537","geometry":{"type":"LineString","coordinates":[[16.3736346,48.199695399999996],[16.3736833,48.199691900000005],[16.3737479,48.19968799999998],[16.3738426,48.19968989999998],[16.3739397,48.19969789999999],[16.3748824,48.19993829999996],[16.3749712,48.19996449999999]]},"properties":{"highway":"primary","lanes":"5","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","turn:lanes":"through|through|through|right|right","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"31399550","geometry":{"type":"LineString","coordinates":[[16.3733095,48.19975070000004],[16.3735014,48.19971060000003],[16.3736346,48.199695399999996]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Karlsplatz","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"46738176","geometry":{"type":"LineString","coordinates":[[16.3748255,48.20023019999999],[16.3747305,48.2002081],[16.3746839,48.20019690000004],[16.3734916,48.1999113],[16.3732147,48.199907800000005],[16.3730832,48.1999251],[16.3729221,48.19994629999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"12984312","geometry":{"type":"LineString","coordinates":[[16.3752947,48.1991031],[16.3751712,48.19908929999997],[16.3734231,48.19885829999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brucknerstraße","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5891884","geometry":{"type":"LineString","coordinates":[[16.3734231,48.19885829999998],[16.3734684,48.19949159999999],[16.3734757,48.199559599999986],[16.3735055,48.19961359999999],[16.3735376,48.199647700000014],[16.3735732,48.19967389999999],[16.3736346,48.199695399999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Maderstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"157741495","geometry":{"type":"LineString","coordinates":[[16.3721286,48.200304200000005],[16.3724309,48.20088950000002],[16.3724408,48.20090859999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Musikvereinsplatz","source":"Bing"}},{"type":"Feature","id":"165810402","geometry":{"type":"LineString","coordinates":[[16.3727755,48.19889839999999],[16.3733657,48.1988662],[16.3734231,48.19885829999998]]},"properties":{"bicycle":"yes","foot":"yes","highway":"footway","history":"Retrieved from v4","name":"Symphonikerstraße","surface":"paved"}},{"type":"Feature","id":"231155952","geometry":{"type":"LineString","coordinates":[[16.3711517,48.200630099999984],[16.3711364,48.200599100000005],[16.3709381,48.20064350000001],[16.3709133,48.200601500000005],[16.3708881,48.2005901],[16.3707554,48.20061080000002],[16.3707399,48.200582999999995]]},"properties":{"highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatzpassage","tunnel":"yes"}},{"type":"Feature","id":"27356200","geometry":{"type":"LineString","coordinates":[[16.3710624,48.20124089999999],[16.3710578,48.201232300000015],[16.3707987,48.200748799999985],[16.3707503,48.20066009999999],[16.3707327,48.2006265],[16.3707269,48.200615400000004]]},"properties":{"highway":"pedestrian","name":"Akademiestraße","source":"yahoo"}},{"type":"Feature","id":"412633713","geometry":{"type":"LineString","coordinates":[[16.3716029,48.20212860000001],[16.3715119,48.20214919999998],[16.3703806,48.20240509999999],[16.3703847,48.2024131],[16.3701293,48.20247120000002],[16.3701245,48.202462]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Kärntner Ring"}},{"type":"Feature","id":"241509169","geometry":{"type":"LineString","coordinates":[[16.3705421,48.200201600000014],[16.3704355,48.1999606]]},"properties":{"highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatzpassage","tunnel":"yes","wheelchair":"yes"}},{"type":"Feature","id":"411955244","geometry":{"type":"LineString","coordinates":[[16.3707399,48.200582999999995],[16.3705421,48.200201600000014]]},"properties":{"highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatzpassage","tunnel":"yes","wheelchair":"yes"}},{"type":"Feature","id":"31247027","geometry":{"type":"LineString","coordinates":[[16.3698126,48.20256280000001],[16.3698605,48.202646500000014],[16.3699621,48.20284090000001],[16.370071,48.20305250000001],[16.3703032,48.20351719999999],[16.3703259,48.20359139999999]]},"properties":{"highway":"residential","lanes":"2","lit":"yes","maxspeed":"30","name":"Kärntner Straße","oneway":"yes","sidewalk":"right","turn:lanes":"left|left;right"}},{"type":"Feature","id":"31261137","geometry":{"type":"LineString","coordinates":[[16.3715794,48.20208059999999],[16.3714889,48.20210109999999],[16.370667,48.20228910000003],[16.3705248,48.202342999999985],[16.3702301,48.2024107],[16.36989,48.20248670000001],[16.3698419,48.20251680000001],[16.3698126,48.20256280000001]]},"properties":{"foot":"use_sidepath","highway":"residential","lanes":"1","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"5930448","geometry":{"type":"LineString","coordinates":[[16.3697707,48.20209990000001],[16.3698149,48.202096299999994],[16.3698673,48.20208769999999],[16.3699397,48.20207110000001],[16.3708066,48.20187229999999],[16.3708819,48.20186620000001],[16.3709318,48.2018621],[16.3711067,48.20182320000001]]},"properties":{"cycleway":"opposite_lane","foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"298785850","geometry":{"type":"LineString","coordinates":[[16.3750276,48.198418000000004],[16.3751931,48.198427400000014],[16.3752523,48.19844560000004]]},"properties":{"highway":"tertiary","lanes":"2","maxspeed":"50","name":"Gußhausstraße","oneway":"yes","surface":"concrete"}},{"type":"Feature","id":"12984113","geometry":{"type":"LineString","coordinates":[[16.3753185,48.19935989999999],[16.3753249,48.19930100000002],[16.3753281,48.199236999999954],[16.3752947,48.1991031],[16.3752071,48.19895589999999],[16.3751566,48.19885829999998],[16.3750516,48.19849970000001],[16.3750429,48.19847010000001],[16.3750276,48.198418000000004]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"5891919","geometry":{"type":"LineString","coordinates":[[16.3745722,48.19834350000002],[16.3744903,48.198385],[16.3743582,48.19845209999997],[16.373606,48.1987675],[16.3734231,48.19885829999998]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Technikerstraße","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"sett"}},{"type":"Feature","id":"298785853","geometry":{"type":"LineString","coordinates":[[16.3745722,48.19834350000002],[16.3747584,48.198408900000004],[16.3748784,48.198419099999995],[16.3749249,48.19841880000001],[16.3750276,48.198418000000004]]},"properties":{"bicycle":"use_sidepath","highway":"tertiary","lanes":"2","maxspeed":"50","name":"Gußhausstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"12985078","geometry":{"type":"LineString","coordinates":[[16.3745722,48.19834350000002],[16.374686,48.1983424],[16.374786,48.19835299999997],[16.374875,48.19833650000001],[16.3748973,48.198324799999966],[16.3749434,48.198300700000004],[16.3749918,48.1982586]]},"properties":{"highway":"tertiary","lanes":"1","maxspeed":"50","name":"Gußhausstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"5891872","geometry":{"type":"LineString","coordinates":[[16.3726309,48.198169199999995],[16.3729468,48.19782599999999],[16.3729983,48.197767400000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hoyosgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"paved"}},{"type":"Feature","id":"47003637","geometry":{"type":"LineString","coordinates":[[16.3726309,48.198169199999995],[16.3725764,48.19814410000001],[16.3724447,48.198083499999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mattiellistraße","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"12986319","geometry":{"type":"LineString","coordinates":[[16.3734231,48.19885829999998],[16.3733951,48.198790900000006],[16.373337,48.19869460000001],[16.3732482,48.198574699999995],[16.3731604,48.198488199999986],[16.3730215,48.1983821],[16.3726309,48.198169199999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mattiellistraße","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"298785852","geometry":{"type":"LineString","coordinates":[[16.3742455,48.198223900000016],[16.3745722,48.19834350000002]]},"properties":{"bicycle":"use_sidepath","highway":"tertiary","lanes":"3","maxspeed":"30","name":"Gußhausstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","turn:lanes":"left;through|through|right"}},{"type":"Feature","id":"13730735","geometry":{"type":"LineString","coordinates":[[16.3718085,48.197323600000004],[16.3718769,48.197351699999984],[16.3719215,48.19736999999998],[16.3729983,48.197767400000004],[16.3742455,48.198223900000016]]},"properties":{"bicycle":"use_sidepath","highway":"tertiary","maxspeed":"30","name":"Gußhausstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"298785851","geometry":{"type":"LineString","coordinates":[[16.3750276,48.198418000000004],[16.3750138,48.19835649999999],[16.3749918,48.1982586],[16.3749668,48.198002299999985],[16.3750073,48.19787389999999],[16.3752338,48.19756430000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"28340757","geometry":{"type":"LineString","coordinates":[[16.3752338,48.19756430000001],[16.3752334,48.197659999999985],[16.3752326,48.19767580000001],[16.3752311,48.1977057],[16.3752266,48.1977464],[16.3751994,48.197863100000006],[16.3751811,48.197984700000006],[16.3751961,48.198175100000014],[16.3752279,48.19832790000001],[16.3752523,48.19844560000004]]},"properties":{"fixme":"yes","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"107626537","geometry":{"type":"LineString","coordinates":[[16.3725529,48.196020799999985],[16.3726229,48.19603699999999],[16.3746351,48.196696900000035],[16.3755186,48.19693430000001],[16.3755953,48.19695490000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wohllebengasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"173517520","geometry":{"type":"LineString","coordinates":[[16.3725529,48.196020799999985],[16.372067,48.1968598]]},"properties":{"bicycle":"use_sidepath","footway:right.incline":"0%","footway:right.sloped_curb":"2","footway:right.smoothness":"good","footway:right.surface":"asphalt","footway:right.width":"3","highway":"residential","maxspeed":"30","name":"Argentinierstraße","oneway":"yes","source":"yahoo","surface":"paved"}},{"type":"Feature","id":"173517526","geometry":{"type":"LineString","coordinates":[[16.372067,48.1968598],[16.371835,48.1972768],[16.3718085,48.197323600000004]]},"properties":{"bicycle":"use_sidepath","footway:right.incline":"0%","footway:right.sloped_curb":"0","footway:right.smoothness":"good","footway:right.surface":"asphalt","footway:right.width":"3","highway":"residential","maxspeed":"30","name":"Argentinierstraße","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5891887","geometry":{"type":"LineString","coordinates":[[16.3750073,48.19787389999999],[16.3749455,48.19785250000004],[16.3721352,48.19687830000004],[16.372067,48.1968598]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schwindgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5891926","geometry":{"type":"LineString","coordinates":[[16.3712865,48.19821200000001],[16.3712439,48.19826630000003],[16.3711489,48.198302299999966],[16.3710361,48.19830970000001],[16.3708812,48.1983161],[16.3707722,48.19827910000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Karlsgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"26137142","geometry":{"type":"LineString","coordinates":[[16.3724447,48.198083499999996],[16.3722963,48.198022099999974],[16.3719507,48.19790520000001],[16.3717425,48.1978575]]},"properties":{"bicycle":"designated","highway":"residential","maxspeed":"30","name":"Kreuzherrengasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"173517533","geometry":{"type":"LineString","coordinates":[[16.3718085,48.197323600000004],[16.3717639,48.197397800000005],[16.3717521,48.197417400000006],[16.3715385,48.19777239999999],[16.3715103,48.197825300000005]]},"properties":{"bicycle":"use_sidepath","footway:right.incline":"-1%","footway:right.sloped_curb":"0","footway:right.smoothness":"good","footway:right.surface":"asphalt","footway:right.width":"3","highway":"residential","maxspeed":"30","name":"Argentinierstraße","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"128862299","geometry":{"type":"LineString","coordinates":[[16.3715969,48.19783240000004],[16.3715103,48.197825300000005]]},"properties":{"foot":"yes","highway":"cycleway","name":"Kreuzherrengasse","segregated":"yes"}},{"type":"Feature","id":"28242654","geometry":{"type":"LineString","coordinates":[[16.3715103,48.197825300000005],[16.3714704,48.19789539999999],[16.3712865,48.19821200000001]]},"properties":{"bicycle":"use_sidepath","footway:right.incline":"-2%","footway:right.sloped_curb":"0","footway:right.smoothness":"good","footway:right.surface":"asphalt","footway:right.width":"3","highway":"residential","maxspeed":"30","name":"Argentinierstraße","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"48306837","geometry":{"type":"LineString","coordinates":[[16.3717425,48.1978575],[16.3716453,48.19784290000001],[16.3715969,48.19783240000004]]},"properties":{"foot":"yes","highway":"cycleway","name":"Kreuzherrengasse","segregated":"yes"}},{"type":"Feature","id":"13730938","geometry":{"type":"LineString","coordinates":[[16.3715103,48.197825300000005],[16.3714355,48.197814499999964],[16.3711394,48.19776790000003],[16.370913,48.197749699999974],[16.3706906,48.197751900000014],[16.3704377,48.19777719999999],[16.3703321,48.1977914]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paniglgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"229766424","geometry":{"type":"LineString","coordinates":[[16.3707722,48.19827910000001],[16.3706853,48.19818609999996],[16.3703831,48.19785300000001],[16.3703321,48.1977914]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Karlsgasse","oneway":"yes","source":"yahoo","surface":"paved"}},{"type":"Feature","id":"197342835","geometry":{"type":"LineString","coordinates":[[16.3699392,48.1980576],[16.3699522,48.19805740000001],[16.3700569,48.198059]]},"properties":{"access":"private","covered":"yes","highway":"corridor","layer":"-1","name":"Hoftrakt"}},{"type":"Feature","id":"318162291","geometry":{"type":"LineString","coordinates":[[16.3703099,48.20372040000001],[16.3701497,48.20366630000001],[16.3700887,48.2035985],[16.3696084,48.202702200000004],[16.3694754,48.20273280000001]]},"properties":{"foot":"yes","highway":"footway","name":"Herbert-von-Karajan-Platz","wheelchair":"yes"}},{"type":"Feature","id":"8043955","geometry":{"type":"LineString","coordinates":[[16.369666,48.20234640000001],[16.3696992,48.202392599999996],[16.3697574,48.202469399999984],[16.3697736,48.2024926],[16.3698126,48.20256280000001]]},"properties":{"highway":"residential","lanes":"2","lit":"yes","maxspeed":"30","name":"Kärntner Straße","oneway":"yes"}},{"type":"Feature","id":"25702400","geometry":{"type":"LineString","coordinates":[[16.369666,48.20234640000001],[16.3695625,48.202460799999955],[16.3695394,48.20249269999999],[16.3695037,48.20254969999999],[16.3694933,48.202568799999995]]},"properties":{"highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"481975921","geometry":{"type":"LineString","coordinates":[[16.3694933,48.202568799999995],[16.3693529,48.2026046]]},"properties":{"access":"permissive","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"29065850","geometry":{"type":"LineString","coordinates":[[16.369666,48.20234640000001],[16.3693123,48.20243420000003]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"482008863","geometry":{"type":"LineString","coordinates":[[16.3693123,48.20243420000003],[16.3692806,48.20244120000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"127061651","geometry":{"type":"LineString","coordinates":[[16.3693529,48.2026046],[16.3692246,48.20261190000002]]},"properties":{"access":"permissive","bicycle":"yes","cycleway":"opposite","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"105771181","geometry":{"type":"LineString","coordinates":[[16.3694969,48.20215489999998],[16.3695531,48.202202099999965],[16.3695952,48.2022547],[16.3696225,48.202290300000016],[16.369666,48.20234640000001]]},"properties":{"highway":"residential","lanes":"2","lit":"yes","maxspeed":"50","name":"Kärntner Straße","oneway":"yes","source":"geoimage.at;Bing"}},{"type":"Feature","id":"474344728","geometry":{"type":"LineString","coordinates":[[16.3740729,48.2013499],[16.374,48.20129180000001],[16.3736534,48.20120780000002],[16.3735694,48.20122309999999],[16.3727699,48.20140330000001],[16.3719778,48.201575100000014],[16.3714668,48.20168459999999],[16.3714133,48.20169609999999],[16.3713813,48.2017036],[16.3713148,48.201717700000046],[16.3712949,48.201722099999955],[16.371247,48.20173270000001],[16.3708576,48.201818900000035],[16.3706931,48.201855300000005],[16.3699159,48.2020263],[16.369753,48.20206209999998],[16.3696966,48.20207449999998]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Kärntner Ring"}},{"type":"Feature","id":"10128089","geometry":{"type":"LineString","coordinates":[[16.371159,48.201231300000046],[16.3710624,48.20124089999999],[16.3695979,48.201569199999994],[16.3695206,48.201592000000005],[16.3694678,48.20163869999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bösendorferstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5930463","geometry":{"type":"LineString","coordinates":[[16.3694678,48.20163869999999],[16.3694318,48.2016687],[16.369429,48.20172830000001],[16.3695649,48.202011699999986],[16.3695695,48.202020300000015],[16.3696262,48.202064699999994],[16.3696742,48.20208769999999],[16.3697252,48.20209909999997],[16.3697659,48.20209980000001],[16.3697707,48.20209990000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Straße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"31246975","geometry":{"type":"LineString","coordinates":[[16.3714535,48.20193040000001],[16.3713838,48.20194570000004],[16.3698748,48.20229439999997],[16.3698051,48.202311500000064],[16.369772,48.2023198],[16.369666,48.20234640000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Kärntner Ring","oneway":"yes","sidewalk":"no","turn:lanes":"through|through|through;right","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"231156079","geometry":{"type":"LineString","coordinates":[[16.370331,48.2004096],[16.3701677,48.20045089999999],[16.3701086,48.20046830000001],[16.3698639,48.200530000000015],[16.3696768,48.200575399999934],[16.3695035,48.2006131]]},"properties":{"access":"no","highway":"service","maxspeed":"50","name":"Wagnerschleife","oneway":"yes","psv":"yes"}},{"type":"Feature","id":"26570432","geometry":{"type":"LineString","coordinates":[[16.3729221,48.19994629999999],[16.3720503,48.200154],[16.3706279,48.20052100000001],[16.3702584,48.200628800000004],[16.369576,48.20083790000001]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Karlsplatz","name:be":"Карлава плошча","name:de":"Karlsplatz","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"46738174","geometry":{"type":"LineString","coordinates":[[16.3696581,48.20034460000002],[16.3698371,48.2003775],[16.3698858,48.2003847],[16.3699362,48.200389900000005],[16.3699911,48.20039400000002],[16.3700307,48.2003962],[16.3700594,48.2003971],[16.3700848,48.20039650000001],[16.3701303,48.20039689999996],[16.3701882,48.2003953],[16.3702513,48.20039120000001],[16.3703187,48.20038310000001]]},"properties":{"access":"no","highway":"service","maxspeed":"50","name":"Wagnerschleife","oneway":"yes","psv":"yes"}},{"type":"Feature","id":"107099289","geometry":{"type":"LineString","coordinates":[[16.369217,48.2002961],[16.369319,48.2002799],[16.3693733,48.20027250000001],[16.3694176,48.20026810000002],[16.3694594,48.200266699999986],[16.3695152,48.200267199999985],[16.3695572,48.200271499999985],[16.3696162,48.20028190000002],[16.3699655,48.200345200000015],[16.3700815,48.20036480000002],[16.3701143,48.20037039999997],[16.3702105,48.20037690000001],[16.3702969,48.2003751],[16.3703875,48.20036650000003]]},"properties":{"access":"no","highway":"service","name":"Wagnerschleife","oneway":"yes","psv":"yes"}},{"type":"Feature","id":"30971418","geometry":{"type":"LineString","coordinates":[[16.369217,48.2002961],[16.369334,48.20029560000003],[16.3694314,48.20030460000001],[16.3696581,48.20034460000002]]},"properties":{"access":"no","highway":"service","maxspeed":"50","name":"Wagnerschleife","oneway":"yes","psv":"yes"}},{"type":"Feature","id":"481975922","geometry":{"type":"LineString","coordinates":[[16.3692246,48.20261190000002],[16.3690743,48.202601500000014]]},"properties":{"access":"permissive","bicycle":"yes","cycleway":"opposite","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"481973534","geometry":{"type":"LineString","coordinates":[[16.3692806,48.20244120000001],[16.3689673,48.2025098]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"27355895","geometry":{"type":"LineString","coordinates":[[16.3693499,48.20215000000002],[16.3693366,48.20218599999998],[16.3692883,48.20222100000001],[16.3690974,48.202283800000004],[16.369005,48.202327],[16.3688316,48.20236489999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"481973532","geometry":{"type":"LineString","coordinates":[[16.3689673,48.2025098],[16.3687205,48.202563999999995]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"482008880","geometry":{"type":"LineString","coordinates":[[16.3688316,48.20236489999999],[16.3685649,48.2024232]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"201856398","geometry":{"type":"LineString","coordinates":[[16.368948,48.201014999999984],[16.3689822,48.2010798],[16.3690907,48.201301899999976],[16.3694969,48.20215489999998]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Kärntner Straße","oneway":"yes","source":"yahoo","turn:lanes":"left|left;through|through"}},{"type":"Feature","id":"201856399","geometry":{"type":"LineString","coordinates":[[16.368948,48.201014999999984],[16.3689061,48.201099400000004],[16.3689155,48.201199599999995],[16.3689922,48.20137249999999],[16.3690235,48.20145260000001],[16.3690737,48.20155510000001],[16.3691309,48.201670500000006],[16.3691631,48.201740900000004],[16.3693173,48.20204820000001],[16.369349,48.20211029999999],[16.3693499,48.20215000000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Straße","oneway":"yes"}},{"type":"Feature","id":"201856397","geometry":{"type":"LineString","coordinates":[[16.3689061,48.200927699999994],[16.368948,48.201014999999984]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Kärntner Straße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"411400848","geometry":{"type":"LineString","coordinates":[[16.3686898,48.201070200000004],[16.3687497,48.20104850000001]]},"properties":{"highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatz Westpassage","tunnel":"yes","wheelchair":"yes"}},{"type":"Feature","id":"411400849","geometry":{"type":"LineString","coordinates":[[16.3685778,48.201082499999984],[16.3686898,48.201070200000004]]},"properties":{"highway":"footway","incline":"up","indoor":"yes","level":"-1","name":"Karlsplatz Westpassage","tunnel":"yes","wheelchair":"yes"}},{"type":"Feature","id":"230626595","geometry":{"type":"LineString","coordinates":[[16.369576,48.20083790000001],[16.3692017,48.2009559],[16.369123,48.20097680000001],[16.3690633,48.20099020000001]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Karlsplatz","name:be":"Карлава плошча","oneway":"yes","ref":"B1","turn:lanes":"through|through|through|right"}},{"type":"Feature","id":"46738175","geometry":{"type":"LineString","coordinates":[[16.3695035,48.2006131],[16.3693666,48.200641700000006],[16.3693148,48.20064930000001],[16.3692883,48.20065199999999],[16.3692599,48.20065460000001],[16.3692158,48.2006557],[16.3691749,48.2006543],[16.3691427,48.200651300000004],[16.3691146,48.20064550000001],[16.3690837,48.2006375],[16.369061,48.20062839999997],[16.3690358,48.2006159],[16.3690129,48.20060079999999],[16.3689912,48.20058169999999],[16.3689731,48.200565299999994],[16.3689608,48.200551399999995],[16.368953,48.2005379],[16.368947,48.200524100000024],[16.3689415,48.20049929999999],[16.3689416,48.200468599999994],[16.3689449,48.20044699999997],[16.3689566,48.20041929999999],[16.3689693,48.20040069999996],[16.3689968,48.20037009999999],[16.3690304,48.200343799999985],[16.369052,48.20033280000001],[16.3690821,48.200321],[16.3691204,48.200310100000024],[16.369217,48.2002961]]},"properties":{"access":"no","highway":"service","maxspeed":"50","name":"Wagnerschleife","oneway":"yes","psv":"yes"}},{"type":"Feature","id":"127061658","geometry":{"type":"LineString","coordinates":[[16.3688221,48.20075840000001],[16.3689061,48.200927699999994]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Kärntner Straße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"24931732","geometry":{"type":"LineString","coordinates":[[16.3689156,48.20024860000001],[16.368954,48.20046930000001],[16.3689898,48.20055310000001],[16.3689414,48.20069240000001],[16.3689121,48.20082959999999],[16.3690112,48.2010171],[16.3690825,48.20114699999999],[16.3691034,48.201184100000006],[16.3693142,48.2015667],[16.3695153,48.20195050000001],[16.3694722,48.20203420000004],[16.3695359,48.2022312]]},"properties":{"bicycle":"dismount","highway":"footway","indoor":"yes","level":"-1","name":"Kärntnertorpassage","tunnel":"yes","wheelchair":"yes"}},{"type":"Feature","id":"4583716","geometry":{"type":"LineString","coordinates":[[16.3688221,48.20075840000001],[16.3689545,48.20076069999999],[16.3690548,48.20075879999999],[16.3693454,48.2007289],[16.3696785,48.200661800000006],[16.3701744,48.20053390000001],[16.3703948,48.200466500000005],[16.3719986,48.20005889999996],[16.3727425,48.19987949999998],[16.3728622,48.19985060000002],[16.3732469,48.199764200000004],[16.3733095,48.19975070000004]]},"properties":{"foot":"no","highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Karlsplatz","name:be":"Карлава плошча","name:de":"Karlsplatz","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"160391134","geometry":{"type":"LineString","coordinates":[[16.3686689,48.1993789],[16.3686918,48.199421],[16.3688029,48.19963440000001],[16.3689417,48.19990960000001],[16.3689363,48.20006889999999],[16.3689287,48.2001587],[16.3689256,48.20019599999995],[16.3689156,48.20024860000001]]},"properties":{"bicycle":"yes","foot":"yes","highway":"service","incline":"down","motor_vehicle":"permissive","name":"Resselpark"}},{"type":"Feature","id":"142465072","geometry":{"type":"LineString","coordinates":[[16.3685614,48.20020929999998],[16.368718,48.20053659999999],[16.3687334,48.20057],[16.3687544,48.200614599999994],[16.3688221,48.20075840000001]]},"properties":{"highway":"secondary","lanes":"5","lit":"yes","maxspeed":"50","name":"Wiedner Hauptstraße","oneway":"yes","source":"geoimage.at","turn:lanes":"left|through|through|through|right","width":"14"}},{"type":"Feature","id":"481973533","geometry":{"type":"LineString","coordinates":[[16.3682832,48.202659900000015],[16.3682319,48.2026711],[16.3681071,48.2026985],[16.3679862,48.202721499999996]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","surface":"asphalt","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"201856400","geometry":{"type":"LineString","coordinates":[[16.3680168,48.202782799999994],[16.3679862,48.202721499999996]]},"properties":{"highway":"residential","lanes":"2","lit":"yes","maxspeed":"30","name":"Operngasse","oneway":"yes","sidewalk":"no","turn:lanes":"through|through;right"}},{"type":"Feature","id":"481973539","geometry":{"type":"LineString","coordinates":[[16.3687205,48.202563999999995],[16.3684103,48.20263200000002]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"351198427","geometry":{"type":"LineString","coordinates":[[16.3690743,48.202601500000014],[16.3685571,48.202713500000016],[16.3684841,48.20276000000001],[16.3684322,48.20279310000004]]},"properties":{"access":"permissive","bicycle":"yes","cycleway":"opposite_lane","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"481973535","geometry":{"type":"LineString","coordinates":[[16.3684103,48.20263200000002],[16.3682832,48.202659900000015]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"5095758","geometry":{"type":"LineString","coordinates":[[16.3679862,48.202721499999996],[16.3679544,48.2026645],[16.3679201,48.202591299999995],[16.3679113,48.20257090000004],[16.3678942,48.202522499999986]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","sidewalk":"no","surface":"asphalt"}},{"type":"Feature","id":"31275219","geometry":{"type":"LineString","coordinates":[[16.3678942,48.202522499999986],[16.3678693,48.20244300000002]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"231265407","geometry":{"type":"LineString","coordinates":[[16.3677793,48.20226409999998],[16.367798,48.20217630000002],[16.367708,48.2019799],[16.3676333,48.201885199999964],[16.3675714,48.201853]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","sidewalk":"no","surface":"asphalt","turn:lanes":"slight_left"}},{"type":"Feature","id":"5930451","geometry":{"type":"LineString","coordinates":[[16.367708,48.2019799],[16.367745,48.20197239999996],[16.3688239,48.201736400000016],[16.3690381,48.20169039999996],[16.3691309,48.201670500000006]]},"properties":{"bus":"no","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Elisabethstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"231265406","geometry":{"type":"LineString","coordinates":[[16.3677793,48.20226409999998],[16.3676429,48.201993200000004],[16.3675714,48.201853]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","sidewalk":"right","surface":"asphalt","turn:lanes":"slight_left|slight_right|slight_right"}},{"type":"Feature","id":"147468282","geometry":{"type":"LineString","coordinates":[[16.3678693,48.20244300000002],[16.3677793,48.20226409999998]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","sidewalk":"both","turn:lanes":"slight_left|slight_left|slight_right|slight_right"}},{"type":"Feature","id":"88061193","geometry":{"type":"LineString","coordinates":[[16.3685649,48.2024232],[16.3684205,48.2024557],[16.3683207,48.202478100000036],[16.3681946,48.2024854],[16.368072,48.2024902],[16.3680024,48.20248699999999],[16.3679357,48.20247599999999],[16.3678693,48.20244300000002]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"25678124","geometry":{"type":"LineString","coordinates":[[16.3664389,48.202236400000004],[16.3662854,48.20192270000001],[16.3661212,48.20158699999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schillerplatz","oneway":"yes","source":"wien.at"}},{"type":"Feature","id":"5930461","geometry":{"type":"LineString","coordinates":[[16.3676429,48.201993200000004],[16.3667081,48.202200000000005],[16.3664389,48.202236400000004]]},"properties":{"bus":"no","highway":"residential","lanes":"1","maxspeed":"30","name":"Elisabethstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"128859765","geometry":{"type":"LineString","coordinates":[[16.3660612,48.202953699999995],[16.3661322,48.20293579999998],[16.3661873,48.20292180000001],[16.3672765,48.20267870000001],[16.367647,48.20257900000004],[16.3676957,48.20256760000001],[16.3677707,48.202550900000034],[16.3678942,48.202522499999986]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"231265405","geometry":{"type":"LineString","coordinates":[[16.3675714,48.201853],[16.3673534,48.20142520000002],[16.3673358,48.201390599999996],[16.3673061,48.20133229999999]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","surface":"asphalt","turn:lanes":"slight_left|slight_left|slight_right|slight_right"}},{"type":"Feature","id":"172464282","geometry":{"type":"LineString","coordinates":[[16.3661212,48.20158699999999],[16.3671847,48.201352799999995],[16.3673061,48.20133229999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Nibelungengasse","oneway":"yes","source":"wien.at"}},{"type":"Feature","id":"26570420","geometry":{"type":"LineString","coordinates":[[16.368948,48.201014999999984],[16.3688156,48.20104309999999],[16.3685567,48.20108999999999],[16.3681489,48.20111589999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"5891878","geometry":{"type":"LineString","coordinates":[[16.3677927,48.200609900000046],[16.3680572,48.20073830000001],[16.3683337,48.20080730000001],[16.3686443,48.200854299999975],[16.3687285,48.20086710000001],[16.3689061,48.200927699999994]]},"properties":{"foot":"no","highway":"secondary_link","lanes":"3","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","width":"9"}},{"type":"Feature","id":"31275221","geometry":{"type":"LineString","coordinates":[[16.3677927,48.200609900000046],[16.3679897,48.20063959999999],[16.3681659,48.20067530000003],[16.3684316,48.200718800000004],[16.368613,48.2007452],[16.3688221,48.20075840000001]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1","width":"9"}},{"type":"Feature","id":"31275223","geometry":{"type":"LineString","coordinates":[[16.3673061,48.20133229999999],[16.3672903,48.20121790000002],[16.3672529,48.201132],[16.3671969,48.20105419999996],[16.367101,48.20094230000001]]},"properties":{"destination":"Graz; Eisenstadt; Hauptbahnhof; Oberlaa Therme Wien","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"244103706","geometry":{"type":"LineString","coordinates":[[16.3681489,48.20111589999999],[16.3678728,48.20110679999999],[16.3675782,48.2010717],[16.3674954,48.201059799999996],[16.3674098,48.20104040000001],[16.3673502,48.201024700000005],[16.367101,48.20094230000001]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","ref":"B1","surface":"asphalt","turn:lanes":"left|through|through|through"}},{"type":"Feature","id":"411396505","geometry":{"type":"LineString","coordinates":[[16.3669798,48.20096810000001],[16.3667375,48.2009458]]},"properties":{"highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatz Westpassage","tunnel":"yes"}},{"type":"Feature","id":"31275225","geometry":{"type":"LineString","coordinates":[[16.3667049,48.200709399999994],[16.3664968,48.2005772]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"31275224","geometry":{"type":"LineString","coordinates":[[16.3669285,48.20086379999998],[16.3667049,48.200709399999994]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"244103704","geometry":{"type":"LineString","coordinates":[[16.367101,48.20094230000001],[16.3669285,48.20086379999998]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","ref":"B1","surface":"asphalt","turn:lanes":"through|through|through"}},{"type":"Feature","id":"231265404","geometry":{"type":"LineString","coordinates":[[16.3673061,48.20133229999999],[16.3672241,48.2012757],[16.3670743,48.201066999999995],[16.3669285,48.20086379999998]]},"properties":{"destination":"Linz; Schönbrunn","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"478992263","geometry":{"type":"LineString","coordinates":[[16.3671731,48.20028980000001],[16.367356,48.200389400000006],[16.3676639,48.20054490000001],[16.3677927,48.200609900000046]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1","turn:lanes":"slight_left|slight_left;through|through|through","width":"11"}},{"type":"Feature","id":"411396504","geometry":{"type":"LineString","coordinates":[[16.366355,48.2005834],[16.3664577,48.200630700000005]]},"properties":{"highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatz Westpassage","tunnel":"yes"}},{"type":"Feature","id":"40900937","geometry":{"type":"LineString","coordinates":[[16.3662511,48.2006777],[16.3662939,48.200655299999994],[16.3664577,48.200630700000005],[16.3669798,48.20096810000001],[16.3673802,48.201038600000004],[16.3676946,48.201078199999984],[16.3679407,48.20109710000003],[16.3681814,48.201100199999985],[16.3685294,48.20107350000001],[16.3685778,48.201082499999984]]},"properties":{"bicycle":"dismount","highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatz Westpassage","tunnel":"yes","wheelchair":"yes"}},{"type":"Feature","id":"127061653","geometry":{"type":"LineString","coordinates":[[16.3669,48.200144499999965],[16.3669923,48.20019529999996],[16.3671288,48.20026569999999],[16.3671731,48.20028980000001]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1","surface":"asphalt","turn:lanes":"slight_left|slight_left;through|through|through","width":"11"}},{"type":"Feature","id":"244103699","geometry":{"type":"LineString","coordinates":[[16.367101,48.20094230000001],[16.3669818,48.2008065],[16.3669328,48.200739399999975],[16.3669006,48.20067019999999],[16.3668831,48.200502400000005],[16.3668931,48.2002914],[16.3668952,48.2002459],[16.3669,48.200144499999965]]},"properties":{"busway:right":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"24931693","geometry":{"type":"LineString","coordinates":[[16.3668767,48.20002320000003],[16.3669558,48.1999519],[16.367313,48.19982429999999],[16.3678597,48.19963419999996],[16.3679897,48.19959079999998],[16.3680984,48.19956119999998],[16.3682126,48.199530100000004],[16.3682301,48.199525300000005]]},"properties":{"bicycle":"yes","cycleway":"opposite","foot":"yes","highway":"living_street","name":"Treitlstraße","note":"Radfahren gegen die Einbahn ist in Wohnstraßen auch ohne explizite Beschilderung gesetzlich erlaubt.","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"197342819","geometry":{"type":"LineString","coordinates":[[16.3674107,48.199281600000006],[16.367555,48.199253699999986]]},"properties":{"covered":"yes","highway":"footway","name":"Resselgasse"}},{"type":"Feature","id":"189224207","geometry":{"type":"LineString","coordinates":[[16.3665447,48.19994080000001],[16.3666457,48.19994],[16.366679,48.19993969999999],[16.3667311,48.199925199999996],[16.3667733,48.199902099999974],[16.3667955,48.1998811],[16.3668111,48.19984679999999]]},"properties":{"highway":"secondary_link","maxspeed":"50","name":"Operngasse","note":"Abbiegen in die Treitlstraße ist von hier aus laut Verkehrsbeschilderung nicht erlaubt","oneway":"yes"}},{"type":"Feature","id":"432792248","geometry":{"type":"LineString","coordinates":[[16.3665447,48.19994080000001],[16.3667236,48.20004580000003]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"155291159","geometry":{"type":"LineString","coordinates":[[16.3667236,48.20004580000003],[16.3669,48.200144499999965]]},"properties":{"highway":"primary","lanes":"4","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"177093988","geometry":{"type":"LineString","coordinates":[[16.3661532,48.1996226],[16.3662552,48.19954129999999]]},"properties":{"highway":"footway","myth":"yes","name":"Bärenmühldurchgang","name:myth":"Die Bärenmühle an der Wien","tunnel":"building_passage","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/4_bezirk/baerenmuehle.html"}},{"type":"Feature","id":"31275222","geometry":{"type":"LineString","coordinates":[[16.3662243,48.1997719],[16.3665447,48.19994080000001]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"245964161","geometry":{"type":"LineString","coordinates":[[16.3667572,48.19940070000001],[16.3668659,48.199383299999994],[16.3669808,48.19936230000002],[16.3674107,48.199281600000006]]},"properties":{"bicycle":"yes","highway":"footway","motor_vehicle":"private","name":"Resselgasse"}},{"type":"Feature","id":"177093989","geometry":{"type":"LineString","coordinates":[[16.3663741,48.199487799999986],[16.3665278,48.19945999999999]]},"properties":{"covered":"yes","highway":"footway","myth":"yes","name":"Bärenmühldurchgang","name:myth":"Die Bärenmühle an der Wien","note":"Test auf covered, passage","tunnel":"building_passage","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/4_bezirk/baerenmuehle.html"}},{"type":"Feature","id":"177093990","geometry":{"type":"LineString","coordinates":[[16.3662552,48.19954129999999],[16.3663009,48.199511099999995],[16.3663741,48.199487799999986]]},"properties":{"highway":"footway","myth":"yes","name":"Bärenmühldurchgang","name:myth":"Die Bärenmühle an der Wien","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/4_bezirk/baerenmuehle.html"}},{"type":"Feature","id":"5891895","geometry":{"type":"LineString","coordinates":[[16.3680272,48.199177899999995],[16.3680869,48.199159699999996],[16.3688159,48.19893690000001],[16.3688807,48.198916199999985]]},"properties":{"bicycle":"yes","highway":"living_street","name":"Resselgasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"139885901","geometry":{"type":"LineString","coordinates":[[16.3688159,48.19893690000001],[16.3688699,48.199001899999985],[16.3691052,48.199302700000004]]},"properties":{"bicycle":"yes","highway":"service","name":"Resselgasse"}},{"type":"Feature","id":"42158845","geometry":{"type":"LineString","coordinates":[[16.3707623,48.19883770000001],[16.3704366,48.19892870000001],[16.3699702,48.199059000000005],[16.3696616,48.19914640000002],[16.3695901,48.19916660000001],[16.3692145,48.19927200000001],[16.3691052,48.199302700000004],[16.3689699,48.19934140000001],[16.3686918,48.199421],[16.3686206,48.19944140000001],[16.3685115,48.1994698],[16.3683804,48.19950639999999],[16.3683254,48.19951330000001],[16.3682573,48.19952190000001],[16.3682301,48.199525300000005]]},"properties":{"bicycle":"yes","foot":"yes","highway":"service","motor_vehicle":"permissive","name":"Karlsplatz","name:be":"Карлава плошча","surface":"paved"}},{"type":"Feature","id":"485597093","geometry":{"type":"LineString","coordinates":[[16.3695691,48.19669760000002],[16.3697116,48.196893200000005],[16.3699249,48.19719180000001],[16.3702945,48.1977407],[16.3703321,48.1977914]]},"properties":{"cycleway":"opposite","cycleway:left":"shared_lane","highway":"residential","maxspeed":"30","name":"Karlsgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5891892","geometry":{"type":"LineString","coordinates":[[16.3694537,48.196491699999996],[16.3694665,48.19655019999999],[16.3695395,48.19665509999999],[16.3695691,48.19669760000002]]},"properties":{"cycleway":"opposite","cycleway:left":"shared_lane","highway":"residential","maxspeed":"30","name":"Karlsgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"paving_stones","traffic_calming":"table"}},{"type":"Feature","id":"5891876","geometry":{"type":"LineString","coordinates":[[16.3695013,48.1979188],[16.369343,48.197292300000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Apfelgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"5095777","geometry":{"type":"LineString","coordinates":[[16.3703321,48.1977914],[16.3702332,48.19780509999998],[16.369965,48.19784760000002],[16.3695013,48.1979188],[16.3692868,48.19795160000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paniglgasse","oneway":"yes","sidewalk:right:incline":"-2%","sidewalk:right:sloped_curb":"2","sidewalk:right:smoothness":"good","sidewalk:right:surface":"asphalt","sidewalk:right:width":"2","source:maxspeed":"AT:zone:30","surface":"paved"}},{"type":"Feature","id":"12340684","geometry":{"type":"LineString","coordinates":[[16.3676886,48.19822239999999],[16.3677065,48.19829659999996],[16.3677408,48.19843190000003],[16.3677566,48.198503200000005],[16.3678439,48.19875680000001],[16.3679757,48.19906950000001],[16.367991,48.199107],[16.3680272,48.199177899999995],[16.3681494,48.1994115],[16.3682023,48.199488099999996],[16.3682125,48.19950170000001],[16.3682301,48.199525300000005],[16.3682401,48.199545900000004],[16.3685614,48.20020929999998]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Wiedner Hauptstraße","oneway":"yes","surface":"asphalt","width":"8"}},{"type":"Feature","id":"5095771","geometry":{"type":"LineString","coordinates":[[16.3676886,48.19822239999999],[16.367601,48.19823980000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schaurhofergasse","oneway":"yes","source:maxspeed":"sign"}},{"type":"Feature","id":"357470314","geometry":{"type":"LineString","coordinates":[[16.367601,48.19823980000004],[16.3675621,48.19824829999999],[16.3675219,48.198255500000016],[16.3663574,48.19844220000002],[16.3662548,48.1984726]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schaurhofergasse","oneway":"yes","source:maxspeed":"sign","surface":"asphalt"}},{"type":"Feature","id":"261098670","geometry":{"type":"LineString","coordinates":[[16.3688813,48.196250599999985],[16.3689028,48.196268799999984],[16.3689675,48.196309499999984],[16.3694537,48.196491699999996],[16.369621,48.1965472],[16.3698542,48.196624499999984],[16.3700242,48.19668819999998],[16.3717321,48.19729649999999],[16.3718085,48.197323600000004]]},"properties":{"bicycle":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Gußhausstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"173484212","geometry":{"type":"LineString","coordinates":[[16.3692868,48.19795160000001],[16.3688057,48.198029700000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paniglgasse","oneway":"yes","sidewalk:right:incline":"3%","sidewalk:right:sloped_curb":"0","sidewalk:right:smoothness":"good","sidewalk:right:surface":"asphalt","sidewalk:right:width":"2","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"28723863","geometry":{"type":"LineString","coordinates":[[16.3671486,48.1977493],[16.3672638,48.19773789999999],[16.3673778,48.1976861],[16.3673921,48.19766799999999],[16.3674421,48.197604600000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rilkeplatz","oneway":"yes","sidewalk":"right","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"173484213","geometry":{"type":"LineString","coordinates":[[16.3684121,48.19809509999996],[16.3678035,48.1981974],[16.3676886,48.19822239999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paniglgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"173484210","geometry":{"type":"LineString","coordinates":[[16.3688057,48.198029700000006],[16.3684121,48.19809509999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paniglgasse","oneway":"yes","sidewalk:right:incline":"0%","sidewalk:right:sloped_curb":"0","sidewalk:right:smoothness":"good","sidewalk:right:surface":"asphalt","sidewalk:right:width":"2","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5891905","geometry":{"type":"LineString","coordinates":[[16.367573,48.19758379999999],[16.367652,48.197570799999994],[16.369343,48.197292300000015],[16.3699249,48.19719180000001]]},"properties":{"cycleway":"opposite","cycleway:left":"shared_lane","highway":"residential","maxspeed":"30","name":"Frankenberggasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"23395160","geometry":{"type":"LineString","coordinates":[[16.367573,48.19758379999999],[16.3676739,48.19815439999999],[16.3676886,48.19822239999999]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Rilkeplatz","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"28690916","geometry":{"type":"LineString","coordinates":[[16.3674421,48.197604600000005],[16.3674264,48.19738130000002],[16.3673996,48.1971556],[16.3673671,48.19698790000001],[16.3673038,48.19676580000001],[16.3672486,48.196599599999985],[16.3671974,48.19646990000001],[16.3671829,48.196433299999995],[16.3671592,48.1963796]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"50","name":"Wiedner Hauptstraße","oneway":"yes","sidewalk":"right","source":"yahoo"}},{"type":"Feature","id":"4051934","geometry":{"type":"LineString","coordinates":[[16.3677431,48.19633479999999],[16.3676227,48.19637929999999],[16.3675026,48.19648540000003],[16.3674727,48.196544200000005],[16.3674619,48.196651299999985],[16.3674852,48.196955900000006],[16.367573,48.19758379999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Wiedner Hauptstraße","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"105771178","geometry":{"type":"LineString","coordinates":[[16.3679862,48.202721499999996],[16.3678732,48.20274359999999],[16.367634,48.20279049999999],[16.3644498,48.20350339999999],[16.3643365,48.203536499999984]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","surface":"asphalt","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"474349128","geometry":{"type":"LineString","coordinates":[[16.3676702,48.2025342],[16.366948,48.20270629999999],[16.3660386,48.20290919999999],[16.3660097,48.20291689999999],[16.3658029,48.20295809999999],[16.3657806,48.20296239999999],[16.3641546,48.20333959999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Opernring"}},{"type":"Feature","id":"146683466","geometry":{"type":"LineString","coordinates":[[16.362093,48.202972800000026],[16.3615584,48.20266010000003],[16.3615382,48.20264739999999]]},"properties":{"bicycle":"yes","highway":"unclassified","lit":"yes","maxspeed":"50","name":"Babenbergerstraße"}},{"type":"Feature","id":"146683461","geometry":{"type":"LineString","coordinates":[[16.3615382,48.20264739999999],[16.361474,48.202604699999995]]},"properties":{"admin_level":"9","bicycle":"yes","boundary":"administrative","highway":"unclassified","lit":"yes","maxspeed":"50","name":"Babenbergerstraße"}},{"type":"Feature","id":"121911708","geometry":{"type":"LineString","coordinates":[[16.3658042,48.20300980000002],[16.3657806,48.20296239999999],[16.3655218,48.20244249999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Robert-Stolz-Platz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"27220098","geometry":{"type":"LineString","coordinates":[[16.3637839,48.20285469999999],[16.3647511,48.20264309999999],[16.3648482,48.20259490000001],[16.3653603,48.2024773],[16.3655218,48.20244249999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Elisabethstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"128859761","geometry":{"type":"LineString","coordinates":[[16.3655218,48.20244249999996],[16.3656484,48.20241659999999],[16.3657736,48.202388600000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Elisabethstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"27220147","geometry":{"type":"LineString","coordinates":[[16.3657736,48.202388600000006],[16.3660386,48.20290919999999],[16.3660612,48.202953699999995]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Robert-Stolz-Platz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"149641180","geometry":{"type":"LineString","coordinates":[[16.3641651,48.203377399999994],[16.3641546,48.20333959999999],[16.3641159,48.203271900000004],[16.3637839,48.20285469999999],[16.3633834,48.20238419999998],[16.3633378,48.202323199999995]]},"properties":{"highway":"unclassified","lit":"yes","maxspeed":"30","name":"Eschenbachgasse","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5930422","geometry":{"type":"LineString","coordinates":[[16.3621953,48.20290539999999],[16.3624759,48.202761699999996],[16.3632358,48.20237230000001],[16.3633378,48.202323199999995]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Nibelungengasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"31275226","geometry":{"type":"LineString","coordinates":[[16.3613644,48.2025208],[16.361474,48.202604699999995]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"unclassified","is_in":"Austria, Europe,Vienna,Wien","lcn":"yes","lit":"yes","name":"Mariahilfer Straße"}},{"type":"Feature","id":"20410411","geometry":{"type":"LineString","coordinates":[[16.3597777,48.20257620000001],[16.3598946,48.20246359999999]]},"properties":{"highway":"footway","name":"Typopassage","tunnel":"building_passage","website":"www.typopassage.at"}},{"type":"Feature","id":"5930430","geometry":{"type":"LineString","coordinates":[[16.3648482,48.20259490000001],[16.3646978,48.202290499999975],[16.3645286,48.201948000000016]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schillerplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"128859760","geometry":{"type":"LineString","coordinates":[[16.3657736,48.202388600000006],[16.3664389,48.202236400000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Elisabethstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"442721613","geometry":{"type":"LineString","coordinates":[[16.3644902,48.200895799999984],[16.3646524,48.20080779999998],[16.3647092,48.20076929999999]]},"properties":{"cycleway":"track","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes","turn:lanes":"through|through|through;right|right"}},{"type":"Feature","id":"172464281","geometry":{"type":"LineString","coordinates":[[16.3657443,48.20084700000001],[16.3658556,48.201076400000005],[16.3659452,48.20124870000001],[16.3661212,48.20158699999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Makartgasse","oneway":"yes","source":"wien.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"121099999","geometry":{"type":"LineString","coordinates":[[16.3645286,48.201948000000016],[16.3641536,48.20121019999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gauermanngasse","oneway":"yes","postal_code":"1010","source":"yahoo"}},{"type":"Feature","id":"62012305","geometry":{"type":"LineString","coordinates":[[16.3661212,48.20158699999999],[16.3653132,48.20176630000003],[16.3645286,48.201948000000016]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schillerplatz","oneway":"yes","source":"wien.at"}},{"type":"Feature","id":"254629114","geometry":{"type":"LineString","coordinates":[[16.3650216,48.20039400000002],[16.3649242,48.20033810000001]]},"properties":{"highway":"footway","name":"Papagenogasse"}},{"type":"Feature","id":"24030225","geometry":{"type":"LineString","coordinates":[[16.3667049,48.200709399999994],[16.3665816,48.200696799999974],[16.3664883,48.20069669999998],[16.3664435,48.200702500000006],[16.3657443,48.20084700000001],[16.3647695,48.20104949999998],[16.3643977,48.201137500000016],[16.3641536,48.20121019999999],[16.363903,48.20129220000001],[16.3636684,48.201402400000006]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes"}},{"type":"Feature","id":"36560413","geometry":{"type":"LineString","coordinates":[[16.3628916,48.20180730000001],[16.3622424,48.20216349999998]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"25677590","geometry":{"type":"LineString","coordinates":[[16.3645286,48.201948000000016],[16.3634388,48.20227449999999],[16.3633378,48.202323199999995]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Nibelungengasse","oneway":"yes","source":"lane"}},{"type":"Feature","id":"149641179","geometry":{"type":"LineString","coordinates":[[16.3633378,48.202323199999995],[16.3632915,48.20226439999999],[16.3628916,48.20180730000001]]},"properties":{"highway":"unclassified","lit":"yes","maxspeed":"30","name":"Eschenbachgasse","sidewalk":"both","source":"geoimage.at (high res)","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"244103709","geometry":{"type":"LineString","coordinates":[[16.3622424,48.20216349999998],[16.3615608,48.2025433],[16.3615387,48.202557600000006],[16.361474,48.202604699999995]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes"}},{"type":"Feature","id":"152022281","geometry":{"type":"LineString","coordinates":[[16.3617412,48.20110239999997],[16.361899,48.20116920000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Johanna-Dohnal-Platz","oneway":"yes","postal_code":"1060","ref:wien":"00391","source":"geoimage.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"244103696","geometry":{"type":"LineString","coordinates":[[16.3636684,48.201402400000006],[16.3628916,48.20180730000001]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes"}},{"type":"Feature","id":"107489405","geometry":{"type":"LineString","coordinates":[[16.3628358,48.201753199999985],[16.3632841,48.201520200000004],[16.3635428,48.2013858],[16.364009,48.201144699999986],[16.3644902,48.200895799999984]]},"properties":{"bicycle":"yes","cycleway":"lane","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes"}},{"type":"Feature","id":"209811999","geometry":{"type":"LineString","coordinates":[[16.361899,48.20116920000001],[16.3620533,48.20110790000001],[16.3621347,48.20107300000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Johanna-Dohnal-Platz","oneway":"no","postal_code":"1060","ref:wien":"00391","source":"geoimage.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"152022280","geometry":{"type":"LineString","coordinates":[[16.3617412,48.20110239999997],[16.3619161,48.200974100000025],[16.3619989,48.20094080000001]]},"properties":{"alt_name":"Papiermacherplatzl","description":"benannt nach Johanna Dohnal (14. Februar 1939 bis 20. Februar 2010), Politikerin","highway":"footway","name":"Johanna-Dohnal-Platz","postal_code":"1060","source:alt_name":"fieldwork and http://www.gumpendorferstrasse.at/index.php?i=Platz&p=34"}},{"type":"Feature","id":"29702973","geometry":{"type":"LineString","coordinates":[[16.3621347,48.20107300000001],[16.3622015,48.201139299999994],[16.362233,48.2011684],[16.3622711,48.2012024],[16.3623193,48.201249399999995],[16.3626864,48.20161950000002],[16.3627752,48.20169440000001],[16.3628358,48.201753199999985],[16.3628916,48.20180730000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Gumpendorfer Straße","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"31129446","geometry":{"type":"LineString","coordinates":[[16.3613644,48.2025208],[16.3612594,48.202426900000006],[16.3607487,48.201963000000006]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lcn":"yes","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","surface":"paving_stones"}},{"type":"Feature","id":"335975299","geometry":{"type":"LineString","coordinates":[[16.3600336,48.202010900000005],[16.3599457,48.20209270000004]]},"properties":{"highway":"footway","name":"Kabinettpassage","tunnel":"building_passage","website":"www.kabinettpassage.at"}},{"type":"Feature","id":"236742042","geometry":{"type":"LineString","coordinates":[[16.3609841,48.2018271],[16.361028,48.20186530000001],[16.360936,48.201912300000004]]},"properties":{"foot":"yes","highway":"steps","name":"Rahlstiege"}},{"type":"Feature","id":"335975296","geometry":{"type":"LineString","coordinates":[[16.3601933,48.20190550000001],[16.3603559,48.20183930000002]]},"properties":{"highway":"footway","name":"Literaturpassage","tunnel":"building_passage"}},{"type":"Feature","id":"8609655","geometry":{"type":"LineString","coordinates":[[16.3603219,48.200492499999996],[16.3617412,48.20110239999997]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Theobaldgasse","oneway":"yes","postal_code":"1060","source":"geoimage.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9790200","geometry":{"type":"LineString","coordinates":[[16.361899,48.20116920000001],[16.3619654,48.201280499999996],[16.3619395,48.201335900000004],[16.3613018,48.201663800000034]]},"properties":{"highway":"living_street","name":"Rahlgasse"}},{"type":"Feature","id":"25342527","geometry":{"type":"LineString","coordinates":[[16.3611755,48.20172870000002],[16.3609841,48.2018271]]},"properties":{"foot":"yes","highway":"steps","name":"Rahlstiege"}},{"type":"Feature","id":"24695024","geometry":{"type":"LineString","coordinates":[[16.3613644,48.2025208],[16.3614325,48.20248189999998],[16.3614641,48.202463800000004],[16.3616051,48.20239200000003],[16.3619591,48.202200000000005],[16.3628358,48.201753199999985]]},"properties":{"bicycle":"yes","cycleway":"lane","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"229755591","geometry":{"type":"LineString","coordinates":[[16.3608507,48.201840300000015],[16.3609442,48.20179250000004],[16.3609841,48.2018271]]},"properties":{"foot":"yes","highway":"steps","name":"Rahlstiege"}},{"type":"Feature","id":"146683485","geometry":{"type":"LineString","coordinates":[[16.3579575,48.205073699999986],[16.358028,48.205026299999986],[16.3582334,48.204874099999984],[16.3595834,48.203873000000016],[16.3596472,48.203826899999996],[16.3597291,48.20377180000003],[16.3609147,48.20284609999999],[16.3612182,48.202620800000005],[16.3613187,48.202552],[16.3613644,48.2025208]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumsplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"10124388","geometry":{"type":"LineString","coordinates":[[16.361474,48.202604699999995],[16.3614219,48.202643999999964],[16.3614057,48.20265560000004],[16.3613462,48.20269799999997],[16.3610363,48.202922],[16.3602824,48.203488100000015],[16.3597483,48.20389069999996],[16.3591992,48.2042955],[16.358135,48.20508509999996],[16.3580741,48.205135600000006]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumsplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4849327","geometry":{"type":"LineString","coordinates":[[16.354632,48.20239810000001],[16.3548284,48.2024375],[16.3548432,48.20243999999997],[16.3555227,48.20257000000001],[16.3558903,48.202644899999996],[16.3562128,48.2027052],[16.3566381,48.20278889999997],[16.3567082,48.20279790000001],[16.356785,48.202806399999986],[16.3568599,48.20281649999998],[16.3569231,48.202828899999986],[16.3570099,48.202861799999965],[16.3570651,48.202901499999996],[16.3570934,48.20295329999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Siebensterngasse","surface":"asphalt"}},{"type":"Feature","id":"4997694","geometry":{"type":"LineString","coordinates":[[16.3554451,48.204245000000014],[16.3556212,48.20363609999998],[16.3556895,48.203379299999995],[16.3557268,48.20324590000001],[16.3558742,48.202704100000005],[16.3558903,48.202644899999996]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Gutenberggasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"4997663","geometry":{"type":"LineString","coordinates":[[16.3550079,48.20416229999998],[16.3551798,48.20341969999998],[16.355234,48.203308600000014],[16.3552985,48.2031709],[16.3553681,48.20298650000004],[16.3554999,48.20263129999998],[16.3555227,48.20257000000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Spittelberggasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"4997683","geometry":{"type":"LineString","coordinates":[[16.3562128,48.2027052],[16.3561216,48.20298500000001],[16.3561054,48.203134199999994],[16.3560512,48.2033007],[16.3560077,48.20343409999998],[16.3559243,48.203621],[16.3559127,48.20366229999999],[16.3558506,48.20384139999999],[16.3557544,48.20429830000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kirchberggasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"122729049","geometry":{"type":"LineString","coordinates":[[16.3517328,48.20250260000003],[16.3517432,48.202430100000015],[16.351766,48.2023221]]},"properties":{"bus":"yes","highway":"platform","name":"Siebensterngasse","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"4849654","geometry":{"type":"LineString","coordinates":[[16.3537249,48.20230750000002],[16.3537162,48.20234110000001],[16.3532382,48.2041921]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sigmundsgasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"4997661","geometry":{"type":"LineString","coordinates":[[16.3540923,48.20410240000004],[16.3541657,48.20373269999999],[16.354304,48.203159899999974],[16.3543142,48.2030422],[16.3543417,48.20293179999999],[16.3543577,48.202910599999996],[16.3543953,48.202864799999986],[16.3544996,48.20247549999999],[16.3545072,48.202437],[16.3545215,48.202382400000005]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Stiftgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"31129414","geometry":{"type":"LineString","coordinates":[[16.3517542,48.20220810000001],[16.3518889,48.20219170000004],[16.3519717,48.20218440000002],[16.3521868,48.20217890000001],[16.352279,48.202182100000016],[16.3524538,48.202188199999995],[16.3537249,48.20230750000002],[16.3542824,48.2023585],[16.3544481,48.20237509999998],[16.3545215,48.202382400000005],[16.354632,48.20239810000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"50","name":"Siebensterngasse","oneway":"yes"}},{"type":"Feature","id":"220572716","geometry":{"type":"LineString","coordinates":[[16.3501258,48.20220019999999],[16.35025,48.2022078],[16.3508101,48.20223839999997],[16.3509751,48.2022475],[16.3510584,48.202251399999994],[16.3511288,48.20225260000001],[16.351189,48.202252200000004],[16.3512439,48.20225160000001],[16.3514844,48.202240399999994],[16.3516555,48.20222319999999],[16.3517542,48.20220810000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"50","name":"Siebensterngasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"31129456","geometry":{"type":"LineString","coordinates":[[16.3517542,48.20220810000001],[16.3517102,48.202303],[16.3516787,48.2024347],[16.351364,48.204066600000004],[16.3513543,48.204121799999996],[16.3514539,48.20422800000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Kirchengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"149681458","geometry":{"type":"LineString","coordinates":[[16.3508101,48.20223839999997],[16.3508007,48.20228259999999],[16.3503893,48.204217200000045]]},"properties":{"bicycle":"destination","foot":"yes","highway":"living_street","horse":"no","lanes":"1","maxspeed":"5","motor_vehicle":"destination","name":"Stuckgasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"131621671","geometry":{"type":"LineString","coordinates":[[16.3490726,48.20214519999999],[16.3491297,48.202147],[16.3491659,48.2021493],[16.3493422,48.20216070000001],[16.3493626,48.202163600000034],[16.3495558,48.202170300000006],[16.3501258,48.20220019999999]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"50","name":"Siebensterngasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"234716782","geometry":{"type":"LineString","coordinates":[[16.3491133,48.20543240000001],[16.3491061,48.20537859999999],[16.3490733,48.205197999999996],[16.3490889,48.20509419999999],[16.3490646,48.20493479999999],[16.3490143,48.20482179999999],[16.3489448,48.2043266],[16.348954,48.20424600000001],[16.3489618,48.20418409999999],[16.3489666,48.204060999999996],[16.348948,48.20397890000001],[16.3489882,48.2034055],[16.3490388,48.202683399999984],[16.3490716,48.20227640000002],[16.3490735,48.202192800000006],[16.3490726,48.20214519999999]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"residential","lit":"yes","maxspeed":"30","maxspeed:bus":"50","name":"Neubaugasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4849362","geometry":{"type":"LineString","coordinates":[[16.3490726,48.20214519999999],[16.3490605,48.20203480000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"50","name":"Neubaugasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"146836192","geometry":{"type":"LineString","coordinates":[[16.3490605,48.20203480000001],[16.3490502,48.20189149999999],[16.349043,48.2017711]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"50","name":"Neubaugasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"149681437","geometry":{"type":"LineString","coordinates":[[16.3469614,48.20179189999999],[16.3469574,48.20186029999999],[16.346903,48.20278619999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hermanngasse","surface":"asphalt"}},{"type":"Feature","id":"10107591","geometry":{"type":"LineString","coordinates":[[16.3459495,48.20181149999999],[16.3459536,48.2018808],[16.3460177,48.20279310000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bandgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"paved"}},{"type":"Feature","id":"106806628","geometry":{"type":"LineString","coordinates":[[16.3432101,48.20182410000001],[16.3433047,48.20182299999999],[16.3440632,48.20181819999999],[16.3444887,48.20182460000001],[16.3448236,48.20182489999996],[16.3449204,48.20182589999999],[16.3450061,48.20182650000001]]},"properties":{"bicycle":"yes","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Westbahnstraße","oneway":"yes","oneway:bicycle":"no","vehicle":"destination"}},{"type":"Feature","id":"45422582","geometry":{"type":"LineString","coordinates":[[16.3469614,48.20179189999999],[16.3460822,48.20180340000002],[16.3459495,48.20181149999999]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Westbahnstraße","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"106806625","geometry":{"type":"LineString","coordinates":[[16.3450061,48.20182650000001],[16.3451518,48.20182600000001],[16.3452394,48.201826400000016],[16.3455999,48.20182399999999],[16.3459495,48.20181149999999]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Westbahnstraße","sidewalk":"both"}},{"type":"Feature","id":"179646923","geometry":{"type":"LineString","coordinates":[[16.3405052,48.201846700000004],[16.3406089,48.201849400000015],[16.3407734,48.20184990000001],[16.3420814,48.20183689999999],[16.3431072,48.201825499999984],[16.3432101,48.20182410000001]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Westbahnstraße"}},{"type":"Feature","id":"4583688","geometry":{"type":"LineString","coordinates":[[16.354632,48.20239810000001],[16.3546672,48.20232849999999],[16.354942,48.2018808],[16.355168,48.20151250000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Stiftgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"437876305","geometry":{"type":"LineString","coordinates":[[16.3607487,48.201963000000006],[16.3605076,48.20176140000001],[16.360345,48.20162540000001],[16.3600868,48.201455100000004],[16.3598122,48.2013111],[16.3595273,48.20119249999999],[16.3591686,48.20107239999999],[16.3589441,48.20101679999999],[16.3586442,48.20095859999998]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lcn":"yes","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","surface":"paving_stones"}},{"type":"Feature","id":"9870098","geometry":{"type":"LineString","coordinates":[[16.3586442,48.20095859999998],[16.3585875,48.2010343],[16.3572271,48.20285129999999],[16.3570934,48.20295329999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Karl-Schweighofer-Gasse","oneway":"yes"}},{"type":"Feature","id":"164296307","geometry":{"type":"LineString","coordinates":[[16.355168,48.20151250000001],[16.3554964,48.200992299999996],[16.3558701,48.200384499999984],[16.3559068,48.200324800000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Stiftgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"246741923","geometry":{"type":"LineString","coordinates":[[16.3569095,48.200560499999966],[16.3559068,48.200324800000004]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lcn":"yes","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","surface":"paving_stones"}},{"type":"Feature","id":"8876782","geometry":{"type":"LineString","coordinates":[[16.357061,48.20041810000001],[16.356994,48.20048109999999],[16.3569095,48.200560499999966]]},"properties":{"bicycle":"yes","delivery":"yes","emergency":"yes","highway":"residential","maxspeed":"30","motor_vehicle":"delivery","name":"Capistrangasse","note":"Lieferverkehr only in Richtung MaHü","oneway":"yes","psv":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9827116","geometry":{"type":"LineString","coordinates":[[16.3591686,48.20107239999999],[16.3593149,48.2010032],[16.3597006,48.200820900000025],[16.3597967,48.200739699999986],[16.3603219,48.200492499999996]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Königsklostergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"333540640","geometry":{"type":"LineString","coordinates":[[16.3586442,48.20095859999998],[16.3582771,48.200884],[16.3569095,48.200560499999966]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lcn":"yes","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","surface":"paving_stones"}},{"type":"Feature","id":"162202307","geometry":{"type":"LineString","coordinates":[[16.3584104,48.200637299999954],[16.35837,48.2006835],[16.3583228,48.20078530000001],[16.3582771,48.200884]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"20","motor_vehicle":"emergency","name":"Theobaldgasse"}},{"type":"Feature","id":"28798331","geometry":{"type":"LineString","coordinates":[[16.3488663,48.20175520000001],[16.3487455,48.20175219999999],[16.3485898,48.2017616],[16.3483807,48.20177469999999],[16.3483156,48.20177949999999],[16.3481749,48.2017831],[16.3474589,48.20179849999997],[16.3469614,48.20179189999999]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Westbahnstraße","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"131621670","geometry":{"type":"LineString","coordinates":[[16.349043,48.2017711],[16.3488995,48.2017582],[16.3488663,48.20175520000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Westbahnstraße","sidewalk":"both"}},{"type":"Feature","id":"4583444","geometry":{"type":"LineString","coordinates":[[16.3491083,48.20097849999999],[16.3492162,48.2009769],[16.3505009,48.20095810000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Mondscheingasse","oneway":"yes"}},{"type":"Feature","id":"4849360","geometry":{"type":"LineString","coordinates":[[16.3512439,48.20225160000001],[16.351262,48.2022001],[16.3512768,48.20215620000002],[16.3512774,48.20211749999996],[16.3512724,48.20207729999996],[16.3512538,48.20200460000001],[16.3512937,48.20172149999999],[16.351296,48.20164410000001],[16.3512821,48.20158789999999],[16.3512577,48.2015413],[16.351201,48.20148309999999],[16.351124,48.20142179999996],[16.3505388,48.20100529999999],[16.3505009,48.20095810000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Mondscheingasse","oneway":"yes"}},{"type":"Feature","id":"4849253","geometry":{"type":"LineString","coordinates":[[16.347039,48.200354199999964],[16.3469644,48.2017362],[16.3469627,48.20176749999999],[16.3469614,48.20179189999999]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Hermanngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"10107617","geometry":{"type":"LineString","coordinates":[[16.3459495,48.20181149999999],[16.345949,48.20176270000002],[16.3459491,48.200724199999996],[16.3459489,48.200434099999995],[16.3459489,48.200366299999985]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bandgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"233609825","geometry":{"type":"LineString","coordinates":[[16.3450224,48.20037099999999],[16.3450221,48.200426600000014],[16.3450084,48.20176480000001],[16.3450061,48.20182650000001],[16.3450036,48.20188289999999],[16.3450228,48.20274169999996],[16.3450175,48.202786299999985]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Zieglergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"28798332","geometry":{"type":"LineString","coordinates":[[16.3432442,48.20036429999999],[16.3433414,48.2003661],[16.3449085,48.20037070000001],[16.3450224,48.20037099999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Seidengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"286653491","geometry":{"type":"LineString","coordinates":[[16.3450224,48.20037099999999],[16.3451167,48.20037189999999],[16.3457223,48.200367899999975],[16.3459489,48.200366299999985],[16.3469117,48.2003727],[16.347039,48.200354199999964]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Seidengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"437399868","geometry":{"type":"LineString","coordinates":[[16.3407879,48.2003651],[16.3431493,48.200364199999996],[16.3431914,48.200364199999996],[16.3432442,48.20036429999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Seidengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"39896751","geometry":{"type":"LineString","coordinates":[[16.3431405,48.204317],[16.3431459,48.20425119999999],[16.3431814,48.202849800000024],[16.3431831,48.202792999999986],[16.3431843,48.2027501],[16.3432079,48.2019013],[16.3432101,48.20182410000001],[16.3432204,48.2017501],[16.3432429,48.20042649999999],[16.3432442,48.20036429999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"26621214","geometry":{"type":"LineString","coordinates":[[16.3383682,48.20611389999996],[16.3383302,48.206031199999984],[16.3384984,48.204284400000006],[16.3385008,48.204259500000035],[16.3386584,48.202735200000006]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Wimbergergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4849646","geometry":{"type":"LineString","coordinates":[[16.3386584,48.202735200000006],[16.3387385,48.202738099999976]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Kandlgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"205992796","geometry":{"type":"LineString","coordinates":[[16.3387385,48.202738099999976],[16.3390147,48.2027683],[16.3392715,48.20277500000003],[16.33945,48.2027664]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Kandlgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","traffic_calming":"table"}},{"type":"Feature","id":"30375210","geometry":{"type":"LineString","coordinates":[[16.3367918,48.20380209999999],[16.3369486,48.203728299999995],[16.3370405,48.20270120000001],[16.3369086,48.202646200000004]]},"properties":{"highway":"service","maxspeed":"50","name":"Neubaugürtel","oneway":"yes"}},{"type":"Feature","id":"26621215","geometry":{"type":"LineString","coordinates":[[16.3386584,48.202735200000006],[16.3376752,48.202687200000014]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Kandlgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"138782648","geometry":{"type":"LineString","coordinates":[[16.3387111,48.20218599999998],[16.338361,48.20215830000001],[16.3380886,48.202136800000005],[16.3378382,48.20211699999999],[16.3377458,48.20210970000002]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"30","name":"Urban-Loritz-Platz","oneway":"yes","source:maxspeed":"AT:zone:30","vehicle":"destination"}},{"type":"Feature","id":"15509638","geometry":{"type":"LineString","coordinates":[[16.3386584,48.202735200000006],[16.3387111,48.20218599999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wimbergergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25771797","geometry":{"type":"LineString","coordinates":[[16.3349471,48.20258089999999],[16.3349018,48.20299720000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geyschlägergasse","noexit":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"37729818","geometry":{"type":"LineString","coordinates":[[16.3359059,48.20260859999999],[16.3350502,48.2025701],[16.3349471,48.20258089999999]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Sorbaitgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"205992797","geometry":{"type":"LineString","coordinates":[[16.3339783,48.20262250000002],[16.3339441,48.20293430000004],[16.3339175,48.20333230000003]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Moeringgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5003913","geometry":{"type":"LineString","coordinates":[[16.3369086,48.202646200000004],[16.3368059,48.20264230000001],[16.3359059,48.20260859999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sorbaitgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29103989","geometry":{"type":"LineString","coordinates":[[16.3340599,48.20253489999999],[16.3339914,48.2025706],[16.3339783,48.20262250000002]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Moeringgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","traffic_calming":"table"}},{"type":"Feature","id":"37677561","geometry":{"type":"LineString","coordinates":[[16.3349471,48.20258089999999],[16.3348505,48.20257430000001],[16.3341542,48.2025357]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Sorbaitgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"205992798","geometry":{"type":"LineString","coordinates":[[16.3341542,48.2025357],[16.3340599,48.20253489999999]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Sorbaitgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","traffic_calming":"table"}},{"type":"Feature","id":"24869491","geometry":{"type":"LineString","coordinates":[[16.3300093,48.20214010000001],[16.3299941,48.2023399],[16.3299922,48.20261540000004],[16.3300167,48.2028181]]},"properties":{"highway":"cycleway","lcn":"yes","name":"Burjanplatz"}},{"type":"Feature","id":"5003719","geometry":{"type":"LineString","coordinates":[[16.3300093,48.20214010000001],[16.3314709,48.202209900000014]]},"properties":{"bicycle":"permissive","created_by":"Potlatch 0.4c","highway":"living_street","name":"Langmaisgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003706","geometry":{"type":"LineString","coordinates":[[16.3253702,48.20240789999997],[16.3261636,48.20239219999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Guntherstraße","oneway":"yes"}},{"type":"Feature","id":"24869492","geometry":{"type":"LineString","coordinates":[[16.3297316,48.20256520000001],[16.3280589,48.20250579999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kriemhildplatz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"191251620","geometry":{"type":"LineString","coordinates":[[16.3261738,48.2025146],[16.3262582,48.20352889999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brunhildengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003718","geometry":{"type":"LineString","coordinates":[[16.3280823,48.202325299999984],[16.3297345,48.20238279999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kriemhildplatz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"24869498","geometry":{"type":"LineString","coordinates":[[16.3271092,48.2023825],[16.3280722,48.20240340000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Guntherstraße","noexit":"yes","surface":"cobblestone"}},{"type":"Feature","id":"189028260","geometry":{"type":"LineString","coordinates":[[16.3261738,48.2025146],[16.3262425,48.202514699999966],[16.3263859,48.2025137],[16.3267518,48.20251109999998],[16.3268419,48.2025232],[16.3268814,48.2025285],[16.3269207,48.20251050000002],[16.3269371,48.20250300000001],[16.3269544,48.20249530000001],[16.3270415,48.202456600000005],[16.3270622,48.20240939999999],[16.3271092,48.2023825]]},"properties":{"bicycle":"official","foot":"official","highway":"cycleway","name":"Friedensreich-Hundertwasser-Platz"}},{"type":"Feature","id":"219430763","geometry":{"type":"LineString","coordinates":[[16.3271462,48.2043894],[16.32714,48.204358799999994],[16.3270933,48.20415439999999],[16.3270492,48.20391879999997],[16.3270173,48.203707699999995],[16.3269935,48.20349439999998],[16.3269777,48.20329889999999],[16.3269687,48.203089000000006],[16.3269659,48.20289790000001],[16.3269692,48.202709700000014],[16.3269708,48.20257609999999],[16.3269585,48.20253589999999],[16.3269371,48.20250300000001],[16.3269061,48.2024696],[16.3268409,48.20242730000001],[16.3267664,48.20238600000002]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Camillo-Sitte-Gasse"}},{"type":"Feature","id":"5003720","geometry":{"type":"LineString","coordinates":[[16.3261636,48.20239219999999],[16.3261738,48.2025146]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Brunhildengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"24869499","geometry":{"type":"LineString","coordinates":[[16.3271092,48.2023825],[16.3270536,48.20231960000001],[16.3269835,48.20230889999996],[16.326903,48.202305800000005],[16.3267712,48.20230380000001],[16.3267238,48.202284099999986],[16.3266967,48.20225270000003],[16.3266807,48.20225690000001],[16.3266566,48.20226339999999],[16.3266358,48.20227059999999],[16.3266198,48.20227599999998],[16.3265972,48.2022819],[16.3265205,48.20229290000003],[16.3264901,48.202297200000004],[16.3263862,48.202296899999965],[16.326283,48.20229660000001],[16.3262273,48.20233680000001],[16.3262298,48.20237689999999],[16.3262425,48.202514699999966]]},"properties":{"highway":"footway","name":"Friedensreich-Hundertwasser-Platz"}},{"type":"Feature","id":"5003727","geometry":{"type":"LineString","coordinates":[[16.3282896,48.204854600000004],[16.3281215,48.204259500000035],[16.3280677,48.20395909999999],[16.3280309,48.2036597],[16.328025,48.203464800000035],[16.3280208,48.20305260000001],[16.3280589,48.20250579999998],[16.3280722,48.20240340000001],[16.3280823,48.202325299999984]]},"properties":{"cycleway":"opposite","fixme":"yes","highway":"residential","maxspeed":"30","name":"Alliogasse","oneway":"yes"}},{"type":"Feature","id":"217030746","geometry":{"type":"LineString","coordinates":[[16.3405052,48.201846700000004],[16.3404962,48.201904799999994],[16.3404887,48.20195319999999],[16.3404418,48.20217529999999],[16.340407,48.202363100000014],[16.3403701,48.20256019999999],[16.3403333,48.20272370000001],[16.3403178,48.20280079999998],[16.3402872,48.20296079999997],[16.3402536,48.20315769999999],[16.3402353,48.20326699999998],[16.3402161,48.20337190000001],[16.3401791,48.20356749999999],[16.3401466,48.20375390000001],[16.3401103,48.20395320000003],[16.3400771,48.20415350000002],[16.3400568,48.20426330000001],[16.3400452,48.204325900000015],[16.3400326,48.20439329999999],[16.3399655,48.2047],[16.3399194,48.2049217],[16.3398395,48.20537920000004],[16.3397552,48.20584629999999],[16.3397279,48.2059812],[16.3397177,48.20604540000002],[16.3397062,48.206108700000016],[16.3396848,48.20622439999997],[16.339611,48.2066543],[16.3395291,48.20707199999998],[16.3395136,48.207158899999996],[16.3394594,48.207462599999985],[16.339412,48.2077486],[16.3393898,48.207882299999994],[16.3393147,48.20834479999996],[16.339313,48.20842099999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Kaiserstraße","note":"Tempo 30 Zone ausgen. Schienenstraßen & Busspuren, d.h. effektiv gilt auf dieser Straße Tempo 50"}},{"type":"Feature","id":"42799329","geometry":{"type":"LineString","coordinates":[[16.3388191,48.20172579999999],[16.3390952,48.2017472],[16.3401557,48.20182410000001],[16.3401715,48.2018248],[16.3403973,48.20183970000002],[16.3405052,48.201846700000004]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Westbahnstraße"}},{"type":"Feature","id":"138782641","geometry":{"type":"LineString","coordinates":[[16.3388191,48.20172579999999],[16.3388043,48.20178520000002],[16.3387991,48.201808],[16.3387789,48.2019157],[16.3387588,48.2020091],[16.3387111,48.20218599999998]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Urban-Loritz-Platz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"147402943","geometry":{"type":"LineString","coordinates":[[16.3378269,48.2016304],[16.3379776,48.201649799999956],[16.3381643,48.20166689999999],[16.3384562,48.20169290000001],[16.3386512,48.2017103],[16.3388191,48.20172579999999]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Urban-Loritz-Platz","surface":"cobblestone"}},{"type":"Feature","id":"28318684","geometry":{"type":"LineString","coordinates":[[16.3370453,48.20154170000001],[16.3371746,48.201556400000015],[16.3372349,48.20156320000001],[16.3372684,48.20156700000001],[16.3375958,48.20160419999999],[16.3377374,48.20162020000001],[16.3378269,48.2016304]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Urban-Loritz-Platz","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31275230","geometry":{"type":"LineString","coordinates":[[16.3378269,48.2016304],[16.3378088,48.201732100000015],[16.3377458,48.20210970000002],[16.3376816,48.20263460000001],[16.3376752,48.202687200000014],[16.3375363,48.20413579999999],[16.337525,48.20422429999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"26158104","geometry":{"type":"LineString","coordinates":[[16.3266299,48.20179809999999],[16.3267485,48.2018008],[16.3281779,48.20183299999999],[16.3296825,48.201885800000014],[16.3297755,48.201888499999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Witzelsbergergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26653791","geometry":{"type":"LineString","coordinates":[[16.3300672,48.20161390000001],[16.3300211,48.20187929999997],[16.3299954,48.2020904],[16.3300093,48.20214010000001]]},"properties":{"bicycle":"permissive","highway":"living_street","lcn":"yes","name":"Markgraf-Rüdiger-Straße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003723","geometry":{"type":"LineString","coordinates":[[16.3315167,48.20168269999999],[16.3300672,48.20161390000001]]},"properties":{"highway":"living_street","name":"Alberichgasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"5003705","geometry":{"type":"LineString","coordinates":[[16.3266299,48.20179809999999],[16.3252732,48.201770899999985]]},"properties":{"created_by":"Potlatch 0.10b","highway":"residential","maxspeed":"30","name":"Witzelsbergergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003914","geometry":{"type":"LineString","coordinates":[[16.3357604,48.20413780000001],[16.3359059,48.20260859999999],[16.3359276,48.20235120000001],[16.3359845,48.20167709999998],[16.3360316,48.201432899999986]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wurzbachgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"30088016","geometry":{"type":"LineString","coordinates":[[16.3300672,48.20161390000001],[16.3299459,48.201602699999995],[16.3298291,48.20159290000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Alberichgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26738389","geometry":{"type":"LineString","coordinates":[[16.3367537,48.2041797],[16.3367605,48.20409799999999],[16.3367918,48.20380209999999],[16.3368994,48.2027262],[16.3369086,48.202646200000004],[16.3370231,48.20165259999999],[16.3370453,48.20154170000001]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"42799326","geometry":{"type":"LineString","coordinates":[[16.3388191,48.20172579999999],[16.3388302,48.20165029999998],[16.3388674,48.2013987],[16.338888,48.201259600000014]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Urban-Loritz-Platz"}},{"type":"Feature","id":"26621217","geometry":{"type":"LineString","coordinates":[[16.338888,48.201259600000014],[16.3387687,48.201252600000004],[16.338574,48.201241100000004],[16.3382394,48.20122150000003],[16.3380858,48.2012125],[16.3379523,48.20120459999998]]},"properties":{"highway":"living_street","lit":"yes","name":"Urban-Loritz-Platz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"299696928","geometry":{"type":"LineString","coordinates":[[16.3375954,48.20076259999999],[16.33761,48.20071920000004],[16.3376689,48.20066080000004],[16.3376911,48.200646800000015],[16.3377646,48.2006337],[16.337809,48.200630399999994],[16.3378204,48.200627000000026],[16.3378306,48.20063160000001],[16.3378578,48.20063590000001],[16.3378731,48.20064049999999],[16.3379092,48.200655299999994],[16.3379297,48.2006638],[16.3379565,48.20066849999998]]},"properties":{"highway":"footway","name":"Emil-Maurer-Platz","source":"basemap.at"}},{"type":"Feature","id":"37540941","geometry":{"type":"LineString","coordinates":[[16.3370453,48.20154170000001],[16.3370804,48.2014332],[16.337251,48.20095150000003],[16.3372667,48.20090479999999],[16.3373092,48.20079659999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"28798326","geometry":{"type":"LineString","coordinates":[[16.3373092,48.20079659999999],[16.3375946,48.200836100000004],[16.3379227,48.200888700000036],[16.338058,48.200907599999994]]},"properties":{"cycleway":"opposite_track","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"147402933","geometry":{"type":"LineString","coordinates":[[16.3364077,48.2005571],[16.336967,48.20071089999999],[16.3371951,48.20077259999999],[16.3373092,48.20079659999999]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Märzstraße","surface":"asphalt"}},{"type":"Feature","id":"5003715","geometry":{"type":"LineString","coordinates":[[16.3298776,48.201392],[16.3297918,48.2013857],[16.328325,48.201277900000036],[16.3275343,48.201223200000044],[16.3267559,48.20116619999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tellgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003726","geometry":{"type":"LineString","coordinates":[[16.3315748,48.20108299999998],[16.3303188,48.20086549999999]]},"properties":{"highway":"living_street","name":"Loeschenkohlgasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"26158103","geometry":{"type":"LineString","coordinates":[[16.3251848,48.20109579999999],[16.3259318,48.20112039999998],[16.3267559,48.20116619999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tellgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8090058","geometry":{"type":"LineString","coordinates":[[16.3360316,48.201432899999986],[16.3364077,48.2005571]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"50","name":"Löhrgasse","old_name":"Michaeler-Gasse","oneway":"yes","source:old_name":"Aufschrift bei Löhrgasse 13"}},{"type":"Feature","id":"8090089","geometry":{"type":"LineString","coordinates":[[16.3315914,48.20049089999998],[16.3315748,48.20108299999998],[16.3315167,48.20168269999999],[16.3314709,48.202209900000014],[16.3314676,48.20225599999998],[16.3314567,48.20242799999997],[16.331417,48.202843900000005],[16.331395,48.203155699999996],[16.3313884,48.20323539999998],[16.3313888,48.20330200000001],[16.3313847,48.20334980000004],[16.33134,48.20383480000001],[16.3313142,48.20439669999999]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Vogelweidplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24869497","geometry":{"type":"LineString","coordinates":[[16.3280823,48.202325299999984],[16.3281779,48.20183299999999],[16.328325,48.201277900000036],[16.3286192,48.20054099999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Alliogasse","oneway":"yes"}},{"type":"Feature","id":"30088012","geometry":{"type":"LineString","coordinates":[[16.3303188,48.20086549999999],[16.330201,48.20084130000001],[16.3300845,48.20081690000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Loeschenkohlgasse","source":"yahoo"}},{"type":"Feature","id":"422392731","geometry":{"type":"LineString","coordinates":[[16.3664968,48.2005772],[16.3660428,48.20028869999999],[16.3657623,48.200114100000036],[16.3656474,48.200038500000005]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","ref":"B1","turn:lanes":"left|through|through|throught"}},{"type":"Feature","id":"155291150","geometry":{"type":"LineString","coordinates":[[16.3657977,48.19992589999998],[16.3660038,48.1997925],[16.3660605,48.199768199999994],[16.3661367,48.1997633],[16.3662243,48.1997719]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes","turn:lanes":"left|through|through"}},{"type":"Feature","id":"155291149","geometry":{"type":"LineString","coordinates":[[16.3656474,48.200038500000005],[16.3657157,48.19998730000003],[16.3657977,48.19992589999998]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes"}},{"type":"Feature","id":"87511621","geometry":{"type":"LineString","coordinates":[[16.3647092,48.20076929999999],[16.3648155,48.2006959],[16.3651216,48.20044899999996],[16.3655695,48.200099300000005],[16.3656474,48.200038500000005]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes","turn:lanes":"through|through|right|right"}},{"type":"Feature","id":"8876781","geometry":{"type":"LineString","coordinates":[[16.3611857,48.200090200000005],[16.3610941,48.200133300000005],[16.3603219,48.200492499999996]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Königsklostergasse","oneway":"yes","source:cycleway":"survey","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9827207","geometry":{"type":"LineString","coordinates":[[16.3590707,48.20024939999999],[16.3591273,48.2002909],[16.3596938,48.200732200000004],[16.3597967,48.200739699999986]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pfauengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"234005049","geometry":{"type":"LineString","coordinates":[[16.3603219,48.200492499999996],[16.3595412,48.200164],[16.3594521,48.20013800000001],[16.3593004,48.2001564],[16.3592212,48.20017900000002],[16.3591212,48.20023449999999],[16.3590707,48.20024939999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Theobaldgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9802951","geometry":{"type":"LineString","coordinates":[[16.3584104,48.200637299999954],[16.3590707,48.20024939999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Theobaldgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"339157705","geometry":{"type":"LineString","coordinates":[[16.3552925,48.19992580000002],[16.3551948,48.20000170000003]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage","tunnel":"building_passage"}},{"type":"Feature","id":"246741922","geometry":{"type":"LineString","coordinates":[[16.3575729,48.19993720000002],[16.3584104,48.200637299999954]]},"properties":{"highway":"residential","maxspeed":"30","name":"Windmühlgasse","oneway":"yes","oneway:bicycle":"yes","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"339157551","geometry":{"type":"LineString","coordinates":[[16.3551948,48.20000170000003],[16.3551819,48.20001210000001],[16.3550855,48.20009010000001]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage"}},{"type":"Feature","id":"26261752","geometry":{"type":"LineString","coordinates":[[16.3592426,48.1999696],[16.359268,48.200051400000035],[16.3591007,48.2000745],[16.3591104,48.200105699999995],[16.3592774,48.2000826],[16.3593004,48.2001564]]},"properties":{"foot":"yes","highway":"steps","historic":"monument","name":"Fillgraderstiege","source":"wien.gv.at"}},{"type":"Feature","id":"234005048","geometry":{"type":"LineString","coordinates":[[16.357061,48.20041810000001],[16.3575729,48.19993720000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Capistrangasse","noexit":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"209385061","geometry":{"type":"LineString","coordinates":[[16.359268,48.200051400000035],[16.3594238,48.20002950000003],[16.3594337,48.200060399999984],[16.3592774,48.2000826]]},"properties":{"foot":"yes","highway":"steps","historic":"monument","name":"Fillgraderstiege","source":"wien.gv.at"}},{"type":"Feature","id":"9826768","geometry":{"type":"LineString","coordinates":[[16.3588691,48.19990870000001],[16.3584371,48.19974260000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Fillgradergasse","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"218080888","geometry":{"type":"LineString","coordinates":[[16.3577387,48.19978570000001],[16.3575729,48.19993720000002]]},"properties":{"highway":"footway","name":"Capistrangasse"}},{"type":"Feature","id":"5893409","geometry":{"type":"LineString","coordinates":[[16.3641085,48.19987800000004],[16.3649242,48.20033810000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Papagenogasse","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"33483908","geometry":{"type":"LineString","coordinates":[[16.364622,48.19946450000003],[16.3645466,48.19952519999998],[16.3641085,48.19987800000004],[16.3635971,48.200290499999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Millöckergasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"253706317","geometry":{"type":"LineString","coordinates":[[16.3657332,48.19959109999999],[16.3656474,48.1996546],[16.3655261,48.199755900000014],[16.365457,48.1998414]]},"properties":{"highway":"footway","name":"Naschmarkt"}},{"type":"Feature","id":"164357939","geometry":{"type":"LineString","coordinates":[[16.3650293,48.19912049999999],[16.3650886,48.199150799999984],[16.365457,48.199349900000016],[16.365862,48.199568699999986],[16.3659864,48.19963599999997],[16.3660437,48.19966690000001],[16.3661145,48.19970809999998],[16.3661666,48.1997384],[16.3662243,48.1997719]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"168428420","geometry":{"type":"LineString","coordinates":[[16.3656923,48.1998557],[16.3655499,48.19977750000001],[16.3655261,48.199755900000014],[16.3655132,48.1997442],[16.3651716,48.199559499999964],[16.3647541,48.199332999999996],[16.3647121,48.19930980000001],[16.3636472,48.198723]]},"properties":{"highway":"footway","name":"Minerlgasse","source":"wien.gv.at-labels"}},{"type":"Feature","id":"168548265","geometry":{"type":"LineString","coordinates":[[16.3658453,48.199754900000016],[16.3656474,48.1996546],[16.3652956,48.1994684],[16.3649263,48.19926649999999],[16.3648714,48.1992372],[16.3648274,48.1992137],[16.3637474,48.198640600000004]]},"properties":{"highway":"footway","name":"Sopherlgasse","source":"wien.gv.at-labels"}},{"type":"Feature","id":"5893469","geometry":{"type":"LineString","coordinates":[[16.3584371,48.19974260000001],[16.3589767,48.199139599999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bienengasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"218080889","geometry":{"type":"LineString","coordinates":[[16.3584371,48.19974260000001],[16.3579811,48.1995642],[16.35716,48.199239500000004],[16.3569353,48.1993736],[16.3569077,48.199390100000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Fillgradergasse","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"5893453","geometry":{"type":"LineString","coordinates":[[16.3588691,48.19990870000001],[16.3590692,48.199984900000004],[16.3592426,48.1999696],[16.3594289,48.199935100000005],[16.3599167,48.19947100000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Fillgradergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"160532708","geometry":{"type":"LineString","coordinates":[[16.3609447,48.19985209999996],[16.360998,48.19981769999998],[16.3610989,48.1997872],[16.3611489,48.19977209999999],[16.3613718,48.19970459999999],[16.3613731,48.199702099999996],[16.3614062,48.1996365]]},"properties":{"highway":"footway","name":"Helene-Bauer-Platz","source":"wien.gv.at-labels"}},{"type":"Feature","id":"25511033","geometry":{"type":"LineString","coordinates":[[16.3579811,48.1995642],[16.3578839,48.19965300000001]]},"properties":{"highway":"footway","name":"Capistrangasse"}},{"type":"Feature","id":"306455745","geometry":{"type":"LineString","coordinates":[[16.3578839,48.19965300000001],[16.3577387,48.19978570000001]]},"properties":{"highway":"steps","name":"Capistranstiege"}},{"type":"Feature","id":"5893399","geometry":{"type":"LineString","coordinates":[[16.3606627,48.199733200000026],[16.3607486,48.19967779999999],[16.3608198,48.199650099999985],[16.3609126,48.1996379],[16.3614062,48.1996365],[16.3614292,48.19963680000001],[16.3615696,48.199646],[16.3626537,48.199646900000005],[16.362848,48.199779500000005],[16.3635971,48.200290499999994],[16.3637188,48.200375699999995],[16.3638014,48.2004335],[16.3644405,48.200862099999995],[16.3644902,48.200895799999984]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lehargasse","old_name":"Dreihufeisengasse","oneway":"yes","source":"wien.at"}},{"type":"Feature","id":"196461771","geometry":{"type":"LineString","coordinates":[[16.3586637,48.19902819999999],[16.3589767,48.199139599999995],[16.3593803,48.19928010000001],[16.359383,48.19928380000002],[16.3599167,48.19947100000002],[16.3606627,48.199733200000026],[16.3608128,48.19978739999999],[16.3609447,48.19985209999996],[16.3611857,48.200090200000005],[16.3619989,48.20094080000001],[16.3621347,48.20107300000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Gumpendorfer Straße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"253639231","geometry":{"type":"LineString","coordinates":[[16.3564584,48.1990126],[16.3564362,48.19902450000001]]},"properties":{"foot":"yes","highway":"footway","name":"Stiegengasse","source":"yahoo"}},{"type":"Feature","id":"253639232","geometry":{"type":"LineString","coordinates":[[16.3563864,48.19906610000001],[16.3562588,48.1991725]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage","tunnel":"building_passage"}},{"type":"Feature","id":"28798335","geometry":{"type":"LineString","coordinates":[[16.3567063,48.19887959999997],[16.3564584,48.1990126]]},"properties":{"foot":"yes","highway":"steps","name":"Stiegengasse","source":"yahoo"}},{"type":"Feature","id":"339157558","geometry":{"type":"LineString","coordinates":[[16.3556296,48.19965819999999],[16.3552925,48.19992580000002]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage"}},{"type":"Feature","id":"191318797","geometry":{"type":"LineString","coordinates":[[16.3557599,48.199558000000025],[16.3556296,48.19965819999999]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage","tunnel":"building_passage"}},{"type":"Feature","id":"339157549","geometry":{"type":"LineString","coordinates":[[16.3562588,48.1991725],[16.3561631,48.19924159999999]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage"}},{"type":"Feature","id":"339157545","geometry":{"type":"LineString","coordinates":[[16.3561631,48.19924159999999],[16.3560464,48.19933770000003]]},"properties":{"highway":"steps","loc_name":"Raimundhof","name":"Raimundhofpassage","tunnel":"building_passage"}},{"type":"Feature","id":"339157553","geometry":{"type":"LineString","coordinates":[[16.3560464,48.19933770000003],[16.356,48.199377]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage"}},{"type":"Feature","id":"339157546","geometry":{"type":"LineString","coordinates":[[16.3558996,48.1994512],[16.3558479,48.19949650000001]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage"}},{"type":"Feature","id":"339157548","geometry":{"type":"LineString","coordinates":[[16.356,48.199377],[16.3558996,48.1994512]]},"properties":{"highway":"steps","loc_name":"Raimundhof","name":"Raimundhofpassage","tunnel":"building_passage"}},{"type":"Feature","id":"23587255","geometry":{"type":"LineString","coordinates":[[16.3546283,48.199948800000016],[16.3547167,48.19987470000001],[16.3552171,48.199455]]},"properties":{"highway":"service","name":"Mariahilfer Straße","service":"driveway","vehicle":"private"}},{"type":"Feature","id":"339157554","geometry":{"type":"LineString","coordinates":[[16.3558479,48.19949650000001],[16.3557599,48.199558000000025]]},"properties":{"highway":"steps","loc_name":"Raimundhof","name":"Raimundhofpassage","tunnel":"building_passage"}},{"type":"Feature","id":"5095770","geometry":{"type":"LineString","coordinates":[[16.3650293,48.19912049999999],[16.3651175,48.199048800000014],[16.3655349,48.19868109999999],[16.3659096,48.198542799999984],[16.3661456,48.19849479999999],[16.3662548,48.1984726]]},"properties":{"highway":"residential","maxspeed":"30","name":"Faulmanngasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"27188687","geometry":{"type":"LineString","coordinates":[[16.3652711,48.19819609999999],[16.3651717,48.19824230000003],[16.3651575,48.1982879],[16.3655349,48.19868109999999]]},"properties":{"highway":"residential","name":"Mühlgasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4788786","geometry":{"type":"LineString","coordinates":[[16.3634115,48.19881509999996],[16.3634916,48.19874599999997],[16.3637476,48.198530500000004],[16.3638149,48.19846910000001]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"20","name":"Schleifmühlbrücke","note":"Begegnungszone","oneway":"no","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"178284518","geometry":{"type":"LineString","coordinates":[[16.3646115,48.19782810000001],[16.3646992,48.19775240000001],[16.3647494,48.197710400000005],[16.3647795,48.19768519999997],[16.3648843,48.19759880000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"30","name":"Schleifmühlgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"10217102","geometry":{"type":"LineString","coordinates":[[16.3638149,48.19846910000001],[16.3638731,48.198421800000006],[16.3646115,48.19782810000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"30","name":"Schleifmühlgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"5893493","geometry":{"type":"LineString","coordinates":[[16.3614292,48.19963680000001],[16.3625909,48.19847579999998],[16.3626361,48.198430599999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Girardigasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"226975667","geometry":{"type":"LineString","coordinates":[[16.3633231,48.19845000000001],[16.3632444,48.198527799999994],[16.363173,48.19860400000002]]},"properties":{"highway":"footway","name":"Johanna-Bauer-Platz","source":"https://www.meinbezirk.at/mariahilf/wirtschaft/naschmarkt-kleiner-platz-trotzt-der-sanierung-d1582394.html"}},{"type":"Feature","id":"5893479","geometry":{"type":"LineString","coordinates":[[16.3608832,48.197643700000015],[16.3608241,48.1977091],[16.3602834,48.198306900000006],[16.359383,48.19928380000002],[16.3588691,48.19990870000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Laimgrubengasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"492719824","geometry":{"type":"LineString","coordinates":[[16.36347,48.19863570000001],[16.3632444,48.198527799999994],[16.3628913,48.198358900000045],[16.3626132,48.19822590000001],[16.3625659,48.198202400000014],[16.3621615,48.1980011],[16.3619524,48.197897100000006],[16.3618749,48.197860100000014]]},"properties":{"highway":"footway","name":"Mariedlgasse","source":"wien.gv.at-labels"}},{"type":"Feature","id":"5893402","geometry":{"type":"LineString","coordinates":[[16.3545702,48.197936699999985],[16.3544835,48.19801669999998],[16.3536094,48.19874070000003],[16.3534913,48.1988499]]},"properties":{"delivery":"yes","fixme":"delivery times?","highway":"pedestrian","motor_vehicle":"no","name":"Barnabitengasse","oneway":"no","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"5893439","geometry":{"type":"LineString","coordinates":[[16.3563495,48.19822400000001],[16.356592,48.198005499999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Joanelligasse","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5893480","geometry":{"type":"LineString","coordinates":[[16.3572954,48.19854219999999],[16.3571778,48.19859389999999],[16.3567063,48.19887959999997]]},"properties":{"foot":"yes","highway":"pedestrian","name":"Stiegengasse","source":"yahoo","surface":"paving_stones"}},{"type":"Feature","id":"246741921","geometry":{"type":"LineString","coordinates":[[16.3542818,48.19770840000001],[16.3543547,48.197725100000014],[16.3552568,48.197948000000025],[16.3562774,48.19820579999998],[16.3563495,48.19822400000001],[16.3571018,48.1984856],[16.3572954,48.19854219999999],[16.3573907,48.198576],[16.3574862,48.19860950000003],[16.3585575,48.1989902],[16.3586637,48.19902819999999]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Gumpendorfer Straße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5893505","geometry":{"type":"LineString","coordinates":[[16.3542818,48.19770840000001],[16.3542513,48.1977828],[16.3542447,48.197799],[16.3542546,48.197852100000006],[16.354304,48.197899500000005],[16.3545702,48.197936699999985],[16.3547756,48.1979752],[16.3547876,48.1979786],[16.3552278,48.198089900000014],[16.3553833,48.198153399999995],[16.3560711,48.19873260000003],[16.3564173,48.199009399999994],[16.3564362,48.19902450000001],[16.3569077,48.199390100000016],[16.3575155,48.19989000000004],[16.3575729,48.19993720000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Windmühlgasse","oneway":"yes","oneway:bicycle":"yes","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"30069526","geometry":{"type":"LineString","coordinates":[[16.3494697,48.199904300000014],[16.3493613,48.1998916],[16.3492988,48.199884300000036]]},"properties":{"bicycle":"yes","highway":"path","is_in":"Austria, Europe,Vienna,Wien","motor_vehicle":"no","name":"Lindengasse","surface":"asphalt"}},{"type":"Feature","id":"25344092","geometry":{"type":"LineString","coordinates":[[16.350701,48.20012589999999],[16.3494697,48.199904300000014]]},"properties":{"highway":"living_street","is_in":"Austria, Europe,Vienna,Wien","name":"Lindengasse"}},{"type":"Feature","id":"4849384","geometry":{"type":"LineString","coordinates":[[16.350701,48.20012589999999],[16.350686,48.20018830000001],[16.3505009,48.20095810000001],[16.3502632,48.20214200000001],[16.35025,48.2022078]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Zollergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"25344098","geometry":{"type":"LineString","coordinates":[[16.355168,48.20151250000001],[16.3541446,48.20119],[16.3524682,48.20067350000002],[16.3523881,48.20064869999999],[16.352309,48.20062419999999],[16.350701,48.20012589999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lindengasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"209975569","geometry":{"type":"LineString","coordinates":[[16.3531285,48.19917050000001],[16.3529517,48.199331900000004],[16.3529443,48.19934749999999],[16.3529337,48.19936980000003],[16.3529406,48.199409299999985]]},"properties":{"highway":"pedestrian","motor_vehicle":"delivery","name":"Barnabitengasse","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"29048678","geometry":{"type":"LineString","coordinates":[[16.3559068,48.200324800000004],[16.3556095,48.20025190000001],[16.3550855,48.20009010000001],[16.3548895,48.20002950000003],[16.3546283,48.199948800000016],[16.3545445,48.19992400000001],[16.3542499,48.19983669999999],[16.3537794,48.1996972],[16.3535929,48.19964190000002],[16.3530975,48.19946519999999],[16.3529406,48.199409299999985]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"164296306","geometry":{"type":"LineString","coordinates":[[16.3492988,48.199884300000036],[16.3493167,48.199828499999995],[16.3494677,48.19942929999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lcn":"yes","maxspeed":"30","name":"Neubaugasse","oneway":"yes"}},{"type":"Feature","id":"4849311","geometry":{"type":"LineString","coordinates":[[16.3529406,48.199409299999985],[16.3528997,48.19950690000002],[16.3528257,48.1996872],[16.3524152,48.2005891],[16.3523881,48.20064869999999],[16.3523667,48.2007026],[16.351822,48.202079000000026],[16.3517542,48.20220810000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kirchengasse","oneway":"yes","sidewalk":"both","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"146836193","geometry":{"type":"LineString","coordinates":[[16.349043,48.2017711],[16.349053,48.20165029999998],[16.3491083,48.20097849999999],[16.3491116,48.20093610000001],[16.3491367,48.20061620000001],[16.3491957,48.200277099999994],[16.3492764,48.19996449999999],[16.3492988,48.199884300000036]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Neubaugasse","oneway":"yes"}},{"type":"Feature","id":"24582593","geometry":{"type":"LineString","coordinates":[[16.3482641,48.2003186],[16.3483926,48.20025369999999],[16.3491114,48.2002746],[16.3491957,48.200277099999994]]},"properties":{"foot":"yes","highway":"footway","name":"Durchgang zur Ahornergasse","wheelchair":"yes"}},{"type":"Feature","id":"177925967","geometry":{"type":"LineString","coordinates":[[16.3469625,48.199912299999966],[16.347039,48.200354199999964]]},"properties":{"bicycle":"designated","foot":"designated","highway":"path","motor_vehicle":"no","name":"Jenny-Steiner-Weg","segregated":"no"}},{"type":"Feature","id":"4851456","geometry":{"type":"LineString","coordinates":[[16.347039,48.200354199999964],[16.3471924,48.200331500000004],[16.3479756,48.20031370000001],[16.3482641,48.2003186]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ahornergasse","noexit":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"37432025","geometry":{"type":"LineString","coordinates":[[16.3468776,48.19959579999997],[16.3468041,48.199584500000014]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lindengasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"37432021","geometry":{"type":"LineString","coordinates":[[16.3492988,48.199884300000036],[16.3491948,48.199872],[16.3479422,48.19972899999996],[16.3468776,48.19959579999997]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lindengasse","oneway":"yes"}},{"type":"Feature","id":"233609813","geometry":{"type":"LineString","coordinates":[[16.3450224,48.20037099999999],[16.3450268,48.200297000000006],[16.3450547,48.1997514],[16.3450747,48.19935860000001],[16.3450718,48.1992984]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Zieglergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25669262","geometry":{"type":"LineString","coordinates":[[16.3480899,48.19924789999999],[16.3493308,48.199410099999966],[16.3494036,48.19942029999996],[16.3494677,48.19942929999999]]},"properties":{"highway":"living_street","maxspeed":"5","name":"Richtergasse","surface":"asphalt"}},{"type":"Feature","id":"24722571","geometry":{"type":"LineString","coordinates":[[16.3480899,48.19924789999999],[16.3479422,48.19972899999996]]},"properties":{"highway":"living_street","maxspeed":"5","name":"Andlergasse","oneway":"yes"}},{"type":"Feature","id":"31350149","geometry":{"type":"LineString","coordinates":[[16.3470272,48.19912600000001],[16.3474115,48.19917090000001],[16.3480899,48.19924789999999]]},"properties":{"highway":"living_street","maxspeed":"5","name":"Richtergasse","oneway":"yes"}},{"type":"Feature","id":"209068571","geometry":{"type":"LineString","coordinates":[[16.3534913,48.1988499],[16.3531285,48.19917050000001]]},"properties":{"highway":"pedestrian","motor_vehicle":"no","name":"Barnabitengasse","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"328674181","geometry":{"type":"LineString","coordinates":[[16.3516961,48.19878479999997],[16.3515558,48.19889969999997]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"5","motor_vehicle":"delivery","name":"Nelkengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"328674183","geometry":{"type":"LineString","coordinates":[[16.3513063,48.1989767],[16.3514033,48.19884050000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"5","motor_vehicle":"delivery","name":"Zollergasse"}},{"type":"Feature","id":"4849375","geometry":{"type":"LineString","coordinates":[[16.3511094,48.1987192],[16.3512254,48.19859410000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"5","motor_vehicle":"delivery","name":"Kollergerngasse","source":"wien.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"39896748","geometry":{"type":"LineString","coordinates":[[16.3432283,48.199000299999994],[16.3432035,48.19906849999998],[16.3432425,48.20030650000001],[16.3432442,48.20036429999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"164296305","geometry":{"type":"LineString","coordinates":[[16.3468041,48.199584500000014],[16.3451662,48.19931460000001],[16.3450718,48.1992984],[16.3449796,48.19928390000001],[16.3433207,48.199015799999984],[16.3432283,48.199000299999994]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lindengasse","oneway":"yes"}},{"type":"Feature","id":"202582741","geometry":{"type":"LineString","coordinates":[[16.3468776,48.19959579999997],[16.3470272,48.19912600000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"20","name":"Andreasgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"175761787","geometry":{"type":"LineString","coordinates":[[16.3431264,48.19898649999999],[16.3429968,48.19896890000001]]},"properties":{"covered":"yes","cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Stollgasse","oneway":"yes"}},{"type":"Feature","id":"10107368","geometry":{"type":"LineString","coordinates":[[16.350701,48.20012589999999],[16.3508239,48.19975920000002],[16.3509467,48.199495600000006],[16.3513063,48.1989767]]},"properties":{"highway":"residential","maxspeed":"30","name":"Zollergasse"}},{"type":"Feature","id":"25739014","geometry":{"type":"LineString","coordinates":[[16.3432283,48.199000299999994],[16.3431412,48.198988499999984],[16.3431264,48.19898649999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Stollgasse","oneway":"yes"}},{"type":"Feature","id":"209975570","geometry":{"type":"LineString","coordinates":[[16.3525897,48.1992736],[16.3526096,48.1992496],[16.3528016,48.199021000000016],[16.3528595,48.1989461],[16.3528622,48.198887799999994],[16.3532011,48.198554400000006],[16.3536094,48.19874070000003]]},"properties":{"highway":"pedestrian","name":"Barnabitengasse","surface":"cobblestone"}},{"type":"Feature","id":"5893497","geometry":{"type":"LineString","coordinates":[[16.3524843,48.198038800000006],[16.3524864,48.19808840000002],[16.3524882,48.19813049999999],[16.3516961,48.19878479999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Nelkengasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"328674182","geometry":{"type":"LineString","coordinates":[[16.3512254,48.19859410000001],[16.3516515,48.198129600000016],[16.3517015,48.198075099999954]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kollergerngasse","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"22982031","geometry":{"type":"LineString","coordinates":[[16.3506555,48.19763460000004],[16.350721,48.19765849999999],[16.3511589,48.197817999999984],[16.3511807,48.1978436],[16.3511981,48.198048],[16.3512023,48.19809720000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Chwallagasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"122779317","geometry":{"type":"LineString","coordinates":[[16.3507964,48.19811920000001],[16.3512023,48.19809720000001],[16.3517015,48.198075099999954],[16.3524843,48.198038800000006],[16.352802,48.19802200000004],[16.3537118,48.197973899999965],[16.3538334,48.19796740000004],[16.3539279,48.19794350000004],[16.3539797,48.197854199999995],[16.3540361,48.19773280000001],[16.3540604,48.197652000000005]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schadekgasse","oneway":"yes","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"29048677","geometry":{"type":"LineString","coordinates":[[16.350123,48.19830970000001],[16.3502227,48.19834910000003],[16.3502847,48.1983736],[16.3503665,48.19840719999999],[16.3507051,48.19855050000001],[16.3511094,48.1987192],[16.3514033,48.19884050000002],[16.3515558,48.19889969999997],[16.3525897,48.1992736],[16.3529406,48.199409299999985]]},"properties":{"admin_level":"9","bicycle":"yes","boundary":"administrative","cycleway":"opposite","highway":"pedestrian","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"122605513","geometry":{"type":"LineString","coordinates":[[16.3502979,48.1980868],[16.3501848,48.19823339999999],[16.350123,48.19830970000001]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Bundesländerplatz","psv":"yes","source":"wien.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8113566","geometry":{"type":"LineString","coordinates":[[16.3502979,48.1980868],[16.3504946,48.1981236],[16.3507964,48.19811920000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schadekgasse","oneway":"yes","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"286621396","geometry":{"type":"LineString","coordinates":[[16.3432283,48.199000299999994],[16.3432499,48.1989408],[16.343532,48.1982826]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25347121","geometry":{"type":"LineString","coordinates":[[16.3494677,48.19942929999999],[16.3497188,48.19890529999998],[16.3499636,48.198521],[16.3500453,48.19839669999999],[16.350123,48.19830970000001]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","foot":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Neubaugasse","oneway":"yes","psv":"designated","surface":"asphalt"}},{"type":"Feature","id":"202582742","geometry":{"type":"LineString","coordinates":[[16.3470272,48.19912600000001],[16.3470858,48.198950999999994],[16.3471233,48.198846599999996],[16.3471669,48.198780599999964],[16.3471867,48.19872140000001],[16.3472634,48.1985286]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"20","name":"Andreasgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"325533410","geometry":{"type":"LineString","coordinates":[[16.3491702,48.1978397],[16.3491537,48.19786279999997],[16.3490933,48.1979475]]},"properties":{"access":"permissive","highway":"footway","name":"Passage 81"}},{"type":"Feature","id":"4849338","geometry":{"type":"LineString","coordinates":[[16.3452139,48.19856950000002],[16.3451273,48.19855419999999],[16.343532,48.1982826],[16.341276,48.197919100000036]]},"properties":{"highway":"residential","maxspeed":"30","name":"Apollogasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"328674180","geometry":{"type":"LineString","coordinates":[[16.3487098,48.197618000000006],[16.3485832,48.197771899999964]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"5","name":"Esterházygasse","source":"wien.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"325533411","geometry":{"type":"LineString","coordinates":[[16.3493524,48.19760229999997],[16.3491702,48.1978397]]},"properties":{"access":"permissive","highway":"footway","name":"Passage 81","tunnel":"yes"}},{"type":"Feature","id":"26621216","geometry":{"type":"LineString","coordinates":[[16.338888,48.201259600000014],[16.3392374,48.20028389999999],[16.3392584,48.2002253]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Kenyongasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"437399867","geometry":{"type":"LineString","coordinates":[[16.3407879,48.2003651],[16.3393584,48.20023420000001],[16.3392584,48.2002253]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Seidengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"244604983","geometry":{"type":"LineString","coordinates":[[16.3383418,48.19976299999999],[16.3382307,48.20006380000001],[16.3379502,48.20082350000001],[16.3379227,48.200888700000036]]},"properties":{"highway":"service","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes"}},{"type":"Feature","id":"24730556","geometry":{"type":"LineString","coordinates":[[16.3383508,48.200136800000024],[16.3384608,48.200147000000015],[16.3391935,48.20021890000001],[16.3392584,48.2002253]]},"properties":{"highway":"residential","maxspeed":"30","name":"Seidengasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"244604982","geometry":{"type":"LineString","coordinates":[[16.3385348,48.19965020000001],[16.3383418,48.19976299999999]]},"properties":{"highway":"service","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes"}},{"type":"Feature","id":"272672835","geometry":{"type":"LineString","coordinates":[[16.3377917,48.19952430000001],[16.3380726,48.198772399999996]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"163383045","geometry":{"type":"LineString","coordinates":[[16.3377917,48.19952430000001],[16.3378713,48.1996087],[16.3380308,48.19964390000004],[16.3380403,48.199646],[16.3382651,48.19969549999999],[16.3383497,48.199698100000006]]},"properties":{"foot":"yes","highway":"cycleway","name":"Emil-Maurer-Platz","segregated":"no"}},{"type":"Feature","id":"31275231","geometry":{"type":"LineString","coordinates":[[16.3373092,48.20079659999999],[16.3373418,48.2006983],[16.3377917,48.19952430000001]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"356347989","geometry":{"type":"LineString","coordinates":[[16.3328759,48.19957550000001],[16.3332979,48.19969120000002],[16.3342385,48.1999539],[16.3351851,48.20021710000003],[16.3364077,48.2005571]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Märzstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4849398","geometry":{"type":"LineString","coordinates":[[16.3326268,48.200791599999974],[16.3332542,48.199762799999974],[16.3332979,48.19969120000002]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"50","name":"Hackengasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"24867727","geometry":{"type":"LineString","coordinates":[[16.3341795,48.20115580000001],[16.3341312,48.20104029999999],[16.3342385,48.1999539]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"50","name":"Zinckgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"117702985","geometry":{"type":"LineString","coordinates":[[16.332257,48.199405799999965],[16.3322168,48.19947139999999],[16.3315914,48.20049089999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"50","name":"Beingasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"36335533","geometry":{"type":"LineString","coordinates":[[16.3342385,48.1999539],[16.3350137,48.198759300000006]]},"properties":{"cycleway":"opposite","highway":"living_street","lit":"yes","name":"Zinckgasse","oneway":"yes","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"23099006","geometry":{"type":"LineString","coordinates":[[16.336894,48.19927680000001],[16.3359649,48.19901730000001]]},"properties":{"highway":"living_street","name":"Goldschlagstraße","surface":"asphalt"}},{"type":"Feature","id":"117702986","geometry":{"type":"LineString","coordinates":[[16.3359649,48.19901730000001],[16.3351851,48.20021710000003]]},"properties":{"highway":"living_street","lit":"yes","name":"Pelzgasse"}},{"type":"Feature","id":"24867720","geometry":{"type":"LineString","coordinates":[[16.3312254,48.19911780000001],[16.3312991,48.19913840000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Märzstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"117702987","geometry":{"type":"LineString","coordinates":[[16.3364077,48.2005571],[16.336894,48.19927680000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Löhrgasse","old_name":"Michaeler-Gasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","source:old_name":"Aufschrift bei Löhrgasse 13"}},{"type":"Feature","id":"356347988","geometry":{"type":"LineString","coordinates":[[16.3312991,48.19913840000001],[16.3318471,48.1992927],[16.3321825,48.199385199999995],[16.332257,48.199405799999965],[16.3323332,48.1994272],[16.3325825,48.199497399999984],[16.3328759,48.19957550000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Märzstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"36335397","geometry":{"type":"LineString","coordinates":[[16.336894,48.19927680000001],[16.3376999,48.199499],[16.3377917,48.19952430000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Goldschlagstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"199261366","geometry":{"type":"LineString","coordinates":[[16.3305501,48.20019719999999],[16.3306641,48.200229000000036],[16.330696,48.20023800000001],[16.3315914,48.20049089999998],[16.3326268,48.200791599999974],[16.3331314,48.200925900000016],[16.3332284,48.20094699999996],[16.3332539,48.2009525],[16.3340072,48.20111940000001],[16.3341795,48.20115580000001],[16.3360316,48.201432899999986],[16.336914,48.20152719999999],[16.3370453,48.20154170000001]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Hütteldorfer Straße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"33873786","geometry":{"type":"LineString","coordinates":[[16.3306641,48.200229000000036],[16.3306108,48.20031990000004],[16.330516,48.2004809],[16.33041,48.200682900000004],[16.3303188,48.20086549999999],[16.3301995,48.20115870000001],[16.3301217,48.20139109999997],[16.3300672,48.20161390000001]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Markgraf-Rüdiger-Straße","oneway":"yes"}},{"type":"Feature","id":"5003707","geometry":{"type":"LineString","coordinates":[[16.3283027,48.1995608],[16.327851,48.200384499999984],[16.3276789,48.20080040000002],[16.3275757,48.201087700000016],[16.3275343,48.201223200000044]]},"properties":{"highway":"residential","maxspeed":"30","name":"Costagasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003710","geometry":{"type":"LineString","coordinates":[[16.3264144,48.200158499999986],[16.3266393,48.19969850000001]]},"properties":{"created_by":"Potlatch 0.10f","highway":"footway","name":"Zwingligasse"}},{"type":"Feature","id":"5003728","geometry":{"type":"LineString","coordinates":[[16.3295104,48.1999055],[16.3291521,48.20064049999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Pouthongasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5003716","geometry":{"type":"LineString","coordinates":[[16.3261404,48.2001468],[16.3259318,48.20112039999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krebsengartengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"37256869","geometry":{"type":"LineString","coordinates":[[16.3241737,48.200234799999976],[16.32504,48.20016620000004],[16.3251509,48.20015720000001],[16.3253863,48.200140600000026],[16.3256317,48.200134299999974],[16.3261404,48.2001468],[16.3264144,48.200158499999986],[16.3270782,48.2002468],[16.327851,48.200384499999984],[16.3286192,48.20054099999999],[16.3291521,48.20064049999999],[16.3300845,48.20081690000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Loeschenkohlgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4950558","geometry":{"type":"LineString","coordinates":[[16.3302082,48.204556999999994],[16.3301763,48.20448880000001],[16.3301066,48.204297999999966],[16.3300315,48.204050600000016],[16.3299939,48.2039087],[16.3299769,48.203845],[16.3298996,48.203564400000005],[16.3298493,48.203295300000036],[16.3298078,48.2030642],[16.3297316,48.20256520000001],[16.3297345,48.20238279999998],[16.3297582,48.2020411],[16.3297755,48.201888499999995],[16.3297965,48.20174009999997],[16.3298291,48.20159290000001],[16.3298776,48.201392],[16.3299634,48.20112649999999],[16.3300627,48.20087670000001],[16.3300845,48.20081690000001],[16.3302346,48.200506399999995],[16.330386,48.20025749999999],[16.3304373,48.20016559999999]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Markgraf-Rüdiger-Straße","oneway":"yes"}},{"type":"Feature","id":"24867719","geometry":{"type":"LineString","coordinates":[[16.3301651,48.198826800000035],[16.330709,48.19897069999999],[16.3312254,48.19911780000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Reithofferplatz","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5000207","geometry":{"type":"LineString","coordinates":[[16.3295104,48.1999055],[16.330128,48.19888789999999],[16.3301651,48.198826800000035]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Pouthongasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"106674746","geometry":{"type":"LineString","coordinates":[[16.3275496,48.199362199999996],[16.3283027,48.1995608],[16.328507,48.199614800000006],[16.3295104,48.1999055],[16.3303921,48.200153099999994],[16.3304373,48.20016559999999],[16.3305501,48.20019719999999]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Hütteldorfer Straße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5003732","geometry":{"type":"LineString","coordinates":[[16.3305501,48.20019719999999],[16.3305986,48.200119700000045],[16.3311854,48.1991817],[16.3312254,48.19911780000001]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Tannengasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5000211","geometry":{"type":"LineString","coordinates":[[16.3272581,48.199873300000036],[16.3266393,48.19969850000001],[16.3254322,48.199357599999985]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Plunkergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24738225","geometry":{"type":"LineString","coordinates":[[16.3267664,48.20238600000002],[16.3266971,48.2023485],[16.3266541,48.202316499999995],[16.3266362,48.20229930000002],[16.3266198,48.20227599999998],[16.3266009,48.202250100000015],[16.3265885,48.20221969999997],[16.3265842,48.202177500000005],[16.3266052,48.201969599999984],[16.3266299,48.20179809999999],[16.3266448,48.20169279999999],[16.326674,48.201525299999986],[16.3266972,48.20142309999997],[16.3267213,48.2013197],[16.3267559,48.20116619999999],[16.326784,48.20106200000001],[16.3268236,48.20093650000001],[16.3268985,48.200709700000004],[16.3269788,48.20048689999999],[16.3270782,48.2002468],[16.3271597,48.200070900000014],[16.3272581,48.199873300000036],[16.3273989,48.1996216],[16.3275496,48.199362199999996]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schweglerstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"175761788","geometry":{"type":"LineString","coordinates":[[16.3429968,48.19896890000001],[16.3412007,48.19872509999999],[16.3411067,48.19871409999999]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Stollgasse","oneway":"yes"}},{"type":"Feature","id":"211635132","geometry":{"type":"LineString","coordinates":[[16.3411067,48.19871409999999],[16.3410947,48.19876260000001],[16.3410851,48.1988125],[16.3410658,48.19892569999999],[16.3410357,48.199096],[16.3409856,48.1993516],[16.3409448,48.19956450000001],[16.3409067,48.19976539999996],[16.3408673,48.19997889999996],[16.3408286,48.200190099999986],[16.3407879,48.2003651],[16.34078,48.200402199999985],[16.3407432,48.20059220000002],[16.340704,48.200789499999985],[16.3406665,48.200994200000025],[16.3406316,48.201195299999995],[16.3405904,48.20139169999999],[16.3405522,48.20158740000002],[16.3405188,48.20177189999998],[16.3405052,48.201846700000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Kaiserstraße"}},{"type":"Feature","id":"192808254","geometry":{"type":"LineString","coordinates":[[16.3392584,48.2002253],[16.3392825,48.20016050000001],[16.3398763,48.19856340000001],[16.3398866,48.19853570000001],[16.3398928,48.19851890000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kenyongasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"173047577","geometry":{"type":"LineString","coordinates":[[16.3411067,48.19871409999999],[16.3410059,48.19869510000001],[16.3408935,48.19867590000001]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Stollgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"146678747","geometry":{"type":"LineString","coordinates":[[16.3392533,48.19841509999998],[16.3391188,48.198404900000014],[16.3390104,48.19839669999999]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Stollgasse","oneway":"yes"}},{"type":"Feature","id":"146678749","geometry":{"type":"LineString","coordinates":[[16.3408935,48.19867590000001],[16.3402714,48.19857830000001],[16.3398928,48.19851890000001],[16.3392533,48.19841509999998]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Stollgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"299709376","geometry":{"type":"LineString","coordinates":[[16.3385645,48.19891580000004],[16.3385907,48.1988801],[16.3386213,48.198830999999984],[16.3386461,48.198769],[16.3386515,48.19873260000003],[16.3386488,48.19870130000001],[16.3386399,48.19867679999999],[16.3386184,48.1986493]]},"properties":{"highway":"footway","name":"Emil-Maurer-Platz","source":"basemap.at"}},{"type":"Feature","id":"23099005","geometry":{"type":"LineString","coordinates":[[16.3350137,48.198759300000006],[16.3359649,48.19901730000001]]},"properties":{"foot":"yes","highway":"cycleway","name":"Goldschlagstraße","segregated":"no"}},{"type":"Feature","id":"299709373","geometry":{"type":"LineString","coordinates":[[16.3380308,48.19964390000004],[16.3380619,48.199547800000005],[16.3381718,48.19924739999999],[16.3381926,48.19921740000001],[16.3382169,48.19920350000001],[16.3382507,48.19919599999997],[16.3382949,48.199190200000004],[16.3383348,48.199186199999986],[16.3383565,48.199183000000005],[16.3383615,48.199181399999986],[16.3383853,48.19917389999998],[16.3384164,48.199162099999995],[16.3384574,48.199137699999994],[16.3385128,48.1990869],[16.338541,48.19905370000001],[16.3385614,48.19900419999999],[16.3385752,48.19896130000001],[16.3385645,48.19891580000004],[16.3385607,48.1989097],[16.3385339,48.1988776],[16.3384721,48.19882230000002],[16.33843,48.19878109999999],[16.3384114,48.19875540000001],[16.3383985,48.19870640000002],[16.3383967,48.19863409999999],[16.3384081,48.19859700000001],[16.3384385,48.19853330000001],[16.3384644,48.198507800000016],[16.3385011,48.19846830000003],[16.3385311,48.19844230000001],[16.3385513,48.198412899999994]]},"properties":{"highway":"footway","name":"Emil-Maurer-Platz","source":"basemap.at"}},{"type":"Feature","id":"299709375","geometry":{"type":"LineString","coordinates":[[16.3382651,48.19969549999999],[16.3382873,48.199684400000024],[16.3383206,48.19963229999999],[16.3383386,48.199587500000035],[16.3384348,48.19933409999999],[16.3384385,48.199309400000004],[16.3384305,48.199262000000004],[16.338413,48.19923639999999],[16.3383914,48.199208099999964],[16.3383712,48.19919139999999],[16.3383615,48.199181399999986],[16.3383468,48.1991635],[16.3383273,48.199146300000024],[16.3383056,48.199117400000034],[16.3382959,48.19910299999998],[16.3382782,48.19904300000002],[16.3382768,48.19899269999996],[16.3382824,48.1989605],[16.3383029,48.198878500000006],[16.3383246,48.198848200000015],[16.3383499,48.19881269999999],[16.3383709,48.19878879999999],[16.3383961,48.198767799999985],[16.3384114,48.19875540000001],[16.3384291,48.198744000000005],[16.3384487,48.198730900000015],[16.3384872,48.198710800000015],[16.3385397,48.19868629999999],[16.3385994,48.198659099999986],[16.3386184,48.1986493],[16.3386359,48.19863669999998],[16.3386591,48.19861],[16.3386697,48.19859170000001],[16.3386886,48.19854860000004],[16.338697,48.19850020000004],[16.3387027,48.198475299999984],[16.3387083,48.198455999999965]]},"properties":{"highway":"footway","name":"Emil-Maurer-Platz","source":"basemap.at"}},{"type":"Feature","id":"117693227","geometry":{"type":"LineString","coordinates":[[16.3332979,48.19969120000002],[16.3340373,48.198481000000015]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hackengasse","oneway":"yes"}},{"type":"Feature","id":"162373026","geometry":{"type":"LineString","coordinates":[[16.3390104,48.19839669999999],[16.3389723,48.19849719999999],[16.3385348,48.19965020000001],[16.3383942,48.200020799999976],[16.3383508,48.200136800000024],[16.3380905,48.200824899999986],[16.338058,48.200907599999994],[16.3379523,48.20120459999998],[16.3378895,48.201425099999994],[16.3378645,48.20150989999999],[16.3378269,48.2016304]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"5000208","geometry":{"type":"LineString","coordinates":[[16.3291533,48.19854510000002],[16.3291125,48.19861259999999],[16.328507,48.199614800000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Benedikt-Schellinger-Gasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"25585620","geometry":{"type":"LineString","coordinates":[[16.3247453,48.1986426],[16.3248507,48.198638700000004],[16.3249592,48.198654000000005],[16.325705,48.198854900000015],[16.3266088,48.19910620000002],[16.3275496,48.199362199999996]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Hütteldorfer Straße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"47194523","geometry":{"type":"LineString","coordinates":[[16.3275496,48.199362199999996],[16.3278447,48.19888660000001],[16.3281459,48.19840970000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schweglerstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"25585619","geometry":{"type":"LineString","coordinates":[[16.3282293,48.19828050000001],[16.3283382,48.19831099999999],[16.3285169,48.1983616]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Märzstraße","source:maxspeed":"sign"}},{"type":"Feature","id":"138647953","geometry":{"type":"LineString","coordinates":[[16.3282293,48.19828050000001],[16.3281767,48.198362],[16.3281459,48.19840970000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schweglerstraße"}},{"type":"Feature","id":"141233623","geometry":{"type":"LineString","coordinates":[[16.3285169,48.1983616],[16.3289351,48.198482799999994],[16.3290634,48.19851940000001],[16.3291533,48.19854510000002],[16.329285,48.1985818],[16.3301651,48.198826800000035]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Märzstraße","source:maxspeed":"sign"}},{"type":"Feature","id":"272672836","geometry":{"type":"LineString","coordinates":[[16.3380726,48.198772399999996],[16.3382355,48.1983261],[16.3382648,48.19821479999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"4","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221","turn:lanes":"through|through|through|through;right"}},{"type":"Feature","id":"4583442","geometry":{"type":"LineString","coordinates":[[16.3390104,48.19839669999999],[16.3384636,48.19826330000001],[16.3384214,48.198252999999994],[16.3383819,48.198243399999996],[16.3382648,48.19821479999999]]},"properties":{"highway":"secondary","lanes":"7","lanes:backward":"3","lanes:forward":"4","lit":"yes","maxspeed":"50","name":"Neubaugürtel","ref":"B224","turn:lanes:backward":"left|left|left","turn:lanes:forward":"left|left|through|through"}},{"type":"Feature","id":"146673487","geometry":{"type":"LineString","coordinates":[[16.341276,48.197919100000036],[16.3411383,48.198527299999995],[16.3411156,48.19865519999999],[16.3411067,48.19871409999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Kaiserstraße","oneway":"yes"}},{"type":"Feature","id":"272668388","geometry":{"type":"LineString","coordinates":[[16.3377541,48.19803239999996],[16.338119,48.19813829999998],[16.3382648,48.19821479999999]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Felberstraße","oneway":"yes","ref":"B224","turn:lanes":"through|through"}},{"type":"Feature","id":"38279773","geometry":{"type":"LineString","coordinates":[[16.3377541,48.19803239999996],[16.3379491,48.198025],[16.3380534,48.198006600000014],[16.3380932,48.1979834],[16.3381903,48.1979278],[16.3382852,48.1977794]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Felberstraße","oneway":"yes","turn:lanes":"right|right"}},{"type":"Feature","id":"198173144","geometry":{"type":"LineString","coordinates":[[16.3402714,48.19857830000001],[16.3407657,48.19787710000003],[16.341276,48.197919100000036]]},"properties":{"highway":"residential","maxspeed":"30","name":"Apollogasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24867725","geometry":{"type":"LineString","coordinates":[[16.3312254,48.19911780000001],[16.331264,48.1990557],[16.3315069,48.1986651],[16.3319599,48.1979771],[16.3319918,48.19792469999999],[16.3320022,48.19790760000001]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Reithofferplatz","source":"yahoo"}},{"type":"Feature","id":"9066109","geometry":{"type":"LineString","coordinates":[[16.3373706,48.198017799999974],[16.3372858,48.19819810000001],[16.336894,48.19927680000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Löhrgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583628","geometry":{"type":"LineString","coordinates":[[16.3367061,48.19783770000001],[16.3359649,48.19901730000001]]},"properties":{"cycleway":"opposite_lane","highway":"living_street","lanes":"1","name":"Pelzgasse","oneway":"yes"}},{"type":"Feature","id":"24867724","geometry":{"type":"LineString","coordinates":[[16.3350137,48.198759300000006],[16.3340373,48.198481000000015],[16.333016,48.1981954],[16.3320022,48.19790760000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Goldschlagstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"9066013","geometry":{"type":"LineString","coordinates":[[16.3357797,48.19759880000001],[16.3350137,48.198759300000006]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zinckgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"246975210","geometry":{"type":"LineString","coordinates":[[16.3367846,48.1977579],[16.3377541,48.19803239999996]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Felberstraße","oneway":"yes","ref":"B224","turn:lanes":"through|through|right|right"}},{"type":"Feature","id":"43086771","geometry":{"type":"LineString","coordinates":[[16.3308895,48.1976123],[16.3309219,48.19761280000003],[16.3309516,48.19760229999997],[16.3309735,48.197590700000006],[16.3309786,48.19758239999999]]},"properties":{"highway":"living_street","name":"Pouthongasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"24867723","geometry":{"type":"LineString","coordinates":[[16.3309786,48.19758239999999],[16.3310217,48.19759379999999],[16.3314125,48.197701300000034],[16.331934,48.197844599999996],[16.3320022,48.19790760000001]]},"properties":{"foot":"yes","highway":"cycleway","lcn":"yes","name":"Reithofferplatz","source":"yahoo"}},{"type":"Feature","id":"276166590","geometry":{"type":"LineString","coordinates":[[16.3272921,48.198024799999985],[16.3272514,48.1980892],[16.3266088,48.19910620000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Stättermayergasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"145389585","geometry":{"type":"LineString","coordinates":[[16.3256629,48.197574599999996],[16.3263801,48.1977703],[16.3272921,48.198024799999985],[16.3275947,48.19810849999999],[16.3281083,48.198247699999996],[16.3282293,48.19828050000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Märzstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"26158102","geometry":{"type":"LineString","coordinates":[[16.325705,48.198854900000015],[16.3263387,48.19783690000003],[16.3263801,48.1977703]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Preysinggasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"24867721","geometry":{"type":"LineString","coordinates":[[16.3301651,48.198826800000035],[16.3301885,48.19875200000001],[16.3302921,48.19858449999998],[16.3304665,48.198281399999985],[16.3305219,48.198193599999996],[16.3308134,48.1977411],[16.3308514,48.197675300000014],[16.3308712,48.19764110000003],[16.3308895,48.1976123]]},"properties":{"cycleway":"lane","highway":"service","lit":"yes","motorcar":"no","name":"Reithofferplatz","source":"yahoo"}},{"type":"Feature","id":"146683495","geometry":{"type":"LineString","coordinates":[[16.3619301,48.1974213],[16.3624079,48.19768210000001],[16.3629586,48.1979767],[16.3637585,48.1984343],[16.3638149,48.19846910000001],[16.3638905,48.19851510000001],[16.3649556,48.199081699999994],[16.3650293,48.19912049999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"5891901","geometry":{"type":"LineString","coordinates":[[16.3657935,48.197344799999996],[16.3658725,48.19729559999999],[16.3659698,48.197273199999984],[16.3660753,48.19729380000004],[16.366569,48.197514600000005],[16.367033,48.19773240000001],[16.3671486,48.1977493]]},"properties":{"highway":"residential","maxspeed":"30","name":"Margaretenstraße","oneway":"yes","sidewalk":"both","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5891928","geometry":{"type":"LineString","coordinates":[[16.3629586,48.1979767],[16.3630145,48.197932899999984],[16.3638139,48.19727760000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schikanedergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"325533412","geometry":{"type":"LineString","coordinates":[[16.3494049,48.197535200000004],[16.3493524,48.19760229999997]]},"properties":{"access":"permissive","highway":"footway","name":"Passage 81"}},{"type":"Feature","id":"5893492","geometry":{"type":"LineString","coordinates":[[16.3586637,48.19902819999999],[16.3587273,48.19895780000002],[16.359276,48.198341700000014],[16.3599924,48.197545899999994],[16.3600118,48.197525299999995],[16.36006,48.19746670000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Köstlergasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"233609121","geometry":{"type":"LineString","coordinates":[[16.347702,48.19750260000001],[16.3481134,48.1976286],[16.3485832,48.197771899999964],[16.3490933,48.1979475],[16.3499708,48.1982495],[16.350123,48.19830970000001]]},"properties":{"admin_level":"9","bicycle":"yes","boundary":"administrative","cycleway":"opposite","highway":"pedestrian","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"49780445","geometry":{"type":"LineString","coordinates":[[16.347702,48.19750260000001],[16.3476631,48.19759350000001],[16.3472634,48.1985286]]},"properties":{"highway":"residential","maxspeed":"20","name":"Andreasgasse","oneway":"no"}},{"type":"Feature","id":"233664336","geometry":{"type":"LineString","coordinates":[[16.3474896,48.1972701],[16.3474422,48.197327],[16.3473704,48.19741569999999]]},"properties":{"bicycle":"yes","emergency":"yes","foot":"yes","highway":"residential","maxspeed":"30","motor_vehicle":"no","name":"Otto-Bauer-Gasse","old_name":"Kasernengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"492719821","geometry":{"type":"LineString","coordinates":[[16.3635551,48.19856570000002],[16.3633231,48.19845000000001],[16.363268,48.19843660000001],[16.3629759,48.19828080000002],[16.3626649,48.198115],[16.3625037,48.19802899999999],[16.3622637,48.197914499999996],[16.3618179,48.197701800000004],[16.3615744,48.1975999],[16.3613479,48.19750779999998],[16.3611013,48.197422700000004],[16.3607871,48.197340999999994],[16.3607752,48.197337999999974],[16.3603401,48.197250800000006],[16.3597322,48.19713759999999],[16.3592895,48.1970551]]},"properties":{"highway":"footway","name":"Reserlgasse","source":"wien.gv.at-labels"}},{"type":"Feature","id":"226975664","geometry":{"type":"LineString","coordinates":[[16.3607878,48.19722590000001],[16.3607752,48.197337999999974],[16.3607225,48.197442800000005]]},"properties":{"highway":"footway","name":"Maria-Welser-Platz","source":"wien.gv.at-labels"}},{"type":"Feature","id":"23395154","geometry":{"type":"LineString","coordinates":[[16.3656304,48.19696479999999],[16.365682,48.19689069999998]]},"properties":{"cycleway":"opposite_lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Schleifmühlgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"178284517","geometry":{"type":"LineString","coordinates":[[16.3648843,48.19759880000001],[16.365523,48.19706909999999],[16.3656304,48.19696479999999]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Schleifmühlgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"116971446","geometry":{"type":"LineString","coordinates":[[16.3669,48.200144499999965],[16.3668767,48.20002320000003],[16.3668654,48.19999330000002],[16.3668111,48.19984679999999],[16.3667226,48.19961230000001],[16.3666796,48.19950859999997],[16.3666497,48.1994234],[16.366286,48.1985478],[16.3662548,48.1984726],[16.3662239,48.19839679999998],[16.3657935,48.197344799999996],[16.3657686,48.19726539999999],[16.365674,48.19703980000003],[16.3656304,48.19696479999999]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"224800030","geometry":{"type":"LineString","coordinates":[[16.3593414,48.1967118],[16.3594021,48.196675699999986]]},"properties":{"highway":"residential","name":"Kettenbrücke","note":"no vehicle allowed Saturday 05:00-189:00","surface":"asphalt","vehicle:conditional":"no @ (Sa 05:00-18:00)"}},{"type":"Feature","id":"5893508","geometry":{"type":"LineString","coordinates":[[16.3590637,48.19726940000001],[16.3590903,48.19720910000001],[16.35912,48.19714099999996]]},"properties":{"highway":"residential","name":"Kettenbrücke","note":"no vehicle allowed Saturday 05:00-189:00","surface":"asphalt","vehicle:conditional":"no @ (Sa 05:00-18:00)"}},{"type":"Feature","id":"5893450","geometry":{"type":"LineString","coordinates":[[16.3586665,48.197193999999996],[16.3586268,48.19725489999999],[16.3586132,48.197269300000016],[16.3583431,48.197532300000006],[16.3573511,48.198488499999996],[16.3572954,48.19854219999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stiegengasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"25511028","geometry":{"type":"LineString","coordinates":[[16.3542819,48.197205],[16.3542931,48.197246500000006],[16.3543449,48.197277799999966],[16.3565315,48.19798589999999],[16.356592,48.198005499999994]]},"properties":{"highway":"living_street","name":"Luftbadgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"5893416","geometry":{"type":"LineString","coordinates":[[16.3541455,48.19722329999999],[16.3541553,48.197275399999995]]},"properties":{"highway":"steps","name":"Viktor-Matejka-Stiege"}},{"type":"Feature","id":"147399465","geometry":{"type":"LineString","coordinates":[[16.3592165,48.196931500000005],[16.3592998,48.196744499999994],[16.3593414,48.1967118]]},"properties":{"highway":"residential","name":"Kettenbrücke","note":"no vehicle allowed Saturday 05:00-189:00","surface":"asphalt","vehicle:conditional":"no @ (Sa 05:00-18:00)"}},{"type":"Feature","id":"25371300","geometry":{"type":"LineString","coordinates":[[16.3656474,48.200038500000005],[16.3656088,48.20001380000002],[16.3655472,48.1999744],[16.3650098,48.199678300000016],[16.364688,48.19950090000003],[16.3646564,48.19948340000002],[16.364622,48.19946450000003],[16.364552,48.19942690000002],[16.3635304,48.19887889999998],[16.3634115,48.19881509999996],[16.3631136,48.19866739999998],[16.362755,48.198489600000016],[16.3626361,48.198430599999995],[16.3624138,48.198323200000004],[16.362226,48.19823250000002],[16.3620124,48.198128800000035],[16.3617924,48.19802200000004],[16.3614865,48.1978756],[16.3612245,48.19776169999997],[16.3608832,48.197643700000015],[16.3606125,48.1975755],[16.3601711,48.1974883],[16.36006,48.19746670000001],[16.3596298,48.197383900000005],[16.3592095,48.19729860000001],[16.3590637,48.19726940000001],[16.3589128,48.1972399],[16.3586665,48.197193999999996],[16.3583422,48.197132099999976],[16.3576206,48.19699079999998],[16.3572269,48.19690080000001],[16.3567697,48.196782600000006]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Linke Wienzeile","oneway":"yes","ref":"B1","source":"geoimage.at","surface":"asphalt"}},{"type":"Feature","id":"334946770","geometry":{"type":"LineString","coordinates":[[16.3591624,48.1970446],[16.3592165,48.196931500000005]]},"properties":{"highway":"residential","name":"Kettenbrücke","note":"no vehicle allowed Saturday 05:00-189:00","surface":"asphalt","vehicle:conditional":"no @ (Sa 05:00-18:00)"}},{"type":"Feature","id":"39577428","geometry":{"type":"LineString","coordinates":[[16.356592,48.198005499999994],[16.357005,48.19761399999999],[16.3575501,48.19708259999996],[16.3575932,48.19704060000001],[16.3576206,48.19699079999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Joanelligasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"334946771","geometry":{"type":"LineString","coordinates":[[16.35912,48.19714099999996],[16.3591624,48.1970446]]},"properties":{"highway":"residential","name":"Kettenbrücke","note":"no vehicle allowed Saturday 05:00-189:00","surface":"asphalt","vehicle:conditional":"no @ (Sa 05:00-18:00)"}},{"type":"Feature","id":"270940087","geometry":{"type":"LineString","coordinates":[[16.3567697,48.196782600000006],[16.3564876,48.19670960000002],[16.3562098,48.196622700000006]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Linke Wienzeile","oneway":"yes","ref":"B1","source":"geoimage.at","surface":"asphalt","turn:lanes":"slight_left|slight_left;slight_right"}},{"type":"Feature","id":"251431850","geometry":{"type":"LineString","coordinates":[[16.3540925,48.19720649999999],[16.3541439,48.19720380000001]]},"properties":{"highway":"footway","name":"Viktor-Matejka-Stiege"}},{"type":"Feature","id":"218080890","geometry":{"type":"LineString","coordinates":[[16.3528239,48.1971489],[16.3530251,48.197240300000004],[16.3537672,48.19757020000003],[16.3538376,48.1975994],[16.3539352,48.19762239999997],[16.3540604,48.197652000000005],[16.3541497,48.197674800000044],[16.3542818,48.19770840000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Gumpendorfer Straße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"251431849","geometry":{"type":"LineString","coordinates":[[16.3541341,48.1971375],[16.3541406,48.197187499999984]]},"properties":{"highway":"steps","name":"Viktor-Matejka-Stiege"}},{"type":"Feature","id":"251431851","geometry":{"type":"LineString","coordinates":[[16.3541455,48.19722329999999],[16.3541439,48.19720380000001],[16.3541406,48.197187499999984]]},"properties":{"highway":"footway","name":"Viktor-Matejka-Stiege"}},{"type":"Feature","id":"4583767","geometry":{"type":"LineString","coordinates":[[16.3509608,48.19725249999999],[16.3508878,48.19721609999999],[16.3505792,48.19706200000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Damböckgasse","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"122605531","geometry":{"type":"LineString","coordinates":[[16.3539981,48.19747269999999],[16.3540014,48.19727640000002],[16.3539755,48.19712179999999]]},"properties":{"bus":"yes","highway":"platform","name":"Haus des Meeres","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"217337376","geometry":{"type":"LineString","coordinates":[[16.3496948,48.19662050000002],[16.3505792,48.19706200000002]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Damböckgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"5893410","geometry":{"type":"LineString","coordinates":[[16.357005,48.19761399999999],[16.3569617,48.19759619999999],[16.3550212,48.1967971],[16.354553,48.19661230000003],[16.3539581,48.19666000000001],[16.3538996,48.196664699999985]]},"properties":{"highway":"living_street","name":"Dürergasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"233609818","geometry":{"type":"LineString","coordinates":[[16.3496948,48.19662050000002],[16.349628,48.196674400000006],[16.3492221,48.19699510000001],[16.3487098,48.197618000000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Esterházygasse","source":"wien.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26258437","geometry":{"type":"LineString","coordinates":[[16.3517313,48.197091],[16.3517656,48.1970767],[16.3519277,48.197009099999974],[16.3520521,48.19695730000004],[16.3521399,48.196920699999964],[16.3522294,48.19688289999999]]},"properties":{"bicycle":"yes","foot":"yes","highway":"cycleway","name":"Blümelgasse","segregated":"no"}},{"type":"Feature","id":"26258436","geometry":{"type":"LineString","coordinates":[[16.3512323,48.1969115],[16.3513124,48.196940299999994],[16.3517313,48.197091]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blümelgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"172325303","geometry":{"type":"LineString","coordinates":[[16.3622685,48.19645589999999],[16.3620938,48.19689829999999],[16.3619871,48.19722780000001],[16.3619301,48.1974213]]},"properties":{"highway":"residential","maxspeed":"30","name":"Preßgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"139224654","geometry":{"type":"LineString","coordinates":[[16.3622685,48.19645589999999],[16.3623651,48.19653069999998],[16.362625,48.196659600000004],[16.3637566,48.19724709999997],[16.3638139,48.19727760000001],[16.3646992,48.19775240000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mühlgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"concrete"}},{"type":"Feature","id":"4786903","geometry":{"type":"LineString","coordinates":[[16.3656304,48.19696479999999],[16.3656027,48.196890800000006],[16.3651049,48.19642479999999]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"secondary","lit":"yes","maxspeed":"50","name":"Margaretenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"25678074","geometry":{"type":"LineString","coordinates":[[16.3651049,48.19642479999999],[16.3644104,48.19684250000003],[16.3638139,48.19727760000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schikanedergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5132421","geometry":{"type":"LineString","coordinates":[[16.3651049,48.19642479999999],[16.3651555,48.196361499999995],[16.3651916,48.1963437],[16.3656664,48.196135200000015],[16.3661863,48.1959799],[16.3669013,48.19584960000003],[16.3669526,48.195840299999986],[16.3670485,48.195822599999985]]},"properties":{"bicycle":"yes","highway":"secondary","lit":"yes","maxspeed":"30","name":"Paulanergasse","oneway":"yes","source:maxspeed":"sign"}},{"type":"Feature","id":"181202512","geometry":{"type":"LineString","coordinates":[[16.3618009,48.196029700000025],[16.3617128,48.196108400000014],[16.3616494,48.196164899999985],[16.3609514,48.196990700000015],[16.3609046,48.1970484]]},"properties":{"highway":"residential","maxspeed":"30","name":"Heumühlgasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5132419","geometry":{"type":"LineString","coordinates":[[16.3618009,48.196029700000025],[16.3622063,48.196396899999996],[16.3622685,48.19645589999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mühlgasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"195664624","geometry":{"type":"LineString","coordinates":[[16.365682,48.19689069999998],[16.3657133,48.19687290000002],[16.3660421,48.19670350000001],[16.3663593,48.19657290000001],[16.3670056,48.19641669999996],[16.3670481,48.19640640000003],[16.3671592,48.1963796]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","cycleway:left":"shared_lane","highway":"secondary","lit":"yes","maxspeed":"30","name":"Schleifmühlgasse","oneway":"yes","source:maxspeed":"sign","surface":"cobblestone"}},{"type":"Feature","id":"5094768","geometry":{"type":"LineString","coordinates":[[16.3634387,48.195339200000035],[16.363376,48.1954016],[16.3627404,48.1960138],[16.3623342,48.19639440000003],[16.3622685,48.19645589999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Preßgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5132428","geometry":{"type":"LineString","coordinates":[[16.3651049,48.19642479999999],[16.3647011,48.19615060000001],[16.364315,48.195870600000006],[16.3637095,48.19547690000002]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"tertiary","maxspeed":"50","name":"Margaretenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"5893454","geometry":{"type":"LineString","coordinates":[[16.355589,48.19649480000004],[16.3555257,48.1965285],[16.3550212,48.1967971],[16.3542996,48.19716740000001],[16.3542819,48.197205]]},"properties":{"highway":"living_street","name":"Eggerthgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"210037962","geometry":{"type":"LineString","coordinates":[[16.3557535,48.196537500000034],[16.3556919,48.19652189999999],[16.3556473,48.19651060000001]]},"properties":{"cycleway":"opposite_lane","cycleway:left":"shared_lane","highway":"residential","maxspeed":"30","name":"Magdalenenstraße","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt","traffic_calming":"table"}},{"type":"Feature","id":"251428134","geometry":{"type":"LineString","coordinates":[[16.3558134,48.196552800000006],[16.3557535,48.196537500000034]]},"properties":{"fixme":"maxspeed","highway":"residential","name":"Magdalenenstraße","oneway":"yes","source":"yahoo","surface":"asphalt","traffic_calming":"table"}},{"type":"Feature","id":"5893489","geometry":{"type":"LineString","coordinates":[[16.3562098,48.196622700000006],[16.355979,48.196591299999994],[16.3558134,48.196552800000006]]},"properties":{"fixme":"maxspeed","highway":"residential","name":"Magdalenenstraße","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"28667827","geometry":{"type":"LineString","coordinates":[[16.3594021,48.196675699999986],[16.3594442,48.19662170000001],[16.360279,48.195603800000015],[16.3604816,48.19535680000004],[16.3608641,48.194902600000006],[16.3608835,48.19487960000001],[16.3609207,48.19485679999997],[16.3620011,48.1941951]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite_lane","cycleway:left":"shared_lane","highway":"residential","maxspeed":"30","name":"Kettenbrückengasse","oneway":"yes","oneway:bicycle":"no","parking:lane:both":"parallel","source":"geoimage.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"29072522","geometry":{"type":"LineString","coordinates":[[16.3574893,48.1961689],[16.3576828,48.19622609999999],[16.3584236,48.19644490000002],[16.359069,48.19659419999999],[16.3592247,48.196633899999995],[16.3594021,48.196675699999986],[16.3594871,48.19669590000001],[16.3599126,48.1968009],[16.3609046,48.1970484],[16.3613807,48.19719190000001],[16.3617868,48.197357899999986],[16.3619301,48.1974213]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"270940086","geometry":{"type":"LineString","coordinates":[[16.3562098,48.196622700000006],[16.3558234,48.19647170000002],[16.3557825,48.1964519],[16.3557063,48.196415],[16.3553778,48.19625619999999],[16.3552103,48.196158999999994],[16.3550863,48.1960871],[16.3547905,48.195890599999956],[16.3545909,48.19574350000002],[16.3545016,48.195666500000016],[16.3544088,48.19558649999999],[16.3542476,48.19540599999996],[16.3540502,48.1950741],[16.3540141,48.19496080000002],[16.35393,48.19469649999999],[16.3539343,48.1946025],[16.353952,48.19421160000002]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Linke Wienzeile","oneway":"yes","ref":"B1","source":"geoimage.at"}},{"type":"Feature","id":"5893491","geometry":{"type":"LineString","coordinates":[[16.3614477,48.193627899999996],[16.3610485,48.193785899999995],[16.3599316,48.194334],[16.3593309,48.19516060000001],[16.3584236,48.19644490000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Franzensgasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4583585","geometry":{"type":"LineString","coordinates":[[16.3517398,48.19638420000004],[16.3516666,48.19642679999998],[16.3516013,48.1964648],[16.3512323,48.1969115],[16.3509608,48.19725249999999],[16.3506555,48.19763460000004],[16.350372,48.1979839],[16.3503302,48.198041399999994],[16.3502979,48.1980868]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Amerlingstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"29048679","geometry":{"type":"LineString","coordinates":[[16.3517398,48.19638420000004],[16.3518033,48.196451800000006],[16.3518536,48.19650530000001],[16.3521783,48.19685409999997],[16.3522294,48.19688289999999],[16.3522761,48.196909300000016],[16.3528239,48.1971489]]},"properties":{"busway:right":"lane","cycleway:right":"share_busway","highway":"tertiary","lit":"yes","maxspeed":"30","maxspeed:bus:forward":"50","name":"Gumpendorfer Straße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5893512","geometry":{"type":"LineString","coordinates":[[16.3522114,48.1959047],[16.3522954,48.195975000000004],[16.3531601,48.19669880000001],[16.3531615,48.196781999999956],[16.3528723,48.19709629999997],[16.3528365,48.19713519999999],[16.3528239,48.1971489]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kopernikusgasse","oneway":"yes","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"233609827","geometry":{"type":"LineString","coordinates":[[16.3484298,48.19623920000001],[16.3474896,48.1972701]]},"properties":{"highway":"residential","maxspeed":"30","name":"Otto-Bauer-Gasse","old_name":"Kasernengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583764","geometry":{"type":"LineString","coordinates":[[16.3511549,48.195459899999975],[16.3510738,48.195525599999996],[16.3505154,48.19597780000001],[16.3496948,48.19662050000002]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Esterházygasse","oneway":"yes","source":"wien.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"251428133","geometry":{"type":"LineString","coordinates":[[16.3556473,48.19651060000001],[16.355589,48.19649480000004],[16.3550025,48.19633980000003],[16.3549766,48.19633160000001],[16.3546466,48.19622770000001],[16.3543364,48.1960842],[16.3540991,48.19595029999999],[16.3537301,48.19574800000001],[16.3534425,48.19556399999999],[16.3533746,48.19555710000003]]},"properties":{"cycleway":"opposite_lane","cycleway:left":"shared_lane","highway":"residential","maxspeed":"30","name":"Magdalenenstraße","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4849367","geometry":{"type":"LineString","coordinates":[[16.3540604,48.197652000000005],[16.3540615,48.197561399999984],[16.3540647,48.19730979999997],[16.354054,48.19720849999999],[16.3540387,48.1971011],[16.353962,48.19692740000002],[16.3538996,48.196664699999985],[16.3538314,48.196329299999974],[16.3535302,48.1959664],[16.3532656,48.19564949999997],[16.3532259,48.19556559999998]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Kaunitzgasse","oneway":"yes","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"233609122","geometry":{"type":"LineString","coordinates":[[16.3459705,48.19710069999999],[16.3466884,48.19726000000003],[16.3471366,48.197361],[16.3473704,48.19741569999999],[16.3475074,48.19744970000002],[16.347702,48.19750260000001]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","surface":"paving_stones"}},{"type":"Feature","id":"4681923","geometry":{"type":"LineString","coordinates":[[16.3459705,48.19710069999999],[16.3459237,48.1971916],[16.3452404,48.198518199999995],[16.3452139,48.19856950000002],[16.3451262,48.198858900000005],[16.3450705,48.199230400000005],[16.3450718,48.1992984]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Zieglergasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"28798334","geometry":{"type":"LineString","coordinates":[[16.346423,48.1977694],[16.3466412,48.197350700000015],[16.3466884,48.19726000000003]]},"properties":{"highway":"residential","loc_name":"Zitahof","maxspeed":"30","motor_vehicle":"no","name":"Mariahilfer Straße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"282938852","geometry":{"type":"LineString","coordinates":[[16.344301,48.19673689999999],[16.3448753,48.196858599999985],[16.3456276,48.19701789999999],[16.3459705,48.19710069999999]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"288657100","geometry":{"type":"LineString","coordinates":[[16.343532,48.1982826],[16.3442583,48.1968368],[16.3442679,48.19681130000001],[16.344301,48.19673689999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"286621395","geometry":{"type":"LineString","coordinates":[[16.344301,48.19673689999999],[16.3440162,48.196684800000014]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"no","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"109561733","geometry":{"type":"LineString","coordinates":[[16.3417939,48.19630000000001],[16.3420188,48.19634769999999],[16.3428244,48.19648190000001],[16.3440162,48.196684800000014]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"134633603","geometry":{"type":"LineString","coordinates":[[16.3416283,48.19640900000002],[16.3415913,48.1965113],[16.3414786,48.197012599999994],[16.3414536,48.19711849999996],[16.341276,48.197919100000036]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Kaiserstraße","oneway":"yes"}},{"type":"Feature","id":"5001005","geometry":{"type":"LineString","coordinates":[[16.3440162,48.196684800000014],[16.3441117,48.196585700000014],[16.3456236,48.195021699999984]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Webgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26738920","geometry":{"type":"LineString","coordinates":[[16.3399201,48.19593760000001],[16.3398972,48.19600249999999],[16.33969,48.19659050000001],[16.3396254,48.19678579999996],[16.3394667,48.19729799999999],[16.3394477,48.19735510000001],[16.3390563,48.1982879],[16.3390104,48.19839669999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"30103966","geometry":{"type":"LineString","coordinates":[[16.3299041,48.197335399999986],[16.3294509,48.19807639999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Benedikt-Schellinger-Gasse"}},{"type":"Feature","id":"5000210","geometry":{"type":"LineString","coordinates":[[16.3299041,48.197335399999986],[16.3308895,48.1976123]]},"properties":{"highway":"living_street","name":"Goldschlagstraße","oneway":"yes","oneway:bicycle":"no","source":"Bing"}},{"type":"Feature","id":"4583259","geometry":{"type":"LineString","coordinates":[[16.3382648,48.19821479999999],[16.3380747,48.1982093],[16.3373706,48.198017799999974],[16.3367061,48.19783770000001],[16.3357797,48.19759880000001],[16.335249,48.1974735]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Felberstraße","oneway":"yes","ref":"B224"}},{"type":"Feature","id":"38527459","geometry":{"type":"LineString","coordinates":[[16.3347585,48.197315],[16.3340373,48.198481000000015]]},"properties":{"highway":"living_street","lanes":"1","name":"Hackengasse","oneway":"yes"}},{"type":"Feature","id":"38279772","geometry":{"type":"LineString","coordinates":[[16.3347585,48.197315],[16.3349415,48.197311499999984],[16.3350276,48.197308599999985],[16.335141,48.19730950000002],[16.3352574,48.197326600000025],[16.3367846,48.1977579]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Felberstraße","oneway":"yes","ref":"B224"}},{"type":"Feature","id":"272668391","geometry":{"type":"LineString","coordinates":[[16.335249,48.1974735],[16.3348309,48.19735450000002],[16.3347585,48.197315]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Felberstraße","oneway":"yes","ref":"B224"}},{"type":"Feature","id":"357798726","geometry":{"type":"LineString","coordinates":[[16.3371847,48.1971422],[16.3371382,48.19729029999999],[16.3371228,48.19734],[16.3370211,48.197651500000006]]},"properties":{"highway":"footway","layer":"1","level":"1","name":"Verbindung Felberstraße Westbahnhof"}},{"type":"Feature","id":"276960529","geometry":{"type":"LineString","coordinates":[[16.3378861,48.19706439999999],[16.3379649,48.197079900000006],[16.3379554,48.197104800000005]]},"properties":{"highway":"footway","name":"Europaplatz"}},{"type":"Feature","id":"26738909","geometry":{"type":"LineString","coordinates":[[16.3382648,48.19821479999999],[16.3382704,48.19809570000001],[16.3382852,48.1977794],[16.3384956,48.19716780000002],[16.3385413,48.197039200000034],[16.3386616,48.19670250000004]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"4","lit":"yes","maxspeed":"50","name":"Europaplatz","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"5000212","geometry":{"type":"LineString","coordinates":[[16.3337195,48.197025300000035],[16.333016,48.1981954],[16.3322976,48.1993411],[16.332257,48.199405799999965]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Beingasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"69906501","geometry":{"type":"LineString","coordinates":[[16.3299041,48.197335399999986],[16.3290935,48.19710739999999],[16.3289893,48.1970781]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Goldschlagstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"25585421","geometry":{"type":"LineString","coordinates":[[16.3282293,48.19828050000001],[16.3282722,48.19821009999998],[16.3289427,48.197151700000006],[16.3289893,48.1970781]]},"properties":{"cycleway:left":"lane","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schweglerstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"170141443","geometry":{"type":"LineString","coordinates":[[16.3372719,48.1969148],[16.3372565,48.1969546],[16.3372455,48.19698310000001],[16.3372167,48.197059499999995],[16.3371847,48.1971422]]},"properties":{"highway":"footway","layer":"1","level":"1","name":"Verbindung Felberstraße Westbahnhof"}},{"type":"Feature","id":"30103991","geometry":{"type":"LineString","coordinates":[[16.328034,48.19682119999999],[16.3279033,48.197040500000014],[16.3278379,48.1970814],[16.3276484,48.197378799999996],[16.3276375,48.19744269999998],[16.3274581,48.19772739999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Stättermayergasse","source":"yahoo","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"24867726","geometry":{"type":"LineString","coordinates":[[16.3320022,48.19790760000001],[16.3327201,48.19675760000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tannengasse","source":"yahoo"}},{"type":"Feature","id":"28229076","geometry":{"type":"LineString","coordinates":[[16.3289893,48.1970781],[16.3288637,48.19704440000001],[16.328034,48.19682119999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Goldschlagstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"122580909","geometry":{"type":"LineString","coordinates":[[16.3275672,48.19676709999999],[16.3278985,48.19685559999999]]},"properties":{"bus":"yes","highway":"platform","name":"Schweglerstraße","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"308005941","geometry":{"type":"LineString","coordinates":[[16.3381372,48.196609799999976],[16.3380636,48.196600700000005]]},"properties":{"highway":"footway","name":"Europaplatz"}},{"type":"Feature","id":"272672834","geometry":{"type":"LineString","coordinates":[[16.3387489,48.19649079999999],[16.3390096,48.19583210000002],[16.3390226,48.19578910000001],[16.3390429,48.19572210000001]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"5","lit":"yes","maxspeed":"50","name":"Europaplatz","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"183723744","geometry":{"type":"LineString","coordinates":[[16.3386616,48.19670250000004],[16.3387489,48.19649079999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"4","lit":"yes","maxspeed":"50","name":"Europaplatz","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"461149504","geometry":{"type":"LineString","coordinates":[[16.327121,48.19657000000001],[16.3277696,48.1967511],[16.328034,48.19682119999999]]},"properties":{"busway":"opposite_lane","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Goldschlagstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"291245678","geometry":{"type":"LineString","coordinates":[[16.3263801,48.1977703],[16.3264206,48.1977047],[16.327121,48.19657000000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Preysinggasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"461149505","geometry":{"type":"LineString","coordinates":[[16.327121,48.19657000000001],[16.3261932,48.1963073]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Goldschlagstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"9874258","geometry":{"type":"LineString","coordinates":[[16.3261932,48.1963073],[16.3257097,48.197062200000005],[16.3256336,48.197184899999996],[16.3255329,48.19734740000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","mofa:conditional":"no @ (22:00-05:00)","moped:conditional":"no @ (22:00-05:00)","motorcycle:conditional":"no @ (22:00-05:00)","name":"Huglgasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"36931506","geometry":{"type":"LineString","coordinates":[[16.3305735,48.196267500000005],[16.3299041,48.197335399999986]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Benedikt-Schellinger-Gasse","oneway":"yes","oneway:bicycle":"no","source":"Bing"}},{"type":"Feature","id":"442936883","geometry":{"type":"LineString","coordinates":[[16.3309786,48.19758239999999],[16.3316433,48.19650699999997],[16.3316716,48.19646119999996]]},"properties":{"highway":"living_street","name":"Pouthongasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"31509318","geometry":{"type":"LineString","coordinates":[[16.3289893,48.1970781],[16.3295928,48.196088300000014],[16.3296298,48.19602879999999],[16.3296858,48.195936200000034]]},"properties":{"cycleway":"lane","highway":"tertiary","lanes":"2","maxspeed":"50","name":"Schweglerstraße","source":"Bing"}},{"type":"Feature","id":"38279774","geometry":{"type":"LineString","coordinates":[[16.3347585,48.197315],[16.3346934,48.1972969],[16.3337195,48.197025300000035],[16.3327201,48.19675760000001],[16.3316716,48.19646119999996],[16.3306329,48.19617249999996],[16.330492,48.19616339999999],[16.3298718,48.19599819999999],[16.3296858,48.195936200000034]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Felberstraße"}},{"type":"Feature","id":"28229053","geometry":{"type":"LineString","coordinates":[[16.3278643,48.19539979999999],[16.327121,48.19657000000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Preysinggasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"25156738","geometry":{"type":"LineString","coordinates":[[16.328034,48.19682119999999],[16.3287865,48.19565879999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stättermayergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone"}}]} \ No newline at end of file +{"type":"FeatureCollection","features":[{"type":"Feature","id":"483167828","geometry":{"type":"LineString","coordinates":[[16.4128982,48.21976249999997],[16.4139828,48.21894370000001]]},"properties":{"highway":"primary","is_in":"Austria,Vienna,Wien","lanes":"4","maxspeed":"50","name":"Handelskai","ref":"B14","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5022444","geometry":{"type":"LineString","coordinates":[[16.4101713,48.2228049],[16.4103365,48.22268380000003],[16.410552,48.222525899999994],[16.4107283,48.22240790000001],[16.4110769,48.2221802],[16.4115313,48.221854500000035],[16.4118242,48.2216454],[16.4121066,48.221445399999965],[16.4128993,48.220839299999994],[16.413,48.220846300000005],[16.4131035,48.22082360000002],[16.4143181,48.21991569999997],[16.4143435,48.2198564],[16.4143063,48.21979640000001]]},"properties":{"foot":"yes","highway":"cycleway","name":"Praterlände","segregated":"no","surface":"paved"}},{"type":"Feature","id":"31352080","geometry":{"type":"LineString","coordinates":[[16.4120646,48.21940230000001],[16.412566,48.2197012],[16.4130734,48.22001080000001]]},"properties":{"bridge":"yes","foot":"designated","highway":"cycleway","layer":"1","lcn":"yes","name":"Kafkasteg","segregated":"yes"}},{"type":"Feature","id":"29222706","geometry":{"type":"LineString","coordinates":[[16.4120309,48.2192527],[16.4125033,48.21952910000002],[16.4126829,48.21963410000001],[16.4128982,48.21976249999997]]},"properties":{"highway":"residential","maxspeed":"50","name":"Kafkastraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31352078","geometry":{"type":"LineString","coordinates":[[16.4120309,48.2192527],[16.4112722,48.21878480000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Kafkastraße","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"5020147","geometry":{"type":"LineString","coordinates":[[16.4065985,48.2204309],[16.4072965,48.22084100000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"50","name":"Hillerstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"35383757","geometry":{"type":"LineString","coordinates":[[16.4059654,48.22091499999999],[16.4065985,48.2204309]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Vorgartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"9289497","geometry":{"type":"LineString","coordinates":[[16.4065985,48.2204309],[16.4064863,48.22035979999998],[16.4058094,48.21996100000001],[16.4052407,48.219629]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hillerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29303490","geometry":{"type":"LineString","coordinates":[[16.4094381,48.21999310000001],[16.4095157,48.22003810000001],[16.4097946,48.22021079999996]]},"properties":{"highway":"residential","maxspeed":"50","name":"Teuffenbachstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31642811","geometry":{"type":"LineString","coordinates":[[16.4074944,48.223803299999986],[16.4075946,48.223730700000004],[16.4080902,48.2233564],[16.4121661,48.220310600000005],[16.4128982,48.21976249999997]]},"properties":{"highway":"primary","is_in":"Austria,Vienna,Wien","lanes":"4","maxspeed":"50","name":"Handelskai","ref":"B14","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"317845493","geometry":{"type":"LineString","coordinates":[[16.4094381,48.21999310000001],[16.4088051,48.220435899999984],[16.4078839,48.22108270000001],[16.4078008,48.22113839999997]]},"properties":{"highway":"residential","maxspeed":"50","name":"Engerthstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31302830","geometry":{"type":"LineString","coordinates":[[16.4065985,48.2204309],[16.4069002,48.22019800000004],[16.4081559,48.21923589999997]]},"properties":{"highway":"tertiary","is_in":"Austria,Wien","maxspeed":"50","name":"Vorgartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"29100906","geometry":{"type":"LineString","coordinates":[[16.4050205,48.2187892],[16.4050295,48.21932559999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schrotzbergstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"483167827","geometry":{"type":"LineString","coordinates":[[16.4139828,48.21894370000001],[16.4148045,48.21833480000001]]},"properties":{"highway":"primary","is_in":"Austria,Vienna,Wien","lanes":"4","maxspeed":"50","name":"Handelskai","ref":"B14","source:maxspeed":"AT:urban","turn:lanes:backward":"left|through"}},{"type":"Feature","id":"141499898","geometry":{"type":"LineString","coordinates":[[16.4131749,48.21843160000003],[16.4131143,48.21847589999999],[16.4124106,48.21898139999999],[16.4120309,48.2192527]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Wehlistraße","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"317740946","geometry":{"type":"LineString","coordinates":[[16.4112722,48.21878480000001],[16.4111739,48.21872729999998]]},"properties":{"highway":"unclassified","maxspeed":"50","name":"Kafkastraße","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"9288369","geometry":{"type":"LineString","coordinates":[[16.4111739,48.21872729999998],[16.4107252,48.219055499999996],[16.4099788,48.21959920000003],[16.4094381,48.21999310000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Engerthstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4688454","geometry":{"type":"LineString","coordinates":[[16.4098919,48.2179108],[16.4100671,48.2180687],[16.4111739,48.21872729999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Kafkastraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"358541938","geometry":{"type":"LineString","coordinates":[[16.4122934,48.217957100000035],[16.4124571,48.2179941],[16.4131749,48.21843160000003],[16.4132609,48.21848410000001],[16.413876,48.21885800000001],[16.4139828,48.21894370000001]]},"properties":{"highway":"secondary","lanes":"2","maxspeed":"50","name":"Machstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"9298109","geometry":{"type":"LineString","coordinates":[[16.4122934,48.217957100000035],[16.4122089,48.21801099999999],[16.4118423,48.2182626],[16.4111739,48.21872729999998]]},"properties":{"highway":"residential","maxspeed":"50","name":"Engerthstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"317845494","geometry":{"type":"LineString","coordinates":[[16.4139828,48.21894370000001],[16.4138094,48.218890200000004],[16.4132044,48.21852559999999],[16.4131143,48.21847589999999],[16.4124078,48.21804829999999],[16.4122934,48.217957100000035]]},"properties":{"highway":"secondary","lanes":"2","maxspeed":"50","name":"Machstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31352083","geometry":{"type":"LineString","coordinates":[[16.4120567,48.21785650000001],[16.4118603,48.21796410000002],[16.4117132,48.218002799999994],[16.4112709,48.21800630000001],[16.4109209,48.21800910000002],[16.4101948,48.21801479999999],[16.4100671,48.2180687]]},"properties":{"highway":"service","lanes":"1","maxspeed":"50","name":"Elderschplatz","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8092459","geometry":{"type":"LineString","coordinates":[[16.4081559,48.21923589999997],[16.407387,48.21878100000001],[16.4071556,48.21864819999999],[16.406311,48.2181678],[16.4062844,48.218089100000014],[16.4062856,48.2180688],[16.4062883,48.21802259999998]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Sebastian-Kneipp-Gasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"285223288","geometry":{"type":"LineString","coordinates":[[16.4062883,48.21802259999998],[16.406292,48.217958899999985],[16.4062952,48.2179045]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sebastian-Kneipp-Gasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29274865","geometry":{"type":"LineString","coordinates":[[16.4062952,48.2179045],[16.4064637,48.21790479999996],[16.4083685,48.21790809999999],[16.4098919,48.2179108]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Ausstellungsstraße"}},{"type":"Feature","id":"155205086","geometry":{"type":"LineString","coordinates":[[16.4081559,48.21923589999997],[16.4088077,48.218739599999964],[16.4097339,48.2180271],[16.4098213,48.21797000000001],[16.4098919,48.2179108]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Vorgartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"103472535","geometry":{"type":"LineString","coordinates":[[16.4071556,48.21864819999999],[16.407022,48.2187543],[16.4069172,48.2187845],[16.4050205,48.2187892]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stuwerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8092454","geometry":{"type":"LineString","coordinates":[[16.4050205,48.2187892],[16.4050191,48.21807100000001],[16.4050204,48.21802819999999],[16.4050221,48.2179644],[16.4050054,48.2179055]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schrotzbergstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5019994","geometry":{"type":"LineString","coordinates":[[16.4155003,48.21673049999998],[16.415651,48.216624499999995],[16.4157981,48.21652100000003],[16.4160989,48.21630950000002],[16.4163502,48.2161328],[16.4164794,48.21604189999999],[16.4165319,48.216004999999996]]},"properties":{"foot":"yes","highway":"footway","name":"Wehlistraße"}},{"type":"Feature","id":"154608004","geometry":{"type":"LineString","coordinates":[[16.416963,48.2167728],[16.4174755,48.216407000000004]]},"properties":{"highway":"primary","is_in":"Austria,Vienna,Wien","lanes":"4","maxspeed":"50","name":"Handelskai","ref":"B14","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4435639","geometry":{"type":"LineString","coordinates":[[16.4165483,48.217059199999994],[16.4165772,48.21691870000001],[16.4166333,48.216646200000014],[16.4166393,48.21656389999998],[16.4166103,48.21622239999999],[16.4165319,48.216004999999996],[16.4164726,48.215861399999994],[16.416309,48.215672900000015],[16.4161508,48.215546399999994],[16.4160022,48.215435600000006],[16.4159039,48.2153739]]},"properties":{"highway":"residential","maxspeed":"50","name":"Offenbachgasse","oneway":"yes","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"5019993","geometry":{"type":"LineString","coordinates":[[16.4154832,48.21783189999999],[16.414746,48.217393200000004],[16.4146109,48.21731059999999],[16.41388,48.216877100000005],[16.4138396,48.216852999999986]]},"properties":{"highway":"residential","maxspeed":"50","name":"Lößlweg","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"222718390","geometry":{"type":"LineString","coordinates":[[16.414746,48.217393200000004],[16.4132609,48.21848410000001]]},"properties":{"highway":"footway","name":"Wehlistraße"}},{"type":"Feature","id":"4435641","geometry":{"type":"LineString","coordinates":[[16.4109267,48.217176800000004],[16.4118528,48.217733899999956],[16.4120567,48.21785650000001],[16.4122934,48.217957100000035]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Machstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5015343","geometry":{"type":"LineString","coordinates":[[16.4109267,48.217176800000004],[16.4105624,48.217449200000004],[16.4101698,48.217739499999965],[16.4100797,48.2178059],[16.4098919,48.2179108]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Vorgartenstraße"}},{"type":"Feature","id":"155205084","geometry":{"type":"LineString","coordinates":[[16.414618,48.2162773],[16.4142766,48.216530000000006],[16.4138396,48.216852999999986],[16.4125619,48.21777130000001],[16.4122934,48.217957100000035]]},"properties":{"highway":"residential","maxspeed":"50","name":"Engerthstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31477843","geometry":{"type":"LineString","coordinates":[[16.4148045,48.21833480000001],[16.4154832,48.21783189999999],[16.4162212,48.2172913],[16.4165483,48.217059199999994],[16.416963,48.2167728]]},"properties":{"highway":"primary","is_in":"Austria,Vienna,Wien","lanes":"4","maxspeed":"50","name":"Handelskai","ref":"B14","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"222718389","geometry":{"type":"LineString","coordinates":[[16.4153884,48.2167513],[16.4146109,48.21731059999999]]},"properties":{"highway":"footway","name":"Wehlistraße"}},{"type":"Feature","id":"4688463","geometry":{"type":"LineString","coordinates":[[16.4162212,48.2172913],[16.4153884,48.2167513],[16.4146766,48.216313299999996],[16.414618,48.2162773]]},"properties":{"highway":"residential","maxspeed":"50","name":"Sturgasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31536148","geometry":{"type":"LineString","coordinates":[[16.4159039,48.2153739],[16.4149436,48.216051100000016],[16.414618,48.2162773]]},"properties":{"highway":"residential","maxspeed":"50","name":"Engerthstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4863144","geometry":{"type":"LineString","coordinates":[[16.4132412,48.21541370000003],[16.4145632,48.21624300000002],[16.414618,48.2162773]]},"properties":{"highway":"residential","maxspeed":"50","name":"Sturgasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"29274381","geometry":{"type":"LineString","coordinates":[[16.4109267,48.217176800000004],[16.4125172,48.21596729999999],[16.4131777,48.21546219999999],[16.4132412,48.21541370000003]]},"properties":{"highway":"residential","maxspeed":"50","name":"Vorgartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"363082350","geometry":{"type":"LineString","coordinates":[[16.404996,48.216790599999996],[16.4049518,48.217037800000014],[16.4049537,48.217061599999994],[16.404961,48.21715359999999],[16.4049203,48.2172357]]},"properties":{"highway":"residential","maxspeed":"30","name":"Max-Koppe-Gasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29274866","geometry":{"type":"LineString","coordinates":[[16.4050054,48.2179055],[16.4049864,48.21786060000002],[16.4049706,48.217709100000036],[16.4049203,48.2172357]]},"properties":{"highway":"residential","maxspeed":"30","name":"Max-Koppe-Gasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5011929","geometry":{"type":"LineString","coordinates":[[16.4062952,48.2179045],[16.4062908,48.21785650000001],[16.4062958,48.2178002],[16.4059662,48.2167929],[16.4057407,48.2161127],[16.4056961,48.216048],[16.4056627,48.21599950000001],[16.405488,48.21574609999999],[16.4053586,48.21569199999999],[16.4051915,48.215527699999996],[16.4050869,48.21550869999999]]},"properties":{"foot":"yes","highway":"cycleway","lcn":"yes","name":"Messeplatz","old_name":"Lagerhausstraße"}},{"type":"Feature","id":"29100901","geometry":{"type":"LineString","coordinates":[[16.4048584,48.21965019999999],[16.4037426,48.2205132],[16.4037097,48.22053829999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Feuerbachstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29100928","geometry":{"type":"LineString","coordinates":[[16.4037097,48.22053829999999],[16.4025871,48.22034529999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Jungstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5020152","geometry":{"type":"LineString","coordinates":[[16.4047582,48.219511899999986],[16.4035844,48.21950939999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obermüllnerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"250241715","geometry":{"type":"LineString","coordinates":[[16.4032939,48.21951480000001],[16.4035844,48.21950939999999]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"30","name":"Obermüllnerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9717413","geometry":{"type":"LineString","coordinates":[[16.4007316,48.22035059999999],[16.4021004,48.220641400000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Erlafstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"30624260","geometry":{"type":"LineString","coordinates":[[16.4007316,48.22035059999999],[16.4005662,48.220671700000025],[16.4004546,48.2209033],[16.4003729,48.221022500000004],[16.4002877,48.22116700000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Molkereistraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"157688021","geometry":{"type":"LineString","coordinates":[[16.4011305,48.21951469999996],[16.4011141,48.2196323],[16.4007708,48.220275799999996],[16.4007316,48.22035059999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Max-Winter-Platz","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5020165","geometry":{"type":"LineString","coordinates":[[16.4035844,48.21950939999999],[16.4025871,48.22034529999999],[16.4023478,48.220553800000005],[16.4022073,48.220673799999986],[16.4015415,48.22121580000001],[16.4010907,48.221596799999986]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wohlmutstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9717217","geometry":{"type":"LineString","coordinates":[[16.4011305,48.21951469999996],[16.4016215,48.21951469999996],[16.4025924,48.21951480000001],[16.4028714,48.21951480000001],[16.4032939,48.21951480000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obermüllnerstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"365454250","geometry":{"type":"LineString","coordinates":[[16.3987589,48.2198927],[16.3988093,48.21990299999999],[16.3989036,48.21992219999996]]},"properties":{"foot":"designated","highway":"cycleway","maxspeed":"7","name":"Arnezhoferstraße","source:maxspeed":"AT:walk"}},{"type":"Feature","id":"4999123","geometry":{"type":"LineString","coordinates":[[16.398709,48.22033299999998],[16.3993295,48.220657200000005],[16.4002877,48.22116700000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Max-Winter-Platz","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"155205092","geometry":{"type":"LineString","coordinates":[[16.3972993,48.22153029999998],[16.3973935,48.22145109999997],[16.3980268,48.220918400000016],[16.398709,48.22033299999998]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Wolfgang-Schmälzl-Gasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"155205083","geometry":{"type":"LineString","coordinates":[[16.3967999,48.21949480000001],[16.3979196,48.219720800000005],[16.3987589,48.2198927]]},"properties":{"highway":"living_street","maxspeed":"7","name":"Arnezhoferstraße","source:maxspeed":"AT:walk","surface":"asphalt"}},{"type":"Feature","id":"365454254","geometry":{"type":"LineString","coordinates":[[16.3967999,48.21949480000001],[16.3967794,48.21953780000001],[16.3967678,48.21955560000001]]},"properties":{"foot":"designated","highway":"cycleway","name":"Venediger Au","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"160577098","geometry":{"type":"LineString","coordinates":[[16.3999188,48.2195217],[16.3998575,48.219639900000004],[16.3998325,48.2196879],[16.3996733,48.21999210000001],[16.3995648,48.22018259999996],[16.3993875,48.22054539999999],[16.3993295,48.220657200000005]]},"properties":{"highway":"pedestrian","name":"Max-Winter-Platz"}},{"type":"Feature","id":"9717212","geometry":{"type":"LineString","coordinates":[[16.4011305,48.21951469999996],[16.4004155,48.2195188],[16.3999188,48.2195217],[16.3991448,48.21952730000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Max-Winter-Platz","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"365454257","geometry":{"type":"LineString","coordinates":[[16.3990678,48.21962109999998],[16.3990856,48.219588499999986],[16.3991448,48.21952730000001]]},"properties":{"foot":"designated","highway":"cycleway","maxspeed":"30","name":"Wolfgang-Schmälzl-Gasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"155205094","geometry":{"type":"LineString","coordinates":[[16.398709,48.22033299999998],[16.3989036,48.21992219999996],[16.3990678,48.21962109999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wolfgang-Schmälzl-Gasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"8052891","geometry":{"type":"LineString","coordinates":[[16.4011296,48.218801600000006],[16.3991563,48.21880490000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Stuwerstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"365454253","geometry":{"type":"LineString","coordinates":[[16.399013,48.21880659999999],[16.3991563,48.21880490000001]]},"properties":{"foot":"designated","highway":"cycleway","maxspeed":"7","name":"Stuwerstraße","source:maxspeed":"AT:walk"}},{"type":"Feature","id":"5005252","geometry":{"type":"LineString","coordinates":[[16.3970696,48.21880920000001],[16.3980938,48.21880809999999],[16.399013,48.21880659999999]]},"properties":{"highway":"living_street","maxspeed":"7","name":"Stuwerstraße","source:maxspeed":"AT:walk","surface":"asphalt"}},{"type":"Feature","id":"365454259","geometry":{"type":"LineString","coordinates":[[16.3980877,48.218896899999976],[16.3980938,48.21880809999999]]},"properties":{"foot":"designated","highway":"cycleway","maxspeed":"7","name":"Mumbgasse","source:maxspeed":"AT:walk"}},{"type":"Feature","id":"5005250","geometry":{"type":"LineString","coordinates":[[16.3979196,48.219720800000005],[16.3980877,48.218896899999976]]},"properties":{"highway":"living_street","maxspeed":"7","name":"Mumbgasse","source:maxspeed":"AT:walk","surface":"asphalt"}},{"type":"Feature","id":"5020171","geometry":{"type":"LineString","coordinates":[[16.407387,48.21878100000001],[16.4058094,48.21996100000001],[16.4048577,48.22070059999999],[16.4048022,48.22074700000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schönngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29710349","geometry":{"type":"LineString","coordinates":[[16.4050205,48.2187892],[16.4035853,48.21878829999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Stuwerstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"148333073","geometry":{"type":"LineString","coordinates":[[16.4035956,48.21790949999999],[16.4036678,48.2179093],[16.4048452,48.217906],[16.4050054,48.2179055],[16.406174,48.2179046],[16.4062952,48.2179045]]},"properties":{"foot":"use_sidepath","highway":"secondary","maxspeed":"50","name":"Ausstellungsstraße"}},{"type":"Feature","id":"5011944","geometry":{"type":"LineString","coordinates":[[16.4035844,48.21950939999999],[16.4035853,48.21878829999997],[16.4035972,48.21817179999999],[16.4035968,48.21807419999999],[16.4035966,48.218031499999995],[16.4035961,48.21796669999998],[16.4035956,48.21790949999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wohlmutstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29710367","geometry":{"type":"LineString","coordinates":[[16.4035853,48.21878829999997],[16.4030484,48.21879039999996],[16.402579,48.21879229999999],[16.4017297,48.21879910000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stuwerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"365454255","geometry":{"type":"LineString","coordinates":[[16.4017297,48.21879910000001],[16.4016241,48.21879820000001]]},"properties":{"foot":"designated","highway":"cycleway","maxspeed":"30","name":"Stuwerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"365454260","geometry":{"type":"LineString","coordinates":[[16.4016241,48.21879820000001],[16.4011296,48.218801600000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stuwerstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"283846999","geometry":{"type":"LineString","coordinates":[[16.4011296,48.218801600000006],[16.4011305,48.21951469999996]]},"properties":{"cycleway":"opposite","fixme":"radfahren gegen einbahn mit oder ohne markierung?","foot":"yes","highway":"residential","maxspeed":"30","name":"Molkereistraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"122546052","geometry":{"type":"LineString","coordinates":[[16.4011228,48.21804149999997],[16.401123,48.21808469999999],[16.4011235,48.21819930000004],[16.4011296,48.218801600000006]]},"properties":{"cycleway":"opposite_lane","fixme":"radfahren gegen einbahn mit oder ohne markierung?","foot":"yes","highway":"residential","maxspeed":"30","name":"Molkereistraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"125897481","geometry":{"type":"LineString","coordinates":[[16.4033383,48.2179093],[16.4034914,48.217909399999996],[16.4035956,48.21790949999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","maxspeed":"50","name":"Ausstellungsstraße"}},{"type":"Feature","id":"363025535","geometry":{"type":"LineString","coordinates":[[16.3976887,48.21792210000001],[16.399148,48.2179256],[16.400962,48.217923600000006],[16.4011187,48.21792340000002]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ausstellungsstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"9717423","geometry":{"type":"LineString","coordinates":[[16.4011187,48.21792340000002],[16.4011212,48.2179768],[16.4011228,48.21804149999997]]},"properties":{"highway":"residential","name":"Molkereistraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"155205097","geometry":{"type":"LineString","coordinates":[[16.3991448,48.21952730000001],[16.3991563,48.21880490000001],[16.3991502,48.218098199999986],[16.3991497,48.218046000000015],[16.399149,48.2179649],[16.399148,48.2179256]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wolfgang-Schmälzl-Gasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"125897495","geometry":{"type":"LineString","coordinates":[[16.4011173,48.217808399999996],[16.4012347,48.2178083],[16.4032054,48.2178059],[16.4032983,48.21781840000003],[16.4033387,48.217868399999986]]},"properties":{"highway":"service","maxspeed":"50","name":"Ausstellungsstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"148333072","geometry":{"type":"LineString","coordinates":[[16.4011187,48.21792340000002],[16.4012414,48.21792260000004],[16.4033383,48.2179093]]},"properties":{"foot":"use_sidepath","highway":"secondary","maxspeed":"50","name":"Ausstellungsstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4688464","geometry":{"type":"LineString","coordinates":[[16.3970502,48.21791350000001],[16.3970489,48.217967800000025],[16.397049,48.21799229999999],[16.3970476,48.21805570000001],[16.3970487,48.21809409999997],[16.3970696,48.21880920000001],[16.3970455,48.2188726],[16.3969041,48.219230900000014],[16.3967999,48.21949480000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Venediger Au","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"363082361","geometry":{"type":"LineString","coordinates":[[16.4049203,48.2172357],[16.4048677,48.21715990000004],[16.4048599,48.21705829999999],[16.404857,48.21702049999999],[16.4048269,48.216916500000025]]},"properties":{"highway":"residential","maxspeed":"30","name":"Max-Koppe-Gasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5011933","geometry":{"type":"LineString","coordinates":[[16.4047953,48.21694009999999],[16.4045823,48.21706929999999],[16.4044624,48.21715209999999],[16.4042577,48.217293299999966],[16.404164,48.217344200000014],[16.4039974,48.217434499999996],[16.4038422,48.2175187],[16.403802,48.21754060000001],[16.4034509,48.217708500000015],[16.4033933,48.217736099999996],[16.40334,48.2177743],[16.4033387,48.217868399999986],[16.4033383,48.2179093]]},"properties":{"bicycle":"yes","bus":"yes","cycleway":"opposite","highway":"residential","maxspeed":"30","motor_vehicle":"no","name":"Nordportalstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"293720169","geometry":{"type":"LineString","coordinates":[[16.4028519,48.21584920000004],[16.402741,48.21575660000002]]},"properties":{"highway":"raceway","name":"MPQ-Kart-Bahn","oneway":"yes"}},{"type":"Feature","id":"293718177","geometry":{"type":"LineString","coordinates":[[16.402741,48.21575660000002],[16.4027174,48.21571979999999],[16.4027359,48.21569650000001],[16.4028822,48.2156296],[16.4029706,48.215595399999984],[16.4029892,48.215561199999996],[16.4029597,48.215536499999985],[16.4029139,48.215538700000025],[16.4026934,48.215633999999994],[16.4026334,48.2156296],[16.4026072,48.215597600000024],[16.4026257,48.215572899999984],[16.4029641,48.21546599999999],[16.4030328,48.215474700000016],[16.4031322,48.21558809999999],[16.4031049,48.2156267],[16.40288,48.21570890000001],[16.4028757,48.21573720000001],[16.4029084,48.21577580000002],[16.4029793,48.21576779999998],[16.4031267,48.21569289999999],[16.4031856,48.21569800000003],[16.4032118,48.21573650000002],[16.4031966,48.21576999999999],[16.402987,48.2158623],[16.4029226,48.21587690000001],[16.4028822,48.21586669999999],[16.4028519,48.21584920000004]]},"properties":{"highway":"raceway","name":"MPQ-Kart-Bahn","oneway":"yes"}},{"type":"Feature","id":"5011938","geometry":{"type":"LineString","coordinates":[[16.4047953,48.21694009999999],[16.4048269,48.216916500000025],[16.404996,48.216790599999996],[16.4050742,48.21665100000001],[16.4050925,48.21662509999999],[16.405216,48.21645029999996],[16.4053731,48.216211000000015],[16.4054123,48.216100100000006],[16.4054115,48.2159001],[16.4052809,48.215681399999994],[16.4050869,48.21550869999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Messestraße","old_name":"Lagerhausstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"363030071","geometry":{"type":"LineString","coordinates":[[16.4006536,48.21765350000001],[16.4007501,48.217655500000006]]},"properties":{"highway":"service","name":"Präuscherplatz","oneway":"no"}},{"type":"Feature","id":"363030072","geometry":{"type":"LineString","coordinates":[[16.4011157,48.21773059999998],[16.4010375,48.217715699999985],[16.4009409,48.2177121],[16.4007984,48.21768420000001],[16.4007501,48.217655500000006]]},"properties":{"highway":"service","name":"Präuscherplatz","oneway":"yes"}},{"type":"Feature","id":"363030069","geometry":{"type":"LineString","coordinates":[[16.4007501,48.217655500000006],[16.4008386,48.21765740000001],[16.4009514,48.217663999999985],[16.4011144,48.217673399999995]]},"properties":{"highway":"service","name":"Präuscherplatz","oneway":"yes"}},{"type":"Feature","id":"29274869","geometry":{"type":"LineString","coordinates":[[16.3993405,48.21705739999999],[16.3995873,48.217151400000006],[16.3998425,48.2172554],[16.4000266,48.217311100000046],[16.4001305,48.2174019],[16.4002619,48.21746619999999],[16.4008169,48.217580500000025],[16.400954,48.217594899999995]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Kratky-Baschik-Weg"}},{"type":"Feature","id":"5011890","geometry":{"type":"LineString","coordinates":[[16.4011705,48.21754659999999],[16.4011121,48.2175972],[16.4011137,48.2176504],[16.4011144,48.217673399999995],[16.4011148,48.217688899999985],[16.4011157,48.21773059999998],[16.4011169,48.217770100000024],[16.4011173,48.217808399999996],[16.4011187,48.217869399999984],[16.4011187,48.21792340000002]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"50","name":"Präuscherplatz","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"29275135","geometry":{"type":"LineString","coordinates":[[16.4011705,48.21754659999999],[16.4016738,48.21729709999997],[16.4023024,48.21698549999999],[16.4030245,48.21660249999999],[16.4032567,48.216480399999995],[16.4032996,48.216456600000015],[16.4044683,48.215836800000005],[16.4050869,48.21550869999999]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Perspektivstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5075831","geometry":{"type":"LineString","coordinates":[[16.4016235,48.216084499999994],[16.4015164,48.216037700000015],[16.4008903,48.215771399999994],[16.4007889,48.21572929999999],[16.4006378,48.215657300000004],[16.4004839,48.21559300000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Jantschweg"}},{"type":"Feature","id":"5011897","geometry":{"type":"LineString","coordinates":[[16.4000965,48.21560389999999],[16.3997368,48.2159379],[16.3995191,48.2162558],[16.3993892,48.21650730000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Leichtweg"}},{"type":"Feature","id":"5011904","geometry":{"type":"LineString","coordinates":[[16.3976686,48.21601849999996],[16.3980605,48.21617740000002],[16.3982315,48.216296400000004]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Prater Platz F"}},{"type":"Feature","id":"29342729","geometry":{"type":"LineString","coordinates":[[16.3982315,48.216296400000004],[16.3985671,48.2164051],[16.399179,48.21647780000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Fortunagasse"}},{"type":"Feature","id":"5011857","geometry":{"type":"LineString","coordinates":[[16.3971247,48.21704760000003],[16.3976517,48.216924000000006],[16.3979799,48.21690200000003],[16.398479,48.21691340000001],[16.3987445,48.216932799999995],[16.3990107,48.216979400000014]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Kratky-Baschik-Weg"}},{"type":"Feature","id":"155205099","geometry":{"type":"LineString","coordinates":[[16.3980268,48.220918400000016],[16.3979339,48.220873400000016],[16.3964291,48.2200742]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Ybbsstraße","noexit":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"365454258","geometry":{"type":"LineString","coordinates":[[16.3967678,48.21955560000001],[16.3964607,48.22002950000001],[16.3964599,48.22003089999998],[16.3964291,48.2200742],[16.3957962,48.220602499999984],[16.3957151,48.2206755]]},"properties":{"highway":"residential","maxspeed":"30","name":"Venediger Au","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"45792146","geometry":{"type":"LineString","coordinates":[[16.3931585,48.22007679999999],[16.3931903,48.22012319999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Walcherstraße","surface":"asphalt"}},{"type":"Feature","id":"4408141","geometry":{"type":"LineString","coordinates":[[16.3934645,48.218796499999996],[16.3935147,48.21932079999999],[16.393593,48.21945610000003],[16.3937029,48.21956720000003],[16.3938771,48.2196826],[16.3939599,48.21972740000001],[16.3947289,48.22014389999998],[16.3951526,48.220374600000014],[16.3955581,48.22059189999999],[16.3957151,48.2206755]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Lassallestraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"354021099","geometry":{"type":"LineString","coordinates":[[16.3935542,48.21828390000002],[16.3934645,48.218796499999996]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"125897484","geometry":{"type":"LineString","coordinates":[[16.3966533,48.21781809999996],[16.3965474,48.21767599999998]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Gaudeegasse"}},{"type":"Feature","id":"125897499","geometry":{"type":"LineString","coordinates":[[16.3951364,48.21781840000003],[16.3956952,48.21781830000003],[16.3966533,48.21781809999996],[16.3970725,48.217815400000006],[16.3978238,48.21781770000001],[16.3987537,48.21782060000001],[16.4004913,48.217804700000016],[16.4005685,48.2177777],[16.4006088,48.217734199999995],[16.4006329,48.217690499999975],[16.4006536,48.21765350000001]]},"properties":{"highway":"service","maxspeed":"50","name":"Tiefstraße","old_name":"Ausstellungsstraße","oneway":"yes"}},{"type":"Feature","id":"385816192","geometry":{"type":"LineString","coordinates":[[16.3964504,48.21754570000002],[16.3963129,48.2173612]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Gaudeegasse"}},{"type":"Feature","id":"148333947","geometry":{"type":"LineString","coordinates":[[16.3955301,48.21762660000002],[16.3951364,48.21781840000003]]},"properties":{"highway":"footway","name":"Johann-Fürst-Platz"}},{"type":"Feature","id":"385816193","geometry":{"type":"LineString","coordinates":[[16.3965474,48.21767599999998],[16.3964504,48.21754570000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Gaudeegasse","tunnel":"building_passage"}},{"type":"Feature","id":"5011909","geometry":{"type":"LineString","coordinates":[[16.396293,48.216980699999965],[16.3962846,48.216876600000006],[16.3962478,48.21673770000001],[16.396217,48.21640210000001],[16.3961998,48.21613909999999],[16.3961483,48.21588170000001],[16.3960968,48.215721599999995],[16.3959767,48.215578600000015],[16.3958333,48.215447299999994],[16.3957716,48.21539089999999],[16.3956828,48.21530960000001]]},"properties":{"bicycle":"yes","foot":"permissive","highway":"pedestrian","maxspeed":"10","name":"Antifaschismus-Platz","surface":"asphalt"}},{"type":"Feature","id":"363025534","geometry":{"type":"LineString","coordinates":[[16.3949744,48.21794679999999],[16.3951143,48.217915500000004],[16.3968653,48.21791910000002],[16.3970502,48.21791350000001],[16.3974344,48.2179136],[16.3976887,48.21792210000001]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Ausstellungsstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"363025536","geometry":{"type":"LineString","coordinates":[[16.3976887,48.21792210000001],[16.3974231,48.21796019999999],[16.3970489,48.217967800000025],[16.396864,48.217968499999984],[16.3960159,48.217969299999965],[16.3951153,48.21796660000001],[16.3949744,48.21794679999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Ausstellungsstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"125897482","geometry":{"type":"LineString","coordinates":[[16.3942793,48.21795130000001],[16.3949744,48.21794679999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ausstellungsstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5011888","geometry":{"type":"LineString","coordinates":[[16.3949744,48.21794679999999],[16.3949735,48.2178964],[16.3951364,48.21781840000003]]},"properties":{"bicycle":"yes","highway":"service","name":"Johann-Fürst-Platz","oneway":"yes","tourist_bus":"yes","vehicle":"destination"}},{"type":"Feature","id":"4688462","geometry":{"type":"LineString","coordinates":[[16.3942101,48.2179519],[16.3942793,48.21795130000001]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Ausstellungsstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5075879","geometry":{"type":"LineString","coordinates":[[16.3947543,48.2165268],[16.3949322,48.216661200000004],[16.3949743,48.21670369999998]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Oswald-Thomas-Platz"}},{"type":"Feature","id":"148101971","geometry":{"type":"LineString","coordinates":[[16.3946357,48.216651600000006],[16.394832,48.216682100000014],[16.3949743,48.21670369999998]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Oswald-Thomas-Platz"}},{"type":"Feature","id":"412642803","geometry":{"type":"LineString","coordinates":[[16.3949743,48.21670369999998],[16.3951987,48.216775100000035],[16.3954357,48.216869299999985],[16.395617,48.21702290000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Hans-Pemmer-Weg"}},{"type":"Feature","id":"5075923","geometry":{"type":"LineString","coordinates":[[16.3943774,48.21599420000001],[16.3944196,48.2160997],[16.3945224,48.21624],[16.3946234,48.21637719999998]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Oswald-Thomas-Platz"}},{"type":"Feature","id":"148101955","geometry":{"type":"LineString","coordinates":[[16.3935298,48.217825800000014],[16.3936404,48.21787610000004],[16.3936746,48.21789160000003],[16.3938038,48.2179213],[16.3939621,48.21792669999999],[16.3942101,48.2179519]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Ausstellungsstraße","oneway":"yes"}},{"type":"Feature","id":"4688475","geometry":{"type":"LineString","coordinates":[[16.3942101,48.2179519],[16.393895,48.21801479999999],[16.3938061,48.218067099999985],[16.393706,48.21813180000001],[16.3935542,48.21828390000002]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Ausstellungsstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"169834577","geometry":{"type":"LineString","coordinates":[[16.395617,48.21702290000002],[16.3951728,48.217189700000006],[16.3951003,48.217273000000006],[16.3940581,48.217657799999984],[16.3939005,48.2177801],[16.3938082,48.21785609999998]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","maxspeed":"10","name":"Gabor-Steiner-Weg"}},{"type":"Feature","id":"354021105","geometry":{"type":"LineString","coordinates":[[16.3935298,48.217825800000014],[16.3935375,48.217890100000005],[16.3935491,48.21798749999999],[16.3935577,48.218059600000004],[16.3935542,48.21828390000002]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"164578777","geometry":{"type":"LineString","coordinates":[[16.3937249,48.21633639999999],[16.3937768,48.2164367]]},"properties":{"foot":"designated","highway":"cycleway","name":"Oswald-Thomas-Platz","segregated":"yes"}},{"type":"Feature","id":"28170588","geometry":{"type":"LineString","coordinates":[[16.3945113,48.21666979999998],[16.3944656,48.21668559999998],[16.3941738,48.216731400000015],[16.394041,48.2167475],[16.3939506,48.21671420000001],[16.393765,48.216627200000005]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Oswald-Thomas-Platz"}},{"type":"Feature","id":"164578776","geometry":{"type":"LineString","coordinates":[[16.3937768,48.2164367],[16.3937752,48.21650829999999],[16.3937428,48.216561799999994],[16.393765,48.216627200000005]]},"properties":{"foot":"designated","highway":"cycleway","name":"Oswald-Thomas-Platz","segregated":"yes"}},{"type":"Feature","id":"4863168","geometry":{"type":"LineString","coordinates":[[16.4140227,48.214881100000014],[16.4155225,48.21528180000004],[16.4157029,48.2152773],[16.4157577,48.21528119999999],[16.4158061,48.215298700000034],[16.4159039,48.2153739]]},"properties":{"highway":"residential","maxspeed":"50","name":"Offenbachgasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31536140","geometry":{"type":"LineString","coordinates":[[16.4140227,48.214881100000014],[16.4150522,48.214375700000005],[16.4151704,48.21431369999999]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Vorgartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"358541775","geometry":{"type":"LineString","coordinates":[[16.4140227,48.214881100000014],[16.4139355,48.21495709999999],[16.4133434,48.2153673],[16.4132412,48.21541370000003]]},"properties":{"highway":"residential","maxspeed":"50","name":"Vorgartenstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"155205085","geometry":{"type":"LineString","coordinates":[[16.4132412,48.21541370000003],[16.4132849,48.21532400000001],[16.413871,48.214923],[16.4140227,48.214881100000014]]},"properties":{"highway":"residential","maxspeed":"50","name":"Vorgartenstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"494604229","geometry":{"type":"LineString","coordinates":[[16.4216525,48.21128410000003],[16.4215589,48.211349299999995],[16.4214469,48.21142720000003],[16.4206208,48.21201350000001],[16.420223,48.21230170000001],[16.4200729,48.21240319999998],[16.4198372,48.212564499999985],[16.4190125,48.21316089999999],[16.4188005,48.21331420000001],[16.4186857,48.213396700000004],[16.4182986,48.213668799999994],[16.4180937,48.21381840000001],[16.4174977,48.21423579999998],[16.416552,48.21491370000001],[16.416314,48.2150838],[16.4162493,48.21512960000001],[16.4159039,48.2153739]]},"properties":{"highway":"residential","maxspeed":"50","name":"Engerthstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"154608006","geometry":{"type":"LineString","coordinates":[[16.4174755,48.216407000000004],[16.4191968,48.2151528],[16.4203354,48.21429560000004],[16.4205618,48.21413340000001],[16.4216313,48.213376400000016],[16.4220187,48.213100200000014],[16.4231748,48.21227090000002]]},"properties":{"highway":"primary","is_in":"Austria,Vienna,Wien","lanes":"4","maxspeed":"50","name":"Handelskai","ref":"B14","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4863169","geometry":{"type":"LineString","coordinates":[[16.4158356,48.21192479999999],[16.4158973,48.211973],[16.4159708,48.21205249999997],[16.4160583,48.21208920000001],[16.4162112,48.2120999],[16.4163721,48.21208390000001],[16.4165757,48.212064399999974],[16.4167151,48.21209300000001],[16.4168468,48.2121679],[16.4170555,48.212307200000026],[16.4178537,48.2128027],[16.4179179,48.212842499999994]]},"properties":{"highway":"residential","maxspeed":"50","name":"Stella-Klein-Löw-Weg","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"44744774","geometry":{"type":"LineString","coordinates":[[16.4131837,48.213524500000005],[16.413324,48.2134475],[16.4140645,48.21305960000001],[16.4144397,48.21286140000001],[16.4154582,48.21232330000001],[16.4159708,48.21205249999997]]},"properties":{"highway":"footway","name":"Stella-Klein-Löw-Weg"}},{"type":"Feature","id":"389668300","geometry":{"type":"LineString","coordinates":[[16.4143063,48.21979640000001],[16.4153873,48.21898919999998],[16.4157119,48.21870849999999],[16.4159853,48.2185073],[16.4164661,48.2181659],[16.416626,48.21805230000001],[16.4168058,48.21793360000001],[16.416975,48.217806199999984],[16.4173402,48.217434999999995],[16.4178316,48.21711179999997],[16.4182306,48.21681499999997],[16.4185792,48.21658289999999],[16.418789,48.21648160000001],[16.4190665,48.216297],[16.4192807,48.21613119999998],[16.4195503,48.215904300000005],[16.4198218,48.215654900000004],[16.4200104,48.21556629999998],[16.4201994,48.21545149999997],[16.4203823,48.21531490000001],[16.4207992,48.21501030000002],[16.4209194,48.2149847],[16.4214991,48.21457589999997],[16.4216646,48.21457270000002],[16.4225211,48.21395879999997],[16.4225245,48.21383610000001],[16.4229371,48.21353859999999],[16.4240018,48.21277599999999],[16.4239765,48.212675899999965],[16.423884,48.2124675]]},"properties":{"foot":"yes","highway":"cycleway","name":"Landungshauslände","segregated":"no","surface":"paved"}},{"type":"Feature","id":"164139764","geometry":{"type":"LineString","coordinates":[[16.4200055,48.209790699999985],[16.4197357,48.209296800000004]]},"properties":{"busway":"lane","cycleway":"share_busway","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Meiereistraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"352524929","geometry":{"type":"LineString","coordinates":[[16.4197357,48.209296800000004],[16.4196507,48.2092509],[16.4195501,48.20917130000001],[16.4195181,48.20914419999997],[16.4193225,48.2089866],[16.419049,48.20876820000001],[16.4187949,48.20854510000001],[16.4186399,48.20842089999999],[16.4185001,48.208281699999986],[16.4183781,48.20814189999999],[16.4183196,48.20800869999999],[16.4182925,48.2078473],[16.4183005,48.207798500000024],[16.4183169,48.2076979],[16.418346,48.20761110000001],[16.4184949,48.207364299999966],[16.4185854,48.20728080000001]]},"properties":{"busway":"lane","cycleway":"share_busway","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Meiereistraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"352524921","geometry":{"type":"LineString","coordinates":[[16.4185854,48.20728080000001],[16.4185898,48.20734020000003],[16.4185147,48.20749749999996],[16.4184611,48.20761730000001],[16.4184352,48.20770709999999],[16.4184168,48.207806199999965],[16.4184209,48.207894299999964],[16.4184691,48.208051600000005],[16.4185979,48.2082322],[16.4187484,48.20836739999996],[16.4189001,48.20850380000002],[16.4190282,48.20861899999997],[16.419164,48.20872409999998],[16.4194246,48.208935699999984],[16.419554,48.209039099999956],[16.4196419,48.20912990000002],[16.4196854,48.209174899999994],[16.4197357,48.209296800000004]]},"properties":{"busway":"lane","cycleway":"share_busway","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Meiereistraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5075744","geometry":{"type":"LineString","coordinates":[[16.4178235,48.2101251],[16.4194783,48.20916729999999],[16.4195181,48.20914419999997],[16.4196419,48.20912990000002]]},"properties":{"highway":"service","maxspeed":"50","name":"Nordportalstraße","note":"Privatgrund, Zufahrt gestattet","source:maxspeed":"AT:urban","vehicle":"destination"}},{"type":"Feature","id":"242156490","geometry":{"type":"LineString","coordinates":[[16.4151704,48.21431369999999],[16.4152729,48.2142623],[16.4164986,48.21362379999999],[16.4171802,48.21326740000001],[16.4178255,48.21289569999996],[16.4179179,48.212842499999994],[16.4179827,48.212800800000025],[16.4192699,48.21187040000001],[16.4194755,48.21172760000002],[16.4209559,48.2106996],[16.421103,48.21059749999998]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Vorgartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"352524923","geometry":{"type":"LineString","coordinates":[[16.4185854,48.20728080000001],[16.4186424,48.20709790000001],[16.4186261,48.206883000000005],[16.4184721,48.206615699999986],[16.4183911,48.206503999999995],[16.4182451,48.20629739999998],[16.4181967,48.206228899999985]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"tertiary","maxspeed":"50","name":"Meiereistraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"338305461","geometry":{"type":"LineString","coordinates":[[16.4053137,48.21433289999999],[16.4052819,48.214335500000004],[16.4052501,48.21433289999999],[16.4052202,48.214325299999985],[16.4051938,48.21431319999999],[16.4051726,48.214297200000004],[16.4051577,48.21427829999999],[16.4051494,48.21425380000002],[16.4051518,48.21422879999997],[16.4051647,48.21420520000001],[16.405189,48.21418360000001],[16.405222,48.21416780000001],[16.4052605,48.214159499999994],[16.4053011,48.21415919999998],[16.4053399,48.21416719999999],[16.4053732,48.21418249999999]]},"properties":{"bicycle":"yes","bus":"yes","highway":"residential","junction":"roundabout","maxspeed":"30","motor_vehicle":"no","name":"Südportalstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"396260228","geometry":{"type":"LineString","coordinates":[[16.4053732,48.21418249999999],[16.4053981,48.21420380000001],[16.4054122,48.214229200000005],[16.4054142,48.214256199999994],[16.4054038,48.21428230000001],[16.4053821,48.21430509999999],[16.4053511,48.21432250000001],[16.4053137,48.21433289999999]]},"properties":{"bicycle":"yes","bus":"yes","highway":"residential","junction":"roundabout","maxspeed":"30","motor_vehicle":"no","name":"Südportalstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"491930220","geometry":{"type":"LineString","coordinates":[[16.4043935,48.214681600000006],[16.4051577,48.21427829999999]]},"properties":{"highway":"pedestrian","maxspeed":"30","name":"Südportalstraße"}},{"type":"Feature","id":"226986139","geometry":{"type":"LineString","coordinates":[[16.4050869,48.21550869999999],[16.4054523,48.215317699999986],[16.4057877,48.21514239999999],[16.4058381,48.21506740000001],[16.4058797,48.214947300000034],[16.405872,48.21483739999999],[16.4058439,48.21478099999999],[16.4054749,48.214462],[16.4053137,48.21433289999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Welthandelsplatz","ref:wien":"06696","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9717490","geometry":{"type":"LineString","coordinates":[[16.4042857,48.21485430000004],[16.4041606,48.21479879999998],[16.4037752,48.21459730000001],[16.4034454,48.21443740000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Straße des Ersten Mai"}},{"type":"Feature","id":"5011925","geometry":{"type":"LineString","coordinates":[[16.4050869,48.21550869999999],[16.4047787,48.215252600000014],[16.4047249,48.215209000000016],[16.4043489,48.21490890000004],[16.4042857,48.21485430000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Freudplatz","old_name":"Lagerhausstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4688458","geometry":{"type":"LineString","coordinates":[[16.4042857,48.21485430000004],[16.4043935,48.214681600000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Südportalstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"172549807","geometry":{"type":"LineString","coordinates":[[16.4024811,48.21367829999997],[16.4026119,48.213630800000004],[16.4027672,48.2136084],[16.4029962,48.2136093],[16.4031124,48.213616]]},"properties":{"highway":"service","maxspeed":"10","name":"Waldsteingartenstraße","source:maxspeed":"AT:zone:10"}},{"type":"Feature","id":"132758365","geometry":{"type":"LineString","coordinates":[[16.4029962,48.2136093],[16.4029879,48.213507100000015],[16.402987,48.21348979999999],[16.4029849,48.21340359999999],[16.4029993,48.21329560000001],[16.4030103,48.2132302],[16.4030351,48.213164399999954],[16.4030528,48.21312649999999],[16.4030777,48.21307940000003],[16.403086,48.2130415],[16.4030866,48.21301089999997],[16.4030763,48.212961800000016]]},"properties":{"access":"permissive","bicycle":"dismount","highway":"footway","name":"Kolariks Genießerweg"}},{"type":"Feature","id":"5075675","geometry":{"type":"LineString","coordinates":[[16.4040943,48.2133211],[16.4041415,48.213358400000004],[16.4041645,48.213376600000004],[16.4045637,48.21371820000002],[16.4046103,48.21375570000001],[16.4046345,48.213775199999986],[16.4050572,48.2141254],[16.4051647,48.21420520000001]]},"properties":{"highway":"unclassified","maxspeed":"30","name":"Csardastraße","oneway":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"199116907","geometry":{"type":"LineString","coordinates":[[16.4021872,48.21423469999999],[16.4018687,48.2142638],[16.4015806,48.21431000000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Straße des Ersten Mai"}},{"type":"Feature","id":"363389208","geometry":{"type":"LineString","coordinates":[[16.4015806,48.21431000000001],[16.401428,48.21433450000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Schweizerhausplatz"}},{"type":"Feature","id":"5011869","geometry":{"type":"LineString","coordinates":[[16.4004671,48.215240800000004],[16.4007811,48.21498869999999],[16.4011043,48.21483330000001],[16.4014245,48.21468869999998],[16.4016678,48.214554400000026]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Leichtweg"}},{"type":"Feature","id":"5005251","geometry":{"type":"LineString","coordinates":[[16.4043935,48.214681600000006],[16.4043025,48.21472750000001],[16.4041606,48.21479879999998],[16.4030751,48.21534500000001],[16.4026223,48.21548089999999],[16.402372,48.2155697],[16.4022576,48.21563119999999],[16.402075,48.215737399999995],[16.4016235,48.216084499999994],[16.4014005,48.2163286],[16.4012232,48.2166081],[16.4010227,48.21708330000001],[16.4008526,48.217486399999984],[16.4008169,48.217580500000025]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Zufahrtsstraße"}},{"type":"Feature","id":"5075822","geometry":{"type":"LineString","coordinates":[[16.4000103,48.21539390000001],[16.3996671,48.21527549999999],[16.399467,48.215186500000016],[16.3993327,48.21512680000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Jantschweg"}},{"type":"Feature","id":"5005245","geometry":{"type":"LineString","coordinates":[[16.4026223,48.21548089999999],[16.4024909,48.215321099999954],[16.4024917,48.215221299999996],[16.4018998,48.21487059999998],[16.4016678,48.214554400000026],[16.4015516,48.214383999999995],[16.401428,48.21433450000001],[16.401348,48.214264299999996],[16.4008819,48.213729700000016],[16.4008198,48.213644999999985]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Karl-Kolarik-Weg"}},{"type":"Feature","id":"5011918","geometry":{"type":"LineString","coordinates":[[16.4024811,48.21367829999997],[16.4022832,48.21377000000001],[16.4020964,48.2139143],[16.4020039,48.2140186]]},"properties":{"highway":"service","maxspeed":"10","name":"Waldsteingartenstraße","source:maxspeed":"AT:zone:10"}},{"type":"Feature","id":"251555419","geometry":{"type":"LineString","coordinates":[[16.4020039,48.2140186],[16.4019912,48.21404160000003],[16.4019182,48.21417389999999],[16.4018687,48.2142638]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Waldsteingartenstraße"}},{"type":"Feature","id":"53257553","geometry":{"type":"LineString","coordinates":[[16.4000819,48.21300260000004],[16.3999813,48.21292510000001],[16.3999229,48.212875]]},"properties":{"highway":"footway","name":"Rustenschacherallee"}},{"type":"Feature","id":"5075783","geometry":{"type":"LineString","coordinates":[[16.4020324,48.21340040000001],[16.4020333,48.21341000000004],[16.4020386,48.21346700000001],[16.4020347,48.21354339999996],[16.4023893,48.2135768],[16.4024621,48.21363840000001],[16.4024811,48.21367829999997]]},"properties":{"highway":"service","maxspeed":"10","name":"Eduard-Lang-Weg","source:maxspeed":"AT:zone:10"}},{"type":"Feature","id":"5011917","geometry":{"type":"LineString","coordinates":[[16.4008198,48.213644999999985],[16.4007877,48.21360090000002],[16.4007701,48.21357840000002],[16.4007551,48.21355969999999],[16.4007363,48.213537099999996],[16.4005498,48.21332269999999],[16.400353,48.2131043],[16.4002826,48.21302610000001],[16.4001837,48.2129492]]},"properties":{"highway":"pedestrian","name":"Karl-Kolarik-Weg"}},{"type":"Feature","id":"28170559","geometry":{"type":"LineString","coordinates":[[16.4020347,48.21354339999996],[16.401714,48.2135284],[16.401359,48.21352100000004],[16.4010607,48.213564399999996],[16.4008198,48.213644999999985]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Eduard-Lang-Weg"}},{"type":"Feature","id":"4433838","geometry":{"type":"LineString","coordinates":[[16.4083596,48.212547900000004],[16.4085328,48.21236640000001],[16.4086388,48.21225530000001],[16.4089857,48.2118777],[16.4091489,48.2117145],[16.4093024,48.211603800000006],[16.4094011,48.2115714],[16.4095065,48.211536800000005],[16.4097034,48.21149550000004],[16.4101962,48.21138640000001],[16.4103298,48.211373699999996]]},"properties":{"access":"no","bicycle":"yes","bus":"designated","foot":"yes","highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Südportalstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"338305455","geometry":{"type":"LineString","coordinates":[[16.410573,48.21137909999999],[16.4106828,48.2113995],[16.4107391,48.21143170000002],[16.4108084,48.211477099999996],[16.4115837,48.212149600000004],[16.4117187,48.21226659999999],[16.4117989,48.21233620000001],[16.4118527,48.212382899999994],[16.4119675,48.212482499999965],[16.4122562,48.2127328],[16.412473,48.2129209],[16.4125103,48.21295319999999],[16.4125335,48.21297340000001],[16.412625,48.21305269999999],[16.4131837,48.213524500000005],[16.4133539,48.213636399999956],[16.4135021,48.2137113],[16.4137507,48.213808400000005],[16.4139311,48.21385720000001],[16.4140935,48.21388809999999],[16.4146087,48.21395050000001],[16.4146865,48.213967499999995],[16.414777,48.2139918],[16.415093,48.21425380000002],[16.4151704,48.21431369999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Trabrennstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"396260229","geometry":{"type":"LineString","coordinates":[[16.410573,48.21137909999999],[16.4105463,48.211400999999995],[16.4105109,48.21141639999999],[16.4104702,48.211423999999994],[16.4104279,48.21142299999997],[16.4103881,48.21141370000001],[16.4103543,48.211396699999995],[16.4103298,48.211373699999996]]},"properties":{"bicycle":"yes","bus":"yes","highway":"residential","junction":"roundabout","maxspeed":"30","motor_vehicle":"no","name":"Südportalstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4435658","geometry":{"type":"LineString","coordinates":[[16.4093024,48.211603800000006],[16.4092667,48.211586600000004],[16.4092521,48.21157360000001]]},"properties":{"highway":"footway","motor_vehicle":"no","name":"Rotundenplatz"}},{"type":"Feature","id":"4688457","geometry":{"type":"LineString","coordinates":[[16.4087562,48.21151499999999],[16.4090122,48.2113775],[16.4092715,48.21123850000001],[16.4100167,48.210845500000005]]},"properties":{"access":"no","bicycle":"yes","foot":"yes","highway":"unclassified","maxspeed":"50","motor_vehicle":"no","name":"Rotundenplatz","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"338305456","geometry":{"type":"LineString","coordinates":[[16.4103298,48.211373699999996],[16.410318,48.2113511],[16.4103154,48.211327299999994],[16.410322,48.211303799999996],[16.4103374,48.2112822],[16.4103607,48.21126400000003],[16.4103902,48.21125039999998],[16.4104239,48.21124230000001],[16.4104617,48.211240299999986],[16.4104989,48.21124520000001],[16.4105327,48.21125660000001],[16.4105605,48.21127369999999],[16.4105804,48.211295199999995],[16.4105907,48.2113195],[16.4105916,48.21134009999997],[16.4105856,48.21136029999997],[16.410573,48.21137909999999]]},"properties":{"bicycle":"yes","bus":"yes","highway":"residential","junction":"roundabout","maxspeed":"30","motor_vehicle":"no","name":"Südportalstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"327969783","geometry":{"type":"LineString","coordinates":[[16.4115837,48.212149600000004],[16.4113589,48.2122306],[16.4107366,48.21227479999999],[16.410495,48.2122919],[16.4082458,48.21311650000001],[16.4078721,48.213558000000006],[16.406471,48.21471940000001],[16.4062342,48.215195600000015],[16.4061058,48.21545370000001],[16.4057506,48.21589130000001],[16.4056627,48.21599950000001]]},"properties":{"highway":"pedestrian","name":"Welthandelsplatz","source":"at:vienna:orthofoto"}},{"type":"Feature","id":"338305460","geometry":{"type":"LineString","coordinates":[[16.4053732,48.21418249999999],[16.4054888,48.21410170000004],[16.4055455,48.214065300000016],[16.4056644,48.213999900000005],[16.4073281,48.213122699999985],[16.4078567,48.212841200000014],[16.40808,48.21272440000001],[16.4083596,48.212547900000004]]},"properties":{"access":"no","bicycle":"yes","bus":"designated","foot":"yes","highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Südportalstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"251555420","geometry":{"type":"LineString","coordinates":[[16.405657,48.21050220000001],[16.4056907,48.21031429999999],[16.405699,48.21027079999999],[16.4057059,48.2102347],[16.4057053,48.2101816],[16.4056372,48.210089100000005]]},"properties":{"highway":"service","maxspeed":"50","name":"Waldsteingartenstraße"}},{"type":"Feature","id":"164578772","geometry":{"type":"LineString","coordinates":[[16.4020324,48.21340040000001],[16.4021477,48.2133704],[16.4028304,48.21310869999999],[16.4030763,48.212961800000016],[16.4030753,48.212960100000004],[16.4030318,48.2128884],[16.4028128,48.212578199999996],[16.4024145,48.212096599999995],[16.4025146,48.2120611],[16.4029757,48.2125657],[16.4032924,48.212885099999994],[16.4030753,48.212960100000004]]},"properties":{"highway":"service","name":"Eduard-Lang-Weg","oneway":"yes"}},{"type":"Feature","id":"164578817","geometry":{"type":"LineString","coordinates":[[16.3991723,48.21209780000001],[16.3994061,48.212376999999975],[16.3994131,48.21243870000001],[16.3994237,48.21247060000002],[16.3995576,48.21262360000003],[16.399649,48.212699799999996],[16.3997104,48.21271970000001],[16.3998297,48.21279150000001],[16.3998635,48.2128218],[16.3999229,48.212875]]},"properties":{"highway":"footway","name":"Rustenschacherallee"}},{"type":"Feature","id":"111438811","geometry":{"type":"LineString","coordinates":[[16.4024145,48.212096599999995],[16.4023471,48.21203169999998],[16.4022948,48.21197080000002],[16.4022138,48.2118845]]},"properties":{"highway":"footway","name":"Eduard-Lang-Weg"}},{"type":"Feature","id":"188261037","geometry":{"type":"LineString","coordinates":[[16.4027876,48.20998449999999],[16.402903,48.209969]]},"properties":{"bridge":"yes","highway":"footway","layer":"1","name":"Konstantinsteg"}},{"type":"Feature","id":"164578779","geometry":{"type":"LineString","coordinates":[[16.4031124,48.213616],[16.4032771,48.213605200000046],[16.4034985,48.213545700000026],[16.4040227,48.21334809999999],[16.4040943,48.2133211],[16.4043845,48.213138000000015],[16.4045252,48.213051500000006],[16.4049789,48.2127557],[16.4050947,48.21266319999998],[16.4052751,48.21251910000001],[16.4054582,48.21227400000001],[16.405639,48.2119155],[16.4058648,48.2114866],[16.4058972,48.2113727],[16.4059549,48.211170100000004],[16.4059374,48.2110361],[16.4058636,48.2109456],[16.4058367,48.21091960000001],[16.4057625,48.21084200000004],[16.4057283,48.21080620000001],[16.4056507,48.21063129999999],[16.405657,48.21050220000001]]},"properties":{"foot":"yes","highway":"service","maxspeed":"10","name":"Waldsteingartenstraße","noexit":"yes","source:maxspeed":"AT:zone:10"}},{"type":"Feature","id":"352525328","geometry":{"type":"LineString","coordinates":[[16.4070153,48.209692599999954],[16.4068736,48.20966949999999],[16.4066911,48.2096645],[16.4065544,48.20966229999996],[16.4064258,48.20967540000001]]},"properties":{"highway":"unclassified","maxspeed":"50","motor_vehicle":"no","name":"Kaiserallee","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"188148465","geometry":{"type":"LineString","coordinates":[[16.4090122,48.2113775],[16.4088378,48.211224499999986],[16.4081776,48.21066700000003],[16.4079261,48.21046340000001],[16.407148,48.2098039],[16.4071335,48.209791199999984],[16.4070153,48.209692599999954],[16.4068693,48.20957099999998],[16.4067711,48.209494300000046]]},"properties":{"access":"no","bicycle":"yes","foot":"yes","highway":"unclassified","maxspeed":"50","motor_vehicle":"no","name":"Kaiserallee","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"24601365","geometry":{"type":"LineString","coordinates":[[16.400625,48.2062397],[16.4008202,48.20625439999998],[16.4044371,48.206570899999974],[16.4045474,48.206587600000006],[16.4046554,48.206613300000015],[16.4047578,48.206649899999974],[16.4048426,48.206700299999966],[16.4050505,48.206873400000006],[16.4051859,48.2069984],[16.4054872,48.20727629999999],[16.4055964,48.20737919999999],[16.4057587,48.20758710000001],[16.4058227,48.207705800000014],[16.4058612,48.207832300000035],[16.405988,48.208303099999995],[16.4060637,48.20858709999999],[16.4061227,48.208814700000005],[16.406159,48.20888869999999],[16.4062069,48.20895860000002],[16.4062626,48.209022000000004],[16.4066319,48.209353400000026],[16.406687,48.20940920000001],[16.4067711,48.209494300000046]]},"properties":{"bicycle":"yes","foot":"yes","highway":"unclassified","maxspeed":"50","motor_vehicle":"no","name":"Rotundenallee"}},{"type":"Feature","id":"22358084","geometry":{"type":"LineString","coordinates":[[16.4025738,48.211695700000035],[16.4025549,48.21157959999999],[16.4025331,48.211496400000016],[16.4025076,48.2114301],[16.4024708,48.211334499999964],[16.4023618,48.211121599999984],[16.4021662,48.21101540000001],[16.4020273,48.21089169999999],[16.4019452,48.21077439999999],[16.4018849,48.21067070000001],[16.401773,48.2103309],[16.4016447,48.20974939999999],[16.4014776,48.20938610000002],[16.4012852,48.209038599999985],[16.4008988,48.20861690000001],[16.400622,48.208287299999995],[16.4005157,48.20806240000002],[16.4004296,48.207795799999985],[16.4003514,48.20735650000003],[16.4001452,48.207134199999985],[16.4000712,48.207100800000006],[16.3999444,48.207047999999986]]},"properties":{"bicycle":"no","foot":"yes","highway":"track","name":"Laternenweg","source:bicycle":"survey","surface":"asphalt","tracktype":"grade1","vehicle":"no"}},{"type":"Feature","id":"5011861","geometry":{"type":"LineString","coordinates":[[16.39876,48.214737299999996],[16.3990158,48.214939500000014],[16.3992933,48.2151035],[16.3993327,48.21512680000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Jantschweg"}},{"type":"Feature","id":"5075646","geometry":{"type":"LineString","coordinates":[[16.399011,48.21356420000001],[16.3990945,48.21364890000001],[16.3991772,48.2137214],[16.3996244,48.21411309999999],[16.399657,48.21414179999999],[16.3996817,48.214162800000025],[16.3997487,48.21422229999999],[16.3999674,48.214415100000025],[16.4002638,48.21467180000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Hans-Kraus-Weg"}},{"type":"Feature","id":"5075797","geometry":{"type":"LineString","coordinates":[[16.3982061,48.21398629999999],[16.3982812,48.21407529999999],[16.398353,48.214157099999994],[16.3985034,48.21432850000002],[16.3985995,48.21446320000001],[16.3986709,48.2145927],[16.3986867,48.21461599999998],[16.39876,48.214737299999996]]},"properties":{"highway":"pedestrian","name":"Jantschweg"}},{"type":"Feature","id":"5011849","geometry":{"type":"LineString","coordinates":[[16.401428,48.21433450000001],[16.4010913,48.214403800000014],[16.4006049,48.21454769999997],[16.4002638,48.21467180000002],[16.3999713,48.21480009999996],[16.3995949,48.2149823],[16.3994158,48.215081],[16.3993327,48.21512680000001],[16.399269,48.21517330000003],[16.3989924,48.21537510000002],[16.398729,48.21563469999998],[16.3984287,48.21605679999999],[16.3982315,48.216296400000004],[16.3980319,48.21648619999999],[16.3977952,48.21664749999999],[16.397512,48.21685119999998],[16.3971247,48.21704760000003],[16.3965331,48.217281000000014],[16.3963129,48.2173612],[16.3962513,48.2173636]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Straße des Ersten Mai"}},{"type":"Feature","id":"230254205","geometry":{"type":"LineString","coordinates":[[16.3953996,48.21461450000001],[16.3955191,48.21461669999999],[16.395728,48.21460110000001],[16.3958836,48.214575800000006],[16.3959753,48.214537300000046],[16.3960307,48.21450709999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Vivariumstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4688445","geometry":{"type":"LineString","coordinates":[[16.3961445,48.2150675],[16.3961136,48.2149517],[16.3961036,48.21487659999997],[16.3961145,48.21457179999999],[16.3960767,48.21453389999999],[16.3960307,48.21450709999999]]},"properties":{"highway":"residential","maxspeed":"30","motor_vehicle":"no","name":"Sportklubstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148828","geometry":{"type":"LineString","coordinates":[[16.3960307,48.21450709999999],[16.3960902,48.21445],[16.3961617,48.2143586],[16.3962708,48.214229399999994],[16.396541,48.213905100000005],[16.3969615,48.213408799999996]]},"properties":{"fixme":"maxspeed","highway":"residential","maxspeed":"30","name":"Sportklubstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5011882","geometry":{"type":"LineString","coordinates":[[16.4008198,48.213644999999985],[16.4002,48.213957600000015],[16.3997487,48.21422229999999],[16.3994452,48.21439649999999],[16.3988645,48.214685299999985],[16.39876,48.214737299999996],[16.3985859,48.21505239999996],[16.3983122,48.21539150000001],[16.3980876,48.215618000000006],[16.3977121,48.215976299999994],[16.3976686,48.21601849999996],[16.3972269,48.21641779999999],[16.3970797,48.216534300000006],[16.3970503,48.21655720000001],[16.3967871,48.216756299999986],[16.3965998,48.21682630000001],[16.3965374,48.21684920000001],[16.3963919,48.2168992],[16.396293,48.216980699999965],[16.3961571,48.2171213],[16.3961035,48.2171731]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"10","name":"Eduard-Lang-Weg"}},{"type":"Feature","id":"472381899","geometry":{"type":"LineString","coordinates":[[16.3982061,48.21398629999999],[16.3973204,48.21445079999998],[16.3965204,48.214870399999995],[16.3964532,48.2149057],[16.3961445,48.2150675],[16.3960109,48.21513759999999],[16.3958057,48.2152452],[16.3956828,48.21530960000001],[16.3950782,48.2156267],[16.394835,48.215754300000015],[16.3943774,48.21599420000001],[16.3937249,48.21633639999999],[16.3930655,48.21668220000001]]},"properties":{"bicycle":"yes","foot":"yes","highway":"residential","horse":"yes","lanes":"2","maxspeed":"50","motor_vehicle":"no","name":"Hauptallee","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"328570485","geometry":{"type":"LineString","coordinates":[[16.3959278,48.21434609999997],[16.3959537,48.214351799999974],[16.3959812,48.21435450000001],[16.3961107,48.21435869999999],[16.3961617,48.2143586],[16.3962667,48.2143619],[16.3964073,48.214366299999966],[16.3965681,48.2143753],[16.3967618,48.214380699999964],[16.3969082,48.21437980000002],[16.3969653,48.2143811],[16.3969896,48.214388499999984],[16.3970146,48.214400299999994],[16.3971361,48.214414499999975],[16.3973204,48.21445079999998]]},"properties":{"highway":"footway","name":"Vivariumstraße"}},{"type":"Feature","id":"24522425","geometry":{"type":"LineString","coordinates":[[16.3946609,48.21240499999999],[16.3958456,48.212925299999995]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Laufbergergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148847","geometry":{"type":"LineString","coordinates":[[16.3958456,48.212925299999995],[16.3968632,48.213366199999996],[16.3969615,48.213408799999996]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Laufbergergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"46738182","geometry":{"type":"LineString","coordinates":[[16.398757,48.20701589999999],[16.3989013,48.206351799999965]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Böcklinstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522419","geometry":{"type":"LineString","coordinates":[[16.3979076,48.20691149999999],[16.398757,48.20701589999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tiergartenstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522422","geometry":{"type":"LineString","coordinates":[[16.3985086,48.207985500000035],[16.3991459,48.208069799999976],[16.3993265,48.208102199999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sellenygasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"164578800","geometry":{"type":"LineString","coordinates":[[16.3991723,48.21209780000001],[16.3989896,48.21177499999999],[16.3988096,48.21170040000001]]},"properties":{"highway":"footway","name":"Rustenschacherallee"}},{"type":"Feature","id":"29100950","geometry":{"type":"LineString","coordinates":[[16.3978329,48.21000480000001],[16.3987632,48.21013020000001]]},"properties":{"bicycle":"yes","highway":"footway","name":"Josef-Gall-Gasse"}},{"type":"Feature","id":"46738180","geometry":{"type":"LineString","coordinates":[[16.400625,48.2062397],[16.4005014,48.206279600000016],[16.3990488,48.206155300000006],[16.3989524,48.20614810000001]]},"properties":{"bicycle":"yes","cycleway":"lane","foot":"use_sidepath","highway":"residential","lcn":"yes","maxspeed":"50","name":"Wittelsbachstraße","oneway":"yes"}},{"type":"Feature","id":"46738179","geometry":{"type":"LineString","coordinates":[[16.3989013,48.206351799999965],[16.3989412,48.2061928],[16.3989524,48.20614810000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Böcklinstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522434","geometry":{"type":"LineString","coordinates":[[16.3989303,48.21150270000001],[16.3988277,48.21118310000003],[16.3987513,48.21079019999999],[16.3987632,48.21013020000001],[16.3988014,48.20976910000002],[16.3988945,48.209339700000015],[16.3990544,48.20878779999998],[16.3993265,48.208102199999985],[16.3996355,48.20754170000001],[16.3999444,48.207047999999986],[16.4001141,48.20679540000003],[16.40032,48.206567199999995],[16.4005294,48.206333099999995],[16.400625,48.2062397]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rustenschacherallee","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"46738181","geometry":{"type":"LineString","coordinates":[[16.3980181,48.206072999999975],[16.3980106,48.2061319],[16.3980001,48.2062152],[16.3979914,48.20627970000001],[16.3979874,48.20631079999998],[16.3979076,48.20691149999999]]},"properties":{"highway":"primary","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"9704966","geometry":{"type":"LineString","coordinates":[[16.3989524,48.20614810000001],[16.3989592,48.20612310000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Böcklinstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"474636906","geometry":{"type":"LineString","coordinates":[[16.4005294,48.206333099999995],[16.3996197,48.206250600000004],[16.3991222,48.206209900000005],[16.3990389,48.20620199999999],[16.3989412,48.2061928],[16.3988275,48.206183399999986],[16.3981496,48.20612729999999],[16.398106,48.20613130000001],[16.3980106,48.2061319]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Wittelsbachstraße"}},{"type":"Feature","id":"24522421","geometry":{"type":"LineString","coordinates":[[16.3967428,48.20983410000002],[16.3978329,48.21000480000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Josef-Gall-Gasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148842","geometry":{"type":"LineString","coordinates":[[16.3969615,48.213408799999996],[16.3970129,48.213359],[16.3977957,48.21262350000001],[16.3985007,48.21198150000001],[16.3988096,48.21170040000001],[16.3989064,48.211596600000036],[16.3989303,48.21150270000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sportklubstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"12527195","geometry":{"type":"LineString","coordinates":[[16.3977957,48.21262350000001],[16.3966041,48.212117000000006],[16.395443,48.21161510000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kurzbauergasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522420","geometry":{"type":"LineString","coordinates":[[16.3977059,48.2078832],[16.3985086,48.207985500000035]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sellenygasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9824872","geometry":{"type":"LineString","coordinates":[[16.3958456,48.212925299999995],[16.3965254,48.21219780000001],[16.3966041,48.212117000000006],[16.3972948,48.21140070000004],[16.3973904,48.211253399999975],[16.3978329,48.21000480000001],[16.3978907,48.209837299999975],[16.3985086,48.207985500000035],[16.398757,48.20701589999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Böcklinstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"474636903","geometry":{"type":"LineString","coordinates":[[16.3980106,48.2061319],[16.3979162,48.2061362],[16.3978264,48.206099600000016],[16.3976433,48.20608440000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rotundenbrücke"}},{"type":"Feature","id":"479131593","geometry":{"type":"LineString","coordinates":[[16.3939516,48.209637499999985],[16.3940514,48.20968850000003],[16.3949545,48.210003099999994]]},"properties":{"cycleway":"opposite_track","highway":"residential","maxspeed":"30","name":"Custozzagasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"96929334","geometry":{"type":"LineString","coordinates":[[16.3942951,48.207695],[16.394729,48.20777410000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kegelgasse","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"8053415","geometry":{"type":"LineString","coordinates":[[16.3935422,48.20755270000001],[16.3935829,48.207565999999986]]},"properties":{"highway":"pedestrian","name":"Kegelgasse"}},{"type":"Feature","id":"96929325","geometry":{"type":"LineString","coordinates":[[16.394729,48.20777410000002],[16.3957159,48.20796580000001],[16.3958924,48.20799370000003],[16.3959574,48.20800400000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kegelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9653530","geometry":{"type":"LineString","coordinates":[[16.3945638,48.20815870000001],[16.3933777,48.20794839999999],[16.3932893,48.20794160000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blütengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"68986326","geometry":{"type":"LineString","coordinates":[[16.3934021,48.2066045],[16.393969,48.20675909999997],[16.3940468,48.20678029999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rudolf-von-Alt-Platz","note":"offizieller Name, Straßenschild noch ohne -","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Rudolf von Alt"}},{"type":"Feature","id":"68986321","geometry":{"type":"LineString","coordinates":[[16.393295,48.20680489999998],[16.3932719,48.20674710000003],[16.3933322,48.20664120000001],[16.3934021,48.2066045]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rudolf-von-Alt-Platz","note":"offizieller Name, Straßenschild noch ohne -","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Rudolf von Alt"}},{"type":"Feature","id":"9704326","geometry":{"type":"LineString","coordinates":[[16.39393,48.206958799999995],[16.3938531,48.20694019999999],[16.393295,48.20680489999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rudolf-von-Alt-Platz","note":"offizieller Name, Straßenschild noch ohne -","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Rudolf von Alt"}},{"type":"Feature","id":"178446495","geometry":{"type":"LineString","coordinates":[[16.396054,48.20734540000001],[16.3955496,48.207303999999965],[16.3950808,48.207183799999996],[16.3949743,48.2071416]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paracelsusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8053414","geometry":{"type":"LineString","coordinates":[[16.3939921,48.2068711],[16.3940624,48.206890499999986],[16.3949743,48.2071416]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paracelsusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9293132","geometry":{"type":"LineString","coordinates":[[16.3980181,48.206072999999975],[16.397831,48.20606299999997],[16.3976493,48.20605259999999]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lcn":"yes","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes"}},{"type":"Feature","id":"10363007","geometry":{"type":"LineString","coordinates":[[16.3989524,48.20614810000001],[16.3988377,48.206139399999984],[16.3981552,48.206084299999986],[16.3980181,48.206072999999975]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"residential","lcn":"yes","maxspeed":"50","name":"Wittelsbachstraße","oneway":"yes"}},{"type":"Feature","id":"353000985","geometry":{"type":"LineString","coordinates":[[16.3980276,48.2059792],[16.3980181,48.206072999999975]]},"properties":{"highway":"primary","lanes":"3","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"353000983","geometry":{"type":"LineString","coordinates":[[16.3980276,48.2059792],[16.3981672,48.205991900000015],[16.3988581,48.20605160000002],[16.3989755,48.206061799999986],[16.3990669,48.20607050000001],[16.4005176,48.206196500000004],[16.400625,48.2062397]]},"properties":{"bicycle":"yes","cycleway":"lane","foot":"use_sidepath","highway":"residential","lcn":"yes","maxspeed":"50","name":"Wittelsbachstraße","oneway":"yes"}},{"type":"Feature","id":"474636909","geometry":{"type":"LineString","coordinates":[[16.3980339,48.205927],[16.3978813,48.2059155],[16.3978477,48.20592979999998],[16.3976694,48.20591200000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rotundenbrücke"}},{"type":"Feature","id":"474636912","geometry":{"type":"LineString","coordinates":[[16.4008581,48.20617920000001],[16.4006783,48.2061612],[16.3996514,48.2060798],[16.3991544,48.2060362],[16.3990759,48.206028],[16.3989942,48.2060195],[16.398868,48.206009300000005],[16.3981723,48.205953100000016],[16.3981455,48.20593610000003],[16.3980339,48.205927]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Wittelsbachstraße"}},{"type":"Feature","id":"353000986","geometry":{"type":"LineString","coordinates":[[16.3976902,48.205947699999996],[16.3978437,48.205962],[16.3980276,48.2059792]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lcn":"yes","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes"}},{"type":"Feature","id":"474636904","geometry":{"type":"LineString","coordinates":[[16.3968111,48.20601550000001],[16.3965633,48.20600000000002]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rotundenbrücke"}},{"type":"Feature","id":"474636905","geometry":{"type":"LineString","coordinates":[[16.3976433,48.20608440000001],[16.3968111,48.20601550000001]]},"properties":{"bridge":"yes","footway":"sidewalk","highway":"footway","name":"Rotundenbrücke"}},{"type":"Feature","id":"9293130","geometry":{"type":"LineString","coordinates":[[16.3976493,48.20605259999999],[16.3968175,48.2059831]]},"properties":{"bridge":"yes","cycleway":"track","foot":"use_sidepath","highway":"tertiary","layer":"1","lcn":"yes","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes"}},{"type":"Feature","id":"100664200","geometry":{"type":"LineString","coordinates":[[16.396569,48.205973099999994],[16.3965171,48.2059687],[16.3963438,48.20595270000001]]},"properties":{"cycleway:right":"lane","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"8053409","geometry":{"type":"LineString","coordinates":[[16.3968175,48.2059831],[16.396569,48.205973099999994]]},"properties":{"cycleway":"track","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"353000984","geometry":{"type":"LineString","coordinates":[[16.3963657,48.20584629999999],[16.3965362,48.205856100000005],[16.3965996,48.20585840000001],[16.3968426,48.205876200000006]]},"properties":{"cycleway":"track","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"353000982","geometry":{"type":"LineString","coordinates":[[16.3968426,48.205876200000006],[16.3976902,48.205947699999996]]},"properties":{"bridge":"yes","cycleway":"track","foot":"use_sidepath","highway":"tertiary","layer":"1","lcn":"yes","maxspeed":"50","name":"Rotundenbrücke","oneway":"yes"}},{"type":"Feature","id":"434004982","geometry":{"type":"LineString","coordinates":[[16.3963438,48.20595270000001],[16.3963526,48.20590729999998]]},"properties":{"highway":"primary","lanes":"3","maxspeed":"50","name":"Erdberger Lände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"474636910","geometry":{"type":"LineString","coordinates":[[16.3968272,48.20583779999998],[16.3966096,48.205820200000005]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rotundenbrücke"}},{"type":"Feature","id":"474636911","geometry":{"type":"LineString","coordinates":[[16.3976694,48.20591200000001],[16.3968272,48.20583779999998]]},"properties":{"bridge":"yes","footway":"sidewalk","highway":"footway","name":"Rotundenbrücke"}},{"type":"Feature","id":"10362994","geometry":{"type":"LineString","coordinates":[[16.3963438,48.20595270000001],[16.3962019,48.20593890000001],[16.3960511,48.205922999999984],[16.3958721,48.2059089],[16.3955174,48.20585599999998],[16.3954383,48.205844299999995]]},"properties":{"cycleway:right":"lane","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"234005308","geometry":{"type":"LineString","coordinates":[[16.3932893,48.20794160000003],[16.3935036,48.2076108],[16.3935422,48.20755270000001],[16.3936095,48.2074494],[16.39393,48.206958799999995],[16.3939921,48.2068711],[16.3940468,48.20678029999999],[16.3943815,48.206265599999995],[16.3946069,48.2059204]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Löwengasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"268591387","geometry":{"type":"LineString","coordinates":[[16.3939618,48.211362399999985],[16.3941264,48.21118709999999],[16.3942542,48.21103000000002],[16.394542,48.21065820000001],[16.3947368,48.21034879999999],[16.3949545,48.210003099999994],[16.3952216,48.2095281],[16.3955704,48.20886860000002],[16.3958368,48.208339000000024],[16.3959574,48.20800400000002],[16.396054,48.20734540000001],[16.396145,48.20691260000001],[16.396285,48.20632890000002],[16.3963312,48.206030699999985],[16.3963438,48.20595270000001]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Weißgerberlände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"219446231","geometry":{"type":"LineString","coordinates":[[16.3952546,48.20580240000001],[16.3950361,48.205757199999994],[16.3949039,48.20572799999999],[16.3948965,48.20572630000001]]},"properties":{"cycleway:right":"lane","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"474636892","geometry":{"type":"LineString","coordinates":[[16.3961885,48.206003899999985],[16.3961234,48.205974999999995],[16.3957704,48.20592719999999],[16.3954303,48.20587699999999],[16.3949885,48.20580429999998],[16.3948155,48.2057748],[16.3947927,48.20578100000003]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rasumofskygasse"}},{"type":"Feature","id":"304693007","geometry":{"type":"LineString","coordinates":[[16.3954383,48.205844299999995],[16.3952546,48.20580240000001]]},"properties":{"cycleway:right":"lane","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"10276713","geometry":{"type":"LineString","coordinates":[[16.3947283,48.20567790000001],[16.394588,48.20566629999999],[16.3945164,48.2056604],[16.3941592,48.20562380000001]]},"properties":{"cycleway":"lane","highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"353000987","geometry":{"type":"LineString","coordinates":[[16.3947283,48.20567790000001],[16.3948712,48.20566370000003],[16.3952413,48.20569950000001],[16.3960406,48.205817499999995],[16.3962237,48.20583340000002],[16.3963657,48.20584629999999]]},"properties":{"cycleway:right":"lane","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"428879764","geometry":{"type":"LineString","coordinates":[[16.3948965,48.20572630000001],[16.3947283,48.20567790000001]]},"properties":{"cycleway:right":"lane","foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"219446232","geometry":{"type":"LineString","coordinates":[[16.3946069,48.2059204],[16.3946956,48.20576650000004],[16.3947263,48.205713299999985],[16.3947283,48.20567790000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Löwengasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5196236","geometry":{"type":"LineString","coordinates":[[16.4179251,48.2036397],[16.4180338,48.20371320000001],[16.4180838,48.20374780000003],[16.4181091,48.20376350000001],[16.4182323,48.203840100000036],[16.418838,48.2042352],[16.4197172,48.20480889999999],[16.4203313,48.20519999999996],[16.4217331,48.2060984],[16.4220538,48.20631879999999],[16.4222751,48.20652930000003],[16.4224292,48.2066758],[16.4226041,48.20685359999999],[16.4227666,48.20717469999997],[16.4227756,48.20774260000002],[16.4230925,48.2077644],[16.4234935,48.20783549999999],[16.4233845,48.207965],[16.4231319,48.20813659999999],[16.4231585,48.20817890000001],[16.4231913,48.2084098]]},"properties":{"highway":"pedestrian","name":"Marathonweg"}},{"type":"Feature","id":"237133166","geometry":{"type":"LineString","coordinates":[[16.4168545,48.204546300000004],[16.4170235,48.2047465],[16.4173803,48.20517190000001],[16.4176324,48.20546150000001],[16.4180293,48.20593880000001],[16.4181967,48.206228899999985]]},"properties":{"bicycle":"yes","busway":"lane","cycleway":"share_busway","foot":"no","highway":"tertiary","lanes":"2","maxspeed":"50","name":"Meiereistraße","oneway":"yes","sidewalk":"none","surface":"asphalt"}},{"type":"Feature","id":"164139765","geometry":{"type":"LineString","coordinates":[[16.4181967,48.206228899999985],[16.4179703,48.206046000000015],[16.4176458,48.205636700000014],[16.4173654,48.205290399999996],[16.417045,48.20493059999998],[16.4168906,48.20477299999999],[16.416709,48.204632499999974]]},"properties":{"bicycle":"yes","busway":"lane","cycleway":"share_busway","foot":"no","highway":"tertiary","lanes":"2","maxspeed":"50","name":"Meiereistraße","oneway":"yes","sidewalk":"none","surface":"asphalt"}},{"type":"Feature","id":"164139766","geometry":{"type":"LineString","coordinates":[[16.4164925,48.20439540000001],[16.4167174,48.204404899999986],[16.4168545,48.204546300000004]]},"properties":{"bicycle":"yes","busway":"lane","cycleway":"share_busway","foot":"no","highway":"tertiary","lanes":"2","maxspeed":"30","name":"Meiereistraße","oneway":"yes","sidewalk":"none","source:maxspeed":"sign","surface":"asphalt"}},{"type":"Feature","id":"237133165","geometry":{"type":"LineString","coordinates":[[16.416709,48.204632499999974],[16.4166729,48.20460849999998],[16.4165572,48.204489499999994],[16.4164925,48.20439540000001]]},"properties":{"bicycle":"yes","busway":"lane","cycleway":"share_busway","foot":"no","highway":"tertiary","lanes":"2","maxspeed":"30","name":"Meiereistraße","oneway":"yes","sidewalk":"none","source:maxspeed":"sign","surface":"asphalt"}},{"type":"Feature","id":"237133167","geometry":{"type":"LineString","coordinates":[[16.4161719,48.204105],[16.4163369,48.20426499999999],[16.4164,48.20431780000001],[16.4164925,48.20439540000001]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Stadionallee"}},{"type":"Feature","id":"24601364","geometry":{"type":"LineString","coordinates":[[16.4151235,48.202013300000004],[16.4152656,48.201892799999996],[16.4156129,48.201579699999996]]},"properties":{"bus":"yes","highway":"residential","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Lusthausstraße","noexit":"yes","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29340553","geometry":{"type":"LineString","coordinates":[[16.4175135,48.20278300000001],[16.4176256,48.202579199999974]]},"properties":{"bridge":"yes","created_by":"Potlatch 0.10f","highway":"footway","name":"Heustadlsteg","note":"Name fraglich /al"}},{"type":"Feature","id":"38149079","geometry":{"type":"LineString","coordinates":[[16.4156129,48.201579699999996],[16.4157408,48.20212179999996],[16.4157547,48.20242580000004],[16.4157658,48.20315789999998],[16.4158437,48.2034841],[16.4159939,48.20386410000003],[16.4161499,48.204077900000016],[16.4161719,48.204105]]},"properties":{"bus":"yes","highway":"tertiary","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Stadionallee","source:maxspeed":"sign"}},{"type":"Feature","id":"194460282","geometry":{"type":"LineString","coordinates":[[16.4149299,48.20020720000002],[16.4154158,48.20096990000002],[16.4156129,48.201579699999996]]},"properties":{"bus":"yes","highway":"tertiary","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Stadionallee","source:maxspeed":"sign"}},{"type":"Feature","id":"153846342","geometry":{"type":"LineString","coordinates":[[16.4194983,48.1988752],[16.4198674,48.198735699999986],[16.420022,48.19866590000004],[16.4202049,48.19858339999999],[16.4208745,48.19822959999999],[16.4212225,48.198080900000036],[16.4227893,48.19761840000004]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"50","motor_vehicle":"no","name":"Lusthausstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"30062059","geometry":{"type":"LineString","coordinates":[[16.4156129,48.201579699999996],[16.4157587,48.201425700000016],[16.4159762,48.20134289999996],[16.4163019,48.20122190000001],[16.4168936,48.20104470000001],[16.4172961,48.200928799999986],[16.4174814,48.2008362],[16.4176,48.2006901],[16.4176539,48.20038840000001],[16.4177473,48.19991460000003],[16.4178655,48.19974210000001],[16.4180815,48.19953340000001],[16.4182909,48.1994023],[16.4185738,48.199246500000015],[16.4194983,48.1988752]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lusthausstraße","noexit":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"206463409","geometry":{"type":"LineString","coordinates":[[16.4256221,48.19957499999998],[16.4235218,48.200683999999995],[16.4231496,48.20088049999998],[16.4230003,48.20095939999996],[16.4201049,48.202488199999976],[16.4179251,48.2036397],[16.4177664,48.20372279999998],[16.4170294,48.20411189999999],[16.4166815,48.204295599999995],[16.4164925,48.20439540000001]]},"properties":{"bicycle":"yes","foot":"yes","highway":"residential","lanes":"2","maxspeed":"50","motor_vehicle":"no","name":"Hauptallee","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"194460280","geometry":{"type":"LineString","coordinates":[[16.4149039,48.200167599999986],[16.4149299,48.20020720000002]]},"properties":{"bus":"yes","highway":"tertiary","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Stadionallee","source:maxspeed":"sign"}},{"type":"Feature","id":"305315949","geometry":{"type":"LineString","coordinates":[[16.4145544,48.202663],[16.4144942,48.202817700000026],[16.4147639,48.20317890000001],[16.4149153,48.20344829999999],[16.4150138,48.203710099999995],[16.4150531,48.20386159999998],[16.41508,48.203988899999985],[16.4151053,48.20410900000002],[16.4151905,48.20453450000002],[16.4152079,48.204775100000006],[16.4152076,48.20486199999999]]},"properties":{"highway":"track","name":"Rustenschacherallee","tracktype":"grade2","vehicle":"no"}},{"type":"Feature","id":"305315948","geometry":{"type":"LineString","coordinates":[[16.4139852,48.20211459999999],[16.4141648,48.20214440000001],[16.4143812,48.20216260000001],[16.4145704,48.2021537],[16.4147587,48.20213039999999],[16.4149351,48.2020799],[16.4151235,48.202013300000004]]},"properties":{"bus":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Lusthausstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24601363","geometry":{"type":"LineString","coordinates":[[16.4098581,48.20142630000001],[16.4101431,48.20131889999996],[16.4104078,48.2012613],[16.4105323,48.20123369999999],[16.4113161,48.201174699999996],[16.4119665,48.20119940000001],[16.412207,48.201236300000005],[16.4124467,48.20129270000001],[16.4129004,48.20144970000001],[16.4136731,48.201957799999974],[16.4138415,48.20206160000001],[16.4139852,48.20211459999999]]},"properties":{"bus":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Rustenschacherallee","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"199204966","geometry":{"type":"LineString","coordinates":[[16.4101682,48.198491399999995],[16.4101272,48.198588700000045]]},"properties":{"highway":"motorway_link","int_ref":"E 58","lanes":"2","maxspeed":"50","name":"Ostautobahn","oneway":"yes","placement":"transition","ref":"A4","source:maxspeed":"sign"}},{"type":"Feature","id":"199204970","geometry":{"type":"LineString","coordinates":[[16.4102282,48.1985176],[16.4101272,48.198588700000045]]},"properties":{"highway":"primary","lanes":"1","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","placement":"transition","ref":"B227"}},{"type":"Feature","id":"23087538","geometry":{"type":"LineString","coordinates":[[16.4098821,48.20081379999999],[16.410122,48.20094919999997],[16.410539,48.20065679999999],[16.4109251,48.2003861],[16.4113175,48.20011099999999],[16.41171,48.19983580000002],[16.4120996,48.19956260000001],[16.4124915,48.19928780000001],[16.4128775,48.199017200000014],[16.4132691,48.1987426],[16.4135535,48.19854320000002]]},"properties":{"highway":"residential","name":"Sillerweg"}},{"type":"Feature","id":"24845838","geometry":{"type":"LineString","coordinates":[[16.4098581,48.20142630000001],[16.4098501,48.20091719999999],[16.4098821,48.20081379999999],[16.4099651,48.200497600000034],[16.4100201,48.200330699999995],[16.41016,48.19990669999996],[16.4102816,48.19945820000004],[16.4103445,48.19922550000001],[16.4104021,48.199065099999984],[16.4105278,48.19871499999999],[16.4105754,48.19860840000001],[16.4107077,48.198312200000004],[16.4108332,48.198055899999986],[16.4108766,48.197967499999976],[16.4108893,48.19794150000001],[16.4110301,48.1976416],[16.4110758,48.197511399999996],[16.4110844,48.19738060000003]]},"properties":{"highway":"footway","name":"Polizeiweg","vehicle":"private"}},{"type":"Feature","id":"48555336","geometry":{"type":"LineString","coordinates":[[16.4105007,48.1975224],[16.4103276,48.198183900000004],[16.4102607,48.1983539],[16.4101682,48.198491399999995]]},"properties":{"highway":"motorway_link","int_ref":"E 58","lanes":"2","maxspeed":"50","name":"Ostautobahn","oneway":"yes","ref":"A4","source:maxspeed":"sign"}},{"type":"Feature","id":"23087533","geometry":{"type":"LineString","coordinates":[[16.4190502,48.196582500000005],[16.418624,48.19668519999999],[16.418225,48.196764],[16.4174334,48.19722100000001],[16.4164629,48.197755099999995],[16.4160996,48.19795500000001],[16.4158279,48.1981045],[16.4156566,48.19819530000001],[16.4152155,48.1984291],[16.4147745,48.19866300000001],[16.4145366,48.1987891],[16.414197,48.1989691],[16.4140453,48.199040499999995]]},"properties":{"highway":"footway","name":"Klaschkaweg"}},{"type":"Feature","id":"65192187","geometry":{"type":"LineString","coordinates":[[16.414437,48.19510159999999],[16.4157722,48.19601669999997],[16.4159759,48.196153399999986],[16.4167013,48.196643300000034],[16.4170675,48.1969335],[16.4174334,48.19722100000001],[16.4178012,48.19750959999999],[16.4181662,48.19779610000003],[16.4186663,48.19818860000001]]},"properties":{"highway":"footway","name":"Hofrat Krammer-Weg"}},{"type":"Feature","id":"29330144","geometry":{"type":"LineString","coordinates":[[16.4197846,48.196246],[16.4197812,48.196284899999995],[16.4197516,48.19657269999999],[16.4197641,48.196617599999996],[16.4198308,48.196656399999966],[16.4198743,48.1966984],[16.4199122,48.1968177],[16.4199181,48.1969503],[16.4198906,48.197194499999995],[16.4196987,48.197472999999974],[16.41944,48.19776150000004],[16.419368,48.19790040000001],[16.4193295,48.198038499999996],[16.4193478,48.19824969999999],[16.4193935,48.1984209],[16.4194983,48.1988752]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"30","name":"Wasserwiesenweg","source:maxspeed":"AT:zone:30","vehicle":"private"}},{"type":"Feature","id":"8106870","geometry":{"type":"LineString","coordinates":[[16.4113665,48.1970029],[16.4114592,48.19705060000001],[16.4114997,48.1970714],[16.4118903,48.1972926],[16.4119364,48.197327099999995],[16.4122978,48.19755399999997],[16.4128641,48.1979623],[16.4132034,48.198237199999994],[16.4135535,48.19854320000002],[16.4139157,48.198907399999996],[16.4140453,48.199040499999995],[16.4140459,48.19904130000003],[16.4141457,48.199151400000005],[16.4143447,48.199364900000006],[16.414673,48.199794499999996],[16.4147968,48.1999946],[16.4149039,48.200167599999986]]},"properties":{"bus":"yes","highway":"tertiary","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Stadionallee","source:maxspeed":"sign"}},{"type":"Feature","id":"148491897","geometry":{"type":"LineString","coordinates":[[16.4127111,48.19570670000002],[16.4124443,48.19586190000001],[16.4119987,48.196130900000014],[16.4115032,48.1964529],[16.4113208,48.1965874]]},"properties":{"destination":"Zentrum","destination:ref":"B227","destination:symbol":"centre","highway":"motorway","int_ref":"E 58","lanes":"2","maxspeed":"80","maxspeed:variable":"yes","name":"Ostautobahn","oneway":"yes","ref":"A4","toll":"yes"}},{"type":"Feature","id":"38147716","geometry":{"type":"LineString","coordinates":[[16.4113665,48.1970029],[16.4112799,48.19711989999999],[16.41125,48.197159700000014],[16.4111421,48.197304],[16.4110844,48.19738060000003],[16.4107065,48.19788220000001],[16.4105006,48.198155600000035],[16.4102282,48.1985176]]},"properties":{"highway":"primary","lanes":"1","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"416894283","geometry":{"type":"LineString","coordinates":[[16.4083645,48.19852290000003],[16.4085182,48.1983357],[16.4085482,48.19830060000001],[16.4089123,48.19787489999999],[16.4095734,48.1971532]]},"properties":{"highway":"motorway_link","int_ref":"E 58","lanes":"2","maxspeed":"70","name":"Ostautobahn","oneway":"yes","ref":"A4"}},{"type":"Feature","id":"9798194","geometry":{"type":"LineString","coordinates":[[16.4101987,48.19640829999997],[16.4103794,48.1964998],[16.4106941,48.1966592],[16.4109627,48.19679529999999],[16.4111798,48.1969053]]},"properties":{"bridge":"yes","highway":"primary","layer":"1","maxspeed":"50","name":"Stadionbrücke","surface":"concrete"}},{"type":"Feature","id":"152068974","geometry":{"type":"LineString","coordinates":[[16.4113208,48.1965874],[16.4111518,48.19672239999994],[16.410871,48.19697579999999],[16.4106345,48.197261],[16.4105007,48.1975224]]},"properties":{"highway":"motorway","int_ref":"E 58","lanes":"2","maxspeed":"50","name":"Ostautobahn","oneway":"yes","ref":"A4","source:maxspeed":"sign","toll":"yes"}},{"type":"Feature","id":"9797882","geometry":{"type":"LineString","coordinates":[[16.4111798,48.1969053],[16.4113665,48.1970029]]},"properties":{"highway":"primary","maxspeed":"50","name":"Stadionbrücke"}},{"type":"Feature","id":"48555355","geometry":{"type":"LineString","coordinates":[[16.4095734,48.1971532],[16.4100537,48.19664449999996],[16.4105984,48.196153699999996],[16.4112254,48.1956768],[16.4116188,48.195357400000006],[16.411907,48.19513349999997]]},"properties":{"highway":"motorway","int_ref":"E 58","lanes":"2","lit":"yes","maxspeed":"70","name":"Ostautobahn","oneway":"yes","ref":"A4","toll":"yes","turn:lanes":"through|through;right"}},{"type":"Feature","id":"188140545","geometry":{"type":"LineString","coordinates":[[16.4102738,48.1963207],[16.4104699,48.196419899999995],[16.4110596,48.1967181],[16.4113105,48.19684399999997]]},"properties":{"bridge":"yes","foot":"yes","highway":"cycleway","layer":"1","name":"Stadionbrücke","segregated":"yes"}},{"type":"Feature","id":"9705375","geometry":{"type":"LineString","coordinates":[[16.404292,48.20323100000002],[16.4039671,48.20267870000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brandgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9813664","geometry":{"type":"LineString","coordinates":[[16.4058252,48.202788699999985],[16.4061649,48.20327800000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lukschgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"403802204","geometry":{"type":"LineString","coordinates":[[16.4040706,48.2008309],[16.4043836,48.20111510000001],[16.4044095,48.20113860000001]]},"properties":{"highway":"service","name":"Rüdengasse"}},{"type":"Feature","id":"403802205","geometry":{"type":"LineString","coordinates":[[16.4044095,48.20113860000001],[16.4044522,48.2012043]]},"properties":{"highway":"service","layer":"-1","name":"Rüdengasse","tunnel":"building_passage"}},{"type":"Feature","id":"38147816","geometry":{"type":"LineString","coordinates":[[16.4058252,48.202788699999985],[16.4054957,48.202324799999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lukschgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148927","geometry":{"type":"LineString","coordinates":[[16.4061649,48.20327800000001],[16.4070629,48.20295390000001],[16.407642,48.20269109999998],[16.408266,48.20237070000002],[16.4093662,48.20170329999999],[16.4098581,48.20142630000001]]},"properties":{"bus":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","motor_vehicle:conditional":"no @ (Sa,Su,PH 00:00-24:00)","name":"Rustenschacherallee","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"403802202","geometry":{"type":"LineString","coordinates":[[16.4044522,48.2012043],[16.4044762,48.20125040000002]]},"properties":{"highway":"service","name":"Rüdengasse"}},{"type":"Feature","id":"411669249","geometry":{"type":"LineString","coordinates":[[16.407383,48.199731799999995],[16.4075253,48.199535500000025],[16.4076597,48.19934479999998]]},"properties":{"highway":"primary","lanes":"3","maxspeed":"50","name":"Erdberger Lände","oneway":"yes","ref":"B227","turn:lanes":"through|through|right"}},{"type":"Feature","id":"279444590","geometry":{"type":"LineString","coordinates":[[16.4061551,48.20083410000004],[16.406462,48.200637400000005],[16.4067848,48.200405399999994],[16.4069898,48.20021280000003],[16.4071209,48.200061300000016],[16.4072515,48.19991049999996],[16.407383,48.199731799999995]]},"properties":{"highway":"primary","lanes":"3","maxspeed":"50","name":"Erdberger Lände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"9704988","geometry":{"type":"LineString","coordinates":[[16.4030024,48.20444330000001],[16.4026562,48.203574599999996]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Friedensgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38147830","geometry":{"type":"LineString","coordinates":[[16.4026562,48.203574599999996],[16.4024007,48.202949700000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Friedensgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"305315947","geometry":{"type":"LineString","coordinates":[[16.4026562,48.203574599999996],[16.404292,48.20323100000002],[16.4056435,48.20284190000001],[16.4058252,48.202788699999985]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Böcklinstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"377204490","geometry":{"type":"LineString","coordinates":[[16.4019418,48.20193169999999],[16.4019658,48.2019784],[16.402019,48.2019933]]},"properties":{"foot":"yes","highway":"cycleway","name":"Erdberger Steg"}},{"type":"Feature","id":"43403454","geometry":{"type":"LineString","coordinates":[[16.4020391,48.20202660000001],[16.4023352,48.20278730000001]]},"properties":{"bridge":"yes","foot":"yes","highway":"cycleway","layer":"1","name":"Erdberger Steg","segregated":"no","surface":"asphalt"}},{"type":"Feature","id":"43403455","geometry":{"type":"LineString","coordinates":[[16.402019,48.2019933],[16.4020391,48.20202660000001]]},"properties":{"foot":"yes","highway":"cycleway","layer":"1","name":"Erdberger Steg","segregated":"no","surface":"asphalt"}},{"type":"Feature","id":"35408447","geometry":{"type":"LineString","coordinates":[[16.4032154,48.1996039],[16.4028921,48.1997868]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dietrichgasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"386295446","geometry":{"type":"LineString","coordinates":[[16.4023408,48.19921409999998],[16.4028921,48.1997868]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rüdengasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"230254204","geometry":{"type":"LineString","coordinates":[[16.400625,48.2062397],[16.4006783,48.2061612],[16.4007024,48.20612570000003],[16.4011553,48.2056728],[16.4017328,48.205220499999996],[16.4022878,48.204835900000006],[16.402886,48.20450070000001],[16.4030024,48.20444330000001],[16.4043112,48.2039101],[16.4061649,48.20327800000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rustenschacherallee","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9705042","geometry":{"type":"LineString","coordinates":[[16.4002899,48.203344000000016],[16.4009836,48.20402820000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paffrathgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"479964493","geometry":{"type":"LineString","coordinates":[[16.3995259,48.20151419999996],[16.4015003,48.201205000000016],[16.4016195,48.201187300000015]]},"properties":{"highway":"proposed","name":"Louise-Martini-Straße","source":"https://www.wien.gv.at/wiki/index.php?title=Louise-Martini-Weg"}},{"type":"Feature","id":"35408448","geometry":{"type":"LineString","coordinates":[[16.4028921,48.1997868],[16.4012608,48.200626599999964],[16.4011374,48.200696300000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Dietrichgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"386295444","geometry":{"type":"LineString","coordinates":[[16.3995068,48.1998471],[16.4001028,48.199562000000014],[16.4001098,48.19955590000001],[16.4001573,48.199514300000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Hagenmüllergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"15244413","geometry":{"type":"LineString","coordinates":[[16.4011374,48.200696300000004],[16.4012572,48.2007663],[16.4016195,48.201187300000015],[16.4021205,48.20176939999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haidingergasse","segregated":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30","wikipedia":"de:Wilhelm Ritter von Haidinger"}},{"type":"Feature","id":"34909711","geometry":{"type":"LineString","coordinates":[[16.4006477,48.200114799999994],[16.4022654,48.199274599999995],[16.4023408,48.19921409999998]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Göllnergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5043397","geometry":{"type":"LineString","coordinates":[[16.4049863,48.198982099999995],[16.4046288,48.19880480000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Drorygasse","source:maxspeed":"AT:zone:30","wikipedia":"de:Henry James Drory"}},{"type":"Feature","id":"148491888","geometry":{"type":"LineString","coordinates":[[16.4076597,48.19934479999998],[16.4078366,48.1991659],[16.4083398,48.198553000000004],[16.4083645,48.19852290000003]]},"properties":{"highway":"motorway_link","int_ref":"E 58","lanes":"2","maxspeed":"50","name":"Ostautobahn","oneway":"yes","ref":"A4"}},{"type":"Feature","id":"403833275","geometry":{"type":"LineString","coordinates":[[16.4049863,48.198982099999995],[16.4054557,48.199245099999956],[16.4058935,48.19948049999999],[16.407025,48.20010220000003]]},"properties":{"highway":"proposed","name":"Drorygasse","proposed":"footway","source":"http://blog.oebb.at/backend/wp-content/uploads/2013/10/2011_08_ErdbergerLaende12633.pdf"}},{"type":"Feature","id":"3988107","geometry":{"type":"LineString","coordinates":[[16.4082936,48.198403299999995],[16.4083699,48.19838949999999],[16.4085182,48.1983357]]},"properties":{"destination:symbol":"motorway","highway":"motorway_link","lanes":"1","maxspeed":"70","name":"Ostautobahn","oneway":"yes","ref":"A4"}},{"type":"Feature","id":"268591522","geometry":{"type":"LineString","coordinates":[[16.4076597,48.19934479999998],[16.4077513,48.1991429],[16.4079755,48.19885000000002],[16.4082154,48.198513100000014],[16.4082389,48.19848009999998],[16.4082452,48.198471299999994],[16.4082936,48.198403299999995]]},"properties":{"highway":"primary","lanes":"1","maxspeed":"50","name":"Erdberger Lände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"5043376","geometry":{"type":"LineString","coordinates":[[16.4063228,48.197810000000004],[16.4064011,48.19783530000001],[16.407467,48.198178299999995],[16.4077195,48.19825420000004],[16.4081375,48.198381100000034],[16.4081862,48.198395500000004],[16.4082393,48.198402499999986],[16.4082936,48.198403299999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lechnerstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"386295443","geometry":{"type":"LineString","coordinates":[[16.4018461,48.198693399999996],[16.4032675,48.198080000000004],[16.4033445,48.19804679999996]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Hagenmüllergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"386295445","geometry":{"type":"LineString","coordinates":[[16.4018461,48.198693399999996],[16.4023408,48.19921409999998]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Rüdengasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"386295441","geometry":{"type":"LineString","coordinates":[[16.4023408,48.19921409999998],[16.4038807,48.198390699999976]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Göllnergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5043411","geometry":{"type":"LineString","coordinates":[[16.4063228,48.197810000000004],[16.4062719,48.19783989999999],[16.4062478,48.1978541],[16.4055266,48.19827759999998],[16.4046288,48.19880480000003],[16.4032154,48.1996039]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Dietrichgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5732583","geometry":{"type":"LineString","coordinates":[[16.4011475,48.19796529999999],[16.4012117,48.198033699999996],[16.401236,48.198059],[16.4018461,48.198693399999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rüdengasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5043399","geometry":{"type":"LineString","coordinates":[[16.4046288,48.19880480000003],[16.4038807,48.198390699999976],[16.4034112,48.19808950000001],[16.4033445,48.19804679999996],[16.4032606,48.197989199999995],[16.4026023,48.19753700000001],[16.40254,48.197498800000005],[16.4024495,48.19744109999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Drorygasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","wikipedia":"de:Henry James Drory"}},{"type":"Feature","id":"15244411","geometry":{"type":"LineString","coordinates":[[16.4011374,48.200696300000004],[16.4010749,48.20064579999999],[16.4006477,48.200114799999994],[16.4001573,48.199514300000004],[16.3997424,48.1990222],[16.3996965,48.19895840000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haidingergasse","oneway":"yes","sidewalk":"left","source:maxspeed":"AT:zone:30","wikipedia":"de:Wilhelm Ritter von Haidinger"}},{"type":"Feature","id":"386295442","geometry":{"type":"LineString","coordinates":[[16.4001573,48.199514300000004],[16.4018461,48.198693399999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hagenmüllergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"200962807","geometry":{"type":"LineString","coordinates":[[16.399568,48.19864479999998],[16.3995445,48.19862699999999]]},"properties":{"foot":"yes","highway":"cycleway","name":"Keinergasse"}},{"type":"Feature","id":"203288834","geometry":{"type":"LineString","coordinates":[[16.3996965,48.19895840000001],[16.3997449,48.198925900000006],[16.3998819,48.19881110000003],[16.4004309,48.198455800000005],[16.4010787,48.198007099999984],[16.4011475,48.19796529999999],[16.401239,48.1979278],[16.4013827,48.1978737],[16.40143,48.19785330000002],[16.4023655,48.197473099999996],[16.4024495,48.19744109999999]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Erdbergstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"200962805","geometry":{"type":"LineString","coordinates":[[16.3996078,48.197739799999965],[16.3993836,48.19788209999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hainburger Straße"}},{"type":"Feature","id":"139000837","geometry":{"type":"LineString","coordinates":[[16.4050991,48.196575699999954],[16.4051348,48.19664209999999],[16.4051659,48.19670009999999],[16.4055914,48.197134500000004],[16.4057677,48.197301400000015],[16.4061673,48.19769249999999],[16.4063228,48.197810000000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lechnerstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"148332760","geometry":{"type":"LineString","coordinates":[[16.4056238,48.19647509999999],[16.4058991,48.196428],[16.4066402,48.196304],[16.4067587,48.19624330000002],[16.4068242,48.19619850000004],[16.4073976,48.1957295],[16.4075725,48.1955964],[16.4077218,48.19548839999999],[16.4078242,48.19541029999999],[16.4078836,48.19536440000002]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Erdbergstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5043380","geometry":{"type":"LineString","coordinates":[[16.4063228,48.197810000000004],[16.4065202,48.19767810000002],[16.4090571,48.196513099999976],[16.4091253,48.1963763]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Dietrichgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"41669393","geometry":{"type":"LineString","coordinates":[[16.4082936,48.198403299999995],[16.408835,48.197710700000016],[16.4094404,48.19687529999999],[16.4096895,48.19656929999999],[16.4098988,48.1963983],[16.410042,48.19633279999999]]},"properties":{"highway":"primary","lanes":"1","maxspeed":"30","name":"Erdberger Lände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"5732762","geometry":{"type":"LineString","coordinates":[[16.4033445,48.19804679999996],[16.4034617,48.198005499999994],[16.4034853,48.19799710000001],[16.4044391,48.19760720000002],[16.4053641,48.197229300000004],[16.4055076,48.1971662],[16.4055914,48.197134500000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hagenmüllergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5732511","geometry":{"type":"LineString","coordinates":[[16.4024495,48.19744109999999],[16.4023637,48.197384099999994],[16.4022877,48.19730680000001],[16.402103,48.1971192],[16.4020018,48.19702480000001],[16.4017034,48.19673990000001],[16.4016492,48.196688499999965]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kardinal-Nagl-Platz","wikipedia":"de:Franz Xaver Nagl"}},{"type":"Feature","id":"26732500","geometry":{"type":"LineString","coordinates":[[16.4009322,48.19700080000001],[16.4013297,48.196827799999994],[16.4015148,48.19674729999997],[16.4015722,48.19672220000001],[16.4016492,48.196688499999965],[16.4017426,48.196648299999964],[16.4026976,48.1962274],[16.4032641,48.19597829999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hainburger Straße"}},{"type":"Feature","id":"8053297","geometry":{"type":"LineString","coordinates":[[16.4016492,48.196688499999965],[16.4016071,48.196646499999986],[16.4014283,48.19646639999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rabengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"39890135","geometry":{"type":"LineString","coordinates":[[16.4024495,48.19744109999999],[16.4025707,48.197391400000015],[16.4033177,48.1970958],[16.403699,48.19695390000001],[16.4041885,48.196820900000006],[16.4044424,48.19675190000001],[16.4048715,48.19663230000003],[16.4049667,48.1966036],[16.4050991,48.196575699999954],[16.4056238,48.19647509999999]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Erdbergstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"428801730","geometry":{"type":"LineString","coordinates":[[16.4014283,48.19646639999999],[16.4013464,48.1963853]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rabengasse","oneway":"yes","source:maxspeed":"AT:zone:30","tunnel":"building_passage"}},{"type":"Feature","id":"5732472","geometry":{"type":"LineString","coordinates":[[16.402103,48.1971192],[16.402186,48.19708399999999],[16.4035589,48.19649799999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gestettengasse"}},{"type":"Feature","id":"12621277","geometry":{"type":"LineString","coordinates":[[16.4004436,48.19723809999999],[16.3996078,48.197739799999965]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hainburger Straße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"5732591","geometry":{"type":"LineString","coordinates":[[16.4004436,48.19723809999999],[16.4005585,48.1973356],[16.4010948,48.19791090000001],[16.4011475,48.19796529999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kardinal-Nagl-Platz","wikipedia":"de:Franz Xaver Nagl"}},{"type":"Feature","id":"12621451","geometry":{"type":"LineString","coordinates":[[16.4000458,48.196801100000044],[16.4000967,48.196854]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rüdengasse","oneway":"yes","tunnel":"building_passage"}},{"type":"Feature","id":"428801729","geometry":{"type":"LineString","coordinates":[[16.4000967,48.196854],[16.4004436,48.19723809999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rüdengasse","oneway":"yes"}},{"type":"Feature","id":"12978256","geometry":{"type":"LineString","coordinates":[[16.4004436,48.19723809999999],[16.4004426,48.197184100000015],[16.4004667,48.19715160000001],[16.4006514,48.1970651],[16.4008221,48.1969919],[16.4008809,48.196988000000005],[16.4009322,48.19700080000001]]},"properties":{"foot":"yes","highway":"cycleway","name":"Hainburger Straße","segregated":"yes"}},{"type":"Feature","id":"9705097","geometry":{"type":"LineString","coordinates":[[16.4000406,48.20461419999998],[16.3990461,48.204103799999984]]},"properties":{"highway":"residential","maxspeed":"30","name":"Halmgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9712211","geometry":{"type":"LineString","coordinates":[[16.3968477,48.20455209999997],[16.396767,48.20468349999999],[16.3967023,48.20499130000002],[16.3966897,48.20518580000001],[16.3967255,48.2053334],[16.3967148,48.205417100000005],[16.3966554,48.2056058],[16.3966186,48.2057623],[16.3966148,48.205787000000015],[16.3966096,48.205820200000005],[16.3965996,48.20585840000001],[16.396569,48.205973099999994],[16.3965633,48.20600000000002],[16.3965579,48.2060257],[16.3964908,48.20632850000001],[16.3964031,48.206710499999986],[16.3963451,48.20698249999998],[16.3963671,48.207134999999994],[16.3964365,48.2072259],[16.3964939,48.20729509999998]]},"properties":{"bicycle":"yes","foot":"yes","highway":"cycleway","lcn":"yes","name":"Hundertwasser-Promenade","wikipedia":"de:Friedensreich Hundertwasser"}},{"type":"Feature","id":"24522418","geometry":{"type":"LineString","coordinates":[[16.3984266,48.20481569999998],[16.3994916,48.20512449999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Thugutstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"164578773","geometry":{"type":"LineString","coordinates":[[16.4164925,48.20439540000001],[16.4162408,48.20452739999999],[16.4161675,48.20456589999998],[16.416113,48.204594499999985],[16.4152305,48.20505729999999],[16.4136883,48.2058663],[16.4131836,48.206131],[16.4109628,48.2072958],[16.409538,48.20805789999997],[16.4077884,48.20896010000001],[16.4067711,48.209494300000046],[16.4064258,48.20967540000001],[16.4058567,48.209973899999994],[16.4056372,48.210089100000005],[16.4048082,48.210523800000004],[16.4038356,48.21103389999996],[16.4025738,48.211695700000035],[16.4022138,48.2118845],[16.4014413,48.21228959999999],[16.4012571,48.2123862],[16.4001837,48.2129492],[16.4000819,48.21300260000004],[16.399011,48.21356420000001],[16.3982061,48.21398629999999]]},"properties":{"bicycle":"yes","foot":"yes","highway":"residential","horse":"yes","lanes":"2","maxspeed":"50","motor_vehicle":"no","name":"Hauptallee","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"10069945","geometry":{"type":"LineString","coordinates":[[16.3965818,48.20481369999999],[16.3962485,48.204781]]},"properties":{"highway":"residential","maxspeed":"30","name":"Marxergasse","oneway":"yes","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"29076343","geometry":{"type":"LineString","coordinates":[[16.3981658,48.2026592],[16.3983381,48.20280940000001],[16.3984306,48.20289569999997]]},"properties":{"highway":"service","name":"Fritz-Henkel-Gasse","wikipedia":"de:Friedrich Karl Henkel"}},{"type":"Feature","id":"10069974","geometry":{"type":"LineString","coordinates":[[16.3967902,48.20330770000001],[16.3972431,48.2037033],[16.3972776,48.20371940000001],[16.3973289,48.20374340000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hießgasse","oneway":"yes"}},{"type":"Feature","id":"428879767","geometry":{"type":"LineString","coordinates":[[16.3989592,48.20612310000001],[16.3989755,48.206061799999986],[16.3989942,48.2060195],[16.3992327,48.20548099999999],[16.3994916,48.20512449999998],[16.3997884,48.20482190000001],[16.4000406,48.20461419999998],[16.4005781,48.20426710000001],[16.4009836,48.20402820000001],[16.4017792,48.20377319999997],[16.4024611,48.2036191],[16.4026562,48.203574599999996]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Böcklinstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10069891","geometry":{"type":"LineString","coordinates":[[16.3946803,48.20544610000002],[16.3946223,48.205509999999975],[16.3946587,48.20559459999998],[16.3946657,48.20561090000001],[16.3947283,48.20567790000001]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"474636890","geometry":{"type":"LineString","coordinates":[[16.3962335,48.2057858],[16.3961432,48.20579000000001],[16.3958911,48.20576320000001],[16.3947122,48.2055781]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rasumofskygasse"}},{"type":"Feature","id":"10069957","geometry":{"type":"LineString","coordinates":[[16.3953403,48.203981500000026],[16.3947383,48.204309499999994]]},"properties":{"created_by":"Potlatch 0.6c","highway":"pedestrian","name":"Hörnesgasse"}},{"type":"Feature","id":"8053404","geometry":{"type":"LineString","coordinates":[[16.3962485,48.204781],[16.3956313,48.20504090000003],[16.3955156,48.2050801]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Marxergasse","oneway":"yes","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"10362921","geometry":{"type":"LineString","coordinates":[[16.3955156,48.2050801],[16.3960344,48.205604300000005],[16.3960922,48.205657299999984],[16.3961452,48.2056805],[16.3962069,48.205690300000015],[16.3962606,48.20568399999999],[16.3963062,48.205668],[16.3963531,48.20564289999999],[16.3964132,48.20559180000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kundmanngasse","oneway":"yes","wikipedia":"de:Carl Kundmann"}},{"type":"Feature","id":"10362936","geometry":{"type":"LineString","coordinates":[[16.3955156,48.2050801],[16.3954373,48.2051079],[16.3949073,48.205337499999956],[16.3947372,48.20541120000004],[16.3946803,48.20544610000002]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"30","name":"Marxergasse","oneway":"yes","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"8053351","geometry":{"type":"LineString","coordinates":[[16.39782,48.203282400000006],[16.3977193,48.2032059],[16.3974683,48.2029752],[16.3969546,48.20249320000002],[16.3962501,48.201859299999995],[16.3961982,48.20181259999998]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Wassergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8053395","geometry":{"type":"LineString","coordinates":[[16.3967902,48.20330770000001],[16.396239,48.202815799999996],[16.3955441,48.20219850000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hießgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8053392","geometry":{"type":"LineString","coordinates":[[16.3949299,48.202412400000014],[16.3950009,48.2025318],[16.3955782,48.20309029999996],[16.3961152,48.20360160000001],[16.396709,48.204166499999985],[16.396801,48.2042017],[16.3969285,48.20420010000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Kübeckgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Karl Friedrich von Kübeck"}},{"type":"Feature","id":"8885241","geometry":{"type":"LineString","coordinates":[[16.3947834,48.20348760000002],[16.3955782,48.20309029999996],[16.396239,48.202815799999996],[16.396889,48.20252399999998],[16.3969546,48.20249320000002]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Geusaugasse","oneway":"yes"}},{"type":"Feature","id":"8053400","geometry":{"type":"LineString","coordinates":[[16.3974683,48.2029752],[16.3973924,48.203010499999976],[16.3967902,48.20330770000001],[16.3961152,48.20360160000001],[16.3953403,48.203981500000026]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hörnesgasse","oneway":"yes"}},{"type":"Feature","id":"8053402","geometry":{"type":"LineString","coordinates":[[16.3962485,48.204781],[16.3953403,48.203981500000026],[16.3947834,48.20348760000002]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Parkgasse","oneway":"yes"}},{"type":"Feature","id":"10069961","geometry":{"type":"LineString","coordinates":[[16.3947383,48.204309499999994],[16.3946729,48.204339800000014],[16.3939251,48.20466759999999],[16.3931554,48.2050443]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hörnesgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"46738178","geometry":{"type":"LineString","coordinates":[[16.3946803,48.20544610000002],[16.3945413,48.20548339999999],[16.3944039,48.20554240000004],[16.3943373,48.2055646],[16.3941592,48.20562380000001]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"30","name":"Marxergasse","oneway":"yes","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"83649747","geometry":{"type":"LineString","coordinates":[[16.3947834,48.20348760000002],[16.3942664,48.20382380000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geusaugasse"}},{"type":"Feature","id":"9653979","geometry":{"type":"LineString","coordinates":[[16.3934896,48.20430680000001],[16.3939251,48.20466759999999],[16.3947016,48.205367300000034],[16.3947372,48.20541120000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Geologengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"83649746","geometry":{"type":"LineString","coordinates":[[16.393788,48.2026367],[16.3942156,48.20303530000001],[16.3942856,48.20310030000002]]},"properties":{"highway":"pedestrian","name":"Parkgasse"}},{"type":"Feature","id":"385850486","geometry":{"type":"LineString","coordinates":[[16.3943433,48.203073500000016],[16.3943065,48.2029981]]},"properties":{"highway":"service","maxspeed":"30","name":"Parkgasse","service":"parking_aisle"}},{"type":"Feature","id":"83649744","geometry":{"type":"LineString","coordinates":[[16.3947834,48.20348760000002],[16.3943433,48.203073500000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Parkgasse"}},{"type":"Feature","id":"10070324","geometry":{"type":"LineString","coordinates":[[16.3985192,48.201226399999996],[16.3977258,48.200775599999986]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Schwalbengasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9798443","geometry":{"type":"LineString","coordinates":[[16.3963526,48.20590729999998],[16.3963657,48.20584629999999],[16.3963833,48.205769599999996],[16.3963893,48.20574379999999],[16.3964132,48.20559180000001],[16.39647,48.205307800000014],[16.3965818,48.20481369999999],[16.3966629,48.2046464],[16.3967737,48.204422799999975],[16.3969285,48.20420010000001],[16.3969972,48.20411139999999],[16.397122,48.203953799999994],[16.3973289,48.20374340000001],[16.3976365,48.2034457],[16.3977544,48.20334810000003],[16.3977846,48.20332309999998],[16.39782,48.203282400000006],[16.3984306,48.20289569999997],[16.3989823,48.202628799999985],[16.3992774,48.20250440000004],[16.3997354,48.202354299999996],[16.3998316,48.2023313],[16.4005352,48.202191200000016],[16.4019418,48.20193169999999],[16.4019436,48.20193119999999],[16.4031933,48.20168050000001],[16.4042374,48.20146030000001],[16.4050778,48.20126640000001],[16.4055605,48.20110660000003],[16.4058098,48.20100510000003],[16.4061551,48.20083410000004]]},"properties":{"highway":"primary","lanes":"3","maxspeed":"50","name":"Erdberger Lände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"10070361","geometry":{"type":"LineString","coordinates":[[16.3991661,48.19945430000004],[16.3995068,48.1998471],[16.4000137,48.200441100000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Löwenherzgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","wikipedia":"de:Richard Löwenherz"}},{"type":"Feature","id":"397206451","geometry":{"type":"LineString","coordinates":[[16.3961982,48.20181259999998],[16.3962769,48.2017678],[16.3967104,48.201521000000014],[16.396919,48.2013719],[16.3973038,48.2010712],[16.3977258,48.200775599999986],[16.3980517,48.200530000000015]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Erdbergstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8053360","geometry":{"type":"LineString","coordinates":[[16.4006477,48.200114799999994],[16.4005897,48.20014459999996],[16.4000137,48.200441100000006],[16.3994438,48.20073919999999],[16.3989202,48.20101310000001],[16.3985192,48.201226399999996]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Göllnergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"199204972","geometry":{"type":"LineString","coordinates":[[16.4101272,48.198588700000045],[16.4088892,48.20030650000001],[16.4085522,48.200710499999985],[16.4081121,48.20107869999998],[16.4077229,48.20135210000001],[16.4069451,48.201775999999995],[16.4062413,48.202082899999965],[16.4054957,48.202324799999985],[16.4052571,48.20238739999999],[16.404844,48.20248999999998],[16.4039671,48.20267870000001],[16.4032507,48.202801300000004],[16.402691,48.20290270000001],[16.4024917,48.20293369999999],[16.4024007,48.202949700000005],[16.4007809,48.203220199999976],[16.4002899,48.203344000000016],[16.3999264,48.203501500000016],[16.3995402,48.203722899999974],[16.3990461,48.204103799999984],[16.3987779,48.204367700000006],[16.3984266,48.20481569999998],[16.3982568,48.205091100000004],[16.3981549,48.2053171],[16.3980814,48.2055642],[16.3980561,48.2057432],[16.3980339,48.205927],[16.3980276,48.2059792]]},"properties":{"highway":"primary","lanes":"3","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"34909770","geometry":{"type":"LineString","coordinates":[[16.3980517,48.200530000000015],[16.3981662,48.200448800000004],[16.3982633,48.200379999999996],[16.3983996,48.200283299999995],[16.3987572,48.1999261],[16.3991661,48.19945430000004],[16.3994203,48.19920780000001],[16.3995949,48.19905030000001],[16.3996584,48.19899290000001],[16.3996965,48.19895840000001]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Erdbergstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"10070394","geometry":{"type":"LineString","coordinates":[[16.3971779,48.199204500000036],[16.3971955,48.19929239999999],[16.3977569,48.20033329999998],[16.3978622,48.20044250000001],[16.3979873,48.20050029999999],[16.3980517,48.200530000000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Apostelgasse","oneway":"yes"}},{"type":"Feature","id":"7998677","geometry":{"type":"LineString","coordinates":[[16.3934392,48.20146779999999],[16.393472,48.20145049999999],[16.3937128,48.20131789999999],[16.3937324,48.20129180000001],[16.3938275,48.2012306]]},"properties":{"highway":"pedestrian","name":"Hainburger Straße"}},{"type":"Feature","id":"102470909","geometry":{"type":"LineString","coordinates":[[16.3938275,48.2012306],[16.3941441,48.201033600000045],[16.3949077,48.200574700000004],[16.3949576,48.200544699999995]]},"properties":{"highway":"residential","maxspeed":"50","name":"Hainburger Straße"}},{"type":"Feature","id":"425550220","geometry":{"type":"LineString","coordinates":[[16.3934846,48.19942600000002],[16.3935793,48.19945390000001],[16.3938028,48.19953219999999],[16.3939161,48.199571899999995]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"50","name":"Neulinggasse","source":"Bing","surface":"asphalt"}},{"type":"Feature","id":"425550221","geometry":{"type":"LineString","coordinates":[[16.3933464,48.199387099999996],[16.3934846,48.19942600000002]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"50","name":"Neulinggasse","source":"Bing","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"37637911","geometry":{"type":"LineString","coordinates":[[16.3961982,48.20181259999998],[16.3961356,48.201749500000005],[16.3950155,48.200603900000004],[16.3949576,48.200544699999995],[16.3941046,48.19966579999999],[16.3940187,48.1996168],[16.3939161,48.199571899999995]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Wassergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"12621609","geometry":{"type":"LineString","coordinates":[[16.3995445,48.19862699999999],[16.3991846,48.19836110000003],[16.3989443,48.1981457]]},"properties":{"highway":"residential","maxspeed":"30","name":"Keinergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"12621405","geometry":{"type":"LineString","coordinates":[[16.3988156,48.196544500000016],[16.3994602,48.196282999999994],[16.3995425,48.19628639999999],[16.399585,48.19631029999999],[16.4000458,48.196801100000044]]},"properties":{"highway":"residential","maxspeed":"30","name":"St.-Nikolaus-Platz","oneway":"yes"}},{"type":"Feature","id":"12623107","geometry":{"type":"LineString","coordinates":[[16.3996078,48.197739799999965],[16.3995287,48.197673399999985],[16.3991883,48.19723199999996],[16.3991167,48.19713389999998],[16.3987974,48.19664929999999],[16.398796,48.1965907],[16.3988156,48.196544500000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lustgasse","oneway":"yes"}},{"type":"Feature","id":"12621368","geometry":{"type":"LineString","coordinates":[[16.3991167,48.19713389999998],[16.399536,48.19699259999999],[16.399581,48.19699589999999],[16.3996131,48.19703290000001],[16.3995939,48.1970699],[16.3991883,48.19723199999996]]},"properties":{"highway":"service","name":"St.-Nikolaus-Platz","note":"keine Einbahn, obwohl nur 1 Fahrspur, tatsächlich gefahren wirdgegen den Uhrzeigersinn"}},{"type":"Feature","id":"12830871","geometry":{"type":"LineString","coordinates":[[16.3993836,48.19788209999999],[16.3993532,48.19790699999999],[16.3993383,48.197974500000015],[16.3990813,48.19811659999999],[16.3990069,48.19813189999999],[16.3989443,48.1981457]]},"properties":{"foot":"yes","highway":"cycleway","name":"Hainburger Straße","segregated":"yes"}},{"type":"Feature","id":"8053298","geometry":{"type":"LineString","coordinates":[[16.3960608,48.1967971],[16.3960945,48.1967659]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Baumgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"305352438","geometry":{"type":"LineString","coordinates":[[16.3960608,48.1967971],[16.3966827,48.1979982],[16.3971157,48.19902510000003],[16.397177,48.19907520000001],[16.3971779,48.199204500000036]]},"properties":{"highway":"residential","maxspeed":"30","name":"Apostelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8053305","geometry":{"type":"LineString","coordinates":[[16.3958695,48.19678450000001],[16.3960067,48.19679350000001],[16.3960608,48.1967971]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Apostelgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"293932294","geometry":{"type":"LineString","coordinates":[[16.3965398,48.19647689999999],[16.3968721,48.19625500000001],[16.3979157,48.19577180000002],[16.3987964,48.19566090000001],[16.3989344,48.1956107],[16.3990045,48.19558519999998]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Baumgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"293932293","geometry":{"type":"LineString","coordinates":[[16.3960945,48.1967659],[16.3963948,48.196571000000006],[16.3965398,48.19647689999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Baumgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","traffic_calming":"table"}},{"type":"Feature","id":"12622212","geometry":{"type":"LineString","coordinates":[[16.3989443,48.1981457],[16.3988804,48.19800620000001],[16.3981765,48.197039099999984],[16.3979157,48.19577180000002],[16.3969951,48.19512180000001],[16.3969026,48.19505649999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Keinergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8053353","geometry":{"type":"LineString","coordinates":[[16.3950931,48.1979139],[16.3951899,48.1980111],[16.3965734,48.19957630000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Messenhausergasse","oneway":"yes","surface":"asphalt","wikipedia":"de:Cäsar Wenzel Messenhauser"}},{"type":"Feature","id":"30219326","geometry":{"type":"LineString","coordinates":[[16.3933843,48.198151800000005],[16.393338,48.198255200000006],[16.3933053,48.19837139999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dannebergplatz","wikipedia":"de:Dannebergplatz"}},{"type":"Feature","id":"240294969","geometry":{"type":"LineString","coordinates":[[16.3949576,48.200544699999995],[16.3950319,48.200501],[16.396175,48.19981250000001],[16.3965734,48.19957630000002],[16.3971123,48.1992449],[16.3971779,48.199204500000036],[16.3972434,48.199164800000005],[16.3989443,48.1981457]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hainburger Straße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8677644","geometry":{"type":"LineString","coordinates":[[16.394042,48.19667870000001],[16.3937736,48.19729720000001],[16.3936913,48.19746570000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Barmherzigengasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"39234162","geometry":{"type":"LineString","coordinates":[[16.3933843,48.198151800000005],[16.3936913,48.19746570000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Barmherzigengasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"264984484","geometry":{"type":"LineString","coordinates":[[16.4010161,48.190522999999985],[16.4009503,48.190554599999956],[16.4008986,48.19058939999999],[16.4008559,48.190618200000046],[16.4007724,48.19070450000001],[16.3998211,48.19171410000001],[16.39883,48.19272130000002],[16.3987428,48.19280989999996],[16.3986807,48.192873099999986],[16.3986082,48.1929528],[16.3982213,48.193378499999994],[16.3977842,48.193867299999994],[16.3976772,48.193977700000005],[16.3976247,48.19403590000002],[16.3975528,48.19413689999999],[16.3974297,48.19430940000001],[16.3972904,48.19450169999999],[16.3971199,48.19473339999999],[16.3969026,48.19505649999999],[16.3967855,48.19524079999999],[16.3966684,48.195425],[16.3961128,48.19633919999998],[16.3960199,48.19650279999999],[16.3959441,48.196631499999995],[16.3959077,48.196706000000006],[16.3958695,48.19678450000001],[16.3958096,48.196871499999986],[16.3951524,48.197827099999984],[16.3951059,48.19789509999998],[16.3950931,48.1979139],[16.3949452,48.198127699999986],[16.3948096,48.19832360000001],[16.3947889,48.1983487],[16.3946819,48.198508300000015],[16.3942952,48.199078799999995],[16.3939823,48.19948729999999],[16.3939161,48.199571899999995]]},"properties":{"cycleway":"lane","highway":"secondary","maxspeed":"50","name":"Landstraßer Hauptstraße"}},{"type":"Feature","id":"39234161","geometry":{"type":"LineString","coordinates":[[16.394042,48.19667870000001],[16.3941259,48.196476200000006],[16.3943094,48.196058300000004],[16.3946606,48.19527510000003],[16.3946765,48.195235800000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Barmherzigengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"12620137","geometry":{"type":"LineString","coordinates":[[16.3943094,48.196058300000004],[16.3933029,48.1959803],[16.3932488,48.1966429]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kaisergartengasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"12620430","geometry":{"type":"LineString","coordinates":[[16.3959441,48.196631499999995],[16.3958065,48.19661959999999],[16.3948793,48.19653929999998],[16.3941259,48.196476200000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Juchgasse","oneway":"yes"}},{"type":"Feature","id":"158897828","geometry":{"type":"LineString","coordinates":[[16.3931903,48.22012319999999],[16.3931547,48.22027109999996],[16.3930088,48.22092670000001],[16.3930012,48.221022799999986],[16.3930076,48.22111129999999],[16.3930294,48.221182699999986],[16.3930558,48.22123529999996],[16.3930965,48.221291699999966],[16.3931406,48.2213371],[16.3932078,48.22138459999999],[16.3932818,48.221430199999986]]},"properties":{"highway":"residential","maxspeed":"50","name":"Walcherstraße","surface":"asphalt"}},{"type":"Feature","id":"101158563","geometry":{"type":"LineString","coordinates":[[16.3956154,48.2207703],[16.3955782,48.2207502],[16.3954547,48.22068329999999],[16.3937906,48.21981349999999],[16.3933166,48.2195466],[16.3930285,48.2194652],[16.3928089,48.219443299999995],[16.3925489,48.219436299999984]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lassallestraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"354021113","geometry":{"type":"LineString","coordinates":[[16.3934645,48.218796499999996],[16.3933747,48.218978600000014],[16.3932227,48.21912279999998],[16.3930236,48.219266000000005],[16.3928199,48.219365299999964],[16.3926875,48.21941099999998],[16.3925489,48.219436299999984]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"443833292","geometry":{"type":"LineString","coordinates":[[16.3930396,48.21692680000001],[16.3930771,48.21708210000003]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"50","name":"Hauptallee","oneway":"yes"}},{"type":"Feature","id":"164578774","geometry":{"type":"LineString","coordinates":[[16.3930655,48.21668220000001],[16.3930521,48.21680839999999]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"50","name":"Hauptallee","oneway":"yes"}},{"type":"Feature","id":"206463407","geometry":{"type":"LineString","coordinates":[[16.3929151,48.21675350000001],[16.3930655,48.21668220000001]]},"properties":{"highway":"residential","motor_vehicle":"delivery","name":"Hauptallee","oneway":"yes"}},{"type":"Feature","id":"472381897","geometry":{"type":"LineString","coordinates":[[16.3930521,48.21680839999999],[16.3930396,48.21692680000001]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"50","name":"Hauptallee","oneway":"yes"}},{"type":"Feature","id":"4433653","geometry":{"type":"LineString","coordinates":[[16.3924025,48.21691859999996],[16.3927368,48.216840399999995]]},"properties":{"highway":"residential","motor_vehicle":"delivery","name":"Hauptallee","oneway":"yes"}},{"type":"Feature","id":"354021117","geometry":{"type":"LineString","coordinates":[[16.3924025,48.21691859999996],[16.3925702,48.2169231],[16.3928056,48.216966600000006],[16.3930771,48.21708210000003],[16.393168,48.2171515],[16.3933092,48.21730439999999],[16.3933871,48.21743639999997],[16.3934385,48.2175235],[16.3935165,48.217781900000006],[16.3935298,48.217825800000014]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"443833293","geometry":{"type":"LineString","coordinates":[[16.3927368,48.216840399999995],[16.3929151,48.21675350000001]]},"properties":{"highway":"residential","motor_vehicle":"delivery","name":"Hauptallee","oneway":"yes"}},{"type":"Feature","id":"38148640","geometry":{"type":"LineString","coordinates":[[16.3925489,48.219436299999984],[16.3921697,48.21941670000001],[16.3918492,48.21935980000001],[16.3916049,48.2192709],[16.3913529,48.2191287]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"230381509","geometry":{"type":"LineString","coordinates":[[16.3902439,48.21972640000004],[16.390286,48.219729],[16.3904095,48.219737399999985]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","is_in":"Austria,Wien,Leopoldstadt","maxspeed":"50","name":"Kleine Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"24522433","geometry":{"type":"LineString","coordinates":[[16.3917003,48.21686969999999],[16.3917491,48.2167915],[16.3918573,48.2166115],[16.3919018,48.21641800000003],[16.3919247,48.21631829999998],[16.391999,48.2158201],[16.3920706,48.2155855],[16.3921274,48.21553670000003],[16.3923622,48.215535200000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Helenengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"151607874","geometry":{"type":"LineString","coordinates":[[16.3917003,48.21686969999999],[16.3917741,48.21688710000001],[16.3921183,48.216927199999986]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrückenstraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"354021100","geometry":{"type":"LineString","coordinates":[[16.3921183,48.216927199999986],[16.3924025,48.21691859999996]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"354850551","geometry":{"type":"LineString","coordinates":[[16.3912629,48.21723020000002],[16.3913066,48.21721020000001]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"305417447","geometry":{"type":"LineString","coordinates":[[16.3912919,48.21632729999996],[16.3913683,48.21638659999999],[16.3914446,48.2164114],[16.3915757,48.216413999999986],[16.3919018,48.21641800000003]]},"properties":{"highway":"service","maxspeed":"30","name":"Hedwiggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29277036","geometry":{"type":"LineString","coordinates":[[16.3910975,48.216330200000016],[16.3911621,48.21632919999999],[16.3912919,48.21632729999996],[16.3919247,48.21631829999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hedwiggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522427","geometry":{"type":"LineString","coordinates":[[16.3914293,48.21715280000001],[16.3916194,48.2169543],[16.3917003,48.21686969999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Praterstern","oneway":"yes"}},{"type":"Feature","id":"354850552","geometry":{"type":"LineString","coordinates":[[16.3913066,48.21721020000001],[16.3914293,48.21715280000001],[16.3917454,48.217049299999985],[16.3921183,48.216927199999986]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"360942903","geometry":{"type":"LineString","coordinates":[[16.3913529,48.2191287],[16.3911153,48.21899469999997],[16.3910598,48.218959299999995],[16.390999,48.2189204],[16.3909042,48.218863099999965],[16.3908666,48.21883470000003],[16.3906916,48.218680500000005],[16.3905763,48.2185451],[16.3905183,48.21847319999998],[16.3904376,48.21834769999998],[16.3903828,48.218222999999995],[16.3903524,48.21813419999998]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"354021102","geometry":{"type":"LineString","coordinates":[[16.3903524,48.21813419999998],[16.3903558,48.217973400000034],[16.3903873,48.21787199999997],[16.3904165,48.2178308],[16.3904316,48.21780949999999],[16.3906649,48.21756830000001]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"354021109","geometry":{"type":"LineString","coordinates":[[16.3906649,48.21756830000001],[16.3908495,48.217458300000004],[16.3912629,48.21723020000002]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"148101960","geometry":{"type":"LineString","coordinates":[[16.3916049,48.2192709],[16.3912082,48.21917350000004],[16.3910875,48.21916250000001],[16.3909572,48.21916920000004],[16.3907546,48.21920399999999],[16.3906736,48.2192316],[16.3906271,48.21925779999998],[16.3905681,48.21929869999997],[16.390522,48.219342400000016],[16.3904831,48.21940319999999],[16.3904515,48.21946430000003],[16.3904095,48.219737399999985],[16.3903886,48.219825799999995],[16.3903597,48.2199478],[16.3903344,48.2200713],[16.3902742,48.2203399],[16.3902521,48.220527199999964],[16.3901852,48.22089860000003],[16.3901769,48.22092599999999],[16.3901349,48.221055199999995],[16.3900656,48.221187999999984],[16.3899861,48.22134169999998],[16.3899225,48.22145789999999],[16.3898956,48.22153650000001],[16.3898353,48.22181890000002],[16.3897494,48.22226280000001],[16.389723,48.222399499999995],[16.3896572,48.222691499999996],[16.3896177,48.222967900000015],[16.3895711,48.22317429999998],[16.3895483,48.22329580000002],[16.3895326,48.22335590000003],[16.3895322,48.22340299999999],[16.3895238,48.22344279999999],[16.3895071,48.22352120000002],[16.3894959,48.2235599],[16.3894498,48.22373479999999],[16.3894153,48.223821800000024],[16.3893994,48.22386850000001],[16.3893843,48.223905099999996],[16.3893163,48.22407050000001],[16.3892768,48.224199700000014]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Nordbahnstraße","oneway":"yes"}},{"type":"Feature","id":"38148161","geometry":{"type":"LineString","coordinates":[[16.3899171,48.22080390000002],[16.3899246,48.22077669999999],[16.3900782,48.22005570000002],[16.3901419,48.21979809999999],[16.3901618,48.219717599999996]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Nordbahnstraße","oneway":"yes"}},{"type":"Feature","id":"8052790","geometry":{"type":"LineString","coordinates":[[16.388669,48.22072940000001],[16.3886811,48.2206736],[16.388783,48.22020359999999],[16.3887599,48.22012979999997],[16.3887888,48.220008300000046],[16.3888338,48.21994139999998],[16.3889007,48.21965210000002],[16.3889125,48.219601299999994]]},"properties":{"highway":"residential","maxspeed":"50","name":"Holzhausergasse","oneway":"yes"}},{"type":"Feature","id":"25521355","geometry":{"type":"LineString","coordinates":[[16.3872997,48.2197151],[16.3872336,48.21961640000001]]},"properties":{"highway":"residential","name":"Zirkusgasse"}},{"type":"Feature","id":"158798819","geometry":{"type":"LineString","coordinates":[[16.387363,48.2198113],[16.3872997,48.2197151]]},"properties":{"highway":"residential","name":"Fugbachgasse"}},{"type":"Feature","id":"8052796","geometry":{"type":"LineString","coordinates":[[16.3879219,48.22066019999997],[16.3878823,48.22060010000001],[16.387387,48.219847800000025],[16.387363,48.2198113]]},"properties":{"bicycle:backward":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Fugbachgasse","oneway":"yes"}},{"type":"Feature","id":"8030142","geometry":{"type":"LineString","coordinates":[[16.3882979,48.219030299999986],[16.387811,48.21913760000001],[16.3871271,48.21928750000001],[16.3870277,48.219309100000004]]},"properties":{"highway":"pedestrian","name":"Heinestraße"}},{"type":"Feature","id":"38148572","geometry":{"type":"LineString","coordinates":[[16.3883764,48.21913430000001],[16.3884532,48.219226899999995],[16.3884866,48.21926250000001],[16.3888141,48.21954920000002],[16.3889125,48.219601299999994],[16.3891229,48.21962150000002],[16.3900335,48.2197013],[16.3901618,48.219717599999996],[16.3902439,48.21972640000004]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","is_in":"Austria,Wien,Leopoldstadt","maxspeed":"50","name":"Kleine Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"158802951","geometry":{"type":"LineString","coordinates":[[16.3860681,48.220485999999994],[16.3859707,48.220488899999964],[16.3858856,48.22049749999999],[16.385864,48.220499700000005],[16.3857956,48.220517400000006],[16.3856873,48.22055639999999]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Mühlfeldgasse","oneway":"yes"}},{"type":"Feature","id":"347561084","geometry":{"type":"LineString","coordinates":[[16.3863349,48.220509899999996],[16.3860681,48.220485999999994]]},"properties":{"cycleway":"opposite","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Mühlfeldgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"8030126","geometry":{"type":"LineString","coordinates":[[16.3860681,48.220485999999994],[16.3861169,48.2205898]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Rueppgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"158798823","geometry":{"type":"LineString","coordinates":[[16.3853005,48.220616000000035],[16.3849392,48.2197846]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Pillersdorfgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8052772","geometry":{"type":"LineString","coordinates":[[16.384682,48.220944299999985],[16.3842249,48.219925200000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pazmanitengasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148553","geometry":{"type":"LineString","coordinates":[[16.3856873,48.22055639999999],[16.3858517,48.22047140000001],[16.3859983,48.22039569999998],[16.3861262,48.22033210000001]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Heinestraße","old_name":"Augartenallee","old_name:1938-1945":"Schönererstraße","surface":"cobblestone"}},{"type":"Feature","id":"8052774","geometry":{"type":"LineString","coordinates":[[16.3860681,48.220485999999994],[16.3859983,48.22039569999998],[16.3859204,48.22029509999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Rueppgasse","surface":"cobblestone"}},{"type":"Feature","id":"8096040","geometry":{"type":"LineString","coordinates":[[16.3850613,48.21976060000003],[16.3846303,48.2189597]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pillersdorfgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29282751","geometry":{"type":"LineString","coordinates":[[16.3870643,48.21936629999999],[16.3867838,48.21942150000004],[16.385631,48.219648500000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"191545768","geometry":{"type":"LineString","coordinates":[[16.3861262,48.22033210000001],[16.3861902,48.22029900000001],[16.3870909,48.219822599999986],[16.3872997,48.2197151],[16.3883764,48.21913430000001]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Heinestraße","old_name":"Augartenallee","old_name:1938-1945":"Schönererstraße"}},{"type":"Feature","id":"158684121","geometry":{"type":"LineString","coordinates":[[16.385631,48.219648500000005],[16.3858992,48.220246299999985],[16.3859204,48.22029509999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Rueppgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"36055164","geometry":{"type":"LineString","coordinates":[[16.3850613,48.21976060000003],[16.385631,48.219648500000005]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"36055163","geometry":{"type":"LineString","coordinates":[[16.3849392,48.2197846],[16.3850613,48.21976060000003]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29234709","geometry":{"type":"LineString","coordinates":[[16.3901618,48.219717599999996],[16.3902198,48.21944490000001],[16.3902667,48.219278400000036],[16.390604,48.2188903],[16.3906474,48.21884229999998],[16.39069,48.21876209999999],[16.3906916,48.218680500000005]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Praterstern","oneway":"yes"}},{"type":"Feature","id":"29234715","geometry":{"type":"LineString","coordinates":[[16.3902667,48.219278400000036],[16.390236,48.21917260000001],[16.3901676,48.21907569999999],[16.3900105,48.21899930000001],[16.3897833,48.218911299999974],[16.3895642,48.218826500000006],[16.3893557,48.21875219999998],[16.3892662,48.218720399999995],[16.3891173,48.218713199999996]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Praterstern","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"30062345","geometry":{"type":"LineString","coordinates":[[16.3891173,48.218713199999996],[16.3891646,48.218660400000005],[16.3896375,48.21841520000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Heinestraße","note":"Das ist wirklich eine Einbahn. Umkehr nur über Parkplatz möglich.","old_name":"Augartenallee","old_name:1938-1945":"Schönererstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"200689822","geometry":{"type":"LineString","coordinates":[[16.3889461,48.216975399999995],[16.3889106,48.2170098]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mayergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"159743064","geometry":{"type":"LineString","coordinates":[[16.3886125,48.217350100000004],[16.3887637,48.21721819999999],[16.3888211,48.21716809999998]]},"properties":{"highway":"pedestrian","name":"Tethysgasse"}},{"type":"Feature","id":"200689823","geometry":{"type":"LineString","coordinates":[[16.3890424,48.2168853],[16.3889601,48.216961999999995],[16.3889461,48.216975399999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mayergasse","oneway":"yes","source:maxspeed":"AT:zone:30","traffic_calming":"table"}},{"type":"Feature","id":"27322466","geometry":{"type":"LineString","coordinates":[[16.3877236,48.21827410000003],[16.3879888,48.21861629999998],[16.3882979,48.219030299999986],[16.3883175,48.2190549],[16.3883764,48.21913430000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kleine Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29234733","geometry":{"type":"LineString","coordinates":[[16.386762,48.21891819999999],[16.3879888,48.21861629999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Aloisgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148558","geometry":{"type":"LineString","coordinates":[[16.3883764,48.21913430000001],[16.3891173,48.218713199999996]]},"properties":{"highway":"residential","maxspeed":"50","name":"Heinestraße","old_name":"Augartenallee","old_name:1938-1945":"Schönererstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"159711621","geometry":{"type":"LineString","coordinates":[[16.385959,48.21746780000001],[16.3860407,48.21743799999999],[16.3861094,48.21741300000002],[16.3865314,48.21725910000001],[16.3866042,48.21723259999999]]},"properties":{"highway":"pedestrian","name":"Odeongasse"}},{"type":"Feature","id":"159711619","geometry":{"type":"LineString","coordinates":[[16.3858165,48.21752460000002],[16.385959,48.21746780000001]]},"properties":{"highway":"pedestrian","name":"Odeongasse","tunnel":"building_passage"}},{"type":"Feature","id":"159743049","geometry":{"type":"LineString","coordinates":[[16.3874164,48.21756179999997],[16.3872737,48.2176187]]},"properties":{"covered":"yes","highway":"living_street","name":"Ernst-Renz-Gasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"158798830","geometry":{"type":"LineString","coordinates":[[16.3872336,48.21961640000001],[16.3870643,48.21936629999999],[16.3870277,48.219309100000004],[16.386762,48.21891819999999],[16.3865423,48.21860029999999],[16.38651,48.21854909999999],[16.3864827,48.21851100000001],[16.3863165,48.218280600000014],[16.38622,48.21820790000001],[16.3861252,48.21809409999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zirkusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"159743048","geometry":{"type":"LineString","coordinates":[[16.3872737,48.2176187],[16.3871799,48.2176547]]},"properties":{"highway":"living_street","name":"Ernst-Renz-Gasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"26719089","geometry":{"type":"LineString","coordinates":[[16.3893155,48.217785900000024],[16.3886125,48.217350100000004],[16.3883513,48.217188299999975],[16.3874183,48.21661280000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Afrikanergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"30665721","geometry":{"type":"LineString","coordinates":[[16.3883513,48.217188299999975],[16.3874164,48.21756179999997]]},"properties":{"highway":"living_street","name":"Ernst-Renz-Gasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"159711618","geometry":{"type":"LineString","coordinates":[[16.3843579,48.2179294],[16.3844775,48.21789960000001],[16.3848401,48.21780919999998],[16.3851214,48.21773910000002],[16.3857209,48.2175896]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Odeongasse","note":"Fahrverbot ausgen. Fahrrad","vehicle":"no"}},{"type":"Feature","id":"159711620","geometry":{"type":"LineString","coordinates":[[16.3842228,48.217963199999986],[16.3843579,48.2179294]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Odeongasse","note":"Fahrverbot ausgen. Fahrrad","tunnel":"building_passage","vehicle":"no"}},{"type":"Feature","id":"23312416","geometry":{"type":"LineString","coordinates":[[16.3857209,48.2175896],[16.3858165,48.21752460000002]]},"properties":{"highway":"pedestrian","name":"Odeongasse"}},{"type":"Feature","id":"8096039","geometry":{"type":"LineString","coordinates":[[16.3873465,48.21634689999999],[16.3873208,48.21637549999997],[16.3872876,48.21640860000002],[16.3872065,48.21648399999998],[16.3874183,48.21661280000001],[16.3875207,48.216522699999985],[16.3875539,48.21649350000001],[16.3875881,48.2164612]]},"properties":{"highway":"residential","maxspeed":"30","name":"Praterstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"148101975","geometry":{"type":"LineString","coordinates":[[16.3869785,48.216054000000014],[16.3870974,48.21610370000002],[16.3889106,48.2170098],[16.3900852,48.21761430000004],[16.3902369,48.21765440000004],[16.3902731,48.21765719999999],[16.3904868,48.21762849999996],[16.3906649,48.21756830000001]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Praterstraße","old_name":"Jägerzeile","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"200689826","geometry":{"type":"LineString","coordinates":[[16.3868923,48.2161328],[16.3869785,48.216054000000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rotensterngasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"200689827","geometry":{"type":"LineString","coordinates":[[16.386851,48.2161663],[16.3868923,48.2161328]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rotensterngasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"125635497","geometry":{"type":"LineString","coordinates":[[16.3901583,48.217788600000006],[16.3900795,48.21772570000002],[16.3898714,48.21761890000002],[16.3897462,48.21755780000001],[16.3875881,48.2164612],[16.3873465,48.21634689999999],[16.3870747,48.21620979999997],[16.3870398,48.21619220000002],[16.3868923,48.2161328]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Praterstraße","old_name":"Jägerzeile","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8052861","geometry":{"type":"LineString","coordinates":[[16.3901636,48.2158163],[16.3890424,48.2168853]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mayergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"200758454","geometry":{"type":"LineString","coordinates":[[16.3866089,48.21629269999997],[16.3867379,48.216196],[16.3868016,48.21617929999999],[16.386851,48.2161663]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rotensterngasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"200758453","geometry":{"type":"LineString","coordinates":[[16.386851,48.2161663],[16.3868345,48.21619720000001],[16.3868108,48.2162414],[16.3866089,48.21629269999997]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Rotensterngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8096083","geometry":{"type":"LineString","coordinates":[[16.3855689,48.2164229],[16.3862189,48.21593250000001],[16.3862678,48.21590259999999],[16.3863077,48.2158781]]},"properties":{"highway":"pedestrian","name":"Nepomukgasse"}},{"type":"Feature","id":"5144308","geometry":{"type":"LineString","coordinates":[[16.3857517,48.216614100000015],[16.386284,48.216410000000025],[16.3866089,48.21629269999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rotensterngasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522432","geometry":{"type":"LineString","coordinates":[[16.3923622,48.215535200000005],[16.3924078,48.2155138],[16.3924389,48.2154429],[16.3926278,48.214830199999994],[16.3926357,48.21480460000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stoffellagasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522500","geometry":{"type":"LineString","coordinates":[[16.3923441,48.21472510000001],[16.3924796,48.2142647],[16.3925009,48.21415720000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Helenengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"385827350","geometry":{"type":"LineString","coordinates":[[16.3925009,48.21415720000002],[16.3925615,48.2141201],[16.3927761,48.21415050000002],[16.3928183,48.21419589999999]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Vivariumstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"385827351","geometry":{"type":"LineString","coordinates":[[16.3928183,48.21419589999999],[16.3927565,48.214215300000035],[16.3925381,48.21419130000001],[16.3925009,48.21415720000002]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Vivariumstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24662761","geometry":{"type":"LineString","coordinates":[[16.3926357,48.21480460000001],[16.3927566,48.21440150000001],[16.3927925,48.21428190000003],[16.3928183,48.21419589999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stoffellagasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148778","geometry":{"type":"LineString","coordinates":[[16.3928183,48.21419589999999],[16.3933543,48.214284599999985],[16.3947467,48.21447720000003],[16.3953996,48.21461450000001]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Vivariumstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24522430","geometry":{"type":"LineString","coordinates":[[16.3916269,48.21394599999999],[16.3916902,48.213959999999986],[16.3918798,48.21405329999999]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Vivariumstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"385827352","geometry":{"type":"LineString","coordinates":[[16.3918798,48.21405329999999],[16.3920663,48.214093399999996],[16.3925009,48.21415720000002]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Vivariumstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"385827349","geometry":{"type":"LineString","coordinates":[[16.3918798,48.21405329999999],[16.3917944,48.2140594],[16.391666,48.214057],[16.3915807,48.214058800000004]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Vivariumstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"8052864","geometry":{"type":"LineString","coordinates":[[16.3895418,48.21393119999999],[16.3895472,48.2139751],[16.3896384,48.2145295]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schwemmgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"40864165","geometry":{"type":"LineString","coordinates":[[16.3909545,48.2173056],[16.3911057,48.217136900000014],[16.3911541,48.21699899999996],[16.3911163,48.2168441],[16.3909467,48.21646340000001],[16.3909176,48.21630830000001],[16.3909251,48.216108899999995],[16.3910767,48.21543890000001],[16.3913116,48.21437800000001],[16.3913671,48.21405490000001],[16.3913816,48.213977400000005]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrückenstraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"30019533","geometry":{"type":"LineString","coordinates":[[16.3903612,48.21404749999999],[16.3904331,48.2144548]]},"properties":{"highway":"residential","maxspeed":"30","name":"Waschhausgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24745889","geometry":{"type":"LineString","coordinates":[[16.3896877,48.21528500000002],[16.3898949,48.214505400000036]]},"properties":{"highway":"residential","maxspeed":"30","name":"Körnergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8052857","geometry":{"type":"LineString","coordinates":[[16.3896877,48.21528500000002],[16.3896046,48.21559279999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Körnergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8052863","geometry":{"type":"LineString","coordinates":[[16.3910767,48.21543890000001],[16.39095,48.21542489999999],[16.3896877,48.21528500000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hofenedergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29277071","geometry":{"type":"LineString","coordinates":[[16.3913671,48.21405490000001],[16.391284,48.21394509999996],[16.3912023,48.21390740000001],[16.3911122,48.21389060000001],[16.3905062,48.21395419999999],[16.3903906,48.2139981],[16.3903612,48.21404749999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Vivariumstraße","oneway":"yes","source:maxspeed":"AT:zone:30","vehicle":"destination"}},{"type":"Feature","id":"148505736","geometry":{"type":"LineString","coordinates":[[16.3915217,48.213609599999984],[16.3915062,48.213612100000006],[16.3914846,48.213616],[16.3914109,48.21362850000003]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","ref":"B227","surface":"asphalt"}},{"type":"Feature","id":"510848419","geometry":{"type":"LineString","coordinates":[[16.3913816,48.213977400000005],[16.3914057,48.21380529999999],[16.3914105,48.213727000000006],[16.3914115,48.21369010000001],[16.3914109,48.21362850000003]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrückenstraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"102564126","geometry":{"type":"LineString","coordinates":[[16.3915337,48.2135074],[16.3915965,48.21359709999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrückenstraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"8105265","geometry":{"type":"LineString","coordinates":[[16.3914109,48.21362850000003],[16.3913802,48.21353689999998]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrücke","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"30085518","geometry":{"type":"LineString","coordinates":[[16.3925009,48.21415720000002],[16.3925264,48.2140569],[16.392562,48.21386319999999],[16.3925437,48.21364],[16.3925096,48.213498200000004],[16.3924742,48.213453000000015],[16.3924287,48.2133949]]},"properties":{"highway":"residential","maxspeed":"30","name":"Helenengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24662762","geometry":{"type":"LineString","coordinates":[[16.3928183,48.21419589999999],[16.3928446,48.214090699999986],[16.3928462,48.21404419999999],[16.3928637,48.21384760000001],[16.3928556,48.2136093],[16.3928096,48.213445199999995],[16.3927997,48.2133948],[16.3927861,48.213325199999986]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stoffellagasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9799417","geometry":{"type":"LineString","coordinates":[[16.3913578,48.21283360000001],[16.3914042,48.21282529999999],[16.3915695,48.212795899999975],[16.3919484,48.212721200000004],[16.3921858,48.21267219999996],[16.3923474,48.2126313],[16.3925204,48.21257299999996],[16.3926515,48.212520299999994],[16.3928305,48.212441600000005],[16.3929678,48.2123665],[16.3931366,48.21225390000001],[16.3932736,48.21214299999997],[16.3933898,48.212027500000005],[16.3935276,48.21188230000001],[16.3936582,48.21173959999999],[16.393814,48.211561200000006],[16.3939618,48.211362399999985]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Weißgerberlände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"185062799","geometry":{"type":"LineString","coordinates":[[16.392217,48.2119098],[16.3925003,48.21218919999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Untere Viaduktgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13447578","geometry":{"type":"LineString","coordinates":[[16.3919681,48.212058299999995],[16.3920624,48.21224560000002],[16.3921434,48.21245479999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obere Viaduktgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25428182","geometry":{"type":"LineString","coordinates":[[16.3921434,48.21245479999999],[16.3922871,48.21240660000001],[16.3924341,48.2123502],[16.392597,48.21227830000004],[16.3928419,48.21215509999999],[16.3930204,48.212052700000015],[16.3932822,48.21188570000001],[16.3934419,48.2117533],[16.3937112,48.21153240000001],[16.3939156,48.211393799999996],[16.3939307,48.21138350000001],[16.3939618,48.211362399999985]]},"properties":{"highway":"primary_link","lanes":"1","lit":"yes","maxspeed":"50","name":"Weißgerberlände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"9799695","geometry":{"type":"LineString","coordinates":[[16.3913802,48.21353689999998],[16.391288,48.21332380000001]]},"properties":{"bridge":"yes","highway":"primary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Franzensbrücke","oneway":"yes","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"102564132","geometry":{"type":"LineString","coordinates":[[16.3915965,48.21359709999999],[16.3916369,48.213662699999986],[16.391644,48.213691400000016],[16.3916474,48.21373150000002],[16.3916494,48.2137668],[16.3916348,48.21387970000001],[16.3916269,48.21394599999999],[16.3915807,48.214058800000004],[16.3915464,48.214142400000014],[16.3914643,48.21446639999999],[16.3912437,48.215456200000006],[16.3910918,48.216126],[16.3910907,48.216241499999995],[16.3910975,48.216330200000016],[16.3911284,48.21642889999998],[16.3911697,48.21650890000001],[16.3912769,48.216641099999975],[16.3913631,48.216721699999994],[16.3914775,48.216785399999964],[16.3916145,48.21684260000001],[16.3917003,48.21686969999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrückenstraße","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"102564137","geometry":{"type":"LineString","coordinates":[[16.3912204,48.21281569999999],[16.3915337,48.2135074]]},"properties":{"bridge":"yes","highway":"primary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Franzensbrücke","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"102460711","geometry":{"type":"LineString","coordinates":[[16.3909993,48.21289729999998],[16.3913578,48.21283360000001]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Dampfschiffstraße","oneway":"yes","ref":"B227","surface":"asphalt"}},{"type":"Feature","id":"405291442","geometry":{"type":"LineString","coordinates":[[16.391288,48.21332380000001],[16.3910797,48.212842300000005]]},"properties":{"bridge":"yes","highway":"primary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Franzensbrücke","oneway":"yes","source:maxspeed":"AT:urban","surface":"asphalt","turn:lanes":"left|through"}},{"type":"Feature","id":"4469957","geometry":{"type":"LineString","coordinates":[[16.3911236,48.21274679999996],[16.3911503,48.21276660000001],[16.3911729,48.21278000000001],[16.3912025,48.21279870000001],[16.3912204,48.21281569999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrücke","oneway":"yes","ref":"B8","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"419217016","geometry":{"type":"LineString","coordinates":[[16.3911236,48.21274679999996],[16.3912751,48.21272030000003],[16.3914075,48.2126878],[16.3915775,48.21263990000003],[16.3917992,48.21257270000001],[16.3921434,48.21245479999999]]},"properties":{"highway":"primary_link","lanes":"1","lit":"yes","maxspeed":"50","name":"Dampfschiffstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"9799692","geometry":{"type":"LineString","coordinates":[[16.3910797,48.212842300000005],[16.3910772,48.2128189],[16.3910905,48.21279559999999],[16.391113,48.212769699999996],[16.3911236,48.21274679999996]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Franzensbrücke","source:maxspeed":"AT:urban","surface":"asphalt","turn:lanes":"left|through"}},{"type":"Feature","id":"204274840","geometry":{"type":"LineString","coordinates":[[16.3908951,48.212225399999994],[16.3910898,48.21266969999999],[16.3911236,48.21274679999996]]},"properties":{"cycleway":"lane","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","surface":"cobblestone","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"30011108","geometry":{"type":"LineString","coordinates":[[16.3892942,48.21254540000001],[16.3892866,48.21287269999999]]},"properties":{"bicycle":"designated","highway":"footway","layer":"-1","name":"Angelo-Soliman-Weg","note":"Angelo Soliman; ca. 1721 bis 21. November 1796; Sklave, Kammerdiener, Freimaurer","segregated":"no","source":"http://www.wien.gv.at/kultur/strassennamen/neue-strassen.html#261113","wikipedia":"de:Angelo Soliman"}},{"type":"Feature","id":"9799826","geometry":{"type":"LineString","coordinates":[[16.3900592,48.21291450000001],[16.3903655,48.21288329999999],[16.3906218,48.21284649999998],[16.3909013,48.21279290000001],[16.390977,48.212777200000005],[16.3911236,48.21274679999996]]},"properties":{"highway":"primary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Dampfschiffstraße","oneway":"yes","ref":"B227","turn:lanes":"left|left|through;right"}},{"type":"Feature","id":"161602492","geometry":{"type":"LineString","coordinates":[[16.3927576,48.213101800000004],[16.3922808,48.213232800000014],[16.3918879,48.2133661],[16.3912416,48.21352780000001],[16.3910159,48.21355539999999],[16.3906494,48.213600300000024],[16.3898735,48.21365509999998]]},"properties":{"bicycle":"yes","foot":"yes","highway":"path","motor_vehicle":"private","name":"Praterufer","source:surface":"survey","surface":"paving_stones"}},{"type":"Feature","id":"9825336","geometry":{"type":"LineString","coordinates":[[16.392217,48.2119098],[16.3919681,48.212058299999995],[16.3910071,48.212208000000004],[16.3908951,48.212225399999994]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Obere Weißgerberstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10505194","geometry":{"type":"LineString","coordinates":[[16.3919681,48.212058299999995],[16.3915767,48.2116901],[16.3912532,48.2114555],[16.3906091,48.210984999999994],[16.390515,48.21100580000001],[16.3904875,48.21101680000001],[16.3904606,48.211033799999996],[16.3904337,48.21105979999999],[16.3903962,48.211097800000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obere Viaduktgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"176442979","geometry":{"type":"LineString","coordinates":[[16.3903373,48.211033999999955],[16.3903584,48.21105219999998],[16.390378,48.21107180000004],[16.3903962,48.211097800000005]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"178026561","geometry":{"type":"LineString","coordinates":[[16.3903962,48.211097800000005],[16.390409,48.21112019999998],[16.3904136,48.21113059999999],[16.3908951,48.212225399999994]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"8041139","geometry":{"type":"LineString","coordinates":[[16.3915419,48.21138479999999],[16.3919986,48.2107929],[16.3924564,48.210186599999986],[16.3930775,48.209340999999995],[16.3937103,48.20851189999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Adamsgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25428114","geometry":{"type":"LineString","coordinates":[[16.3913494,48.20886490000004],[16.3914627,48.2091217],[16.3917711,48.2093127],[16.3918348,48.20935449999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolonitzplatz","oneway":"yes","source:maxspeed":"AT:zone","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"8041136","geometry":{"type":"LineString","coordinates":[[16.3942542,48.21103000000002],[16.3934696,48.21067070000001],[16.393392,48.210616000000016],[16.3924564,48.210186599999986],[16.3914697,48.2097239],[16.391396,48.20968930000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krieglergasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"8080552","geometry":{"type":"LineString","coordinates":[[16.3922329,48.209048199999984],[16.3923013,48.2090719],[16.3930775,48.209340999999995],[16.3939516,48.209637499999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Custozzagasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"10068916","geometry":{"type":"LineString","coordinates":[[16.3935422,48.20755270000001],[16.3934643,48.2075375],[16.3927661,48.2074016],[16.3926663,48.207380900000004],[16.3922426,48.2073049],[16.3919079,48.2073657]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kegelgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9653374","geometry":{"type":"LineString","coordinates":[[16.3919079,48.2073657],[16.3919895,48.207826299999965],[16.3920823,48.20833569999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blattgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9653339","geometry":{"type":"LineString","coordinates":[[16.3919079,48.2073657],[16.3919037,48.207325499999996],[16.3914769,48.206438100000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blattgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"46738173","geometry":{"type":"LineString","coordinates":[[16.3979076,48.20691149999999],[16.3978102,48.20747879999999],[16.3977059,48.2078832],[16.3973994,48.208615399999985],[16.3971533,48.20911479999998],[16.3970871,48.20925439999999],[16.3967428,48.20983410000002],[16.3963144,48.21046899999996],[16.3962128,48.210602600000016],[16.3959787,48.210932299999996],[16.3957421,48.2112659],[16.3955619,48.211481099999986],[16.395443,48.21161510000002],[16.3950128,48.21205939999999],[16.3946609,48.21240499999999],[16.3944145,48.21256819999999],[16.3941445,48.21273339999999],[16.3936506,48.212967899999995],[16.3927861,48.213325199999986],[16.3924287,48.2133949],[16.3919211,48.21352110000001],[16.391675,48.213583099999994],[16.3915965,48.21359709999999],[16.3915217,48.213609599999984]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Schüttelstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"9653484","geometry":{"type":"LineString","coordinates":[[16.3926448,48.20788330000002],[16.3927661,48.2074016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stammgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9653471","geometry":{"type":"LineString","coordinates":[[16.3919895,48.207826299999965],[16.3920924,48.2078272],[16.3926448,48.20788330000002],[16.3932019,48.20793370000001],[16.3932893,48.20794160000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blütengasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"25428043","geometry":{"type":"LineString","coordinates":[[16.3918348,48.20935449999999],[16.3922329,48.209048199999984],[16.3925419,48.208805100000006],[16.3926964,48.208683399999984],[16.3928392,48.208557299999995],[16.3929131,48.20847739999999],[16.3929311,48.2084552],[16.3929875,48.2083906],[16.3930182,48.20834589999998],[16.3930993,48.2082279],[16.3932893,48.20794160000003]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Löwengasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"176475522","geometry":{"type":"LineString","coordinates":[[16.3903064,48.21074780000001],[16.3902714,48.2107264]]},"properties":{"foot":"yes","highway":"pedestrian","name":"Radetzkyplatz","wikipedia":"de:Radetzkyplatz"}},{"type":"Feature","id":"176442977","geometry":{"type":"LineString","coordinates":[[16.3902494,48.210799399999985],[16.3903064,48.21074780000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkyplatz","wikipedia":"de:Radetzkyplatz"}},{"type":"Feature","id":"176442978","geometry":{"type":"LineString","coordinates":[[16.3902494,48.210799399999985],[16.3902581,48.210864799999996],[16.3902767,48.2109097],[16.3903025,48.210972],[16.3903373,48.211033999999955]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkyplatz","oneway":"yes"}},{"type":"Feature","id":"30011107","geometry":{"type":"LineString","coordinates":[[16.3906091,48.210984999999994],[16.3904376,48.210850600000015],[16.3903477,48.21078019999999],[16.3903064,48.21074780000001]]},"properties":{"foot":"yes","highway":"pedestrian","name":"Radetzkyplatz","wikipedia":"de:Radetzkyplatz"}},{"type":"Feature","id":"8041183","geometry":{"type":"LineString","coordinates":[[16.3904611,48.2105852],[16.3908142,48.21021350000001],[16.3908941,48.210122600000005],[16.3909723,48.210038699999984],[16.3910647,48.20995619999999],[16.3912505,48.20980939999998],[16.391396,48.20968930000001],[16.391607,48.20951930000001],[16.3918348,48.20935449999999]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Löwengasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"9652633","geometry":{"type":"LineString","coordinates":[[16.3901688,48.20978199999999],[16.3901884,48.20979249999999]]},"properties":{"highway":"footway","name":"Kolonitzplatz","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"30011105","geometry":{"type":"LineString","coordinates":[[16.3908142,48.21021350000001],[16.3908752,48.210243400000024],[16.3919986,48.2107929]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dianagasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"182021584","geometry":{"type":"LineString","coordinates":[[16.3908263,48.21010670000001],[16.3908362,48.21009919999997],[16.3908941,48.210122600000005]]},"properties":{"highway":"footway","name":"Kolonitzplatz"}},{"type":"Feature","id":"53772724","geometry":{"type":"LineString","coordinates":[[16.3903064,48.21074780000001],[16.3904611,48.2105852]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxheight":"3.8","maxspeed":"50","name":"Radetzkyplatz","wikipedia":"de:Radetzkyplatz"}},{"type":"Feature","id":"9825305","geometry":{"type":"LineString","coordinates":[[16.3904611,48.2105852],[16.3905136,48.21062399999997],[16.3914682,48.21133019999999],[16.3915419,48.21138479999999],[16.392217,48.2119098]]},"properties":{"highway":"residential","maxspeed":"30","name":"Untere Viaduktgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10065704","geometry":{"type":"LineString","coordinates":[[16.3955704,48.20886860000002],[16.3943917,48.20864919999997],[16.3937103,48.20851189999999],[16.393089,48.2083973],[16.3930764,48.20839649999999],[16.3929875,48.2083906],[16.3928961,48.208383999999995],[16.3921456,48.20833010000001],[16.3920823,48.20833569999999],[16.3911653,48.20843239999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hetzgasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"24702812","geometry":{"type":"LineString","coordinates":[[16.390707,48.207566499999984],[16.3907678,48.20761280000002],[16.3908511,48.207752200000016],[16.3911653,48.20843239999999],[16.3911608,48.2084911],[16.3913494,48.20886490000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Seidlgasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"101967408","geometry":{"type":"LineString","coordinates":[[16.3903609,48.208585200000016],[16.3909613,48.208435899999984],[16.3910569,48.20842190000002],[16.3911653,48.20843239999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hetzgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9654775","geometry":{"type":"LineString","coordinates":[[16.3909332,48.209158599999995],[16.3905323,48.2089144],[16.3903706,48.208627800000016],[16.3903609,48.208585200000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kollergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13446472","geometry":{"type":"LineString","coordinates":[[16.3913494,48.20886490000004],[16.3912315,48.2089484],[16.3909332,48.209158599999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolonitzplatz","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"9654794","geometry":{"type":"LineString","coordinates":[[16.3902148,48.20974320000002],[16.3908594,48.20923880000001],[16.3909332,48.209158599999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolonitzplatz","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"8052912","geometry":{"type":"LineString","coordinates":[[16.3903373,48.211033999999955],[16.390308,48.21101429999999],[16.390277,48.21099889999999],[16.3902318,48.21098330000001],[16.3901954,48.210976200000005],[16.3901652,48.2109744],[16.3901116,48.210974300000004],[16.3899677,48.21098109999997]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","oneway":"yes","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"29075729","geometry":{"type":"LineString","coordinates":[[16.3894629,48.210149099999995],[16.3895572,48.2102137],[16.3894943,48.21026280000001],[16.3894388,48.2102855],[16.3893905,48.21029659999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Armenierplatz","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"13441328","geometry":{"type":"LineString","coordinates":[[16.3895572,48.2102137],[16.3896772,48.21030289999999]]},"properties":{"foot":"yes","highway":"residential","maxspeed":"30","name":"Armenierplatz","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"255730714","geometry":{"type":"LineString","coordinates":[[16.3896772,48.21030289999999],[16.3897276,48.21034040000001],[16.3899721,48.2105268]]},"properties":{"foot":"yes","highway":"residential","maxspeed":"30","name":"Obere Viaduktgasse","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"9825376","geometry":{"type":"LineString","coordinates":[[16.3899677,48.21098109999997],[16.390015,48.21094639999998],[16.3901003,48.210899600000005],[16.3901364,48.21088040000001],[16.3902494,48.210799399999985]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkyplatz","wikipedia":"de:Radetzkyplatz"}},{"type":"Feature","id":"175403012","geometry":{"type":"LineString","coordinates":[[16.389907,48.207762599999995],[16.3903609,48.208585200000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kollergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"175403011","geometry":{"type":"LineString","coordinates":[[16.389907,48.207762599999995],[16.390707,48.207566499999984],[16.3915048,48.20744570000002],[16.3919079,48.2073657]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kegelgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9653943","geometry":{"type":"LineString","coordinates":[[16.3894225,48.20685370000001],[16.389907,48.207762599999995]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Kollergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"178446499","geometry":{"type":"LineString","coordinates":[[16.3900175,48.20685209999999],[16.3896947,48.206431899999984]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Seidlgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"9654268","geometry":{"type":"LineString","coordinates":[[16.390707,48.207566499999984],[16.3900175,48.20685209999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Seidlgasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"9653867","geometry":{"type":"LineString","coordinates":[[16.3902148,48.20974320000002],[16.390173,48.209679300000005],[16.389973,48.209304599999996],[16.3899028,48.20919860000001],[16.3898995,48.20914429999999],[16.3896833,48.208749100000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bechardgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13446308","geometry":{"type":"LineString","coordinates":[[16.3897623,48.21008089999998],[16.3898474,48.210038999999995],[16.3901688,48.20978199999999],[16.3902148,48.20974320000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolonitzgasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"9929568","geometry":{"type":"LineString","coordinates":[[16.3897623,48.21008089999998],[16.3903438,48.21050059999999],[16.3904611,48.2105852]]},"properties":{"foot":"yes","highway":"cycleway","name":"Untere Viaduktgasse"}},{"type":"Feature","id":"8052850","geometry":{"type":"LineString","coordinates":[[16.3876807,48.21472349999999],[16.3888246,48.21460250000001],[16.3896384,48.2145295],[16.3898949,48.214505400000036],[16.3904331,48.2144548],[16.3908296,48.21445330000003],[16.3911528,48.21448570000001],[16.3911631,48.21448319999999],[16.3912304,48.21446689999999],[16.3913116,48.21437800000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lichtenauergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8052865","geometry":{"type":"LineString","coordinates":[[16.3888246,48.21460250000001],[16.3887272,48.21404970000003],[16.3887279,48.2139717],[16.3887375,48.21392740000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Robertgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"513320504","geometry":{"type":"LineString","coordinates":[[16.389282,48.21307139999996],[16.3892806,48.213130500000005]]},"properties":{"bicycle":"designated","highway":"footway","layer":"-1","name":"Angelo-Soliman-Weg","note":"Angelo Soliman; ca. 1721 bis 21. November 1796; Sklave, Kammerdiener, Freimaurer","segregated":"no","source":"http://www.wien.gv.at/kultur/strassennamen/neue-strassen.html#261113","wikipedia":"de:Angelo Soliman"}},{"type":"Feature","id":"8041129","geometry":{"type":"LineString","coordinates":[[16.3878926,48.21154139999999],[16.3895964,48.211691900000005]]},"properties":{"bicycle":"yes","highway":"living_street","maxspeed":"walk","name":"Dißlergasse","oneway":"yes"}},{"type":"Feature","id":"70843879","geometry":{"type":"LineString","coordinates":[[16.3879714,48.21218619999999],[16.3888335,48.2123948],[16.3892155,48.21245290000002]]},"properties":{"alt_name":"Obere Weißgärberstraße","highway":"residential","maxspeed":"30","name":"Obere Weißgerberstraße","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"513320505","geometry":{"type":"LineString","coordinates":[[16.3892866,48.21287269999999],[16.389282,48.21307139999996]]},"properties":{"bicycle":"designated","highway":"footway","layer":"-1","name":"Angelo-Soliman-Weg","note":"Angelo Soliman; ca. 1721 bis 21. November 1796; Sklave, Kammerdiener, Freimaurer","segregated":"no","source":"http://www.wien.gv.at/kultur/strassennamen/neue-strassen.html#261113","tunnel":"yes","wikipedia":"de:Angelo Soliman"}},{"type":"Feature","id":"102460709","geometry":{"type":"LineString","coordinates":[[16.3892806,48.213130500000005],[16.3895246,48.21314460000002],[16.3899823,48.2131239],[16.3906416,48.213045300000005],[16.3908687,48.21300219999998],[16.3910201,48.212971400000015],[16.3914313,48.21288770000004],[16.3916071,48.212851900000004],[16.3924107,48.21269460000002],[16.3927991,48.212545500000004],[16.3930422,48.21240689999999],[16.3932789,48.21224190000004]]},"properties":{"foot":"yes","highway":"cycleway","name":"Weißgerberufer","surface":"cobblestone"}},{"type":"Feature","id":"28171635","geometry":{"type":"LineString","coordinates":[[16.3908951,48.212225399999994],[16.3907578,48.2122468],[16.389403,48.212458099999964],[16.3892155,48.21245290000002]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Obere Weißgerberstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"25190959","geometry":{"type":"LineString","coordinates":[[16.3892155,48.21245290000002],[16.3892942,48.21254540000001]]},"properties":{"bicycle":"yes","highway":"footway","layer":"-1","name":"Angelo-Soliman-Weg","note":"Angelo Soliman; ca. 1721 bis 21. November 1796; Sklave, Kammerdiener, Freimaurer","segregated":"no","source":"http://www.wien.gv.at/kultur/strassennamen/neue-strassen.html#261113","wikipedia":"de:Angelo Soliman"}},{"type":"Feature","id":"419217015","geometry":{"type":"LineString","coordinates":[[16.3890101,48.21295850000001],[16.3892066,48.21294520000001],[16.3895541,48.212940300000014],[16.389828,48.21293259999999],[16.3900592,48.21291450000001]]},"properties":{"highway":"primary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Dampfschiffstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"8052910","geometry":{"type":"LineString","coordinates":[[16.3892066,48.21294520000001],[16.3892155,48.21245290000002]]},"properties":{"highway":"pedestrian","name":"Löwengasse"}},{"type":"Feature","id":"8052867","geometry":{"type":"LineString","coordinates":[[16.3877318,48.21378060000001],[16.3876098,48.213798199999985],[16.3874719,48.213818100000026],[16.3874356,48.21377970000003],[16.3874604,48.21373829999999],[16.3874985,48.21369730000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Fruchtgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"361672180","geometry":{"type":"LineString","coordinates":[[16.3874719,48.213818100000026],[16.3875562,48.21437309999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Fruchtgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"102556653","geometry":{"type":"LineString","coordinates":[[16.3875562,48.21437309999999],[16.3875752,48.2146918]]},"properties":{"highway":"residential","maxspeed":"30","name":"Czerninplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29696030","geometry":{"type":"LineString","coordinates":[[16.3875752,48.2146918],[16.3876807,48.21472349999999],[16.3880002,48.21489510000001],[16.3891124,48.21537510000002],[16.3896046,48.21559279999997],[16.3898231,48.21566330000002],[16.3901636,48.2158163],[16.3907491,48.21608739999999],[16.3907985,48.216093400000005],[16.3909251,48.216108899999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Czerningasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29696032","geometry":{"type":"LineString","coordinates":[[16.3867347,48.21437309999999],[16.3874369,48.21465749999999],[16.3875752,48.2146918]]},"properties":{"highway":"residential","maxspeed":"30","name":"Czerninplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29234546","geometry":{"type":"LineString","coordinates":[[16.3867347,48.21437309999999],[16.3875562,48.21437309999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Czerninplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28617038","geometry":{"type":"LineString","coordinates":[[16.386487,48.211962700000015],[16.3867306,48.21219240000002],[16.3868393,48.21221830000002],[16.3869372,48.21218859999999],[16.3870402,48.212102200000004]]},"properties":{"highway":"tertiary","lanes":"1","maxspeed":"50","name":"Hintere Zollamtsstraße","oneway":"yes"}},{"type":"Feature","id":"10504931","geometry":{"type":"LineString","coordinates":[[16.3870999,48.211965599999985],[16.3879714,48.21218619999999]]},"properties":{"alt_name":"Obere Weißgärberstraße","highway":"residential","maxspeed":"30","name":"Obere Weißgerberstraße","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"28617039","geometry":{"type":"LineString","coordinates":[[16.3870402,48.212102200000004],[16.3869344,48.212309000000005],[16.3869205,48.212373100000036],[16.3869296,48.21241750000004],[16.3869822,48.21247260000001],[16.3870495,48.212519999999984],[16.3872203,48.2125992],[16.3875755,48.212725999999975]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Hintere Zollamtsstraße","oneway":"yes"}},{"type":"Feature","id":"8052903","geometry":{"type":"LineString","coordinates":[[16.3870393,48.2111745],[16.3871272,48.211169100000006],[16.3872845,48.21115930000002]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"255728431","geometry":{"type":"LineString","coordinates":[[16.3870393,48.2111745],[16.3870422,48.21118799999999],[16.3870595,48.21126140000004],[16.3871108,48.2118438],[16.3871211,48.21189129999999],[16.3870999,48.211965599999985],[16.387086,48.21200569999999],[16.3870402,48.212102200000004]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Hintere Zollamtsstraße"}},{"type":"Feature","id":"8096076","geometry":{"type":"LineString","coordinates":[[16.3859669,48.21307250000001],[16.3858922,48.213136899999995],[16.3857613,48.21352780000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ulrichgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"411393122","geometry":{"type":"LineString","coordinates":[[16.3861767,48.211672799999974],[16.3864049,48.211870799999986],[16.386487,48.211962700000015]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Dampfschiffstraße","oneway":"yes","ref":"B227","turn:lanes":"through|through;right"}},{"type":"Feature","id":"9800317","geometry":{"type":"LineString","coordinates":[[16.386487,48.211962700000015],[16.3867161,48.21232229999998],[16.3868141,48.212425499999995],[16.3869489,48.21252620000001],[16.3870288,48.2125619],[16.3872598,48.212645500000036],[16.3875755,48.212725999999975],[16.3878249,48.2127916],[16.3881868,48.212858900000015],[16.388488,48.21290540000001],[16.3886768,48.21292969999999],[16.3888471,48.21294690000002],[16.3890101,48.21295850000001],[16.3892046,48.2129994],[16.389421,48.2130142],[16.3896156,48.21302350000002],[16.3898429,48.21302220000001],[16.3901216,48.213009099999994],[16.3903846,48.212984699999964],[16.3906437,48.2129549],[16.390989,48.21289899999999],[16.3909993,48.21289729999998]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Dampfschiffstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"101259538","geometry":{"type":"LineString","coordinates":[[16.3864938,48.21218749999997],[16.3864314,48.21226870000001],[16.3864972,48.21240940000004],[16.3866125,48.212561300000004],[16.3867708,48.21266319999998],[16.3869317,48.21272569999999],[16.3873421,48.21286520000001],[16.3877444,48.212977800000004],[16.3881655,48.213047500000016],[16.3885813,48.213102899999996],[16.3888093,48.21312069999999],[16.3892806,48.213130500000005]]},"properties":{"bicycle":"no","highway":"footway","name":"Treppelweg"}},{"type":"Feature","id":"234001983","geometry":{"type":"LineString","coordinates":[[16.3882253,48.2104822],[16.388284,48.210878099999974],[16.3883012,48.21099809999998],[16.3883116,48.21109000000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Matthäusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"148101977","geometry":{"type":"LineString","coordinates":[[16.3883116,48.21109000000001],[16.3898147,48.210991199999995],[16.3899677,48.21098109999997]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"8052894","geometry":{"type":"LineString","coordinates":[[16.3892155,48.21245290000002],[16.3891885,48.2124173],[16.3891718,48.21234390000001],[16.3895964,48.211691900000005],[16.3899783,48.211127000000005],[16.3899895,48.2110869],[16.3899923,48.21107670000001],[16.3899858,48.2110332],[16.3899677,48.21098109999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Löwengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"474645006","geometry":{"type":"LineString","coordinates":[[16.3898257,48.21104600000001],[16.3878625,48.21118150000001],[16.3877763,48.2111702],[16.3872178,48.21120730000001],[16.3871737,48.211220200000014],[16.3871361,48.21123109999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Radetzkystraße"}},{"type":"Feature","id":"148000118","geometry":{"type":"LineString","coordinates":[[16.3872845,48.21115930000002],[16.3874663,48.2111481]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","voltage":"600","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"211153464","geometry":{"type":"LineString","coordinates":[[16.3874663,48.2111481],[16.3878575,48.21112120000001],[16.3883116,48.21109000000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Radetzkystraße","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"8041130","geometry":{"type":"LineString","coordinates":[[16.3879714,48.21218619999999],[16.3879465,48.211858800000016],[16.3879208,48.211816400000004],[16.3878926,48.21154139999999],[16.3878625,48.21118150000001],[16.3878575,48.21112120000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pfefferhofgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9653639","geometry":{"type":"LineString","coordinates":[[16.3884192,48.21034639999999],[16.3883693,48.21024750000001],[16.3881807,48.2099752],[16.38787,48.20954520000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Matthäusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"172586380","geometry":{"type":"LineString","coordinates":[[16.3888769,48.20973330000001],[16.3881807,48.2099752]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lorbeergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8041125","geometry":{"type":"LineString","coordinates":[[16.3893905,48.21029659999999],[16.3884192,48.21034639999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Kolonitzgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"30011308","geometry":{"type":"LineString","coordinates":[[16.3884192,48.21034639999999],[16.3882119,48.2103644]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolonitzgasse","source:maxspeed":"AT:zone:30","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"138980889","geometry":{"type":"LineString","coordinates":[[16.3882119,48.2103644],[16.3882253,48.2104822]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Matthäusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"199423211","geometry":{"type":"LineString","coordinates":[[16.3872777,48.208584],[16.388273,48.209314500000005],[16.3888769,48.20973330000001],[16.3894629,48.210149099999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obere Viaduktgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"29082735","geometry":{"type":"LineString","coordinates":[[16.3872473,48.20863009999999],[16.3872053,48.208595599999995]]},"properties":{"highway":"steps","incline":"down","name":"Zollgasse"}},{"type":"Feature","id":"101967406","geometry":{"type":"LineString","coordinates":[[16.3903609,48.208585200000016],[16.3898033,48.208729000000005],[16.3896833,48.208749100000006],[16.3895856,48.208780700000034],[16.3885437,48.2091705]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hetzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9654824","geometry":{"type":"LineString","coordinates":[[16.389075,48.20958239999999],[16.389695,48.20929359999997],[16.3899028,48.20919860000001],[16.3905323,48.2089144]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lorbeergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13442610","geometry":{"type":"LineString","coordinates":[[16.38787,48.20954520000001],[16.388273,48.209314500000005]]},"properties":{"fixme":"Einbahn?","highway":"residential","maxspeed":"30","name":"Hetzgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"255728432","geometry":{"type":"LineString","coordinates":[[16.3868997,48.2104453],[16.3870068,48.210543400000006],[16.3870202,48.210604200000034],[16.3870747,48.21099889999999],[16.3870393,48.2111745]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Hintere Zollamtsstraße","oneway":"yes"}},{"type":"Feature","id":"474645007","geometry":{"type":"LineString","coordinates":[[16.3898287,48.2109451],[16.3898065,48.21094649999998],[16.3897768,48.210948299999984],[16.3892304,48.21098319999999],[16.3891621,48.210979399999985],[16.3882792,48.21103600000001],[16.3871571,48.211109300000004],[16.3871195,48.211111700000004]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Radetzkystraße"}},{"type":"Feature","id":"28171637","geometry":{"type":"LineString","coordinates":[[16.3870393,48.2111745],[16.3869977,48.211095400000005],[16.3869765,48.21101899999999],[16.3869679,48.210983],[16.3869531,48.2108547],[16.3869148,48.21057749999997],[16.3868997,48.2104453]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Hintere Zollamtsstraße","oneway":"yes"}},{"type":"Feature","id":"176475530","geometry":{"type":"LineString","coordinates":[[16.3867653,48.209418200000016],[16.3868892,48.20941250000001],[16.3868537,48.2091307],[16.386817,48.20885390000001],[16.3868504,48.208833999999996],[16.3871823,48.20863590000002]]},"properties":{"highway":"residential","name":"Zollgasse"}},{"type":"Feature","id":"30062344","geometry":{"type":"LineString","coordinates":[[16.38787,48.20954520000001],[16.3870087,48.2100322],[16.3868553,48.21011899999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hetzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"138980890","geometry":{"type":"LineString","coordinates":[[16.3868997,48.2104453],[16.3870701,48.210431200000016],[16.3880774,48.21037100000001],[16.3882119,48.2103644]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Kolonitzgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Leopold Karl von Kollonitsch"}},{"type":"Feature","id":"30062301","geometry":{"type":"LineString","coordinates":[[16.3892529,48.20792399999999],[16.389907,48.207762599999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kegelgasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"10069242","geometry":{"type":"LineString","coordinates":[[16.3877442,48.2076672],[16.3878397,48.207850199999996],[16.3879079,48.20798099999999],[16.3879865,48.208134],[16.3880249,48.2082087],[16.3884833,48.20908969999999],[16.3885437,48.2091705],[16.3886429,48.209260099999995],[16.389075,48.20958239999999],[16.3891071,48.209607000000005],[16.3897623,48.21008089999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Untere Viaduktgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9653841","geometry":{"type":"LineString","coordinates":[[16.3877442,48.2076672],[16.3889818,48.207385999999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hansalgasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"8041175","geometry":{"type":"LineString","coordinates":[[16.3892529,48.20792399999999],[16.3881794,48.20816639999998],[16.3880249,48.2082087]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kegelgasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"9654599","geometry":{"type":"LineString","coordinates":[[16.3884573,48.20646289999999],[16.3895417,48.20645219999997],[16.3896947,48.206431899999984]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geusaugasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"488248614","geometry":{"type":"LineString","coordinates":[[16.3896833,48.208749100000006],[16.3892529,48.20792399999999],[16.3889818,48.207385999999985],[16.3887516,48.206934399999994],[16.3886766,48.20686589999997]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Bechardgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"504594090","geometry":{"type":"LineString","coordinates":[[16.3874603,48.207129699999996],[16.3875004,48.20720560000001],[16.3877442,48.2076672]]},"properties":{"highway":"residential","maxspeed":"30","name":"Untere Viaduktgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13441493","geometry":{"type":"LineString","coordinates":[[16.3865981,48.208294800000004],[16.3865969,48.20841280000002],[16.386608,48.208523799999995],[16.3867197,48.20909900000001],[16.3867413,48.209254999999985],[16.3867653,48.209418200000016],[16.3867661,48.209427800000014],[16.386828,48.209918500000015],[16.3868553,48.21011899999999],[16.3868786,48.210290499999985],[16.3868997,48.2104453]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Hintere Zollamtsstraße"}},{"type":"Feature","id":"13440700","geometry":{"type":"LineString","coordinates":[[16.3865981,48.208294800000004],[16.3866636,48.20830620000004],[16.3866893,48.2083107],[16.38672,48.208315999999996],[16.3868572,48.20834579999999],[16.3870184,48.20841659999999],[16.3871217,48.208474800000005],[16.3872326,48.208552399999974],[16.3872777,48.208584]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obere Viaduktgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10070609","geometry":{"type":"LineString","coordinates":[[16.3866049,48.207407399999994],[16.3866195,48.207496899999995],[16.3866184,48.2077314]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Markthallenbrücke"}},{"type":"Feature","id":"230847295","geometry":{"type":"LineString","coordinates":[[16.3866184,48.2077314],[16.3866176,48.2077764],[16.3866077,48.20791800000001],[16.3865981,48.208294800000004]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Markthallenbrücke","note":"Don't make this bridge=yes, the tramway tracks would be invisible on the Mapnik map then."}},{"type":"Feature","id":"504594089","geometry":{"type":"LineString","coordinates":[[16.3874603,48.207129699999996],[16.3873767,48.20715680000001],[16.3867552,48.20736299999999],[16.3866049,48.207407399999994]]},"properties":{"cycleway":"opposite_track","cycleway:right":"lane","highway":"residential","lanes":"3","lcn":"yes","maxspeed":"30","name":"Marxergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","turn:lanes":"left|through|through;right","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"13437408","geometry":{"type":"LineString","coordinates":[[16.3862017,48.20686739999999],[16.386288,48.206833899999964],[16.3863241,48.206822500000015],[16.3863928,48.20680089999999],[16.3870806,48.2065848]]},"properties":{"highway":"residential","maxspeed":"30","name":"Grailichgasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Wilhelm Josef Grailich"}},{"type":"Feature","id":"30285687","geometry":{"type":"LineString","coordinates":[[16.3868923,48.2161328],[16.3867733,48.21607720000003],[16.3863552,48.215838899999994],[16.3859151,48.21557999999999],[16.3855054,48.215348800000015],[16.3854939,48.215342599999985],[16.3851937,48.21517660000001],[16.3849501,48.21498389999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Praterstraße","old_name":"Jägerzeile","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"200689825","geometry":{"type":"LineString","coordinates":[[16.3849501,48.21498389999999],[16.3852652,48.215102099999996],[16.3855604,48.2152648],[16.3855775,48.21527459999996],[16.3857248,48.215355999999986],[16.3859893,48.21553299999999],[16.3868454,48.21598580000003],[16.3868833,48.216005800000005],[16.3869785,48.216054000000014]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Praterstraße","old_name":"Jägerzeile","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"367500885","geometry":{"type":"LineString","coordinates":[[16.3852371,48.21291350000001],[16.385279,48.21284209999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Tempelgasse","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"367500886","geometry":{"type":"LineString","coordinates":[[16.3850189,48.213601600000004],[16.3850704,48.213415699999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tempelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"206135575","geometry":{"type":"LineString","coordinates":[[16.3848466,48.21415229999997],[16.3849191,48.21398640000001],[16.3850189,48.213601600000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tempelgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"206135576","geometry":{"type":"LineString","coordinates":[[16.3852371,48.21291350000001],[16.3850704,48.213415699999985]]},"properties":{"highway":"living_street","name":"Tempelgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"157533720","geometry":{"type":"LineString","coordinates":[[16.3858922,48.213136899999995],[16.3852371,48.21291350000001]]},"properties":{"cycleway":"opposite_lane","description":"Nebenfahrbahn","highway":"residential","maxspeed":"50","name":"Untere Donaustraße","oneway":"yes","source:maxspeed":"AT:urban","surface":"paved"}},{"type":"Feature","id":"399877914","geometry":{"type":"LineString","coordinates":[[16.3850553,48.21135179999996],[16.3850322,48.21140059999999],[16.3850544,48.21145069999997],[16.3851059,48.211491499999994],[16.3853965,48.211586600000004],[16.385903,48.21173519999999],[16.3861401,48.2118122],[16.3862373,48.211858500000005],[16.3863174,48.21191390000004],[16.3863848,48.21201780000004],[16.3864938,48.21218749999997],[16.3866814,48.2124795],[16.3868036,48.21258449999999],[16.3869706,48.21266220000001],[16.3872634,48.2127744],[16.3876286,48.21286860000001],[16.3881591,48.21296469999996],[16.3886446,48.2130478],[16.3890155,48.213074500000005],[16.3891144,48.2130779],[16.3891604,48.2131167],[16.3892806,48.213130500000005]]},"properties":{"foot":"yes","highway":"cycleway","name":"Weißgerberufer","surface":"paved"}},{"type":"Feature","id":"161844831","geometry":{"type":"LineString","coordinates":[[16.3846418,48.21456949999998],[16.3859812,48.21437320000001],[16.3862993,48.214366299999966],[16.3867347,48.21437309999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Czerningasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8052853","geometry":{"type":"LineString","coordinates":[[16.384477,48.214617000000004],[16.3845717,48.214589700000005],[16.3846418,48.21456949999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Nestroyplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8096080","geometry":{"type":"LineString","coordinates":[[16.38436,48.214663900000005],[16.3842563,48.214696300000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schrottgießergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"200689824","geometry":{"type":"LineString","coordinates":[[16.3849501,48.21498389999999],[16.3845493,48.2147684],[16.38436,48.214663900000005]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Praterstraße","old_name":"Jägerzeile","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8096063","geometry":{"type":"LineString","coordinates":[[16.38436,48.214663900000005],[16.384477,48.214617000000004],[16.3845241,48.214566400000024],[16.3845723,48.214514699999995],[16.3848466,48.21415229999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tempelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"30285690","geometry":{"type":"LineString","coordinates":[[16.38436,48.214663900000005],[16.3842681,48.214613799999995],[16.3842348,48.214595599999996]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Praterstraße"}},{"type":"Feature","id":"165778784","geometry":{"type":"LineString","coordinates":[[16.3843721,48.21136960000001],[16.3844318,48.21136430000004],[16.3844839,48.211359200000004]]},"properties":{"foot":"yes","highway":"cycleway","layer":"-1","lcn":"yes","name":"Rotenturmufer","segregated":"no","source:surface":"survey","surface":"asphalt"}},{"type":"Feature","id":"354850560","geometry":{"type":"LineString","coordinates":[[16.3852725,48.21115639999999],[16.3852836,48.2111745]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"10363296","geometry":{"type":"LineString","coordinates":[[16.3870393,48.2111745],[16.3869213,48.211181900000014],[16.386846,48.21118559999999],[16.3867282,48.211191299999996],[16.3866177,48.21119780000001],[16.3864209,48.211208],[16.3862,48.21121889999998],[16.3860373,48.2112267],[16.3858874,48.211231199999986],[16.3857983,48.211228500000004],[16.3857365,48.21122600000001],[16.3856859,48.21122009999999],[16.3855887,48.21120940000003],[16.3854031,48.211187300000006],[16.3852836,48.2111745]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Radetzkystraße","wikipedia":"de:Josef Wenzel Graf Radetzky von Radetz"}},{"type":"Feature","id":"354850563","geometry":{"type":"LineString","coordinates":[[16.3852836,48.2111745],[16.3852913,48.21118719999998]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"354850567","geometry":{"type":"LineString","coordinates":[[16.3852913,48.21118719999998],[16.3853022,48.21120300000004],[16.3853219,48.21123400000002],[16.3853388,48.21126079999999],[16.3853817,48.2113286],[16.385437,48.21141520000003]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"297525873","geometry":{"type":"LineString","coordinates":[[16.3851902,48.2110313],[16.3852299,48.21108640000003],[16.3852501,48.21111960000002],[16.3852725,48.21115639999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"101272247","geometry":{"type":"LineString","coordinates":[[16.3850699,48.211249899999984],[16.385013,48.211270300000024],[16.3848801,48.21127899999999]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes"}},{"type":"Feature","id":"9800405","geometry":{"type":"LineString","coordinates":[[16.384867,48.211211399999996],[16.3849307,48.21121750000003],[16.3850005,48.21122949999997],[16.3850699,48.211249899999984]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Obere Weißgerberstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"101272245","geometry":{"type":"LineString","coordinates":[[16.3850699,48.211249899999984],[16.3851411,48.211277199999984],[16.3851914,48.211299],[16.3852291,48.211315299999995],[16.38532,48.211364400000036],[16.385437,48.21141520000003],[16.3856086,48.2114866],[16.3861767,48.211672799999974]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Obere Weißgerberstraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"230626526","geometry":{"type":"LineString","coordinates":[[16.3849865,48.21041869999999],[16.3850469,48.210624300000035]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1","turn:lanes":"left|left|slight_right"}},{"type":"Feature","id":"230626525","geometry":{"type":"LineString","coordinates":[[16.3850469,48.210624300000035],[16.3851902,48.2110313]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1","turn:lanes":"left|left|slight_right|slight_right"}},{"type":"Feature","id":"47120688","geometry":{"type":"LineString","coordinates":[[16.3851902,48.2110313],[16.3851744,48.211079100000006],[16.3851643,48.21110759999999],[16.3851545,48.211139],[16.3851482,48.211167200000006],[16.3851334,48.2111941],[16.3851155,48.21121600000001],[16.3850699,48.211249899999984]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes"}},{"type":"Feature","id":"29076533","geometry":{"type":"LineString","coordinates":[[16.3866049,48.207407399999994],[16.3864613,48.207456699999994],[16.3855751,48.20775499999999],[16.3854845,48.20778580000001],[16.385065,48.20792900000001],[16.3849562,48.207966699999986]]},"properties":{"cycleway":"lane","highway":"tertiary","lanes":"3","lcn":"yes","maxspeed":"50","name":"Marxergasse","source:maxspeed":"AT:urban","surface":"asphalt","turn:lanes:forward":"left;through|through"}},{"type":"Feature","id":"9801104","geometry":{"type":"LineString","coordinates":[[16.3844497,48.211233899999996],[16.3847797,48.21120500000001]]},"properties":{"bridge":"yes","foot":"use_sidepath","highway":"primary","lanes":"3","layer":"1","lit":"yes","maxspeed":"50","name":"Radetzkybrücke","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"slight_left|slight_left|right"}},{"type":"Feature","id":"47120686","geometry":{"type":"LineString","coordinates":[[16.3848801,48.21127899999999],[16.3844721,48.21131439999999]]},"properties":{"bridge":"yes","foot":"use_sidepath","highway":"secondary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Radetzkybrücke","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"297525585","geometry":{"type":"LineString","coordinates":[[16.3847797,48.21120500000001],[16.384867,48.211211399999996]]},"properties":{"bridge":"yes","highway":"primary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Radetzkybrücke","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"5105728","geometry":{"type":"LineString","coordinates":[[16.3847797,48.21120500000001],[16.3848615,48.2111802]]},"properties":{"bridge":"yes","highway":"primary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Radetzkybrücke","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"101272248","geometry":{"type":"LineString","coordinates":[[16.3848615,48.2111802],[16.3849039,48.211164499999995],[16.3849407,48.2111438],[16.3849697,48.21111730000001],[16.3849783,48.211087899999995],[16.3849876,48.211056299999996]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"8041121","geometry":{"type":"LineString","coordinates":[[16.3846049,48.209787500000004],[16.3841704,48.209823]]},"properties":{"bridge":"yes","foot":"yes","highway":"cycleway","layer":"2","name":"Zollamtssteg","segregated":"no","wikipedia":"de:Zollamtssteg"}},{"type":"Feature","id":"316595634","geometry":{"type":"LineString","coordinates":[[16.384718,48.207634299999995],[16.3849106,48.20790310000001],[16.3849562,48.207966699999986]]},"properties":{"highway":"residential","maxspeed":"50","name":"Gigergasse","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"316595635","geometry":{"type":"LineString","coordinates":[[16.3846554,48.207547000000005],[16.384718,48.207634299999995]]},"properties":{"cycleway":"opposite_track","highway":"residential","maxspeed":"50","name":"Gigergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"13440078","geometry":{"type":"LineString","coordinates":[[16.38435,48.2071411],[16.3845561,48.2074135],[16.3846554,48.207547000000005]]},"properties":{"highway":"residential","maxspeed":"50","name":"Gigergasse","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"38182477","geometry":{"type":"LineString","coordinates":[[16.3924224,48.20521450000001],[16.3925757,48.20532280000003],[16.3928525,48.20552449999997],[16.39288,48.20557500000001]]},"properties":{"access":"destination","highway":"service","name":"Salmgasse","service":"driveway"}},{"type":"Feature","id":"474638497","geometry":{"type":"LineString","coordinates":[[16.3946274,48.205755100000005],[16.3944056,48.206097099999994],[16.3943753,48.20614309999999],[16.3942092,48.20639489999999],[16.393969,48.20675909999997],[16.3938531,48.20694019999999],[16.3934643,48.2075375],[16.3932019,48.20793370000001],[16.3929259,48.20834009999999],[16.3928961,48.208383999999995],[16.3928532,48.208433799999995],[16.3928652,48.20845079999998],[16.3928527,48.20846770000003],[16.3928252,48.20849580000004],[16.3927882,48.2085343],[16.3927532,48.20856650000002],[16.3927146,48.2086032],[16.392677,48.208636600000006],[16.392626,48.20867739999997],[16.3925863,48.20870869999999],[16.3925349,48.20874739999999],[16.3921746,48.20902770000001],[16.39185,48.20927789999999],[16.3917997,48.209290899999985],[16.3917711,48.2093127]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Löwengasse"}},{"type":"Feature","id":"182562252","geometry":{"type":"LineString","coordinates":[[16.39288,48.20557500000001],[16.3932878,48.20585760000003]]},"properties":{"highway":"residential","name":"Salmgasse"}},{"type":"Feature","id":"8053412","geometry":{"type":"LineString","coordinates":[[16.3954383,48.205844299999995],[16.3954303,48.20587699999999],[16.3949743,48.2071416],[16.394729,48.20777410000002],[16.3945638,48.20815870000001],[16.3943917,48.20864919999997],[16.3943477,48.20878379999999],[16.3940109,48.20954170000002],[16.3939516,48.209637499999985],[16.3938887,48.209817499999986],[16.3935778,48.21053580000003],[16.3934696,48.21067070000001],[16.3923342,48.211832000000015],[16.392217,48.2119098]]},"properties":{"highway":"residential","maxspeed":"30","name":"Untere Weißgerberstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9653301","geometry":{"type":"LineString","coordinates":[[16.3922793,48.20616960000001],[16.3926663,48.207380900000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stammgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"101266777","geometry":{"type":"LineString","coordinates":[[16.3928356,48.204724],[16.3934896,48.20430680000001],[16.3941978,48.203865699999994],[16.3942664,48.20382380000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Geusaugasse","oneway":"yes"}},{"type":"Feature","id":"101266779","geometry":{"type":"LineString","coordinates":[[16.3925075,48.20461910000003],[16.3925467,48.2046081],[16.3925805,48.20460969999999],[16.3926129,48.204621599999996],[16.3927012,48.20469200000002],[16.3927252,48.20470689999999],[16.3927898,48.204725199999984],[16.3928356,48.204724]]},"properties":{"cycleway":"opposite_lane","highway":"residential","name":"Rasumofskygasse","oneway":"yes"}},{"type":"Feature","id":"24587535","geometry":{"type":"LineString","coordinates":[[16.3928465,48.20482820000001],[16.3928128,48.204789800000015],[16.3927983,48.20476850000003],[16.3927966,48.204754199999996],[16.3928356,48.204724]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rasumofskygasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"8053380","geometry":{"type":"LineString","coordinates":[[16.3928576,48.20267210000003],[16.3927437,48.20267899999999],[16.3923842,48.20271310000001],[16.3922765,48.202721499999996],[16.3921529,48.20271600000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Erdbergstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"130642863","geometry":{"type":"LineString","coordinates":[[16.3928576,48.20267210000003],[16.3929163,48.20272219999998],[16.393747,48.20339179999999],[16.3942664,48.20382380000001],[16.3945759,48.20414840000001],[16.3946774,48.204258400000015],[16.3947383,48.204309499999994],[16.3955156,48.2050801]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Kundmanngasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Carl Kundmann"}},{"type":"Feature","id":"9654327","geometry":{"type":"LineString","coordinates":[[16.3908708,48.20580429999998],[16.3913038,48.20602869999999],[16.3917705,48.20632259999999]]},"properties":{"bicycle":"yes","foot":"yes","highway":"cycleway","name":"Weyrgasse","wikipedia":"de:Rudolf Weyr"}},{"type":"Feature","id":"10069377","geometry":{"type":"LineString","coordinates":[[16.3908708,48.20580429999998],[16.3916433,48.205358200000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geusaugasse","noexit":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"474636891","geometry":{"type":"LineString","coordinates":[[16.3947927,48.20578100000003],[16.3942321,48.206630099999984],[16.3940624,48.206890499999986],[16.393678,48.2074676],[16.3935649,48.2076486],[16.3933777,48.20794839999999],[16.3933074,48.20805300000001],[16.3931068,48.20835120000001],[16.3930764,48.20839649999999],[16.3930269,48.208461],[16.3930228,48.20847850000001],[16.3928505,48.20864599999999],[16.3925441,48.20888869999999],[16.3924911,48.20890249999999],[16.3923395,48.20902140000001],[16.3923389,48.20904060000001],[16.3923013,48.2090719],[16.3917307,48.209513000000015],[16.3914697,48.2097239],[16.3910474,48.21006879999999],[16.3908752,48.210243400000024],[16.3908076,48.2102974],[16.3905691,48.2105507],[16.3905367,48.210583499999984],[16.3905361,48.210598300000015],[16.3905136,48.21062399999997],[16.3903477,48.21078019999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Löwengasse"}},{"type":"Feature","id":"9654341","geometry":{"type":"LineString","coordinates":[[16.3902786,48.2053181],[16.3908508,48.205014199999965]]},"properties":{"highway":"residential","maxspeed":"30","name":"Uchatiusgasse","noexit":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Franz Freiherr von Uchatius"}},{"type":"Feature","id":"10069415","geometry":{"type":"LineString","coordinates":[[16.3901004,48.2054024],[16.3902786,48.2053181]]},"properties":{"highway":"residential","maxspeed":"30","name":"Uchatiusgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"10069379","geometry":{"type":"LineString","coordinates":[[16.3907573,48.205882599999995],[16.3908708,48.20580429999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geusaugasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10069742","geometry":{"type":"LineString","coordinates":[[16.3900984,48.20330169999997],[16.390984,48.2040691]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salmgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"9654394","geometry":{"type":"LineString","coordinates":[[16.390984,48.2040691],[16.3910465,48.204067699999996],[16.3918643,48.203699700000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Siegelgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"10069473","geometry":{"type":"LineString","coordinates":[[16.390984,48.2040691],[16.3909834,48.20410849999996],[16.3914205,48.204491700000005],[16.3917657,48.204792199999986],[16.3918955,48.20489229999998],[16.3919571,48.20488829999999],[16.3921061,48.20481810000004],[16.3922858,48.20473960000004],[16.3924324,48.204653699999994],[16.3925075,48.20461910000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salmgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"101266781","geometry":{"type":"LineString","coordinates":[[16.3941592,48.20562380000001],[16.3940502,48.20558629999999],[16.3939516,48.20555239999999],[16.3938144,48.20550320000001],[16.3931554,48.2050443],[16.392988,48.204932299999996],[16.3928465,48.20482820000001],[16.3926929,48.204770800000006],[16.3925619,48.204685900000015],[16.3925329,48.204657500000025],[16.3925075,48.20461910000003],[16.392414,48.204523999999964],[16.3922575,48.20442729999999],[16.3921655,48.2043156],[16.3920924,48.20417900000001],[16.3920681,48.20401289999998],[16.3920571,48.20391119999999],[16.3920178,48.203839000000016],[16.3918643,48.203699700000016],[16.3916892,48.20354549999999],[16.3909855,48.20294860000001],[16.3909361,48.20292499999999]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Rasumofskygasse","oneway":"yes","surface":"asphalt","wikipedia":"de:Andrej Kyrillowitsch Rasumowsky"}},{"type":"Feature","id":"10069723","geometry":{"type":"LineString","coordinates":[[16.3909361,48.20292499999999],[16.3908522,48.20292169999999],[16.3900984,48.20330169999997]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Landstraßer Hauptstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"9416721","geometry":{"type":"LineString","coordinates":[[16.3928576,48.20267210000003],[16.392938,48.2026645],[16.3930439,48.20265409999999],[16.3937157,48.202569299999965],[16.3938796,48.202551700000015],[16.3939894,48.20253679999999],[16.3940023,48.20253479999997],[16.3949299,48.202412400000014],[16.395256,48.20232679999998],[16.3955441,48.20219850000001],[16.39611,48.2018659],[16.3961441,48.20184549999999],[16.3961982,48.20181259999998]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Erdbergstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"43403453","geometry":{"type":"LineString","coordinates":[[16.3922417,48.202186100000034],[16.3923481,48.20226969999999],[16.392791,48.2026195],[16.3928576,48.20267210000003]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Kundmanngasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Carl Kundmann"}},{"type":"Feature","id":"8053391","geometry":{"type":"LineString","coordinates":[[16.3915884,48.20175470000001],[16.3917407,48.201787800000005],[16.3921961,48.202149099999986],[16.3922417,48.202186100000034]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Kundmanngasse","oneway":"yes","surface":"asphalt","wikipedia":"de:Carl Kundmann"}},{"type":"Feature","id":"10069690","geometry":{"type":"LineString","coordinates":[[16.3909361,48.20292499999999],[16.3912885,48.2027267],[16.3916619,48.20251669999999]]},"properties":{"highway":"pedestrian","name":"Rochusplatz","surface":"paved","wikipedia":"en:Maria Eis"}},{"type":"Feature","id":"8885404","geometry":{"type":"LineString","coordinates":[[16.3909361,48.20292499999999],[16.3907662,48.20280439999999],[16.3907124,48.202766199999985],[16.3905627,48.20266040000001],[16.3904636,48.2025903]]},"properties":{"bus":"yes","highway":"service","maxspeed":"50","name":"Landstraßer Hauptstraße","oneway":"yes","surface":"cobblestone","vehicle":"no"}},{"type":"Feature","id":"31401323","geometry":{"type":"LineString","coordinates":[[16.3915884,48.20175470000001],[16.3914828,48.20183650000004],[16.3910989,48.202108899999985]]},"properties":{"cycleway:left":"lane","highway":"secondary","maxspeed":"50","name":"Landstraßer Hauptstraße","surface":"asphalt"}},{"type":"Feature","id":"30692801","geometry":{"type":"LineString","coordinates":[[16.3910989,48.202108899999985],[16.3906815,48.20242490000001],[16.3905309,48.20253819999999],[16.3904636,48.2025903]]},"properties":{"cycleway:left":"lane","highway":"secondary","maxspeed":"50","name":"Landstraßer Hauptstraße","surface":"asphalt"}},{"type":"Feature","id":"295186880","geometry":{"type":"LineString","coordinates":[[16.3921529,48.20271600000001],[16.3919923,48.202682400000015],[16.3918288,48.20261429999999],[16.3916619,48.20251669999999],[16.3915126,48.20239090000001],[16.3912678,48.20220040000001],[16.391223,48.2021761],[16.3910989,48.202108899999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Erdbergstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"paved"}},{"type":"Feature","id":"28169221","geometry":{"type":"LineString","coordinates":[[16.4301609,48.19706310000001],[16.4255226,48.199506299999996],[16.4200348,48.2023968],[16.4165115,48.20425470000001],[16.4164,48.20431780000001],[16.4162622,48.20439010000001],[16.4161586,48.204444800000005],[16.4134903,48.205853700000006],[16.4093567,48.20801399999999],[16.407698,48.2088809],[16.406687,48.20940920000001],[16.4025549,48.21157959999999],[16.4013381,48.212211999999994],[16.3999813,48.21292510000001],[16.3989218,48.213474899999966],[16.3981247,48.2138951],[16.3971361,48.214414499999975],[16.3961136,48.2149517],[16.3959219,48.21505959999999],[16.3948192,48.215680599999985],[16.3936975,48.21627120000002],[16.3930172,48.216629299999994],[16.3928795,48.21670179999998]]},"properties":{"highway":"bridleway","name":"Zureitweg","surface":"bark_mulch"}},{"type":"Feature","id":"4583437","geometry":{"type":"LineString","coordinates":[[16.3924518,48.1971618],[16.3923065,48.19775340000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Boerhaavegasse","oneway":"yes","wikipedia":"de:Herman Boerhaave"}},{"type":"Feature","id":"27019189","geometry":{"type":"LineString","coordinates":[[16.3924518,48.1971618],[16.3923304,48.196610899999996]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Boerhaavegasse","oneway":"yes","wikipedia":"de:Herman Boerhaave"}},{"type":"Feature","id":"10213989","geometry":{"type":"LineString","coordinates":[[16.3928943,48.200543900000014],[16.3927869,48.20051529999998],[16.3917156,48.20022990000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hintzerstraße","oneway":"yes"}},{"type":"Feature","id":"31401249","geometry":{"type":"LineString","coordinates":[[16.3939161,48.199571899999995],[16.3938271,48.19965830000001],[16.3936778,48.1998031],[16.3931951,48.2002712],[16.3928943,48.200543900000014],[16.3928125,48.200620500000014],[16.3926247,48.20079749999999],[16.3917274,48.2016634],[16.3915884,48.20175470000001]]},"properties":{"cycleway":"lane","highway":"secondary","maxspeed":"50","name":"Landstraßer Hauptstraße","surface":"asphalt"}},{"type":"Feature","id":"9654905","geometry":{"type":"LineString","coordinates":[[16.3917156,48.20022990000001],[16.3918575,48.199782400000004],[16.3919301,48.1995225],[16.3920308,48.19921389999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ziehrerplatz","oneway":"yes","wikipedia":"de:Carl Michael Ziehrer"}},{"type":"Feature","id":"10213986","geometry":{"type":"LineString","coordinates":[[16.3917156,48.20022990000001],[16.3912819,48.200203200000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Ziehrerplatz","oneway":"yes","surface":"asphalt","wikipedia":"de:Carl Michael Ziehrer"}},{"type":"Feature","id":"10213981","geometry":{"type":"LineString","coordinates":[[16.3915801,48.19918989999999],[16.3915018,48.19946970000001],[16.3914309,48.19971459999999],[16.3914019,48.19982129999997],[16.3913668,48.1999586],[16.3912819,48.200203200000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ziehrerplatz","oneway":"yes","surface":"asphalt","wikipedia":"de:Carl Michael Ziehrer"}},{"type":"Feature","id":"37786715","geometry":{"type":"LineString","coordinates":[[16.3923304,48.196610899999996],[16.3920371,48.19569490000001],[16.392024,48.195653899999996],[16.3918558,48.19512849999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Boerhaavegasse","oneway":"yes","source:maxspeed":"AT:zone","wikipedia":"de:Herman Boerhaave"}},{"type":"Feature","id":"9654883","geometry":{"type":"LineString","coordinates":[[16.3910879,48.20065090000003],[16.3911352,48.200567500000005],[16.3912819,48.200203200000004]]},"properties":{"highway":"residential","name":"Pfarrhofgasse"}},{"type":"Feature","id":"12616751","geometry":{"type":"LineString","coordinates":[[16.3908462,48.19662769999999],[16.3908468,48.197166400000015]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Arenberggasse","oneway":"yes"}},{"type":"Feature","id":"10144095","geometry":{"type":"LineString","coordinates":[[16.3908441,48.19757680000001],[16.3908468,48.197166400000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Arenberggasse","oneway":"yes"}},{"type":"Feature","id":"10144182","geometry":{"type":"LineString","coordinates":[[16.3900658,48.19818470000001],[16.3900737,48.1981548],[16.3902311,48.19756050000001],[16.3908441,48.19757680000001],[16.391241,48.19760880000001],[16.3923065,48.19775340000001],[16.3922673,48.197913200000016],[16.3933843,48.198151800000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dannebergplatz","oneway":"yes","wikipedia":"de:Dannebergplatz"}},{"type":"Feature","id":"178446498","geometry":{"type":"LineString","coordinates":[[16.3891717,48.205885499999965],[16.3886194,48.205357100000015]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Seidlgasse","oneway":"yes","source:maxspeed":"AT:zone","surface":"asphalt","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"164330230","geometry":{"type":"LineString","coordinates":[[16.3886194,48.205357100000015],[16.3884332,48.20518100000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Seidlgasse","source:maxspeed":"AT:zone","surface":"asphalt","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"9654348","geometry":{"type":"LineString","coordinates":[[16.3891717,48.205885499999965],[16.3901004,48.2054024]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Uchatiusgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Franz Freiherr von Uchatius"}},{"type":"Feature","id":"13437472","geometry":{"type":"LineString","coordinates":[[16.3879553,48.2057073],[16.3884573,48.20646289999999],[16.3886766,48.20686589999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Gärtnergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9654618","geometry":{"type":"LineString","coordinates":[[16.3896947,48.206431899999984],[16.3898752,48.20636489999998],[16.3903044,48.206124700000004],[16.3907573,48.205882599999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geusaugasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"178446497","geometry":{"type":"LineString","coordinates":[[16.3896947,48.206431899999984],[16.3891717,48.205885499999965]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Seidlgasse","oneway":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"9654326","geometry":{"type":"LineString","coordinates":[[16.3886713,48.20422260000001],[16.3887655,48.20429339999998],[16.389498,48.20484330000002],[16.3895449,48.20487259999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Weyrgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9654252","geometry":{"type":"LineString","coordinates":[[16.3904821,48.20442400000002],[16.3895449,48.20487259999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Czapkagasse","noexit":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Ignaz Czapka"}},{"type":"Feature","id":"68907937","geometry":{"type":"LineString","coordinates":[[16.3884332,48.20518100000001],[16.3885025,48.2051486],[16.3882277,48.20488370000001],[16.3880997,48.20476339999999],[16.3880228,48.20481890000002]]},"properties":{"highway":"footway","name":"Seidlgasse","source":"estimated","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"9825804","geometry":{"type":"LineString","coordinates":[[16.3907573,48.205882599999995],[16.3901004,48.2054024],[16.3894698,48.20491550000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Esteplatz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Franz Ferdinand von Österreich-Este"}},{"type":"Feature","id":"181770359","geometry":{"type":"LineString","coordinates":[[16.3884332,48.20518100000001],[16.3883701,48.20521009999999],[16.3881031,48.20493970000001],[16.3879963,48.20483279999996],[16.3880228,48.20481890000002]]},"properties":{"highway":"footway","name":"Seidlgasse","source":"estimated","wikipedia":"de:Johann Gabriel Seidl"}},{"type":"Feature","id":"10069099","geometry":{"type":"LineString","coordinates":[[16.3895449,48.20487259999999],[16.3897487,48.204901199999995],[16.3902786,48.2053181],[16.3908708,48.20580429999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Esteplatz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Franz Ferdinand von Österreich-Este"}},{"type":"Feature","id":"122239510","geometry":{"type":"LineString","coordinates":[[16.3886407,48.203841100000005],[16.3887616,48.203894099999985]]},"properties":{"foot":"permissive","highway":"footway","name":"Sünnhof-Passage","tunnel":"yes"}},{"type":"Feature","id":"8080548","geometry":{"type":"LineString","coordinates":[[16.3941592,48.20562380000001],[16.3940209,48.20566819999999],[16.393989,48.20567840000001],[16.3932878,48.20585760000003],[16.3922793,48.20616960000001],[16.3917705,48.20632259999999],[16.3914769,48.206438100000014],[16.3904672,48.20675879999999],[16.3900175,48.20685209999999],[16.3894225,48.20685370000001],[16.3886766,48.20686589999997],[16.3875519,48.2071009],[16.3874603,48.207129699999996]]},"properties":{"cycleway":"opposite_track","cycleway:right":"lane","highway":"residential","lcn":"yes","maxspeed":"30","name":"Marxergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"9654250","geometry":{"type":"LineString","coordinates":[[16.3895449,48.20487259999999],[16.3894698,48.20491550000003],[16.3886194,48.205357100000015],[16.3879553,48.2057073]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Czapkagasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Ignaz Czapka"}},{"type":"Feature","id":"10069172","geometry":{"type":"LineString","coordinates":[[16.3879553,48.2057073],[16.3875309,48.2051199],[16.3874845,48.20505560000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Gärtnergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"103273744","geometry":{"type":"LineString","coordinates":[[16.3864901,48.20615140000001],[16.3866158,48.2061118],[16.386724,48.2060774]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ditscheinergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10043642","geometry":{"type":"LineString","coordinates":[[16.3863549,48.20554200000001],[16.3864051,48.205615499999965],[16.386724,48.2060774],[16.3870806,48.2065848],[16.3874065,48.2070525],[16.3874603,48.207129699999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Untere Viaduktgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13437195","geometry":{"type":"LineString","coordinates":[[16.3867504,48.204309800000004],[16.3873739,48.20397299999999],[16.3876887,48.203738999999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Baumannstraße","wikipedia":"de:Oscar Baumann"}},{"type":"Feature","id":"383461134","geometry":{"type":"LineString","coordinates":[[16.3874845,48.20505560000001],[16.3873816,48.20500340000001],[16.3867504,48.204309800000004],[16.3861862,48.203661899999986],[16.3861197,48.2035856]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Beatrixgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"9654387","geometry":{"type":"LineString","coordinates":[[16.3900984,48.20330169999997],[16.3900271,48.20324679999999],[16.3899071,48.20317860000003]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Salmgasse","oneway":"yes"}},{"type":"Feature","id":"7195300","geometry":{"type":"LineString","coordinates":[[16.390552,48.20155119999998],[16.389753,48.20205120000003]]},"properties":{"highway":"residential","maxspeed":"50","name":"Pfarrhofgasse","oneway":"yes"}},{"type":"Feature","id":"175276331","geometry":{"type":"LineString","coordinates":[[16.389753,48.20205120000003],[16.3892948,48.202336599999995]]},"properties":{"highway":"residential","maxspeed":"50","name":"Pfarrhofgasse"}},{"type":"Feature","id":"175276330","geometry":{"type":"LineString","coordinates":[[16.3885236,48.20248950000001],[16.388671,48.20253070000001],[16.3888414,48.20227929999996]]},"properties":{"highway":"footway","name":"Ida-Pfeiffer-Weg"}},{"type":"Feature","id":"5889608","geometry":{"type":"LineString","coordinates":[[16.3898255,48.200117500000005],[16.3893735,48.20007570000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sebastianplatz","oneway":"yes"}},{"type":"Feature","id":"10214000","geometry":{"type":"LineString","coordinates":[[16.3912819,48.200203200000004],[16.3898255,48.200117500000005]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hintzerstraße","oneway":"yes"}},{"type":"Feature","id":"12618067","geometry":{"type":"LineString","coordinates":[[16.3892759,48.200545799999986],[16.3893735,48.20007570000004]]},"properties":{"highway":"residential","name":"Charasgasse"}},{"type":"Feature","id":"7195171","geometry":{"type":"LineString","coordinates":[[16.388998,48.201560200000046],[16.3891373,48.2012527]]},"properties":{"highway":"residential","maxspeed":"50","name":"Karl-Borromäus-Platz","oneway":"no","wikipedia":"de:Karl Borromäus"}},{"type":"Feature","id":"175277095","geometry":{"type":"LineString","coordinates":[[16.3877296,48.20344349999999],[16.387843,48.2034898],[16.3886407,48.203841100000005]]},"properties":{"foot":"permissive","highway":"footway","name":"Sünnhof-Passage"}},{"type":"Feature","id":"122239504","geometry":{"type":"LineString","coordinates":[[16.3878312,48.2035094],[16.387778,48.20355799999996]]},"properties":{"highway":"footway","name":"Ida-Pfeiffer-Weg","tunnel":"yes","wikipedia":"de:Ida Pfeiffer"}},{"type":"Feature","id":"122239505","geometry":{"type":"LineString","coordinates":[[16.387778,48.20355799999996],[16.387608,48.20369980000001],[16.3876887,48.203738999999985]]},"properties":{"highway":"footway","name":"Ida-Pfeiffer-Weg","wikipedia":"de:Ida Pfeiffer"}},{"type":"Feature","id":"122239509","geometry":{"type":"LineString","coordinates":[[16.38704,48.2031533],[16.3871237,48.203185399999995]]},"properties":{"foot":"permissive","highway":"footway","name":"Sünnhof-Passage","tunnel":"yes"}},{"type":"Feature","id":"122239511","geometry":{"type":"LineString","coordinates":[[16.3871237,48.203185399999995],[16.3876735,48.2034208]]},"properties":{"foot":"permissive","highway":"footway","name":"Sünnhof-Passage"}},{"type":"Feature","id":"13435942","geometry":{"type":"LineString","coordinates":[[16.3904636,48.2025903],[16.3903529,48.20250630000001],[16.389753,48.20205120000003],[16.3890818,48.201578600000005],[16.388998,48.201560200000046],[16.3874864,48.2012833],[16.387389,48.201265500000005]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Sechskrügelgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"5889594","geometry":{"type":"LineString","coordinates":[[16.3874611,48.19988900000001],[16.3873746,48.19988910000001],[16.3871631,48.19988949999998],[16.3868541,48.199890400000015],[16.3859323,48.19988699999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Posthorngasse","oneway":"yes","oneway:bicycle":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5889611","geometry":{"type":"LineString","coordinates":[[16.3868218,48.200546],[16.3867865,48.20059240000003],[16.3858866,48.2005757]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krummgasse","oneway":"yes","oneway:bicycle":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5889567","geometry":{"type":"LineString","coordinates":[[16.3868541,48.199890400000015],[16.3868218,48.200546]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krummgasse","oneway":"yes","oneway:bicycle":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"6791754","geometry":{"type":"LineString","coordinates":[[16.3858719,48.200885700000015],[16.3858866,48.2005757]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tongasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"33180762","geometry":{"type":"LineString","coordinates":[[16.3867865,48.20059240000003],[16.3867614,48.200941900000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krummgasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"7195044","geometry":{"type":"LineString","coordinates":[[16.387419,48.20091500000001],[16.3875274,48.200936299999995],[16.3891373,48.2012527],[16.3905146,48.20154200000002],[16.390552,48.20155119999998],[16.3914421,48.20173189999997],[16.3915884,48.20175470000001]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Rochusgasse","oneway":"yes"}},{"type":"Feature","id":"175207089","geometry":{"type":"LineString","coordinates":[[16.3873987,48.19906270000004],[16.3875193,48.199064899999996],[16.3878611,48.19906660000001],[16.3881607,48.19906800000001],[16.3891279,48.199084200000016],[16.3895691,48.1990916],[16.3898245,48.1990959],[16.3900182,48.19910909999999],[16.3915801,48.19918989999999],[16.3916479,48.19919300000001],[16.3917847,48.199200700000006],[16.3920308,48.19921389999999],[16.3927394,48.19925180000001],[16.3929898,48.19929160000001],[16.3932401,48.19935860000001],[16.3933464,48.199387099999996]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"50","name":"Neulinggasse","source":"Bing","surface":"asphalt"}},{"type":"Feature","id":"5889610","geometry":{"type":"LineString","coordinates":[[16.3900182,48.19910909999999],[16.3899175,48.19961280000001],[16.3898777,48.19979729999997],[16.3898255,48.200117500000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sebastianplatz","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5889566","geometry":{"type":"LineString","coordinates":[[16.3893735,48.20007570000004],[16.3894723,48.199579400000005],[16.3895691,48.1990916]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sebastianplatz","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"10144034","geometry":{"type":"LineString","coordinates":[[16.389663,48.19716059999999],[16.3896599,48.196630400000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ottogasse","oneway":"yes"}},{"type":"Feature","id":"5889586","geometry":{"type":"LineString","coordinates":[[16.388187,48.19807829999999],[16.3881632,48.19897359999999],[16.3881607,48.19906800000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Engelsberggasse","oneway":"yes","surface":"asphalt","wikipedia":"de:Eduard Schön"}},{"type":"Feature","id":"5889589","geometry":{"type":"LineString","coordinates":[[16.3891279,48.199084200000016],[16.3891573,48.1981332]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Riesgasse","oneway":"yes","surface":"asphalt","wikipedia":"de:Ferdinand Ries"}},{"type":"Feature","id":"5889568","geometry":{"type":"LineString","coordinates":[[16.3900658,48.19818470000001],[16.3898812,48.19888180000001],[16.3898245,48.1990959]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dannebergplatz","oneway":"yes","surface":"asphalt","wikipedia":"de:Dannebergplatz"}},{"type":"Feature","id":"21601088","geometry":{"type":"LineString","coordinates":[[16.3896599,48.196630400000004],[16.3896523,48.196501600000005],[16.3896577,48.196427400000005],[16.3896903,48.19637260000002],[16.3897663,48.1963437],[16.3898334,48.1963246],[16.3898986,48.19632089999999],[16.3899893,48.19632899999999],[16.3900537,48.1963667],[16.3901499,48.19662930000001]]},"properties":{"emergency":"yes","foot":"yes","highway":"service","name":"Rettungszufahrt","service":"driveway","vehicle":"no"}},{"type":"Feature","id":"5889613","geometry":{"type":"LineString","coordinates":[[16.3872856,48.198075500000016],[16.3873933,48.198070900000005],[16.3877708,48.1980547],[16.388187,48.19807829999999],[16.3891573,48.1981332],[16.3900658,48.19818470000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Dapontegasse","oneway":"yes","wikipedia":"de:Lorenzo da Ponte"}},{"type":"Feature","id":"4789258","geometry":{"type":"LineString","coordinates":[[16.3951524,48.197827099999984],[16.3950156,48.1977933],[16.3936913,48.19746570000001],[16.3924518,48.1971618],[16.3908468,48.197166400000015],[16.389663,48.19716059999999],[16.3896314,48.19716110000002],[16.3872664,48.197196599999984],[16.3871509,48.1971983]]},"properties":{"highway":"residential","maxspeed":"30","name":"Barichgasse","oneway":"yes","wikipedia":"de:Michael von Barich"}},{"type":"Feature","id":"34910071","geometry":{"type":"LineString","coordinates":[[16.3869766,48.19664589999999],[16.3867779,48.196121800000014],[16.3867304,48.19599449999998],[16.3867072,48.1959191],[16.3866814,48.195834899999994],[16.3866642,48.195773599999995],[16.386653,48.19572449999998],[16.3866426,48.195678799999996],[16.386613,48.19549889999999],[16.3865891,48.195348300000006],[16.3865477,48.195073200000024]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Ungargasse","source":"yahoo"}},{"type":"Feature","id":"8677651","geometry":{"type":"LineString","coordinates":[[16.3869766,48.19664589999999],[16.3871031,48.196645200000006],[16.3888991,48.19663480000003],[16.3893369,48.19663230000003],[16.3896599,48.196630400000004],[16.3901499,48.19662930000001],[16.390331,48.19662890000001],[16.3908462,48.19662769999999],[16.3909106,48.19662840000001],[16.390968,48.196628199999964],[16.3914765,48.1966195],[16.3923304,48.196610899999996],[16.3932488,48.1966429],[16.394042,48.19667870000001],[16.3948578,48.19672370000001],[16.3955502,48.1967669],[16.3957316,48.196774300000016],[16.3958695,48.19678450000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Juchgasse","oneway":"yes"}},{"type":"Feature","id":"383629038","geometry":{"type":"LineString","coordinates":[[16.3859624,48.1990888],[16.3870566,48.19906159999999],[16.3872779,48.19906120000002],[16.3873987,48.19906270000004]]},"properties":{"busway":"opposite_lane","cycleway":"opposite_share_busway","highway":"residential","lcn":"yes","maxspeed":"50","name":"Neulinggasse","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","psv":"opposite_lane","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"5889612","geometry":{"type":"LineString","coordinates":[[16.3858866,48.2005757],[16.3859323,48.19988699999999],[16.3859646,48.19924639999999],[16.3859631,48.1991395],[16.3859624,48.1990888]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tongasse","oneway":"yes","oneway:bicycle":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"29082181","geometry":{"type":"LineString","coordinates":[[16.3857313,48.19741269999997],[16.3857655,48.197280500000005],[16.3857857,48.1972025],[16.3858048,48.19713139999999],[16.3858957,48.19679240000002],[16.385963,48.19654159999996],[16.3861126,48.19598389999999],[16.3861447,48.19590869999999],[16.3861882,48.1958769],[16.3862637,48.19584979999999],[16.3864103,48.195839199999995],[16.3865669,48.1958362],[16.3866814,48.195834899999994]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Linke Bahngasse","oneway":"yes"}},{"type":"Feature","id":"318007484","geometry":{"type":"LineString","coordinates":[[16.3856033,48.20576679999999],[16.3855276,48.20578920000003],[16.3854538,48.20581099999998]]},"properties":{"cycleway:left":"lane","highway":"secondary","maxspeed":"50","name":"Landstraßer Hauptstraße","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"231535509","geometry":{"type":"LineString","coordinates":[[16.3866049,48.207407399999994],[16.386524,48.20732799999996],[16.3863491,48.20705939999999],[16.3862017,48.20686739999999],[16.38619,48.206850599999996],[16.3861659,48.2068161],[16.3858669,48.206326700000005],[16.3857675,48.206245300000006],[16.3856701,48.20613470000001],[16.3855188,48.20591640000001],[16.3854538,48.20581099999998]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Invalidenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"231535515","geometry":{"type":"LineString","coordinates":[[16.3856033,48.20576679999999],[16.3856741,48.20587739999999],[16.3856933,48.20590849999999],[16.3863241,48.206822500000015],[16.3865053,48.2070631],[16.3865754,48.20716809999999],[16.3866514,48.207285600000034],[16.3866049,48.207407399999994]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Invalidenstraße","oneway":"yes"}},{"type":"Feature","id":"493705230","geometry":{"type":"LineString","coordinates":[[16.3845868,48.2059338],[16.3845617,48.205897100000016]]},"properties":{"highway":"footway","indoor":"yes","level":"0","name":"W3"}},{"type":"Feature","id":"493689929","geometry":{"type":"LineString","coordinates":[[16.3843313,48.205568700000015],[16.3843958,48.20554770000001]]},"properties":{"highway":"footway","indoor":"yes","level":"0","name":"W3"}},{"type":"Feature","id":"312387421","geometry":{"type":"LineString","coordinates":[[16.3845617,48.205897100000016],[16.3845063,48.2058715],[16.3844352,48.205776199999974]]},"properties":{"highway":"footway","indoor":"yes","level":"0","name":"W3"}},{"type":"Feature","id":"312729490","geometry":{"type":"LineString","coordinates":[[16.3844352,48.205776199999974],[16.3843313,48.205568700000015],[16.3842783,48.20558599999998]]},"properties":{"highway":"footway","indoor":"yes","level":"0","name":"W3"}},{"type":"Feature","id":"28180450","geometry":{"type":"LineString","coordinates":[[16.3842279,48.20618009999998],[16.3846684,48.206050800000014],[16.3853554,48.20583859999999],[16.3854538,48.20581099999998]]},"properties":{"bicycle":"yes","bus":"yes","highway":"pedestrian","lit":"yes","maxspeed":"50","motor_vehicle":"no","name":"Landstraßer Hauptstraße"}},{"type":"Feature","id":"31401407","geometry":{"type":"LineString","coordinates":[[16.3904636,48.2025903],[16.3904004,48.20265469999998],[16.390182,48.20287769999999],[16.389955,48.203127499999994],[16.3899071,48.20317860000003],[16.3898543,48.203226400000005],[16.3892993,48.20369339999999],[16.3889481,48.20397099999997],[16.3888094,48.20409699999999],[16.3887674,48.204135200000024],[16.3886713,48.20422260000001],[16.3885996,48.2042773],[16.3882939,48.20451589999996],[16.3875464,48.2050141],[16.3874845,48.20505560000001],[16.387378,48.20510949999999],[16.3869777,48.205312100000015],[16.3868661,48.205356300000005],[16.3863549,48.20554200000001],[16.3856547,48.20575229999997],[16.3856033,48.20576679999999]]},"properties":{"cycleway:left":"lane","highway":"secondary","maxspeed":"50","name":"Landstraßer Hauptstraße","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"497878745","geometry":{"type":"LineString","coordinates":[[16.3855336,48.197168000000005],[16.3857149,48.1971939]]},"properties":{"bridge":"yes","highway":"footway","layer":"1","name":"Reitschulsteg"}},{"type":"Feature","id":"5889561","geometry":{"type":"LineString","coordinates":[[16.3854936,48.198331199999956],[16.3856296,48.1978058],[16.3857313,48.19741269999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Linke Bahngasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5889588","geometry":{"type":"LineString","coordinates":[[16.3856296,48.1978058],[16.3871381,48.19772529999997],[16.387242,48.197719800000016]]},"properties":{"cycleway:left":"opposite_lane","highway":"residential","maxspeed":"30","name":"Streichergasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"5889575","geometry":{"type":"LineString","coordinates":[[16.3873047,48.198248199999995],[16.3871985,48.19825309999999],[16.3854936,48.198331199999956]]},"properties":{"cycleway:left":"opposite_lane","highway":"residential","maxspeed":"30","name":"Strohgasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"5889616","geometry":{"type":"LineString","coordinates":[[16.3858162,48.19532619999998],[16.3856432,48.19621000000001],[16.3854554,48.197169599999995],[16.3854235,48.197217499999965]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rechte Bahngasse"}},{"type":"Feature","id":"231535522","geometry":{"type":"LineString","coordinates":[[16.3845863,48.204409700000014],[16.3845991,48.2044329],[16.3846414,48.20451009999999],[16.3847714,48.2046957],[16.3848669,48.20482100000001],[16.3849993,48.20498789999999],[16.3852929,48.205357899999996],[16.385529,48.205663500000014],[16.3856033,48.20576679999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Invalidenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"231535511","geometry":{"type":"LineString","coordinates":[[16.3854538,48.20581099999998],[16.3853591,48.20571339999998],[16.385133,48.20538770000002],[16.3849076,48.205062999999996],[16.3848742,48.205016099999995],[16.384825,48.20495319999998],[16.384768,48.20488040000001],[16.3846748,48.20476120000001]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Invalidenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"497922603","geometry":{"type":"LineString","coordinates":[[16.3850357,48.199160199999966],[16.3851718,48.19915129999998]]},"properties":{"bridge":"yes","highway":"residential","layer":"1","lcn":"yes","maxspeed":"50","name":"Neulingbrücke","note":"Seit November 2015 nicht mehr Einbahn zwischen Rechter Bahngasse & Tongasse","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"13429883","geometry":{"type":"LineString","coordinates":[[16.3849187,48.19916749999999],[16.3850357,48.199160199999966]]},"properties":{"highway":"residential","layer":"1","lcn":"yes","maxspeed":"50","name":"Neulinggasse","note":"Seit November 2015 nicht mehr Einbahn zwischen Rechter Bahngasse & Tongasse","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"378750518","geometry":{"type":"LineString","coordinates":[[16.3845863,48.204409700000014],[16.3846118,48.20437609999999],[16.3846395,48.204349699999995],[16.384886,48.204181300000016]]},"properties":{"highway":"secondary","lanes":"3","lanes:backward":"2","lanes:forward":"1","maxspeed":"50","name":"Ungargasse","source":"yahoo","surface":"asphalt","turn:lanes:backward":"slight_left|right"}},{"type":"Feature","id":"13430264","geometry":{"type":"LineString","coordinates":[[16.3849187,48.19916749999999],[16.3849655,48.19910659999999],[16.3850705,48.19873559999999],[16.3851183,48.1985473],[16.3851894,48.198367099999984]]},"properties":{"foot":"yes","highway":"cycleway","name":"Rechte Bahngasse","segregated":"no","source":"yahoo"}},{"type":"Feature","id":"219446600","geometry":{"type":"LineString","coordinates":[[16.384886,48.204181300000016],[16.3851704,48.20400319999999],[16.3854616,48.20381200000003],[16.3856069,48.20374240000001],[16.3860073,48.20361999999997],[16.3861197,48.2035856],[16.3862337,48.20355329999998],[16.3864352,48.20349429999999],[16.3865293,48.2034548],[16.3866381,48.203391899999986],[16.3867477,48.20330440000001],[16.3868644,48.203185399999995],[16.3869234,48.203109400000045],[16.3870007,48.203001700000016],[16.3870681,48.20288119999998],[16.3871561,48.20268870000001],[16.3872274,48.20247410000002],[16.387264,48.2023274],[16.3872905,48.202174000000014],[16.3873037,48.202056999999996],[16.3873248,48.201870299999996],[16.3873506,48.201651500000025],[16.3873693,48.201456699999994],[16.3873788,48.20136579999999],[16.387389,48.201265500000005],[16.387419,48.20091500000001],[16.3874401,48.20064049999999],[16.3874503,48.20041710000001],[16.3874683,48.200131999999996],[16.3874611,48.19988900000001],[16.3874401,48.199512800000036],[16.3874281,48.19932489999999],[16.3874055,48.1991328],[16.3873987,48.19906270000004],[16.3873926,48.198990500000036],[16.3873047,48.198248199999995],[16.3872856,48.198075500000016],[16.387242,48.197719800000016],[16.387221,48.19752549999998],[16.3871843,48.19732719999999],[16.3871674,48.19726190000003],[16.3871509,48.1971983],[16.3869766,48.19664589999999]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Ungargasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"13432476","geometry":{"type":"LineString","coordinates":[[16.3854235,48.197217499999965],[16.3854696,48.19726079999998],[16.3854827,48.19731060000001],[16.3851894,48.198367099999984]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Rechte Bahngasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5889557","geometry":{"type":"LineString","coordinates":[[16.3852899,48.19914410000001],[16.3854936,48.198331199999956]]},"properties":{"highway":"residential","maxspeed":"30","name":"Linke Bahngasse","surface":"asphalt"}},{"type":"Feature","id":"10213917","geometry":{"type":"LineString","coordinates":[[16.3852899,48.19914410000001],[16.3857013,48.19911139999999],[16.3859624,48.1990888]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"50","name":"Neulinggasse","note":"Seit November 2015 nicht mehr Einbahn zwischen Rechter Bahngasse & Tongasse","oneway":"no","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"497922605","geometry":{"type":"LineString","coordinates":[[16.3851718,48.19915129999998],[16.3852899,48.19914410000001]]},"properties":{"highway":"residential","layer":"1","lcn":"yes","maxspeed":"50","name":"Neulinggasse","note":"Seit November 2015 nicht mehr Einbahn zwischen Rechter Bahngasse & Tongasse","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"5889596","geometry":{"type":"LineString","coordinates":[[16.384486,48.2044042],[16.3845655,48.204408599999994],[16.3845863,48.204409700000014]]},"properties":{"highway":"secondary","lanes":"3","lanes:backward":"1","lanes:forward":"2","maxspeed":"50","name":"Ungargasse","source":"yahoo","turn:lanes:forward":"left|slight_right"}},{"type":"Feature","id":"13430504","geometry":{"type":"LineString","coordinates":[[16.3843064,48.20446559999999],[16.384243,48.204454200000015],[16.3841701,48.204449100000005]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"378750514","geometry":{"type":"LineString","coordinates":[[16.384486,48.2044042],[16.3843064,48.20446559999999]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes"}},{"type":"Feature","id":"8739416","geometry":{"type":"LineString","coordinates":[[16.3846748,48.20476120000001],[16.3845048,48.2045894],[16.3844794,48.20456380000002],[16.3844245,48.20451750000004],[16.3843695,48.20448540000004],[16.3843064,48.20446559999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Invalidenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"13430538","geometry":{"type":"LineString","coordinates":[[16.3841501,48.20435549999999],[16.3842618,48.204289500000044],[16.3842919,48.204253299999976],[16.3843066,48.20420560000002],[16.3841944,48.20405379999997],[16.3841953,48.20347989999999],[16.3842031,48.203404199999966]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Linke Bahngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13430076","geometry":{"type":"LineString","coordinates":[[16.3842031,48.203404199999966],[16.3842548,48.2034137],[16.3852886,48.20360410000001],[16.3855449,48.20371549999996],[16.3856069,48.20374240000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Münzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"299346578","geometry":{"type":"LineString","coordinates":[[16.384486,48.2044042],[16.3844145,48.20431120000001],[16.3843066,48.20420560000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Linke Bahngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"227682735","geometry":{"type":"LineString","coordinates":[[16.3841501,48.20435549999999],[16.3842204,48.2043578],[16.3842759,48.20436089999998],[16.3843392,48.20437229999999],[16.384486,48.2044042]]},"properties":{"highway":"secondary","lanes":"2","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"left|slight_right"}},{"type":"Feature","id":"13430001","geometry":{"type":"LineString","coordinates":[[16.3852899,48.19914410000001],[16.3852724,48.1992094],[16.385174,48.1995766],[16.3848547,48.20078799999999],[16.3846705,48.2014786],[16.3846445,48.2015638],[16.3845927,48.20182209999999],[16.3845399,48.20199969999999],[16.3845314,48.20203500000002]]},"properties":{"highway":"footway","name":"Linke Bahngasse","view":"open"}},{"type":"Feature","id":"8080558","geometry":{"type":"LineString","coordinates":[[16.3843656,48.202808300000015],[16.3854311,48.203201200000024],[16.385938,48.20346000000001],[16.3860545,48.2035405],[16.3861197,48.2035856]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Beatrixgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"13430324","geometry":{"type":"LineString","coordinates":[[16.3845314,48.20203500000002],[16.3843518,48.20273480000003],[16.3843656,48.202808300000015]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Anton-von-Webern-Platz","noexit":"yes","source:maxspeed":"AT:zone:30","wikipedia":"de:Anton Webern"}},{"type":"Feature","id":"13430109","geometry":{"type":"LineString","coordinates":[[16.3842031,48.203404199999966],[16.3843656,48.202808300000015]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Linke Bahngasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29075876","geometry":{"type":"LineString","coordinates":[[16.3843656,48.202808300000015],[16.3842777,48.20277360000006]]},"properties":{"highway":"residential","layer":"1","maxspeed":"30","name":"Beatrixgasse","oneway":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"308095208","geometry":{"type":"LineString","coordinates":[[16.3832641,48.2201144],[16.383011,48.22016420000003],[16.3824846,48.220267800000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"158798828","geometry":{"type":"LineString","coordinates":[[16.3832641,48.2201144],[16.3838252,48.221391600000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Vereinsgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8052767","geometry":{"type":"LineString","coordinates":[[16.3824846,48.220267800000016],[16.3828914,48.22123490000004],[16.383112,48.22176480000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Josefinengasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"158798827","geometry":{"type":"LineString","coordinates":[[16.3823035,48.222190100000006],[16.3824042,48.2221385],[16.3824112,48.22213510000003],[16.383112,48.22176480000002],[16.3838252,48.221391600000004],[16.384682,48.220944299999985],[16.3853005,48.220616000000035],[16.3857424,48.220387200000005],[16.3859204,48.22029509999999],[16.3860709,48.22021649999999],[16.3870039,48.219729299999955],[16.3872336,48.21961640000001]]},"properties":{"highway":"service","maxspeed":"50","name":"Heinestraße","old_name":"Augartenallee","old_name:1938-1945":"Schönererstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"162223971","geometry":{"type":"LineString","coordinates":[[16.3849392,48.2197846],[16.3842249,48.219925200000006],[16.3832641,48.2201144]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"158798826","geometry":{"type":"LineString","coordinates":[[16.3884532,48.219226899999995],[16.387363,48.2198113],[16.3862909,48.22036990000004],[16.3860681,48.220485999999994],[16.3859495,48.220545500000014],[16.3858395,48.22060060000001],[16.3847816,48.22116599999998],[16.3839215,48.22161360000001],[16.382683,48.22225880000002],[16.3825074,48.22222679999999]]},"properties":{"highway":"service","maxspeed":"50","name":"Heinestraße","old_name":"Augartenallee","old_name:1938-1945":"Schönererstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"207499619","geometry":{"type":"LineString","coordinates":[[16.3819693,48.219558000000006],[16.3820997,48.21952870000004],[16.3825432,48.21942920000001],[16.3825812,48.2194207]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Novaragasse"}},{"type":"Feature","id":"8024485","geometry":{"type":"LineString","coordinates":[[16.3812114,48.219728],[16.3812853,48.219711399999994],[16.3819693,48.219558000000006]]},"properties":{"highway":"residential","maxspeed":"50","name":"Novaragasse"}},{"type":"Feature","id":"230482329","geometry":{"type":"LineString","coordinates":[[16.3811988,48.2197032],[16.3812114,48.219728],[16.3813478,48.220012699999984]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"220526231","geometry":{"type":"LineString","coordinates":[[16.3813478,48.220012699999984],[16.3814471,48.220222199999995]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"308095207","geometry":{"type":"LineString","coordinates":[[16.381547,48.2204524],[16.381628,48.220436500000005],[16.3824846,48.220267800000016]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"217575562","geometry":{"type":"LineString","coordinates":[[16.3814471,48.220222199999995],[16.381547,48.2204524],[16.3819634,48.221405300000015],[16.3820673,48.22163699999999],[16.3821667,48.22186540000001],[16.382241,48.22204070000001],[16.3822793,48.22212759999999],[16.3823035,48.222190100000006]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"473313096","geometry":{"type":"LineString","coordinates":[[16.3821961,48.2222007],[16.3820669,48.22188879999999],[16.3817655,48.22116080000001],[16.3814585,48.22047120000002],[16.3812318,48.2199813],[16.3807871,48.219184799999994]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"473313097","geometry":{"type":"LineString","coordinates":[[16.3823596,48.22205470000003],[16.3823312,48.22199089999998],[16.3821133,48.2214745],[16.3820565,48.22138819999998],[16.381628,48.220436500000005],[16.3812853,48.219711399999994],[16.3809926,48.21912309999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"28097557","geometry":{"type":"LineString","coordinates":[[16.3825812,48.2194207],[16.3843912,48.21901389999999],[16.3846303,48.2189597],[16.3851998,48.218835799999994],[16.3854258,48.218787099999986],[16.3863827,48.218577100000005],[16.38651,48.21854909999999],[16.386604,48.2185293],[16.387621,48.2182976],[16.3877236,48.21827410000003],[16.3893155,48.217785900000024],[16.3896491,48.2176752],[16.3897187,48.21761630000003],[16.3897462,48.21755780000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Novaragasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"44453559","geometry":{"type":"LineString","coordinates":[[16.3841036,48.217991299999994],[16.3842228,48.217963199999986]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Odeongasse","note":"Fahrverbot ausgen. Fahrrad","vehicle":"no"}},{"type":"Feature","id":"23312414","geometry":{"type":"LineString","coordinates":[[16.3836729,48.21809779999998],[16.3841036,48.217991299999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Odeongasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"493432605","geometry":{"type":"LineString","coordinates":[[16.3836729,48.21809779999998],[16.3839308,48.21853110000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Mohrengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024487","geometry":{"type":"LineString","coordinates":[[16.3833023,48.217539199999976],[16.3836729,48.21809779999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Mohrengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"33836512","geometry":{"type":"LineString","coordinates":[[16.3837409,48.215824699999985],[16.3839075,48.21593189999999],[16.3843418,48.216273900000004],[16.3849937,48.21684749999997],[16.3850413,48.216889400000014],[16.3850976,48.21694850000003],[16.3857209,48.2175896],[16.3860974,48.218018700000016],[16.3861252,48.21809409999997]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","foot":"yes","highway":"residential","maxspeed":"30","name":"Zirkusgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024274","geometry":{"type":"LineString","coordinates":[[16.3837409,48.215824699999985],[16.3837243,48.215874299999996],[16.3836675,48.2159116],[16.3833559,48.21592369999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schmelzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29275428","geometry":{"type":"LineString","coordinates":[[16.3823598,48.215865699999995],[16.3824658,48.21601609999999],[16.3826497,48.216295599999995],[16.3830345,48.21704299999999],[16.3833023,48.217539199999976]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Mohrengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"159481880","geometry":{"type":"LineString","coordinates":[[16.3827105,48.215884700000004],[16.3826558,48.21588349999996],[16.3823598,48.215865699999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Johannes-von-Gott-Platz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"8024497","geometry":{"type":"LineString","coordinates":[[16.3844596,48.21711909999999],[16.3841012,48.2167096],[16.3833559,48.21592369999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kleine Mohrengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"30285626","geometry":{"type":"LineString","coordinates":[[16.3833559,48.21592369999996],[16.3827105,48.215884700000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schmelzgasse","oneway":"yes","source:maxspeed":"AT:zone:30","source:name":"IRC conversation (see pedestrian area to North)","surface":"asphalt"}},{"type":"Feature","id":"8024535","geometry":{"type":"LineString","coordinates":[[16.380908,48.21896319999999],[16.3809188,48.2190823],[16.3809388,48.219137200000034],[16.3811122,48.21948250000003],[16.3811329,48.2195241],[16.3811988,48.2197032]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"8024483","geometry":{"type":"LineString","coordinates":[[16.3861252,48.21809409999997],[16.3839308,48.21853110000001],[16.3822721,48.21885889999999],[16.380986,48.218959100000006],[16.380908,48.21896319999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Blumauergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"354850557","geometry":{"type":"LineString","coordinates":[[16.3808031,48.21828860000002],[16.3808788,48.218419299999965],[16.3809039,48.21850599999996],[16.3809041,48.218658300000016],[16.3809066,48.218773899999974],[16.380909,48.218882399999984],[16.3809087,48.21892820000002],[16.380908,48.21896319999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"23312531","geometry":{"type":"LineString","coordinates":[[16.3808067,48.21796810000001],[16.3809161,48.21797090000004],[16.3809527,48.21797190000001],[16.3817326,48.21782239999999],[16.3819496,48.21778309999999],[16.3833023,48.217539199999976],[16.3835866,48.21746060000004],[16.3844596,48.21711909999999],[16.3849538,48.216927],[16.3850413,48.216889400000014],[16.3851218,48.21685819999999],[16.3856064,48.21667040000003],[16.3857517,48.216614100000015]]},"properties":{"cycleway":"opposite_track","highway":"residential","maxspeed":"30","name":"Rotensterngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"364145512","geometry":{"type":"LineString","coordinates":[[16.3809041,48.217131499999994],[16.3809021,48.216983400000004],[16.3808854,48.21669940000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"364145511","geometry":{"type":"LineString","coordinates":[[16.3809021,48.216983400000004],[16.3809873,48.21696930000002],[16.3810302,48.2170658],[16.3810633,48.21710089999999]]},"properties":{"highway":"footway","name":"Lancplatz","source":"wien.gv.at-labels"}},{"type":"Feature","id":"473317373","geometry":{"type":"LineString","coordinates":[[16.3809499,48.218881100000004],[16.3809384,48.218506899999994],[16.3809304,48.21822280000001],[16.3809161,48.21797090000004],[16.380899,48.21755139999999],[16.3809041,48.217131499999994]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"8024501","geometry":{"type":"LineString","coordinates":[[16.3814873,48.21746189999999],[16.380899,48.21755139999999],[16.3808013,48.21756629999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hafnergasse","oneway":"yes","place_numbers":"1-5","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"30285661","geometry":{"type":"LineString","coordinates":[[16.3808067,48.21796810000001],[16.3808143,48.2180826],[16.3808108,48.21816749999999],[16.3808031,48.21828860000002]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"5144350","geometry":{"type":"LineString","coordinates":[[16.380908,48.21896319999999],[16.3807805,48.21900099999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Obere Augartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"230482326","geometry":{"type":"LineString","coordinates":[[16.3811988,48.2197032],[16.3810998,48.21962730000004],[16.381024,48.219536300000016],[16.3808993,48.219311800000014],[16.3808453,48.21920639999999],[16.3808268,48.2191703],[16.3808016,48.21909629999999],[16.3807859,48.219029999999975],[16.3807805,48.21900099999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"30285659","geometry":{"type":"LineString","coordinates":[[16.3806496,48.21629999999999],[16.3807395,48.2165445],[16.380765,48.21664409999997],[16.3807877,48.21681649999999],[16.380803,48.21703560000003],[16.3808074,48.21721360000001],[16.3808013,48.21756629999999],[16.3808067,48.21796810000001]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"8024500","geometry":{"type":"LineString","coordinates":[[16.3806496,48.21629999999999],[16.3808966,48.21661020000002],[16.3809492,48.21668439999999],[16.3812233,48.217071000000004],[16.3812606,48.21712619999997],[16.3814873,48.21746189999999],[16.3817326,48.21782239999999],[16.3822721,48.21885889999999],[16.3825812,48.2194207],[16.3827181,48.219693800000016],[16.383011,48.22016420000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Glockengasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"230482328","geometry":{"type":"LineString","coordinates":[[16.3807805,48.21900099999999],[16.3807767,48.21888369999999],[16.3807676,48.218630899999994],[16.3807692,48.2184934]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"356983133","geometry":{"type":"LineString","coordinates":[[16.3808031,48.21828860000002],[16.3807974,48.21832280000001],[16.3807692,48.2184934]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"425297956","geometry":{"type":"LineString","coordinates":[[16.3842563,48.214696300000014],[16.3842044,48.21472879999999],[16.3841673,48.214752000000004],[16.3841023,48.21485229999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schrottgießergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5144257","geometry":{"type":"LineString","coordinates":[[16.3840221,48.21497790000001],[16.3841656,48.21502269999999],[16.3843264,48.215072900000024],[16.3845063,48.21528829999997],[16.3846006,48.2154012],[16.3855689,48.2164229],[16.3857147,48.21657540000001],[16.3857517,48.216614100000015],[16.3858092,48.216667],[16.3858725,48.2167317],[16.385968,48.21682920000001],[16.386001,48.21684749999997],[16.3861808,48.2169475],[16.3863488,48.21704079999998],[16.3866042,48.21723259999999],[16.3871799,48.2176547],[16.3873562,48.217811600000005],[16.3877236,48.21827410000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Weintraubengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9797746","geometry":{"type":"LineString","coordinates":[[16.3914109,48.21362850000003],[16.3913335,48.213641800000005],[16.3908447,48.213734699999975],[16.3903565,48.21381489999999],[16.3897726,48.2139095],[16.3895418,48.21393119999999],[16.3891884,48.21393699999996],[16.3887375,48.21392740000002],[16.3884545,48.2138942],[16.3879828,48.21383759999998],[16.3878098,48.21380669999999],[16.3877318,48.21378060000001],[16.3876159,48.2137419],[16.3875724,48.21372740000001],[16.3874985,48.21369730000001],[16.3873596,48.21364080000001],[16.3868904,48.21344980000001],[16.3859669,48.21307250000001],[16.385279,48.21284209999999],[16.3848048,48.21272010000001],[16.3845259,48.2126643],[16.3840852,48.21257610000001]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Untere Donaustraße","oneway":"yes","ref":"B227","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8093470","geometry":{"type":"LineString","coordinates":[[16.3830065,48.21310919999999],[16.3831118,48.21312630000003],[16.3842277,48.21328669999997],[16.3846748,48.21335099999999],[16.3850704,48.213415699999985],[16.3857613,48.21352780000001],[16.3874719,48.213818100000026]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Ferdinandstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"159492108","geometry":{"type":"LineString","coordinates":[[16.3838521,48.21471079999998],[16.3831736,48.214911900000004]]},"properties":{"highway":"pedestrian","name":"Komödiengasse"}},{"type":"Feature","id":"200689828","geometry":{"type":"LineString","coordinates":[[16.3841023,48.21485229999999],[16.3840221,48.21497790000001],[16.3837945,48.215328699999986],[16.3837269,48.21539499999997],[16.3836617,48.21543580000002],[16.3835243,48.215521799999976]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schrottgießergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9867254","geometry":{"type":"LineString","coordinates":[[16.3835243,48.215521799999976],[16.3837409,48.215824699999985]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zirkusgasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"157533725","geometry":{"type":"LineString","coordinates":[[16.3833025,48.21245830000001],[16.3831485,48.2124403]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Untere Donaustraße","oneway":"yes","ref":"B227","turn:lanes":"left;through|through|through|right"}},{"type":"Feature","id":"204274838","geometry":{"type":"LineString","coordinates":[[16.3830065,48.21310919999999],[16.3830367,48.2130009],[16.3831278,48.212623899999954],[16.3831423,48.212502700000016],[16.3831485,48.2124403]]},"properties":{"highway":"secondary","is_in":"Wien","lanes":"5","lanes:backward":"2","lanes:forward":"3","lit":"yes","maxspeed":"50","name":"Aspernbrückengasse","turn:lanes:forward":"through|through|right"}},{"type":"Feature","id":"157533724","geometry":{"type":"LineString","coordinates":[[16.3834836,48.212481499999996],[16.3833025,48.21245830000001]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Untere Donaustraße","oneway":"yes","ref":"B227","surface":"asphalt","turn:lanes":"left;through|through|through|right"}},{"type":"Feature","id":"230626524","geometry":{"type":"LineString","coordinates":[[16.3840852,48.21257610000001],[16.3834836,48.212481499999996]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Untere Donaustraße","oneway":"yes","ref":"B227","source:maxspeed":"AT:urban","surface":"asphalt","turn:lanes":"left;through|through|through|right"}},{"type":"Feature","id":"9284167","geometry":{"type":"LineString","coordinates":[[16.3831488,48.212334],[16.3830269,48.211924100000005]]},"properties":{"bicycle":"use_sidepath","bridge":"yes","description":"Erected 1951, Length 89 meter.","highway":"secondary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Aspernbrücke","turn:lanes:backward":"left|left|through|through","turn:lanes:forward":"none|none"}},{"type":"Feature","id":"25702234","geometry":{"type":"LineString","coordinates":[[16.3898735,48.21365509999998],[16.3894188,48.21366629999997],[16.3889744,48.213664499999965],[16.388587,48.21363809999997],[16.3885165,48.2136333],[16.3880518,48.21357309999999],[16.3877035,48.21350069999997],[16.3874899,48.21345629999999],[16.3869846,48.213316099999986],[16.3866724,48.2132129],[16.3855615,48.21278050000004],[16.385149,48.21264980000001],[16.3848134,48.212538600000016],[16.3843,48.21240990000001],[16.3838737,48.212341400000014],[16.3836533,48.21230600000001],[16.383445,48.21231349999999],[16.3831694,48.21228819999999]]},"properties":{"bicycle":"yes","foot":"yes","highway":"path","layer":"-1","motor_vehicle":"private","name":"Praterufer","segregated":"no","source:surface":"survey","surface":"asphalt"}},{"type":"Feature","id":"8105276","geometry":{"type":"LineString","coordinates":[[16.3831485,48.2124403],[16.3831488,48.212334]]},"properties":{"highway":"secondary","lanes":"4","lanes:backward":"2","lanes:forward":"2","lit":"yes","maxspeed":"50","name":"Aspernbrücke","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"9867424","geometry":{"type":"LineString","coordinates":[[16.3831736,48.214911900000004],[16.3822306,48.21530490000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Komödiengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"509806352","geometry":{"type":"LineString","coordinates":[[16.3822306,48.21530490000001],[16.3822891,48.21565849999999],[16.3823598,48.215865699999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Mohrengasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"204274839","geometry":{"type":"LineString","coordinates":[[16.3825801,48.21304000000001],[16.3823017,48.21299930000001],[16.3813801,48.2128721],[16.3812657,48.21287380000001],[16.381136,48.21300489999999]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Ferdinandstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024369","geometry":{"type":"LineString","coordinates":[[16.3835243,48.215521799999976],[16.3831736,48.214911900000004],[16.3824488,48.21404230000002],[16.3820941,48.21366950000001],[16.3820792,48.21363959999999],[16.3820851,48.2135955],[16.3821267,48.213558500000005],[16.3822129,48.2135179]]},"properties":{"highway":"residential","maxspeed":"30","name":"Zirkusgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8093463","geometry":{"type":"LineString","coordinates":[[16.3830065,48.21310919999999],[16.3828829,48.2130842],[16.3825801,48.21304000000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Ferdinandstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4437077","geometry":{"type":"LineString","coordinates":[[16.3828704,48.2136562],[16.3830065,48.21310919999999]]},"properties":{"highway":"secondary","is_in":"Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Aspernbrückengasse"}},{"type":"Feature","id":"437864409","geometry":{"type":"LineString","coordinates":[[16.3842348,48.214595599999996],[16.3840135,48.21447499999999],[16.383078,48.21390629999996],[16.3829166,48.213784000000004],[16.3828704,48.2136562]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Praterstraße"}},{"type":"Feature","id":"8093462","geometry":{"type":"LineString","coordinates":[[16.3824898,48.21237150000002],[16.3824748,48.212425199999984],[16.3823017,48.21299930000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Fischergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26718832","geometry":{"type":"LineString","coordinates":[[16.381547,48.2204524],[16.3814585,48.22047120000002],[16.3805695,48.22066029999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Große Stadtgutgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"201325518","geometry":{"type":"LineString","coordinates":[[16.3784712,48.2204419],[16.3785619,48.22042959999999],[16.3786663,48.22046549999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Obere Augartenstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"7996090","geometry":{"type":"LineString","coordinates":[[16.3800223,48.21952160000001],[16.3801239,48.21962049999999],[16.380163,48.2196534],[16.3805695,48.22066029999999],[16.3811357,48.22210710000002],[16.3813418,48.22265479999999],[16.3813521,48.2226823],[16.3813972,48.22279420000001]]},"properties":{"cycleway":"opposite_track","cycleway:left":"track","cycleway:right":"lane","highway":"residential","maxspeed":"30","name":"Castellezgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26956697","geometry":{"type":"LineString","coordinates":[[16.3789921,48.22022369999999],[16.3789197,48.22017809999997],[16.3788498,48.220134099999996],[16.378804,48.22010529999997],[16.3784899,48.21953690000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Sperlgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"207499621","geometry":{"type":"LineString","coordinates":[[16.3795407,48.21984980000002],[16.3796419,48.2199004],[16.3797292,48.219965099999996],[16.3797448,48.219976599999995]]},"properties":{"highway":"service","name":"Am Augartenspitz","service":"driveway"}},{"type":"Feature","id":"358900460","geometry":{"type":"LineString","coordinates":[[16.3796419,48.2199004],[16.3800322,48.21963920000002]]},"properties":{"bicycle":"yes","foot":"yes","highway":"cycleway","lcn":"yes","name":"Am Augartenspitz","segregated":"yes"}},{"type":"Feature","id":"28093861","geometry":{"type":"LineString","coordinates":[[16.3801759,48.2194284],[16.380089,48.21936950000003],[16.3798884,48.21925759999999],[16.3792126,48.21939120000002],[16.3790474,48.2194245],[16.3784899,48.21953690000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kleine Pfarrgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"230482323","geometry":{"type":"LineString","coordinates":[[16.3807805,48.21900099999999],[16.3807253,48.219043699999986],[16.3803675,48.219291200000015],[16.3802792,48.219353900000016],[16.3801759,48.2194284],[16.3800907,48.21947660000001],[16.3800223,48.21952160000001]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Obere Augartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"28097053","geometry":{"type":"LineString","coordinates":[[16.3792126,48.21939120000002],[16.379153,48.219091400000025]]},"properties":{"bicycle":"private","foot":"yes","highway":"residential","maxspeed":"30","motor_vehicle":"private","name":"Alexander-Poch-Platz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473317372","geometry":{"type":"LineString","coordinates":[[16.3810075,48.2166684],[16.3809062,48.2164932],[16.3808063,48.21632389999999],[16.3807131,48.21615409999998],[16.3805481,48.21585110000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"473313095","geometry":{"type":"LineString","coordinates":[[16.3807141,48.218883500000004],[16.3806914,48.21849879999999],[16.3807057,48.218461399999995],[16.3806923,48.21796669999998],[16.3806923,48.217209999999994],[16.3807111,48.2169744],[16.380685,48.21693239999996],[16.3806682,48.21675189999999],[16.3806347,48.216606299999995],[16.380522,48.216319699999985],[16.3805074,48.21623979999998],[16.3803686,48.21594490000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"8024334","geometry":{"type":"LineString","coordinates":[[16.3803914,48.215756500000026],[16.380238,48.215678800000006],[16.3801926,48.2156688]]},"properties":{"highway":"residential","maxspeed":"30","name":"Karmeliterplatz","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29275429","geometry":{"type":"LineString","coordinates":[[16.3823598,48.215865699999995],[16.3805367,48.21576519999999],[16.3803914,48.215756500000026]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schmelzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"176336103","geometry":{"type":"LineString","coordinates":[[16.3803914,48.215756500000026],[16.3804301,48.215842699999996],[16.3804709,48.215949300000005],[16.3806496,48.21629999999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"367960083","geometry":{"type":"LineString","coordinates":[[16.3803131,48.213924099999986],[16.3811472,48.21378730000001]]},"properties":{"highway":"footway","motor_vehicle":"private","name":"Durchhaus Taborstraße 10"}},{"type":"Feature","id":"354850554","geometry":{"type":"LineString","coordinates":[[16.3800508,48.2144576],[16.3801886,48.2150225],[16.380323,48.215572500000036],[16.3803492,48.2156511],[16.3803561,48.2156703],[16.3803914,48.215756500000026]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"493432294","geometry":{"type":"LineString","coordinates":[[16.3801926,48.2156688],[16.3799683,48.215619300000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Karmeliterplatz","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28094002","geometry":{"type":"LineString","coordinates":[[16.3797246,48.21795469999998],[16.3806923,48.21796669999998],[16.3808067,48.21796810000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Haidgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"8024372","geometry":{"type":"LineString","coordinates":[[16.3797132,48.21717810000001],[16.3797246,48.21795469999998],[16.3797391,48.21860029999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rotenkreuzgasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"28640751","geometry":{"type":"LineString","coordinates":[[16.3799683,48.215619300000014],[16.3798368,48.2156463],[16.3796926,48.21566960000001],[16.3795181,48.21567949999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Karmeliterplatz","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29274200","geometry":{"type":"LineString","coordinates":[[16.3796899,48.21612479999999],[16.3795127,48.216368999999986],[16.3794905,48.21645910000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Karmeliterplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"58706177","geometry":{"type":"LineString","coordinates":[[16.3799961,48.2139736],[16.3800265,48.2139684]]},"properties":{"highway":"footway","name":"Durchhaus Taborstraße 10"}},{"type":"Feature","id":"222621755","geometry":{"type":"LineString","coordinates":[[16.3799303,48.21408840000001],[16.3799909,48.2142532],[16.3800508,48.2144576]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"354850548","geometry":{"type":"LineString","coordinates":[[16.380033,48.214460900000006],[16.3800508,48.2144576]]},"properties":{"highway":"residential","maxspeed":"30","name":"Negerlegasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29234592","geometry":{"type":"LineString","coordinates":[[16.3796263,48.21509129999998],[16.3800764,48.215036199999986],[16.3801886,48.2150225]]},"properties":{"highway":"residential","maxspeed":"50","name":"Lassingleithnerplatz","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"354673512","geometry":{"type":"LineString","coordinates":[[16.3798405,48.213530899999995],[16.3799679,48.213506300000006]]},"properties":{"fixme":"Lage","highway":"footway","name":"Durchhaus Taborstraße 6","tunnel":"building_passage"}},{"type":"Feature","id":"29250957","geometry":{"type":"LineString","coordinates":[[16.3798122,48.21353640000001],[16.3798405,48.213530899999995]]},"properties":{"fixme":"Lage","highway":"footway","name":"Durchhaus Taborstraße 6"}},{"type":"Feature","id":"354673513","geometry":{"type":"LineString","coordinates":[[16.3799679,48.213506300000006],[16.3807916,48.21334729999998]]},"properties":{"fixme":"Lage","highway":"footway","name":"Durchhaus Taborstraße 6"}},{"type":"Feature","id":"58706178","geometry":{"type":"LineString","coordinates":[[16.3798999,48.213748399999986],[16.380937,48.21353490000001]]},"properties":{"fixme":"Lage","highway":"footway","name":"Durchhaus Taborstraße 8"}},{"type":"Feature","id":"473320440","geometry":{"type":"LineString","coordinates":[[16.3801915,48.21548179999999],[16.3800764,48.215036199999986],[16.3799936,48.21467280000002],[16.3799491,48.21448179999999],[16.379842,48.214176399999985],[16.3797478,48.21407160000001],[16.3797353,48.21403000000001],[16.379731,48.21401610000001],[16.3797247,48.21399600000001],[16.3797096,48.213948000000016],[16.3797031,48.2139282]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"367960081","geometry":{"type":"LineString","coordinates":[[16.3800265,48.2139684],[16.3803131,48.213924099999986]]},"properties":{"highway":"footway","name":"Durchhaus Taborstraße 10","tunnel":"building_passage"}},{"type":"Feature","id":"316995463","geometry":{"type":"LineString","coordinates":[[16.3788451,48.21581259999999],[16.3783227,48.21593150000001],[16.3781805,48.21599710000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kleine Sperlgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"164335726","geometry":{"type":"LineString","coordinates":[[16.3795181,48.21567949999999],[16.3788451,48.21581259999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kleine Sperlgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28093968","geometry":{"type":"LineString","coordinates":[[16.3781805,48.21599710000001],[16.3781825,48.21653869999997],[16.3782269,48.21662069999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Große Sperlgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"164103747","geometry":{"type":"LineString","coordinates":[[16.3782269,48.21662069999999],[16.3783753,48.21658830000001],[16.3794905,48.21645910000001],[16.380426,48.21633449999999],[16.380522,48.216319699999985],[16.3806496,48.21629999999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Karmelitergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28097212","geometry":{"type":"LineString","coordinates":[[16.379153,48.219091400000025],[16.3790195,48.2189807],[16.3789684,48.21868790000002]]},"properties":{"highway":"pedestrian","name":"Alexander-Poch-Platz"}},{"type":"Feature","id":"26739853","geometry":{"type":"LineString","coordinates":[[16.3784899,48.21953690000001],[16.3783786,48.218743500000045],[16.3782812,48.217973099999966],[16.3782018,48.2171299]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Sperlgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"28093964","geometry":{"type":"LineString","coordinates":[[16.3782018,48.2171299],[16.3782027,48.21711139999999],[16.3782235,48.21668979999998],[16.3782269,48.21662069999999]]},"properties":{"bicycle":"designated","highway":"pedestrian","motor_vehicle":"private","name":"Große Sperlgasse","oneway":"no"}},{"type":"Feature","id":"355120500","geometry":{"type":"LineString","coordinates":[[16.378662,48.21406179999997],[16.3786529,48.214037099999985]]},"properties":{"highway":"footway","name":"Schoellerhofgasse"}},{"type":"Feature","id":"28602163","geometry":{"type":"LineString","coordinates":[[16.3788451,48.21581259999999],[16.378315,48.215149800000006],[16.3781771,48.21493559999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Lilienbrunngasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29234593","geometry":{"type":"LineString","coordinates":[[16.3789107,48.21474020000002],[16.3788845,48.2146688],[16.3787946,48.21442379999999],[16.3787348,48.21426059999999],[16.378662,48.21406179999997]]},"properties":{"foot":"yes","highway":"service","name":"Schoellerhofgasse","service":"driveway","vehicle":"private"}},{"type":"Feature","id":"8024338","geometry":{"type":"LineString","coordinates":[[16.3781771,48.21493559999999],[16.3789107,48.21474020000002],[16.3799491,48.21448179999999],[16.380033,48.214460900000006]]},"properties":{"fixme":"Radfahrer von Einbahn ausgenommen?","highway":"residential","maxspeed":"30","name":"Negerlegasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29234599","geometry":{"type":"LineString","coordinates":[[16.3781264,48.21361039999999],[16.378171,48.21354249999999],[16.3782122,48.2134915],[16.3783132,48.2134705],[16.3784696,48.21350960000001],[16.3785211,48.21362590000001],[16.3785588,48.21371910000002]]},"properties":{"highway":"service","maxspeed":"50","name":"Gredlerstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"29234612","geometry":{"type":"LineString","coordinates":[[16.3786529,48.214037099999985],[16.3785812,48.213794800000045],[16.3785588,48.21371910000002]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schoellerhofgasse","oneway":"no","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"225611118","geometry":{"type":"LineString","coordinates":[[16.3802806,48.21266450000002],[16.3804179,48.2127332],[16.380635,48.21277979999999],[16.3808655,48.21286860000001],[16.381136,48.21300489999999],[16.3815144,48.21320850000001],[16.3818753,48.2133795],[16.3822129,48.2135179],[16.3825821,48.213667000000015],[16.382675,48.21367019999997],[16.3827675,48.21365610000001],[16.3828704,48.2136562]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Praterstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"230483963","geometry":{"type":"LineString","coordinates":[[16.3792906,48.21279329999996],[16.3796202,48.21335920000004],[16.3797093,48.213542399999994],[16.3798528,48.21390109999999],[16.3798761,48.21395419999999],[16.3799083,48.214033700000016],[16.3799303,48.21408840000001]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Taborstraße","sidewalk":"both","source:maxspeed":"AT:urban","surface":"cobblestone"}},{"type":"Feature","id":"473317364","geometry":{"type":"LineString","coordinates":[[16.3804357,48.215649299999995],[16.3803949,48.215509200000014],[16.3803675,48.21539519999999],[16.38035,48.21532239999999],[16.3801679,48.21450569999999],[16.3801129,48.21430559999999],[16.3799961,48.2139736],[16.3798999,48.213748399999986],[16.3798122,48.21353640000001],[16.37972,48.21333150000001],[16.3794987,48.212958799999996],[16.3793246,48.21266000000003]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Taborstraße"}},{"type":"Feature","id":"8096059","geometry":{"type":"LineString","coordinates":[[16.3802806,48.21266450000002],[16.3803215,48.21279240000001],[16.3807916,48.21334729999998],[16.380937,48.21353490000001],[16.3811472,48.21378730000001],[16.3815288,48.21428559999998],[16.3818886,48.214714500000014],[16.3822306,48.21530490000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Mohrengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"230483961","geometry":{"type":"LineString","coordinates":[[16.379207,48.2125078],[16.3792302,48.21256579999999],[16.3792514,48.21261720000001],[16.3792599,48.2126567],[16.3792906,48.21279329999996]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"1","maxspeed":"50","name":"Taborstraße","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"437864410","geometry":{"type":"LineString","coordinates":[[16.3793406,48.21262780000001],[16.3794709,48.2126452],[16.3799915,48.2125824],[16.3800513,48.212580900000006],[16.3800848,48.21258080000001],[16.3801313,48.212588900000014],[16.3802288,48.212627],[16.3802806,48.21266450000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Praterstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9292382","geometry":{"type":"LineString","coordinates":[[16.3792514,48.21261720000001],[16.3793406,48.21262780000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Praterstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28098517","geometry":{"type":"LineString","coordinates":[[16.3802806,48.21266450000002],[16.380372,48.21248940000001],[16.3803626,48.21243609999999],[16.3803531,48.21238210000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Mohrengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"146984833","geometry":{"type":"LineString","coordinates":[[16.3831485,48.2124403],[16.3829944,48.212420899999984],[16.3824898,48.21237150000002],[16.3818005,48.21234659999999],[16.3810081,48.212357500000024],[16.3803531,48.21238210000001],[16.3798886,48.21241309999999],[16.3793174,48.21249180000001],[16.379207,48.2125078]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Untere Donaustraße","oneway":"yes","ref":"B227","sidewalk":"right"}},{"type":"Feature","id":"230483956","geometry":{"type":"LineString","coordinates":[[16.3791754,48.2124383],[16.379207,48.2125078]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","maxspeed":"50","name":"Schwedenbrücke","oneway":"yes"}},{"type":"Feature","id":"230483958","geometry":{"type":"LineString","coordinates":[[16.3790843,48.212525699999986],[16.3790515,48.212460300000004]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","maxspeed":"50","name":"Schwedenbrücke","oneway":"yes"}},{"type":"Feature","id":"146984829","geometry":{"type":"LineString","coordinates":[[16.379207,48.2125078],[16.3791402,48.2125168],[16.3790843,48.212525699999986]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"230483957","geometry":{"type":"LineString","coordinates":[[16.3792906,48.21279329999996],[16.3792151,48.21272400000001],[16.3791681,48.2126633],[16.3791445,48.212631499999986],[16.3791168,48.212587499999955],[16.3790843,48.212525699999986]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"1","maxspeed":"50","name":"Taborstraße","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"230483959","geometry":{"type":"LineString","coordinates":[[16.3790515,48.212460300000004],[16.3787369,48.21181250000001]]},"properties":{"bridge":"yes","cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"2","layer":"1","maxspeed":"50","name":"Schwedenbrücke","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"473320413","geometry":{"type":"LineString","coordinates":[[16.3792694,48.212422100000026],[16.3792389,48.212396299999995],[16.3790773,48.212053999999995],[16.3789517,48.21177430000003]]},"properties":{"bridge":"yes","footway":"sidewalk","highway":"footway","name":"Schwedenbrücke"}},{"type":"Feature","id":"473322435","geometry":{"type":"LineString","coordinates":[[16.3786374,48.21182730000001],[16.3786148,48.21177990000004]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Schwedenbrücke"}},{"type":"Feature","id":"230483960","geometry":{"type":"LineString","coordinates":[[16.3788613,48.2117897],[16.3789474,48.21196810000001],[16.3790909,48.2122636],[16.3791754,48.2124383]]},"properties":{"bridge":"yes","cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"2","layer":"1","maxspeed":"50","name":"Schwedenbrücke","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"473320403","geometry":{"type":"LineString","coordinates":[[16.3789478,48.21247869999999],[16.3786374,48.21182730000001]]},"properties":{"bridge":"yes","footway":"sidewalk","highway":"footway","name":"Schwedenbrücke"}},{"type":"Feature","id":"230483964","geometry":{"type":"LineString","coordinates":[[16.3790843,48.212525699999986],[16.3789736,48.2125418],[16.3789251,48.21254999999999],[16.3786943,48.21258679999997],[16.3784635,48.212635199999994],[16.3781069,48.212721000000016]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","sidewalk":"right","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"225611117","geometry":{"type":"LineString","coordinates":[[16.3789251,48.21254999999999],[16.3788137,48.212643199999974],[16.3785367,48.21270470000002],[16.3782071,48.21277789999999],[16.3779302,48.2127797]]},"properties":{"highway":"service","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"201325517","geometry":{"type":"LineString","coordinates":[[16.3775832,48.220943000000005],[16.3784712,48.2204419]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Obere Augartenstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024395","geometry":{"type":"LineString","coordinates":[[16.377409,48.21785430000003],[16.3774745,48.21786320000001],[16.3782812,48.217973099999966],[16.3789856,48.217952999999966],[16.3797246,48.21795469999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Haidgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38148466","geometry":{"type":"LineString","coordinates":[[16.3800223,48.21952160000001],[16.3799276,48.21958190000001],[16.3795407,48.21984980000002],[16.3790634,48.220175100000006],[16.3789921,48.22022369999999],[16.3788916,48.220298299999996],[16.3786663,48.22046549999999],[16.3778495,48.221080299999954]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Obere Augartenstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8024174","geometry":{"type":"LineString","coordinates":[[16.3808074,48.21721360000001],[16.3806923,48.217209999999994],[16.3797132,48.21717810000001],[16.3782018,48.2171299],[16.3777182,48.2171189],[16.377602,48.21711629999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Tandelmarktgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"30011215","geometry":{"type":"LineString","coordinates":[[16.377733,48.21609669999998],[16.3775118,48.215658899999994],[16.3778319,48.215452400000004]]},"properties":{"highway":"service","maxspeed":"30","name":"Kleine Sperlgasse","old_name":"Kleine Ankergasse","source:maxspeed":"AT:zone:30","vehicle":"no"}},{"type":"Feature","id":"26956617","geometry":{"type":"LineString","coordinates":[[16.3781805,48.21599710000001],[16.377733,48.21609669999998],[16.377386,48.2161782],[16.3772489,48.216210399999994]]},"properties":{"cycleway":"opposite_track","highway":"residential","maxspeed":"30","name":"Kleine Sperlgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26956613","geometry":{"type":"LineString","coordinates":[[16.3772489,48.216210399999994],[16.3772877,48.21627609999999],[16.3775295,48.21668549999998],[16.3775588,48.216780400000005],[16.3775848,48.21686440000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hollandstraße","old_name":"Große Ankergasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024528","geometry":{"type":"LineString","coordinates":[[16.3775848,48.21686440000002],[16.3777096,48.216804499999995],[16.3780871,48.21668260000001],[16.3782269,48.21662069999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krummbaumgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28096878","geometry":{"type":"LineString","coordinates":[[16.376454,48.21788129999999],[16.3765396,48.21787890000002],[16.3766831,48.217874800000004],[16.3769619,48.21786700000001],[16.3772891,48.217857699999996],[16.3773266,48.217856600000005],[16.377409,48.21785430000003]]},"properties":{"highway":"pedestrian","name":"Haidgasse"}},{"type":"Feature","id":"8024172","geometry":{"type":"LineString","coordinates":[[16.3807692,48.2184934],[16.3806914,48.21849879999999],[16.3797391,48.21860029999999],[16.3789684,48.21868790000002],[16.3783786,48.218743500000045],[16.3769939,48.21887920000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Pfarrgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"8024257","geometry":{"type":"LineString","coordinates":[[16.3765633,48.21988289999999],[16.3767164,48.21989669999999],[16.3774322,48.21975689999999],[16.3784899,48.21953690000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kleine Pfarrgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024349","geometry":{"type":"LineString","coordinates":[[16.3768596,48.2191378],[16.3772724,48.219220399999955],[16.3774322,48.21975689999999]]},"properties":{"highway":"living_street","name":"Schwarzingergasse","oneway":"yes","source:maxspeed":"AT:walk","surface":"cobblestone"}},{"type":"Feature","id":"26739823","geometry":{"type":"LineString","coordinates":[[16.3767212,48.21911610000001],[16.3766601,48.218833700000005],[16.376454,48.21788129999999],[16.3764522,48.2178007]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Im Werd"}},{"type":"Feature","id":"399455501","geometry":{"type":"LineString","coordinates":[[16.3764522,48.2178007],[16.3763502,48.21738799999997],[16.3762173,48.21696459999998],[16.3762032,48.216919700000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Im Werd","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024132","geometry":{"type":"LineString","coordinates":[[16.3755683,48.216933900000015],[16.3755567,48.21726190000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Schiffgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"173502220","geometry":{"type":"LineString","coordinates":[[16.3755567,48.21726190000001],[16.3757706,48.21807179999999],[16.3758939,48.218520100000035],[16.3760151,48.219086499999975]]},"properties":{"highway":"residential","maxspeed":"30","name":"Große Schiffgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024131","geometry":{"type":"LineString","coordinates":[[16.3761985,48.220257600000025],[16.3760099,48.22037810000003],[16.375776,48.2205381]]},"properties":{"highway":"residential","maxspeed":"30","name":"Leopoldsgasse","oneway":"no","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024241","geometry":{"type":"LineString","coordinates":[[16.375498,48.219028700000024],[16.3751948,48.219863799999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Raimundgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024245","geometry":{"type":"LineString","coordinates":[[16.3775832,48.220943000000005],[16.3764786,48.220396300000004],[16.3761985,48.220257600000025]]},"properties":{"highway":"residential","maxspeed":"30","name":"Malzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"164288578","geometry":{"type":"LineString","coordinates":[[16.3760442,48.214853800000014],[16.3762604,48.2151092],[16.3772071,48.2161639],[16.3772489,48.216210399999994]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Hollandstraße","old_name":"Große Ankergasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"31129303","geometry":{"type":"LineString","coordinates":[[16.3761985,48.220257600000025],[16.3763181,48.22017050000002],[16.3764249,48.22009650000001],[16.376472,48.220063900000014],[16.3765633,48.21988289999999],[16.3768596,48.2191378],[16.3769939,48.21887920000003],[16.377409,48.21785430000003],[16.3774308,48.217791699999964],[16.3774402,48.21776460000001],[16.3775778,48.2173689],[16.3775914,48.217205500000006],[16.377602,48.21711629999999],[16.3776016,48.217070199999995],[16.3775895,48.216922600000004],[16.3775848,48.21686440000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Leopoldsgasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024133","geometry":{"type":"LineString","coordinates":[[16.3755683,48.216933900000015],[16.3762032,48.216919700000005],[16.3774277,48.216887799999995],[16.3774864,48.2168791],[16.3775848,48.21686440000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krummbaumgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"201325515","geometry":{"type":"LineString","coordinates":[[16.3778378,48.2141264],[16.377963,48.214466000000016],[16.3780369,48.21471580000002],[16.3781771,48.21493559999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Lilienbrunngasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"355120253","geometry":{"type":"LineString","coordinates":[[16.3778727,48.21353400000001],[16.3781264,48.21361039999999],[16.3785588,48.21371910000002],[16.3793576,48.21391750000001],[16.379731,48.21401610000001],[16.3797604,48.214024800000004],[16.3799303,48.21408840000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Gredlerstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"9288654","geometry":{"type":"LineString","coordinates":[[16.3776235,48.21349599999999],[16.3778727,48.21353400000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Gredlerstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"355120254","geometry":{"type":"LineString","coordinates":[[16.3778727,48.21353400000001],[16.3777628,48.21355249999999],[16.377697,48.213578299999995],[16.3776441,48.21361289999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Gredlerstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"30085564","geometry":{"type":"LineString","coordinates":[[16.3776235,48.21349599999999],[16.3776441,48.21361289999999]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Lilienbrunngasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473322441","geometry":{"type":"LineString","coordinates":[[16.3797478,48.21407160000001],[16.3791789,48.2139378],[16.3785812,48.213794800000045],[16.3778927,48.21361790000003],[16.3778116,48.21359419999999],[16.3777674,48.2135902],[16.3777211,48.21360229999999],[16.3777023,48.21362500000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Gredlerstraße"}},{"type":"Feature","id":"355135033","geometry":{"type":"LineString","coordinates":[[16.3776441,48.21361289999999],[16.3776523,48.21363490000002],[16.377705,48.21377580000001],[16.3777585,48.213918500000034],[16.3777929,48.214007700000025],[16.3778132,48.214061500000014],[16.3778378,48.2141264]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lilienbrunngasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473322442","geometry":{"type":"LineString","coordinates":[[16.3775859,48.213202499999966],[16.3777755,48.213438800000006]]},"properties":{"footway":"sidewalk","highway":"footway","lit":"yes","name":"Lilienbrunngasse"}},{"type":"Feature","id":"385078743","geometry":{"type":"LineString","coordinates":[[16.3777755,48.213438800000006],[16.3778024,48.21345310000001],[16.377921,48.21351200000001],[16.3780983,48.21355779999996],[16.378171,48.21354249999999],[16.3785211,48.21362590000001],[16.3785817,48.21364220000004],[16.3786493,48.213700200000005],[16.3790764,48.21380529999999],[16.3795894,48.21393130000001],[16.3796502,48.21394269999999],[16.3797031,48.2139282]]},"properties":{"footway":"sidewalk","highway":"footway","lit":"yes","name":"Gredlerstraße"}},{"type":"Feature","id":"8024438","geometry":{"type":"LineString","coordinates":[[16.3762604,48.2151092],[16.3763831,48.21506290000002],[16.377963,48.214466000000016]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hammer-Purgstall-Gasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"361117235","geometry":{"type":"LineString","coordinates":[[16.3773024,48.21300840000001],[16.3772429,48.213031900000004]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","sidewalk":"right","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8024409","geometry":{"type":"LineString","coordinates":[[16.3772429,48.213031900000004],[16.3772753,48.213091899999995],[16.3772974,48.21311459999998],[16.3774684,48.21330960000003],[16.3776235,48.21349599999999]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Lilienbrunngasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"473322438","geometry":{"type":"LineString","coordinates":[[16.3776131,48.213642899999996],[16.3775702,48.21349950000001],[16.3774147,48.213329999999985],[16.3773489,48.213280499999996],[16.377178,48.21310869999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Lilienbrunngasse"}},{"type":"Feature","id":"263062086","geometry":{"type":"LineString","coordinates":[[16.3771853,48.212960899999985],[16.3771944,48.21297240000001],[16.3772429,48.213031900000004]]},"properties":{"cycleway:left":"opposite_lane","cycleway:right":"shared_lane","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Marienbrücke","oneway":"yes","oneway:bicycle":"no","turn:lanes":"left|through"}},{"type":"Feature","id":"9293458","geometry":{"type":"LineString","coordinates":[[16.3757503,48.21458640000003],[16.3755624,48.21452549999998],[16.3754604,48.214492500000006]]},"properties":{"cycleway":"lane","highway":"tertiary","lanes":"3","lanes:backward":"1","lanes:forward":"2","maxspeed":"50","name":"Salztorbrücke","turn:lanes:forward":"left;through|through"}},{"type":"Feature","id":"8024442","geometry":{"type":"LineString","coordinates":[[16.3757503,48.21458640000003],[16.3758022,48.21462450000004],[16.3758577,48.21467369999999],[16.3759812,48.214791899999994],[16.3760442,48.214853800000014]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"30","name":"Friedrich-Wilhelm-Raiffeisen-Platz","old_name":"Große Ankergasse","oneway":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"127240496","geometry":{"type":"LineString","coordinates":[[16.3772429,48.213031900000004],[16.3771448,48.213072600000004],[16.3769886,48.2131407],[16.3766399,48.213299199999994],[16.37647,48.21338579999997],[16.3763784,48.21343250000001],[16.3761801,48.213551300000034],[16.3760589,48.21365230000001],[16.3760242,48.213695599999994],[16.3759627,48.21377229999999],[16.3758711,48.21392490000002],[16.3758334,48.214021],[16.3758128,48.214108900000014],[16.3757681,48.214483599999966],[16.3757503,48.21458640000003]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"357504712","geometry":{"type":"LineString","coordinates":[[16.3753237,48.21442239999999],[16.3753966,48.21431230000002],[16.3754261,48.21425689999998],[16.3755141,48.214090699999986],[16.3755723,48.213981700000005],[16.3756573,48.21388329999999],[16.3758621,48.213668900000016]]},"properties":{"bicycle":"yes","foot":"yes","highway":"path","motor_vehicle":"private","name":"Dianabadufer"}},{"type":"Feature","id":"357504706","geometry":{"type":"LineString","coordinates":[[16.3771821,48.21291230000003],[16.377059,48.212966800000004],[16.3769201,48.212991999999986],[16.3766493,48.21313140000001],[16.3762474,48.2133666],[16.3760498,48.213510600000006],[16.3758621,48.213668900000016]]},"properties":{"bicycle":"yes","fixme":"name Donaukanalufer-Abschnitt","foot":"yes","highway":"path","layer":"-1","motor_vehicle":"private","name":"Dianabadufer","segregated":"no","source:surface":"survey","surface":"asphalt"}},{"type":"Feature","id":"229033717","geometry":{"type":"LineString","coordinates":[[16.3781069,48.212721000000016],[16.3779302,48.2127797],[16.3776358,48.21287610000002],[16.3775698,48.2129027],[16.3774028,48.21296960000001],[16.3773385,48.212994099999975],[16.3773024,48.21300840000001]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","sidewalk":"right","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"357504701","geometry":{"type":"LineString","coordinates":[[16.3831694,48.21228819999999],[16.3828696,48.21226070000003],[16.3827526,48.21220919999999],[16.3822927,48.2121822],[16.381504,48.212164100000024],[16.381255,48.21216980000003],[16.3810067,48.212174300000015],[16.3807586,48.21219240000002],[16.3800692,48.21224560000002],[16.3795256,48.21231740000002],[16.3793181,48.2123584],[16.3788669,48.212428500000016],[16.3787192,48.2124369],[16.3784889,48.212472700000006],[16.3778581,48.21263250000001],[16.3775258,48.21274360000001],[16.377373,48.21279750000002],[16.3773181,48.212852],[16.3771821,48.21291230000003]]},"properties":{"bicycle":"yes","foot":"yes","highway":"path","layer":"-1","motor_vehicle":"private","name":"Schlagbrückenufer","segregated":"no","source:surface":"survey","surface":"asphalt"}},{"type":"Feature","id":"263062087","geometry":{"type":"LineString","coordinates":[[16.3766438,48.2123694],[16.3771853,48.212960899999985]]},"properties":{"bridge":"yes","cycleway:left":"opposite_lane","cycleway:right":"shared_lane","highway":"tertiary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Marienbrücke","oneway":"yes","oneway:bicycle":"no","sidewalk":"left","turn:lanes":"left|through"}},{"type":"Feature","id":"9801481","geometry":{"type":"LineString","coordinates":[[16.3766298,48.21234560000002],[16.3766438,48.2123694]]},"properties":{"cycleway:left":"opposite_lane","cycleway:right":"shared_lane","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Marienbrücke","oneway":"yes","oneway:bicycle":"no","turn:lanes":"left|through"}},{"type":"Feature","id":"31130930","geometry":{"type":"LineString","coordinates":[[16.3763674,48.21199250000001],[16.3764042,48.2120381]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","name":"Rotenturmstraße","oneway":"yes","sidewalk":"no","turn:lanes":"through|through|right|right"}},{"type":"Feature","id":"239945781","geometry":{"type":"LineString","coordinates":[[16.3764042,48.2120381],[16.3765745,48.21227619999999]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","name":"Rotenturmstraße","oneway":"yes","sidewalk":"left","turn:lanes":"through|through|right|right"}},{"type":"Feature","id":"229033665","geometry":{"type":"LineString","coordinates":[[16.3765745,48.21227619999999],[16.3766466,48.21224569999998]]},"properties":{"bicycle":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","turn:lanes":"left;through|none|none|none"}},{"type":"Feature","id":"7832222","geometry":{"type":"LineString","coordinates":[[16.3765745,48.21227619999999],[16.3766298,48.21234560000002]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Marienbrücke","turn:lanes":"left|through"}},{"type":"Feature","id":"229033666","geometry":{"type":"LineString","coordinates":[[16.3755732,48.21281920000001],[16.3758219,48.212657999999976],[16.3760872,48.21250950000001],[16.3762105,48.21243580000004],[16.3764864,48.2123153],[16.3765745,48.21227619999999]]},"properties":{"bicycle":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"left|through|through|through|through"}},{"type":"Feature","id":"354850544","geometry":{"type":"LineString","coordinates":[[16.3766466,48.21224569999998],[16.376684,48.21223149999997],[16.3767926,48.21218590000001],[16.3770756,48.2120755],[16.3774159,48.21196409999996],[16.3775516,48.21192940000003]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"left;through|none|none|none"}},{"type":"Feature","id":"437864416","geometry":{"type":"LineString","coordinates":[[16.3763364,48.21195940000001],[16.3763674,48.21199250000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Rotenturmstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"252813847","geometry":{"type":"LineString","coordinates":[[16.3761943,48.21181659999999],[16.3762705,48.21189229999999],[16.3763364,48.21195940000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Rotenturmstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"25950723","geometry":{"type":"LineString","coordinates":[[16.3751924,48.212129800000014],[16.3753103,48.21208569999999],[16.3757476,48.211950900000005],[16.3760815,48.21185170000001],[16.3761322,48.21183540000001],[16.3761943,48.21181659999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Franz-Josefs-Kai","sidewalk":"right"}},{"type":"Feature","id":"230626522","geometry":{"type":"LineString","coordinates":[[16.3830269,48.211924100000005],[16.382948,48.21156690000001]]},"properties":{"bicycle":"use_sidepath","bridge":"yes","description":"Erected 1951, Length 89 meter.","highway":"secondary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Aspernbrücke","turn:lanes:backward":"none|none|none","turn:lanes:forward":"left;through|through|through"}},{"type":"Feature","id":"47120687","geometry":{"type":"LineString","coordinates":[[16.3844721,48.21131439999999],[16.3833227,48.21141279999998],[16.3832206,48.211426200000005],[16.3831461,48.211443799999955],[16.3830924,48.211468800000006],[16.3830464,48.211491499999994]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Uraniastraße","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"351544193","geometry":{"type":"LineString","coordinates":[[16.3831338,48.2115129],[16.3832312,48.21146909999999],[16.3843721,48.21136960000001]]},"properties":{"bicycle":"designated","foot":"yes","footway":"sidewalk","highway":"cycleway","name":"Uraniastraße"}},{"type":"Feature","id":"358966127","geometry":{"type":"LineString","coordinates":[[16.3830464,48.211491499999994],[16.382948,48.21156690000001]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Uraniastraße","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"203868703","geometry":{"type":"LineString","coordinates":[[16.3833554,48.210912500000006],[16.3833995,48.2109662],[16.3834629,48.21108910000001],[16.3834967,48.21115399999999],[16.3835226,48.21119909999999],[16.3835361,48.2112262],[16.3835792,48.211306500000006]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Julius-Raab-Platz","old_name":"Aspernplatz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"102712070","geometry":{"type":"LineString","coordinates":[[16.382948,48.21156690000001],[16.3829052,48.2114694],[16.3828674,48.211365400000005]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes:backward":"1","lanes:forward":"3","lit":"yes","maxspeed":"50","name":"Aspernbrücke","oneway":"no","turn:lanes:backward":"none","turn:lanes:forward":"through;left|through|through"}},{"type":"Feature","id":"36561888","geometry":{"type":"LineString","coordinates":[[16.3828674,48.211365400000005],[16.3830069,48.21135430000001],[16.3832285,48.21133710000001],[16.3835792,48.211306500000006],[16.3843249,48.21124409999999],[16.3844497,48.211233899999996]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Uraniastraße","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"slight_left|slight_left|through;right"}},{"type":"Feature","id":"29068220","geometry":{"type":"LineString","coordinates":[[16.3828674,48.211365400000005],[16.3828346,48.211257200000006],[16.3828295,48.21122890000001],[16.3828232,48.21119469999999],[16.3827985,48.21108720000001]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Julius-Raab-Platz","old_name":"Aspernplatz","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"230626523","geometry":{"type":"LineString","coordinates":[[16.3810643,48.21142040000001],[16.3825067,48.21138740000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"5","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"left;through|through|through|right|right"}},{"type":"Feature","id":"236757554","geometry":{"type":"LineString","coordinates":[[16.3825067,48.21138740000001],[16.3826837,48.211376900000005],[16.3828674,48.211365400000005]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","placement":"middle_of:3","ref":"B227","sidewalk":"no","turn:lanes":"left|through|through|through"}},{"type":"Feature","id":"236757556","geometry":{"type":"LineString","coordinates":[[16.3825067,48.21138740000001],[16.3825858,48.211345199999954],[16.3826661,48.21128609999997],[16.3826896,48.21126430000001],[16.3827182,48.21123639999999],[16.3827535,48.21119959999996],[16.382768,48.2111754],[16.3827985,48.21108720000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"right|right"}},{"type":"Feature","id":"203868702","geometry":{"type":"LineString","coordinates":[[16.3829685,48.21076069999998],[16.3830778,48.21078640000002],[16.3831832,48.210820600000005],[16.3833002,48.210876600000034],[16.3833554,48.210912500000006]]},"properties":{"cycleway":"opposite","foot":"use_sidepath","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Julius-Raab-Platz","old_name":"Aspernplatz","oneway":"yes","oneway:bicycle":"no","sidewalk":"right","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"354021098","geometry":{"type":"LineString","coordinates":[[16.3827985,48.21108720000001],[16.3827788,48.2109586],[16.3827576,48.21084460000003],[16.3827379,48.2107647]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Julius-Raab-Platz","old_name":"Aspernplatz","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"25427884","geometry":{"type":"LineString","coordinates":[[16.3833554,48.210912500000006],[16.3833976,48.210886199999976],[16.383991,48.210516299999995],[16.3840806,48.2104602]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Reischachstraße","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473367765","geometry":{"type":"LineString","coordinates":[[16.3835497,48.211149199999994],[16.3834388,48.21092970000001],[16.3833976,48.210886199999976],[16.3832943,48.21081910000001],[16.3830885,48.21073000000001],[16.3830643,48.21071119999999],[16.3830559,48.210675699999996]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Julius-Raab-Platz"}},{"type":"Feature","id":"25427883","geometry":{"type":"LineString","coordinates":[[16.3843249,48.21124409999999],[16.3843445,48.211175800000035],[16.3843453,48.21114929999999],[16.3843421,48.21112120000001],[16.3842879,48.21083470000002],[16.384238,48.210554900000005],[16.3842254,48.21052550000002],[16.384204,48.21049639999998],[16.3841682,48.21047110000001],[16.3841364,48.21045860000004],[16.3841093,48.210457700000006],[16.3840806,48.2104602],[16.3840722,48.21042890000001],[16.3840452,48.21039289999999],[16.3840309,48.21033349999999],[16.383901,48.20984859999999],[16.3837874,48.209410100000014],[16.3838036,48.2093266],[16.3838506,48.2092567],[16.3838848,48.20918219999996],[16.3838919,48.20913920000001],[16.3838894,48.209091099999995],[16.3838735,48.20904860000002],[16.3834576,48.20847380000001]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Schallautzerstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"203868705","geometry":{"type":"LineString","coordinates":[[16.3825631,48.209088699999995],[16.3828129,48.21003089999999],[16.3829951,48.21072319999999],[16.3829685,48.21076069999998]]},"properties":{"cycleway":"opposite_lane","foot":"use_sidepath","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Stubenring","oneway":"yes","oneway:bicycle":"no","sidewalk":"right","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"203868704","geometry":{"type":"LineString","coordinates":[[16.3825591,48.21006],[16.3826542,48.210048099999995],[16.3828129,48.21003089999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stubenring","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9067293","geometry":{"type":"LineString","coordinates":[[16.382246,48.2098795],[16.3823298,48.209867599999995],[16.3824169,48.209858000000025],[16.3825036,48.20984820000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Georg-Coch-Platz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"190494840","geometry":{"type":"LineString","coordinates":[[16.3825476,48.21001519999999],[16.3824638,48.21002329999999],[16.3823733,48.21003060000001],[16.3822823,48.210037099999994]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Georg-Coch-Platz","oneway":"yes","sidewalk":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473363100","geometry":{"type":"LineString","coordinates":[[16.3822208,48.210980000000006],[16.3822534,48.210920999999985],[16.3823755,48.2108226],[16.3823942,48.210786900000016]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Julius-Raab-Platz"}},{"type":"Feature","id":"26565296","geometry":{"type":"LineString","coordinates":[[16.3822208,48.210980000000006],[16.3822892,48.210957500000006],[16.3824241,48.21085629999996],[16.3824722,48.210827600000044],[16.3825768,48.210794899999996],[16.3826561,48.210777399999984],[16.3827379,48.2107647],[16.3828541,48.210755000000006],[16.3829552,48.2107585],[16.3829685,48.21076069999998]]},"properties":{"foot":"use_sidepath","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Julius-Raab-Platz","old_name":"Aspernplatz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25427955","geometry":{"type":"LineString","coordinates":[[16.3835307,48.208449900000005],[16.3834576,48.20847380000001],[16.3825563,48.20878350000004],[16.3824664,48.20881510000001],[16.3823603,48.2088521],[16.3822333,48.20889439999999]]},"properties":{"cycleway:left":"track","cycleway:right":"lane","highway":"tertiary","maxspeed":"30","name":"Oskar-Kokoschka-Platz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25702238","geometry":{"type":"LineString","coordinates":[[16.3824664,48.20881510000001],[16.3825168,48.20890159999996],[16.3825631,48.209088699999995]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Stubenring","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"116531158","geometry":{"type":"LineString","coordinates":[[16.3812097,48.21068020000001],[16.3821422,48.21096979999996],[16.3822208,48.210980000000006]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Wiesingerstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"351541097","geometry":{"type":"LineString","coordinates":[[16.3822239,48.21004199999999],[16.3822104,48.21004429999999],[16.3820823,48.2100662],[16.3818558,48.210071399999975],[16.3813205,48.21008020000002]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Georg-Coch-Platz"}},{"type":"Feature","id":"116531155","geometry":{"type":"LineString","coordinates":[[16.3813205,48.2098838],[16.3818526,48.20987149999999],[16.3820637,48.20986049999999],[16.3821544,48.2098795],[16.3821839,48.20988569999997]]},"properties":{"access":"destination","highway":"service","lit":"yes","name":"Georg-Coch-Platz","oneway":"yes"}},{"type":"Feature","id":"10126619","geometry":{"type":"LineString","coordinates":[[16.3838932,48.208331499999986],[16.3838781,48.20833640000001]]},"properties":{"cycleway:left":"track","cycleway:right":"lane","highway":"tertiary","lcn":"yes","maxspeed":"30","name":"Marxergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"417857919","geometry":{"type":"LineString","coordinates":[[16.3838781,48.20833640000001],[16.3835307,48.208449900000005]]},"properties":{"bridge":"yes","cycleway:left":"track","cycleway:right":"lane","highway":"tertiary","layer":"1","lcn":"yes","maxspeed":"30","name":"Kleine Marxerbrücke","source:maxspeed":"AT:zone:30","wikipedia":"de:Kleine Marxerbrücke"}},{"type":"Feature","id":"13440416","geometry":{"type":"LineString","coordinates":[[16.3832425,48.20697050000004],[16.3840358,48.206708700000036]]},"properties":{"foot":"yes","highway":"pedestrian","name":"Sparefrohgasse","wikipedia":"de:Sparefroh"}},{"type":"Feature","id":"13439376","geometry":{"type":"LineString","coordinates":[[16.38435,48.2071411],[16.3835525,48.20739900000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Henslerstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"13439541","geometry":{"type":"LineString","coordinates":[[16.3838217,48.207814300000024],[16.3846554,48.207547000000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Stelzhamergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:urban","wikipedia":"de:Franz Stelzhamer"}},{"type":"Feature","id":"29076530","geometry":{"type":"LineString","coordinates":[[16.3849562,48.207966699999986],[16.3842566,48.20820410000002],[16.3841522,48.208239899999995],[16.3840155,48.2082867],[16.3838932,48.208331499999986]]},"properties":{"cycleway":"lane","highway":"tertiary","lcn":"yes","maxspeed":"50","name":"Marxergasse","source:maxspeed":"AT:urban","surface":"asphalt","turn:lanes:forward":"left|through|right","wikipedia":"de:Anton Marxer"}},{"type":"Feature","id":"26421998","geometry":{"type":"LineString","coordinates":[[16.3824664,48.20881510000001],[16.3824148,48.20873169999999],[16.3815491,48.20788709999999],[16.3813939,48.20785789999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Stubenring","oneway":"yes","sidewalk":"left","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"190494842","geometry":{"type":"LineString","coordinates":[[16.3813939,48.20785789999999],[16.3811528,48.20761730000001]]},"properties":{"cycleway":"opposite_lane","foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Stubenring","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473367766","geometry":{"type":"LineString","coordinates":[[16.3830559,48.210675699999996],[16.3829993,48.21043639999999],[16.3828585,48.20993010000001],[16.3827753,48.2096334],[16.3827049,48.2093385],[16.3826211,48.20903510000002],[16.3825661,48.20888450000001],[16.3825956,48.20884509999999],[16.3825563,48.20878350000004],[16.3825265,48.208721800000035],[16.3824796,48.20870790000001],[16.3823542,48.20859039999999],[16.3819988,48.20824720000002],[16.381734,48.208000999999996],[16.3815918,48.20785889999999],[16.3814382,48.207806600000026],[16.3811935,48.20756979999999],[16.3811861,48.20746969999996],[16.3809703,48.207257]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Stubenring"}},{"type":"Feature","id":"203868701","geometry":{"type":"LineString","coordinates":[[16.3834576,48.20847380000001],[16.3833714,48.20840679999998],[16.3822721,48.20687860000001],[16.3822452,48.206841199999985],[16.3822204,48.20680669999999]]},"properties":{"highway":"pedestrian","name":"Fritz-Wotruba-Promenade"}},{"type":"Feature","id":"190494843","geometry":{"type":"LineString","coordinates":[[16.3811528,48.20761730000001],[16.3811297,48.207483800000006],[16.3809615,48.207309899999984],[16.3809264,48.2072771],[16.3808801,48.207233]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Stubenring","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"20179290","geometry":{"type":"LineString","coordinates":[[16.3822908,48.20672669999999],[16.3826359,48.20663300000001]]},"properties":{"bridge":"yes","highway":"tertiary","layer":"1","maxspeed":"30","name":"Stubenbrücke","source:maxspeed":"sign","wikipedia":"de:Stubenbrücke"}},{"type":"Feature","id":"38176653","geometry":{"type":"LineString","coordinates":[[16.3815004,48.206952],[16.3822908,48.20672669999999]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Weiskirchnerstraße","sidewalk":"both","source:maxspeed":"sign"}},{"type":"Feature","id":"4469959","geometry":{"type":"LineString","coordinates":[[16.3827379,48.2107647],[16.3827261,48.21071899999998],[16.3825591,48.21006],[16.3825476,48.21001519999999],[16.3825036,48.20984820000001],[16.3822657,48.20896970000001],[16.3822333,48.20889439999999],[16.3821652,48.20881850000001],[16.3815315,48.20820040000001],[16.3807166,48.2074001],[16.3806527,48.207336]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Stubenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"41923839","geometry":{"type":"LineString","coordinates":[[16.3806527,48.207336],[16.3804774,48.20716110000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Stubenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"8024769","geometry":{"type":"LineString","coordinates":[[16.3815004,48.206952],[16.3813388,48.20702219999998],[16.3812471,48.2070621],[16.3808801,48.207233],[16.3808206,48.2072584],[16.3807785,48.20727929999998],[16.3806527,48.207336]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Weiskirchnerstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"sign"}},{"type":"Feature","id":"8024758","geometry":{"type":"LineString","coordinates":[[16.3804774,48.20716110000001],[16.3806278,48.20712760000001],[16.3806769,48.2071162],[16.381052,48.2070301],[16.3811509,48.20700640000001],[16.3815004,48.206952]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Weiskirchnerstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"sign"}},{"type":"Feature","id":"8043949","geometry":{"type":"LineString","coordinates":[[16.3799431,48.2096755],[16.3798745,48.20962],[16.3798422,48.20955939999996],[16.3798239,48.2093107]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone","surface":"cobblestone"}},{"type":"Feature","id":"116531164","geometry":{"type":"LineString","coordinates":[[16.3799431,48.2096755],[16.3799389,48.20986690000001],[16.3799666,48.2103266],[16.3799855,48.21057250000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"8041117","geometry":{"type":"LineString","coordinates":[[16.3799666,48.2103266],[16.3812097,48.21068020000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Wiesingerstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"116531166","geometry":{"type":"LineString","coordinates":[[16.3799855,48.21057250000001],[16.3799919,48.21127559999999],[16.3799946,48.211318300000016],[16.3799919,48.21147759999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"473360182","geometry":{"type":"LineString","coordinates":[[16.3800824,48.21127559999999],[16.3806079,48.211239199999994],[16.3810962,48.21122439999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"354616025","geometry":{"type":"LineString","coordinates":[[16.3798767,48.208542800000004],[16.3799145,48.208592899999985],[16.379954,48.2087291]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"101971900","geometry":{"type":"LineString","coordinates":[[16.3797404,48.208688800000004],[16.3798012,48.208722800000004],[16.3798253,48.2087837],[16.3798239,48.2093107]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","sidewalk":"left","source:maxspeed":"AT:zone","surface":"cobblestone"}},{"type":"Feature","id":"8030144","geometry":{"type":"LineString","coordinates":[[16.3815315,48.20820040000001],[16.3814286,48.2082374],[16.3813888,48.20825049999999],[16.3812984,48.20828589999999],[16.3812329,48.2083068],[16.3806214,48.20850200000004],[16.379954,48.2087291]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Falkestraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"187676913","geometry":{"type":"LineString","coordinates":[[16.379954,48.2087291],[16.3799289,48.20890990000001],[16.3799593,48.20952859999997],[16.3799431,48.2096755]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","oneway:bicycle":"no","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"8030143","geometry":{"type":"LineString","coordinates":[[16.3799431,48.2096755],[16.3811345,48.20926920000002],[16.3818763,48.20901620000001],[16.3819737,48.20898270000001],[16.38207,48.20895020000003],[16.3821524,48.20892200000003],[16.3822333,48.20889439999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rosenbursenstraße","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"473360134","geometry":{"type":"LineString","coordinates":[[16.3800824,48.21127559999999],[16.3799919,48.21127559999999],[16.3798878,48.211282900000015],[16.3798424,48.21128609999997],[16.379369,48.2113296]]},"properties":{"foot":"yes","footway":"sidewalk","highway":"footway","lit":"yes","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"8024749","geometry":{"type":"LineString","coordinates":[[16.37912,48.211566800000014],[16.3793192,48.21146469999999],[16.3793585,48.211431800000014],[16.3793629,48.211425899999995],[16.3793661,48.211417600000004],[16.3793691,48.21141069999999],[16.3793706,48.21140199999999],[16.3793718,48.211350900000014],[16.379369,48.2113296]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Postgasse","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"30018147","geometry":{"type":"LineString","coordinates":[[16.3789696,48.2092054],[16.3790084,48.20931339999996],[16.3790101,48.209412300000025],[16.3789724,48.20947150000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Postgasse","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"101971899","geometry":{"type":"LineString","coordinates":[[16.3798239,48.2093107],[16.3789696,48.2092054]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Barbaragasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone","surface":"cobblestone"}},{"type":"Feature","id":"12327855","geometry":{"type":"LineString","coordinates":[[16.3792412,48.210689100000025],[16.3798327,48.21056709999999],[16.3799855,48.21057250000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Auwinkel","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"229033715","geometry":{"type":"LineString","coordinates":[[16.3787075,48.21165719999999],[16.3787742,48.21164189999999]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no"}},{"type":"Feature","id":"230483955","geometry":{"type":"LineString","coordinates":[[16.3787742,48.21164189999999],[16.3788209,48.211720000000014],[16.3788613,48.2117897]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","maxspeed":"50","name":"Schwedenbrücke","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"230483962","geometry":{"type":"LineString","coordinates":[[16.3787369,48.21181250000001],[16.3787086,48.21175149999999],[16.3786681,48.21166580000002]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","maxspeed":"50","name":"Schwedenbrücke","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"473322436","geometry":{"type":"LineString","coordinates":[[16.3789517,48.21177430000003],[16.3789477,48.21176539999999],[16.3789378,48.21174339999999],[16.3789184,48.21169739999996]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Schwedenbrücke"}},{"type":"Feature","id":"354021083","geometry":{"type":"LineString","coordinates":[[16.3787742,48.21164189999999],[16.3788761,48.2116178],[16.37912,48.211566800000014],[16.3794172,48.211523099999994],[16.3796896,48.2114947],[16.3798993,48.21148149999999],[16.3799919,48.21147759999997],[16.3801776,48.211467700000014],[16.3810643,48.21142040000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no"}},{"type":"Feature","id":"192914507","geometry":{"type":"LineString","coordinates":[[16.3786623,48.20822580000001],[16.3788053,48.20817929999998]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"30","name":"Bäckerstraße","note":"fahrverbot ausgen. räder, lieferverkehr, anrainer","sidewalk":"both","source:maxspeed":"AT:zone:30","tunnel":"building_passage","vehicle":"delivery"}},{"type":"Feature","id":"8043951","geometry":{"type":"LineString","coordinates":[[16.3788693,48.20907729999999],[16.379005,48.209037300000006],[16.3796039,48.208707499999974],[16.3796767,48.208681799999994],[16.3797404,48.208688800000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Predigergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone","surface":"cobblestone"}},{"type":"Feature","id":"359891028","geometry":{"type":"LineString","coordinates":[[16.3789724,48.20947150000001],[16.3789303,48.209557700000005],[16.3789132,48.20964759999998],[16.3788904,48.209831199999996]]},"properties":{"fixme":"ist das stück wirklich wohnstraße?","highway":"residential","lit":"yes","maxspeed":"30","name":"Postgasse","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"346399778","geometry":{"type":"LineString","coordinates":[[16.3788904,48.209831199999996],[16.3789139,48.209873699999974],[16.3789154,48.20999449999999],[16.3789121,48.21004909999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Postgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"352684735","geometry":{"type":"LineString","coordinates":[[16.379369,48.2113296],[16.3793303,48.21118010000001],[16.3792751,48.210990899999985],[16.3792405,48.2108513],[16.3792406,48.2108212],[16.3792412,48.210689100000025],[16.3792234,48.21053230000001],[16.3789777,48.2101562],[16.3789423,48.2101016],[16.3789121,48.21004909999999]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Postgasse","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"26420444","geometry":{"type":"LineString","coordinates":[[16.3824722,48.210827600000044],[16.3824675,48.210771900000026],[16.3823779,48.210411100000016],[16.3822944,48.21007470000001],[16.3822823,48.210037099999994],[16.382246,48.2098795],[16.3822359,48.2098383],[16.3820125,48.2090714],[16.3819737,48.20898270000001],[16.3819221,48.20890830000002],[16.3812984,48.20828589999999],[16.3804942,48.20750290000001],[16.380424,48.20743959999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Stubenring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"473363081","geometry":{"type":"LineString","coordinates":[[16.3823942,48.210786900000016],[16.3823191,48.21050539999999],[16.3822995,48.21042130000001],[16.3822188,48.210075399999994],[16.3822104,48.21004429999999],[16.3822096,48.21004189999999],[16.3821566,48.20988590000002],[16.3821544,48.2098795],[16.3821407,48.20983659999999],[16.3820836,48.20960389999996],[16.3819958,48.20928079999999],[16.3819341,48.209106599999984],[16.3818763,48.20901620000001],[16.3818258,48.208930200000026],[16.3817987,48.20888400000001],[16.3813863,48.20846219999996],[16.3812329,48.2083068],[16.3808371,48.207929500000034],[16.3804213,48.20752600000003]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Stubenring"}},{"type":"Feature","id":"8034529","geometry":{"type":"LineString","coordinates":[[16.3810643,48.21142040000001],[16.3810831,48.211327299999994],[16.3810872,48.21130169999998],[16.3810948,48.21124839999999],[16.3810962,48.21122439999999],[16.3812097,48.21068020000001],[16.3812638,48.21035090000001],[16.3813175,48.210102199999994],[16.3813205,48.21008020000002],[16.381331,48.20999380000001],[16.3813205,48.2098838],[16.3813098,48.2098508],[16.381278,48.209742000000006],[16.3811345,48.20926920000002],[16.3806214,48.20850200000004],[16.3798957,48.207675600000016]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Biberstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"44028854","geometry":{"type":"LineString","coordinates":[[16.3798604,48.20731710000001],[16.3801214,48.207239500000014],[16.3802063,48.20721760000001]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Dr.-Karl-Lueger-Platz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone","surface":"asphalt"}},{"type":"Feature","id":"26421922","geometry":{"type":"LineString","coordinates":[[16.380424,48.20743959999999],[16.3803157,48.20732910000001]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Stubenring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"8034530","geometry":{"type":"LineString","coordinates":[[16.3806527,48.207336],[16.3804892,48.207410100000004],[16.380424,48.20743959999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dr.-Karl-Lueger-Platz","oneway":"yes","sidewalk":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"38176647","geometry":{"type":"LineString","coordinates":[[16.3802063,48.20721760000001],[16.3804774,48.20716110000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Dr.-Karl-Lueger-Platz","oneway":"yes","sidewalk":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"265058774","geometry":{"type":"LineString","coordinates":[[16.3803157,48.20732910000001],[16.3802063,48.20721760000001]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Stubenring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"30018143","geometry":{"type":"LineString","coordinates":[[16.3793778,48.20793170000002],[16.3795701,48.208167300000014],[16.3798767,48.208542800000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Dominikanerbastei","oneway":"yes","oneway:bicycle":"no","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"30018146","geometry":{"type":"LineString","coordinates":[[16.3792423,48.20799379999997],[16.3792791,48.207976900000006]]},"properties":{"bicycle":"yes","foot":"yes","highway":"cycleway","name":"Bäckerstraße"}},{"type":"Feature","id":"104939933","geometry":{"type":"LineString","coordinates":[[16.3792423,48.20799379999997],[16.3790753,48.20807020000001]]},"properties":{"bicycle":"yes","foot":"yes","highway":"cycleway","lit":"yes","name":"Bäckerstraße","sidewalk":"both","tunnel":"building_passage"}},{"type":"Feature","id":"192247779","geometry":{"type":"LineString","coordinates":[[16.3792791,48.207976900000006],[16.3793778,48.20793170000002]]},"properties":{"highway":"cycleway","name":"Bäckerstraße"}},{"type":"Feature","id":"285559321","geometry":{"type":"LineString","coordinates":[[16.3790449,48.20756829999999],[16.3790587,48.20758630000003],[16.3790795,48.207647200000025],[16.3792384,48.207795900000036],[16.3793379,48.20788909999996],[16.3793778,48.20793170000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Dr.-Karl-Lueger-Platz","surface":"sett"}},{"type":"Feature","id":"38176665","geometry":{"type":"LineString","coordinates":[[16.380424,48.20743959999999],[16.3803556,48.20747059999999],[16.3798957,48.207675600000016],[16.3794238,48.20788590000001],[16.3793778,48.20793170000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dr.-Karl-Lueger-Platz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"192251105","geometry":{"type":"LineString","coordinates":[[16.3790954,48.207553899999965],[16.3796653,48.20737750000001],[16.3798604,48.20731710000001]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Dr.-Karl-Lueger-Platz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone","surface":"asphalt"}},{"type":"Feature","id":"30018145","geometry":{"type":"LineString","coordinates":[[16.3788053,48.20817929999998],[16.3790753,48.20807020000001]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"30","name":"Bäckerstraße","noexit":"yes","note":"fahrverbot ausgen. räder, lieferverkehr, anrainer","sidewalk":"both","source:maxspeed":"AT:zone:30","vehicle":"delivery"}},{"type":"Feature","id":"26565201","geometry":{"type":"LineString","coordinates":[[16.3787531,48.207653600000015],[16.3790449,48.20756829999999],[16.3790954,48.207553899999965]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Wollzeile","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone","tourist_bus":"no","traffic_calming":"table"}},{"type":"Feature","id":"191072102","geometry":{"type":"LineString","coordinates":[[16.3799645,48.20699960000002],[16.379632,48.206669999999974]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Parkring","sidewalk":"right"}},{"type":"Feature","id":"229033716","geometry":{"type":"LineString","coordinates":[[16.3775516,48.21192940000003],[16.378161,48.21177250000002],[16.3785219,48.21169710000004],[16.3786681,48.21166580000002],[16.3787075,48.21165719999999]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no","turn:lanes":"left|through|through|through|through"}},{"type":"Feature","id":"348882575","geometry":{"type":"LineString","coordinates":[[16.3752739,48.211720299999996],[16.3752663,48.211997499999995],[16.3753103,48.21208569999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Rabensteig","sidewalk":"both"}},{"type":"Feature","id":"44005502","geometry":{"type":"LineString","coordinates":[[16.3760225,48.21162429999998],[16.3761639,48.211783],[16.3761943,48.21181659999999]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Rotenturmstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"185849935","geometry":{"type":"LineString","coordinates":[[16.3780152,48.21135799999999],[16.3782843,48.21132940000001],[16.3784089,48.211307799999986],[16.3784735,48.211295699999994],[16.3785363,48.211284000000035]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Schwedenplatz"}},{"type":"Feature","id":"347015852","geometry":{"type":"LineString","coordinates":[[16.3789724,48.20947150000001],[16.3788783,48.209507599999995],[16.3787759,48.20954599999999],[16.3787007,48.2095539],[16.3786313,48.20954760000001]]},"properties":{"highway":"living_street","name":"Schönlaterngasse","note":"n.b.: ist hier keine Einbahn","sidewalk":"left"}},{"type":"Feature","id":"29250956","geometry":{"type":"LineString","coordinates":[[16.3783052,48.2109308],[16.3782376,48.21094870000002],[16.3782123,48.21095439999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hafnersteig","noexit":"yes","sidewalk":"right"}},{"type":"Feature","id":"347034704","geometry":{"type":"LineString","coordinates":[[16.3793303,48.21118010000001],[16.3792563,48.21118849999999],[16.3787028,48.21125140000001],[16.3786164,48.2112683],[16.3785363,48.211284000000035]]},"properties":{"bicycle":"delivery","highway":"service","horse":"delivery","lit":"yes","maxheight":"2.6","motor_vehicle":"delivery","name":"Schwedenplatz","note":"Allgemeines Fahrverbot außer Zustellung","surface":"paved","vehicle":"delivery"}},{"type":"Feature","id":"29250955","geometry":{"type":"LineString","coordinates":[[16.3771298,48.211169100000006],[16.3770835,48.21153240000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Hafnersteig"}},{"type":"Feature","id":"133677621","geometry":{"type":"LineString","coordinates":[[16.3768259,48.2122631],[16.3769791,48.212201300000004],[16.3772328,48.21211640000001],[16.377511,48.212031499999995],[16.3777925,48.21196539999997],[16.3783375,48.211838099999994],[16.3785633,48.211795499999994],[16.3786148,48.21177990000004],[16.3787086,48.21175149999999],[16.378757,48.211736900000005],[16.3788209,48.211720000000014],[16.3789184,48.21169739999996],[16.3789441,48.211691400000035],[16.3790974,48.211670999999996],[16.3792764,48.2116599],[16.3794346,48.21165780000001],[16.3796825,48.2116331],[16.3799048,48.211611000000005],[16.3799896,48.2115833],[16.3805156,48.211558300000036],[16.3809439,48.21153939999999],[16.3811816,48.21152710000001],[16.3815598,48.21151370000001],[16.3823151,48.21151929999999],[16.3825372,48.211533799999984],[16.3826426,48.21152459999999],[16.3827339,48.211501]]},"properties":{"foot":"yes","footway":"sidewalk","highway":"cycleway","name":"Franz-Josefs-Kai","segregated":"no"}},{"type":"Feature","id":"26565476","geometry":{"type":"LineString","coordinates":[[16.3769443,48.21008130000001],[16.3774278,48.2105426]]},"properties":{"highway":"living_street","name":"Wolfengasse"}},{"type":"Feature","id":"346403315","geometry":{"type":"LineString","coordinates":[[16.3782123,48.21095439999999],[16.3778194,48.211054399999995],[16.3771298,48.211169100000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hafnersteig","noexit":"yes","sidewalk":"right","surface":"cobblestone"}},{"type":"Feature","id":"25950762","geometry":{"type":"LineString","coordinates":[[16.3779148,48.2103644],[16.3779551,48.210419599999994],[16.3781542,48.2106876],[16.378208,48.21077270000001],[16.3783052,48.2109308],[16.3784032,48.21108850000002],[16.3784187,48.21111379999999],[16.3785363,48.211284000000035],[16.3786076,48.211391100000014],[16.378628,48.2114225],[16.378698,48.21151630000003],[16.3787742,48.21164189999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Laurenzerberg","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"186174716","geometry":{"type":"LineString","coordinates":[[16.3771561,48.211098100000015],[16.3771597,48.2110467]]},"properties":{"highway":"steps","incline":"up","lit":"yes","name":"Hafnersteig","step_count":"20"}},{"type":"Feature","id":"26565479","geometry":{"type":"LineString","coordinates":[[16.3777177,48.20994289999999],[16.377818,48.21003509999997],[16.3780515,48.2103166]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"30","name":"Drachengasse","noexit":"yes","note":"living_street ist zwar nicht beschildert, aber am besten zutreffend","sidewalk":"no"}},{"type":"Feature","id":"9225239","geometry":{"type":"LineString","coordinates":[[16.3789121,48.21004909999999],[16.37882,48.210079500000006],[16.3786473,48.2101222],[16.3783096,48.210222199999976],[16.3780515,48.2103166],[16.3779148,48.2103644]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fleischmarkt","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"29067496","geometry":{"type":"LineString","coordinates":[[16.3757114,48.211275400000005],[16.3757857,48.21124700000004],[16.3760402,48.21114969999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Steyrerhof"}},{"type":"Feature","id":"4952926","geometry":{"type":"LineString","coordinates":[[16.3758148,48.21139170000001],[16.375301,48.211545099999995]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Rotenturmstraße"}},{"type":"Feature","id":"29067451","geometry":{"type":"LineString","coordinates":[[16.376548,48.212535599999995],[16.3765731,48.2124809],[16.3770968,48.21227329999999],[16.3773433,48.21214649999999],[16.3779985,48.2119625],[16.3783318,48.2119026],[16.3789094,48.211823100000004],[16.3790466,48.21179900000001],[16.3793003,48.21178079999996],[16.3801316,48.211688400000014],[16.3806346,48.21166089999997],[16.3810459,48.21164039999999],[16.3812668,48.21163229999999],[16.3819869,48.21162150000001],[16.3826832,48.2116523],[16.3832287,48.21170349999997],[16.3833574,48.21165740000001],[16.3836325,48.21169029999999],[16.3838693,48.211713],[16.3840299,48.21171079999999],[16.3841682,48.2116824],[16.3842525,48.211646900000005],[16.3843233,48.21159499999996],[16.3843816,48.211533],[16.3844006,48.2114775],[16.3843843,48.211414700000006],[16.3843721,48.21136960000001]]},"properties":{"bicycle":"designated","foot":"yes","highway":"cycleway","layer":"-1","lcn":"yes","name":"Rotenturmufer","segregated":"no","source:surface":"survey","surface":"asphalt"}},{"type":"Feature","id":"352166817","geometry":{"type":"LineString","coordinates":[[16.3761639,48.211783],[16.376199,48.21177199999997],[16.3762262,48.21176379999997],[16.3766742,48.2116278],[16.376851,48.21157419999997],[16.3769142,48.211555000000004],[16.3770835,48.21153240000001],[16.377553,48.21144459999999],[16.3779831,48.2113641],[16.3780152,48.21135799999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"25950771","geometry":{"type":"LineString","coordinates":[[16.3758246,48.21042910000003],[16.3758774,48.21039110000001],[16.376114,48.21028050000001],[16.3762661,48.21019089999996]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Grashofgasse","noexit":"yes","sidewalk":"left","surface":"asphalt"}},{"type":"Feature","id":"4952869","geometry":{"type":"LineString","coordinates":[[16.3754516,48.21095819999999],[16.3755278,48.210935800000016],[16.3758682,48.210813400000006],[16.376031,48.21078410000001],[16.3770114,48.21065620000002],[16.3770729,48.210650999999984],[16.3771996,48.21062749999999],[16.3772848,48.21059579999999],[16.3774278,48.2105426],[16.3779148,48.2103644]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fleischmarkt","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"25950770","geometry":{"type":"LineString","coordinates":[[16.376031,48.21078410000001],[16.3760051,48.21071810000001],[16.3758246,48.21042910000003]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Köllnerhofgasse","sidewalk":"both"}},{"type":"Feature","id":"9225440","geometry":{"type":"LineString","coordinates":[[16.3770729,48.210650999999984],[16.3772089,48.2107383],[16.3772287,48.21077330000003],[16.3771994,48.21085640000001],[16.3771414,48.2109744],[16.3771146,48.21103179999997],[16.3770755,48.211071900000036],[16.3759943,48.2114866],[16.3759236,48.21151370000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Griechengasse","surface":"cobblestone"}},{"type":"Feature","id":"116531174","geometry":{"type":"LineString","coordinates":[[16.3758246,48.21042910000003],[16.37526,48.20982539999997]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Köllnerhofgasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"26420460","geometry":{"type":"LineString","coordinates":[[16.3785664,48.208240200000006],[16.3785623,48.20818339999997],[16.3784324,48.20781410000001],[16.378412,48.20775020000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Postgasse","oneway":"yes","sidewalk":"left","source:maxspeed":"AT:zone","surface":"asphalt"}},{"type":"Feature","id":"30018144","geometry":{"type":"LineString","coordinates":[[16.3785664,48.208240200000006],[16.3786623,48.20822580000001]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"30","name":"Bäckerstraße","note":"fahrverbot ausgen. räder, lieferverkehr, anrainer","sidewalk":"both","source:maxspeed":"AT:zone:30","vehicle":"delivery"}},{"type":"Feature","id":"26420450","geometry":{"type":"LineString","coordinates":[[16.3785664,48.208240200000006],[16.3785278,48.20837280000001],[16.3785395,48.208502299999964],[16.3786032,48.20869790000003],[16.3787142,48.208886500000006],[16.3788693,48.20907729999999],[16.3789696,48.2092054]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Postgasse","sidewalk":"both","source:maxspeed":"AT:zone","surface":"asphalt"}},{"type":"Feature","id":"9225349","geometry":{"type":"LineString","coordinates":[[16.3788904,48.209831199999996],[16.3788014,48.209738200000004],[16.3786313,48.20954760000001],[16.3784775,48.209388700000005],[16.3783328,48.20924260000001],[16.3782731,48.209234700000025]]},"properties":{"highway":"living_street","lit":"yes","name":"Schönlaterngasse","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"7830308","geometry":{"type":"LineString","coordinates":[[16.3784863,48.20702829999999],[16.3789988,48.2075145],[16.3790313,48.20754999999997],[16.3790449,48.20756829999999]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Stubenbastei","surface":"sett"}},{"type":"Feature","id":"8034540","geometry":{"type":"LineString","coordinates":[[16.3773043,48.208517899999975],[16.3773261,48.208546600000034],[16.3773023,48.20864979999999],[16.3773537,48.2087142],[16.3774619,48.20884610000002]]},"properties":{"highway":"living_street","lit":"yes","name":"Dr.-Ignaz-Seipel-Platz","name:de":"Doktor Ignaz Seipel Platz","old_name":"Universitätsplatz","surface":"cobblestone"}},{"type":"Feature","id":"116761140","geometry":{"type":"LineString","coordinates":[[16.3774432,48.208613000000014],[16.3775097,48.2085884]]},"properties":{"highway":"living_street","lit":"yes","name":"Bäckerstraße","sidewalk":"right","tunnel":"building_passage"}},{"type":"Feature","id":"39314766","geometry":{"type":"LineString","coordinates":[[16.3773023,48.20864979999999],[16.3774432,48.208613000000014]]},"properties":{"highway":"living_street","lit":"yes","name":"Bäckerstraße","surface":"cobblestone"}},{"type":"Feature","id":"26565439","geometry":{"type":"LineString","coordinates":[[16.3773265,48.20898030000001],[16.3773493,48.209004100000044],[16.3773571,48.20901219999999],[16.3775491,48.209224800000015],[16.3777223,48.2094348],[16.3777255,48.20943829999999],[16.3777376,48.20945119999999]]},"properties":{"access":"no","fixme":"recheck periodically","highway":"footway","lit":"yes","name":"Jesuitengasse","note":"Derzeit durch Zäune abgesperrt, Bauschutt/Abbruchschutt (oder Material, das so aussieht) liegt herum.","note:en":"Currently fenced off. Apparent construction or destruction detritus lies around.","surface":"cobblestone"}},{"type":"Feature","id":"116761145","geometry":{"type":"LineString","coordinates":[[16.3778758,48.20845249999999],[16.3779222,48.20843529999999]]},"properties":{"highway":"living_street","lit":"yes","name":"Bäckerstraße","sidewalk":"right","tunnel":"building_passage"}},{"type":"Feature","id":"116761144","geometry":{"type":"LineString","coordinates":[[16.3775097,48.2085884],[16.3778758,48.20845249999999]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Bäckerstraße","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"43364710","geometry":{"type":"LineString","coordinates":[[16.3774491,48.2080292],[16.3775605,48.20820259999999]]},"properties":{"highway":"pedestrian","name":"Riemergasse","surface":"concrete"}},{"type":"Feature","id":"116761148","geometry":{"type":"LineString","coordinates":[[16.3779222,48.20843529999999],[16.3782139,48.208329700000036],[16.3782871,48.208311899999984],[16.3785664,48.208240200000006]]},"properties":{"highway":"living_street","lit":"yes","name":"Bäckerstraße","sidewalk":"right"}},{"type":"Feature","id":"192797122","geometry":{"type":"LineString","coordinates":[[16.3771315,48.2086985],[16.3773023,48.20864979999999]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Bäckerstraße","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"25375537","geometry":{"type":"LineString","coordinates":[[16.3753556,48.20872880000002],[16.3756628,48.20894470000002],[16.3759977,48.20917080000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Essiggasse","surface":"asphalt"}},{"type":"Feature","id":"29066138","geometry":{"type":"LineString","coordinates":[[16.3774619,48.20884610000002],[16.3773811,48.208947300000005],[16.3773265,48.20898030000001],[16.3767104,48.20924209999998],[16.3766792,48.20925590000002],[16.3766157,48.209282900000034],[16.3765493,48.209311799999995],[16.3761913,48.20947389999998],[16.3761253,48.20950490000001],[16.375725,48.209693000000016],[16.3755761,48.209747100000016],[16.37526,48.20982539999997]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Sonnenfelsgasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"26565515","geometry":{"type":"LineString","coordinates":[[16.3763191,48.20903290000001],[16.3766157,48.209282900000034]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Windhaaggasse","surface":"asphalt"}},{"type":"Feature","id":"346399780","geometry":{"type":"LineString","coordinates":[[16.3782731,48.209234700000025],[16.3777376,48.20945119999999],[16.3775582,48.209510999999964],[16.3774325,48.20953530000003],[16.3773649,48.209541099999996],[16.3772867,48.2095396],[16.3772,48.2095181]]},"properties":{"attraction":"history;shooting_location","description:en":"Famous, small, winding alley in the Vienna city centre depected on stamps and coins. (Source: wikipedia:de)","highway":"living_street","lit":"yes","maxspeed":"5","name":"Schönlaterngasse","oneway":"yes","sidewalk":"right","tourism":"attraction","wikipedia":"de:Schönlaterngasse","wikipedia:en":"Schönlaterngasse"}},{"type":"Feature","id":"346399779","geometry":{"type":"LineString","coordinates":[[16.3772,48.2095181],[16.3770085,48.20943009999999],[16.3767104,48.20924209999998]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Schönlaterngasse","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"8072989","geometry":{"type":"LineString","coordinates":[[16.3771326,48.207622600000036],[16.3771859,48.207683600000024],[16.3774092,48.20797809999999],[16.3774491,48.2080292]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Riemergasse","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"26565618","geometry":{"type":"LineString","coordinates":[[16.3771326,48.207622600000036],[16.3770876,48.207567599999976],[16.3767388,48.207161600000035]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Riemergasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"8034547","geometry":{"type":"LineString","coordinates":[[16.3767388,48.207161600000035],[16.3768556,48.20710890000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Jakobergasse","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"345873399","geometry":{"type":"LineString","coordinates":[[16.375822,48.2073872],[16.3760478,48.207697699999954],[16.3762798,48.20799650000001]]},"properties":{"highway":"service","lit":"yes","name":"Kumpfgasse","sidewalk":"no","surface":"cobblestone","vehicle":"destination"}},{"type":"Feature","id":"471847010","geometry":{"type":"LineString","coordinates":[[16.3840978,48.20586900000001],[16.3839819,48.205905599999994]]},"properties":{"covered":"yes","highway":"footway","indoor":"yes","name":"Raiffeisen Passage","tunnel":"building_passage"}},{"type":"Feature","id":"471847011","geometry":{"type":"LineString","coordinates":[[16.3839819,48.205905599999994],[16.3841022,48.2060735]]},"properties":{"covered":"yes","highway":"footway","indoor":"yes","name":"Raiffeisen Passage","tunnel":"building_passage"}},{"type":"Feature","id":"481469024","geometry":{"type":"LineString","coordinates":[[16.3837509,48.206321900000006],[16.384184,48.2061932],[16.3842279,48.20618009999998]]},"properties":{"bicycle":"yes","bus":"yes","highway":"pedestrian","lit":"yes","maxspeed":"50","motor_vehicle":"no","name":"Landstraßer Hauptstraße","surface":"concrete"}},{"type":"Feature","id":"13440005","geometry":{"type":"LineString","coordinates":[[16.3837509,48.206321900000006],[16.3838132,48.206406500000014],[16.3839977,48.206657199999995],[16.3840358,48.206708700000036],[16.38435,48.2071411]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Gigergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"189184275","geometry":{"type":"LineString","coordinates":[[16.3839801,48.20568299999999],[16.3840978,48.20586900000001]]},"properties":{"covered":"yes","highway":"footway","indoor":"yes","name":"Raiffeisen Passage","tunnel":"building_passage"}},{"type":"Feature","id":"312729489","geometry":{"type":"LineString","coordinates":[[16.3844352,48.205776199999974],[16.3841175,48.20586370000001]]},"properties":{"highway":"footway","indoor":"yes","level":"0","name":"W3"}},{"type":"Feature","id":"493689935","geometry":{"type":"LineString","coordinates":[[16.3841175,48.20586370000001],[16.3840978,48.20586900000001]]},"properties":{"covered":"yes","highway":"footway","indoor":"yes","name":"Raiffeisen Passage","tunnel":"building_passage"}},{"type":"Feature","id":"13439381","geometry":{"type":"LineString","coordinates":[[16.38285,48.20657109999999],[16.3829843,48.2066461],[16.3830264,48.206666299999995],[16.3832425,48.20697050000004],[16.3835525,48.20739900000001],[16.3836718,48.207647399999985]]},"properties":{"highway":"residential","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"318007486","geometry":{"type":"LineString","coordinates":[[16.3827453,48.206603200000046],[16.38285,48.20657109999999]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Landstraßer Hauptstraße"}},{"type":"Feature","id":"101272246","geometry":{"type":"LineString","coordinates":[[16.3849876,48.211056299999996],[16.3848481,48.210419400000006],[16.3847211,48.209778099999994],[16.3846535,48.2094089],[16.3845578,48.209111199999995],[16.3843093,48.20868999999999],[16.3840765,48.20837039999998],[16.3840155,48.2082867],[16.3839611,48.2082173],[16.3828121,48.206692299999986],[16.3827453,48.206603200000046]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"417857940","geometry":{"type":"LineString","coordinates":[[16.3826359,48.20663300000001],[16.3826692,48.20662400000003],[16.3827453,48.206603200000046]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Landstraßer Hauptstraße","source:maxspeed":"sign"}},{"type":"Feature","id":"13431697","geometry":{"type":"LineString","coordinates":[[16.38285,48.20657109999999],[16.3829068,48.206662300000005],[16.3834698,48.2074226],[16.3836718,48.207647399999985],[16.3838217,48.207814300000024],[16.3840991,48.20817130000003],[16.3841522,48.208239899999995],[16.3842208,48.208327],[16.3844466,48.20861360000001],[16.3846626,48.209089000000034],[16.3847138,48.2092614],[16.3847565,48.20940540000001],[16.3848379,48.20977340000002],[16.3849373,48.21023669999997],[16.3849865,48.21041869999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Vordere Zollamtsstraße","oneway":"yes","ref":"B1","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"26564982","geometry":{"type":"LineString","coordinates":[[16.38285,48.20657109999999],[16.3830156,48.20652340000001],[16.3837509,48.206321900000006]]},"properties":{"highway":"residential","maxspeed":"50","name":"Landstraßer Hauptstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"67571241","geometry":{"type":"LineString","coordinates":[[16.3812064,48.20631689999999],[16.3811766,48.206222499999996]]},"properties":{"bridge":"yes","foot":"yes","highway":"footway","layer":"1","name":"Elfriede-Gerstl-Steg"}},{"type":"Feature","id":"23649016","geometry":{"type":"LineString","coordinates":[[16.3819055,48.20562109999997],[16.3815708,48.2057308]]},"properties":{"bicycle":"no","bridge":"yes","foot":"yes","highway":"footway","layer":"1","name":"Kleine Ungarbrücke","wikidata":"Q1746540","wikipedia":"de:Kleine Ungarbrücke"}},{"type":"Feature","id":"378750512","geometry":{"type":"LineString","coordinates":[[16.3836854,48.20442459999998],[16.3841501,48.20435549999999]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"left|slight_right|right","view":"open"}},{"type":"Feature","id":"378750516","geometry":{"type":"LineString","coordinates":[[16.3839403,48.204455800000005],[16.3836854,48.20442459999998]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"left|left","view":"open"}},{"type":"Feature","id":"13430499","geometry":{"type":"LineString","coordinates":[[16.3841701,48.204449100000005],[16.3839403,48.204455800000005]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"3","layer":"1","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"left|left|right","view":"open"}},{"type":"Feature","id":"378750513","geometry":{"type":"LineString","coordinates":[[16.3839403,48.204455800000005],[16.3836036,48.20451190000003]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"1","layer":"1","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"right","view":"open"}},{"type":"Feature","id":"227682739","geometry":{"type":"LineString","coordinates":[[16.3834316,48.20433489999999],[16.3835521,48.20438680000004],[16.3836854,48.20442459999998]]},"properties":{"bridge":"yes","highway":"secondary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","view":"open"}},{"type":"Feature","id":"227682738","geometry":{"type":"LineString","coordinates":[[16.3834361,48.2044425],[16.3836854,48.20442459999998]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"4","lanes:backward":"2","lanes:forward":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"no","surface":"asphalt","turn:lanes:backward":"left|left","view":"open"}},{"type":"Feature","id":"227682737","geometry":{"type":"LineString","coordinates":[[16.3832341,48.20447250000001],[16.3832579,48.20461560000001]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"378750515","geometry":{"type":"LineString","coordinates":[[16.3836036,48.20451190000003],[16.3834402,48.204539600000004]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"right|right","view":"open"}},{"type":"Feature","id":"127061657","geometry":{"type":"LineString","coordinates":[[16.3834402,48.204539600000004],[16.3834212,48.204542300000014],[16.3833595,48.2045526],[16.3833178,48.20456469999999],[16.3832924,48.204581700000006],[16.3832579,48.20461560000001]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","turn:lanes":"right|right","view":"open"}},{"type":"Feature","id":"227682741","geometry":{"type":"LineString","coordinates":[[16.3830986,48.20460670000003],[16.3831274,48.20453979999999],[16.3831469,48.20451369999998],[16.3831844,48.204488999999995],[16.3832341,48.20447250000001]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt","view":"open"}},{"type":"Feature","id":"5105738","geometry":{"type":"LineString","coordinates":[[16.3827453,48.206603200000046],[16.3826654,48.206486900000016],[16.3824501,48.206185000000005],[16.3824034,48.206085900000005],[16.3823743,48.205929200000014],[16.3824109,48.20570090000001],[16.3825451,48.20551649999996],[16.3829093,48.20524230000001],[16.3830852,48.205005400000005],[16.38312,48.20488790000002],[16.3831198,48.204769],[16.3831056,48.20466160000001],[16.3831011,48.20463319999996],[16.3830986,48.20460670000003]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Stadtpark","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"13431689","geometry":{"type":"LineString","coordinates":[[16.3832579,48.20461560000001],[16.3832611,48.2046335],[16.3832676,48.20480029999996],[16.3832616,48.20487510000001],[16.3832151,48.205044800000024],[16.383138,48.20515259999999],[16.3827155,48.20552029999999],[16.3825823,48.205679299999986],[16.3825109,48.20583379999999],[16.3825097,48.20596599999999],[16.3825372,48.2060678],[16.3825612,48.20613850000001],[16.3826449,48.2062717],[16.382772,48.2064532],[16.38285,48.20657109999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Stadtpark","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"299346579","geometry":{"type":"LineString","coordinates":[[16.3832341,48.20447250000001],[16.3831554,48.2044645],[16.3831159,48.20445599999999],[16.3830794,48.2044367],[16.3830526,48.20441679999999]]},"properties":{"highway":"secondary","lanes":"2","name":"Große Ungarbrücke","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"481469026","geometry":{"type":"LineString","coordinates":[[16.3830986,48.20460670000003],[16.3830526,48.20441679999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"227682740","geometry":{"type":"LineString","coordinates":[[16.3832341,48.20447250000001],[16.3833466,48.204453900000004],[16.3834037,48.20444610000001],[16.3834361,48.2044425]]},"properties":{"highway":"secondary","lanes":"4","lanes:backward":"2","lanes:forward":"2","lit":"yes","maxspeed":"50","name":"Große Ungarbrücke","oneway":"no","surface":"asphalt","turn:lanes:backward":"left|left","view":"open"}},{"type":"Feature","id":"31400897","geometry":{"type":"LineString","coordinates":[[16.3839286,48.19916090000001],[16.3837453,48.200573899999995],[16.3834461,48.201300300000014],[16.3831812,48.20182890000001],[16.3828724,48.202080799999976]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Reisnerstraße","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"13430527","geometry":{"type":"LineString","coordinates":[[16.3849187,48.19916749999999],[16.3843145,48.20151659999996],[16.3842513,48.20168960000004],[16.3841449,48.202038199999976],[16.3839756,48.20266320000002]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Rechte Bahngasse","note":"Since reconstruction of the Beatrixbrücke in 2015, one-way direction is changed from south to north!","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt","view":"open"}},{"type":"Feature","id":"29075854","geometry":{"type":"LineString","coordinates":[[16.3839756,48.20266320000002],[16.3833943,48.202348900000004],[16.3828724,48.202080799999976]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Beatrixgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"497922598","geometry":{"type":"LineString","coordinates":[[16.3840832,48.202707299999986],[16.3839756,48.20266320000002]]},"properties":{"highway":"residential","layer":"1","maxspeed":"30","name":"Beatrixgasse","oneway":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"28171642","geometry":{"type":"LineString","coordinates":[[16.383392,48.20424800000001],[16.3834086,48.204130299999974],[16.3834334,48.20400990000002],[16.3834462,48.2039647],[16.3834837,48.203869499999996],[16.3835308,48.20376670000002],[16.38364,48.20357339999998],[16.3837439,48.20337430000001],[16.3838198,48.20321389999998],[16.3839334,48.202920199999994],[16.3839542,48.20285580000001],[16.3839707,48.202788699999985],[16.383979,48.20271660000003],[16.3839756,48.20266320000002]]},"properties":{"foot":"yes","highway":"cycleway","lit":"yes","name":"Rechte Bahngasse","segregated":"yes"}},{"type":"Feature","id":"497922599","geometry":{"type":"LineString","coordinates":[[16.3842777,48.20277360000006],[16.3840832,48.202707299999986]]},"properties":{"bridge":"yes","highway":"residential","layer":"1","maxspeed":"30","name":"Beatrixbrücke","oneway":"no","source:maxspeed":"AT:zone:30","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"5889555","geometry":{"type":"LineString","coordinates":[[16.3837658,48.197269000000006],[16.3836456,48.195633799999996],[16.3836433,48.19560229999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Reisnerstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5889553","geometry":{"type":"LineString","coordinates":[[16.3829839,48.199117],[16.3830583,48.19825739999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gottfried-Keller-Gasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Gottfried Keller"}},{"type":"Feature","id":"503176372","geometry":{"type":"LineString","coordinates":[[16.3829839,48.199117],[16.3839286,48.19916090000001],[16.3849187,48.19916749999999]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"50","name":"Neulinggasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5889602","geometry":{"type":"LineString","coordinates":[[16.3837658,48.197269000000006],[16.3838485,48.198289700000004],[16.3839286,48.19916090000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Reisnerstraße","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"315639227","geometry":{"type":"LineString","coordinates":[[16.3816552,48.20096190000001],[16.382609,48.201109900000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bayerngasse","oneway":"no"}},{"type":"Feature","id":"481469025","geometry":{"type":"LineString","coordinates":[[16.3828669,48.20398660000001],[16.3829985,48.20410290000001],[16.3831189,48.204256799999996],[16.3831659,48.2043295],[16.3831907,48.204367399999995],[16.3832341,48.20447250000001]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"5889584","geometry":{"type":"LineString","coordinates":[[16.3828026,48.20060440000003],[16.3828653,48.20029299999999],[16.3829455,48.19983619999999],[16.3829718,48.19934749999999],[16.3829839,48.199117]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Am Modenapark","oneway":"yes","oneway:bicycle":"no","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"13413952","geometry":{"type":"LineString","coordinates":[[16.382609,48.201109900000006],[16.3827198,48.20087699999999],[16.3828026,48.20060440000003]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Gottfried-Keller-Gasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","wikipedia":"de:Gottfried Keller"}},{"type":"Feature","id":"5889572","geometry":{"type":"LineString","coordinates":[[16.3820989,48.19907839999999],[16.3820841,48.19929809999999],[16.3820429,48.19962789999997],[16.3819795,48.199952800000005],[16.3818955,48.20024219999999],[16.3818444,48.20042699999999]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Am Modenapark","oneway":"yes","oneway:bicycle":"no","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5889577","geometry":{"type":"LineString","coordinates":[[16.3824073,48.19613850000002],[16.3824102,48.1961829],[16.3824821,48.19727979999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Metternichgasse","oneway":"yes","source":"yahoo","wikipedia":"de:Klemens Wenzel Lothar von Metternich"}},{"type":"Feature","id":"10142888","geometry":{"type":"LineString","coordinates":[[16.3820989,48.19907839999999],[16.3824121,48.1990921],[16.3825417,48.19909770000001],[16.3826498,48.199102400000015],[16.3829839,48.199117]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"50","name":"Am Modenapark","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5889600","geometry":{"type":"LineString","coordinates":[[16.3824821,48.19727979999999],[16.3825236,48.19734940000001],[16.3825407,48.19764169999999],[16.3825178,48.1977091],[16.3825546,48.19822060000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Metternichgasse","oneway":"yes","source":"yahoo","surface":"asphalt","wikipedia":"de:Klemens Wenzel Lothar von Metternich"}},{"type":"Feature","id":"5889556","geometry":{"type":"LineString","coordinates":[[16.3821629,48.198217099999994],[16.3820989,48.19907839999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Grimmelshausengasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt","wikipedia":"de:Hans Jakob Christoffel von Grimmelshausen"}},{"type":"Feature","id":"5889617","geometry":{"type":"LineString","coordinates":[[16.381139,48.19733690000001],[16.3824821,48.19727979999999],[16.3825978,48.19730479999998],[16.3837658,48.197269000000006],[16.3854235,48.197217499999965]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Jaurèsgasse","oneway":"yes","source":"yahoo","wikipedia":"de:Jean Jaurès"}},{"type":"Feature","id":"503176371","geometry":{"type":"LineString","coordinates":[[16.3810313,48.1990246],[16.3820989,48.19907839999999]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"50","name":"Neulinggasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"13413999","geometry":{"type":"LineString","coordinates":[[16.3818444,48.20042699999999],[16.3816552,48.20096190000001],[16.3814687,48.20149520000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Grimmelshausengasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","wikipedia":"de:Hans Jakob Christoffel von Grimmelshausen"}},{"type":"Feature","id":"315639229","geometry":{"type":"LineString","coordinates":[[16.3828724,48.202080799999976],[16.3823707,48.201800399999996],[16.3820268,48.2016457],[16.3814687,48.20149520000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Beatrixgasse","oneway":"yes","oneway:bicycle":"no","surface":"cobblestone","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"44166606","geometry":{"type":"LineString","coordinates":[[16.3828724,48.202080799999976],[16.3817253,48.20297640000001],[16.3816712,48.203018799999995],[16.3816157,48.203068],[16.3815651,48.203113099999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Reisnerstraße","oneway":"yes","source":"yahoo","view":"narrow"}},{"type":"Feature","id":"81299493","geometry":{"type":"LineString","coordinates":[[16.3810313,48.1990246],[16.3810074,48.198769700000014],[16.3810415,48.19839919999998],[16.3810942,48.198189799999994],[16.3810936,48.19777139999999],[16.381139,48.19733690000001],[16.381194,48.196818699999994],[16.3811895,48.1967889],[16.3811716,48.19672270000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salesianergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"26564864","geometry":{"type":"LineString","coordinates":[[16.3802299,48.204153399999996],[16.3805878,48.2038742]]},"properties":{"bicycle":"no","bridge":"yes","foot":"yes","highway":"footway","layer":"1","lit":"yes","name":"Stadtparksteg","surface":"wood","wikipedia":"de:Stadtparksteg"}},{"type":"Feature","id":"8072641","geometry":{"type":"LineString","coordinates":[[16.3779509,48.20595929999999],[16.3788632,48.2068544]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Cobdengasse","sidewalk":"both"}},{"type":"Feature","id":"8061593","geometry":{"type":"LineString","coordinates":[[16.3797454,48.206448800000004],[16.3796011,48.206512599999996],[16.3795463,48.2065369],[16.3795114,48.20655239999999]]},"properties":{"highway":"residential","name":"Zedlitzgasse","oneway":"yes"}},{"type":"Feature","id":"26421952","geometry":{"type":"LineString","coordinates":[[16.379632,48.206669999999974],[16.3795114,48.20655239999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Parkring","sidewalk":"right"}},{"type":"Feature","id":"8072634","geometry":{"type":"LineString","coordinates":[[16.3780176,48.20657830000002],[16.3784863,48.20702829999999]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Stubenbastei"}},{"type":"Feature","id":"30322868","geometry":{"type":"LineString","coordinates":[[16.3804774,48.20716110000001],[16.38041,48.2070923],[16.3803747,48.20705800000002],[16.380141,48.206832400000025],[16.3797454,48.206448800000004]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Parkring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"26421933","geometry":{"type":"LineString","coordinates":[[16.3795114,48.20655239999999],[16.3786024,48.20565830000001]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Parkring","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"8052922","geometry":{"type":"LineString","coordinates":[[16.3788315,48.20555630000001],[16.378696,48.205614699999984],[16.3786024,48.20565830000001],[16.3785331,48.205690300000015],[16.3779509,48.20595929999999],[16.3776433,48.20609719999999],[16.3775659,48.206130400000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Liebenberggasse","sidewalk":"both"}},{"type":"Feature","id":"8024755","geometry":{"type":"LineString","coordinates":[[16.3780176,48.20657830000002],[16.3776209,48.20618759999999],[16.3775659,48.206130400000006]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Stubenbastei","oneway":"yes","oneway:bicycle":"no","sidewalk":"both"}},{"type":"Feature","id":"13415393","geometry":{"type":"LineString","coordinates":[[16.3801049,48.20175169999999],[16.3801945,48.20186129999996],[16.3807121,48.20239320000002],[16.3814968,48.202979200000016],[16.3815392,48.20301090000004],[16.3816157,48.203068],[16.3828669,48.20398660000001]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"13430470","geometry":{"type":"LineString","coordinates":[[16.3807956,48.2013542],[16.3802796,48.20169899999999],[16.3802106,48.20172099999999],[16.3801775,48.20173059999999],[16.3801049,48.20175169999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Beatrixgasse","surface":"cobblestone","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"13413672","geometry":{"type":"LineString","coordinates":[[16.3808552,48.20085879999999],[16.3816552,48.20096190000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bayerngasse","oneway":"yes"}},{"type":"Feature","id":"34254051","geometry":{"type":"LineString","coordinates":[[16.3807956,48.2013542],[16.3807223,48.20123529999998],[16.3807751,48.20107619999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rudolf-Sallinger-Platz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"13414556","geometry":{"type":"LineString","coordinates":[[16.3811156,48.2014125],[16.3811446,48.20131169999999],[16.380945,48.201096699999994],[16.3807751,48.20107619999999]]},"properties":{"access":"private","foot":"yes","highway":"service","name":"Rudolf-Sallinger-Platz","wikipedia":"de:Rudolf Sallinger"}},{"type":"Feature","id":"315639228","geometry":{"type":"LineString","coordinates":[[16.3814687,48.20149520000001],[16.3811156,48.2014125],[16.3807956,48.2013542]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Beatrixgasse","oneway":"yes","oneway:bicycle":"no","surface":"cobblestone","wikipedia":"de:Maria Beatrice d’Este (1750–1829)"}},{"type":"Feature","id":"30692803","geometry":{"type":"LineString","coordinates":[[16.3799428,48.2017984],[16.3801049,48.20175169999999]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Johannesgasse","ref":"B1","source":"yahoo"}},{"type":"Feature","id":"4583332","geometry":{"type":"LineString","coordinates":[[16.3830526,48.20441679999999],[16.3829735,48.20424969999996],[16.3828911,48.20414339999999],[16.3816199,48.203155699999996],[16.3815651,48.203113099999996],[16.3814845,48.20305530000002],[16.3812512,48.202887900000036],[16.3804839,48.20227700000001],[16.3800763,48.201920400000006],[16.3799428,48.2017984]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"5891871","geometry":{"type":"LineString","coordinates":[[16.3799428,48.2017984],[16.3798291,48.201677399999994],[16.3796955,48.201535199999995],[16.3792413,48.20108529999999]]},"properties":{"cycleway":"lane","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes"}},{"type":"Feature","id":"13415593","geometry":{"type":"LineString","coordinates":[[16.3792413,48.20108529999999],[16.3796854,48.201402],[16.3799598,48.20159770000001]]},"properties":{"cycleway":"lane","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes"}},{"type":"Feature","id":"230209913","geometry":{"type":"LineString","coordinates":[[16.3802076,48.201613399999985],[16.3793335,48.20102259999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Am Heumarkt","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"5889615","geometry":{"type":"LineString","coordinates":[[16.3793335,48.20102259999999],[16.3797828,48.200736800000016]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Lagergasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"5889604","geometry":{"type":"LineString","coordinates":[[16.3801049,48.20175169999999],[16.3801411,48.2017084],[16.3801606,48.201685],[16.3802076,48.201613399999985],[16.380567,48.20137700000001],[16.3806,48.20132510000002],[16.3805714,48.2012685]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salesianergasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"191072093","geometry":{"type":"LineString","coordinates":[[16.3799598,48.20159770000001],[16.3801049,48.20175169999999]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Am Heumarkt","oneway":"yes"}},{"type":"Feature","id":"29068073","geometry":{"type":"LineString","coordinates":[[16.3791212,48.2027047],[16.3790018,48.20260830000001],[16.3789839,48.20259200000001],[16.3789622,48.202582999999976],[16.3789326,48.202577700000006],[16.3788998,48.202577899999994],[16.3788669,48.202580100000006],[16.3788254,48.2025878],[16.3787879,48.20259669999999],[16.378757,48.2026075]]},"properties":{"highway":"steps","lit":"yes","name":"Wienflußeinwölbung"}},{"type":"Feature","id":"236764173","geometry":{"type":"LineString","coordinates":[[16.378757,48.2026075],[16.3787232,48.202630699999986],[16.3787013,48.2026515],[16.3786867,48.2026702],[16.37868,48.202685599999995],[16.3786737,48.2027052],[16.3786726,48.2027238],[16.3786806,48.202740699999964],[16.378692,48.202755000000025],[16.3787626,48.202817900000014],[16.3787989,48.2028526]]},"properties":{"highway":"steps","lit":"yes","name":"Wienflußeinwölbung"}},{"type":"Feature","id":"26570638","geometry":{"type":"LineString","coordinates":[[16.3786333,48.20054189999999],[16.3793335,48.20102259999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Am Heumarkt","sidewalk":"both"}},{"type":"Feature","id":"391774032","geometry":{"type":"LineString","coordinates":[[16.3779785,48.20177480000001],[16.3785171,48.202293199999986],[16.378612,48.2023844]]},"properties":{"highway":"primary","lanes:backward":"1","lanes:forward":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","ref":"B1","turn:lanes:forward":"left|none|none","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"9353371","geometry":{"type":"LineString","coordinates":[[16.378612,48.2023844],[16.3788115,48.202296700000005],[16.3790129,48.20220810000001],[16.379882,48.2018252],[16.3799428,48.2017984]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Johannesgasse","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"79040082","geometry":{"type":"LineString","coordinates":[[16.3803103,48.19898599999999],[16.3810313,48.1990246]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"50","name":"Zaunergasse","source":"yahoo","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"47003522","geometry":{"type":"LineString","coordinates":[[16.3795952,48.19953430000001],[16.3801408,48.19908219999999],[16.3803103,48.19898599999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Marokkanergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"182668450","geometry":{"type":"LineString","coordinates":[[16.3806965,48.200131400000004],[16.3808246,48.2002052]]},"properties":{"covered":"yes","highway":"residential","layer":"-1","maxspeed":"30","name":"Traungasse","oneway":"yes","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"182668451","geometry":{"type":"LineString","coordinates":[[16.3808246,48.2002052],[16.3809376,48.20026200000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Traungasse","oneway":"yes","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"182668449","geometry":{"type":"LineString","coordinates":[[16.3807751,48.20107619999999],[16.3808552,48.20085879999999],[16.3809376,48.20026200000001],[16.3809771,48.199628399999995],[16.3809825,48.19951420000001],[16.3810011,48.199226700000025],[16.3810098,48.19919519999999],[16.3810313,48.1990246]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salesianergasse","oneway":"yes"}},{"type":"Feature","id":"79040080","geometry":{"type":"LineString","coordinates":[[16.3795952,48.19953430000001],[16.3806313,48.2001358],[16.3806965,48.200131400000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Traungasse","oneway":"yes","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"13412258","geometry":{"type":"LineString","coordinates":[[16.3806313,48.2001358],[16.3797828,48.200736800000016]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Lagergasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"81299491","geometry":{"type":"LineString","coordinates":[[16.3803103,48.19898599999999],[16.3803997,48.1981442],[16.380454,48.1976353],[16.3800756,48.19725399999999],[16.380047,48.19722519999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Marokkanergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"175307293","geometry":{"type":"LineString","coordinates":[[16.3796028,48.19811870000001],[16.3795144,48.19809429999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Strohgasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5889554","geometry":{"type":"LineString","coordinates":[[16.3851894,48.198367099999984],[16.3838485,48.198289700000004],[16.3830583,48.19825739999999],[16.3825546,48.19822060000001],[16.3824692,48.19823420000003],[16.3821629,48.198217099999994],[16.3819252,48.19820229999999],[16.3817571,48.1982146],[16.3810942,48.198189799999994],[16.3803997,48.1981442],[16.3796028,48.19811870000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Strohgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5889598","geometry":{"type":"LineString","coordinates":[[16.3796028,48.19811870000001],[16.37955,48.198980800000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Veithgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"175308752","geometry":{"type":"LineString","coordinates":[[16.379354,48.19897979999999],[16.37955,48.198980800000015],[16.3797421,48.19898309999999]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Zaunergasse","source":"yahoo","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"175308749","geometry":{"type":"LineString","coordinates":[[16.3797421,48.19898309999999],[16.379878,48.198984699999954]]},"properties":{"covered":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Zaunergasse","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"175308751","geometry":{"type":"LineString","coordinates":[[16.379878,48.198984699999954],[16.3803103,48.19898599999999]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Zaunergasse","source":"yahoo","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"38609095","geometry":{"type":"LineString","coordinates":[[16.3790577,48.197507099999996],[16.3791148,48.19757900000002],[16.3791339,48.19760160000001],[16.3794635,48.19799169999999],[16.3795072,48.19804039999997],[16.3795144,48.19809429999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Veithgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5889587","geometry":{"type":"LineString","coordinates":[[16.3790825,48.198165000000046],[16.3787283,48.1977526],[16.3787083,48.19772929999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Auenbruggergasse","oneway":"yes","source":"yahoo","surface":"asphalt","wikipedia":"de:Leopold von Auenbrugger"}},{"type":"Feature","id":"81299488","geometry":{"type":"LineString","coordinates":[[16.3788007,48.198970400000036],[16.3795022,48.19951090000001],[16.3795952,48.19953430000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Traungasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5889551","geometry":{"type":"LineString","coordinates":[[16.3805714,48.2012685],[16.3797828,48.200736800000016],[16.3788642,48.200120500000025]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ölzeltgasse","oneway":"yes","surface":"cobblestone","wikipedia":"de:Anton Ölzelt"}},{"type":"Feature","id":"175308750","geometry":{"type":"LineString","coordinates":[[16.3792224,48.19897940000001],[16.379354,48.19897979999999]]},"properties":{"covered":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Zaunergasse","source":"yahoo","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"31400751","geometry":{"type":"LineString","coordinates":[[16.3788007,48.198970400000036],[16.3792224,48.19897940000001]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Zaunergasse","source":"yahoo","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"230210078","geometry":{"type":"LineString","coordinates":[[16.3788642,48.200120500000025],[16.3795952,48.19953430000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Marokkanergasse","oneway":"yes","sidewalk":"both","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"175307294","geometry":{"type":"LineString","coordinates":[[16.3795144,48.19809429999998],[16.3792952,48.198094200000014],[16.3790825,48.198165000000046],[16.3781811,48.198513100000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Strohgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5889592","geometry":{"type":"LineString","coordinates":[[16.3776526,48.19812379999999],[16.3776861,48.1981485],[16.3781811,48.198513100000014],[16.3788007,48.198970400000036]]},"properties":{"highway":"residential","maxspeed":"30","name":"Traungasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"230210079","geometry":{"type":"LineString","coordinates":[[16.3784143,48.20042080000002],[16.3788642,48.200120500000025]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Marokkanergasse","oneway":"no","sidewalk":"both","source":"yahoo"}},{"type":"Feature","id":"5889583","geometry":{"type":"LineString","coordinates":[[16.3783496,48.20049169999996],[16.3784143,48.20042080000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Marokkanergasse","oneway":"no","sidewalk":"both","source":"yahoo"}},{"type":"Feature","id":"26570745","geometry":{"type":"LineString","coordinates":[[16.3792413,48.20108529999999],[16.3783496,48.20049169999996]]},"properties":{"cycleway":"lane","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Am Heumarkt"}},{"type":"Feature","id":"36866841","geometry":{"type":"LineString","coordinates":[[16.3859335,48.194759799999986],[16.3855829,48.194873599999994],[16.3855123,48.1948974],[16.3850085,48.195066999999995],[16.3843186,48.19533659999999],[16.3841719,48.195393999999965],[16.3840866,48.195427600000045],[16.3836433,48.19560229999999],[16.3834114,48.195692099999974],[16.3824073,48.19613850000002],[16.3818885,48.19636639999996],[16.3814724,48.19656899999998],[16.3812905,48.196655899999996],[16.3811716,48.19672270000001],[16.381057,48.19678160000001],[16.3808523,48.196887300000014],[16.3806564,48.196979400000004],[16.3803523,48.197103200000015],[16.380047,48.19722519999999],[16.3798557,48.1972925],[16.3791148,48.19757900000002],[16.3787083,48.19772929999999],[16.3776526,48.19812379999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Rennweg","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"12987167","geometry":{"type":"LineString","coordinates":[[16.3775642,48.19806729999999],[16.3790577,48.197507099999996],[16.3794015,48.1973811],[16.3797438,48.197248],[16.3797956,48.19722890000003],[16.3800741,48.197128599999985],[16.3803504,48.19703390000001],[16.3805594,48.19696139999999],[16.3806305,48.196935199999956],[16.3809107,48.196803999999986],[16.3810218,48.1967506],[16.381177,48.196665800000005],[16.3823536,48.196080199999955],[16.3836307,48.19551019999997],[16.3840105,48.195349300000004],[16.3840765,48.19532129999999],[16.3840984,48.195312],[16.3849567,48.194976199999985],[16.3854181,48.19480870000001],[16.3854687,48.194790299999994]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Rennweg","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"29066259","geometry":{"type":"LineString","coordinates":[[16.3769255,48.20557410000001],[16.3779127,48.20506979999999],[16.3779639,48.205043700000004]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Gartenbaupromenade"}},{"type":"Feature","id":"44072091","geometry":{"type":"LineString","coordinates":[[16.3795114,48.20655239999999],[16.3794591,48.20657679999999],[16.3788632,48.2068544],[16.3784863,48.20702829999999],[16.3774007,48.20750559999996],[16.3772117,48.20758799999999],[16.3771326,48.207622600000036]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Zedlitzgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"29066993","geometry":{"type":"LineString","coordinates":[[16.3775659,48.206130400000006],[16.3774798,48.20617340000001],[16.3771746,48.20631960000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Liebenberggasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"8034548","geometry":{"type":"LineString","coordinates":[[16.3771746,48.20631960000003],[16.3772262,48.20637000000002],[16.3773205,48.20690290000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"An der Hülben","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"8052941","geometry":{"type":"LineString","coordinates":[[16.3771069,48.20567879999999],[16.378053,48.20520479999999]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Theodor-Herzl-Platz","oneway":"yes"}},{"type":"Feature","id":"355382610","geometry":{"type":"LineString","coordinates":[[16.3768556,48.20710890000001],[16.3773205,48.20690290000002],[16.3780176,48.20657830000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Jakobergasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"29066987","geometry":{"type":"LineString","coordinates":[[16.3771746,48.20631960000003],[16.3770698,48.20629869999999],[16.3768011,48.206171900000044]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilerstätte","sidewalk":"both"}},{"type":"Feature","id":"75529656","geometry":{"type":"LineString","coordinates":[[16.3769074,48.20399370000001],[16.3769964,48.203953799999994],[16.3771335,48.20389239999997]]},"properties":{"highway":"residential","lit":"yes","name":"Himmelpfortgasse","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"8052944","geometry":{"type":"LineString","coordinates":[[16.3786024,48.20565830000001],[16.3779639,48.205043700000004],[16.377546,48.20462439999997],[16.3774728,48.20454999999998],[16.3774259,48.20450349999999],[16.3769074,48.20399370000001]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Parkring","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"344047864","geometry":{"type":"LineString","coordinates":[[16.377401,48.204582200000004],[16.3774728,48.20454999999998],[16.3775284,48.20452589999999],[16.37771,48.204456599999986]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","oneway":"no"}},{"type":"Feature","id":"473371385","geometry":{"type":"LineString","coordinates":[[16.3807342,48.20695049999998],[16.3807034,48.20696709999996],[16.3806692,48.20696709999996],[16.3804747,48.2067677],[16.3802239,48.20652150000001],[16.3800281,48.20632710000001],[16.3791115,48.2054225],[16.3779814,48.20431450000001],[16.3777012,48.204040400000025],[16.3774407,48.20378550000004],[16.3769061,48.20325729999996]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Parkring"}},{"type":"Feature","id":"473379554","geometry":{"type":"LineString","coordinates":[[16.3807342,48.20695049999998],[16.3807034,48.20696709999996],[16.3806692,48.20696709999996],[16.3804747,48.2067677],[16.3802239,48.20652150000001],[16.3800281,48.20632710000001],[16.3791115,48.2054225],[16.3779814,48.20431450000001],[16.3777012,48.204040400000025],[16.3774407,48.20378550000004],[16.3769061,48.20325729999996]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Parkring"}},{"type":"Feature","id":"30322934","geometry":{"type":"LineString","coordinates":[[16.3797454,48.206448800000004],[16.3788315,48.20555630000001],[16.3777897,48.204532900000004],[16.37771,48.204456599999986],[16.3776471,48.20439110000001],[16.3771335,48.20389239999997],[16.3766084,48.20338850000002],[16.3765466,48.20332640000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Parkring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"12276040","geometry":{"type":"LineString","coordinates":[[16.3765466,48.20332640000001],[16.3766827,48.20327160000002],[16.3767641,48.203239199999985],[16.3770553,48.2031101],[16.3772416,48.203025499999995]]},"properties":{"highway":"tertiary","lanes:backward":"2","lanes:forward":"1","lit":"yes","maxspeed":"30","name":"Johannesgasse","turn:lanes:backward":"left|through"}},{"type":"Feature","id":"8072631","geometry":{"type":"LineString","coordinates":[[16.3754372,48.20557740000001],[16.3757538,48.20537160000001],[16.3760517,48.20520429999999],[16.376121,48.205161799999985]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"26565617","geometry":{"type":"LineString","coordinates":[[16.3759976,48.206301999999994],[16.3767388,48.207161600000035]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Riemergasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"8072643","geometry":{"type":"LineString","coordinates":[[16.376121,48.205161799999985],[16.3762126,48.2052333],[16.3763152,48.20531829999999],[16.3764704,48.205380599999984],[16.376595,48.20542089999998],[16.3767383,48.20547640000001],[16.3769255,48.20557410000001],[16.3771069,48.20567879999999],[16.3772146,48.20575429999997],[16.3775119,48.206075099999964],[16.3775659,48.206130400000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Coburgbastei","sidewalk":"both","surface":"asphalt","wikidata":"Q17522073","wikipedia":"de:Coburgbastei"}},{"type":"Feature","id":"5930410","geometry":{"type":"LineString","coordinates":[[16.3754923,48.20647290000002],[16.3757928,48.206894500000004],[16.3758461,48.20704620000001],[16.375822,48.2073872]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Kumpfgasse","surface":"cobblestone"}},{"type":"Feature","id":"5930432","geometry":{"type":"LineString","coordinates":[[16.3768011,48.206171900000044],[16.3754372,48.20557740000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilerstätte","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"344649352","geometry":{"type":"LineString","coordinates":[[16.3763705,48.20446659999999],[16.3764803,48.2045196],[16.3768276,48.2048393]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hegelgasse","oneway":"yes","sidewalk":"right","wikidata":"Q16916609","wikipedia":"de:Hegelgasse (Wien)"}},{"type":"Feature","id":"43308569","geometry":{"type":"LineString","coordinates":[[16.3756113,48.203756],[16.3762031,48.20430680000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hegelgasse","oneway":"yes","sidewalk":"both","wikidata":"Q16916609","wikipedia":"de:Hegelgasse (Wien)"}},{"type":"Feature","id":"344649349","geometry":{"type":"LineString","coordinates":[[16.3762031,48.20430680000001],[16.3763705,48.20446659999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hegelgasse","oneway":"no","sidewalk":"both","wikidata":"Q16916609","wikipedia":"de:Hegelgasse (Wien)"}},{"type":"Feature","id":"387002798","geometry":{"type":"LineString","coordinates":[[16.376121,48.205161799999985],[16.3762035,48.20512289999999],[16.3767168,48.20488940000001],[16.3768276,48.2048393],[16.377401,48.204582200000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","oneway":"no","sidewalk":"both"}},{"type":"Feature","id":"8072744","geometry":{"type":"LineString","coordinates":[[16.376121,48.205161799999985],[16.3760677,48.20511809999999],[16.3755071,48.20462950000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schellinggasse","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"26154343","geometry":{"type":"LineString","coordinates":[[16.3765466,48.20332640000001],[16.37642,48.203389000000016],[16.3763309,48.2034343]]},"properties":{"highway":"residential","lit":"yes","name":"Johannesgasse","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"5930434","geometry":{"type":"LineString","coordinates":[[16.3769074,48.20399370000001],[16.3763819,48.20348280000002],[16.3763309,48.2034343]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Parkring","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"473369132","geometry":{"type":"LineString","coordinates":[[16.3762678,48.20346459999999],[16.3763157,48.20351149999996],[16.376839,48.20402410000003],[16.3770499,48.2042352],[16.3773516,48.2045334],[16.377401,48.204582200000004],[16.3774709,48.20464879999997],[16.3779127,48.20506979999999],[16.378053,48.20520479999999],[16.3784855,48.20562459999999],[16.3785331,48.205690300000015],[16.3790535,48.206182299999995],[16.3794591,48.20657679999999],[16.3795858,48.206695999999994],[16.3798813,48.206974],[16.3799645,48.20699960000002]]},"properties":{"foot":"yes","footway":"sidewalk","highway":"footway","lit":"yes","name":"Parkring"}},{"type":"Feature","id":"391809133","geometry":{"type":"LineString","coordinates":[[16.3772416,48.203025499999995],[16.3774985,48.20290890000001],[16.3779785,48.202690599999954],[16.3782359,48.20257290000001],[16.378365,48.20251669999999],[16.3784907,48.20245729999999],[16.3785326,48.20242809999996],[16.378612,48.2023844]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Johannesgasse"}},{"type":"Feature","id":"8058902","geometry":{"type":"LineString","coordinates":[[16.3774985,48.20290890000001],[16.3770119,48.2024179],[16.3769662,48.20237400000002]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Kantgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"26570456","geometry":{"type":"LineString","coordinates":[[16.3768528,48.200692599999996],[16.3774683,48.201283700000005],[16.3779785,48.20177480000001]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Lothringerstraße","ref":"B1","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"28778296","geometry":{"type":"LineString","coordinates":[[16.3783496,48.20049169999996],[16.3774845,48.199975300000006],[16.3773285,48.1998849]]},"properties":{"cycleway":"lane","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Am Heumarkt"}},{"type":"Feature","id":"26930795","geometry":{"type":"LineString","coordinates":[[16.3766199,48.200986400000005],[16.3770978,48.20144170000003],[16.377396,48.20173080000001],[16.3775857,48.201915299999996],[16.3777524,48.20208150000002],[16.3781781,48.2025141],[16.3782359,48.20257290000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Lothringerstraße","oneway":"yes","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"30127398","geometry":{"type":"LineString","coordinates":[[16.3765426,48.20196609999999],[16.3764712,48.20196570000002],[16.3762999,48.20182310000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Beethovenplatz"}},{"type":"Feature","id":"5930419","geometry":{"type":"LineString","coordinates":[[16.3769662,48.20237400000002],[16.3768635,48.20227609999998],[16.3765426,48.20196609999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Beethovenplatz"}},{"type":"Feature","id":"26945906","geometry":{"type":"LineString","coordinates":[[16.3762372,48.20271730000002],[16.3767025,48.20317860000003],[16.3767641,48.203239199999985]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Schubertring","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"30773247","geometry":{"type":"LineString","coordinates":[[16.3757954,48.20291209999999],[16.3762666,48.203372900000005],[16.3763309,48.2034343]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Schubertring","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"8072752","geometry":{"type":"LineString","coordinates":[[16.3760187,48.202808300000015],[16.3761519,48.202752799999985],[16.3761623,48.202748499999984],[16.3762372,48.20271730000002],[16.3763127,48.20268089999999],[16.3769662,48.20237400000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fichtegasse","sidewalk":"both"}},{"type":"Feature","id":"103428968","geometry":{"type":"LineString","coordinates":[[16.3763232,48.20176480000001],[16.376415,48.20175849999998],[16.3765068,48.2017165],[16.3768871,48.20153959999999],[16.3770978,48.20144170000003]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Beethovenplatz"}},{"type":"Feature","id":"26930739","geometry":{"type":"LineString","coordinates":[[16.3758938,48.20132019999997],[16.3762942,48.201717700000046],[16.3763232,48.20176480000001],[16.3763192,48.2017936]]},"properties":{"cycleway":"opposite_track","highway":"residential","lit":"yes","maxspeed":"30","name":"Kantgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"31400599","geometry":{"type":"LineString","coordinates":[[16.3765591,48.20036429999999],[16.3766319,48.20031900000001],[16.376751,48.2002464],[16.3771325,48.20000940000003],[16.3773285,48.1998849]]},"properties":{"cycleway":"opposite_share_busway","fixme":"bicycle+psv oder nur bicycle+bus gegen einbahn erlaubt?","highway":"residential","lit":"yes","maxspeed":"50","name":"Lisztstraße","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","wikipedia":"de:Franz Liszt"}},{"type":"Feature","id":"127061645","geometry":{"type":"LineString","coordinates":[[16.3773285,48.1998849],[16.3763737,48.19938479999999]]},"properties":{"cycleway":"lane","highway":"tertiary","maxspeed":"50","name":"Am Heumarkt"}},{"type":"Feature","id":"31399710","geometry":{"type":"LineString","coordinates":[[16.3765591,48.20036429999999],[16.3766706,48.200457],[16.3768528,48.200692599999996]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"5891890","geometry":{"type":"LineString","coordinates":[[16.3765591,48.20036429999999],[16.3764574,48.2004254],[16.3762143,48.200484200000005],[16.3760149,48.20052809999996]]},"properties":{"bus":"yes","highway":"service","lanes":"1","maxspeed":"50","name":"Lisztstraße","oneway":"yes","vehicle":"no","wikipedia":"de:Franz Liszt"}},{"type":"Feature","id":"5095739","geometry":{"type":"LineString","coordinates":[[16.3768528,48.200692599999996],[16.3767086,48.200594800000005],[16.3765618,48.20052970000003],[16.3764247,48.2005183],[16.3760149,48.20052809999996]]},"properties":{"highway":"primary","lanes":"1","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"29066035","geometry":{"type":"LineString","coordinates":[[16.3763192,48.2017936],[16.3762999,48.20182310000001],[16.3757364,48.2020838],[16.3757038,48.202101400000004],[16.3756435,48.202134]]},"properties":{"cycleway":"opposite_track","highway":"residential","lit":"yes","maxspeed":"30","name":"Christinengasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both"}},{"type":"Feature","id":"5930423","geometry":{"type":"LineString","coordinates":[[16.3756435,48.202134],[16.375559,48.20216929999998],[16.3754319,48.2022254]]},"properties":{"highway":"residential","name":"Christinengasse","source":"yahoo"}},{"type":"Feature","id":"5930466","geometry":{"type":"LineString","coordinates":[[16.3756435,48.202134],[16.3762372,48.20271730000002]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Schubertring","oneway":"yes","sidewalk":"right","surface":"cobblestone"}},{"type":"Feature","id":"29065761","geometry":{"type":"LineString","coordinates":[[16.3765466,48.20332640000001],[16.3764948,48.203275099999985],[16.3760187,48.202808300000015],[16.3754319,48.2022254]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schubertring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"244105226","geometry":{"type":"LineString","coordinates":[[16.3753836,48.20006840000002],[16.3754839,48.2000893],[16.3762879,48.200286500000004],[16.3765591,48.20036429999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"482008873","geometry":{"type":"LineString","coordinates":[[16.3753836,48.20006840000002],[16.3752207,48.20033329999998]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","turn:lanes":"left|left|through|through"}},{"type":"Feature","id":"31400524","geometry":{"type":"LineString","coordinates":[[16.3760149,48.20052809999996],[16.3759279,48.200519999999955],[16.3753384,48.2003661],[16.3752207,48.20033329999998]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","turn:lanes":"through|through|through;right","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"425297957","geometry":{"type":"LineString","coordinates":[[16.3756742,48.199561500000016],[16.375438,48.19998369999999]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","turn:lanes":"through|through|through|through;right"}},{"type":"Feature","id":"28744713","geometry":{"type":"LineString","coordinates":[[16.375702,48.19933789999999],[16.3757146,48.199403099999984],[16.3757105,48.199469600000015],[16.3756742,48.199561500000016]]},"properties":{"foot":"no","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"298780343","geometry":{"type":"LineString","coordinates":[[16.375438,48.19998369999999],[16.3753836,48.20006840000002]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","turn:lanes":"left|left|through|through"}},{"type":"Feature","id":"100664198","geometry":{"type":"LineString","coordinates":[[16.377299,48.198977299999996],[16.3788007,48.198970400000036]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lcn":"yes","maxspeed":"50","name":"Zaunergasse","oneway":"yes","source":"yahoo","surface":"asphalt","wikipedia":"de:Franz Anton von Zauner"}},{"type":"Feature","id":"5889570","geometry":{"type":"LineString","coordinates":[[16.3778956,48.1995326],[16.3776511,48.19937159999998],[16.3774226,48.1992209],[16.3771871,48.19906399999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Daffingerstraße","oneway":"yes","surface":"asphalt","wikipedia":"de:Moritz Daffinger"}},{"type":"Feature","id":"5889576","geometry":{"type":"LineString","coordinates":[[16.3788007,48.198970400000036],[16.3785758,48.19911239999999],[16.3778956,48.1995326],[16.3773285,48.1998849]]},"properties":{"highway":"residential","maxspeed":"50","name":"Lisztstraße","wikipedia":"de:Franz Liszt"}},{"type":"Feature","id":"240294968","geometry":{"type":"LineString","coordinates":[[16.3771871,48.19906399999999],[16.3772242,48.19901229999999],[16.377299,48.198977299999996]]},"properties":{"highway":"residential","maxspeed":"50","name":"Daffingerstraße","surface":"asphalt","wikipedia":"de:Moritz Daffinger"}},{"type":"Feature","id":"29499146","geometry":{"type":"LineString","coordinates":[[16.3759564,48.19913389999999],[16.3760342,48.19915559999998],[16.3761036,48.1991893],[16.3762057,48.19925570000001]]},"properties":{"foot":"no","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"concrete"}},{"type":"Feature","id":"28833714","geometry":{"type":"LineString","coordinates":[[16.3763737,48.19938479999999],[16.3762824,48.19934940000002],[16.3762057,48.19925570000001]]},"properties":{"cycleway":"lane","highway":"tertiary","maxspeed":"50","name":"Am Heumarkt","surface":"asphalt"}},{"type":"Feature","id":"28340741","geometry":{"type":"LineString","coordinates":[[16.3761132,48.19908299999997],[16.3762164,48.199047500000006],[16.3762899,48.19901199999998],[16.3763648,48.19896649999998],[16.3764592,48.1988911],[16.3765601,48.198803999999996],[16.3767716,48.19862960000003],[16.3771702,48.19830949999999],[16.3774011,48.1981548],[16.3775642,48.19806729999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"428784485","geometry":{"type":"LineString","coordinates":[[16.3759564,48.19913389999999],[16.3760615,48.199097600000016],[16.3761132,48.19908299999997]]},"properties":{"foot":"no","highway":"secondary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"28744821","geometry":{"type":"LineString","coordinates":[[16.3754586,48.199279399999995],[16.3755431,48.199241900000004],[16.375638,48.19921389999999],[16.3759564,48.19913389999999]]},"properties":{"foot":"no","highway":"secondary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"12985513","geometry":{"type":"LineString","coordinates":[[16.3762057,48.19925570000001],[16.3759938,48.19927710000002],[16.3757745,48.1993286],[16.375702,48.19933789999999]]},"properties":{"foot":"no","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"358974052","geometry":{"type":"LineString","coordinates":[[16.3756969,48.199327400000016],[16.375702,48.19933789999999]]},"properties":{"foot":"no","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes"}},{"type":"Feature","id":"28340742","geometry":{"type":"LineString","coordinates":[[16.3753185,48.19935989999999],[16.375395,48.1993114],[16.3754586,48.199279399999995]]},"properties":{"foot":"no","highway":"secondary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"28744715","geometry":{"type":"LineString","coordinates":[[16.375702,48.19933789999999],[16.3756298,48.1993387],[16.3755688,48.19933040000001],[16.37551,48.1993114],[16.3754586,48.199279399999995]]},"properties":{"foot":"no","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes"}},{"type":"Feature","id":"5891899","geometry":{"type":"LineString","coordinates":[[16.3776526,48.19812379999999],[16.3775856,48.19815840000001],[16.3775175,48.1982046],[16.3773808,48.198333899999994],[16.3772554,48.19846079999999],[16.37693,48.1987216],[16.3768262,48.19881750000002],[16.3765422,48.199044499999985],[16.3763418,48.199204700000024],[16.3762971,48.199228000000005],[16.3762057,48.19925570000001],[16.3760886,48.199307199999964],[16.375944,48.19935319999999],[16.3758336,48.19940610000003],[16.3757469,48.19947859999999],[16.3756742,48.199561500000016]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes"}},{"type":"Feature","id":"298784841","geometry":{"type":"LineString","coordinates":[[16.3752523,48.19844560000004],[16.3752559,48.198467300000004],[16.3752655,48.198498099999995],[16.3753541,48.19879180000001],[16.3753891,48.19887449999999],[16.3754366,48.198943799999995]]},"properties":{"highway":"tertiary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt","turn:lanes":"through|through|slight_right;right"}},{"type":"Feature","id":"12985308","geometry":{"type":"LineString","coordinates":[[16.3754366,48.198943799999995],[16.375519,48.1990136],[16.3756095,48.199061900000004],[16.3757275,48.19909849999999],[16.3758655,48.1991189],[16.3759564,48.19913389999999]]},"properties":{"foot":"no","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt","turn:lanes":"through|right"}},{"type":"Feature","id":"12985835","geometry":{"type":"LineString","coordinates":[[16.3754366,48.198943799999995],[16.375638,48.19921389999999],[16.3756969,48.199327400000016]]},"properties":{"foot":"no","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"28744804","geometry":{"type":"LineString","coordinates":[[16.3754586,48.199279399999995],[16.3752947,48.1991031]]},"properties":{"foot":"no","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"146683488","geometry":{"type":"LineString","coordinates":[[16.3808328,48.188986400000005],[16.3807846,48.18906390000001],[16.3807315,48.189154299999984],[16.3806337,48.18932989999996],[16.3804338,48.18968580000001],[16.3800327,48.1903916],[16.3795795,48.19119460000002],[16.3794413,48.19144200000002],[16.3793092,48.19167870000001],[16.3792054,48.19185909999999],[16.3791629,48.191926300000006],[16.3791129,48.19200359999999],[16.3791079,48.192012500000004],[16.3785012,48.19290839999999],[16.3771701,48.19447539999999],[16.3771154,48.1945398],[16.3770379,48.19464239999999],[16.3769692,48.19474249999996],[16.3755953,48.19695490000001],[16.3752338,48.19756430000001]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Prinz-Eugen-Straße","name:wikipedia":"de:Eugen von Savoyen","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"8024350","geometry":{"type":"LineString","coordinates":[[16.3761985,48.220257600000025],[16.3756249,48.21996050000001],[16.3751948,48.219863799999985],[16.3748501,48.2197936]]},"properties":{"alt_name":"Malzg","highway":"residential","maxspeed":"30","name":"Malzgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024130","geometry":{"type":"LineString","coordinates":[[16.3741255,48.2196357],[16.3743689,48.218911899999995]]},"properties":{"fixme":"radeln gegen einbahn?","highway":"residential","maxspeed":"30","name":"Schreygasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"317851643","geometry":{"type":"LineString","coordinates":[[16.3741255,48.2196357],[16.3738876,48.2199329]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schreygasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"317851641","geometry":{"type":"LineString","coordinates":[[16.3748501,48.2197936],[16.3741255,48.2196357]]},"properties":{"alt_name":"Malzg","cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Malzgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024248","geometry":{"type":"LineString","coordinates":[[16.3734445,48.22024189999999],[16.3748366,48.221189400000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Nestroygasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024253","geometry":{"type":"LineString","coordinates":[[16.3753189,48.2208545],[16.3738876,48.2199329]]},"properties":{"highway":"residential","maxspeed":"30","name":"Adambergergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"7982001","geometry":{"type":"LineString","coordinates":[[16.3748501,48.2197936],[16.3747933,48.21985240000001],[16.3747815,48.21990060000002],[16.3748077,48.219938300000024],[16.375776,48.2205381],[16.3770239,48.2213141]]},"properties":{"highway":"residential","maxspeed":"30","name":"Miesbachgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024182","geometry":{"type":"LineString","coordinates":[[16.3741386,48.2183996],[16.3734663,48.21787040000001],[16.373379,48.2178016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Herminengasse","noexit":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024184","geometry":{"type":"LineString","coordinates":[[16.3758939,48.218520100000035],[16.3741386,48.2183996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Herminengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024185","geometry":{"type":"LineString","coordinates":[[16.3746358,48.217996699999986],[16.3757706,48.21807179999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Nickelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"126548963","geometry":{"type":"LineString","coordinates":[[16.3736134,48.21881669999999],[16.3743689,48.218911899999995],[16.375498,48.219028700000024],[16.3760151,48.219086499999975],[16.376222,48.21910359999998],[16.3767212,48.21911610000001],[16.3768596,48.2191378]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schiffamtsgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"33523187","geometry":{"type":"LineString","coordinates":[[16.373379,48.2178016],[16.3733092,48.21777259999999],[16.373181,48.2176896],[16.3731152,48.21768079999998]]},"properties":{"foot":"yes","highway":"cycleway","name":"Herminengasse"}},{"type":"Feature","id":"8024189","geometry":{"type":"LineString","coordinates":[[16.3727362,48.21824609999999],[16.3727916,48.21828339999999],[16.372819,48.21830299999999],[16.3735182,48.21880279999996],[16.3736134,48.21881669999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schiffamtsgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"317851644","geometry":{"type":"LineString","coordinates":[[16.3738876,48.2199329],[16.3734445,48.22024189999999],[16.3727367,48.220662800000014]]},"properties":{"fixme":"radeln gegen einbahn?","highway":"residential","maxspeed":"30","name":"Schreygasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"7835453","geometry":{"type":"LineString","coordinates":[[16.3721193,48.220175100000006],[16.3736134,48.21881669999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Franz-Hochedlinger-Gasse","old_name":"Kleine Schiffgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"127240498","geometry":{"type":"LineString","coordinates":[[16.3731152,48.21768079999998],[16.3729316,48.21800970000004],[16.3727362,48.21824609999999],[16.3725173,48.21841309999999],[16.3718195,48.21882530000002]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"7835462","geometry":{"type":"LineString","coordinates":[[16.3736134,48.21881669999999],[16.3741386,48.2183996],[16.3746358,48.217996699999986],[16.3750401,48.217657],[16.37531,48.21731539999999],[16.375407,48.217264],[16.3755567,48.21726190000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Franz-Hochedlinger-Gasse","old_name":"Kleine Schiffgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8024179","geometry":{"type":"LineString","coordinates":[[16.3746239,48.21608760000001],[16.3746368,48.21615679999999],[16.374651,48.21623310000001],[16.3748304,48.2175895],[16.3749187,48.217646099999996],[16.3750401,48.217657]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Floßgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"158028092","geometry":{"type":"LineString","coordinates":[[16.3755683,48.216933900000015],[16.3755943,48.21680079999999],[16.3755677,48.21646659999999],[16.3755448,48.2164166],[16.3753382,48.21599019999999],[16.3751194,48.21569739999998],[16.3750782,48.215684100000004],[16.3750506,48.21567630000001],[16.3749816,48.21565509999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Große Schiffgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"180883196","geometry":{"type":"LineString","coordinates":[[16.3724895,48.215300100000036],[16.3722159,48.21554520000001],[16.3719517,48.215801699999986],[16.3718696,48.21585730000004]]},"properties":{"fixme":"Wird das als Einbahn für Fußgänger interpretiert?","highway":"pedestrian","name":"Franz-Josefs-Kai","oneway":"yes"}},{"type":"Feature","id":"25943349","geometry":{"type":"LineString","coordinates":[[16.3718696,48.21585730000004],[16.3713361,48.216352]]},"properties":{"highway":"residential","maxspeed":"30","name":"Franz-Josefs-Kai","oneway":"yes"}},{"type":"Feature","id":"229032985","geometry":{"type":"LineString","coordinates":[[16.3707931,48.21943289999999],[16.3706117,48.21955109999996],[16.3704381,48.21967399999997],[16.3700607,48.21994280000001]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","turn:lanes":"left|left|through|through"}},{"type":"Feature","id":"40818455","geometry":{"type":"LineString","coordinates":[[16.3710234,48.21930209999999],[16.3709689,48.21933310000003],[16.370905,48.21936940000003],[16.3707931,48.21943289999999]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"8024743","geometry":{"type":"LineString","coordinates":[[16.3710234,48.21930209999999],[16.3710798,48.21934930000003],[16.3711224,48.219383100000044],[16.3721193,48.220175100000006],[16.3727367,48.220662800000014]]},"properties":{"highway":"tertiary","is_in":"Austria,Vienna,Wien,Leopoldstadt,1020","lanes":"1","lit":"yes","maxspeed":"30","name":"Untere Augartenstraße","oneway":"yes","source:maxspeed":"sign"}},{"type":"Feature","id":"27813925","geometry":{"type":"LineString","coordinates":[[16.3708046,48.2191148],[16.3709266,48.219216200000005],[16.3710234,48.21930209999999]]},"properties":{"cycleway:right":"lane","description":"Richtung 2.Bezirk","destination:lanes":"Augarten","highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"50","name":"Augartenbrücke","oneway":"yes","turn:lanes":"through"}},{"type":"Feature","id":"27813933","geometry":{"type":"LineString","coordinates":[[16.3706793,48.2191775],[16.370733,48.2192541],[16.3707586,48.219308600000005],[16.3707931,48.21943289999999]]},"properties":{"destination:lanes":"Brigittenau|Brigittenau","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","source":"yahoo","turn:lanes":"left|left"}},{"type":"Feature","id":"269389349","geometry":{"type":"LineString","coordinates":[[16.3698049,48.22019259999999],[16.3697301,48.220259999999996],[16.3697087,48.22028499999999],[16.3696378,48.22036779999999],[16.36956,48.22050439999998],[16.3695197,48.220749299999966],[16.3695483,48.220926399999996],[16.3696306,48.22150619999999],[16.3696641,48.221721900000006],[16.3696706,48.2217641],[16.3696846,48.222038999999995],[16.3696729,48.2221754],[16.3695684,48.22276819999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"355829948","geometry":{"type":"LineString","coordinates":[[16.3740244,48.22360309999999],[16.3739235,48.223513],[16.3737281,48.22335429999998],[16.3727257,48.222533699999985],[16.3726555,48.22247620000002],[16.3718891,48.221838700000006],[16.3713621,48.22141619999999],[16.3700527,48.22034980000001],[16.3698871,48.220241999999985],[16.3698049,48.22019259999999]]},"properties":{"highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"30","name":"Rembrandtstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"229032984","geometry":{"type":"LineString","coordinates":[[16.3700607,48.21994280000001],[16.369868,48.2201355],[16.3698049,48.22019259999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"176450120","geometry":{"type":"LineString","coordinates":[[16.3700607,48.21994280000001],[16.3699005,48.220012],[16.3697828,48.220035199999984],[16.3696646,48.22003499999997],[16.3695423,48.220025599999985]]},"properties":{"highway":"secondary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Roßauer Brücke","oneway":"yes","turn:lanes":"left|left"}},{"type":"Feature","id":"8044242","geometry":{"type":"LineString","coordinates":[[16.3698049,48.22019259999999],[16.3697318,48.2201479],[16.3695423,48.220025599999985]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Roßauer Brücke","oneway":"yes"}},{"type":"Feature","id":"5010652","geometry":{"type":"LineString","coordinates":[[16.3678694,48.21988679999998],[16.3679085,48.21968210000003]]},"properties":{"highway":"secondary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","source":"yahoo","turn:lanes":"slight_right|slight_right;right"}},{"type":"Feature","id":"27814025","geometry":{"type":"LineString","coordinates":[[16.3695423,48.220025599999985],[16.3689956,48.219706599999995]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"5","layer":"1","lit":"yes","maxspeed":"50","name":"Roßauer Brücke","oneway":"yes","turn:lanes":"left|left|through|through|through","wikidata":"Q2167645","wikipedia":"de:Rossauer Brücke"}},{"type":"Feature","id":"27814726","geometry":{"type":"LineString","coordinates":[[16.3691995,48.22026170000001],[16.3690732,48.220647499999984],[16.3690075,48.22083850000001],[16.3689047,48.22125360000001],[16.3688669,48.22142839999998],[16.3688343,48.22160789999998],[16.3687966,48.2218656],[16.3687626,48.2220782],[16.3687487,48.222359600000004],[16.3687477,48.22323779999999],[16.3687445,48.22341420000001],[16.3687402,48.223772],[16.3687218,48.2241836]]},"properties":{"bicycle":"yes","foot":"yes","highway":"path","motor_vehicle":"no","name":"Anton-Schmid-Promenade"}},{"type":"Feature","id":"269389355","geometry":{"type":"LineString","coordinates":[[16.3689956,48.219706599999995],[16.3685718,48.219507599999986]]},"properties":{"bridge":"yes","highway":"secondary","lanes":"3","layer":"1","lit":"yes","maxspeed":"50","name":"Roßauer Brücke","oneway":"yes","turn:lanes":"through|through|through","wikidata":"Q2167645","wikipedia":"de:Rossauer Brücke"}},{"type":"Feature","id":"176450124","geometry":{"type":"LineString","coordinates":[[16.3689956,48.219706599999995],[16.3686097,48.2194509]]},"properties":{"bridge":"yes","highway":"secondary_link","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Roßauer Brücke","oneway":"yes","turn:lanes":"left|left","wikidata":"Q2167645","wikipedia":"de:Rossauer Brücke"}},{"type":"Feature","id":"158722440","geometry":{"type":"LineString","coordinates":[[16.3679085,48.21968210000003],[16.367781,48.219643899999994]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Berggasse","oneway":"yes"}},{"type":"Feature","id":"271227048","geometry":{"type":"LineString","coordinates":[[16.3679085,48.21968210000003],[16.3680122,48.21945189999997],[16.3680468,48.21936170000001],[16.3680584,48.219290400000006]]},"properties":{"highway":"secondary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","source":"yahoo","turn:lanes":"right|right"}},{"type":"Feature","id":"229033625","geometry":{"type":"LineString","coordinates":[[16.3678694,48.21988679999998],[16.3681557,48.2194935],[16.3682606,48.21937679999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","ref":"B227","turn:lanes":"through|through|through"}},{"type":"Feature","id":"27814028","geometry":{"type":"LineString","coordinates":[[16.3685718,48.219507599999986],[16.3683951,48.21942729999998],[16.3682606,48.21937679999999]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Roßauer Brücke","oneway":"yes","turn:lanes":"through|through|through"}},{"type":"Feature","id":"269389351","geometry":{"type":"LineString","coordinates":[[16.3718195,48.21882530000002],[16.3710916,48.219256400000006],[16.3710234,48.21930209999999]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227","turn:lanes":"through|through|through|right"}},{"type":"Feature","id":"27813924","geometry":{"type":"LineString","coordinates":[[16.3698969,48.21838389999999],[16.3699516,48.21842810000001],[16.3706432,48.21898379999999],[16.3708046,48.2191148]]},"properties":{"bridge":"yes","cycleway:right":"lane","description":"Richtung 2.Bezirk","destination:lanes":"Augarten","highway":"tertiary","lanes":"1","layer":"1","lit":"yes","maxspeed":"50","name":"Augartenbrücke","oneway":"yes","turn:lanes":"through"}},{"type":"Feature","id":"27813937","geometry":{"type":"LineString","coordinates":[[16.3697699,48.2184546],[16.3706793,48.2191775]]},"properties":{"bridge":"yes","description":"Richtung 20. Bezirk","destination:lanes":"Brigittenau|Brigittenau","highway":"secondary","lanes":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Augartenbrücke","oneway":"yes","source":"yahoo","turn:lanes":"left|left"}},{"type":"Feature","id":"146982059","geometry":{"type":"LineString","coordinates":[[16.3697637,48.21828260000001],[16.3699366,48.21817290000004]]},"properties":{"bicycle":"use_sidepath","foot":"no","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"31976184","geometry":{"type":"LineString","coordinates":[[16.3697637,48.21828260000001],[16.3698969,48.21838389999999]]},"properties":{"cycleway:right":"lane","description":"Richtung 2.Bezirk","destination:lanes":"Augarten","highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"50","name":"Augartenbrücke","oneway":"yes","turn:lanes":"through"}},{"type":"Feature","id":"355985159","geometry":{"type":"LineString","coordinates":[[16.3699366,48.21817290000004],[16.3702421,48.2179984],[16.370886,48.217657900000006],[16.3712842,48.217423800000006]]},"properties":{"bicycle":"use_sidepath","foot":"no","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"229033627","geometry":{"type":"LineString","coordinates":[[16.3686173,48.2190674],[16.3687501,48.21896960000001],[16.3695044,48.2184494],[16.3695426,48.218423],[16.3696564,48.218350799999996]]},"properties":{"destination:lanes":"Brigittenau|Augarten|Zentrum|Zentrum|Zentrum|Zentrum","highway":"primary","lanes":"6","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","ref":"B227","turn:lanes":"left|left|through|through|through|through"}},{"type":"Feature","id":"31976183","geometry":{"type":"LineString","coordinates":[[16.3696564,48.218350799999996],[16.3697699,48.2184546]]},"properties":{"description":"Richtung 20. Bezirk","destination:lanes":"Brigittenau|Brigittenau","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Augartenbrücke","oneway":"yes","source":"yahoo","turn:lanes":"left|left"}},{"type":"Feature","id":"229033626","geometry":{"type":"LineString","coordinates":[[16.3682606,48.21937679999999],[16.3685038,48.21915100000001],[16.3686173,48.2190674]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"176450128","geometry":{"type":"LineString","coordinates":[[16.3686097,48.2194509],[16.3685453,48.21939370000001],[16.3685384,48.21934590000001],[16.3685319,48.21930079999996],[16.3685535,48.21919600000001],[16.3686173,48.2190674]]},"properties":{"highway":"secondary_link","lanes":"2","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","ref":"B227","turn:lanes":"left|left"}},{"type":"Feature","id":"24216207","geometry":{"type":"LineString","coordinates":[[16.3694024,48.21804319999998],[16.3696344,48.218100899999996],[16.369684,48.218112700000006],[16.3699366,48.21817290000004]]},"properties":{"destination:lanes":"Zentrum","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Carl-Szokoll-Platz","oneway":"yes"}},{"type":"Feature","id":"277887334","geometry":{"type":"LineString","coordinates":[[16.3694024,48.21804319999998],[16.3695953,48.21816390000001],[16.3696221,48.2181837],[16.3697637,48.21828260000001]]},"properties":{"cycleway:right":"lane","description":"Richtung 2.Bezirk","destination:lanes":"Augarten","highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"50","name":"Carl-Szokoll-Platz","oneway":"yes","turn:lanes":"through"}},{"type":"Feature","id":"329030928","geometry":{"type":"LineString","coordinates":[[16.3689787,48.218597999999986],[16.3689824,48.2185432],[16.3691597,48.2183344],[16.3693177,48.21820010000002],[16.3693569,48.218170999999984]]},"properties":{"highway":"footway","name":"Carl-Szokoll-Platz"}},{"type":"Feature","id":"277889586","geometry":{"type":"LineString","coordinates":[[16.3696564,48.218350799999996],[16.3697637,48.21828260000001]]},"properties":{"destination:lanes":"Augarten|Augarten|Zentrum|Zentrum|Zentrum|Zentrum","highway":"primary","lanes":"6","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","ref":"B227","turn:lanes":"left|left|through|through|through|through"}},{"type":"Feature","id":"8652881","geometry":{"type":"LineString","coordinates":[[16.3691111,48.217930300000006],[16.3694024,48.21804319999998]]},"properties":{"cycleway:right":"lane","description":"Richtung 2.Bezirk","destination:lanes":"Augarten|Augarten;Zentrum","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Carl-Szokoll-Platz","oneway":"yes","turn:lanes":"through|through;right"}},{"type":"Feature","id":"4583709","geometry":{"type":"LineString","coordinates":[[16.3694024,48.21804319999998],[16.3695174,48.218042500000024],[16.3695809,48.21802699999998],[16.3699645,48.21767350000002],[16.3699768,48.21764710000002],[16.3699735,48.217622500000004]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes"}},{"type":"Feature","id":"9286530","geometry":{"type":"LineString","coordinates":[[16.3691111,48.217930300000006],[16.3692352,48.218018],[16.3695112,48.21823040000001],[16.3695394,48.21825369999996],[16.3696564,48.218350799999996]]},"properties":{"description":"Richtung 20. Bezirk","destination:lanes":"Brigittenau|Brigittenau","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Carl-Szokoll-Platz","oneway":"yes","source":"yahoo","turn:lanes":"left|left"}},{"type":"Feature","id":"316874895","geometry":{"type":"LineString","coordinates":[[16.3713031,48.216356399999995],[16.37128,48.21643560000001],[16.3712349,48.216478499999965],[16.3709303,48.21676830000001],[16.3708002,48.216892]]},"properties":{"foot":"yes","highway":"cycleway","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"31247423","geometry":{"type":"LineString","coordinates":[[16.3688403,48.21686569999997],[16.3697267,48.217276200000015],[16.3700708,48.217437200000006],[16.3702739,48.217488900000006],[16.370384,48.21751169999999],[16.3705073,48.21752790000002],[16.3706576,48.21753899999999],[16.3708204,48.217536300000006],[16.3709327,48.217526099999986],[16.3710226,48.21751119999999],[16.3710949,48.2174938],[16.3711584,48.21747089999997],[16.3712842,48.217423800000006]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schottenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"25978726","geometry":{"type":"LineString","coordinates":[[16.370229,48.21728730000001],[16.3702795,48.217291700000004],[16.37036,48.2172832],[16.3707389,48.21692289999996],[16.3707444,48.21687729999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Franz-Josefs-Kai","oneway":"yes"}},{"type":"Feature","id":"170553610","geometry":{"type":"LineString","coordinates":[[16.3684481,48.21690369999999],[16.368398,48.21694389999999],[16.3679694,48.21737400000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Deutschmeisterplatz","oneway":"yes"}},{"type":"Feature","id":"26257143","geometry":{"type":"LineString","coordinates":[[16.3699735,48.217622500000004],[16.3699571,48.21759930000002],[16.3699176,48.217576699999995],[16.3684481,48.21690369999999]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"50","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"208876058","geometry":{"type":"LineString","coordinates":[[16.3682237,48.2167168],[16.3682708,48.21666970000004],[16.3683161,48.21662430000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Deutschmeisterplatz","oneway":"yes"}},{"type":"Feature","id":"25943354","geometry":{"type":"LineString","coordinates":[[16.3707444,48.21687729999999],[16.3707338,48.21685679999999],[16.3704527,48.216691]]},"properties":{"cycleway":"opposite_lane","highway":"residential","name":"Zelinkagasse","oneway":"yes"}},{"type":"Feature","id":"44024901","geometry":{"type":"LineString","coordinates":[[16.3688403,48.21686569999997],[16.3688799,48.21682659999996],[16.3689304,48.2167767],[16.3689953,48.216712700000016]]},"properties":{"highway":"residential","name":"Gonzagagasse","oneway":"yes"}},{"type":"Feature","id":"31247489","geometry":{"type":"LineString","coordinates":[[16.3689953,48.216712700000016],[16.370229,48.21728730000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"84789882","geometry":{"type":"LineString","coordinates":[[16.3681664,48.21677410000001],[16.3684481,48.21690369999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schottenring"}},{"type":"Feature","id":"5010642","geometry":{"type":"LineString","coordinates":[[16.3694754,48.216248500000034],[16.3693027,48.21618999999998],[16.3687969,48.21595719999999],[16.3687507,48.21592420000002],[16.3685641,48.21583560000002],[16.3680889,48.2156339]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zelinkagasse","oneway":"yes"}},{"type":"Feature","id":"31247471","geometry":{"type":"LineString","coordinates":[[16.3694754,48.216248500000034],[16.3695262,48.21617740000002],[16.3699543,48.21575150000001],[16.3705284,48.215213800000015]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Gonzagagasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"124875757","geometry":{"type":"LineString","coordinates":[[16.3705284,48.215213800000015],[16.3718215,48.21579510000001],[16.3718696,48.21585730000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Werdertorgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"43980603","geometry":{"type":"LineString","coordinates":[[16.3704527,48.216691],[16.3703675,48.216645],[16.3695932,48.21629730000001],[16.3694754,48.216248500000034]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zelinkagasse","oneway":"yes"}},{"type":"Feature","id":"31247424","geometry":{"type":"LineString","coordinates":[[16.3689953,48.216712700000016],[16.3690663,48.21664279999999],[16.3691358,48.21661130000001],[16.3693975,48.21633810000003],[16.3694754,48.216248500000034]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Gonzagagasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"9331276","geometry":{"type":"LineString","coordinates":[[16.3659837,48.21913839999999],[16.365468,48.22024429999999],[16.3652929,48.22083420000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Hahngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"442796216","geometry":{"type":"LineString","coordinates":[[16.367781,48.219643899999994],[16.3659837,48.21913839999999]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Berggasse","oneway":"yes"}},{"type":"Feature","id":"269389357","geometry":{"type":"LineString","coordinates":[[16.3676576,48.2203409],[16.3678694,48.21988679999998]]},"properties":{"highway":"primary","lanes":"5","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","parking:condition:left":"no_stopping","parking:condition:left:time_interval":"Mo-Fr 06:30-19:00","parking:lane:left":"parallel","ref":"B227","turn:lanes":"through|through|through|right|right"}},{"type":"Feature","id":"270077843","geometry":{"type":"LineString","coordinates":[[16.3674262,48.22101509999999],[16.3675919,48.22054880000002],[16.3676576,48.2203409]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Roßauer Lände","oneway":"yes","parking:condition:left":"no_stopping","parking:condition:left:time_interval":"Mo-Fr 06:30-19:00","parking:lane:left":"parallel","ref":"B227","surface":"asphalt","turn:lanes":"through|through|through"}},{"type":"Feature","id":"8103718","geometry":{"type":"LineString","coordinates":[[16.3682606,48.21937679999999],[16.3681758,48.21933870000004],[16.3680584,48.219290400000006],[16.3665393,48.218584299999975],[16.3664154,48.218526699999984]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","name":"Türkenstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"81813061","geometry":{"type":"LineString","coordinates":[[16.3651854,48.218973800000015],[16.3651714,48.21907049999999]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Berggasse","source":"yahoo"}},{"type":"Feature","id":"126555255","geometry":{"type":"LineString","coordinates":[[16.3660369,48.219051200000024],[16.3659837,48.21913839999999]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Hahngasse","oneway":"yes"}},{"type":"Feature","id":"172056444","geometry":{"type":"LineString","coordinates":[[16.3664154,48.218526699999984],[16.3660369,48.219051200000024]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Hahngasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"84789879","geometry":{"type":"LineString","coordinates":[[16.3656171,48.218297800000016],[16.3657003,48.21817670000004]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Roßauer Gasse","oneway":"yes"}},{"type":"Feature","id":"269389360","geometry":{"type":"LineString","coordinates":[[16.3664154,48.218526699999984],[16.3657003,48.21817670000004]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"30","name":"Türkenstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5010623","geometry":{"type":"LineString","coordinates":[[16.3651854,48.218973800000015],[16.3652014,48.21891349999996],[16.3656171,48.218297800000016]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Roßauer Gasse","oneway":"yes"}},{"type":"Feature","id":"275947222","geometry":{"type":"LineString","coordinates":[[16.3644,48.218919],[16.3651854,48.218973800000015],[16.3660369,48.219051200000024]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Berggasse","oneway":"yes"}},{"type":"Feature","id":"81813060","geometry":{"type":"LineString","coordinates":[[16.3659837,48.21913839999999],[16.3651714,48.21907049999999],[16.3643904,48.21901070000001]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Berggasse","oneway":"yes"}},{"type":"Feature","id":"8044140","geometry":{"type":"LineString","coordinates":[[16.3664154,48.218526699999984],[16.3656171,48.218297800000016],[16.3648913,48.21808229999999],[16.364822,48.21806169999999]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Türkenstraße","oneway":"yes"}},{"type":"Feature","id":"271227049","geometry":{"type":"LineString","coordinates":[[16.3657003,48.21817670000004],[16.3649641,48.2178371],[16.3648988,48.217803900000035]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"30","name":"Türkenstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8044247","geometry":{"type":"LineString","coordinates":[[16.3648988,48.217803900000035],[16.3648162,48.21776539999999]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","name":"Türkenstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"275947228","geometry":{"type":"LineString","coordinates":[[16.3643307,48.2188103],[16.3645745,48.21847109999999],[16.3648058,48.21812460000004],[16.364822,48.21806169999999],[16.3648988,48.217803900000035]]},"properties":{"highway":"tertiary","lanes":"1","maxspeed":"50","name":"Schlickgasse","oneway":"yes"}},{"type":"Feature","id":"275947225","geometry":{"type":"LineString","coordinates":[[16.3643904,48.21901070000001],[16.3642677,48.21901600000001],[16.3641127,48.21902690000002]]},"properties":{"highway":"residential","lanes":"1","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"275947229","geometry":{"type":"LineString","coordinates":[[16.364281,48.219067300000006],[16.3642892,48.22041300000001],[16.3643022,48.22048380000001],[16.3643533,48.220760799999994],[16.3643602,48.2207985]]},"properties":{"highway":"living_street","lanes":"1","name":"Servitengasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"355985160","geometry":{"type":"LineString","coordinates":[[16.3641719,48.21888289999998],[16.3642305,48.218910300000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","maxspeed":"30","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"356123184","geometry":{"type":"LineString","coordinates":[[16.3640414,48.2189267],[16.3641024,48.218916199999995],[16.3642305,48.218910300000005]]},"properties":{"highway":"tertiary","is_in":"Austria,Vienna,Wien","lanes":"1","maxspeed":"50","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"148091887","geometry":{"type":"LineString","coordinates":[[16.3642305,48.218910300000005],[16.3644,48.218919]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"8044135","geometry":{"type":"LineString","coordinates":[[16.3642305,48.218910300000005],[16.3642677,48.21901600000001],[16.364281,48.219067300000006]]},"properties":{"highway":"living_street","lanes":"1","name":"Jörg-Mauthe-Platz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"275947224","geometry":{"type":"LineString","coordinates":[[16.3643904,48.21901070000001],[16.3643062,48.21897659999999],[16.3642305,48.218910300000005]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"275947223","geometry":{"type":"LineString","coordinates":[[16.3642305,48.218910300000005],[16.3641731,48.21898859999999],[16.3641127,48.21902690000002]]},"properties":{"highway":"tertiary","is_in":"Austria,Vienna,Wien","lanes":"1","maxspeed":"50","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"148091890","geometry":{"type":"LineString","coordinates":[[16.3640158,48.21893059999999],[16.3640414,48.2189267]]},"properties":{"highway":"tertiary","is_in":"Austria,Vienna,Wien","lanes":"1","maxspeed":"50","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"148091889","geometry":{"type":"LineString","coordinates":[[16.3640556,48.2188328],[16.3641719,48.21888289999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","maxspeed":"30","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"8107312","geometry":{"type":"LineString","coordinates":[[16.3642305,48.218910300000005],[16.3643307,48.2188103]]},"properties":{"highway":"tertiary","lanes":"1","maxspeed":"50","name":"Jörg-Mauthe-Platz","oneway":"yes"}},{"type":"Feature","id":"84789874","geometry":{"type":"LineString","coordinates":[[16.364822,48.21806169999999],[16.3646556,48.218011099999984],[16.3644367,48.21794459999998],[16.364018,48.217814199999964]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Türkenstraße","oneway":"yes"}},{"type":"Feature","id":"355985162","geometry":{"type":"LineString","coordinates":[[16.3668157,48.21593359999997],[16.3669396,48.21599050000003],[16.3675083,48.2162524],[16.3683161,48.21662430000001],[16.3688403,48.21686569999997]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schottenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"113145601","geometry":{"type":"LineString","coordinates":[[16.3676598,48.216106999999994],[16.3689953,48.216712700000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"15243450","geometry":{"type":"LineString","coordinates":[[16.3676946,48.21724679999997],[16.3681279,48.2168126],[16.3681664,48.21677410000001],[16.3682237,48.2167168]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"50","name":"Deutschmeisterplatz","oneway":"yes"}},{"type":"Feature","id":"13273481","geometry":{"type":"LineString","coordinates":[[16.3669553,48.21578869999996],[16.3670857,48.21584759999999],[16.3676598,48.216106999999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"355985161","geometry":{"type":"LineString","coordinates":[[16.3667006,48.215880999999996],[16.3668157,48.21593359999997]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schottenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"8900336","geometry":{"type":"LineString","coordinates":[[16.3648988,48.217803900000035],[16.3649317,48.217734699999994],[16.364995,48.2176522],[16.3653991,48.21726180000002],[16.3654881,48.21717580000001],[16.3655866,48.2170806],[16.3658693,48.216807500000016],[16.3661049,48.21661449999999],[16.3661345,48.21659020000001],[16.3661993,48.21653709999998]]},"properties":{"highway":"tertiary","lanes":"1","maxspeed":"50","name":"Schlickplatz","oneway":"yes"}},{"type":"Feature","id":"277887337","geometry":{"type":"LineString","coordinates":[[16.3661993,48.21653709999998],[16.3662707,48.21657099999999],[16.3676946,48.21724679999997],[16.3677508,48.21727279999999],[16.3678654,48.2173258],[16.3679694,48.21737400000001],[16.3691111,48.217930300000006]]},"properties":{"cycleway":"lane","destination:lanes":"Brigittenau|Augarten;Zentrum","highway":"secondary","lanes":"2","lcn":"yes","lit":"yes","maxspeed":"50","name":"Maria-Theresien-Straße","oneway":"yes","turn:lanes":"left|through;right"}},{"type":"Feature","id":"5010657","geometry":{"type":"LineString","coordinates":[[16.3655953,48.216255399999966],[16.3655287,48.21632089999997],[16.3650202,48.216820799999994],[16.36492,48.21692010000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schlickplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"356123186","geometry":{"type":"LineString","coordinates":[[16.3661439,48.216510399999976],[16.3661993,48.21653709999998]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lcn":"yes","lit":"yes","maxspeed":"50","name":"Maria-Theresien-Straße","oneway":"yes"}},{"type":"Feature","id":"349539113","geometry":{"type":"LineString","coordinates":[[16.3648445,48.21590330000001],[16.364925,48.21594099999999],[16.3655953,48.216255399999966],[16.3660736,48.216478300000034],[16.3661439,48.216510399999976]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lcn":"yes","lit":"yes","maxspeed":"50","name":"Maria-Theresien-Straße","oneway":"yes"}},{"type":"Feature","id":"95194308","geometry":{"type":"LineString","coordinates":[[16.3661993,48.21653709999998],[16.3662354,48.21650249999999],[16.3666171,48.216135699999995],[16.3666695,48.216085400000026],[16.3666919,48.216060999999996],[16.3668157,48.21593359999997]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Börsegasse","oneway":"yes"}},{"type":"Feature","id":"26257159","geometry":{"type":"LineString","coordinates":[[16.3681664,48.21677410000001],[16.3667831,48.21613759999997],[16.3666695,48.216085400000026]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"84790903","geometry":{"type":"LineString","coordinates":[[16.364245,48.216464799999954],[16.3650202,48.216820799999994]]},"properties":{"highway":"service","maxspeed":"30","name":"Kolingasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"35302217","geometry":{"type":"LineString","coordinates":[[16.3641435,48.216564500000004],[16.36492,48.21692010000001],[16.3653721,48.21712360000001],[16.3654881,48.21717580000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolingasse","note":"die Straßenbahn fährt hier mittig auf der Kolingasse. /al","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"158722443","geometry":{"type":"LineString","coordinates":[[16.3643064,48.2175283],[16.3628145,48.216834199999994]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","name":"Hörlgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"356128807","geometry":{"type":"LineString","coordinates":[[16.3648162,48.21776539999999],[16.3647686,48.21774329999997],[16.3643064,48.2175283]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","name":"Türkenstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28235067","geometry":{"type":"LineString","coordinates":[[16.364018,48.217814199999964],[16.3643064,48.2175283]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Schlickplatz","oneway":"yes"}},{"type":"Feature","id":"84789886","geometry":{"type":"LineString","coordinates":[[16.36492,48.21692010000001],[16.36483,48.2170093],[16.3643064,48.2175283]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schlickplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"84790901","geometry":{"type":"LineString","coordinates":[[16.3635415,48.21614170000001],[16.3641777,48.216433999999964],[16.364245,48.216464799999954]]},"properties":{"highway":"service","maxspeed":"30","name":"Kolingasse","oneway":"yes","source:maxspeed":"AT:zone:30","vehicle":"private"}},{"type":"Feature","id":"271227047","geometry":{"type":"LineString","coordinates":[[16.3628145,48.216834199999994],[16.363347,48.21632700000001],[16.3634374,48.21624080000001],[16.3635415,48.21614170000001]]},"properties":{"highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","maxspeed":"50","name":"Liechtensteinstraße","source":"yahoo"}},{"type":"Feature","id":"35302218","geometry":{"type":"LineString","coordinates":[[16.3634374,48.21624080000001],[16.3641435,48.216564500000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kolingasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"84790899","geometry":{"type":"LineString","coordinates":[[16.3653991,48.21726180000002],[16.3653451,48.217240299999986],[16.3652841,48.217212899999964],[16.36483,48.2170093],[16.363347,48.21632700000001]]},"properties":{"highway":"service","maxspeed":"30","name":"Kolingasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10130497","geometry":{"type":"LineString","coordinates":[[16.3648445,48.21590330000001],[16.364782,48.215961899999996],[16.364245,48.216464799999954],[16.3642296,48.21647970000001],[16.3641435,48.216564500000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Peregringasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"208876059","geometry":{"type":"LineString","coordinates":[[16.3666695,48.216085400000026],[16.3665366,48.2160274],[16.3659572,48.21576890000003],[16.3654076,48.21550619999999],[16.3652879,48.215451299999984]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"113145582","geometry":{"type":"LineString","coordinates":[[16.3680889,48.2156339],[16.367769,48.215937999999994],[16.3677366,48.216001500000004],[16.3676598,48.216106999999994],[16.3676026,48.21616040000001],[16.3675083,48.2162524]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Neutorgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"31247400","geometry":{"type":"LineString","coordinates":[[16.3654289,48.21529509999999],[16.3655473,48.215349599999996],[16.3655828,48.21536599999999],[16.3663971,48.21574129999999],[16.3667006,48.215880999999996]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schottenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"31247388","geometry":{"type":"LineString","coordinates":[[16.3654289,48.21529509999999],[16.365314,48.215419499999996],[16.3652879,48.215451299999984]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"50","name":"Wipplingerstraße","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"30072789","geometry":{"type":"LineString","coordinates":[[16.3657283,48.215221299999996],[16.3667727,48.215703899999994],[16.3669553,48.21578869999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"35302219","geometry":{"type":"LineString","coordinates":[[16.3652879,48.215451299999984],[16.3652433,48.21549679999998],[16.3650772,48.21566489999998],[16.3648734,48.2158737],[16.3648445,48.21590330000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"50","name":"Wipplingerstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"35302222","geometry":{"type":"LineString","coordinates":[[16.3652879,48.215451299999984],[16.3651391,48.21538319999999],[16.3646808,48.21517370000001],[16.3646003,48.21513690000003]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"397523793","geometry":{"type":"LineString","coordinates":[[16.3646003,48.21513690000003],[16.3644605,48.215269199999994]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"50","name":"Hohenstaufengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"349539109","geometry":{"type":"LineString","coordinates":[[16.3641285,48.21558249999998],[16.3647065,48.21584150000001],[16.3648445,48.21590330000001]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lcn":"yes","lit":"yes","maxspeed":"50","name":"Maria-Theresien-Straße","oneway":"yes"}},{"type":"Feature","id":"8103726","geometry":{"type":"LineString","coordinates":[[16.3641285,48.21558249999998],[16.3640757,48.21563280000001],[16.3639735,48.215710400000006],[16.3639062,48.21577959999999],[16.3636349,48.216048900000004],[16.3635415,48.21614170000001]]},"properties":{"busway":"opposite_lane","cycleway:left":"share_busway","cycleway:right":"lane","highway":"tertiary","maxspeed":"50","name":"Liechtensteinstraße","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"10130639","geometry":{"type":"LineString","coordinates":[[16.3644605,48.215269199999994],[16.3643136,48.215406],[16.3641285,48.21558249999998]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"50","name":"Hohenstaufengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"30062227","geometry":{"type":"LineString","coordinates":[[16.3754604,48.214492500000006],[16.3744013,48.2141513]]},"properties":{"bridge":"yes","cycleway":"lane","highway":"tertiary","lanes":"3","lanes:backward":"1","lanes:forward":"2","layer":"1","lit":"yes","maxspeed":"50","name":"Salztorbrücke","sidewalk":"both","turn:lanes:forward":"left;through|through"}},{"type":"Feature","id":"9293454","geometry":{"type":"LineString","coordinates":[[16.3744013,48.2141513],[16.3743383,48.214131399999985],[16.3742064,48.214064699999994]]},"properties":{"highway":"tertiary","lanes:backward":"1","lanes:forward":"2","maxspeed":"50","name":"Salztorbrücke","turn:lanes:forward":"left;through|through"}},{"type":"Feature","id":"420290632","geometry":{"type":"LineString","coordinates":[[16.3749221,48.21331380000001],[16.3752121,48.2130746],[16.3754659,48.212883799999986],[16.3755732,48.21281920000001]]},"properties":{"bicycle":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no"}},{"type":"Feature","id":"44024905","geometry":{"type":"LineString","coordinates":[[16.3743703,48.213071000000014],[16.374571,48.21319040000003],[16.3746045,48.213208899999955]]},"properties":{"highway":"residential","lanes":"2","lcn":"yes","maxspeed":"30","name":"Morzinplatz","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"351751342","geometry":{"type":"LineString","coordinates":[[16.3746045,48.213208899999955],[16.3746832,48.213248899999996],[16.3748031,48.213289299999985],[16.3749221,48.21331380000001]]},"properties":{"highway":"residential","lanes":"2","lcn":"yes","name":"Morzinplatz","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"31131259","geometry":{"type":"LineString","coordinates":[[16.3739963,48.213936700000005],[16.373968,48.21391680000002],[16.3739134,48.21388279999999]]},"properties":{"highway":"tertiary","is_in":"Austria,Wien,Innere Stadt","lanes":"3","lanes:backward":"1","lanes:forward":"2","lcn":"yes","name":"Salztorgasse","oneway":"yes"}},{"type":"Feature","id":"8024664","geometry":{"type":"LineString","coordinates":[[16.3742064,48.214064699999994],[16.3740971,48.2140009],[16.3740464,48.21397089999999],[16.3739963,48.213936700000005]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria,Wien,Innere Stadt","lanes":"3","lanes:backward":"1","lanes:forward":"2","name":"Salztorgasse","oneway":"yes"}},{"type":"Feature","id":"23148505","geometry":{"type":"LineString","coordinates":[[16.3740581,48.212713699999995],[16.3741001,48.212824599999976],[16.3741419,48.21293510000001]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Morzinplatz","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"420290639","geometry":{"type":"LineString","coordinates":[[16.3741419,48.21293510000001],[16.3743703,48.213071000000014]]},"properties":{"highway":"residential","lanes":"2","lcn":"yes","maxspeed":"30","name":"Morzinplatz","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"351751337","geometry":{"type":"LineString","coordinates":[[16.3746045,48.213208899999955],[16.3745286,48.21331549999999],[16.3739802,48.21382620000003],[16.3739134,48.21388279999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Franz-Josefs-Kai","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"30062299","geometry":{"type":"LineString","coordinates":[[16.3742064,48.214064699999994],[16.3742872,48.21395770000001],[16.3745931,48.2136184],[16.3749221,48.21331380000001]]},"properties":{"bicycle":"use_sidepath","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","sidewalk":"no"}},{"type":"Feature","id":"229033624","geometry":{"type":"LineString","coordinates":[[16.373662,48.21487139999999],[16.3739776,48.21436840000001],[16.3741311,48.214142400000014],[16.3742064,48.214064699999994]]},"properties":{"bicycle":"use_sidepath","foot":"no","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227","turn:lanes":"left;through|through|through|through|right|right"}},{"type":"Feature","id":"25943353","geometry":{"type":"LineString","coordinates":[[16.373473,48.2143988],[16.372584,48.21526030000001],[16.3724895,48.215300100000036]]},"properties":{"highway":"residential","maxspeed":"30","name":"Franz-Josefs-Kai","oneway":"yes"}},{"type":"Feature","id":"140400523","geometry":{"type":"LineString","coordinates":[[16.3757503,48.21458640000003],[16.3756776,48.214709],[16.3754368,48.21505959999999],[16.3749816,48.21565509999999],[16.3746239,48.21608760000001],[16.3744855,48.21623539999999],[16.3742555,48.21648090000002],[16.3736605,48.21706180000001],[16.3732855,48.217487500000004],[16.3731152,48.21768079999998]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Obere Donaustraße","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"474848395","geometry":{"type":"LineString","coordinates":[[16.374571,48.21319040000003],[16.374424,48.21334590000001],[16.3739372,48.21379719999999],[16.3738659,48.21385470000001],[16.3737974,48.213920900000005],[16.3738349,48.21398479999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"44024903","geometry":{"type":"LineString","coordinates":[[16.3739134,48.21388279999999],[16.3738659,48.21385470000001],[16.3735399,48.213654700000006],[16.3732063,48.21345070000001]]},"properties":{"highway":"tertiary","lanes":"3","lanes:backward":"1","lanes:forward":"2","lcn":"yes","maxspeed":"30","name":"Salztorgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4583428","geometry":{"type":"LineString","coordinates":[[16.3732063,48.21345070000001],[16.3725889,48.2138047]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria,Wien,Innere Stadt","lanes":"1","maxspeed":"30","name":"Gonzagagasse","oneway":"yes"}},{"type":"Feature","id":"82235424","geometry":{"type":"LineString","coordinates":[[16.3722582,48.21354439999999],[16.3725889,48.2138047],[16.3728593,48.2140292]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Rudolfsplatz","oneway":"yes"}},{"type":"Feature","id":"185849943","geometry":{"type":"LineString","coordinates":[[16.373473,48.2143988],[16.3736599,48.214209600000004],[16.3738349,48.21398479999999]]},"properties":{"bicycle":"no","highway":"footway","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"82235425","geometry":{"type":"LineString","coordinates":[[16.3728593,48.2140292],[16.372984,48.21411880000002],[16.3734574,48.21434789999998],[16.373473,48.2143988]]},"properties":{"highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Gölsdorfgasse","oneway":"yes"}},{"type":"Feature","id":"31260904","geometry":{"type":"LineString","coordinates":[[16.3727532,48.21293130000001],[16.3728934,48.2128974],[16.3738573,48.21273959999999],[16.3740581,48.212713699999995]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Salzgries","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"270461283","geometry":{"type":"LineString","coordinates":[[16.3732063,48.21345070000001],[16.373161,48.213419999999985],[16.372793,48.2130124],[16.3727532,48.21293130000001]]},"properties":{"highway":"tertiary","lanes":"2","lcn":"yes","maxspeed":"30","name":"Salztorgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"25943350","geometry":{"type":"LineString","coordinates":[[16.3732063,48.21345070000001],[16.3741419,48.21293510000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Gonzagagasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"348867233","geometry":{"type":"LineString","coordinates":[[16.3744279,48.2123646],[16.3743796,48.21231039999998]]},"properties":{"highway":"footway","name":"Ruprechtsstiege","surface":"asphalt"}},{"type":"Feature","id":"123412917","geometry":{"type":"LineString","coordinates":[[16.3745609,48.21238370000003],[16.3744776,48.21242030000002],[16.3744279,48.2123646]]},"properties":{"highway":"steps","incline":"up","name":"Ruprechtsstiege","ramp":"yes","ramp:stroller":"yes","ramp:wheelchair":"no","step_count":"32"}},{"type":"Feature","id":"185248908","geometry":{"type":"LineString","coordinates":[[16.3746267,48.212424],[16.3746832,48.21239489999999],[16.3748044,48.21233219999999],[16.3751924,48.212129800000014]]},"properties":{"bicycle":"yes","foot":"yes","highway":"pedestrian","lit":"yes","name":"Franz-Josefs-Kai"}},{"type":"Feature","id":"348867232","geometry":{"type":"LineString","coordinates":[[16.3743796,48.21231039999998],[16.3743225,48.21225279999999]]},"properties":{"highway":"steps","incline":"up","name":"Ruprechtsstiege","ramp":"yes","ramp:stroller":"yes","ramp:wheelchair":"no","step_count":"22"}},{"type":"Feature","id":"4952915","geometry":{"type":"LineString","coordinates":[[16.3750967,48.21110250000001],[16.3751218,48.211157000000014],[16.375301,48.211545099999995],[16.3753054,48.211625999999995],[16.3752739,48.211720299999996]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Rabensteig"}},{"type":"Feature","id":"176378054","geometry":{"type":"LineString","coordinates":[[16.3754516,48.21095819999999],[16.3753596,48.211002699999995],[16.3750967,48.21110250000001],[16.3748788,48.21118530000001],[16.3744072,48.21134829999997]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fleischmarkt","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4952923","geometry":{"type":"LineString","coordinates":[[16.3740783,48.21197570000001],[16.3737736,48.21219210000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Salzgasse","sidewalk":"no","surface":"cobblestone"}},{"type":"Feature","id":"8072679","geometry":{"type":"LineString","coordinates":[[16.3740581,48.212713699999995],[16.3741236,48.21268029999999],[16.374614,48.212430100000006],[16.3746267,48.212424]]},"properties":{"bicycle":"yes","foot":"yes","highway":"pedestrian","lit":"yes","name":"Morzinplatz"}},{"type":"Feature","id":"4998483","geometry":{"type":"LineString","coordinates":[[16.3743225,48.21225279999999],[16.3742921,48.212203200000005],[16.3742681,48.21216749999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Ruprechtsstiege"}},{"type":"Feature","id":"506998433","geometry":{"type":"LineString","coordinates":[[16.3744072,48.21134829999997],[16.373849,48.21091659999999],[16.3736961,48.210780400000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bauernmarkt","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"185242442","geometry":{"type":"LineString","coordinates":[[16.3744072,48.21134829999997],[16.3743238,48.211368299999975],[16.3741977,48.2114033]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fleischmarkt"}},{"type":"Feature","id":"185242443","geometry":{"type":"LineString","coordinates":[[16.3741293,48.21141080000001],[16.3741626,48.21145000000001],[16.374121,48.2114814]]},"properties":{"highway":"steps","incline":"up","lit":"yes","name":"Jerusalem-Stiege"}},{"type":"Feature","id":"4952902","geometry":{"type":"LineString","coordinates":[[16.3736854,48.2114622],[16.373891,48.21162279999999],[16.3739346,48.211673099999985],[16.373994,48.211832500000014],[16.3740783,48.21197570000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Judengasse","sidewalk":"no","surface":"paving_stones"}},{"type":"Feature","id":"26013826","geometry":{"type":"LineString","coordinates":[[16.374121,48.2114814],[16.373891,48.21162279999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Desider-Friedmann-Platz","surface":"paving_stones"}},{"type":"Feature","id":"4952913","geometry":{"type":"LineString","coordinates":[[16.373994,48.211832500000014],[16.3741258,48.21180100000001],[16.374545,48.21170099999998],[16.3750655,48.211699100000004],[16.375207,48.211709600000006],[16.3752739,48.211720299999996]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Seitenstettengasse","surface":"cobblestone"}},{"type":"Feature","id":"4952872","geometry":{"type":"LineString","coordinates":[[16.3737436,48.21033220000001],[16.3738604,48.21043589999999],[16.374215,48.210698699999966],[16.3748788,48.21118530000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Rotgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both"}},{"type":"Feature","id":"4952871","geometry":{"type":"LineString","coordinates":[[16.3736524,48.21074140000002],[16.3736519,48.210740999999985],[16.3735449,48.210663100000005]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bauernmarkt","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"4952877","geometry":{"type":"LineString","coordinates":[[16.374215,48.210698699999966],[16.373849,48.21091659999999]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Fischhof","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"506998432","geometry":{"type":"LineString","coordinates":[[16.3736961,48.210780400000004],[16.3736524,48.21074140000002]]},"properties":{"covered":"yes","highway":"residential","lit":"yes","maxspeed":"30","name":"Bauernmarkt","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"185258175","geometry":{"type":"LineString","coordinates":[[16.3731956,48.211823100000004],[16.373238,48.21179359999999]]},"properties":{"highway":"footway","lit":"yes","name":"Sterngasse"}},{"type":"Feature","id":"4952858","geometry":{"type":"LineString","coordinates":[[16.3729343,48.21199989999997],[16.3739649,48.212596099999985],[16.3740083,48.21264240000002],[16.3740581,48.212713699999995]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Marc-Aurel-Straße","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"8058876","geometry":{"type":"LineString","coordinates":[[16.3727532,48.21293130000001],[16.3727258,48.212862900000005],[16.3727369,48.21275480000003],[16.3728199,48.21208469999999],[16.372832,48.21201999999997]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Vorlaufstraße","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"25949687","geometry":{"type":"LineString","coordinates":[[16.3729212,48.21192350000001],[16.3729549,48.211906],[16.3731956,48.211823100000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Sterngasse","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"4952863","geometry":{"type":"LineString","coordinates":[[16.3731297,48.21091130000002],[16.3733766,48.2111912],[16.3736854,48.2114622]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Judengasse","noexit":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"26731187","geometry":{"type":"LineString","coordinates":[[16.3733592,48.21175919999999],[16.3739346,48.211673099999985]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Sterngasse","sidewalk":"no","surface":"cobblestone"}},{"type":"Feature","id":"4952891","geometry":{"type":"LineString","coordinates":[[16.373238,48.21179359999999],[16.3733592,48.21175919999999]]},"properties":{"highway":"steps","incline":"up","lit":"yes","name":"Theodor-Herzl-Stiege"}},{"type":"Feature","id":"364911324","geometry":{"type":"LineString","coordinates":[[16.3723698,48.21154050000001],[16.3727785,48.2118907],[16.3728245,48.2119155]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Marc-Aurel-Straße","sidewalk":"both"}},{"type":"Feature","id":"165778776","geometry":{"type":"LineString","coordinates":[[16.3730115,48.2107302],[16.373425,48.2104947]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Hoher Markt","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"28151969","geometry":{"type":"LineString","coordinates":[[16.3730115,48.2107302],[16.3730856,48.21079739999999],[16.3731288,48.2108441],[16.3731297,48.21091130000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hoher Markt","surface":"cobblestone"}},{"type":"Feature","id":"26565519","geometry":{"type":"LineString","coordinates":[[16.37526,48.20982539999997],[16.3751973,48.20983749999999],[16.3749288,48.209871700000036],[16.3748803,48.20986690000001],[16.3748415,48.20984809999999],[16.3748259,48.20982190000001],[16.3748271,48.20979560000001],[16.3750008,48.20962789999999]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","myth":"yes","name":"Lugeck","name:myth":"Der Bärenhäuter","oneway":"yes","sidewalk":"right","surface":"asphalt","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/sagen_legenden_gugitz/baerenhaeuter.html"}},{"type":"Feature","id":"26565521","geometry":{"type":"LineString","coordinates":[[16.3748415,48.20984809999999],[16.374551,48.20996830000004]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Lugeck","sidewalk":"both"}},{"type":"Feature","id":"8034542","geometry":{"type":"LineString","coordinates":[[16.3741539,48.210131399999995],[16.3742148,48.210105999999996],[16.3742626,48.21008610000001],[16.374551,48.20996830000004]]},"properties":{"bicycle":"designated","foot":"designated","highway":"cycleway","lit":"yes","name":"Lugeck","segregated":"no"}},{"type":"Feature","id":"353893666","geometry":{"type":"LineString","coordinates":[[16.3745408,48.209057299999984],[16.374575,48.2090968]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof"}},{"type":"Feature","id":"116531142","geometry":{"type":"LineString","coordinates":[[16.3744895,48.209142799999995],[16.374454,48.209102]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof"}},{"type":"Feature","id":"175222091","geometry":{"type":"LineString","coordinates":[[16.3748353,48.20948809999999],[16.374745,48.209393699999964],[16.3746077,48.209255299999995]]},"properties":{"bicycle":"no","foot":"yes","highway":"footway","lit":"yes","name":"Schmeckender-Wurm-Hof","url":"https://www.wien.gv.at/spaziergang/innenhoefe/wurmhof.html"}},{"type":"Feature","id":"175222089","geometry":{"type":"LineString","coordinates":[[16.3746077,48.209255299999995],[16.3745154,48.209166400000015]]},"properties":{"bicycle":"no","foot":"yes","highway":"footway","lit":"yes","name":"Schmeckender-Wurm-Hof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00","tunnel":"building_passage"}},{"type":"Feature","id":"175222087","geometry":{"type":"LineString","coordinates":[[16.3745154,48.209166400000015],[16.3744895,48.209142799999995]]},"properties":{"bicycle":"no","foot":"yes","highway":"footway","name":"Schmeckender-Wurm-Hof"}},{"type":"Feature","id":"175222086","geometry":{"type":"LineString","coordinates":[[16.3749345,48.2095918],[16.3748353,48.20948809999999]]},"properties":{"bicycle":"no","foot":"yes","highway":"footway","lit":"yes","name":"Schmeckender-Wurm-Hof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00","tunnel":"building_passage"}},{"type":"Feature","id":"175222092","geometry":{"type":"LineString","coordinates":[[16.3750008,48.20962789999999],[16.3749411,48.20959869999999],[16.3749345,48.2095918]]},"properties":{"bicycle":"no","foot":"yes","highway":"footway","name":"Schmeckender-Wurm-Hof"}},{"type":"Feature","id":"353893664","geometry":{"type":"LineString","coordinates":[[16.3744328,48.2089321],[16.3745408,48.209057299999984]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00","tunnel":"building_passage"}},{"type":"Feature","id":"353893662","geometry":{"type":"LineString","coordinates":[[16.3741816,48.20864400000002],[16.3742881,48.20876559999999]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof","opening_hours":"6:00-22:00","tunnel":"building_passage"}},{"type":"Feature","id":"353893667","geometry":{"type":"LineString","coordinates":[[16.3743399,48.20896830000001],[16.3741975,48.2088019]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00"}},{"type":"Feature","id":"26565523","geometry":{"type":"LineString","coordinates":[[16.3750008,48.20962789999999],[16.3750795,48.209565999999995],[16.3755168,48.2093749],[16.3759977,48.20917080000001],[16.3763191,48.20903290000001],[16.3764076,48.20899589999999],[16.3771315,48.2086985]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"5","name":"Bäckerstraße","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"116758242","geometry":{"type":"LineString","coordinates":[[16.3747199,48.20844979999998],[16.3743371,48.20855869999997]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"destination","name":"Schulerstraße","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"353893665","geometry":{"type":"LineString","coordinates":[[16.3742881,48.20876559999999],[16.3744328,48.2089321]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof"}},{"type":"Feature","id":"353893663","geometry":{"type":"LineString","coordinates":[[16.374454,48.209102],[16.3743399,48.20896830000001]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00","tunnel":"building_passage"}},{"type":"Feature","id":"26419634","geometry":{"type":"LineString","coordinates":[[16.3737436,48.21033220000001],[16.373702,48.21028980000003],[16.373437,48.21005310000001],[16.3732001,48.20988030000001]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Kramergasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4952862","geometry":{"type":"LineString","coordinates":[[16.373425,48.2104947],[16.3737436,48.21033220000001],[16.3740868,48.21016449999996],[16.3741539,48.210131399999995]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Lichtensteg","sidewalk":"both"}},{"type":"Feature","id":"30323046","geometry":{"type":"LineString","coordinates":[[16.3741539,48.210131399999995],[16.3742495,48.210198399999996],[16.3743147,48.21024410000001],[16.3747394,48.21057239999999],[16.3748196,48.210626700000006],[16.3750011,48.2107494],[16.3752404,48.2108614],[16.3753643,48.21091630000001],[16.3754516,48.21095819999999],[16.3755064,48.21101620000002],[16.3757114,48.211275400000005],[16.3758148,48.21139170000001],[16.3759236,48.21151370000001],[16.3760225,48.21162429999998]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Rotenturmstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"44028860","geometry":{"type":"LineString","coordinates":[[16.3734907,48.20964670000001],[16.3735838,48.20971850000004],[16.3736399,48.209761799999995],[16.3740622,48.21006539999996],[16.3741539,48.210131399999995]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Rotenturmstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"346394521","geometry":{"type":"LineString","coordinates":[[16.3734924,48.2097794],[16.3735797,48.209849599999984]]},"properties":{"highway":"footway","lit":"yes","name":"Rotenturmstraße","surface":"paving_stones"}},{"type":"Feature","id":"26419641","geometry":{"type":"LineString","coordinates":[[16.3731034,48.210226199999994],[16.3731456,48.210206],[16.3734046,48.21007019999999],[16.373437,48.21005310000001],[16.3734616,48.210025099999996],[16.3735797,48.209849599999984],[16.3736399,48.209761799999995]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Ertlgasse","surface":"asphalt"}},{"type":"Feature","id":"397704243","geometry":{"type":"LineString","coordinates":[[16.3743371,48.20855869999997],[16.3742734,48.20857000000001],[16.374142,48.2085969],[16.3740454,48.20862410000001],[16.3740323,48.20862890000001]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"destination","name":"Schulerstraße","oneway":"yes","sidewalk":"right","surface":"cobblestone"}},{"type":"Feature","id":"28642352","geometry":{"type":"LineString","coordinates":[[16.374142,48.2085969],[16.3741816,48.20864400000002]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof"}},{"type":"Feature","id":"353893669","geometry":{"type":"LineString","coordinates":[[16.3741975,48.2088019],[16.3740867,48.20867329999999]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00","tunnel":"building_passage"}},{"type":"Feature","id":"353893668","geometry":{"type":"LineString","coordinates":[[16.3740867,48.20867329999999],[16.3740454,48.20862410000001]]},"properties":{"access":"permissive","bicycle":"no","foot":"yes","highway":"footway","name":"Zwettlhof","note":"opening_hours are informational only; no official info available","opening_hours":"6:00-22:00"}},{"type":"Feature","id":"346394520","geometry":{"type":"LineString","coordinates":[[16.372777,48.209202800000014],[16.3728251,48.20923779999998]]},"properties":{"highway":"footway","lit":"yes","name":"Rotenturmstraße","surface":"asphalt"}},{"type":"Feature","id":"375938469","geometry":{"type":"LineString","coordinates":[[16.3728251,48.20923779999998],[16.3734924,48.2097794]]},"properties":{"covered":"arcade","highway":"footway","lit":"yes","name":"Rotenturmstraße"}},{"type":"Feature","id":"349488863","geometry":{"type":"LineString","coordinates":[[16.3732001,48.20988030000001],[16.3730876,48.209819400000015],[16.3728045,48.20961360000001],[16.3724427,48.209366200000005]]},"properties":{"highway":"residential","lanes":"2","lit":"yes","maxspeed":"30","name":"Kramergasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"437865756","geometry":{"type":"LineString","coordinates":[[16.3724505,48.208810399999976],[16.3726933,48.2091078],[16.3727459,48.20917750000004],[16.372777,48.209202800000014]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"311792001","geometry":{"type":"LineString","coordinates":[[16.3724505,48.208810399999976],[16.3722998,48.208880799999974]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"189149569","geometry":{"type":"LineString","coordinates":[[16.372777,48.209202800000014],[16.3728955,48.209160199999985]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"30","name":"Brandstätte","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"10130315","geometry":{"type":"LineString","coordinates":[[16.3728955,48.209160199999985],[16.3734907,48.20964670000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Rotenturmstraße","oneway":"yes","sidewalk":"right","surface":"concrete"}},{"type":"Feature","id":"343157907","geometry":{"type":"LineString","coordinates":[[16.3726684,48.20925030000001],[16.372777,48.209202800000014]]},"properties":{"highway":"tertiary","lcn":"yes","maxspeed":"30","name":"Brandstätte","oneway":"yes","surface":"concrete"}},{"type":"Feature","id":"345895351","geometry":{"type":"LineString","coordinates":[[16.3740323,48.20862890000001],[16.373763,48.20870790000001],[16.3735847,48.20877010000004],[16.373056,48.20903709999999],[16.372938,48.209094100000016],[16.3728955,48.209160199999985]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"destination","name":"Schulerstraße","oneway":"yes","sidewalk":"right","surface":"cobblestone"}},{"type":"Feature","id":"311792005","geometry":{"type":"LineString","coordinates":[[16.3723171,48.2086759],[16.3722497,48.20870479999999],[16.3722119,48.2087023]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"184019789","geometry":{"type":"LineString","coordinates":[[16.3702913,48.21909170000001],[16.3708955,48.21872020000001],[16.3712716,48.21850169999999],[16.3721871,48.2179697],[16.37226,48.217944700000004],[16.3723341,48.21790429999999],[16.3724353,48.21784020000001],[16.3724514,48.21780079999999],[16.3727164,48.2176173],[16.3728389,48.217582100000016],[16.3730119,48.217448899999994],[16.3730768,48.21738840000003],[16.3730775,48.2173349],[16.3736012,48.216809600000005],[16.3737184,48.21664400000003],[16.3737717,48.216616499999986],[16.373926,48.216396300000014],[16.3739467,48.216328900000036],[16.3740223,48.2162251],[16.3742583,48.215876699999995],[16.3745102,48.215497899999974],[16.3745809,48.21545900000001],[16.3747192,48.215258199999994],[16.3747269,48.215199799999965],[16.3750276,48.21476670000001],[16.3751707,48.21456739999999],[16.3752553,48.21452579999999],[16.3753237,48.21442239999999]]},"properties":{"bicycle":"yes","foot":"yes","highway":"path","motor_vehicle":"private","name":"Schiffamtsufer"}},{"type":"Feature","id":"8072674","geometry":{"type":"LineString","coordinates":[[16.3724895,48.215300100000036],[16.3717045,48.21479929999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Heinrichsgasse","oneway":"yes"}},{"type":"Feature","id":"124875749","geometry":{"type":"LineString","coordinates":[[16.3705284,48.215213800000015],[16.3712599,48.214510700000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Gonzagagasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"82235422","geometry":{"type":"LineString","coordinates":[[16.3717045,48.21479929999998],[16.3712599,48.214510700000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rudolfsplatz","oneway":"yes"}},{"type":"Feature","id":"354021079","geometry":{"type":"LineString","coordinates":[[16.3712842,48.217423800000006],[16.3715182,48.2172807],[16.3716002,48.217210300000005],[16.3719263,48.2169337],[16.3720276,48.21683469999999],[16.3728008,48.216079199999996],[16.3730219,48.21576909999999],[16.373662,48.21487139999999]]},"properties":{"bicycle":"use_sidepath","foot":"no","highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Franz-Josefs-Kai","oneway":"yes","ref":"B227"}},{"type":"Feature","id":"82235423","geometry":{"type":"LineString","coordinates":[[16.3708633,48.214241500000014],[16.3701483,48.213806500000004],[16.3701213,48.213786699999986],[16.3700781,48.2137405]]},"properties":{"highway":"residential","maxspeed":"30","name":"Heinrichsgasse","oneway":"yes"}},{"type":"Feature","id":"31261119","geometry":{"type":"LineString","coordinates":[[16.3712599,48.214510700000005],[16.3711201,48.2144213],[16.3708633,48.214241500000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rudolfsplatz","oneway":"yes"}},{"type":"Feature","id":"13275666","geometry":{"type":"LineString","coordinates":[[16.3717045,48.21479929999998],[16.3720166,48.21460300000001],[16.3727004,48.214128399999964],[16.3728593,48.2140292]]},"properties":{"highway":"living_street","name":"Rudolfsplatz","oneway":"yes"}},{"type":"Feature","id":"23148524","geometry":{"type":"LineString","coordinates":[[16.370934,48.2129453],[16.3705998,48.21297820000004],[16.3703265,48.2130037],[16.3701082,48.21301869999999]]},"properties":{"highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Passauer Platz","surface":"cobblestone"}},{"type":"Feature","id":"26088764","geometry":{"type":"LineString","coordinates":[[16.3700781,48.2137405],[16.3701098,48.213716500000004],[16.3701256,48.21369759999999],[16.3701528,48.21364999999997],[16.3701725,48.2136271],[16.3701958,48.21360720000001],[16.3702415,48.2135863],[16.3703123,48.21356509999998],[16.3720051,48.213129699999996],[16.3726391,48.2129573],[16.3727532,48.21293130000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salzgries","oneway":"yes"}},{"type":"Feature","id":"183960511","geometry":{"type":"LineString","coordinates":[[16.3701353,48.2130665],[16.3701082,48.21301869999999]]},"properties":{"highway":"footway","name":"Marienstiege"}},{"type":"Feature","id":"25949698","geometry":{"type":"LineString","coordinates":[[16.37019,48.213226599999985],[16.3701353,48.2130665]]},"properties":{"handrail:left":"yes","handrail:right":"yes","highway":"steps","incline":"up","name":"Marienstiege","step_count":"41"}},{"type":"Feature","id":"27122129","geometry":{"type":"LineString","coordinates":[[16.3720051,48.213129699999996],[16.3722582,48.21354439999999]]},"properties":{"highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Gölsdorfgasse","oneway":"yes"}},{"type":"Feature","id":"8080546","geometry":{"type":"LineString","coordinates":[[16.3703123,48.21356509999998],[16.37019,48.213226599999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Marienstiege"}},{"type":"Feature","id":"15243475","geometry":{"type":"LineString","coordinates":[[16.3708633,48.214241500000014],[16.3713045,48.214015399999994],[16.3722582,48.21354439999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Rudolfsplatz","oneway":"yes"}},{"type":"Feature","id":"124875756","geometry":{"type":"LineString","coordinates":[[16.3685376,48.21430979999997],[16.3691793,48.21460250000001],[16.3705284,48.215213800000015]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Werdertorgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"172206106","geometry":{"type":"LineString","coordinates":[[16.368947,48.21390769999999],[16.3685376,48.21430979999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börsegasse"}},{"type":"Feature","id":"337813348","geometry":{"type":"LineString","coordinates":[[16.3694232,48.213259600000015],[16.3696507,48.213153000000005]]},"properties":{"highway":"footway","name":"Am Gestade"}},{"type":"Feature","id":"337813349","geometry":{"type":"LineString","coordinates":[[16.3694121,48.2132646],[16.3694232,48.213259600000015]]},"properties":{"highway":"steps","incline":"up","name":"Am Gestade","step_count":"3"}},{"type":"Feature","id":"481200538","geometry":{"type":"LineString","coordinates":[[16.3692796,48.2133005],[16.3693167,48.213281300000034],[16.3693347,48.213276699999994],[16.3693925,48.21326930000001],[16.3694121,48.2132646]]},"properties":{"highway":"footway","name":"Am Gestade"}},{"type":"Feature","id":"35170716","geometry":{"type":"LineString","coordinates":[[16.3694122,48.21343409999997],[16.3694113,48.2134475],[16.3694074,48.21346399999999],[16.3693972,48.21348090000001],[16.3693788,48.21350029999999],[16.3693438,48.21353259999998],[16.3692515,48.2136199],[16.368947,48.21390769999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Börsegasse","oneway":"yes"}},{"type":"Feature","id":"25943352","geometry":{"type":"LineString","coordinates":[[16.3694122,48.21343409999997],[16.3694391,48.2134355],[16.3694635,48.21343890000003],[16.36952,48.21345629999999],[16.3695744,48.213478899999984],[16.3697283,48.21355080000001],[16.3697573,48.213564399999996],[16.3699879,48.21367169999999],[16.3700293,48.213694799999985],[16.370054,48.213715699999995],[16.3700781,48.2137405]]},"properties":{"access":"destination","bicycle":"yes","foot":"yes","highway":"residential","motor_vehicle":"destination","name":"Concordiaplatz","psv":"designated"}},{"type":"Feature","id":"11410182","geometry":{"type":"LineString","coordinates":[[16.36876,48.21937059999999],[16.3697079,48.218665499999986],[16.3703976,48.21826630000001],[16.3709349,48.21786240000003],[16.3715873,48.2173621],[16.371753,48.21723500000002],[16.3723259,48.21678800000001],[16.3728469,48.216321300000004],[16.3732596,48.2159116],[16.3734511,48.215654900000004],[16.3736001,48.215455299999974],[16.3742523,48.21453249999999],[16.3743815,48.214351100000016],[16.3747235,48.21392399999999],[16.3747778,48.213859799999966],[16.3751338,48.213478899999984],[16.3752948,48.213310500000006],[16.3755947,48.2130842],[16.376027,48.212799200000035],[16.376548,48.212535599999995]]},"properties":{"bicycle":"designated","foot":"yes","highway":"cycleway","layer":"-1","lcn":"yes","name":"Schanzelufer","segregated":"no","surface":"asphalt"}},{"type":"Feature","id":"23309134","geometry":{"type":"LineString","coordinates":[[16.3686885,48.2127184],[16.368534,48.212787100000014]]},"properties":{"bridge":"yes","cycleway":"opposite_lane","highway":"tertiary","layer":"1","maxspeed":"30","name":"Hohe Brücke","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"185253723","geometry":{"type":"LineString","coordinates":[[16.3699693,48.21287409999999],[16.3701082,48.21301869999999]]},"properties":{"highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Passauer Platz","surface":"cobblestone"}},{"type":"Feature","id":"183960509","geometry":{"type":"LineString","coordinates":[[16.3696507,48.213153000000005],[16.3699612,48.213012099999986]]},"properties":{"highway":"steps","incline":"up","name":"Am Gestade"}},{"type":"Feature","id":"183960510","geometry":{"type":"LineString","coordinates":[[16.3699612,48.213012099999986],[16.3701082,48.21301869999999]]},"properties":{"highway":"footway","name":"Am Gestade"}},{"type":"Feature","id":"4998694","geometry":{"type":"LineString","coordinates":[[16.3679711,48.21486440000004],[16.3678521,48.2148804],[16.3677377,48.214886199999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börseplatz","oneway":"no"}},{"type":"Feature","id":"5010645","geometry":{"type":"LineString","coordinates":[[16.3713361,48.216352],[16.3713031,48.216356399999995],[16.3712475,48.216346499999986],[16.3699543,48.21575150000001],[16.3686262,48.215159099999994],[16.3679711,48.21486440000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Eßlinggasse","oneway":"yes","source":"yahoo","wikidata":"Q19971190","wikipedia":"de:Esslinggasse"}},{"type":"Feature","id":"93629719","geometry":{"type":"LineString","coordinates":[[16.3678208,48.214944],[16.3677898,48.214913300000006],[16.3677377,48.214886199999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börseplatz","oneway":"yes"}},{"type":"Feature","id":"40856788","geometry":{"type":"LineString","coordinates":[[16.3688387,48.21385000000001],[16.3687524,48.2138894],[16.3686801,48.213942299999985],[16.3681527,48.214462]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börsegasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"406390904","geometry":{"type":"LineString","coordinates":[[16.3676537,48.21328099999997],[16.3675872,48.213192900000024]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Renngasse","oneway":"no"}},{"type":"Feature","id":"121805562","geometry":{"type":"LineString","coordinates":[[16.368947,48.21390769999999],[16.3688387,48.21385000000001],[16.3687522,48.21380830000001],[16.3676537,48.21328099999997]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Renngasse","oneway":"yes"}},{"type":"Feature","id":"113145683","geometry":{"type":"LineString","coordinates":[[16.3676537,48.21328099999997],[16.3670151,48.21391270000001]]},"properties":{"highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Wipplingerstraße","oneway":"yes"}},{"type":"Feature","id":"5010658","geometry":{"type":"LineString","coordinates":[[16.3700781,48.2137405],[16.3700006,48.21380160000001],[16.3699568,48.21384309999999],[16.3691793,48.21460250000001],[16.3686262,48.215159099999994],[16.3680889,48.2156339]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Neutorgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"8058874","geometry":{"type":"LineString","coordinates":[[16.3715243,48.212115900000015],[16.371554,48.212138100000004]]},"properties":{"highway":"footway","name":"Fischerstiege"}},{"type":"Feature","id":"185258177","geometry":{"type":"LineString","coordinates":[[16.3716038,48.21217390000001],[16.371554,48.212138100000004]]},"properties":{"highway":"steps","incline":"up","name":"Fischerstiege"}},{"type":"Feature","id":"185258176","geometry":{"type":"LineString","coordinates":[[16.3716038,48.21217390000001],[16.3716871,48.212213399999996]]},"properties":{"highway":"footway","name":"Fischerstiege"}},{"type":"Feature","id":"25949689","geometry":{"type":"LineString","coordinates":[[16.3718391,48.212366900000006],[16.3718075,48.2123225],[16.3716871,48.212213399999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fischerstiege","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"25949685","geometry":{"type":"LineString","coordinates":[[16.3718391,48.212366900000006],[16.3719383,48.2126743],[16.3720173,48.21304810000001],[16.3720051,48.213129699999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fischerstiege","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"4952857","geometry":{"type":"LineString","coordinates":[[16.3720356,48.211261500000035],[16.3721227,48.211323599999986],[16.3721665,48.2113521]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Marc-Aurel-Straße","sidewalk":"both"}},{"type":"Feature","id":"73227422","geometry":{"type":"LineString","coordinates":[[16.3721665,48.2113521],[16.3723698,48.21154050000001]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Marc-Aurel-Straße","sidewalk":"both"}},{"type":"Feature","id":"4952889","geometry":{"type":"LineString","coordinates":[[16.3727896,48.211995599999995],[16.3726437,48.2120238],[16.3722961,48.21215749999996],[16.3718391,48.212366900000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Sterngasse","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"4952878","geometry":{"type":"LineString","coordinates":[[16.3735449,48.210663100000005],[16.3731712,48.210856699999994],[16.3731297,48.21091130000002],[16.3722824,48.211297099999996],[16.3721665,48.2113521]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Hoher Markt","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"4952861","geometry":{"type":"LineString","coordinates":[[16.3720356,48.211261500000035],[16.3721517,48.21118100000001],[16.3722544,48.2111252],[16.372486,48.211003000000005],[16.3728813,48.21079640000002],[16.3730115,48.2107302]]},"properties":{"highway":"residential","lanes":"2","lcn":"yes","lit":"yes","maxspeed":"30","name":"Hoher Markt","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"8080532","geometry":{"type":"LineString","coordinates":[[16.3702903,48.21203169999998],[16.3703139,48.21206189999998],[16.3705462,48.212216100000006],[16.3709467,48.212456599999996]]},"properties":{"highway":"residential","maxspeed":"30","myth":"yes","name":"Stoß im Himmel","name:myth":"Stoß im Himmel","oneway":"yes","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/sagen_legenden_gugitz/himmel.html"}},{"type":"Feature","id":"113296985","geometry":{"type":"LineString","coordinates":[[16.3702613,48.2108188],[16.3698956,48.21046609999999],[16.3698889,48.21039630000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kleeblattgasse","oneway":"yes","sidewalk":"no","source:maxspeed":"AT:zone:30","vehicle":"delivery"}},{"type":"Feature","id":"4998704","geometry":{"type":"LineString","coordinates":[[16.3709007,48.21046039999999],[16.3702613,48.2108188]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kleeblattgasse","sidewalk":"no","source:maxspeed":"AT:zone:30","vehicle":"delivery"}},{"type":"Feature","id":"4998721","geometry":{"type":"LineString","coordinates":[[16.370945,48.21139980000001],[16.3717016,48.211037499999975]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Schultergasse","oneway":"yes","sidewalk":"no","surface":"cobblestone","vehicle":"delivery"}},{"type":"Feature","id":"4998698","geometry":{"type":"LineString","coordinates":[[16.3711878,48.2116661],[16.3711416,48.211612],[16.370945,48.21139980000001],[16.3708518,48.211303799999996],[16.3707557,48.21128429999999],[16.3700874,48.211541100000005]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Jordangasse","sidewalk":"no","surface":"cobblestone","vehicle":"delivery"}},{"type":"Feature","id":"8080531","geometry":{"type":"LineString","coordinates":[[16.3699693,48.21287409999999],[16.3703911,48.2128189],[16.3705057,48.212784399999975],[16.3705506,48.21276159999999],[16.3706649,48.212681499999974],[16.3709467,48.212456599999996],[16.3711393,48.212306600000005],[16.371495,48.21213040000001],[16.3715243,48.212115900000015],[16.3718263,48.21193650000001],[16.3719962,48.2117805],[16.3723698,48.21154050000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Salvatorgasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"15243463","geometry":{"type":"LineString","coordinates":[[16.3684441,48.211452800000046],[16.3686626,48.211524],[16.368859,48.211552299999965],[16.368977,48.21156819999999],[16.3691745,48.211672799999974]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Drahtgasse","surface":"cobblestone"}},{"type":"Feature","id":"28007000","geometry":{"type":"LineString","coordinates":[[16.368859,48.211552299999965],[16.3687231,48.211669700000016],[16.3687267,48.21175600000004],[16.3687862,48.211839999999995],[16.3685648,48.21196019999999]]},"properties":{"bicycle":"no","highway":"pedestrian","name":"Ledererhof","note":"zu eng für Fahrzeuge, von der Färbergasse aus ist der Ledererhof es als Fuzo ohne Ausnahmen beschildert","surface":"cobblestone"}},{"type":"Feature","id":"8072723","geometry":{"type":"LineString","coordinates":[[16.368068,48.211657599999995],[16.3682359,48.2117068],[16.3685648,48.21196019999999],[16.3691465,48.21240879999999],[16.3692244,48.21248610000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Färbergasse","oneway":"yes"}},{"type":"Feature","id":"23148518","geometry":{"type":"LineString","coordinates":[[16.3694105,48.212397099999976],[16.3699693,48.21287409999999]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria,Wien,Innere Stadt","maxspeed":"30","name":"Schwertgasse","oneway":"yes","oneway:bicycle":"no","surface":"cobblestone"}},{"type":"Feature","id":"8072685","geometry":{"type":"LineString","coordinates":[[16.3701508,48.21209269999997],[16.3700902,48.21202790000001],[16.3700653,48.21200210000001],[16.3697581,48.211684399999996]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Fütterergasse","surface":"cobblestone"}},{"type":"Feature","id":"307625165","geometry":{"type":"LineString","coordinates":[[16.3684796,48.211170400000015],[16.3684195,48.211194000000006]]},"properties":{"highway":"residential","lit":"no","maxheight":"3.1","maxspeed":"30","motor_vehicle":"private","name":"Schulhof","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30","surface":"cobblestone","tunnel":"building_passage"}},{"type":"Feature","id":"15243471","geometry":{"type":"LineString","coordinates":[[16.3690959,48.21099610000002],[16.369144,48.21106839999999],[16.3692616,48.21128870000001],[16.3694876,48.2115326]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","maxheight":"3.1","name":"Parisergasse","surface":"cobblestone"}},{"type":"Feature","id":"4998714","geometry":{"type":"LineString","coordinates":[[16.3720356,48.211261500000035],[16.3719731,48.21132410000001],[16.3712908,48.21161319999999],[16.3711878,48.2116661],[16.3708174,48.21181949999999],[16.3702903,48.21203169999998],[16.3701508,48.21209269999997],[16.3696156,48.2123052],[16.3694105,48.212397099999976],[16.3693059,48.21244709999999],[16.3692244,48.21248610000001],[16.3686885,48.2127184]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Wipplingerstraße","oneway":"yes","oneway:bicycle":"no","source":"geoimage"}},{"type":"Feature","id":"307625166","geometry":{"type":"LineString","coordinates":[[16.3684195,48.211194000000006],[16.3682668,48.211254]]},"properties":{"highway":"residential","lit":"yes","maxheight":"3.1","maxspeed":"30","motor_vehicle":"private","name":"Schulhof","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"190494839","geometry":{"type":"LineString","coordinates":[[16.3682668,48.211254],[16.3684441,48.211452800000046],[16.368068,48.211657599999995],[16.3675488,48.2112611],[16.367113,48.210937400000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Am Hof","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"29068009","geometry":{"type":"LineString","coordinates":[[16.3689607,48.2104717],[16.3690312,48.21044269999999]]},"properties":{"bicycle":"no","covered":"yes","highway":"pedestrian","lit":"yes","name":"Tuchlaubenhof","surface":"paving_stones"}},{"type":"Feature","id":"349498511","geometry":{"type":"LineString","coordinates":[[16.3690312,48.21044269999999],[16.3691609,48.2103755]]},"properties":{"bicycle":"no","highway":"pedestrian","lit":"yes","name":"Tuchlaubenhof","surface":"paving_stones","tunnel":"building_passage"}},{"type":"Feature","id":"185196004","geometry":{"type":"LineString","coordinates":[[16.3691944,48.2106689],[16.3691425,48.21066780000001],[16.3690873,48.2106493],[16.3689607,48.2104717]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","motor_vehicle":"private","name":"Seitzergasse","surface":"paving_stones"}},{"type":"Feature","id":"172986927","geometry":{"type":"LineString","coordinates":[[16.367113,48.210937400000006],[16.3676976,48.210571500000015]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Am Hof","oneway":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"15243469","geometry":{"type":"LineString","coordinates":[[16.3691944,48.2106689],[16.3692437,48.21076069999998],[16.3692407,48.210801300000014],[16.3692225,48.21085120000001],[16.3691881,48.210895300000004],[16.3691498,48.2109614],[16.3690959,48.21099610000002],[16.3686351,48.2111094],[16.3684796,48.211170400000015]]},"properties":{"highway":"residential","lit":"yes","maxheight":"3.1","maxspeed":"30","motor_vehicle":"private","name":"Schulhof","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"8072684","geometry":{"type":"LineString","coordinates":[[16.3692684,48.21065920000001],[16.3696612,48.210902000000004],[16.3697878,48.21102339999999],[16.3699637,48.211313200000006],[16.3699598,48.21134120000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Kurrentgasse","surface":"cobblestone"}},{"type":"Feature","id":"8072689","geometry":{"type":"LineString","coordinates":[[16.3676976,48.210571500000015],[16.3677877,48.210645400000004],[16.3682668,48.211254]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Am Hof","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"461378953","geometry":{"type":"LineString","coordinates":[[16.3722998,48.208880799999974],[16.3721669,48.20894200000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Jasomirgottstraße","surface":"paving_stones"}},{"type":"Feature","id":"9226410","geometry":{"type":"LineString","coordinates":[[16.3701668,48.20977479999999],[16.3699346,48.210052700000006],[16.3699137,48.21011579999998]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Milchgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"9226587","geometry":{"type":"LineString","coordinates":[[16.3720634,48.210643800000014],[16.371642,48.210334200000005],[16.3712557,48.20990130000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Wildpretmarkt","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"9226541","geometry":{"type":"LineString","coordinates":[[16.3716207,48.21097950000001],[16.3720634,48.210643800000014],[16.3724699,48.2104257],[16.372987,48.2101567]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Landskrongasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4952856","geometry":{"type":"LineString","coordinates":[[16.3720356,48.211261500000035],[16.371951,48.2112023],[16.371915,48.211177099999986],[16.3717016,48.211037499999975],[16.3716207,48.21097950000001],[16.3709007,48.21046039999999],[16.3706487,48.210304199999996],[16.3705516,48.210252800000035]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Tuchlauben","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4952816","geometry":{"type":"LineString","coordinates":[[16.3705516,48.210252800000035],[16.3706296,48.21019380000001],[16.3706651,48.21016660000001],[16.3708211,48.210098500000015],[16.3712557,48.20990130000001],[16.3716726,48.2097162],[16.3717849,48.209664600000025],[16.3718675,48.209653],[16.3724427,48.209366200000005],[16.3726684,48.20925030000001]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Brandstätte","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"9226381","geometry":{"type":"LineString","coordinates":[[16.3709145,48.20926670000003],[16.3705122,48.209503299999994]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Freisingergasse","note":"left sidewalk narrowed at end positions of street","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"4998730","geometry":{"type":"LineString","coordinates":[[16.3716726,48.2097162],[16.3716266,48.209674800000016],[16.371505,48.209622800000005],[16.3711829,48.20941490000001],[16.3709145,48.20926670000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bauernmarkt","oneway":"yes","sidewalk":"both","source":"yahoo"}},{"type":"Feature","id":"9226639","geometry":{"type":"LineString","coordinates":[[16.3718675,48.209653],[16.3724956,48.20991889999999],[16.3727685,48.21005099999999],[16.372987,48.2101567],[16.3731034,48.210226199999994],[16.373425,48.2104947]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bauernmarkt","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4998722","geometry":{"type":"LineString","coordinates":[[16.3705516,48.210252800000035],[16.3705394,48.21009040000001],[16.3704142,48.20992080000002],[16.3703132,48.2098067],[16.3702142,48.20972760000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Kühfußgasse"}},{"type":"Feature","id":"4998715","geometry":{"type":"LineString","coordinates":[[16.3718458,48.20843180000003],[16.3714245,48.20863320000001],[16.370883,48.20889199999999],[16.3708267,48.208929299999994]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Goldschmiedgasse","oneway":"yes"}},{"type":"Feature","id":"4998724","geometry":{"type":"LineString","coordinates":[[16.3708267,48.208929299999994],[16.3704111,48.20915830000001],[16.3701791,48.20928649999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Goldschmiedgasse","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"27204217","geometry":{"type":"LineString","coordinates":[[16.3709145,48.20926670000003],[16.3708927,48.209210799999994],[16.3708524,48.20901470000001],[16.3708267,48.208929299999994]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Freisingergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"345649138","geometry":{"type":"LineString","coordinates":[[16.3721669,48.20894200000001],[16.3711829,48.20941490000001]]},"properties":{"highway":"living_street","lit":"yes","name":"Jasomirgottstraße","sidewalk":"both"}},{"type":"Feature","id":"29066935","geometry":{"type":"LineString","coordinates":[[16.3677076,48.20984949999999],[16.3679435,48.21000599999999]]},"properties":{"highway":"pedestrian","name":"Körblergasse"}},{"type":"Feature","id":"250748306","geometry":{"type":"LineString","coordinates":[[16.3689607,48.2104717],[16.3686249,48.2099662]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Seitzergasse","surface":"paving_stones"}},{"type":"Feature","id":"349498512","geometry":{"type":"LineString","coordinates":[[16.3697057,48.2100839],[16.369756,48.21005869999999]]},"properties":{"bicycle":"no","covered":"yes","highway":"pedestrian","lit":"yes","name":"Tuchlaubenhof","surface":"paving_stones"}},{"type":"Feature","id":"4998726","geometry":{"type":"LineString","coordinates":[[16.3699137,48.21011579999998],[16.3698985,48.21018169999999],[16.3695864,48.21042829999999],[16.3692684,48.21065920000001],[16.3691944,48.2106689]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","motor_vehicle":"private","name":"Steindlgasse","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"349495913","geometry":{"type":"LineString","coordinates":[[16.3698889,48.21039630000001],[16.3701196,48.21016739999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kleeblattgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"cobblestone","vehicle":"delivery"}},{"type":"Feature","id":"25950172","geometry":{"type":"LineString","coordinates":[[16.3699137,48.21011579999998],[16.3701196,48.21016739999999],[16.3703746,48.210227100000026],[16.370461,48.21024439999999],[16.3705516,48.210252800000035]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Tuchlauben","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"25950054","geometry":{"type":"LineString","coordinates":[[16.367483,48.2102946],[16.3677479,48.210494100000005]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Irisgasse"}},{"type":"Feature","id":"349498513","geometry":{"type":"LineString","coordinates":[[16.3691609,48.2103755],[16.3697057,48.2100839]]},"properties":{"bicycle":"no","covered":"building_passage","highway":"pedestrian","lit":"yes","name":"Tuchlaubenhof","surface":"paving_stones"}},{"type":"Feature","id":"29067329","geometry":{"type":"LineString","coordinates":[[16.3671985,48.209343200000035],[16.3675989,48.209622499999995]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Neubadgasse","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"30322216","geometry":{"type":"LineString","coordinates":[[16.3701668,48.20977479999999],[16.3700265,48.209704200000004],[16.369596,48.209457799999996],[16.3695651,48.20940709999999],[16.3695748,48.209363800000006],[16.3696247,48.209280699999994],[16.369648,48.209247500000004],[16.3696875,48.209220500000015]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Petersplatz","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"30322208","geometry":{"type":"LineString","coordinates":[[16.3696875,48.209220500000015],[16.3697564,48.209197699999976],[16.3698256,48.20917],[16.3698981,48.20916630000002],[16.3699733,48.209189400000014],[16.3701791,48.20928649999999],[16.3705122,48.209503299999994],[16.3702142,48.20972760000001],[16.3701668,48.20977479999999]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Petersplatz","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"8043984","geometry":{"type":"LineString","coordinates":[[16.3685027,48.20941909999999],[16.3686379,48.2095717],[16.3686813,48.209612600000014],[16.3688515,48.20969389999999]]},"properties":{"bicycle":"no","highway":"pedestrian","lit":"yes","name":"Tuchlauben","source":"geoimage"}},{"type":"Feature","id":"8084084","geometry":{"type":"LineString","coordinates":[[16.3688515,48.20969389999999],[16.3686249,48.2099662],[16.3683127,48.210139699999985],[16.3681011,48.210254099999986],[16.3678448,48.21040579999999],[16.3677479,48.210494100000005],[16.3676976,48.210571500000015]]},"properties":{"bicycle":"yes","foot":"yes","highway":"pedestrian","lcn":"yes","lit":"yes","myth":"yes","name":"Bognergasse","name:myth":"Zum Totenkopf","surface":"paving_stones","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/sagen_legenden_gugitz/zum_totenkopf.html","wikidata":"Q15789208","wikipedia":"de:Bognergasse"}},{"type":"Feature","id":"30322084","geometry":{"type":"LineString","coordinates":[[16.3688515,48.20969389999999],[16.369756,48.21005869999999],[16.3699137,48.21011579999998]]},"properties":{"bicycle":"yes","foot":"yes","highway":"pedestrian","lcn":"yes","lit":"yes","name":"Tuchlauben","surface":"paving_stones"}},{"type":"Feature","id":"4998699","geometry":{"type":"LineString","coordinates":[[16.3691736,48.20898360000001],[16.3693269,48.20901739999999],[16.3694951,48.20912360000003],[16.3696287,48.2092164],[16.3696875,48.209220500000015]]},"properties":{"bicycle":"yes","emergency":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","myth":"yes","name":"Jungferngasse","name:myth":"Die Sage vom Jungferngässchen und dem Wiener Don Juan","oneway":"yes","psv":"yes","sidewalk":"both","taxi":"yes","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/1_bezirk/Jungferngaesschen.html"}},{"type":"Feature","id":"4583430","geometry":{"type":"LineString","coordinates":[[16.3685027,48.20941909999999],[16.3690528,48.20907110000002],[16.3691736,48.20898360000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Graben","wikipedia":"de:Graben (Wien)"}},{"type":"Feature","id":"93629726","geometry":{"type":"LineString","coordinates":[[16.3677377,48.214886199999995],[16.3676818,48.2148608],[16.3672151,48.21464710000001],[16.3668139,48.21446340000003],[16.3666576,48.21441459999997],[16.3665387,48.214390500000036],[16.3664204,48.214361199999985],[16.3663697,48.21435009999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börseplatz","oneway":"yes"}},{"type":"Feature","id":"30072788","geometry":{"type":"LineString","coordinates":[[16.3665387,48.214390500000036],[16.3664709,48.21445299999999],[16.3664207,48.21448379999998],[16.3657974,48.21510740000002],[16.3657181,48.21518900000001],[16.3657283,48.215221299999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wipplingerstraße","oneway":"yes"}},{"type":"Feature","id":"31725051","geometry":{"type":"LineString","coordinates":[[16.3668157,48.21593359999997],[16.3669045,48.21584139999999],[16.3669553,48.21578869999996],[16.3670095,48.21573240000001],[16.3671202,48.21561750000001],[16.3678208,48.214944],[16.3678796,48.214906499999984],[16.3679711,48.21486440000004],[16.3683086,48.21453389999999],[16.3685376,48.21430979999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börsegasse","oneway":"yes"}},{"type":"Feature","id":"10130488","geometry":{"type":"LineString","coordinates":[[16.3663697,48.21435009999999],[16.3657288,48.2149733],[16.3656121,48.2150953],[16.3655609,48.21514880000001],[16.3655101,48.21520509999999],[16.3654289,48.21529509999999]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"30","name":"Wipplingerstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"25950273","geometry":{"type":"LineString","coordinates":[[16.368534,48.212787100000014],[16.3678244,48.2130751],[16.3675872,48.213192900000024],[16.3668802,48.21385240000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"30","name":"Wipplingerstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"113145685","geometry":{"type":"LineString","coordinates":[[16.3662418,48.21355449999999],[16.3668802,48.21385240000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rockhgasse","oneway":"yes"}},{"type":"Feature","id":"469205306","geometry":{"type":"LineString","coordinates":[[16.3657431,48.2140287],[16.3662418,48.21355449999999],[16.3671131,48.2126676]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hohenstaufengasse","oneway":"yes"}},{"type":"Feature","id":"468761498","geometry":{"type":"LineString","coordinates":[[16.3669651,48.2124886],[16.3670459,48.21245450000001],[16.3673209,48.21224089999998],[16.3673045,48.21223250000003]]},"properties":{"highway":"footway","name":"Wächtergasse"}},{"type":"Feature","id":"172206108","geometry":{"type":"LineString","coordinates":[[16.3668802,48.21385240000001],[16.3670151,48.21391270000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börseplatz","oneway":"no"}},{"type":"Feature","id":"10130730","geometry":{"type":"LineString","coordinates":[[16.3668802,48.21385240000001],[16.3667938,48.21397429999999],[16.3664618,48.2142839],[16.3663697,48.21435009999999]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"30","name":"Börseplatz","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"406390894","geometry":{"type":"LineString","coordinates":[[16.3670151,48.21391270000001],[16.3670441,48.213931099999996],[16.3681048,48.21444149999999],[16.3681527,48.214462],[16.3683086,48.21453389999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Börseplatz","oneway":"yes"}},{"type":"Feature","id":"30072665","geometry":{"type":"LineString","coordinates":[[16.3643762,48.213907000000006],[16.3653862,48.21441039999999]]},"properties":{"highway":"pedestrian","name":"Schottenbastei"}},{"type":"Feature","id":"113300209","geometry":{"type":"LineString","coordinates":[[16.3649157,48.21484829999997],[16.3653862,48.21441039999999],[16.3655607,48.214241000000044],[16.3657064,48.21409790000004],[16.3657431,48.2140287]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hohenstaufengasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"35306132","geometry":{"type":"LineString","coordinates":[[16.3638942,48.214366900000016],[16.3649157,48.21484829999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"10130642","geometry":{"type":"LineString","coordinates":[[16.3647603,48.2149934],[16.3648509,48.21491019999999],[16.3649157,48.21484829999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hohenstaufengasse","source":"yahoo"}},{"type":"Feature","id":"5010654","geometry":{"type":"LineString","coordinates":[[16.3649157,48.21484829999997],[16.3654627,48.2151035],[16.3655609,48.21514880000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"35302221","geometry":{"type":"LineString","coordinates":[[16.3646003,48.21513690000003],[16.3646649,48.2150757],[16.3647603,48.2149934]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Hohenstaufengasse","source":"yahoo"}},{"type":"Feature","id":"8080524","geometry":{"type":"LineString","coordinates":[[16.3662418,48.21355449999999],[16.3659007,48.2133948],[16.365851,48.21338159999999],[16.3657922,48.21339119999999],[16.3650531,48.21367279999998]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rockhgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"30072662","geometry":{"type":"LineString","coordinates":[[16.3643762,48.213907000000006],[16.3645639,48.21375130000001],[16.3648101,48.21355169999998]]},"properties":{"highway":"pedestrian","name":"Heßgasse"}},{"type":"Feature","id":"8080525","geometry":{"type":"LineString","coordinates":[[16.3643762,48.213907000000006],[16.364351,48.21393119999999],[16.3638942,48.214366900000016]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Heßgasse","oneway":"yes"}},{"type":"Feature","id":"9536246","geometry":{"type":"LineString","coordinates":[[16.3636384,48.214607099999995],[16.3636855,48.2145634],[16.3637263,48.21452450000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Heßgasse"}},{"type":"Feature","id":"442794472","geometry":{"type":"LineString","coordinates":[[16.3635707,48.21467000000001],[16.3636384,48.214607099999995]]},"properties":{"highway":"residential","maxspeed":"50","name":"Heßgasse"}},{"type":"Feature","id":"442794473","geometry":{"type":"LineString","coordinates":[[16.3631112,48.2151288],[16.3635707,48.21467000000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Heßgasse"}},{"type":"Feature","id":"441635691","geometry":{"type":"LineString","coordinates":[[16.3646003,48.21513690000003],[16.3635707,48.21467000000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schottenring","oneway":"yes"}},{"type":"Feature","id":"35284028","geometry":{"type":"LineString","coordinates":[[16.3630061,48.21396630000001],[16.3638942,48.214366900000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottenring"}},{"type":"Feature","id":"113300211","geometry":{"type":"LineString","coordinates":[[16.3638942,48.214366900000016],[16.3638196,48.21443690000001],[16.3637735,48.2144802],[16.3637263,48.21452450000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Heßgasse"}},{"type":"Feature","id":"29067252","geometry":{"type":"LineString","coordinates":[[16.3630941,48.212681],[16.3629435,48.21263060000001]]},"properties":{"highway":"steps","incline":"up","name":"Mölker Steig"}},{"type":"Feature","id":"44028858","geometry":{"type":"LineString","coordinates":[[16.3632246,48.213254500000005],[16.363544,48.21293559999998]]},"properties":{"cycleway":"lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Schottengasse"}},{"type":"Feature","id":"8900171","geometry":{"type":"LineString","coordinates":[[16.3663697,48.21435009999999],[16.3657431,48.2140287],[16.3652688,48.21378390000001],[16.3650531,48.21367279999998],[16.3648101,48.21355169999998],[16.3646935,48.213499799999994],[16.3645673,48.21345600000001],[16.3638287,48.21308020000001],[16.363544,48.21293559999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Helferstorferstraße","oneway":"yes"}},{"type":"Feature","id":"8901329","geometry":{"type":"LineString","coordinates":[[16.3632246,48.213254500000005],[16.3643035,48.21386580000001],[16.3643762,48.213907000000006]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schottenbastei","oneway":"yes"}},{"type":"Feature","id":"44028857","geometry":{"type":"LineString","coordinates":[[16.3630745,48.21317379999999],[16.3632246,48.213254500000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"8072718","geometry":{"type":"LineString","coordinates":[[16.3663435,48.21126509999999],[16.3664086,48.21131359999998],[16.3670027,48.21163269999997],[16.367593,48.21202099999999],[16.3680792,48.21235760000002],[16.3684937,48.212657699999994],[16.3690092,48.2130889],[16.3692796,48.2133005],[16.3693295,48.21333820000001],[16.3693758,48.21337190000003],[16.3693942,48.21338700000001],[16.3694049,48.21340040000001],[16.3694113,48.21341810000004],[16.3694122,48.21343409999997]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","maxheight":"default","maxspeed":"30","name":"Tiefer Graben","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"406390906","geometry":{"type":"LineString","coordinates":[[16.3675872,48.213192900000024],[16.367559,48.213128900000015],[16.3674582,48.213031099999995],[16.3671131,48.2126676],[16.3670215,48.212557799999985],[16.3669651,48.2124886],[16.3664869,48.2120961]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Renngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"113145641","geometry":{"type":"LineString","coordinates":[[16.3657801,48.21151069999999],[16.3658713,48.21146970000001],[16.3662555,48.211297],[16.3663435,48.21126509999999]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Freyung","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"25950117","geometry":{"type":"LineString","coordinates":[[16.3675471,48.210252999999994],[16.3673466,48.210119099999986],[16.3670475,48.210050800000005],[16.3666393,48.20975709999996]]},"properties":{"foot":"yes","highway":"pedestrian","lit":"yes","name":"Haarhof","surface":"paving_stones"}},{"type":"Feature","id":"27368746","geometry":{"type":"LineString","coordinates":[[16.3663435,48.21126509999999],[16.3664302,48.211229599999996],[16.3666754,48.21113120000001],[16.3669684,48.211012900000014],[16.367113,48.210937400000006]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Heidenschuß","oneway":"no"}},{"type":"Feature","id":"4998711","geometry":{"type":"LineString","coordinates":[[16.3686379,48.2095717],[16.3679435,48.21000599999999],[16.3675471,48.210252999999994],[16.367483,48.2102946],[16.3666177,48.21085199999999],[16.3665837,48.21093719999999],[16.3666754,48.21113120000001]]},"properties":{"foot":"yes","highway":"pedestrian","lit":"yes","name":"Naglergasse"}},{"type":"Feature","id":"113145639","geometry":{"type":"LineString","coordinates":[[16.3664869,48.2120961],[16.3657801,48.21151069999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Renngasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"184553838","geometry":{"type":"LineString","coordinates":[[16.3656938,48.21129389999999],[16.3654738,48.211081199999995],[16.3653823,48.21100279999999],[16.3651487,48.2107958],[16.3650358,48.21076069999998]]},"properties":{"bicycle":"dismount","foot":"permissive","highway":"footway","name":"Ferstelpassage","tunnel":"building_passage"}},{"type":"Feature","id":"25950853","geometry":{"type":"LineString","coordinates":[[16.3656311,48.21041249999999],[16.3660781,48.21016270000001],[16.3662067,48.21007770000003],[16.3665856,48.209796900000015]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Wallnerstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4998710","geometry":{"type":"LineString","coordinates":[[16.3663435,48.21126509999999],[16.3662743,48.211186],[16.3661875,48.21108290000001],[16.3659006,48.21072659999999],[16.3656979,48.21048909999996],[16.3656311,48.21041249999999],[16.365392,48.210153899999995]]},"properties":{"highway":"residential","historic_context:de":"im Jahr 1320 erstmals erwähnt, ...https://www.wien.gv.at/wiki/index.php?title=Strauchgasse","historic_name":"Strauchgässel","lit":"yes","maxspeed":"30","name":"Strauchgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"31131383","geometry":{"type":"LineString","coordinates":[[16.3655338,48.209964000000014],[16.3660781,48.21016270000001]]},"properties":{"cycleway":"opposite","highway":"residential","historic_context:de":"seit 1985, nach Leopold Figl, ...https://www.wien.gv.at/wiki/index.php?title=Leopold-Figl-Gasse","lit":"yes","maxspeed":"30","name":"Leopold-Figl-Gasse","old_name":"Regierungsgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"170511029","geometry":{"type":"LineString","coordinates":[[16.364477,48.21160710000001],[16.3643614,48.21180179999999],[16.3642437,48.21194750000001],[16.3641875,48.211978999999985],[16.3641107,48.2119869]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Freyung","oneway":"yes"}},{"type":"Feature","id":"4998693","geometry":{"type":"LineString","coordinates":[[16.3641616,48.21205370000001],[16.3641107,48.2119869]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Teinfaltstraße","oneway":"yes"}},{"type":"Feature","id":"30062411","geometry":{"type":"LineString","coordinates":[[16.3643614,48.21180179999999],[16.3643849,48.21184029999998],[16.364451,48.21186929999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Freyung","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"30323418","geometry":{"type":"LineString","coordinates":[[16.363544,48.21293559999998],[16.363576,48.21287220000002],[16.3639914,48.21230370000001],[16.3641616,48.21205370000001]]},"properties":{"bicycle":"yes","cycleway":"opposite_track","highway":"residential","lit":"yes","maxspeed":"30","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"455386120","geometry":{"type":"LineString","coordinates":[[16.3648643,48.210923200000025],[16.3641025,48.21062090000001]]},"properties":{"highway":"residential","maxspeed":"20","name":"Bankgasse","note":"Begegnungszone","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4998733","geometry":{"type":"LineString","coordinates":[[16.3633468,48.21088499999999],[16.362891,48.21151630000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rosengasse","oneway":"yes"}},{"type":"Feature","id":"28007162","geometry":{"type":"LineString","coordinates":[[16.3641616,48.21205370000001],[16.364451,48.21186929999999],[16.3645051,48.21185349999999],[16.3646588,48.21180670000001],[16.3648306,48.21177460000001],[16.3651732,48.211707399999966],[16.3654043,48.21165669999999],[16.3657801,48.21151069999999]]},"properties":{"bicycle":"yes","cycleway":"opposite_track","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Freyung","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"8107355","geometry":{"type":"LineString","coordinates":[[16.3640034,48.20995540000001],[16.3641033,48.209980599999994],[16.3652061,48.21041020000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Landhausgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4998709","geometry":{"type":"LineString","coordinates":[[16.3636535,48.21044269999999],[16.3640034,48.20995540000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Petrarcagasse","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"4998718","geometry":{"type":"LineString","coordinates":[[16.3640034,48.20995540000001],[16.3631965,48.20970840000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Minoritenplatz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"29065085","geometry":{"type":"LineString","coordinates":[[16.3631965,48.20970840000001],[16.362903,48.21013909999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Abraham-a-Sancta-Clara-Gasse","oneway":"yes"}},{"type":"Feature","id":"26153832","geometry":{"type":"LineString","coordinates":[[16.365392,48.210153899999995],[16.3653398,48.21022579999999],[16.3652061,48.21041020000001],[16.3649833,48.21074390000001],[16.3648643,48.210923200000025],[16.3647017,48.211164999999966],[16.3645902,48.211335599999984],[16.364477,48.21160710000001]]},"properties":{"cycleway":"opposite","highway":"residential","historic_context:de":"Wie schon ihr Name verrät war sie einst Sitz des landständischen Adels. Ohne Zweifel ist sie eine der ältesten Straßen Wiens, ... https://www.wien.gv.at/wiki/index.php?title=Herrengasse","historic_name":"Hochstraße","maxspeed":"20","name":"Herrengasse","note":"Begegnungszone","old_name":"Freiheitsgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"4998720","geometry":{"type":"LineString","coordinates":[[16.3641025,48.21062090000001],[16.3638318,48.21051349999999],[16.3636535,48.21044269999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bankgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4998719","geometry":{"type":"LineString","coordinates":[[16.3635526,48.210960899999975],[16.3638318,48.21051349999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schenkenstraße","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"4998713","geometry":{"type":"LineString","coordinates":[[16.3665856,48.209796900000015],[16.3664291,48.20972740000002],[16.3658797,48.209503100000006]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"20","name":"Fahnengasse","note":"Begegnungszone","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","wikidata":"Q19971200","wikipedia":"de:Fahnengasse"}},{"type":"Feature","id":"4998728","geometry":{"type":"LineString","coordinates":[[16.3678568,48.208954000000034],[16.3671985,48.209343200000035],[16.3666393,48.20975709999996],[16.3665856,48.209796900000015]]},"properties":{"foot":"yes","highway":"pedestrian","lit":"yes","name":"Wallnerstraße","surface":"paving_stones"}},{"type":"Feature","id":"4998731","geometry":{"type":"LineString","coordinates":[[16.3655338,48.209964000000014],[16.3654466,48.2099168],[16.3645071,48.20953180000001],[16.3644166,48.20949999999999]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"30","name":"Leopold-Figl-Gasse","vehicle":"private"}},{"type":"Feature","id":"29065101","geometry":{"type":"LineString","coordinates":[[16.3640034,48.20995540000001],[16.3644166,48.20949999999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Minoritenplatz","surface":"cobblestone"}},{"type":"Feature","id":"4998700","geometry":{"type":"LineString","coordinates":[[16.3631965,48.20970840000001],[16.3634533,48.2092634],[16.3634069,48.209184600000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Minoritenplatz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"326786857","geometry":{"type":"LineString","coordinates":[[16.3641381,48.20857459999996],[16.364256,48.20855059999997]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Bruno-Kreisky-Gasse","surface":"cobblestone"}},{"type":"Feature","id":"4998701","geometry":{"type":"LineString","coordinates":[[16.3634069,48.209184600000015],[16.3628124,48.20886010000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Metastasiogasse","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"8052916","geometry":{"type":"LineString","coordinates":[[16.374831,48.208406999999994],[16.3751996,48.20878910000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Strobelgasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"326369577","geometry":{"type":"LineString","coordinates":[[16.374151,48.20841419999999],[16.3742215,48.20839479999998]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"5930426","geometry":{"type":"LineString","coordinates":[[16.3747199,48.20844979999998],[16.3745578,48.20824759999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Domgasse","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"326369578","geometry":{"type":"LineString","coordinates":[[16.3739886,48.208288100000004],[16.374151,48.20841419999999],[16.3743371,48.20855869999997]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"311792006","geometry":{"type":"LineString","coordinates":[[16.3719075,48.208217399999995],[16.3720796,48.20837990000001],[16.3723171,48.2086759],[16.3724505,48.208810399999976]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"345867042","geometry":{"type":"LineString","coordinates":[[16.3745578,48.20824759999999],[16.3747838,48.208151799999996],[16.3749432,48.208084499999984],[16.3751478,48.20797369999997],[16.3752415,48.20794999999998],[16.3756772,48.20777910000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Domgasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"311792003","geometry":{"type":"LineString","coordinates":[[16.3738372,48.208102199999985],[16.3739291,48.208018400000014]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"8043885","geometry":{"type":"LineString","coordinates":[[16.3771326,48.207622600000036],[16.3770555,48.20765639999999],[16.3764752,48.207888],[16.3762798,48.20799650000001],[16.3759438,48.20811180000001],[16.3755134,48.20822529999998],[16.3751119,48.20831240000001],[16.374831,48.208406999999994],[16.3747199,48.20844979999998]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Schulerstraße","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"24774407","geometry":{"type":"LineString","coordinates":[[16.3730102,48.20758939999999],[16.3729154,48.20762250000004],[16.3720725,48.207877499999995]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Singerstraße","noexit":"yes","oneway":"no","sidewalk":"both"}},{"type":"Feature","id":"26154417","geometry":{"type":"LineString","coordinates":[[16.3731465,48.207962899999984],[16.3729154,48.20762250000004]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Churhausgasse","sidewalk":"no","surface":"paving_stones"}},{"type":"Feature","id":"7830283","geometry":{"type":"LineString","coordinates":[[16.3734907,48.20964670000001],[16.3735456,48.20962129999998],[16.3744895,48.209142799999995],[16.374575,48.2090968],[16.3750324,48.20886999999999],[16.3751996,48.20878910000002],[16.3753556,48.20872880000002],[16.3762524,48.208402500000005],[16.3770346,48.208159300000034],[16.377315,48.2080746],[16.3773686,48.2080574],[16.3774491,48.2080292],[16.3775283,48.2080062],[16.378412,48.20775020000002],[16.3785551,48.207707200000016],[16.3787531,48.207653600000015]]},"properties":{"highway":"tertiary","lcn":"yes","lit":"yes","maxspeed":"30","name":"Wollzeile","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone","surface":"asphalt","tourist_bus":"no"}},{"type":"Feature","id":"26154535","geometry":{"type":"LineString","coordinates":[[16.3720725,48.207877499999995],[16.3718536,48.2079512]]},"properties":{"highway":"pedestrian","is_in":"Europe,Austria,Vienna,Wien,Innere Stadt","lit":"yes","name":"Singerstraße"}},{"type":"Feature","id":"311792000","geometry":{"type":"LineString","coordinates":[[16.3718458,48.20843180000003],[16.3720796,48.20837990000001],[16.3723653,48.2082819],[16.3728528,48.2081355],[16.3731952,48.20803939999999],[16.3737227,48.208060399999965],[16.3738372,48.208102199999985],[16.3739886,48.208288100000004],[16.3739554,48.20838409999999],[16.3738377,48.2084869],[16.3737762,48.208613000000014],[16.373763,48.20870790000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stephansplatz","surface":"paving_stones"}},{"type":"Feature","id":"5930438","geometry":{"type":"LineString","coordinates":[[16.3759438,48.20811180000001],[16.3759043,48.208045200000015],[16.3756772,48.20777910000001],[16.3756667,48.20773990000001],[16.3752696,48.20736529999999],[16.3752335,48.20733760000002],[16.3749353,48.20711],[16.3746136,48.206863699999985]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Grünangergasse","oneway":"yes","place_numbers":"1-12","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"8072628","geometry":{"type":"LineString","coordinates":[[16.3749353,48.20711],[16.37456,48.20733899999999],[16.3745307,48.207355500000006]]},"properties":{"highway":"living_street","lit":"yes","maxspeed":"7","name":"Nikolaigasse","noexit":"yes","sidewalk":"no","surface":"cobblestone"}},{"type":"Feature","id":"116758240","geometry":{"type":"LineString","coordinates":[[16.3742134,48.2062694],[16.3747146,48.20595399999999],[16.3749324,48.205885300000006],[16.3753543,48.2056585],[16.3754372,48.20557740000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"355374713","geometry":{"type":"LineString","coordinates":[[16.3741816,48.20624239999998],[16.3742134,48.2062694]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Ballgasse","surface":"cobblestone","view":"narrow"}},{"type":"Feature","id":"355374714","geometry":{"type":"LineString","coordinates":[[16.3744347,48.206517599999984],[16.3743713,48.20645429999999],[16.374273,48.2063861],[16.3742024,48.206287799999984]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Franziskanerplatz","sidewalk":"left","surface":"cobblestone"}},{"type":"Feature","id":"5930411","geometry":{"type":"LineString","coordinates":[[16.3747329,48.20680340000004],[16.3744347,48.206517599999984]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Franziskanerplatz","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"43308573","geometry":{"type":"LineString","coordinates":[[16.3750325,48.203218700000036],[16.3750895,48.20322390000001],[16.3751394,48.20321320000002],[16.3757428,48.20293620000001],[16.3757954,48.20291209999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Fichtegasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"43308574","geometry":{"type":"LineString","coordinates":[[16.3743256,48.20357709999999],[16.3745773,48.203430499999996],[16.3750325,48.203218700000036]]},"properties":{"bicycle":"yes","highway":"pedestrian","lit":"yes","name":"Fichtegasse"}},{"type":"Feature","id":"43308570","geometry":{"type":"LineString","coordinates":[[16.3756113,48.203756],[16.3752201,48.203373699999986],[16.3751266,48.20328309999999],[16.3750948,48.20325009999999],[16.3750895,48.20322390000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Hegelgasse","oneway":"yes","sidewalk":"both","wikidata":"Q16916609","wikipedia":"de:Hegelgasse (Wien)"}},{"type":"Feature","id":"75529655","geometry":{"type":"LineString","coordinates":[[16.3745511,48.2051304],[16.3755071,48.20462950000001],[16.3762031,48.20430680000001],[16.376839,48.20402410000003],[16.3769074,48.20399370000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Himmelpfortgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"43308572","geometry":{"type":"LineString","coordinates":[[16.374902,48.2040801],[16.3749663,48.20413839999998],[16.3755071,48.20462950000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Schellinggasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"5930455","geometry":{"type":"LineString","coordinates":[[16.3738155,48.20729299999999],[16.3739913,48.2074599],[16.3742723,48.20773329999997],[16.3743573,48.207802500000014],[16.3745099,48.20791700000001],[16.3747838,48.208151799999996]]},"properties":{"highway":"pedestrian","lit":"yes","myth":"yes","name":"Blutgasse","name:myth":"Das Blutgässchen","surface":"cobblestone","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/sagen_legenden_gugitz/blutgaesschen.html"}},{"type":"Feature","id":"32008717","geometry":{"type":"LineString","coordinates":[[16.3741593,48.2044262],[16.3740976,48.204374400000006],[16.3735555,48.20393889999997]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilerstätte","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"32008719","geometry":{"type":"LineString","coordinates":[[16.3741593,48.2044262],[16.3742025,48.20447630000001],[16.3745511,48.2051304],[16.3754372,48.20557740000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilerstätte","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"185127705","geometry":{"type":"LineString","coordinates":[[16.3731592,48.20557629999999],[16.3739086,48.205383900000015],[16.3744385,48.20520429999999],[16.3745511,48.2051304]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Himmelpfortgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"116758238","geometry":{"type":"LineString","coordinates":[[16.3740493,48.2061295],[16.3741816,48.20624239999998]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Ballgasse","surface":"cobblestone","tunnel":"building_passage","view":"narrow"}},{"type":"Feature","id":"116758239","geometry":{"type":"LineString","coordinates":[[16.3740099,48.206495399999994],[16.3742024,48.206287799999984],[16.3742134,48.2062694]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","oneway":"yes","sidewalk":"right","surface":"cobblestone"}},{"type":"Feature","id":"30692804","geometry":{"type":"LineString","coordinates":[[16.3763309,48.2034343],[16.3762678,48.20346459999999],[16.3756113,48.203756],[16.3749722,48.204048],[16.374902,48.2040801],[16.3748216,48.204116],[16.3742354,48.20437820000001],[16.3741593,48.2044262]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Johannesgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"5930449","geometry":{"type":"LineString","coordinates":[[16.3735393,48.202883799999995],[16.3734355,48.20306679999999],[16.3731562,48.20355030000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schwarzenbergstraße","oneway":"yes","sidewalk":"both","source":"yahoo","view":"open"}},{"type":"Feature","id":"43308571","geometry":{"type":"LineString","coordinates":[[16.374902,48.2040801],[16.3748348,48.20402150000001],[16.3743256,48.20357709999999],[16.3736452,48.20297719999999],[16.3735393,48.202883799999995]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Schellinggasse","oneway":"yes","sidewalk":"both","source":"yahoo"}},{"type":"Feature","id":"8072751","geometry":{"type":"LineString","coordinates":[[16.3735555,48.20393889999997],[16.3743256,48.20357709999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Fichtegasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4997569","geometry":{"type":"LineString","coordinates":[[16.3728256,48.20665980000001],[16.3729524,48.20660889999999],[16.3732437,48.20642839999999],[16.3732977,48.20623660000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Blumenstockgasse","surface":"cobblestone"}},{"type":"Feature","id":"4997576","geometry":{"type":"LineString","coordinates":[[16.372663,48.206352100000004],[16.3730019,48.20629059999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Ballgasse","sidewalk":"right","sidewalk:right:width":"1 m","surface":"cobblestone"}},{"type":"Feature","id":"344663251","geometry":{"type":"LineString","coordinates":[[16.3727762,48.2065877],[16.372663,48.206352100000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rauhensteingasse","oneway":"yes","sidewalk":"both","sidewalk:both:width":"1"}},{"type":"Feature","id":"26154386","geometry":{"type":"LineString","coordinates":[[16.3727506,48.206982599999975],[16.3729623,48.20692780000002],[16.3732765,48.20685449999999],[16.3733806,48.20681309999998],[16.3736114,48.20671780000001],[16.3737902,48.206623399999984],[16.3740099,48.206495399999994]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4997588","geometry":{"type":"LineString","coordinates":[[16.3729623,48.20692780000002],[16.3728256,48.20665980000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rauhensteingasse","oneway":"yes","sidewalk":"both","sidewalk:both:width":"1"}},{"type":"Feature","id":"344663252","geometry":{"type":"LineString","coordinates":[[16.3728256,48.20665980000001],[16.3727762,48.2065877]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rauhensteingasse","oneway":"yes","sidewalk":"both","sidewalk:left:width":"1","sidewalk:right:width":"0.3"}},{"type":"Feature","id":"26154383","geometry":{"type":"LineString","coordinates":[[16.3727506,48.206982599999975],[16.3724007,48.20704069999999],[16.3721881,48.207058200000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weihburggasse","noexit":"yes","oneway":"no","sidewalk":"both"}},{"type":"Feature","id":"5930457","geometry":{"type":"LineString","coordinates":[[16.3730102,48.20758939999999],[16.3727506,48.206982599999975]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Liliengasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"26154250","geometry":{"type":"LineString","coordinates":[[16.3718606,48.20511960000002],[16.3740576,48.2044741],[16.3741593,48.2044262]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Johannesgasse","sidewalk":"both"}},{"type":"Feature","id":"185127704","geometry":{"type":"LineString","coordinates":[[16.3726258,48.20571270000002],[16.3731592,48.20557629999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Himmelpfortgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"26581342","geometry":{"type":"LineString","coordinates":[[16.372347,48.20578019999999],[16.372487,48.20574640000004],[16.3726258,48.20571270000002]]},"properties":{"highway":"residential","is_in":"Austria,Wien,Innere Stadt","lit":"yes","maxspeed":"30","name":"Himmelpfortgasse","oneway":"yes"}},{"type":"Feature","id":"26154331","geometry":{"type":"LineString","coordinates":[[16.372196,48.20581520000002],[16.372347,48.20578019999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Himmelpfortgasse"}},{"type":"Feature","id":"344663253","geometry":{"type":"LineString","coordinates":[[16.372663,48.206352100000004],[16.3726055,48.20622910000003],[16.3724646,48.205992500000036],[16.3723612,48.205820700000004],[16.372347,48.20578019999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rauhensteingasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"344663250","geometry":{"type":"LineString","coordinates":[[16.3730019,48.20629059999999],[16.3732977,48.20623660000001],[16.3734567,48.20620290000002],[16.3737181,48.20605160000002],[16.373933,48.206029],[16.3740493,48.2061295]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Ballgasse","surface":"cobblestone"}},{"type":"Feature","id":"82137513","geometry":{"type":"LineString","coordinates":[[16.3768011,48.206171900000044],[16.3759976,48.206301999999994],[16.3758267,48.20634480000001],[16.3754923,48.20647290000002],[16.3751276,48.206619200000006],[16.3747329,48.20680340000004],[16.3746136,48.206863699999985],[16.3740424,48.207185200000026],[16.3738155,48.20729299999999],[16.3736493,48.20735730000001],[16.3731568,48.207538700000015],[16.3730102,48.20758939999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Singerstraße","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"8072630","geometry":{"type":"LineString","coordinates":[[16.3731562,48.20355030000002],[16.3730026,48.203538699999996],[16.3728975,48.203537900000015],[16.3724007,48.20366419999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Krugerstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"8072632","geometry":{"type":"LineString","coordinates":[[16.3731562,48.20355030000002],[16.373163,48.203619],[16.3735555,48.20393889999997]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilerstätte","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"26158600","geometry":{"type":"LineString","coordinates":[[16.3724007,48.20366419999999],[16.3718586,48.203811400000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Krugerstraße","sidewalk":"both"}},{"type":"Feature","id":"405652135","geometry":{"type":"LineString","coordinates":[[16.3702997,48.20818760000003],[16.3703958,48.20825479999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Dorotheergasse"}},{"type":"Feature","id":"93629721","geometry":{"type":"LineString","coordinates":[[16.370883,48.20889199999999],[16.3706791,48.20871349999999],[16.3702141,48.208359599999994]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Trattnerhof","source":"yahoo"}},{"type":"Feature","id":"461378954","geometry":{"type":"LineString","coordinates":[[16.3716826,48.20800430000003],[16.3719075,48.208217399999995]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stock-im-Eisen-Platz","surface":"paving_stones"}},{"type":"Feature","id":"437878037","geometry":{"type":"LineString","coordinates":[[16.3716826,48.20800430000003],[16.3718536,48.2079512]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stock-im-Eisen-Platz","name:zh":"丁型廣場"}},{"type":"Feature","id":"26420644","geometry":{"type":"LineString","coordinates":[[16.3705983,48.20689260000003],[16.3707327,48.20712019999999],[16.3708321,48.2072828],[16.371174,48.20783369999998]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilergasse","noexit":"yes","sidewalk":"both"}},{"type":"Feature","id":"26740402","geometry":{"type":"LineString","coordinates":[[16.3716333,48.207102400000025],[16.3721881,48.207058200000006]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Weihburggasse"}},{"type":"Feature","id":"25527147","geometry":{"type":"LineString","coordinates":[[16.3708321,48.2072828],[16.371646,48.20716429999999]]},"properties":{"highway":"pedestrian","is_in":"Austria,Wien,Innere Stadt","myth":"yes","name":"Kärntner Durchgang","name:myth":"Das Hasenhaus","source":"yahoo","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/sagen_legenden_gugitz/hasenhaus.html"}},{"type":"Feature","id":"4997556","geometry":{"type":"LineString","coordinates":[[16.3713051,48.208051100000006],[16.371174,48.20783369999998]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Seilergasse"}},{"type":"Feature","id":"311792004","geometry":{"type":"LineString","coordinates":[[16.371457,48.2080354],[16.3714979,48.20803169999999],[16.3716826,48.20800430000003]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Stock-im-Eisen-Platz","name:zh":"丁型廣場"}},{"type":"Feature","id":"5930417","geometry":{"type":"LineString","coordinates":[[16.3708691,48.20611009999999],[16.3713829,48.20598100000001]]},"properties":{"highway":"pedestrian","name":"Donnergasse","surface":"paving_stones"}},{"type":"Feature","id":"8043965","geometry":{"type":"LineString","coordinates":[[16.3713829,48.20598100000001],[16.372196,48.20581520000002]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Himmelpfortgasse","surface":"cobblestone"}},{"type":"Feature","id":"349688241","geometry":{"type":"LineString","coordinates":[[16.3706277,48.205686799999995],[16.3706869,48.2058347],[16.3707506,48.20598189999998],[16.3707875,48.2060008],[16.3708264,48.20602360000001],[16.3708481,48.206053199999985],[16.3708691,48.20611009999999],[16.3708885,48.206173500000006],[16.3708921,48.206207500000005],[16.3708794,48.2062392],[16.370843,48.20627059999998],[16.3709576,48.2067859]]},"properties":{"highway":"service","lit":"yes","maxspeed":"30","name":"Neuer Markt","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"31247112","geometry":{"type":"LineString","coordinates":[[16.3705381,48.2061836],[16.3705797,48.206252000000006],[16.3706141,48.2062813],[16.3706469,48.206296399999985],[16.3707452,48.20642989999999],[16.3708144,48.20655400000001],[16.3708789,48.20679319999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Neuer Markt","oneway":"yes","sidewalk":"left","surface":"asphalt"}},{"type":"Feature","id":"26154492","geometry":{"type":"LineString","coordinates":[[16.3709576,48.2067859],[16.3715529,48.2067418]]},"properties":{"highway":"pedestrian","name":"Kupferschmiedgasse","source":"geoimage"}},{"type":"Feature","id":"349688240","geometry":{"type":"LineString","coordinates":[[16.3708789,48.20679319999999],[16.3705983,48.20689260000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kupferschmiedgasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"4997574","geometry":{"type":"LineString","coordinates":[[16.3709576,48.2067859],[16.3708789,48.20679319999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kupferschmiedgasse","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"25950336","geometry":{"type":"LineString","coordinates":[[16.3690286,48.20695290000003],[16.3691352,48.207121099999995],[16.3692593,48.207287199999996],[16.3693855,48.207441200000005],[16.3694644,48.20752949999999],[16.3696161,48.20767570000004],[16.3698006,48.20783879999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dorotheergasse","noexit":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"4997578","geometry":{"type":"LineString","coordinates":[[16.3701218,48.207279400000004],[16.3707327,48.20712019999999]]},"properties":{"highway":"footway","lit":"yes","name":"Göttweihergasse","sidewalk":"no","surface":"asphalt"}},{"type":"Feature","id":"343878884","geometry":{"type":"LineString","coordinates":[[16.3683462,48.2072465],[16.3686229,48.20758409999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bräunerstraße","noexit":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"316392893","geometry":{"type":"LineString","coordinates":[[16.3696809,48.20866970000003],[16.3692077,48.20822870000001],[16.3689837,48.20800820000002],[16.3688227,48.20782209999999],[16.3686229,48.20758409999999]]},"properties":{"foot":"yes","highway":"pedestrian","lit":"yes","name":"Bräunerstraße","surface":"asphalt"}},{"type":"Feature","id":"26419793","geometry":{"type":"LineString","coordinates":[[16.3705228,48.208019500000034],[16.3706155,48.208193900000026]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Spiegelgasse"}},{"type":"Feature","id":"30322134","geometry":{"type":"LineString","coordinates":[[16.3691736,48.20898360000001],[16.3696809,48.20866970000003],[16.3702141,48.208359599999994],[16.3703958,48.20825479999999],[16.370517,48.20821670000001],[16.3706155,48.208193900000026],[16.3709305,48.208132199999994],[16.3713051,48.208051100000006],[16.371457,48.2080354]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Graben","name:한국의":"그라벤 거리","wikipedia":"de:Graben (Wien)"}},{"type":"Feature","id":"8072657","geometry":{"type":"LineString","coordinates":[[16.3698006,48.20783879999999],[16.3702997,48.20818760000003]]},"properties":{"bicycle":"no","highway":"residential","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Dorotheergasse"}},{"type":"Feature","id":"4997584","geometry":{"type":"LineString","coordinates":[[16.3705381,48.2061836],[16.3701971,48.206322],[16.3701443,48.2063665],[16.3699959,48.2064211],[16.369748,48.206514],[16.3696064,48.206558899999976],[16.3689164,48.20683220000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Plankengasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"349830559","geometry":{"type":"LineString","coordinates":[[16.3682219,48.2062052],[16.3683072,48.20623570000001]]},"properties":{"highway":"footway","lit":"yes","name":"Dorotheergasse","surface":"asphalt"}},{"type":"Feature","id":"349522275","geometry":{"type":"LineString","coordinates":[[16.3682672,48.206197599999996],[16.3683072,48.20623570000001],[16.3687132,48.20662279999999],[16.3687506,48.20668749999999],[16.3689164,48.20683220000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dorotheergasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"116758237","geometry":{"type":"LineString","coordinates":[[16.3705983,48.20689260000003],[16.3705221,48.206873099999996],[16.3701443,48.2063665]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Seilergasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"31247165","geometry":{"type":"LineString","coordinates":[[16.3689164,48.20683220000001],[16.3690286,48.20695290000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dorotheergasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"25950341","geometry":{"type":"LineString","coordinates":[[16.3696064,48.206558899999976],[16.3696444,48.206602799999985],[16.3698384,48.206846799999994],[16.3701218,48.207279400000004],[16.3702543,48.20749539999997],[16.3705228,48.208019500000034]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Spiegelgasse","noexit":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"26154272","geometry":{"type":"LineString","coordinates":[[16.3701316,48.20555000000002],[16.3705739,48.205442300000016]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Neuer Markt","surface":"asphalt"}},{"type":"Feature","id":"26154479","geometry":{"type":"LineString","coordinates":[[16.3701316,48.20555000000002],[16.370213,48.20560040000001],[16.3702696,48.20565640000001],[16.3703181,48.2057274],[16.3704907,48.206073600000025],[16.3705171,48.20612449999999],[16.3705381,48.2061836]]},"properties":{"highway":"residential","maxspeed":"30","name":"Neuer Markt","oneway":"yes","sidewalk":"left","surface":"asphalt"}},{"type":"Feature","id":"26419322","geometry":{"type":"LineString","coordinates":[[16.3702696,48.20565640000001],[16.3706277,48.205686799999995]]},"properties":{"highway":"service","lit":"yes","maxspeed":"30","name":"Neuer Markt","oneway":"yes","sidewalk":"no","surface":"asphalt"}},{"type":"Feature","id":"4997557","geometry":{"type":"LineString","coordinates":[[16.3696064,48.206558899999976],[16.3692016,48.206149400000015],[16.3688502,48.2057916],[16.368837,48.205724799999956]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Spiegelgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"26154324","geometry":{"type":"LineString","coordinates":[[16.3702377,48.20421759999999],[16.3692334,48.20443660000001],[16.3691374,48.20445739999997]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Maysedergasse","noexit":"yes","sidewalk":"both"}},{"type":"Feature","id":"26154315","geometry":{"type":"LineString","coordinates":[[16.3704679,48.20470230000001],[16.3707334,48.204658800000004]]},"properties":{"highway":"pedestrian","name":"Führichgasse","source":"yahoo"}},{"type":"Feature","id":"8043964","geometry":{"type":"LineString","coordinates":[[16.3710657,48.205338799999964],[16.3718606,48.20511960000002]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Johannesgasse","surface":"cobblestone"}},{"type":"Feature","id":"26158696","geometry":{"type":"LineString","coordinates":[[16.3695227,48.20490720000001],[16.3704679,48.20470230000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Führichgasse","noexit":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"349689200","geometry":{"type":"LineString","coordinates":[[16.3705739,48.205442300000016],[16.3709265,48.205361100000005],[16.3710657,48.205338799999964]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Marco-d'Aviano-Gasse","surface":"paving_stones"}},{"type":"Feature","id":"5930416","geometry":{"type":"LineString","coordinates":[[16.3691635,48.203892199999984],[16.3697229,48.20376590000001],[16.37005,48.20369740000001],[16.3701497,48.20366630000001],[16.3703259,48.20359139999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Philharmonikerstraße","sidewalk":"both"}},{"type":"Feature","id":"5083429","geometry":{"type":"LineString","coordinates":[[16.3718536,48.2079512],[16.3718334,48.207851000000005],[16.3718108,48.20771020000001],[16.3717648,48.207647899999984],[16.371646,48.20716429999999],[16.3716333,48.207102400000025],[16.3715529,48.2067418],[16.3715128,48.206559700000014],[16.3713829,48.20598100000001],[16.3710657,48.205338799999964],[16.3707334,48.204658800000004],[16.3705177,48.20415489999996],[16.3704911,48.204036900000006],[16.3703834,48.203824199999985],[16.3703099,48.20372040000001],[16.3703259,48.20359139999999]]},"properties":{"bicycle":"no","highway":"pedestrian","lit":"yes","name":"Kärntner Straße","surface":"paving_stones"}},{"type":"Feature","id":"26154359","geometry":{"type":"LineString","coordinates":[[16.3718586,48.203811400000006],[16.3705177,48.20415489999996]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Krugerstraße","surface":"paving_stones"}},{"type":"Feature","id":"8078857","geometry":{"type":"LineString","coordinates":[[16.3707334,48.204658800000004],[16.371212,48.20452829999999],[16.3716902,48.20439720000002],[16.3719837,48.20432060000002],[16.3725861,48.20414579999999],[16.3727821,48.20410270000002],[16.3734455,48.203983600000015],[16.3735555,48.20393889999997]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Annagasse","surface":"cobblestone"}},{"type":"Feature","id":"8072746","geometry":{"type":"LineString","coordinates":[[16.3705177,48.20415489999996],[16.3702377,48.20421759999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Maysedergasse"}},{"type":"Feature","id":"351265515","geometry":{"type":"LineString","coordinates":[[16.3701575,48.20303200000001],[16.3709682,48.2028449]]},"properties":{"covered":"yes","highway":"pedestrian","lit":"yes","name":"Mahlerstraße"}},{"type":"Feature","id":"8072740","geometry":{"type":"LineString","coordinates":[[16.3703259,48.20359139999999],[16.370428,48.20357169999997],[16.3714749,48.2033409],[16.3720553,48.20321010000001],[16.3721508,48.20318850000004],[16.372238,48.20317159999999],[16.3733521,48.20292570000001],[16.3735393,48.202883799999995]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Walfischgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both"}},{"type":"Feature","id":"5930436","geometry":{"type":"LineString","coordinates":[[16.370071,48.20305250000001],[16.3701575,48.20303200000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Mahlerstraße"}},{"type":"Feature","id":"29065276","geometry":{"type":"LineString","coordinates":[[16.3714749,48.2033409],[16.3715567,48.20351149999996],[16.3719443,48.203549899999956]]},"properties":{"highway":"pedestrian","name":"Alte Walfischgasse"}},{"type":"Feature","id":"4997568","geometry":{"type":"LineString","coordinates":[[16.3695227,48.20490720000001],[16.3686696,48.20515130000001],[16.3685631,48.20513969999996],[16.3684471,48.205115000000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Führichgasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"4997586","geometry":{"type":"LineString","coordinates":[[16.369829,48.205265999999995],[16.3689067,48.2057116],[16.368837,48.205724799999956]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Gluckgasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"261458721","geometry":{"type":"LineString","coordinates":[[16.3691374,48.20445739999997],[16.3693511,48.20472979999997],[16.3693808,48.20475759999999],[16.3695227,48.20490720000001],[16.369829,48.205265999999995],[16.370056,48.2055091],[16.3701316,48.20555000000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Tegetthoffstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"31261009","geometry":{"type":"LineString","coordinates":[[16.3687023,48.20406969999999],[16.3686183,48.203943400000014]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Albertinaplatz","oneway":"yes"}},{"type":"Feature","id":"4997559","geometry":{"type":"LineString","coordinates":[[16.3688613,48.2043525],[16.3690233,48.20432260000001]]},"properties":{"highway":"residential","name":"Albertinaplatz","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"4997572","geometry":{"type":"LineString","coordinates":[[16.3688613,48.2043525],[16.3687023,48.20406969999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Albertinaplatz","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"4997555","geometry":{"type":"LineString","coordinates":[[16.3690233,48.20432260000001],[16.369089,48.20440019999998],[16.3691374,48.20445739999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tegetthoffstraße","note":"von der Maysedergasse kommend nicht als verkehrte Einbahn ausgeschildert","oneway":"yes","source":"survey"}},{"type":"Feature","id":"384966548","geometry":{"type":"LineString","coordinates":[[16.3689954,48.2040571],[16.3688521,48.20406209999999],[16.3687023,48.20406969999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Albertinaplatz","oneway":"yes"}},{"type":"Feature","id":"29067898","geometry":{"type":"LineString","coordinates":[[16.3691635,48.203892199999984],[16.3690263,48.20400359999999],[16.3689954,48.2040571],[16.3689871,48.204106800000005],[16.3690233,48.20432260000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Albertinaplatz","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"4997580","geometry":{"type":"LineString","coordinates":[[16.3687023,48.20406969999999],[16.3688837,48.20393899999999],[16.3691635,48.203892199999984]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Albertinaplatz","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"456335163","geometry":{"type":"LineString","coordinates":[[16.3686183,48.203943400000014],[16.3688837,48.20393899999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Albertinaplatz","oneway":"yes"}},{"type":"Feature","id":"29067098","geometry":{"type":"LineString","coordinates":[[16.368837,48.205724799999956],[16.3688032,48.20566629999999],[16.3683707,48.205308599999995],[16.3683408,48.205276200000014],[16.3682952,48.2052348]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Lobkowitzplatz","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"8072726","geometry":{"type":"LineString","coordinates":[[16.3686183,48.203943400000014],[16.3685889,48.20388],[16.3681196,48.20297599999998],[16.3681016,48.202941399999986],[16.3680855,48.202910900000006],[16.3680679,48.20287799999997],[16.3680679,48.202872600000006]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"2","lit":"yes","maxspeed":"30","name":"Operngasse","oneway":"yes","sidewalk":"right","turn:lanes":"through|through;right"}},{"type":"Feature","id":"481975920","geometry":{"type":"LineString","coordinates":[[16.3684322,48.20279310000004],[16.3683182,48.20281850000001]]},"properties":{"access":"permissive","bicycle":"yes","cycleway":"opposite_lane","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"481973540","geometry":{"type":"LineString","coordinates":[[16.3683182,48.20281850000001],[16.3682321,48.20283760000001]]},"properties":{"access":"permissive","bicycle":"yes","cycleway":"opposite_lane","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"481973537","geometry":{"type":"LineString","coordinates":[[16.3682321,48.20283760000001],[16.3681598,48.20285289999998],[16.3680679,48.202872600000006]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"349522277","geometry":{"type":"LineString","coordinates":[[16.3670384,48.2074102],[16.3671702,48.207360600000015]]},"properties":{"highway":"footway","lit":"yes","name":"Reitschulgasse","surface":"asphalt"}},{"type":"Feature","id":"4997570","geometry":{"type":"LineString","coordinates":[[16.3677834,48.2076002],[16.3676591,48.207577000000015],[16.3670384,48.2074102]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Habsburgergasse","oneway":"no","oneway:bicycle":"no","psv":"yes","sidewalk":"both","surface":"asphalt","taxi":"yes","vehicle:backward":"no","vehicle:forward":"yes"}},{"type":"Feature","id":"9226260","geometry":{"type":"LineString","coordinates":[[16.3677834,48.2076002],[16.3678639,48.207689000000016],[16.3679677,48.207796799999954],[16.3684763,48.2083394],[16.368796,48.20866549999997],[16.3690739,48.20894100000001],[16.3691057,48.208960400000024],[16.3691736,48.20898360000001]]},"properties":{"bicycle":"yes","emergency":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Habsburgergasse","oneway":"yes","psv":"yes","sidewalk":"both","taxi":"yes"}},{"type":"Feature","id":"224242588","geometry":{"type":"LineString","coordinates":[[16.3676591,48.207577000000015],[16.367583,48.207674699999984]]},"properties":{"highway":"footway","name":"Michaeler Durchgang","source:name":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html","website":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html"}},{"type":"Feature","id":"224242591","geometry":{"type":"LineString","coordinates":[[16.367583,48.207674699999984],[16.3675335,48.207739300000014]]},"properties":{"access":"permissive","highway":"footway","lit":"yes","name":"Michaeler Durchgang","source:name":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html","surface":"cobblestone","tunnel":"building_passage","website":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html"}},{"type":"Feature","id":"224242587","geometry":{"type":"LineString","coordinates":[[16.3675335,48.207739300000014],[16.367528,48.20774420000001],[16.3671086,48.20781650000001]]},"properties":{"access":"permissive","highway":"footway","lit":"yes","name":"Michaeler Durchgang","source:name":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html","surface":"cobblestone","website":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html"}},{"type":"Feature","id":"349522276","geometry":{"type":"LineString","coordinates":[[16.3674652,48.2068759],[16.3674854,48.20684850000001]]},"properties":{"highway":"footway","lit":"yes","name":"Reitschulgasse","surface":"asphalt"}},{"type":"Feature","id":"349522278","geometry":{"type":"LineString","coordinates":[[16.3671702,48.207360600000015],[16.3674652,48.2068759]]},"properties":{"highway":"footway","lit":"yes","name":"Reitschulgasse","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"4997582","geometry":{"type":"LineString","coordinates":[[16.3690286,48.20695290000003],[16.3689123,48.206995500000005],[16.3683934,48.2072168],[16.3683462,48.2072465],[16.3679958,48.207486700000004],[16.3679405,48.20752590000001],[16.3678604,48.20757080000001],[16.3677834,48.2076002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Stallburggasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"118736578","geometry":{"type":"LineString","coordinates":[[16.3672227,48.2071196],[16.3673219,48.20695680000003]]},"properties":{"cycleway":"opposite_lane","foot":"no","highway":"residential","lit":"yes","maxspeed":"30","name":"Reitschulgasse","oneway":"yes","sidewalk":"no","tunnel":"building_passage"}},{"type":"Feature","id":"116758232","geometry":{"type":"LineString","coordinates":[[16.3682036,48.207057299999974],[16.3682118,48.207083899999986],[16.3682026,48.2071124],[16.3679958,48.207486700000004]]},"properties":{"highway":"living_street","lit":"yes","name":"Bräunerstraße","oneway":"yes","source":"geoimage","surface":"cobblestone"}},{"type":"Feature","id":"31130247","geometry":{"type":"LineString","coordinates":[[16.3670384,48.2074102],[16.3672007,48.207155099999994],[16.3672227,48.2071196]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Reitschulgasse","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"27497428","geometry":{"type":"LineString","coordinates":[[16.3676494,48.20624290000001],[16.3677524,48.206109200000014],[16.36779,48.206040900000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Augustinerstraße","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"4997564","geometry":{"type":"LineString","coordinates":[[16.3673757,48.20681780000001],[16.3674753,48.2068457],[16.3674854,48.20684850000001],[16.3681612,48.2070305],[16.3682036,48.207057299999974]]},"properties":{"highway":"living_street","lit":"yes","name":"Bräunerstraße","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"355350759","geometry":{"type":"LineString","coordinates":[[16.3673757,48.20681780000001],[16.3676494,48.20624290000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Josefsplatz","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"27497426","geometry":{"type":"LineString","coordinates":[[16.3673219,48.20695680000003],[16.3673757,48.20681780000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Josefsplatz","oneway":"yes","sidewalk":"no","surface":"asphalt"}},{"type":"Feature","id":"73313456","geometry":{"type":"LineString","coordinates":[[16.3662849,48.2081331],[16.3662324,48.20806809999999],[16.366215,48.20802380000001],[16.3662096,48.20796870000001],[16.366227,48.20791790000001],[16.3662575,48.207865699999985],[16.3663087,48.2078214]]},"properties":{"bicycle":"yes","highway":"residential","horse":"yes","maxspeed":"30","motor_vehicle":"no","name":"Michaelerplatz","oneway":"yes","sidewalk":"right","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"224242586","geometry":{"type":"LineString","coordinates":[[16.3669298,48.20784359999999],[16.366797,48.20786179999999]]},"properties":{"highway":"footway","name":"Michaeler Durchgang","source:name":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html","website":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html"}},{"type":"Feature","id":"43981491","geometry":{"type":"LineString","coordinates":[[16.3662849,48.2081331],[16.3663467,48.20816750000003],[16.3663752,48.20817859999997],[16.3664235,48.20819180000001],[16.3665029,48.20819900000001]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Michaelerplatz","oneway":"yes","sidewalk":"left","surface":"cobblestone"}},{"type":"Feature","id":"4998703","geometry":{"type":"LineString","coordinates":[[16.3665029,48.20819900000001],[16.366494,48.20828349999999],[16.3664613,48.20837],[16.3659699,48.2093682],[16.3658797,48.209503100000006],[16.3655338,48.209964000000014],[16.36542,48.210116400000004],[16.365392,48.210153899999995]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"20","name":"Herrengasse","note":"Begegnungszone","oneway":"yes","oneway:bicycle":"no","oneway:bus":"no","oneway:carriage":"no","oneway:taxi":"no","sidewalk":"both"}},{"type":"Feature","id":"4583750","geometry":{"type":"LineString","coordinates":[[16.366756,48.20814950000002],[16.3669004,48.208260800000005],[16.3678568,48.208954000000034],[16.3685027,48.20941909999999]]},"properties":{"foot":"yes","highway":"pedestrian","lit":"yes","name":"Kohlmarkt","surface":"paving_stones"}},{"type":"Feature","id":"4997554","geometry":{"type":"LineString","coordinates":[[16.3665029,48.20819900000001],[16.3666086,48.20819109999999],[16.3666793,48.20817579999999],[16.366756,48.20814950000002]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Michaelerplatz","oneway":"yes","psv":"yes","sidewalk":"left","surface":"cobblestone","taxi":"yes"}},{"type":"Feature","id":"37675404","geometry":{"type":"LineString","coordinates":[[16.3654899,48.20704649999999],[16.3656358,48.20696939999999]]},"properties":{"highway":"footway","lit":"yes","name":"Schweizertor","opening_hours":"24/7","tunnel":"building_passage","wheelchair":"limited","wikipedia":"de:Hofburg#Schweizertrakt"}},{"type":"Feature","id":"237726307","geometry":{"type":"LineString","coordinates":[[16.3651182,48.207071299999996],[16.3657499,48.20746140000003]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"In der Burg","psv":"yes","sidewalk":"both"}},{"type":"Feature","id":"251669260","geometry":{"type":"LineString","coordinates":[[16.3657499,48.20746140000003],[16.3662126,48.20775739999999]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"In der Burg","psv":"yes","sidewalk":"both","tunnel":"building_passage"}},{"type":"Feature","id":"4583443","geometry":{"type":"LineString","coordinates":[[16.366741,48.20779909999999],[16.3668226,48.20773600000001],[16.3670384,48.2074102]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Reitschulgasse","oneway":"no","psv":"yes","sidewalk":"both","surface":"asphalt","taxi":"yes"}},{"type":"Feature","id":"251669262","geometry":{"type":"LineString","coordinates":[[16.3662126,48.20775739999999],[16.3663087,48.2078214]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"In der Burg","psv":"yes","sidewalk":"both"}},{"type":"Feature","id":"44005501","geometry":{"type":"LineString","coordinates":[[16.366741,48.20779909999999],[16.3666342,48.20776480000001],[16.3665743,48.20775969999997],[16.3664861,48.207763400000005],[16.3664175,48.20777709999999],[16.3663533,48.207800399999996],[16.3663087,48.2078214]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","maxspeed":"30","motor_vehicle":"no","name":"Michaelerplatz","oneway":"no","psv":"yes","sidewalk":"left","source":"yahoo","surface":"cobblestone","taxi":"yes"}},{"type":"Feature","id":"437878036","geometry":{"type":"LineString","coordinates":[[16.366756,48.20814950000002],[16.3667794,48.20813490000003],[16.3668259,48.20808060000002],[16.3668433,48.20803860000001],[16.3668509,48.2080052],[16.3668441,48.2079512],[16.3668271,48.2079081],[16.366797,48.20786179999999],[16.3667773,48.20783549999999],[16.366741,48.20779909999999]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Michaelerplatz","oneway":"yes","psv":"yes","sidewalk":"left","surface":"cobblestone","taxi":"yes"}},{"type":"Feature","id":"224242590","geometry":{"type":"LineString","coordinates":[[16.3671086,48.20781650000001],[16.3669298,48.20784359999999]]},"properties":{"access":"permissive","highway":"footway","lit":"yes","name":"Michaeler Durchgang","source:name":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html","surface":"cobblestone","tunnel":"building_passage","website":"https://www.wien.gv.at/spaziergang/innenhoefe/michaelerplatz.html"}},{"type":"Feature","id":"51482681","geometry":{"type":"LineString","coordinates":[[16.3641513,48.20789970000001],[16.3642963,48.207789399999996]]},"properties":{"highway":"footway","name":"Löweltor","opening_hours":"24/7","tunnel":"building_passage"}},{"type":"Feature","id":"307641760","geometry":{"type":"LineString","coordinates":[[16.3634698,48.207839500000006],[16.3637534,48.207993999999985],[16.3635576,48.20817699999998],[16.3634023,48.20829800000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Ballhausplatz","sidewalk":"both"}},{"type":"Feature","id":"375939521","geometry":{"type":"LineString","coordinates":[[16.3640988,48.20837019999999],[16.3642716,48.20839309999997],[16.365005,48.2083083],[16.3654841,48.20829189999998],[16.3658524,48.20825049999999],[16.3662004,48.20818990000001],[16.3662849,48.2081331]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Schauflergasse","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"4998702","geometry":{"type":"LineString","coordinates":[[16.3635576,48.20817699999998],[16.3640988,48.20837019999999]]},"properties":{"bicycle":"yes","cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Ballhausplatz","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"326786856","geometry":{"type":"LineString","coordinates":[[16.3644137,48.20897420000003],[16.364256,48.20855059999997],[16.3642716,48.20839309999997]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Bruno-Kreisky-Gasse","surface":"cobblestone"}},{"type":"Feature","id":"326786855","geometry":{"type":"LineString","coordinates":[[16.3642976,48.20899030000004],[16.3641381,48.20857459999996],[16.364104,48.208485600000046],[16.3640988,48.20837019999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Bruno-Kreisky-Gasse","surface":"cobblestone"}},{"type":"Feature","id":"73313455","geometry":{"type":"LineString","coordinates":[[16.3645233,48.2067261],[16.3645899,48.206764599999985],[16.3648992,48.206943499999994]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"In der Burg","psv":"yes","sidewalk":"both"}},{"type":"Feature","id":"237726306","geometry":{"type":"LineString","coordinates":[[16.3648992,48.206943499999994],[16.3651182,48.207071299999996]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxheight":"3","maxspeed":"30","motor_vehicle":"no","name":"In der Burg","psv":"yes","sidewalk":"both","tunnel":"building_passage"}},{"type":"Feature","id":"349830565","geometry":{"type":"LineString","coordinates":[[16.3678443,48.2059285],[16.3679291,48.205957100000006],[16.3680441,48.2060194],[16.3681091,48.2060644],[16.3682082,48.206140000000005],[16.3682672,48.206197599999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dorotheergasse","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"4997571","geometry":{"type":"LineString","coordinates":[[16.3678443,48.2059285],[16.3679035,48.20597809999998],[16.3679286,48.2059921]]},"properties":{"highway":"footway","lit":"yes","name":"Dorotheergasse","surface":"asphalt"}},{"type":"Feature","id":"349830562","geometry":{"type":"LineString","coordinates":[[16.3679286,48.2059921],[16.3680181,48.206041400000004],[16.3681188,48.206118300000014],[16.3682219,48.2062052]]},"properties":{"highway":"footway","lit":"yes","name":"Dorotheergasse","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"261458722","geometry":{"type":"LineString","coordinates":[[16.3677682,48.204498599999994],[16.3676887,48.20456100000001],[16.3669526,48.20517909999998],[16.3670904,48.20525559999999]]},"properties":{"highway":"residential","incline":"up","lit":"yes","maxspeed":"30","name":"Hanuschgasse","sidewalk":"right"}},{"type":"Feature","id":"260383373","geometry":{"type":"LineString","coordinates":[[16.3627908,48.20570699999999],[16.3628219,48.205725400000006],[16.3629127,48.20578219999999],[16.3631601,48.20592880000001],[16.3637646,48.2062813],[16.3643729,48.20663590000001],[16.3645233,48.2067261]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Heldenplatz","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"349522268","geometry":{"type":"LineString","coordinates":[[16.36779,48.206040900000005],[16.3678443,48.2059285],[16.3680249,48.2055014],[16.3680362,48.20548009999999],[16.3680806,48.205396800000045],[16.3681557,48.2053233],[16.3681966,48.20529160000001],[16.3682952,48.2052348],[16.3684039,48.205162599999994],[16.3684471,48.205115000000006],[16.3686375,48.2047757],[16.3688159,48.20443940000001],[16.3688376,48.2043989],[16.3688613,48.2043525]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Augustinerstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"29065314","geometry":{"type":"LineString","coordinates":[[16.3670904,48.20525559999999],[16.3677237,48.20473240000001],[16.3681069,48.20442510000001]]},"properties":{"highway":"pedestrian","layer":"1","lit":"yes","name":"Augustinerbastei"}},{"type":"Feature","id":"25678136","geometry":{"type":"LineString","coordinates":[[16.3662566,48.2032949],[16.3662859,48.20334439999999],[16.3662963,48.20336199999997],[16.3663908,48.20357419999999],[16.3663923,48.2036756],[16.3679046,48.20440479999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Goethegasse","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"5930428","geometry":{"type":"LineString","coordinates":[[16.3686183,48.203943400000014],[16.368507,48.20397170000001],[16.3684419,48.20400649999999],[16.3680254,48.204320699999954],[16.3679046,48.20440479999999],[16.3678383,48.204450399999985],[16.3677682,48.204498599999994]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hanuschgasse","sidewalk":"both"}},{"type":"Feature","id":"318007485","geometry":{"type":"LineString","coordinates":[[16.3680679,48.202872600000006],[16.3680168,48.202782799999994]]},"properties":{"cycleway":"lane","highway":"residential","lanes":"2","lit":"yes","maxspeed":"30","name":"Operngasse","oneway":"yes","sidewalk":"right","turn:lanes":"through|through;right"}},{"type":"Feature","id":"474349133","geometry":{"type":"LineString","coordinates":[[16.3682305,48.2029115],[16.3682096,48.202917600000006],[16.3681945,48.20292169999999],[16.3681016,48.202941399999986],[16.3679237,48.20297980000001],[16.3662859,48.20334439999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Opernring"}},{"type":"Feature","id":"5930409","geometry":{"type":"LineString","coordinates":[[16.3680855,48.202910900000006],[16.3679646,48.20293620000001],[16.3679041,48.202949399999994],[16.3678346,48.202963899999986],[16.3676998,48.202974400000016],[16.3662566,48.2032949]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"353060497","geometry":{"type":"LineString","coordinates":[[16.3660418,48.20351149999996],[16.3660884,48.2035424],[16.3663923,48.2036756]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Goethegasse","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"128859766","geometry":{"type":"LineString","coordinates":[[16.3658042,48.20300980000002],[16.3660612,48.202953699999995]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"both","surface":"cobblestone"}},{"type":"Feature","id":"5930407","geometry":{"type":"LineString","coordinates":[[16.3641651,48.203377399999994],[16.3656789,48.20303910000001],[16.3658042,48.20300980000002]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"91929235","geometry":{"type":"LineString","coordinates":[[16.3662566,48.2032949],[16.3661821,48.2032739],[16.3659701,48.20332309999998],[16.3659648,48.20334940000001],[16.3660168,48.20346219999999],[16.3660418,48.20351149999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Goethegasse","oneway":"yes","sidewalk":"left","surface":"asphalt"}},{"type":"Feature","id":"474349126","geometry":{"type":"LineString","coordinates":[[16.3659648,48.20334940000001],[16.3658698,48.203424900000016],[16.3644092,48.2037579]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Opernring"}},{"type":"Feature","id":"5930413","geometry":{"type":"LineString","coordinates":[[16.3643365,48.203536499999984],[16.3642706,48.20353059999999],[16.364226,48.20351360000001],[16.364202,48.203484],[16.3641883,48.20344990000001],[16.3641651,48.203377399999994]]},"properties":{"highway":"unclassified","lit":"yes","maxspeed":"30","name":"Eschenbachgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"31130167","geometry":{"type":"LineString","coordinates":[[16.3635162,48.203820699999994],[16.3635615,48.20384730000001],[16.3636605,48.203905899999995],[16.3637175,48.20393609999999]]},"properties":{"highway":"unclassified","lit":"yes","maxspeed":"50","name":"Babenbergerstraße"}},{"type":"Feature","id":"425095719","geometry":{"type":"LineString","coordinates":[[16.3638772,48.20355810000001],[16.3640594,48.2034151],[16.3641651,48.203377399999994]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Burgring","oneway":"yes","oneway:bicycle":"no","oneway:bus":"no","oneway:psv":"no","sidewalk":"right"}},{"type":"Feature","id":"440821948","geometry":{"type":"LineString","coordinates":[[16.363624,48.2037526],[16.3638772,48.20355810000001]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Burgring","oneway":"yes","oneway:bicycle":"no","oneway:bus":"no","oneway:psv":"no","sidewalk":"right"}},{"type":"Feature","id":"28975208","geometry":{"type":"LineString","coordinates":[[16.3635162,48.203820699999994],[16.363624,48.2037526]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Burgring","oneway":"yes","oneway:bicycle":"no","oneway:bus":"no","oneway:psv":"no","sidewalk":"right"}},{"type":"Feature","id":"474349118","geometry":{"type":"LineString","coordinates":[[16.3641546,48.20333959999999],[16.3640164,48.20337309999999],[16.3635561,48.20371460000004]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Burgring"}},{"type":"Feature","id":"148091891","geometry":{"type":"LineString","coordinates":[[16.3616716,48.21992979999999],[16.3617638,48.21982449999999],[16.3619311,48.219703100000004],[16.3620109,48.219633199999976],[16.3620947,48.21958859999998],[16.3622313,48.219531500000016],[16.3626992,48.21933100000004],[16.3629528,48.21922230000001],[16.3630784,48.219177],[16.3634307,48.219073699999996],[16.3640158,48.21893059999999]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria,Vienna,Wien","lanes":"1","maxspeed":"50","name":"Porzellangasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"275947227","geometry":{"type":"LineString","coordinates":[[16.3641127,48.21902690000002],[16.3639969,48.21904870000003],[16.3638165,48.21907479999999],[16.3634691,48.219151899999986],[16.3630703,48.21928109999999],[16.3627463,48.219429399999996],[16.3623386,48.2196012],[16.3623037,48.21962980000001],[16.3622581,48.219658400000014],[16.3621975,48.2196854],[16.3620894,48.21972149999999],[16.3619766,48.219770600000004],[16.361825,48.219854999999995],[16.3616716,48.21992979999999]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria,Vienna,Wien","lanes":"1","maxspeed":"50","name":"Porzellangasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"9331362","geometry":{"type":"LineString","coordinates":[[16.3632248,48.220973500000014],[16.3627639,48.21948609999998],[16.3627463,48.219429399999996],[16.3626992,48.21933100000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Müllnergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"29052343","geometry":{"type":"LineString","coordinates":[[16.3617394,48.21805359999999],[16.3618358,48.2180855],[16.3640556,48.2188328]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Berggasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone","surface":"asphalt"}},{"type":"Feature","id":"271227046","geometry":{"type":"LineString","coordinates":[[16.3628145,48.216834199999994],[16.3617447,48.216357000000045]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","name":"Hörlgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5010662","geometry":{"type":"LineString","coordinates":[[16.3620894,48.21972149999999],[16.3620109,48.219633199999976],[16.3619584,48.21961060000001],[16.3610374,48.2192148],[16.360956,48.21917990000003]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","maxspeed":"30","name":"Thurngasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"390784950","geometry":{"type":"LineString","coordinates":[[16.3616716,48.21992979999999],[16.3610936,48.2204404]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria,Vienna,Wien","lanes":"2","maxspeed":"50","name":"Porzellangasse","surface":"cobblestone"}},{"type":"Feature","id":"81813057","geometry":{"type":"LineString","coordinates":[[16.3610936,48.2204404],[16.3608776,48.22063929999999],[16.3607942,48.2207143],[16.360752,48.22080059999999],[16.3607396,48.22086569999999],[16.3607381,48.220956099999995],[16.3607337,48.2210321],[16.3607322,48.22111510000002],[16.3607305,48.221144100000004],[16.3607271,48.221317399999975],[16.3607261,48.22142400000001],[16.3607281,48.22147129999999],[16.3607343,48.22151020000001],[16.3607488,48.22155649999999],[16.3609758,48.22206490000002],[16.3612282,48.22261900000001],[16.361337,48.222860499999996],[16.3613561,48.2229035],[16.3613958,48.22299819999998],[16.3614083,48.2230313]]},"properties":{"highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Porzellangasse","surface":"concrete:plates"}},{"type":"Feature","id":"81813056","geometry":{"type":"LineString","coordinates":[[16.360956,48.21917990000003],[16.3609947,48.2191244],[16.3616567,48.21818160000001],[16.3616937,48.21812110000002],[16.3617394,48.21805359999999],[16.3617785,48.217995599999995],[16.3618316,48.217920100000015],[16.3623184,48.21727820000001],[16.3628145,48.216834199999994]]},"properties":{"highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Liechtensteinstraße","sidewalk":"both","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"27033538","geometry":{"type":"LineString","coordinates":[[16.361197,48.21693090000002],[16.3613006,48.21696600000001],[16.3623184,48.21727820000001],[16.364018,48.217814199999964]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Türkenstraße","oneway":"yes"}},{"type":"Feature","id":"171949398","geometry":{"type":"LineString","coordinates":[[16.361197,48.21693090000002],[16.3605842,48.21758019999996],[16.3605239,48.217644199999995]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Wasagasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"122929941","geometry":{"type":"LineString","coordinates":[[16.3596657,48.218604700000014],[16.3605013,48.2176695],[16.3605239,48.217644199999995]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Wasagasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"171935436","geometry":{"type":"LineString","coordinates":[[16.3592903,48.21845319999997],[16.3596657,48.218604700000014]]},"properties":{"highway":"steps","name":"Thurnstiege","ramp:wheelchair":"yes"}},{"type":"Feature","id":"157574142","geometry":{"type":"LineString","coordinates":[[16.3591969,48.21924490000001],[16.3607691,48.21955489999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dietrichsteingasse","oneway":"yes","source":"wien.gv.at"}},{"type":"Feature","id":"293227146","geometry":{"type":"LineString","coordinates":[[16.360956,48.21917990000003],[16.3608642,48.219138999999984],[16.3596657,48.218604700000014]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Thurngasse","oneway":"yes"}},{"type":"Feature","id":"339590033","geometry":{"type":"LineString","coordinates":[[16.3593165,48.217242899999974],[16.3593731,48.217261699999995],[16.3605239,48.217644199999995],[16.3616737,48.218031499999995],[16.3617394,48.21805359999999]]},"properties":{"cycleway":"lane","highway":"unclassified","lit":"yes","maxspeed":"30","name":"Berggasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"171949392","geometry":{"type":"LineString","coordinates":[[16.3599967,48.216545300000035],[16.3600589,48.21656530000001],[16.361197,48.21693090000002]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Türkenstraße","oneway":"yes"}},{"type":"Feature","id":"8107342","geometry":{"type":"LineString","coordinates":[[16.3591841,48.2171975],[16.3592591,48.2172238],[16.3593165,48.217242899999974]]},"properties":{"cycleway":"lane","highway":"secondary","maxspeed":"30","name":"Berggasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"172311092","geometry":{"type":"LineString","coordinates":[[16.3624031,48.21576670000002],[16.3625312,48.215677400000004],[16.3630704,48.215167399999956],[16.3631112,48.2151288]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Wasagasse","oneway":"yes"}},{"type":"Feature","id":"84790898","geometry":{"type":"LineString","coordinates":[[16.3613711,48.215144699999996],[16.3614551,48.21518330000001],[16.3625312,48.215677400000004],[16.3635415,48.21614170000001]]},"properties":{"highway":"service","lanes":"1","maxspeed":"30","name":"Kolingasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583564","geometry":{"type":"LineString","coordinates":[[16.3612652,48.2152452],[16.361356,48.2152868],[16.3617869,48.215484300000014],[16.3624031,48.21576670000002],[16.3634374,48.21624080000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Kolingasse"}},{"type":"Feature","id":"84790902","geometry":{"type":"LineString","coordinates":[[16.363347,48.21632700000001],[16.3622921,48.2158445],[16.3617032,48.21557039999999],[16.3617869,48.215484300000014]]},"properties":{"highway":"service","maxspeed":"30","name":"Kolingasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8083974","geometry":{"type":"LineString","coordinates":[[16.3617447,48.216357000000045],[16.3622921,48.2158445],[16.3624031,48.21576670000002]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Wasagasse","oneway":"yes"}},{"type":"Feature","id":"148093430","geometry":{"type":"LineString","coordinates":[[16.361197,48.21693090000002],[16.3617447,48.216357000000045]]},"properties":{"highway":"pedestrian","lanes":"1","name":"Wasagasse","source":"ViennaGIS"}},{"type":"Feature","id":"27192095","geometry":{"type":"LineString","coordinates":[[16.3619434,48.214603400000016],[16.3619003,48.21464470000001],[16.3618352,48.21470909999999],[16.3613711,48.215144699999996],[16.3612652,48.2152452],[16.3608494,48.21567529999999]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"30146816","geometry":{"type":"LineString","coordinates":[[16.3619434,48.214603400000016],[16.3620399,48.21463589999999],[16.3631112,48.2151288],[16.3641285,48.21558249999998]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lcn":"yes","lit":"yes","maxspeed":"50","name":"Maria-Theresien-Straße","oneway":"yes"}},{"type":"Feature","id":"339590031","geometry":{"type":"LineString","coordinates":[[16.3608494,48.21567529999999],[16.3607092,48.2157311],[16.3605049,48.2157321]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Währinger Straße","oneway":"yes"}},{"type":"Feature","id":"27033537","geometry":{"type":"LineString","coordinates":[[16.3617447,48.216357000000045],[16.3607403,48.21588800000001],[16.3606722,48.21585529999996],[16.3605754,48.215810000000005],[16.3605049,48.2157321]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","name":"Hörlgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"339590029","geometry":{"type":"LineString","coordinates":[[16.3591841,48.2171975],[16.3592378,48.2171333],[16.3594443,48.2169117],[16.3598842,48.2165042],[16.3600467,48.216344899999996],[16.3602304,48.216160900000006],[16.3603699,48.215998299999995],[16.3604316,48.215876699999995],[16.360447,48.21584570000002],[16.3604769,48.21578579999999],[16.3605049,48.2157321]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes"}},{"type":"Feature","id":"26644701","geometry":{"type":"LineString","coordinates":[[16.3601117,48.21546949999998],[16.3599095,48.21556229999999]]},"properties":{"highway":"service","layer":"-1","name":"Votivpark Garage","note":"Ausfahrt Tiefgarage","oneway":"yes","source":"geoimage.at","tunnel":"yes"}},{"type":"Feature","id":"329030549","geometry":{"type":"LineString","coordinates":[[16.3608494,48.21567529999999],[16.3607541,48.21577209999998],[16.3606722,48.21585529999996],[16.360614,48.21592860000001],[16.3603589,48.216204000000005],[16.3601178,48.2164344],[16.3599967,48.216545300000035],[16.3595972,48.216940300000005],[16.3595617,48.2169724],[16.3593963,48.2171457],[16.3593638,48.2171869],[16.3593165,48.217242899999974]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes"}},{"type":"Feature","id":"35302220","geometry":{"type":"LineString","coordinates":[[16.3635707,48.21467000000001],[16.3625347,48.2142125],[16.3624868,48.21419309999999],[16.3623969,48.21415289999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"50","name":"Schottenring","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"170564299","geometry":{"type":"LineString","coordinates":[[16.3623969,48.21415289999999],[16.3623223,48.21422560000002],[16.362108,48.21444300000002],[16.3620326,48.21451999999999],[16.3619434,48.214603400000016]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"238045925","geometry":{"type":"LineString","coordinates":[[16.3616317,48.21447410000002],[16.3617421,48.214518999999996]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"through|through"}},{"type":"Feature","id":"459434419","geometry":{"type":"LineString","coordinates":[[16.3617421,48.214518999999996],[16.3619434,48.214603400000016]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Maria-Theresien-Straße","oneway":"yes","turn:lanes":"through|through"}},{"type":"Feature","id":"242053153","geometry":{"type":"LineString","coordinates":[[16.361649,48.21439019999997],[16.361696,48.214409399999994],[16.3617997,48.2144299],[16.3618914,48.214425500000004],[16.3619462,48.21441520000002],[16.3620049,48.21439290000001]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Universitätstraße","oneway":"yes"}},{"type":"Feature","id":"57779366","geometry":{"type":"LineString","coordinates":[[16.3617421,48.214518999999996],[16.3620049,48.21439290000001]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"242052007","geometry":{"type":"LineString","coordinates":[[16.3606432,48.2140886],[16.3607549,48.21409460000001],[16.3608509,48.21410879999999],[16.3609532,48.2141331]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"through|through|right|right"}},{"type":"Feature","id":"421513031","geometry":{"type":"LineString","coordinates":[[16.3609532,48.2141331],[16.3611312,48.21420119999999]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"through|through|right|right"}},{"type":"Feature","id":"442794481","geometry":{"type":"LineString","coordinates":[[16.3611012,48.214091800000006],[16.3611312,48.21420119999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"8044227","geometry":{"type":"LineString","coordinates":[[16.3611312,48.21420119999999],[16.3613211,48.214334699999995],[16.3614426,48.214387200000004],[16.3615758,48.214448800000014],[16.3615898,48.214455300000026],[16.3616317,48.21447410000002]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","surface":"asphalt","turn:lanes":"through|through"}},{"type":"Feature","id":"57779370","geometry":{"type":"LineString","coordinates":[[16.3611312,48.21420119999999],[16.361649,48.21439019999997]]},"properties":{"bicycle":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"right|right"}},{"type":"Feature","id":"57779369","geometry":{"type":"LineString","coordinates":[[16.3605049,48.2157321],[16.3605865,48.21563420000001],[16.3607071,48.21548050000001],[16.361587,48.214627699999994],[16.3616137,48.214607599999994],[16.36169,48.21454990000001],[16.3617421,48.214518999999996]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Währinger Straße","oneway":"yes"}},{"type":"Feature","id":"57776718","geometry":{"type":"LineString","coordinates":[[16.3592618,48.214287600000034],[16.359391,48.214269900000005],[16.3594395,48.214261900000025],[16.3599739,48.214173200000005]]},"properties":{"highway":"unclassified","lanes":"1","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"234978093","geometry":{"type":"LineString","coordinates":[[16.3592618,48.214287600000034],[16.3592617,48.214206899999965]]},"properties":{"highway":"residential","lanes":"2","name":"Reichsratsstraße","oneway":"yes"}},{"type":"Feature","id":"9331754","geometry":{"type":"LineString","coordinates":[[16.3605049,48.2157321],[16.3604091,48.21562610000001],[16.3593035,48.214391000000006],[16.3592902,48.21436399999999],[16.3592618,48.214287600000034]]},"properties":{"alt_name":"Straße des 8. Mai","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Straße des Achten Mai","oneway":"yes","turn:lanes":"through;left|through|right|right"}},{"type":"Feature","id":"27803343","geometry":{"type":"LineString","coordinates":[[16.3592592,48.214092600000015],[16.3594789,48.21411520000001],[16.3595093,48.21411839999999],[16.3596328,48.21412910000001]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"234978092","geometry":{"type":"LineString","coordinates":[[16.3596328,48.21412910000001],[16.35974,48.2141441],[16.3599739,48.214173200000005]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"356867812","geometry":{"type":"LineString","coordinates":[[16.3592617,48.214206899999965],[16.3592611,48.214179400000006],[16.3592592,48.214092600000015]]},"properties":{"highway":"residential","lanes":"2","name":"Reichsratsstraße","oneway":"yes"}},{"type":"Feature","id":"171935437","geometry":{"type":"LineString","coordinates":[[16.3589626,48.21984499999999],[16.3590365,48.21965319999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wasagasse","source":"wien.gv.at"}},{"type":"Feature","id":"179639785","geometry":{"type":"LineString","coordinates":[[16.3584819,48.218098],[16.3578299,48.21879899999999]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"157574145","geometry":{"type":"LineString","coordinates":[[16.3590365,48.21965319999998],[16.3591969,48.21924490000001],[16.3592773,48.21904030000002],[16.3596657,48.218604700000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wasagasse","oneway":"yes","source":"wien.gv.at"}},{"type":"Feature","id":"179641934","geometry":{"type":"LineString","coordinates":[[16.3578299,48.21879899999999],[16.357549,48.2190904],[16.3574485,48.21919460000001]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"200671385","geometry":{"type":"LineString","coordinates":[[16.3571544,48.22464830000004],[16.3577255,48.22356550000001],[16.3579115,48.2232056],[16.3579854,48.2231103],[16.3582452,48.222839300000004],[16.3587721,48.22226599999999],[16.3590639,48.22194769999996],[16.3591349,48.221873000000016],[16.3592162,48.22178749999998],[16.3593601,48.22164029999999],[16.3600952,48.22086410000003],[16.3601963,48.220761900000014],[16.3602419,48.22067389999998],[16.3602488,48.22065589999997],[16.3605942,48.219953799999985],[16.3607691,48.21955489999996],[16.3609259,48.219240299999996],[16.360956,48.21917990000003]]},"properties":{"cycleway":"lane","highway":"tertiary","lanes":"2","maxspeed":"50","name":"Liechtensteinstraße"}},{"type":"Feature","id":"179641933","geometry":{"type":"LineString","coordinates":[[16.3574485,48.21919460000001],[16.3568796,48.21975789999999]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"157574143","geometry":{"type":"LineString","coordinates":[[16.3605942,48.219953799999985],[16.3590365,48.21965319999998]]},"properties":{"bus":"no","highway":"residential","maxspeed":"30","name":"Harmoniegasse","oneway":"yes","source":"wien.gv.at"}},{"type":"Feature","id":"393175884","geometry":{"type":"LineString","coordinates":[[16.3593165,48.217242899999974],[16.3592443,48.2173123],[16.3590905,48.21746009999998],[16.3586882,48.21787219999999]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"339590030","geometry":{"type":"LineString","coordinates":[[16.3586882,48.21787219999999],[16.3584819,48.218098]]},"properties":{"cycleway:right":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"171935435","geometry":{"type":"LineString","coordinates":[[16.3584819,48.218098],[16.3592903,48.21845319999997]]},"properties":{"highway":"residential","maxspeed":"50","name":"Thurngasse"}},{"type":"Feature","id":"171935434","geometry":{"type":"LineString","coordinates":[[16.3561501,48.22042450000001],[16.3562323,48.2204385],[16.3567596,48.220538000000005],[16.3568105,48.22072350000002],[16.356828,48.22085210000003],[16.3568215,48.221023599999995],[16.3567783,48.22119140000001],[16.3567531,48.22123149999996],[16.356299,48.22195289999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Boltzmanngasse","note":"Fahrverbot für Anhänger","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5010637","geometry":{"type":"LineString","coordinates":[[16.3564436,48.21827620000002],[16.3569266,48.217529799999994],[16.3562931,48.21736240000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Beethovengasse","oneway":"yes","source":"wien.gv.at"}},{"type":"Feature","id":"5010638","geometry":{"type":"LineString","coordinates":[[16.3558565,48.21807269999999],[16.3564436,48.21827620000002],[16.3569758,48.218468900000005],[16.3571394,48.2185437],[16.3577327,48.21876090000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lackierergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"245116550","geometry":{"type":"LineString","coordinates":[[16.3568796,48.21975789999999],[16.3566341,48.2200076],[16.3566088,48.22002950000001],[16.3565146,48.220114499999994],[16.3563296,48.22028940000001],[16.3562294,48.22036320000001],[16.3561501,48.22042450000001]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"26971400","geometry":{"type":"LineString","coordinates":[[16.3566088,48.22002950000001],[16.3566069,48.220160899999996],[16.3567596,48.220538000000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Boltzmanngasse","note":"Fahrverbot für Anhänger","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"431702927","geometry":{"type":"LineString","coordinates":[[16.3561501,48.22042450000001],[16.3560177,48.22050329999996],[16.3558208,48.220602799999995],[16.3555144,48.22079720000002],[16.3546254,48.2214185]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"329030550","geometry":{"type":"LineString","coordinates":[[16.3552078,48.22088439999999],[16.3552949,48.22082549999999],[16.3557225,48.2205443],[16.3558148,48.220484400000004],[16.3560459,48.220348400000006],[16.3561181,48.22029939999999],[16.3561851,48.22025389999999],[16.3564322,48.22002309999999],[16.3566628,48.21981219999998],[16.3570383,48.21946550000001],[16.3573515,48.2191641],[16.3573522,48.21916350000001],[16.3577327,48.21876090000001],[16.3579311,48.2185575],[16.358122,48.218354000000005],[16.3583046,48.2181482],[16.3584128,48.2179903],[16.35848,48.217923600000006]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"9915214","geometry":{"type":"LineString","coordinates":[[16.3555845,48.2184867],[16.3558565,48.21807269999999]]},"properties":{"created_by":"Potlatch 0.10f","cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Garnisongasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5010632","geometry":{"type":"LineString","coordinates":[[16.3573515,48.2191641],[16.3567412,48.2188898],[16.3555845,48.2184867]]},"properties":{"highway":"residential","maxspeed":"30","name":"Van-Swieten-Gasse","oneway":"yes","source":"wien.gv.at"}},{"type":"Feature","id":"328764040","geometry":{"type":"LineString","coordinates":[[16.3572308,48.21653190000001],[16.3575772,48.21664989999999],[16.3581274,48.2168374],[16.358439,48.21694360000001],[16.3591253,48.21717749999999],[16.3591841,48.2171975]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Schwarzspanierstraße","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"339590034","geometry":{"type":"LineString","coordinates":[[16.35848,48.217923600000006],[16.358709,48.21767199999999],[16.3588945,48.217491300000034],[16.3590929,48.217288800000006],[16.3591841,48.2171975]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Währinger Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"5010631","geometry":{"type":"LineString","coordinates":[[16.3600467,48.216344899999996],[16.3599903,48.21631239999999],[16.3596298,48.216044599999975],[16.3595141,48.2159757],[16.3586808,48.21631099999996],[16.3585507,48.216308800000036]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rooseveltplatz","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"328764039","geometry":{"type":"LineString","coordinates":[[16.3569394,48.21633889999998],[16.3570364,48.216408],[16.357111,48.21645569999998],[16.3572308,48.21653190000001]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Schwarzspanierstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"8089369","geometry":{"type":"LineString","coordinates":[[16.3585507,48.216308800000036],[16.3581274,48.2168374]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Günthergasse","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"328764037","geometry":{"type":"LineString","coordinates":[[16.3572308,48.21653190000001],[16.3570895,48.216496800000016],[16.3569583,48.21645810000001],[16.3569027,48.216424200000006],[16.356864,48.216381299999995],[16.3568416,48.21635169999999]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Schwarzspanierstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"5010633","geometry":{"type":"LineString","coordinates":[[16.3585507,48.216308800000036],[16.3584333,48.21625560000001],[16.358124,48.21591380000001],[16.3581038,48.2158915],[16.3579494,48.21572900000001],[16.3577412,48.215512700000005],[16.3577004,48.215407700000014]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rooseveltplatz","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"5010636","geometry":{"type":"LineString","coordinates":[[16.3581038,48.2158915],[16.3570761,48.21630400000001],[16.3569394,48.21633889999998],[16.3568416,48.21635169999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Ferstelgasse","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"84192046","geometry":{"type":"LineString","coordinates":[[16.3558565,48.21807269999999],[16.3560926,48.217717100000016],[16.3562931,48.21736240000001],[16.3563345,48.21727340000004],[16.3565079,48.21682379999996]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Garnisongasse","sidewalk":"both","source":"wien.gv.at","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"173497757","geometry":{"type":"LineString","coordinates":[[16.3560899,48.21723459999998],[16.3562093,48.2172535],[16.3562282,48.21725649999999]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Richter-Tor","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"173497759","geometry":{"type":"LineString","coordinates":[[16.3552094,48.2171213],[16.3553607,48.217141200000015]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Wagner-Riegner-Tor","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"328764038","geometry":{"type":"LineString","coordinates":[[16.3568416,48.21635169999999],[16.3568294,48.21633780000002],[16.3567893,48.21624539999999],[16.3567678,48.216145299999994],[16.3567843,48.21605340000002]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Garnisongasse","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"8089390","geometry":{"type":"LineString","coordinates":[[16.3568416,48.21635169999999],[16.3566913,48.21632919999999],[16.3551975,48.2161045]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Schwarzspanierstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"29052198","geometry":{"type":"LineString","coordinates":[[16.3568416,48.21635169999999],[16.3567128,48.21642689999999],[16.356679,48.216458399999965],[16.3565079,48.21682379999996]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Garnisongasse","oneway":"yes","sidewalk":"both","source":"yahoo","source:maxspeed":"AT:zone30","surface":"asphalt"}},{"type":"Feature","id":"5010634","geometry":{"type":"LineString","coordinates":[[16.3565079,48.21682379999996],[16.3552652,48.21666490000001],[16.3551674,48.216646500000024],[16.355135,48.21661270000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Rotenhausgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone30","surface":"asphalt"}},{"type":"Feature","id":"147396079","geometry":{"type":"LineString","coordinates":[[16.3551551,48.214839600000005],[16.3551522,48.214882899999964],[16.3551308,48.21500450000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Frankhplatz","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5010640","geometry":{"type":"LineString","coordinates":[[16.3560155,48.21555080000002],[16.355955,48.214971299999974]]},"properties":{"highway":"residential","maxspeed":"30","name":"Garelligasse","source":"yahoo","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"374535115","geometry":{"type":"LineString","coordinates":[[16.3567843,48.21605340000002],[16.3568294,48.216126900000006],[16.3568776,48.21623060000002],[16.3569234,48.216313299999996],[16.3569394,48.21633889999998]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Garnisongasse","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"25527470","geometry":{"type":"LineString","coordinates":[[16.3552348,48.21562370000001],[16.355343,48.21560170000001],[16.3560155,48.21555080000002],[16.3566639,48.21550719999999],[16.3577004,48.215407700000014]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Frankgasse","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"27608418","geometry":{"type":"LineString","coordinates":[[16.3551975,48.2161045],[16.3552075,48.216012199999994],[16.3552461,48.21580799999998],[16.3552494,48.2156736],[16.3552348,48.21562370000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Otto-Wagner-Platz","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5010630","geometry":{"type":"LineString","coordinates":[[16.355135,48.21661270000001],[16.3551148,48.216536099999985],[16.3551975,48.2161045]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Alfred-Grünfeld-Gasse","oneway":"yes","source:maxspeed":"AT:zone30","surface":"asphalt"}},{"type":"Feature","id":"413585866","geometry":{"type":"LineString","coordinates":[[16.3544951,48.21606320000001],[16.3546341,48.216091300000016],[16.3550751,48.21612059999998],[16.3551975,48.2161045]]},"properties":{"highway":"service","name":"Otto-Wagner-Platz"}},{"type":"Feature","id":"29072726","geometry":{"type":"LineString","coordinates":[[16.3551308,48.21500450000002],[16.355955,48.214971299999974]]},"properties":{"highway":"residential","maxspeed":"30","name":"Frankhplatz","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"179638536","geometry":{"type":"LineString","coordinates":[[16.3551308,48.21500450000002],[16.3550857,48.215240300000005],[16.3550509,48.2154462],[16.3550492,48.215484599999996],[16.3550766,48.215549400000015],[16.3551274,48.21559579999999],[16.3552348,48.21562370000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haulerstraße","sidewalk":"right","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"8044164","geometry":{"type":"LineString","coordinates":[[16.3587574,48.21433540000001],[16.3585347,48.214367100000004],[16.3584886,48.21437370000001],[16.3582651,48.21442200000001]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes:forward":"left|left|through;right"}},{"type":"Feature","id":"42984985","geometry":{"type":"LineString","coordinates":[[16.3583227,48.21420789999999],[16.3583392,48.21431390000001],[16.3582651,48.21442200000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"50","name":"Rooseveltplatz","oneway":"yes"}},{"type":"Feature","id":"73236998","geometry":{"type":"LineString","coordinates":[[16.3583227,48.21420789999999],[16.3584314,48.21419470000001],[16.3591,48.21411219999996],[16.3592592,48.214092600000015]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lcn":"yes","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"30156333","geometry":{"type":"LineString","coordinates":[[16.3592618,48.214287600000034],[16.3592118,48.21427200000002],[16.3587574,48.21433540000001]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"237915143","geometry":{"type":"LineString","coordinates":[[16.3564798,48.214685900000006],[16.3563497,48.21469509999997]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"left|left|through"}},{"type":"Feature","id":"237926039","geometry":{"type":"LineString","coordinates":[[16.3564798,48.214685900000006],[16.3564719,48.214775799999984]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"50","name":"Garnisongasse","oneway":"yes"}},{"type":"Feature","id":"237915139","geometry":{"type":"LineString","coordinates":[[16.3564719,48.214775799999984],[16.3563497,48.21469509999997]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"50","name":"Garnisongasse","oneway":"yes"}},{"type":"Feature","id":"328764035","geometry":{"type":"LineString","coordinates":[[16.3567843,48.21605340000002],[16.3566639,48.21550719999999],[16.3564831,48.21481840000001],[16.3564719,48.214775799999984]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Garnisongasse","sidewalk":"both","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"237931026","geometry":{"type":"LineString","coordinates":[[16.3563637,48.2144672],[16.3563912,48.2145204]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes","turn:lanes":"left|through|right"}},{"type":"Feature","id":"237915133","geometry":{"type":"LineString","coordinates":[[16.3563912,48.2145204],[16.3564365,48.21459440000001],[16.3564512,48.214619400000004],[16.3564798,48.214685900000006]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Garnisongasse","oneway":"yes","turn:lanes":"left|through"}},{"type":"Feature","id":"237915136","geometry":{"type":"LineString","coordinates":[[16.3570537,48.214603100000005],[16.3566322,48.21466609999999],[16.3565885,48.2146726],[16.3564798,48.214685900000006]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"left|left|through|right"}},{"type":"Feature","id":"37851390","geometry":{"type":"LineString","coordinates":[[16.356529,48.21445890000001],[16.3573774,48.214325299999985],[16.3581513,48.214229200000005],[16.3583227,48.21420789999999]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lcn":"yes","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"237915148","geometry":{"type":"LineString","coordinates":[[16.3582651,48.21442200000001],[16.3570537,48.214603100000005]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","turn:lanes":"left|left|through;right"}},{"type":"Feature","id":"8089315","geometry":{"type":"LineString","coordinates":[[16.3577004,48.215407700000014],[16.3577346,48.215353600000014],[16.3578471,48.21527600000002],[16.3585086,48.215015799999975],[16.3585673,48.21497840000001],[16.3585579,48.21494010000001],[16.358341,48.2145563],[16.3583199,48.21452149999999],[16.3582651,48.21442200000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Rooseveltplatz"}},{"type":"Feature","id":"237915141","geometry":{"type":"LineString","coordinates":[[16.3563912,48.2145204],[16.356529,48.21445890000001]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"237926037","geometry":{"type":"LineString","coordinates":[[16.3543479,48.21474269999999],[16.3548324,48.214731099999995],[16.3553286,48.2147123],[16.3556438,48.21469909999999],[16.3558455,48.214679700000005]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Frankhplatz","oneway":"yes","surface":"asphalt","turn:lanes":"through|through|right"}},{"type":"Feature","id":"237926035","geometry":{"type":"LineString","coordinates":[[16.3563497,48.21469509999997],[16.3562448,48.21470980000001],[16.3562001,48.2147205],[16.355937,48.21478479999999]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"179638535","geometry":{"type":"LineString","coordinates":[[16.355937,48.21478479999999],[16.3559506,48.214837700000004],[16.355955,48.214971299999974]]},"properties":{"highway":"residential","maxspeed":"30","name":"Frankhplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237915138","geometry":{"type":"LineString","coordinates":[[16.3562498,48.214577899999995],[16.3562168,48.21451050000002]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"2","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"237915146","geometry":{"type":"LineString","coordinates":[[16.3562498,48.214577899999995],[16.3563912,48.2145204]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"237926043","geometry":{"type":"LineString","coordinates":[[16.3563497,48.21469509999997],[16.3563058,48.21465710000001],[16.3562838,48.214631699999984],[16.3562498,48.214577899999995]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Garnisongasse","oneway":"yes"}},{"type":"Feature","id":"237911276","geometry":{"type":"LineString","coordinates":[[16.3558455,48.214679700000005],[16.3559844,48.2146515],[16.3560976,48.21462280000003],[16.35613,48.21461339999999],[16.3561709,48.214601500000015],[16.3562498,48.214577899999995]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"237911279","geometry":{"type":"LineString","coordinates":[[16.3558455,48.214679700000005],[16.3559608,48.21462039999997],[16.3560247,48.214562099999995],[16.3560454,48.2145304],[16.3560765,48.21446019999999],[16.3561138,48.214202400000005]]},"properties":{"highway":"secondary_link","lanes":"1","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"237932835","geometry":{"type":"LineString","coordinates":[[16.3562168,48.21451050000002],[16.3561857,48.21445209999999],[16.3561138,48.214202400000005]]},"properties":{"highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"2","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"299497635","geometry":{"type":"LineString","coordinates":[[16.3534472,48.2201805],[16.3538954,48.2197855]]},"properties":{"highway":"footway","name":"Herta-Pammer-Weg"}},{"type":"Feature","id":"173356376","geometry":{"type":"LineString","coordinates":[[16.3530505,48.219483999999994],[16.3531136,48.21941079999999],[16.353272,48.21943380000002],[16.3532822,48.21941960000001],[16.353036,48.21931879999997],[16.3530451,48.21930550000002],[16.3532174,48.21932859999998],[16.3532323,48.219314999999995],[16.3532523,48.21924799999999],[16.3535076,48.21883890000001]]},"properties":{"bicycle":"yes","highway":"footway","name":"Viktor-C.-Frankl-Weg","surface":"asphalt"}},{"type":"Feature","id":"172244891","geometry":{"type":"LineString","coordinates":[[16.3536928,48.218101700000005],[16.3536534,48.21810339999999],[16.3530645,48.21814429999998],[16.3529856,48.2181478],[16.3527917,48.218162500000005]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Leopold-Bauer-Weg","surface":"asphalt"}},{"type":"Feature","id":"171935439","geometry":{"type":"LineString","coordinates":[[16.3555845,48.2184867],[16.355543,48.21847589999999],[16.3540279,48.218079999999986],[16.3538659,48.218067899999994],[16.3536928,48.218101700000005]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","motor_vehicle":"private","name":"Leopold-Bauer-Weg","surface":"asphalt"}},{"type":"Feature","id":"371516347","geometry":{"type":"LineString","coordinates":[[16.3535076,48.21883890000001],[16.3534672,48.218734499999954],[16.3535029,48.21863950000002],[16.3535841,48.21842319999996],[16.3535959,48.21838819999999],[16.3536928,48.218101700000005]]},"properties":{"bicycle":"yes","highway":"service","maxspeed":"20","motor_vehicle":"private","name":"Viktor-C.-Frankl-Weg","surface":"asphalt"}},{"type":"Feature","id":"194468314","geometry":{"type":"LineString","coordinates":[[16.3519865,48.21930809999998],[16.3520485,48.21945790000004],[16.3521127,48.21965319999998],[16.352194,48.21983319999998],[16.3524752,48.2204552],[16.3526368,48.2208325],[16.3527031,48.220977300000015],[16.3527718,48.221131299999996],[16.3529301,48.2214802]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Spitalgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"229742508","geometry":{"type":"LineString","coordinates":[[16.3532022,48.222307],[16.3531368,48.2221907],[16.3530766,48.22208140000001],[16.3528595,48.22158619999999],[16.3528206,48.221502799999996],[16.3527028,48.22124439999999],[16.3526625,48.22115450000004],[16.3525928,48.22099939999998],[16.3525274,48.22085329999999],[16.3524708,48.22072700000004],[16.352355,48.2204801],[16.3520363,48.219754800000004],[16.3519614,48.21960330000002],[16.3519115,48.21950290000001]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Spitalgasse","oneway":"yes"}},{"type":"Feature","id":"4997411","geometry":{"type":"LineString","coordinates":[[16.3522373,48.2191833],[16.3521487,48.21917260000001],[16.3520585,48.2192149],[16.3520255,48.219238099999984],[16.3520139,48.21924630000001],[16.3519865,48.21930809999998]]},"properties":{"cycleway":"lane","highway":"tertiary_link","maxspeed":"30","name":"Sensengasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"474815927","geometry":{"type":"LineString","coordinates":[[16.3519645,48.218815500000005],[16.3519793,48.21883589999999],[16.352484,48.218806],[16.3524111,48.21839800000001],[16.3523548,48.218362299999995],[16.3523276,48.21818249999998]]},"properties":{"highway":"footway","name":"Leopold-Bauer-Weg"}},{"type":"Feature","id":"4279826","geometry":{"type":"LineString","coordinates":[[16.3558148,48.220484400000004],[16.3557485,48.2204601],[16.3551295,48.22023269999997],[16.3549501,48.22017200000002],[16.3541409,48.21987580000001],[16.3538954,48.2197855],[16.3533977,48.2196026],[16.3530505,48.219483999999994],[16.3524121,48.21924680000001],[16.3522373,48.2191833],[16.3520703,48.219111500000025],[16.3519709,48.21906880000003],[16.3518535,48.21900740000001]]},"properties":{"cycleway":"lane","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Sensengasse","source:maxspeed":"sign"}},{"type":"Feature","id":"243315937","geometry":{"type":"LineString","coordinates":[[16.3518535,48.21900740000001],[16.3519131,48.2191406],[16.3519865,48.21930809999998]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Spitalgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"243315941","geometry":{"type":"LineString","coordinates":[[16.3518535,48.21900740000001],[16.3516278,48.21889010000001]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Spitalgasse","surface":"asphalt"}},{"type":"Feature","id":"243313491","geometry":{"type":"LineString","coordinates":[[16.3519115,48.21950290000001],[16.3517962,48.2192857],[16.3517251,48.21912370000001],[16.351703,48.219068600000014],[16.3516278,48.21889010000001]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Spitalgasse","oneway":"yes","surface":"asphalt","turn:lanes":"through|right"}},{"type":"Feature","id":"84346509","geometry":{"type":"LineString","coordinates":[[16.3510422,48.218503699999985],[16.3511801,48.2185212],[16.3512935,48.21850519999998],[16.3513869,48.21847410000001],[16.3514411,48.2184278]]},"properties":{"highway":"secondary_link","maxspeed":"30","name":"Lazarettgasse","oneway":"yes"}},{"type":"Feature","id":"216685763","geometry":{"type":"LineString","coordinates":[[16.3516278,48.21889010000001],[16.3515584,48.21873819999999],[16.3515004,48.21859280000001],[16.3514411,48.2184278]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Spitalgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"391517773","geometry":{"type":"LineString","coordinates":[[16.3536928,48.218101700000005],[16.3536832,48.218027500000005],[16.3536266,48.21758969999999]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","motor_vehicle":"private","name":"Viktor-C.-Frankl-Weg","surface":"asphalt"}},{"type":"Feature","id":"173497756","geometry":{"type":"LineString","coordinates":[[16.3542074,48.217067499999985],[16.3544206,48.21705990000001]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Piccolomini-Tor","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"173497755","geometry":{"type":"LineString","coordinates":[[16.3540111,48.21755490000001],[16.3539874,48.2174177]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Peuerbach-Tor","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"140050742","geometry":{"type":"LineString","coordinates":[[16.3551975,48.2161045],[16.3550617,48.216064200000005],[16.3546297,48.21604400000001],[16.3544951,48.21606320000001],[16.3539708,48.21603240000002],[16.353881,48.21602680000001]]},"properties":{"highway":"service","name":"Otto-Wagner-Platz"}},{"type":"Feature","id":"173497764","geometry":{"type":"LineString","coordinates":[[16.3536058,48.21681000000001],[16.3535887,48.2167216]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Suess-Tor","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"241921392","geometry":{"type":"LineString","coordinates":[[16.3527638,48.21673470000002],[16.352792,48.2169007]]},"properties":{"bicycle":"yes","foot":"yes","highway":"footway","name":"Jahoda-Tor","tunnel":"building_passage"}},{"type":"Feature","id":"242778970","geometry":{"type":"LineString","coordinates":[[16.3513705,48.216812799999985],[16.3515016,48.21680280000001]]},"properties":{"bicycle":"yes","highway":"service","maxspeed":"10","name":"Johannes-Tor","tunnel":"building_passage","vehicle":"private"}},{"type":"Feature","id":"242778971","geometry":{"type":"LineString","coordinates":[[16.3515775,48.21685819999999],[16.3515906,48.21694930000001]]},"properties":{"bicycle":"yes","foot":"yes","highway":"footway","name":"Menger-Tor","tunnel":"building_passage"}},{"type":"Feature","id":"242778973","geometry":{"type":"LineString","coordinates":[[16.3512029,48.216825400000005],[16.3513217,48.2168169]]},"properties":{"highway":"service","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Spitalgasse","oneway":"yes"}},{"type":"Feature","id":"191978447","geometry":{"type":"LineString","coordinates":[[16.3514411,48.2184278],[16.351368,48.21790140000002],[16.3513348,48.217669],[16.3512494,48.21716630000003],[16.3512287,48.21700560000002],[16.3512029,48.216825400000005],[16.3511328,48.21635069999999],[16.3510874,48.21602520000002]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Spitalgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"192631691","geometry":{"type":"LineString","coordinates":[[16.351398,48.21600240000001],[16.3512523,48.216013000000004]]},"properties":{"foot":"yes","highway":"footway","name":"Freud-Tor","tunnel":"building_passage"}},{"type":"Feature","id":"259940620","geometry":{"type":"LineString","coordinates":[[16.355937,48.21478479999999],[16.355774,48.214802399999996],[16.3551551,48.214839600000005],[16.3548739,48.21484940000002],[16.3545025,48.21484559999999],[16.3543466,48.2148358]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Frankhplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"237926042","geometry":{"type":"LineString","coordinates":[[16.3525165,48.215055800000044],[16.3525033,48.214962499999984]]},"properties":{"highway":"footway","name":"Sonnenfels-Tor","tunnel":"building_passage"}},{"type":"Feature","id":"192631724","geometry":{"type":"LineString","coordinates":[[16.351272,48.2151719],[16.3511297,48.21518040000001]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Viktor-C.-Frankl-Weg","tunnel":"building_passage"}},{"type":"Feature","id":"140050738","geometry":{"type":"LineString","coordinates":[[16.3525083,48.215598399999976],[16.3521583,48.21546419999996],[16.3518729,48.21535510000001],[16.3518517,48.21535789999999],[16.3518306,48.21535879999999],[16.3518052,48.215356999999955],[16.3517815,48.2153519],[16.3517631,48.21534249999999],[16.3517478,48.215330499999965],[16.3517392,48.21531920000001],[16.3517341,48.21530680000001],[16.3515471,48.21524120000001],[16.3513298,48.215177100000034],[16.351272,48.2151719]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Viktor-C.-Frankl-Weg"}},{"type":"Feature","id":"192631731","geometry":{"type":"LineString","coordinates":[[16.3511297,48.21518040000001],[16.351103,48.21518230000001],[16.3510741,48.2151844]]},"properties":{"bicycle":"yes","highway":"footway","maxspeed":"20","name":"Viktor-C.-Frankl-Weg"}},{"type":"Feature","id":"259940621","geometry":{"type":"LineString","coordinates":[[16.3543466,48.2148358],[16.3542746,48.21483119999999],[16.3539813,48.21483280000001],[16.3533186,48.21487110000001],[16.3524976,48.2149259],[16.3518227,48.21497059999999]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"237926040","geometry":{"type":"LineString","coordinates":[[16.3510874,48.21602520000002],[16.3510587,48.21582809999998],[16.3509649,48.21515400000001],[16.3509505,48.215060300000005],[16.350947,48.21503540000003]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Spitalgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"243583617","geometry":{"type":"LineString","coordinates":[[16.350947,48.21503540000003],[16.3509955,48.21492570000001]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"237926036","geometry":{"type":"LineString","coordinates":[[16.3518227,48.21497059999999],[16.3511889,48.21501670000001],[16.3511305,48.21502090000001],[16.3510541,48.2150283]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"237926034","geometry":{"type":"LineString","coordinates":[[16.3510541,48.2150283],[16.350947,48.21503540000003]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"243315940","geometry":{"type":"LineString","coordinates":[[16.3510541,48.2150283],[16.3510587,48.215053299999994],[16.3510741,48.2151844],[16.3511126,48.215411700000004],[16.3511727,48.21581499999999],[16.3512011,48.21601659999999],[16.3512545,48.21636459999999],[16.3513217,48.2168169],[16.3513498,48.216998200000006],[16.3513717,48.217156800000026],[16.3514275,48.217555800000014],[16.3514857,48.2178959],[16.3515079,48.21802489999999],[16.3515481,48.218281399999995],[16.3515856,48.21839840000004],[16.351665,48.218558599999994],[16.3517579,48.21877359999999],[16.3517784,48.21882120000001],[16.3518535,48.21900740000001]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Spitalgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"237926032","geometry":{"type":"LineString","coordinates":[[16.3509955,48.21492570000001],[16.3510192,48.21492430000001],[16.3511234,48.21491919999997],[16.3516111,48.21489009999999],[16.3522187,48.2148517],[16.3530669,48.214797799999985],[16.3537749,48.21476169999997],[16.3543479,48.21474269999999]]},"properties":{"foot":"use_sidepath","highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"39814210","geometry":{"type":"LineString","coordinates":[[16.3509955,48.21492570000001],[16.3510541,48.2150283]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4469956","geometry":{"type":"LineString","coordinates":[[16.3625036,48.21397110000001],[16.3636451,48.21448780000003],[16.3637263,48.21452450000001],[16.3647603,48.2149934],[16.3653046,48.21523880000001],[16.3654289,48.21529509999999]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schottenring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"442794474","geometry":{"type":"LineString","coordinates":[[16.3625036,48.21397110000001],[16.3623969,48.21415289999999]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"84789892","geometry":{"type":"LineString","coordinates":[[16.3620049,48.21439290000001],[16.3621415,48.21428570000003],[16.3623163,48.2141158],[16.3625036,48.21397110000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schottengasse","oneway":"yes","turn:lanes":"left|through"}},{"type":"Feature","id":"4998692","geometry":{"type":"LineString","coordinates":[[16.3625036,48.21397110000001],[16.3626602,48.21379919999998]]},"properties":{"cycleway":"lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Schottengasse"}},{"type":"Feature","id":"44028856","geometry":{"type":"LineString","coordinates":[[16.3627441,48.21348069999999],[16.3630745,48.21317379999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"30321483","geometry":{"type":"LineString","coordinates":[[16.3626602,48.21379919999998],[16.3632246,48.213254500000005]]},"properties":{"cycleway":"lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Schottengasse"}},{"type":"Feature","id":"44028859","geometry":{"type":"LineString","coordinates":[[16.3626602,48.21379919999998],[16.3625576,48.21365559999998],[16.3627441,48.21348069999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schottengasse","oneway":"yes"}},{"type":"Feature","id":"8080526","geometry":{"type":"LineString","coordinates":[[16.3619085,48.21254759999999],[16.3622028,48.212708899999996],[16.3626471,48.21295229999998],[16.3629857,48.21312779999997],[16.3630745,48.21317379999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mölker Bastei","oneway":"yes"}},{"type":"Feature","id":"442794485","geometry":{"type":"LineString","coordinates":[[16.3610134,48.213851000000005],[16.3610387,48.21390880000001],[16.3610504,48.213940199999996],[16.3610911,48.214054799999985],[16.3611012,48.214091800000006]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"172206111","geometry":{"type":"LineString","coordinates":[[16.3615902,48.21269430000001],[16.3617739,48.21329109999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Universitätsring","vehicle":"destination"}},{"type":"Feature","id":"4998695","geometry":{"type":"LineString","coordinates":[[16.3622537,48.210487099999995],[16.3633468,48.21088499999999],[16.3635526,48.210960899999975]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schenkenstraße","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"29067229","geometry":{"type":"LineString","coordinates":[[16.3629539,48.211815599999994],[16.3629155,48.21194000000003],[16.3628662,48.2119907],[16.3627934,48.21204030000001],[16.3627008,48.21208140000002],[16.3625958,48.21210260000001],[16.3620581,48.21238030000001]]},"properties":{"highway":"pedestrian","name":"Schreyvogelgasse","surface":"cobblestone"}},{"type":"Feature","id":"29067246","geometry":{"type":"LineString","coordinates":[[16.3627008,48.21208140000002],[16.3626675,48.21212719999997],[16.3626671,48.212205100000006],[16.3627027,48.21225720000001],[16.3628388,48.21232470000004],[16.3628218,48.2124034],[16.3626941,48.2125034],[16.3626928,48.21254510000003],[16.3629435,48.21263060000001]]},"properties":{"highway":"pedestrian","name":"Mölker Steig","surface":"cobblestone"}},{"type":"Feature","id":"4998697","geometry":{"type":"LineString","coordinates":[[16.3618207,48.21242600000002],[16.3619053,48.21236379999999],[16.3620033,48.212314100000015],[16.3624688,48.21206670000001],[16.3629539,48.211815599999994],[16.3632436,48.211659500000025]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schreyvogelgasse"}},{"type":"Feature","id":"361876876","geometry":{"type":"LineString","coordinates":[[16.3619451,48.21056569999999],[16.3619282,48.2105272],[16.3619554,48.21049829999998]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt links","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"113150039","geometry":{"type":"LineString","coordinates":[[16.3620581,48.21238030000001],[16.3620756,48.2124312],[16.3626663,48.2127399],[16.3628024,48.212809899999996]]},"properties":{"highway":"pedestrian","name":"Mölker Bastei","surface":"cobblestone"}},{"type":"Feature","id":"361876873","geometry":{"type":"LineString","coordinates":[[16.3620781,48.20987289999999],[16.3620013,48.20994239999996],[16.3619347,48.209965899999986]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt rechts","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"113296995","geometry":{"type":"LineString","coordinates":[[16.3636535,48.21044269999999],[16.3635518,48.21038579999998],[16.362903,48.21013909999999],[16.3620781,48.20987289999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bankgasse","sidewalk":"both"}},{"type":"Feature","id":"361876871","geometry":{"type":"LineString","coordinates":[[16.3619554,48.21049829999998],[16.3620803,48.2104803]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt links","oneway":"yes","service":"driveway","tunnel":"building_passage"}},{"type":"Feature","id":"361876877","geometry":{"type":"LineString","coordinates":[[16.3620803,48.2104803],[16.3622537,48.210487099999995]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt links","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"360818422","geometry":{"type":"LineString","coordinates":[[16.3613925,48.21089760000001],[16.3616064,48.21086550000004]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt links","oneway":"yes","service":"driveway","tunnel":"building_passage"}},{"type":"Feature","id":"170511032","geometry":{"type":"LineString","coordinates":[[16.3641107,48.2119869],[16.3632436,48.211659500000025],[16.362891,48.21151630000003],[16.3617939,48.21105749999998]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Teinfaltstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"8079193","geometry":{"type":"LineString","coordinates":[[16.3624688,48.21206670000001],[16.3615552,48.2112851]]},"properties":{"highway":"residential","maxspeed":"30","name":"Oppolzergasse"}},{"type":"Feature","id":"171923860","geometry":{"type":"LineString","coordinates":[[16.361191,48.21133090000001],[16.3615191,48.21244530000001],[16.3615902,48.21269430000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Universitätsring","oneway":"yes"}},{"type":"Feature","id":"4998732","geometry":{"type":"LineString","coordinates":[[16.3618207,48.21242600000002],[16.3618749,48.2124728],[16.3619085,48.21254759999999],[16.3618677,48.212637],[16.3617614,48.2126748],[16.3615902,48.21269430000001],[16.3614851,48.212751000000026],[16.3613388,48.212768100000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mölker Bastei","oneway":"yes"}},{"type":"Feature","id":"170511031","geometry":{"type":"LineString","coordinates":[[16.3612537,48.21247979999998],[16.361399,48.212460899999996],[16.3615191,48.21244530000001],[16.3617083,48.212420699999996],[16.3618207,48.21242600000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schreyvogelgasse"}},{"type":"Feature","id":"360818423","geometry":{"type":"LineString","coordinates":[[16.3614037,48.209691599999985],[16.3612731,48.209710900000005]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt rechts","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"361876874","geometry":{"type":"LineString","coordinates":[[16.3618027,48.209981700000014],[16.3617706,48.20998349999999],[16.3617183,48.20985489999998]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt rechts","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"361876872","geometry":{"type":"LineString","coordinates":[[16.3619347,48.209965899999986],[16.3618027,48.209981700000014]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt rechts","oneway":"yes","service":"driveway","tunnel":"building_passage"}},{"type":"Feature","id":"360818418","geometry":{"type":"LineString","coordinates":[[16.3616064,48.21086550000004],[16.361728,48.21084619999999]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt links","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"30979875","geometry":{"type":"LineString","coordinates":[[16.3612768,48.2135064],[16.3612158,48.213280499999996],[16.3611286,48.212976200000014],[16.3610492,48.2126992],[16.3609881,48.212474799999995],[16.3609192,48.212245300000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Universitätsring","surface":"asphalt"}},{"type":"Feature","id":"360818421","geometry":{"type":"LineString","coordinates":[[16.3611303,48.21108960000001],[16.3612716,48.21093730000001],[16.361328,48.21091050000004],[16.3613925,48.21089760000001]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt links","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"4998691","geometry":{"type":"LineString","coordinates":[[16.3617939,48.21105749999998],[16.3616897,48.211166100000014],[16.3615552,48.2112851],[16.361191,48.21133090000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Löwelstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"22818072","geometry":{"type":"LineString","coordinates":[[16.3611303,48.21108960000001],[16.3611628,48.21122],[16.361191,48.21133090000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Universitätsring"}},{"type":"Feature","id":"8072955","geometry":{"type":"LineString","coordinates":[[16.3611448,48.212119400000006],[16.3610733,48.2121291],[16.3609868,48.212140799999986],[16.3608929,48.21215350000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Rathausplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"442794477","geometry":{"type":"LineString","coordinates":[[16.3609192,48.212245300000006],[16.3608929,48.21215350000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Universitätsring"}},{"type":"Feature","id":"9567011","geometry":{"type":"LineString","coordinates":[[16.3634023,48.20829800000001],[16.3630469,48.20860089999999],[16.3628124,48.20886010000001],[16.3626098,48.20908180000001],[16.361966,48.209822],[16.3620781,48.20987289999999],[16.3621252,48.210047299999985],[16.3622537,48.210487099999995],[16.3621784,48.210580600000014],[16.3618766,48.21095500000001],[16.3617939,48.21105749999998],[16.3617111,48.2110266],[16.3611303,48.21108960000001],[16.3610445,48.2110974],[16.3609248,48.211113100000006],[16.3608576,48.2111232]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Löwelstraße","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"360818417","geometry":{"type":"LineString","coordinates":[[16.3612731,48.209710900000005],[16.3610572,48.20974150000001]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt rechts","oneway":"yes","service":"driveway","tunnel":"building_passage"}},{"type":"Feature","id":"128298947","geometry":{"type":"LineString","coordinates":[[16.3599739,48.214173200000005],[16.3602964,48.21412820000003],[16.3605308,48.214098000000035],[16.3606432,48.2140886]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes"}},{"type":"Feature","id":"30156334","geometry":{"type":"LineString","coordinates":[[16.3592592,48.214092600000015],[16.3592328,48.21399760000003],[16.3590241,48.213276699999994]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","lanes":"2","maxspeed":"30","name":"Reichsratsstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"30979915","geometry":{"type":"LineString","coordinates":[[16.3592592,48.214092600000015],[16.3594849,48.21401109999999],[16.3595459,48.21400299999999],[16.3608745,48.213826400000016],[16.3609632,48.213830400000006],[16.3610134,48.213851000000005]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","lcn":"yes","lit":"yes","maxspeed":"50","name":"Universitätsstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"489071605","geometry":{"type":"LineString","coordinates":[[16.3588119,48.212515999999994],[16.3588007,48.212434900000005]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","lanes":"2","maxspeed":"30","name":"Reichsratsstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","turn:lanes":"through|right"}},{"type":"Feature","id":"277877545","geometry":{"type":"LineString","coordinates":[[16.3590241,48.213276699999994],[16.3588119,48.212515999999994]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","lanes":"2","maxspeed":"30","name":"Reichsratsstraße","oneway":"yes","source:maxspeed":"AT:zone:30","turn:lanes":"through|right"}},{"type":"Feature","id":"204792829","geometry":{"type":"LineString","coordinates":[[16.3608929,48.21215350000003],[16.3608259,48.2121626],[16.3589837,48.21241029999999],[16.3588007,48.212434900000005]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rathausplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4997677","geometry":{"type":"LineString","coordinates":[[16.3573774,48.214325299999985],[16.3573551,48.214252200000004],[16.3571308,48.21351659999999],[16.3569009,48.21276230000001],[16.3568763,48.21268169999999],[16.3566008,48.211777900000016]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","maxspeed":"30","name":"Rathausstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237926031","geometry":{"type":"LineString","coordinates":[[16.3560356,48.212794],[16.3560445,48.212873],[16.3561733,48.21363769999999]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"2","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"237915147","geometry":{"type":"LineString","coordinates":[[16.3561733,48.21363769999999],[16.3563252,48.21433250000001],[16.3563427,48.214412400000015],[16.3563637,48.2144672]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes","turn:lanes":"left|through|right"}},{"type":"Feature","id":"237915137","geometry":{"type":"LineString","coordinates":[[16.3561138,48.214202400000005],[16.3560963,48.21409589999999],[16.3560029,48.213472499999995],[16.3559535,48.2132172]]},"properties":{"highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"4583374","geometry":{"type":"LineString","coordinates":[[16.3590241,48.213276699999994],[16.358084,48.213390300000015],[16.3571308,48.21351659999999],[16.3561733,48.21363769999999]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","maxspeed":"30","name":"Liebiggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26420698","geometry":{"type":"LineString","coordinates":[[16.3585509,48.21152480000001],[16.3585756,48.21161280000001],[16.3587113,48.21209500000003],[16.3587894,48.21235329999999],[16.3588007,48.212434900000005]]},"properties":{"highway":"residential","lanes":"2","maxspeed":"30","name":"Rathausplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583382","geometry":{"type":"LineString","coordinates":[[16.3585509,48.21152480000001],[16.3584053,48.21154390000001],[16.3576475,48.2116436],[16.3575637,48.2116546],[16.3574635,48.21166740000001],[16.3566008,48.211777900000016]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","lanes":"2","maxspeed":"30","name":"Felderstraße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583426","geometry":{"type":"LineString","coordinates":[[16.3575637,48.2116546],[16.3575886,48.21173870000001],[16.3578329,48.2125633],[16.357855,48.212636],[16.358084,48.213390300000015],[16.358288,48.21408890000001],[16.3582999,48.2141297],[16.3583227,48.21420789999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Wien,Österreich,Europe","maxspeed":"30","name":"Ebendorferstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"171856617","geometry":{"type":"LineString","coordinates":[[16.358495,48.2113214],[16.3585509,48.21152480000001]]},"properties":{"highway":"pedestrian","name":"Rathausplatz"}},{"type":"Feature","id":"360817728","geometry":{"type":"LineString","coordinates":[[16.3607927,48.209620700000016],[16.3607671,48.20953900000001],[16.3607589,48.209508599999964],[16.360782,48.2094682],[16.3608224,48.20944189999997],[16.3612106,48.20938979999997],[16.3612924,48.20939600000003],[16.3613709,48.20955079999999]]},"properties":{"highway":"service","name":"Josef-Meinrad-Platz"}},{"type":"Feature","id":"4583445","geometry":{"type":"LineString","coordinates":[[16.3604255,48.2096573],[16.3605802,48.20964129999999],[16.3606657,48.20963219999999],[16.3607927,48.209620700000016],[16.3613709,48.20955079999999],[16.3614864,48.20960370000003],[16.3618307,48.20976150000001],[16.3618899,48.209788599999996],[16.361966,48.209822]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Josef-Meinrad-Platz"}},{"type":"Feature","id":"360818419","geometry":{"type":"LineString","coordinates":[[16.3610572,48.20974150000001],[16.3609653,48.209746199999984],[16.3609251,48.209744400000005],[16.3607927,48.209620700000016]]},"properties":{"bicycle":"private","foot":"permissive","highway":"service","motor_vehicle":"private","name":"Burgtheater Anfahrt rechts","oneway":"yes","service":"driveway"}},{"type":"Feature","id":"26420693","geometry":{"type":"LineString","coordinates":[[16.3581039,48.209880099999964],[16.3581476,48.2100341]]},"properties":{"highway":"pedestrian","name":"Rathausplatz"}},{"type":"Feature","id":"4583400","geometry":{"type":"LineString","coordinates":[[16.3581039,48.209880099999964],[16.3570785,48.210017600000015],[16.3561406,48.21013959999999]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","maxspeed":"30","name":"Lichtenfelsgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26569905","geometry":{"type":"LineString","coordinates":[[16.3561406,48.21013959999999],[16.3561565,48.21020179999999],[16.3563188,48.21079789999999],[16.3564072,48.21110870000001],[16.3566008,48.211777900000016]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","maxspeed":"30","name":"Friedrich-Schmidt-Platz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26386412","geometry":{"type":"LineString","coordinates":[[16.3578084,48.2089775],[16.3578386,48.20905640000001],[16.3579489,48.2093443],[16.3580395,48.20965749999999],[16.3581039,48.209880099999964]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rathausplatz"}},{"type":"Feature","id":"26570291","geometry":{"type":"LineString","coordinates":[[16.3578084,48.2089775],[16.357633,48.208998500000035],[16.3575742,48.20900560000001],[16.3574861,48.20901760000001],[16.357431,48.20902490000003],[16.3568112,48.20910570000001]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Stadiongasse"}},{"type":"Feature","id":"4997703","geometry":{"type":"LineString","coordinates":[[16.3570785,48.210017600000015],[16.356836,48.2091901],[16.3568112,48.20910570000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bartensteingasse","oneway":"yes"}},{"type":"Feature","id":"126907687","geometry":{"type":"LineString","coordinates":[[16.3568112,48.20910570000001],[16.3562959,48.2091715],[16.356101,48.2091877]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Stadiongasse","surface":"concrete"}},{"type":"Feature","id":"341327814","geometry":{"type":"LineString","coordinates":[[16.356101,48.2091877],[16.3559036,48.209263600000014]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Stadiongasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"23486469","geometry":{"type":"LineString","coordinates":[[16.3559036,48.209263600000014],[16.355913,48.2093112],[16.3559207,48.209350099999995],[16.3561406,48.21013959999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Rathausstraße","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"29065909","geometry":{"type":"LineString","coordinates":[[16.3601365,48.20866190000001],[16.3601647,48.20875910000001],[16.3601993,48.2088784],[16.3604255,48.2096573],[16.3606428,48.210416700000025],[16.3606609,48.21046710000002],[16.3606788,48.210516900000016],[16.3608576,48.2111232],[16.3611448,48.212119400000006],[16.3611721,48.2122095],[16.3612537,48.21247979999998],[16.3613388,48.212768100000005],[16.3615242,48.21338739999999],[16.3615541,48.213453799999996],[16.3615843,48.213498500000014],[16.3616316,48.21355349999996],[16.3617047,48.21360580000001],[16.3620842,48.213779200000005],[16.3623711,48.21391049999997],[16.3625036,48.21397110000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Universitätsring","note:name":"wurde 2012 von KL-Ring in Unversitätsring umbenannt werden, siehe http://www.orf.at/stories/2116059/2116060/","old_name":"Dr.-Karl-Lueger-Ring","oneway":"yes","sidewalk":"no","surface":"asphalt","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"474366377","geometry":{"type":"LineString","coordinates":[[16.3602722,48.20858449999997],[16.3603168,48.20873499999999],[16.3603554,48.2088693],[16.3605802,48.20964129999999],[16.360637,48.20987260000001],[16.3606343,48.209955699999995],[16.3606356,48.21001560000002],[16.360645,48.21006919999999],[16.3606552,48.21010760000004]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Universitätsring"}},{"type":"Feature","id":"126196701","geometry":{"type":"LineString","coordinates":[[16.3598682,48.20870180000003],[16.3597908,48.20871260000001],[16.3594132,48.208764400000035]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Rathausplatz","source":"yahoo"}},{"type":"Feature","id":"25535788","geometry":{"type":"LineString","coordinates":[[16.3601365,48.20866190000001],[16.3599932,48.208683899999954],[16.3598682,48.20870180000003]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Rathausplatz","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"183649171","geometry":{"type":"LineString","coordinates":[[16.3598145,48.2084926],[16.3597709,48.20832300000001],[16.3595462,48.207537900000034],[16.3594431,48.207201999999995]]},"properties":{"bicycle":"yes","footway":"sidewalk","highway":"pedestrian","motor_vehicle":"emergency","name":"Dr. Karl Renner Ring","surface":"paving_stones"}},{"type":"Feature","id":"474368816","geometry":{"type":"LineString","coordinates":[[16.3578386,48.20905640000001],[16.3579861,48.209037499999994],[16.3594365,48.208850900000016],[16.3598156,48.20880290000002]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rathausplatz"}},{"type":"Feature","id":"4583414","geometry":{"type":"LineString","coordinates":[[16.3573443,48.20741720000001],[16.3574188,48.20744830000001],[16.3574837,48.20745130000003],[16.3576005,48.2074422],[16.357871,48.2074063],[16.3579067,48.2074016],[16.3584989,48.2073207],[16.358819,48.20727980000001],[16.3593378,48.20721370000001],[16.3594431,48.207201999999995],[16.3594741,48.2072019],[16.3594995,48.20720320000001],[16.3595393,48.20720690000002],[16.3595787,48.20721430000003],[16.3597125,48.207259300000004]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4583355","geometry":{"type":"LineString","coordinates":[[16.3572872,48.20743479999999],[16.3573011,48.20748689999999],[16.3575152,48.20820370000001],[16.3577112,48.20883679999997],[16.357748,48.20889009999999],[16.3578084,48.2089775]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Reichsratsstraße"}},{"type":"Feature","id":"126907683","geometry":{"type":"LineString","coordinates":[[16.3568112,48.20910570000001],[16.3567898,48.209030600000034],[16.3565878,48.20832039999999],[16.3563771,48.207571099999996]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Bartensteingasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"474368820","geometry":{"type":"LineString","coordinates":[[16.3597601,48.20860829999998],[16.3590102,48.20871170000001],[16.3589365,48.20874520000001],[16.3578455,48.208877900000005],[16.357748,48.20889009999999],[16.3577211,48.20889299999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Rathausplatz"}},{"type":"Feature","id":"217195737","geometry":{"type":"LineString","coordinates":[[16.3594132,48.208764400000035],[16.3589254,48.20882850000001],[16.3580149,48.20894609999996],[16.3579184,48.2089608],[16.3578084,48.2089775]]},"properties":{"cycleway":"lane","foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Rathausplatz","source":"yahoo"}},{"type":"Feature","id":"205299979","geometry":{"type":"LineString","coordinates":[[16.3570423,48.2073676],[16.3570467,48.20731519999998],[16.3570612,48.2072665],[16.3570829,48.2072325],[16.357123,48.207199599999996],[16.3572178,48.20714510000002],[16.3573081,48.207140700000025],[16.3573462,48.20714960000001],[16.3574005,48.207197399999984]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Leopold-Gratz-Platz","oneway":"yes"}},{"type":"Feature","id":"23703782","geometry":{"type":"LineString","coordinates":[[16.3574005,48.207197399999984],[16.3573726,48.20725329999996],[16.3573472,48.2073235],[16.3573443,48.20741720000001],[16.3572872,48.20743479999999],[16.3571824,48.20741670000004],[16.3571115,48.2073939],[16.3570423,48.2073676]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Leopold-Gratz-Platz","oneway":"yes"}},{"type":"Feature","id":"4997688","geometry":{"type":"LineString","coordinates":[[16.3588007,48.212434900000005],[16.3586664,48.2124527],[16.3578329,48.2125633],[16.3568763,48.21268169999999],[16.3560356,48.212794],[16.3558673,48.212772400000034]]},"properties":{"highway":"residential","is_in":"Wien,Österreich,Europe","maxspeed":"30","name":"Grillparzerstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"37788971","geometry":{"type":"LineString","coordinates":[[16.3559535,48.2132172],[16.3558798,48.2128367],[16.3558673,48.212772400000034],[16.3556892,48.211986800000005],[16.3556692,48.21189869999998]]},"properties":{"highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"147396080","geometry":{"type":"LineString","coordinates":[[16.3558256,48.21187839999999],[16.3558452,48.21196380000001],[16.3560356,48.212794]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"2","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"26569832","geometry":{"type":"LineString","coordinates":[[16.3566008,48.211777900000016],[16.3563765,48.21180699999999],[16.3559381,48.211863600000015],[16.3558256,48.21187839999999]]},"properties":{"highway":"residential","lanes":"2","maxspeed":"30","name":"Friedrich-Schmidt-Platz","source:maxspeed":"AT:zone:30","turn:lanes:forward":"left|through;right"}},{"type":"Feature","id":"39813826","geometry":{"type":"LineString","coordinates":[[16.3556692,48.21189869999998],[16.3556418,48.21176890000001],[16.3555767,48.21148289999999]]},"properties":{"cycleway":"track","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrich-Schmidt-Platz","note":"nicht Landesgerichtstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"341326431","geometry":{"type":"LineString","coordinates":[[16.3534763,48.2132034],[16.3533294,48.21319199999999]]},"properties":{"bicycle":"no","foot":"permissive","highway":"footway","name":"Therese-Schlesinger-Hof","tunnel":"building_passage"}},{"type":"Feature","id":"341326429","geometry":{"type":"LineString","coordinates":[[16.3539442,48.21323989999999],[16.353801,48.2132287]]},"properties":{"bicycle":"no","foot":"permissive","highway":"footway","name":"Therese-Schlesinger-Hof","tunnel":"building_passage"}},{"type":"Feature","id":"341326427","geometry":{"type":"LineString","coordinates":[[16.353801,48.2132287],[16.3534763,48.2132034]]},"properties":{"bicycle":"no","foot":"permissive","highway":"footway","name":"Therese-Schlesinger-Hof"}},{"type":"Feature","id":"341326428","geometry":{"type":"LineString","coordinates":[[16.3540369,48.21324709999999],[16.3539442,48.21323989999999]]},"properties":{"bicycle":"no","foot":"permissive","highway":"footway","name":"Therese-Schlesinger-Hof"}},{"type":"Feature","id":"95410565","geometry":{"type":"LineString","coordinates":[[16.3542765,48.2122143],[16.3544648,48.211538599999955]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Wickenburggasse","oneway":"yes","oneway:bicycle":"no","surface":"cobblestone"}},{"type":"Feature","id":"225488658","geometry":{"type":"LineString","coordinates":[[16.35395,48.211565999999976],[16.3544648,48.211538599999955]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Tulpengasse","oneway":"yes","oneway:bicycle":"no","surface":"cobblestone"}},{"type":"Feature","id":"237926033","geometry":{"type":"LineString","coordinates":[[16.3537749,48.21476169999997],[16.3537795,48.214729000000005],[16.3538738,48.214066],[16.3539165,48.21376620000001],[16.3540369,48.21324709999999],[16.3542765,48.2122143]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wickenburggasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"42726878","geometry":{"type":"LineString","coordinates":[[16.3556692,48.21189869999998],[16.355511,48.212011700000005],[16.3554784,48.2120745],[16.355459,48.2122837],[16.3553846,48.21235250000001],[16.3553096,48.21236060000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Landesgerichtsstraße","note":"dieses Straßenstück sollte man nicht benennen bzw. wenn, ist es Landesgerichtstraße /al","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"25498421","geometry":{"type":"LineString","coordinates":[[16.3552465,48.211504400000024],[16.3553459,48.211502499999995],[16.3555767,48.21148289999999]]},"properties":{"highway":"residential","name":"Tulpengasse","surface":"asphalt"}},{"type":"Feature","id":"225488657","geometry":{"type":"LineString","coordinates":[[16.3544648,48.211538599999955],[16.3552465,48.211504400000024]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tulpengasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"26569994","geometry":{"type":"LineString","coordinates":[[16.3552465,48.211504400000024],[16.3552714,48.21181450000003],[16.3552844,48.21197219999999],[16.3553154,48.21230700000001],[16.3553096,48.21236060000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Friedrich-Schmidt-Platz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"22924574","geometry":{"type":"LineString","coordinates":[[16.353422,48.212106500000004],[16.3535822,48.211526100000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schlösselgasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"26570072","geometry":{"type":"LineString","coordinates":[[16.3535822,48.211526100000015],[16.35395,48.211565999999976]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tulpengasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"341326430","geometry":{"type":"LineString","coordinates":[[16.3533294,48.21319199999999],[16.3532338,48.21318450000001]]},"properties":{"bicycle":"no","foot":"permissive","highway":"footway","name":"Therese-Schlesinger-Hof"}},{"type":"Feature","id":"28080759","geometry":{"type":"LineString","coordinates":[[16.3531935,48.21343239999999],[16.3530709,48.21476369999999],[16.3530669,48.214797799999985]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schlösselgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"28080755","geometry":{"type":"LineString","coordinates":[[16.3510886,48.213350399999996],[16.3512228,48.2133585],[16.3518269,48.21338399999996],[16.3531935,48.21343239999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Laudongasse","surface":"asphalt"}},{"type":"Feature","id":"339378978","geometry":{"type":"LineString","coordinates":[[16.3509955,48.21492570000001],[16.3509946,48.21487350000001],[16.3509958,48.2148425],[16.3510021,48.21467659999999],[16.3510291,48.21427200000002],[16.3510519,48.2138607],[16.3510886,48.213350399999996]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Lange Gasse","surface":"concrete"}},{"type":"Feature","id":"4997423","geometry":{"type":"LineString","coordinates":[[16.353422,48.212106500000004],[16.3532338,48.21318450000001],[16.3532032,48.21336009999996],[16.3531935,48.21343239999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schlösselgasse","oneway":"yes"}},{"type":"Feature","id":"4997412","geometry":{"type":"LineString","coordinates":[[16.3521419,48.21195370000004],[16.3518269,48.21338399999996]]},"properties":{"created_by":"Potlatch 0.4c","highway":"residential","maxspeed":"30","name":"Lammgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"25555587","geometry":{"type":"LineString","coordinates":[[16.3561406,48.21013959999999],[16.3559035,48.210170300000044],[16.3555422,48.210217099999994],[16.3554663,48.2102275]]},"properties":{"highway":"residential","lanes":"3","maxspeed":"30","name":"Friedrich-Schmidt-Platz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"126046671","geometry":{"type":"LineString","coordinates":[[16.3554663,48.2102275],[16.3555029,48.21039680000001],[16.3555439,48.21056870000001],[16.3558015,48.21175310000001],[16.3558256,48.21187839999999]]},"properties":{"cycleway":"track","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrich-Schmidt-Platz","note":"nicht Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"24341926","geometry":{"type":"LineString","coordinates":[[16.3555767,48.21148289999999],[16.355366,48.210409999999996],[16.3553365,48.21024589999999]]},"properties":{"cycleway":"track","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrich-Schmidt-Platz","note":"nicht Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"4997660","geometry":{"type":"LineString","coordinates":[[16.3518692,48.2104008],[16.3532778,48.210611099999994]]},"properties":{"created_by":"Potlatch 0.10f","highway":"residential","maxspeed":"30","name":"Schmidgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"22923704","geometry":{"type":"LineString","coordinates":[[16.3532778,48.210611099999994],[16.3540457,48.2107245],[16.3551765,48.21067669999999]]},"properties":{"highway":"living_street","name":"Schmidgasse","oneway":"yes","surface":"sett"}},{"type":"Feature","id":"29320218","geometry":{"type":"LineString","coordinates":[[16.3532778,48.210611099999994],[16.3528568,48.21204080000001]]},"properties":{"created_by":"Potlatch 0.4b","highway":"residential","maxspeed":"30","name":"Buchfeldgasse","oneway":"yes"}},{"type":"Feature","id":"4997666","geometry":{"type":"LineString","coordinates":[[16.3550563,48.2099671],[16.3551188,48.210014],[16.3551205,48.21013159999998],[16.3551282,48.2102452],[16.3551575,48.2103755],[16.3551706,48.21043159999999],[16.3551765,48.21067669999999],[16.3552183,48.21117140000001],[16.3552465,48.211504400000024]]},"properties":{"highway":"living_street","name":"Friedrich-Schmidt-Platz","oneway":"yes"}},{"type":"Feature","id":"22923803","geometry":{"type":"LineString","coordinates":[[16.354416,48.20999230000001],[16.3550563,48.2099671]]},"properties":{"highway":"living_street","name":"Loidoldgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4997695","geometry":{"type":"LineString","coordinates":[[16.3558922,48.209188400000016],[16.3558896,48.209152700000004],[16.3558846,48.20913489999998],[16.3557393,48.2086199]]},"properties":{"highway":"service","name":"Rathausstraße"}},{"type":"Feature","id":"474368822","geometry":{"type":"LineString","coordinates":[[16.3558204,48.209325500000006],[16.355913,48.2093112],[16.356836,48.2091901],[16.3576591,48.20908029999998],[16.3578386,48.20905640000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Stadiongasse"}},{"type":"Feature","id":"474368818","geometry":{"type":"LineString","coordinates":[[16.3577211,48.20889299999999],[16.3576725,48.20889709999997],[16.3576101,48.208925300000004],[16.3567898,48.209030600000034],[16.3558846,48.20913489999998],[16.3557124,48.209123699999964],[16.3553342,48.2091671]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Stadiongasse"}},{"type":"Feature","id":"4997678","geometry":{"type":"LineString","coordinates":[[16.3553748,48.207697300000035],[16.3562551,48.20759010000003],[16.3563771,48.207571099999996],[16.3569841,48.2074983],[16.3570298,48.2074686],[16.3570418,48.20743300000001],[16.3570423,48.2073676]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schmerlingplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"204801643","geometry":{"type":"LineString","coordinates":[[16.3557393,48.2086199],[16.3557618,48.208487399999996],[16.3557443,48.208415099999996]]},"properties":{"highway":"footway","name":"Rathausstraße"}},{"type":"Feature","id":"128272253","geometry":{"type":"LineString","coordinates":[[16.3554452,48.20845299999999],[16.3557443,48.208415099999996],[16.3563806,48.2083294],[16.3565878,48.20832039999999],[16.3575152,48.20820370000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Doblhoffgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583353","geometry":{"type":"LineString","coordinates":[[16.355225,48.20923500000001],[16.3550924,48.209237400000006]]},"properties":{"foot":"use_sidepath","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"126046674","geometry":{"type":"LineString","coordinates":[[16.3553365,48.21024589999999],[16.3553072,48.210115700000046],[16.355265,48.209927599999986],[16.3551237,48.2093625],[16.3550924,48.209237400000006]]},"properties":{"cycleway":"track","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"341327811","geometry":{"type":"LineString","coordinates":[[16.355225,48.20923500000001],[16.3553388,48.209217799999976],[16.3558922,48.209188400000016],[16.356101,48.2091877]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Stadiongasse","oneway":"yes","surface":"concrete"}},{"type":"Feature","id":"39814130","geometry":{"type":"LineString","coordinates":[[16.3550924,48.209237400000006],[16.3549547,48.209233600000005],[16.3548907,48.2092318],[16.3546781,48.2092284]]},"properties":{"foot":"use_sidepath","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"73234438","geometry":{"type":"LineString","coordinates":[[16.3559036,48.209263600000014],[16.3554365,48.20929219999999],[16.3553471,48.209291000000036],[16.355225,48.20923500000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Stadiongasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"146984828","geometry":{"type":"LineString","coordinates":[[16.355225,48.20923500000001],[16.3552576,48.209362699999986],[16.3554348,48.210100100000005],[16.3554663,48.2102275]]},"properties":{"cycleway":"track","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Landesgerichtsstraße","oneway":"yes"}},{"type":"Feature","id":"24341927","geometry":{"type":"LineString","coordinates":[[16.3550924,48.209237400000006],[16.3550696,48.209147400000006],[16.3549555,48.208696299999986],[16.3549718,48.2085625]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Auerspergstraße","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"25498422","geometry":{"type":"LineString","coordinates":[[16.3551184,48.20845610000001],[16.3553734,48.20842590000001],[16.3554452,48.20845299999999]]},"properties":{"bicycle":"designated","foot":"designated","highway":"path","name":"Doblhoffgasse","segregated":"yes","source":"yahoo"}},{"type":"Feature","id":"4997682","geometry":{"type":"LineString","coordinates":[[16.3546781,48.2092284],[16.3546848,48.2092141],[16.3547195,48.20914590000001],[16.3548514,48.208777],[16.3549555,48.208696299999986]]},"properties":{"highway":"residential","maxspeed":"50","name":"Auerspergstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"30265527","geometry":{"type":"LineString","coordinates":[[16.3552213,48.20784090000001],[16.3543447,48.20771830000001],[16.3542806,48.207708]]},"properties":{"highway":"residential","maxspeed":"30","name":"Trautsongasse","oneway":"no"}},{"type":"Feature","id":"4849683","geometry":{"type":"LineString","coordinates":[[16.3538327,48.20927040000001],[16.3538197,48.20930179999999],[16.3532778,48.210611099999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Buchfeldgasse","oneway":"yes"}},{"type":"Feature","id":"30586910","geometry":{"type":"LineString","coordinates":[[16.3517439,48.20819399999999],[16.3521525,48.20823339999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zeltgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"30586919","geometry":{"type":"LineString","coordinates":[[16.3521525,48.20823339999998],[16.3523058,48.2082513]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zeltgasse","oneway":"yes","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"30586922","geometry":{"type":"LineString","coordinates":[[16.3523058,48.2082513],[16.3523289,48.20825410000003],[16.3525266,48.208274700000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Hugo-Bettauer-Platz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"8105817","geometry":{"type":"LineString","coordinates":[[16.3525266,48.208274700000004],[16.3542045,48.20849240000001],[16.3549718,48.2085625]]},"properties":{"cycleway":"opposite","highway":"living_street","name":"Josefsgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"22794336","geometry":{"type":"LineString","coordinates":[[16.3510886,48.213350399999996],[16.3511001,48.21328119999998],[16.3511671,48.212984699999964],[16.3514193,48.211917],[16.351432,48.211862999999994],[16.351448,48.21180890000002],[16.3518089,48.21058740000001],[16.3518692,48.2104008],[16.3521812,48.209407699999986],[16.3521931,48.20937000000001],[16.352211,48.209311100000036],[16.3525266,48.208274700000004]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lange Gasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"25498423","geometry":{"type":"LineString","coordinates":[[16.3546781,48.2092284],[16.3546717,48.20924310000001],[16.3546653,48.2092619],[16.354416,48.20999230000001],[16.3540626,48.21063720000001],[16.3540457,48.2107245],[16.3540009,48.2112975],[16.3539639,48.2113325],[16.35395,48.211565999999976]]},"properties":{"highway":"living_street","name":"Lenaugasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"126907684","geometry":{"type":"LineString","coordinates":[[16.3546781,48.2092284],[16.3544691,48.209231999999986],[16.3538327,48.20927040000001],[16.3522847,48.2093644],[16.3521931,48.20937000000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"concrete:plates"}},{"type":"Feature","id":"30265539","geometry":{"type":"LineString","coordinates":[[16.3541306,48.207685200000014],[16.3542806,48.207708]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"15","name":"Trautsongasse","oneway":"yes","tunnel":"building_passage"}},{"type":"Feature","id":"4583719","geometry":{"type":"LineString","coordinates":[[16.3527753,48.20748609999998],[16.3541306,48.207685200000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Trautsongasse","oneway":"no"}},{"type":"Feature","id":"287202873","geometry":{"type":"LineString","coordinates":[[16.3523289,48.20825410000003],[16.3523634,48.208112400000005],[16.3525708,48.208134400000006]]},"properties":{"highway":"footway","name":"Hugo-Bettauer-Platz"}},{"type":"Feature","id":"8105818","geometry":{"type":"LineString","coordinates":[[16.3509004,48.20812169999999],[16.3510047,48.208130600000004],[16.3514849,48.20817149999999],[16.3515844,48.20817779999996]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zeltgasse","oneway":"yes"}},{"type":"Feature","id":"30586907","geometry":{"type":"LineString","coordinates":[[16.3515844,48.20817779999996],[16.3517439,48.20819399999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zeltgasse","oneway":"yes","tunnel":"building_passage"}},{"type":"Feature","id":"29065206","geometry":{"type":"LineString","coordinates":[[16.3634698,48.207839500000006],[16.3633118,48.20775739999999],[16.362463,48.20726669999999],[16.361633,48.20675370000001],[16.3610492,48.20641549999999]]},"properties":{"highway":"service","lit":"yes","maxspeed":"30","name":"Heldenplatz","parking":"yes","service":"parking_aisle"}},{"type":"Feature","id":"474366381","geometry":{"type":"LineString","coordinates":[[16.3599787,48.2069151],[16.3598987,48.20697740000003],[16.3598558,48.207035099999985],[16.359835,48.20709719999999],[16.3598383,48.20716199999998],[16.360041,48.20782700000001],[16.3602281,48.20843909999999],[16.3602722,48.20858449999997]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Dr. Karl Renner Ring"}},{"type":"Feature","id":"4997697","geometry":{"type":"LineString","coordinates":[[16.3597284,48.206965999999994],[16.3596428,48.20699530000002],[16.3595797,48.20699250000001],[16.3594923,48.206982599999975],[16.3594489,48.206954499999995],[16.3593284,48.2068768]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes"}},{"type":"Feature","id":"147216221","geometry":{"type":"LineString","coordinates":[[16.3599349,48.20648419999998],[16.3599197,48.206500800000015],[16.3598917,48.206531299999995],[16.359554,48.20678699999999],[16.3594888,48.206803699999995],[16.3594471,48.20681440000001],[16.3593961,48.206840400000004],[16.3593284,48.2068768]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"50","motor_vehicle":"no","name":"Dr.-Karl-Renner-Ring","surface":"asphalt"}},{"type":"Feature","id":"29065888","geometry":{"type":"LineString","coordinates":[[16.3602861,48.206528399999996],[16.359956,48.206783599999994],[16.3597778,48.206919],[16.3597284,48.206965999999994],[16.3596971,48.207013700000005],[16.3596794,48.20705850000002],[16.3596739,48.2071009],[16.359677,48.20714319999999],[16.3597125,48.207259300000004],[16.3600752,48.2084624],[16.3601365,48.20866190000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Dr.-Karl-Renner-Ring","oneway":"yes","sidewalk":"no","surface":"asphalt","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"260383372","geometry":{"type":"LineString","coordinates":[[16.3626011,48.20559209999999],[16.3627908,48.20570699999999]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Heldenplatz","surface":"asphalt","tunnel":"building_passage"}},{"type":"Feature","id":"4997590","geometry":{"type":"LineString","coordinates":[[16.3620041,48.205227399999984],[16.362061,48.20526380000001],[16.3621796,48.20533649999999]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Heldenplatz","sidewalk":"both"}},{"type":"Feature","id":"437877428","geometry":{"type":"LineString","coordinates":[[16.3621796,48.20533649999999],[16.3626011,48.20559209999999]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Heldenplatz","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"31130147","geometry":{"type":"LineString","coordinates":[[16.3600878,48.20632600000002],[16.360188,48.2063751],[16.3602682,48.206449099999986],[16.3602861,48.206528399999996]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Bellariastraße","oneway":"yes","sidewalk":"no","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"474353096","geometry":{"type":"LineString","coordinates":[[16.3621345,48.2054775],[16.3608949,48.20642219999996]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Burgring"}},{"type":"Feature","id":"183649169","geometry":{"type":"LineString","coordinates":[[16.3598844,48.20635200000001],[16.359918,48.206384299999996],[16.359939,48.20641499999999],[16.3599418,48.2064378],[16.3599417,48.2064613],[16.3599349,48.20648419999998]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"50","motor_vehicle":"no","name":"Bellariastraße"}},{"type":"Feature","id":"474349119","geometry":{"type":"LineString","coordinates":[[16.3643559,48.20371420000001],[16.3639652,48.204002],[16.3639842,48.204075200000005],[16.3639057,48.204133600000006],[16.3627987,48.20497940000001],[16.3623613,48.20530790000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Burgring"}},{"type":"Feature","id":"133999725","geometry":{"type":"LineString","coordinates":[[16.3618093,48.205103699999995],[16.3619055,48.205029499999995],[16.3623345,48.20470710000001],[16.362701,48.20443850000001],[16.3627909,48.2043395],[16.3632443,48.20400029999999],[16.3634093,48.2038776],[16.3635162,48.203820699999994]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Burgring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"27220131","geometry":{"type":"LineString","coordinates":[[16.3637839,48.20285469999999],[16.3636595,48.2028933],[16.3628617,48.20330050000001],[16.3627571,48.203372599999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Elisabethstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"10127038","geometry":{"type":"LineString","coordinates":[[16.3635162,48.203820699999994],[16.3627571,48.203372599999994],[16.362093,48.202972800000026]]},"properties":{"bicycle":"yes","highway":"unclassified","lit":"yes","maxspeed":"50","name":"Babenbergerstraße"}},{"type":"Feature","id":"441318930","geometry":{"type":"LineString","coordinates":[[16.362093,48.202972800000026],[16.3621953,48.20290539999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Nibelungengasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"44005500","geometry":{"type":"LineString","coordinates":[[16.3600878,48.20632600000002],[16.3602063,48.20629980000001],[16.3602915,48.206243900000004],[16.3603859,48.20616899999999],[16.3612816,48.205478700000015],[16.3617118,48.205174899999975],[16.3618093,48.205103699999995]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"50","name":"Burgring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"474350469","geometry":{"type":"LineString","coordinates":[[16.3633684,48.203853699999996],[16.3627442,48.20431400000001],[16.3622646,48.20466759999999],[16.3618376,48.20499240000001],[16.3616513,48.2051366],[16.3612298,48.2054497],[16.3603204,48.206134099999986],[16.3601299,48.2062775],[16.3601155,48.206285199999996],[16.3600649,48.2063124]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Burgring"}},{"type":"Feature","id":"29065863","geometry":{"type":"LineString","coordinates":[[16.3643365,48.203536499999984],[16.3642312,48.20358139999999],[16.3640541,48.203703899999994],[16.363903,48.2038067],[16.3638246,48.20386880000001],[16.3637175,48.20393609999999],[16.3621139,48.205142300000006],[16.3620041,48.205227399999984],[16.3618852,48.20531890000001],[16.3614916,48.20559990000001],[16.3604662,48.206384299999996],[16.3602861,48.206528399999996]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Burgring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"147216219","geometry":{"type":"LineString","coordinates":[[16.3589549,48.20581469999999],[16.3590731,48.205882900000006],[16.359823,48.20631509999998],[16.3598844,48.20635200000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Bellariastraße"}},{"type":"Feature","id":"47800672","geometry":{"type":"LineString","coordinates":[[16.3583738,48.206252500000005],[16.3584517,48.206193799999994],[16.3589077,48.205850200000015],[16.3589549,48.20581469999999],[16.3590626,48.20577349999999],[16.3591074,48.20575880000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Hansenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"204826758","geometry":{"type":"LineString","coordinates":[[16.3591074,48.20575880000001],[16.3590985,48.205794],[16.3590731,48.205882900000006],[16.3590225,48.205921200000006],[16.3585734,48.2062617],[16.3584818,48.206331199999994],[16.358467,48.20634239999998],[16.3583472,48.2064824]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Hansenstraße","oneway":"yes"}},{"type":"Feature","id":"442912313","geometry":{"type":"LineString","coordinates":[[16.3593284,48.2068768],[16.359098,48.20674360000001],[16.3589372,48.206649],[16.3586191,48.20647070000004],[16.3585734,48.206445099999996],[16.358467,48.20634239999998],[16.3583738,48.206252500000005]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"356848626","geometry":{"type":"LineString","coordinates":[[16.3580251,48.2051707],[16.3579939,48.205192100000005]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumstraße","oneway":"yes"}},{"type":"Feature","id":"147216220","geometry":{"type":"LineString","coordinates":[[16.3589549,48.20581469999999],[16.3580237,48.20527710000002],[16.3579402,48.20522890000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Bellariastraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"8876804","geometry":{"type":"LineString","coordinates":[[16.3580741,48.205135600000006],[16.3581537,48.20518200000001],[16.358444,48.2053559],[16.3591074,48.20575880000001],[16.3600649,48.2063124],[16.3600878,48.20632600000002]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Bellariastraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"26570366","geometry":{"type":"LineString","coordinates":[[16.3580741,48.205135600000006],[16.3580251,48.2051707]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"184311042","geometry":{"type":"LineString","coordinates":[[16.3575082,48.20698429999999],[16.3575546,48.206861],[16.35772,48.206731399999995],[16.3578636,48.2066188],[16.3580455,48.2065556]]},"properties":{"foot":"yes","highway":"service","lit":"yes","name":"Schmerlingplatz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"239911080","geometry":{"type":"LineString","coordinates":[[16.3579575,48.205073699999986],[16.3580741,48.205135600000006]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"315603122","geometry":{"type":"LineString","coordinates":[[16.3584275,48.204057199999994],[16.3581399,48.204320300000006]]},"properties":{"highway":"footway","name":"Electric Avenue","tunnel":"building_passage"}},{"type":"Feature","id":"264690090","geometry":{"type":"LineString","coordinates":[[16.3578381,48.204693099999986],[16.3577538,48.20465200000001],[16.357698,48.204624800000005]]},"properties":{"foot":"yes","highway":"footway","motor_vehicle":"delivery","name":"Meteoritenpassage","tunnel":"building_passage","website":"www.meteoritenpassage.org"}},{"type":"Feature","id":"28786334","geometry":{"type":"LineString","coordinates":[[16.3577533,48.204307099999994],[16.3578683,48.204199500000016]]},"properties":{"highway":"footway","motor_vehicle":"delivery","name":"Tonspurpassage","tunnel":"building_passage","website":"www.tonspur.at"}},{"type":"Feature","id":"4997667","geometry":{"type":"LineString","coordinates":[[16.3558556,48.20683589999999],[16.3559842,48.20687620000001],[16.3560453,48.206895299999985],[16.3567888,48.207156499999996],[16.3569818,48.207168800000005],[16.3572178,48.20714510000002]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes"}},{"type":"Feature","id":"11689310","geometry":{"type":"LineString","coordinates":[[16.3572178,48.20714510000002],[16.3573771,48.207080700000006],[16.3575082,48.20698429999999],[16.3576905,48.20687910000001],[16.3578118,48.2067802],[16.357858,48.2067395],[16.3579739,48.20664819999999],[16.3580455,48.2065556],[16.3582638,48.20633939999996],[16.3582981,48.20631230000001],[16.3583738,48.206252500000005]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes"}},{"type":"Feature","id":"147216223","geometry":{"type":"LineString","coordinates":[[16.3585734,48.206445099999996],[16.3585085,48.20644090000002],[16.3584239,48.2064498],[16.3583472,48.2064824],[16.3582426,48.20656539999999],[16.3580535,48.20670849999999],[16.3576867,48.20698780000001],[16.3575162,48.2071133],[16.3574005,48.207197399999984]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes"}},{"type":"Feature","id":"99574058","geometry":{"type":"LineString","coordinates":[[16.3560943,48.20662979999997],[16.3562076,48.20669860000001],[16.3569818,48.207168800000005]]},"properties":{"highway":"residential","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes","source":"Bing"}},{"type":"Feature","id":"25498424","geometry":{"type":"LineString","coordinates":[[16.3555972,48.20691120000001],[16.3556534,48.20684840000001]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumstraße","oneway":"yes"}},{"type":"Feature","id":"37788972","geometry":{"type":"LineString","coordinates":[[16.3549718,48.2085625],[16.3552213,48.20784090000001],[16.3553,48.20761409999997],[16.3553905,48.20731860000001],[16.3554274,48.20721209999999],[16.3554605,48.20713119999999],[16.3554926,48.20706780000003],[16.3555418,48.20698759999999],[16.3555972,48.20691120000001]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Auerspergstraße","oneway":"yes"}},{"type":"Feature","id":"25555589","geometry":{"type":"LineString","coordinates":[[16.3570423,48.2073676],[16.3563994,48.207181899999995],[16.355888,48.207013200000034],[16.3557376,48.206960400000014]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schmerlingplatz","oneway":"yes"}},{"type":"Feature","id":"4997709","geometry":{"type":"LineString","coordinates":[[16.3557376,48.206960400000014],[16.3555972,48.20691120000001]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"44352609","geometry":{"type":"LineString","coordinates":[[16.3557376,48.206960400000014],[16.3556891,48.207033800000005],[16.3555833,48.20720829999999],[16.3553748,48.207697300000035],[16.3551184,48.20845610000001],[16.3550956,48.2085634],[16.3550953,48.20869990000003],[16.3552044,48.209150100000016],[16.355225,48.20923500000001]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Auerspergstraße","oneway":"yes"}},{"type":"Feature","id":"25498425","geometry":{"type":"LineString","coordinates":[[16.3558556,48.20683589999999],[16.3557896,48.20689920000001],[16.3557376,48.206960400000014]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Auerspergstraße","oneway":"yes"}},{"type":"Feature","id":"122729050","geometry":{"type":"LineString","coordinates":[[16.3513413,48.206681],[16.3513957,48.206450099999984]]},"properties":{"bus":"yes","highway":"platform","name":"Piaristengasse","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"155492878","geometry":{"type":"LineString","coordinates":[[16.3555972,48.20691120000001],[16.3555265,48.20688999999999],[16.3554474,48.20687090000001],[16.3553553,48.206854899999996],[16.3548297,48.2067892],[16.3544196,48.2067079]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4997665","geometry":{"type":"LineString","coordinates":[[16.3544196,48.2067079],[16.3549264,48.206680199999965],[16.3551463,48.20669860000001],[16.355434,48.20673900000003],[16.3555148,48.20675249999999],[16.3556211,48.20677190000001],[16.3557135,48.2067945],[16.3557897,48.206816],[16.3558556,48.20683589999999]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"28080135","geometry":{"type":"LineString","coordinates":[[16.3525266,48.208274700000004],[16.3525708,48.208134400000006],[16.3527753,48.20748609999998],[16.3530738,48.2065221]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lange Gasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4997669","geometry":{"type":"LineString","coordinates":[[16.3514849,48.20817149999999],[16.3520633,48.206382400000024]]},"properties":{"created_by":"Potlatch 0.4b","highway":"living_street","name":"Neudeggergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"122605516","geometry":{"type":"LineString","coordinates":[[16.3514408,48.20631839999999],[16.3515929,48.206322],[16.3520633,48.206382400000024],[16.353042,48.206517200000036],[16.3530738,48.2065221],[16.3539315,48.20664719999999],[16.3540736,48.20666489999999],[16.3544196,48.2067079]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"secondary","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"25643766","geometry":{"type":"LineString","coordinates":[[16.3583738,48.206252500000005],[16.3582752,48.20619410000003],[16.3574531,48.2057068],[16.3573648,48.20565450000001]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"secondary","lit":"yes","maxspeed":"50","name":"Volksgartenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"239913339","geometry":{"type":"LineString","coordinates":[[16.3579939,48.205192100000005],[16.3579402,48.20522890000001],[16.3578839,48.20526770000001],[16.3573648,48.20565450000001]]},"properties":{"cycleway":"track","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Museumstraße","oneway":"yes","turn:lanes":"left|left|through|through"}},{"type":"Feature","id":"442912312","geometry":{"type":"LineString","coordinates":[[16.3568607,48.20463790000002],[16.3568737,48.20462409999999],[16.3569185,48.20457290000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Museumstraße","oneway":"yes","source:maxspeed":"sign","surface":"asphalt"}},{"type":"Feature","id":"26544177","geometry":{"type":"LineString","coordinates":[[16.3542301,48.2054023],[16.3541756,48.20574189999999],[16.3539315,48.20664719999999]]},"properties":{"highway":"living_street","is_in":"Europe,Vienna,Wien","name":"Mechitaristengasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"142538894","geometry":{"type":"LineString","coordinates":[[16.3559657,48.206063900000004],[16.3561299,48.20563709999999],[16.3561842,48.205495900000045]]},"properties":{"highway":"service","maxspeed":"30","name":"Museumstraße","source:maxspeed":"AT:zone:30","vehicle":"private"}},{"type":"Feature","id":"442910726","geometry":{"type":"LineString","coordinates":[[16.3573648,48.20565450000001],[16.3572143,48.20559320000004],[16.3570684,48.205579400000005],[16.3566773,48.20554520000002],[16.3562905,48.20550589999999],[16.3561842,48.205495900000045]]},"properties":{"bicycle":"yes","busway":"lane","cycleway":"share_busway","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Neustiftgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"155492879","geometry":{"type":"LineString","coordinates":[[16.3573648,48.20565450000001],[16.3572484,48.20574010000004],[16.3566342,48.20619159999998],[16.3560943,48.20662979999997],[16.3559035,48.2067945],[16.3558556,48.20683589999999]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"149681443","geometry":{"type":"LineString","coordinates":[[16.3561842,48.205495900000045],[16.3568094,48.204702999999995],[16.3568529,48.20464749999999],[16.3568607,48.20463790000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Museumstraße","oneway":"yes","source:maxspeed":"sign"}},{"type":"Feature","id":"22924498","geometry":{"type":"LineString","coordinates":[[16.3544931,48.204960200000016],[16.354833,48.205006]]},"properties":{"highway":"pedestrian","name":"Zitterhofergasse"}},{"type":"Feature","id":"356848625","geometry":{"type":"LineString","coordinates":[[16.3556534,48.20684840000001],[16.3557135,48.2067945],[16.3557851,48.20673399999998],[16.3565103,48.206112099999956],[16.356915,48.20581730000001],[16.3570844,48.2056905],[16.3572143,48.20559320000004],[16.3577583,48.20519730000001],[16.3578565,48.20513700000001],[16.3578894,48.20511529999999],[16.3579575,48.205073699999986]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"142539393","geometry":{"type":"LineString","coordinates":[[16.3549107,48.20506119999999],[16.3554333,48.20512089999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Zitterhofergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"10420666","geometry":{"type":"LineString","coordinates":[[16.3565404,48.2044324],[16.3565897,48.204449100000005]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"142527750","geometry":{"type":"LineString","coordinates":[[16.3549141,48.204406000000006],[16.354833,48.205006],[16.3549107,48.20506119999999],[16.3549104,48.2054325]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gardegasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"56212551","geometry":{"type":"LineString","coordinates":[[16.3568607,48.20463790000002],[16.3566227,48.204498400000006],[16.3565404,48.2044324]]},"properties":{"highway":"residential","lit":"yes","name":"Burggasse","oneway":"yes"}},{"type":"Feature","id":"235381038","geometry":{"type":"LineString","coordinates":[[16.3565897,48.204449100000005],[16.3569185,48.20457290000002],[16.3572652,48.20473100000001],[16.3576663,48.204914],[16.3577605,48.2049658],[16.3578342,48.2050069],[16.3579575,48.205073699999986]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","turn:lanes":"left|through;right|right"}},{"type":"Feature","id":"122729058","geometry":{"type":"LineString","coordinates":[[16.3516788,48.20532280000003],[16.3519441,48.205335399999996]]},"properties":{"bus":"yes","highway":"platform","name":"Kellermanngasse","network":"VOR","public_transport":"platform","shelter":"yes","wheelchair":"yes"}},{"type":"Feature","id":"122729054","geometry":{"type":"LineString","coordinates":[[16.3515824,48.20544330000001],[16.3515973,48.20534859999998]]},"properties":{"bus":"yes","highway":"platform","name":"Kellermanngasse","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"7837746","geometry":{"type":"LineString","coordinates":[[16.3515375,48.205275900000004],[16.3515345,48.20533840000002],[16.3515284,48.20538380000002],[16.3515444,48.2059854],[16.3515314,48.206242599999996],[16.3514408,48.20631839999999]]},"properties":{"cycleway":"lane","highway":"residential","maxspeed":"50","name":"Kellermanngasse","oneway":"yes"}},{"type":"Feature","id":"255682499","geometry":{"type":"LineString","coordinates":[[16.3511485,48.20529620000002],[16.3511799,48.20556110000001]]},"properties":{"highway":"service","motor_vehicle":"private","name":"Augustinplatz"}},{"type":"Feature","id":"4997672","geometry":{"type":"LineString","coordinates":[[16.3515334,48.20489739999999],[16.3518888,48.204892700000016],[16.3523702,48.2048863]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Zeismannsbrunngasse","sidewalk":"no","surface":"cobblestone"}},{"type":"Feature","id":"239913342","geometry":{"type":"LineString","coordinates":[[16.3565171,48.204319699999985],[16.3565135,48.204349500000006],[16.3565177,48.20437369999999],[16.3565268,48.2044047],[16.3565404,48.2044324]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Breite Gasse"}},{"type":"Feature","id":"335975303","geometry":{"type":"LineString","coordinates":[[16.3572088,48.2031829],[16.357235,48.203187299999996],[16.3573718,48.20321039999999]]},"properties":{"bicycle":"dismount","highway":"footway","level":"0","name":"Streetartpassage","website":"www.betonblumen.org"}},{"type":"Feature","id":"9802562","geometry":{"type":"LineString","coordinates":[[16.3570934,48.20295329999999],[16.3570949,48.203011000000004],[16.3570845,48.20305969999998],[16.3570606,48.203103500000026],[16.3570351,48.203149999999994],[16.3569624,48.20329910000004],[16.3565171,48.204319699999985]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Breite Gasse"}},{"type":"Feature","id":"28786379","geometry":{"type":"LineString","coordinates":[[16.3571819,48.203177400000015],[16.3572088,48.2031829]]},"properties":{"highway":"footway","name":"Streetartpassage","tunnel":"building_passage","website":"www.betonblumen.org"}},{"type":"Feature","id":"424683976","geometry":{"type":"LineString","coordinates":[[16.357235,48.203187299999996],[16.3572421,48.20317560000001],[16.3572133,48.203172600000016]]},"properties":{"bicycle":"dismount","highway":"footway","name":"Streetartpassage","website":"www.betonblumen.org"}},{"type":"Feature","id":"424683975","geometry":{"type":"LineString","coordinates":[[16.3572133,48.203172600000016],[16.3571513,48.20316059999999],[16.3571264,48.203167199999996]]},"properties":{"bicycle":"dismount","highway":"footway","name":"Streetartpassage","tunnel":"building_passage","website":"www.betonblumen.org","wheelchair":"yes"}},{"type":"Feature","id":"335975301","geometry":{"type":"LineString","coordinates":[[16.3571264,48.203167199999996],[16.3571819,48.203177400000015]]},"properties":{"highway":"steps","incline":"up","name":"Streetartpassage","tunnel":"building_passage"}},{"type":"Feature","id":"4997673","geometry":{"type":"LineString","coordinates":[[16.3544088,48.205410900000004],[16.3544931,48.204960200000016],[16.3546079,48.20441389999999],[16.3546449,48.204396299999985],[16.3549141,48.204406000000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Faßziehergasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"84285766","geometry":{"type":"LineString","coordinates":[[16.3549364,48.20415109999996],[16.3549141,48.204406000000006]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Gardegasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"28159218","geometry":{"type":"LineString","coordinates":[[16.3554333,48.20512089999997],[16.3557544,48.20429830000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kirchberggasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"111604772","geometry":{"type":"LineString","coordinates":[[16.3540923,48.20410240000004],[16.3544474,48.20412189999999],[16.3549364,48.20415109999996],[16.3550079,48.20416229999998],[16.3554451,48.204245000000014],[16.3557544,48.20429830000003],[16.3563727,48.204403799999994],[16.3565237,48.2044296],[16.3565404,48.2044324]]},"properties":{"busway":"lane","cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4997664","geometry":{"type":"LineString","coordinates":[[16.3543577,48.202910599999996],[16.3547545,48.202960899999965],[16.3547497,48.20297980000001],[16.3547214,48.2030925],[16.3545602,48.203670200000005],[16.3545384,48.203765000000004],[16.3544474,48.20412189999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Schrankgasse","surface":"cobblestone"}},{"type":"Feature","id":"28798324","geometry":{"type":"LineString","coordinates":[[16.3514539,48.20422800000003],[16.3515194,48.204303400000015],[16.3515334,48.20489739999999],[16.3515443,48.20521450000001],[16.3515375,48.205275900000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Kirchengasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"4997704","geometry":{"type":"LineString","coordinates":[[16.3527249,48.20423059999999],[16.3527936,48.2049088],[16.3526808,48.20496840000001],[16.3525921,48.20499190000004],[16.3525285,48.2050031],[16.3525189,48.20509560000002],[16.3527099,48.205335899999994]]},"properties":{"highway":"pedestrian","lit":"yes","name":"St.-Ulrichs-Platz","sidewalk":"no","surface":"cobblestone"}},{"type":"Feature","id":"28676244","geometry":{"type":"LineString","coordinates":[[16.3523593,48.20423709999997],[16.3523702,48.2048863],[16.3525285,48.2050031]]},"properties":{"highway":"pedestrian","lit":"yes","name":"St.-Ulrichs-Platz","sidewalk":"no","surface":"cobblestone"}},{"type":"Feature","id":"29048686","geometry":{"type":"LineString","coordinates":[[16.3514539,48.20422800000003],[16.3515833,48.204230800000005],[16.3523593,48.20423709999997],[16.3527249,48.20423059999999],[16.3532382,48.2041921],[16.3537421,48.20413500000001],[16.3539678,48.20410589999997],[16.3539717,48.2041054],[16.3540923,48.20410240000004]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5010775","geometry":{"type":"LineString","coordinates":[[16.3506686,48.22082990000004],[16.352355,48.2204801],[16.3524752,48.2204552]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gießergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"50928132","geometry":{"type":"LineString","coordinates":[[16.3492661,48.219646299999994],[16.3492674,48.21968319999999],[16.3492712,48.21974320000001],[16.3492729,48.219775200000015],[16.3492464,48.219840799999986],[16.3492216,48.21990579999999],[16.349221,48.21995839999997],[16.3492491,48.22002029999999],[16.3492701,48.2200641],[16.3492776,48.220124099999964],[16.3492167,48.220274700000004]]},"properties":{"highway":"footway","name":"Gartenhof"}},{"type":"Feature","id":"205686980","geometry":{"type":"LineString","coordinates":[[16.3485361,48.219681699999995],[16.3485374,48.220978900000006]]},"properties":{"highway":"service","maxspeed":"30","name":"An der Ostseite","source:maxspeed":"AT:zone:30","vehicle":"no"}},{"type":"Feature","id":"48523818","geometry":{"type":"LineString","coordinates":[[16.3451883,48.220323699999994],[16.344174,48.22031559999999]]},"properties":{"fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"406","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"48523817","geometry":{"type":"LineString","coordinates":[[16.3451861,48.220461400000005],[16.3442377,48.220449900000006]]},"properties":{"amenity":"parking_space","fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"407","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"43483890","geometry":{"type":"LineString","coordinates":[[16.345195,48.2199104],[16.3441443,48.2199138],[16.3439827,48.21991270000001]]},"properties":{"fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"403","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"43483891","geometry":{"type":"LineString","coordinates":[[16.3451928,48.22004820000001],[16.3447319,48.22004770000001],[16.3442036,48.22004720000001],[16.3440464,48.220046999999994]]},"properties":{"fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"404","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"43483892","geometry":{"type":"LineString","coordinates":[[16.3451905,48.22018589999999],[16.3447318,48.220183899999995],[16.3442054,48.22018170000001],[16.3441102,48.22018130000001]]},"properties":{"fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"405","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"8895635","geometry":{"type":"LineString","coordinates":[[16.3435886,48.21957910000003],[16.3440178,48.220456299999995],[16.3441899,48.22063880000002]]},"properties":{"highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Westring","oneway":"yes","source:maxspeed":"AT:zone:30","taxi":"yes"}},{"type":"Feature","id":"24256158","geometry":{"type":"LineString","coordinates":[[16.3441899,48.22063880000002],[16.3442865,48.220651299999986],[16.3443699,48.22060790000003],[16.3443626,48.220236],[16.3443526,48.219733399999996],[16.3443496,48.219580199999996]]},"properties":{"highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Haupteingang","oneway":"yes","source:maxspeed":"AT:zone:30","taxi":"yes"}},{"type":"Feature","id":"43483888","geometry":{"type":"LineString","coordinates":[[16.3451995,48.21963499999998],[16.3438551,48.219644099999954]]},"properties":{"fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"401","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"43483889","geometry":{"type":"LineString","coordinates":[[16.3451972,48.219772699999965],[16.3441461,48.219779099999954],[16.3439189,48.219778399999996]]},"properties":{"fixme":"yes","highway":"service","layer":"-1","maxspeed":"5","name":"402","oneway":"yes","service":"parking_aisle","tunnel":"yes"}},{"type":"Feature","id":"197334644","geometry":{"type":"LineString","coordinates":[[16.3492014,48.218318900000014],[16.3492066,48.2185939],[16.349629,48.21859319999999],[16.3496733,48.21859310000002],[16.3497849,48.21875440000002],[16.3498428,48.218838000000005],[16.3498326,48.21899700000003]]},"properties":{"highway":"service","maxspeed":"30","name":"Dr. Siebensohn-Weg","source:maxspeed":"AT:zone:30","surface":"asphalt","vehicle":"no"}},{"type":"Feature","id":"39979418","geometry":{"type":"LineString","coordinates":[[16.3495172,48.21899350000001],[16.3496202,48.219208699999996],[16.3498643,48.2197185],[16.3501261,48.220317300000005]]},"properties":{"highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Ostring"}},{"type":"Feature","id":"9655994","geometry":{"type":"LineString","coordinates":[[16.3514857,48.2178959],[16.351368,48.21790140000002],[16.3510306,48.21790519999999],[16.3509198,48.217894],[16.3508091,48.2178552],[16.3502899,48.2174708],[16.3499805,48.21748450000001]]},"properties":{"highway":"residential","is_in":"Austria,Vienna,Wien","maxspeed":"30","name":"Nadlergasse","oneway":"yes"}},{"type":"Feature","id":"205668861","geometry":{"type":"LineString","coordinates":[[16.3473947,48.219264099999975],[16.3473962,48.21957549999999]]},"properties":{"highway":"footway","name":"Prof. Deutsch Weg"}},{"type":"Feature","id":"24256163","geometry":{"type":"LineString","coordinates":[[16.3465222,48.21953740000001],[16.346578,48.21957789999999],[16.3471181,48.2195763],[16.3473962,48.21957549999999],[16.3476101,48.21957609999998],[16.3476122,48.21962099999999]]},"properties":{"highway":"service","maxspeed":"30","name":"Südring","source:maxspeed":"AT:zone:30","vehicle":"no"}},{"type":"Feature","id":"205668860","geometry":{"type":"LineString","coordinates":[[16.3473975,48.2189582],[16.3468453,48.218954199999985]]},"properties":{"highway":"service","maxspeed":"30","name":"Ladedock Südgarten"}},{"type":"Feature","id":"205686974","geometry":{"type":"LineString","coordinates":[[16.3481476,48.21968229999999],[16.3481488,48.219550199999986],[16.348149,48.21952350000001],[16.348149,48.21911750000001],[16.3481524,48.2189846]]},"properties":{"highway":"service","maxspeed":"30","name":"Lazarettgassenweg","source:maxspeed":"AT:zone:30","vehicle":"no"}},{"type":"Feature","id":"23028165","geometry":{"type":"LineString","coordinates":[[16.3481524,48.2189846],[16.3495172,48.21899350000001]]},"properties":{"highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Ostring"}},{"type":"Feature","id":"91338377","geometry":{"type":"LineString","coordinates":[[16.3481583,48.21838249999999],[16.3479547,48.2183852],[16.3474055,48.21839080000001],[16.3471861,48.2183172],[16.3469561,48.218318900000014],[16.3466434,48.218321299999985]]},"properties":{"highway":"service","maxspeed":"30","name":"Schulbezirk"}},{"type":"Feature","id":"47214336","geometry":{"type":"LineString","coordinates":[[16.3492014,48.218318900000014],[16.3481589,48.218321299999985]]},"properties":{"highway":"service","maxspeed":"30","name":"Wohnbezirk","surface":"asphalt"}},{"type":"Feature","id":"25099895","geometry":{"type":"LineString","coordinates":[[16.3473948,48.219149000000044],[16.3473975,48.2189582],[16.3474055,48.21839080000001]]},"properties":{"highway":"service","maxspeed":"30","name":"Prof. Deutsch Weg"}},{"type":"Feature","id":"205686976","geometry":{"type":"LineString","coordinates":[[16.3454009,48.21957109999997],[16.3455131,48.21957019999999],[16.3456463,48.21955099999997],[16.3457362,48.219538],[16.3463254,48.219539999999995],[16.3465222,48.21953740000001]]},"properties":{"highway":"service","maxspeed":"30","name":"Südring","source:maxspeed":"AT:zone:30","vehicle":"no"}},{"type":"Feature","id":"8895616","geometry":{"type":"LineString","coordinates":[[16.3443496,48.219580199999996],[16.3454009,48.21957109999997]]},"properties":{"highway":"service","maxspeed":"30","motor_vehicle":"no","name":"Südgartenweg","source:maxspeed":"AT:zone:30","taxi":"yes"}},{"type":"Feature","id":"24423432","geometry":{"type":"LineString","coordinates":[[16.3461221,48.219748100000004],[16.3458544,48.219360300000005]]},"properties":{"bridge":"yes","highway":"footway","layer":"1","name":"Arnold-Pollak-Brücke"}},{"type":"Feature","id":"4997431","geometry":{"type":"LineString","coordinates":[[16.3445798,48.21806650000002],[16.3447083,48.21804399999996],[16.3454392,48.2179161],[16.3462271,48.217779500000034],[16.3462268,48.21747110000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Borschkegasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"84346490","geometry":{"type":"LineString","coordinates":[[16.3462271,48.217779500000034],[16.3462301,48.21809350000001]]},"properties":{"highway":"pedestrian","name":"Walter-Beck-Platz"}},{"type":"Feature","id":"8678425","geometry":{"type":"LineString","coordinates":[[16.3481679,48.21740429999997],[16.3481671,48.21750209999999],[16.3481666,48.2175398],[16.3481658,48.21762079999999],[16.3481629,48.217910500000016],[16.3481589,48.218321299999985],[16.3481583,48.21838249999999],[16.3481555,48.21866929999999],[16.3481524,48.2189846]]},"properties":{"highway":"service","maxspeed":"30","name":"Lazarettgassenweg"}},{"type":"Feature","id":"84346499","geometry":{"type":"LineString","coordinates":[[16.3502616,48.21723739999999],[16.3512494,48.21716630000003],[16.3513717,48.217156800000026]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria,Vienna,Wien","maxspeed":"30","name":"Rummelhardtgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4997425","geometry":{"type":"LineString","coordinates":[[16.3499515,48.2172592],[16.3502616,48.21723739999999]]},"properties":{"highway":"residential","is_in":"Austria,Vienna,Wien","maxspeed":"30","name":"Rummelhardtgasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4997415","geometry":{"type":"LineString","coordinates":[[16.3498011,48.21773089999999],[16.3499805,48.21748450000001],[16.3499664,48.21737519999999],[16.3499515,48.2172592]]},"properties":{"highway":"residential","maxspeed":"30","name":"Höfergasse","source":"yahoo"}},{"type":"Feature","id":"23120132","geometry":{"type":"LineString","coordinates":[[16.3499515,48.2172592],[16.3499422,48.21720349999998],[16.3497361,48.2159657]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Höfergasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4997413","geometry":{"type":"LineString","coordinates":[[16.3462123,48.216857000000005],[16.3454621,48.21685740000001]]},"properties":{"highway":"residential","is_in":"Austria,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Gilgegasse","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583856","geometry":{"type":"LineString","coordinates":[[16.3516278,48.21889010000001],[16.3515083,48.21880540000001],[16.3514166,48.21874600000001],[16.3510422,48.218503699999985],[16.3506642,48.218209],[16.3502286,48.217939900000005],[16.3498011,48.21773089999999],[16.3494019,48.217648999999994],[16.3482657,48.2174239],[16.3481679,48.21740429999997],[16.3480248,48.21738400000001],[16.3474156,48.2173756],[16.3471385,48.21739360000001],[16.3468679,48.21741109999999],[16.3462268,48.21747110000001]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lazarettgasse"}},{"type":"Feature","id":"9656015","geometry":{"type":"LineString","coordinates":[[16.3454392,48.2179161],[16.3454627,48.21716549999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Brünnlbadgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"23120135","geometry":{"type":"LineString","coordinates":[[16.3450755,48.216370600000005],[16.3447897,48.21571130000001]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Mauthnergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4997410","geometry":{"type":"LineString","coordinates":[[16.3454627,48.21716549999999],[16.3454611,48.217089199999975],[16.3454609,48.21701250000001],[16.3454621,48.21685740000001],[16.3454611,48.21645029999996],[16.3454181,48.21638919999998]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Brünnlbadgasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"243315939","geometry":{"type":"LineString","coordinates":[[16.3511727,48.21581499999999],[16.3510587,48.21582809999998],[16.3497361,48.2159657],[16.3489075,48.21603999999999],[16.348099,48.21611530000004],[16.3457934,48.21635530000003],[16.345699,48.21636649999999],[16.3454181,48.21638919999998],[16.3450755,48.216370600000005]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Mariannengasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"23199403","geometry":{"type":"LineString","coordinates":[[16.3462268,48.21747110000001],[16.3454627,48.21716549999999],[16.3446785,48.216858599999995],[16.3445443,48.216820799999994]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"30","name":"Lazarettgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"15792888","geometry":{"type":"LineString","coordinates":[[16.3445443,48.216820799999994],[16.3445045,48.2169169],[16.3444914,48.21701269999997],[16.3445711,48.218023500000015],[16.3445798,48.21806650000002]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Meynertgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237844082","geometry":{"type":"LineString","coordinates":[[16.3461522,48.215465300000005],[16.3460621,48.21546940000002],[16.3458909,48.21547349999997],[16.3457204,48.215490999999986]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","turn:lanes":"left|through"}},{"type":"Feature","id":"23481795","geometry":{"type":"LineString","coordinates":[[16.3457934,48.21635530000003],[16.345772,48.21591050000001],[16.3457269,48.215543999999994],[16.3457204,48.215490999999986]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Brünnlbadgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"207353691","geometry":{"type":"LineString","coordinates":[[16.3440562,48.21690480000001],[16.3438086,48.216954800000025],[16.3436531,48.21698509999999]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"298330811","geometry":{"type":"LineString","coordinates":[[16.3437354,48.21689979999999],[16.3438585,48.216906600000016],[16.3440562,48.21690480000001]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"200671386","geometry":{"type":"LineString","coordinates":[[16.3444446,48.216499],[16.3441481,48.21655770000001]]},"properties":{"highway":"service","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Mariannengasse","postal_code":"1090"}},{"type":"Feature","id":"27497479","geometry":{"type":"LineString","coordinates":[[16.3437153,48.21667780000004],[16.3437101,48.216781200000014],[16.3437416,48.21685350000001],[16.3437354,48.21689979999999],[16.3436531,48.21698509999999]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583625","geometry":{"type":"LineString","coordinates":[[16.3445443,48.216820799999994],[16.3444029,48.21682329999999],[16.3440562,48.21690480000001]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237839810","geometry":{"type":"LineString","coordinates":[[16.3457204,48.215490999999986],[16.3456233,48.21550640000001],[16.3452099,48.21559970000001],[16.3447897,48.21571130000001],[16.3439738,48.215922500000005],[16.3438622,48.21597230000003],[16.3438057,48.216010900000015],[16.3437709,48.216055900000015]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"30","name":"Kinderspitalgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237194286","geometry":{"type":"LineString","coordinates":[[16.3437709,48.216055900000015],[16.3437536,48.21610960000001],[16.3437153,48.21667780000004]]},"properties":{"cycleway":"opposite","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"30","name":"Hebragasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26738742","geometry":{"type":"LineString","coordinates":[[16.3450755,48.216370600000005],[16.3444446,48.216499]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Mariannengasse","postal_code":"1090","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"38660527","geometry":{"type":"LineString","coordinates":[[16.3445443,48.216820799999994],[16.3445465,48.216737499999994],[16.3444641,48.216541800000016],[16.3444446,48.216499]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"205746178","geometry":{"type":"LineString","coordinates":[[16.3432387,48.220750100000004],[16.3436103,48.220680800000025],[16.3437939,48.22061439999996],[16.3440363,48.22052690000001],[16.3444834,48.220440499999995]]},"properties":{"bridge":"yes","covered":"yes","foot":"yes","highway":"footway","layer":"1","name":"Michelbeuernsteg"}},{"type":"Feature","id":"24412290","geometry":{"type":"LineString","coordinates":[[16.342988,48.21855120000001],[16.3433982,48.21883679999999],[16.3435858,48.219317399999994]]},"properties":{"bicycle":"no","foot":"no","highway":"service","maxspeed":"5","name":"Tiefgarage","oneway":"yes"}},{"type":"Feature","id":"37519303","geometry":{"type":"LineString","coordinates":[[16.3421478,48.218504300000006],[16.3423186,48.218477199999995],[16.3427828,48.21840340000003],[16.3429038,48.2183536]]},"properties":{"highway":"residential","maxspeed":"50","name":"Währinger Gürtel","oneway":"yes"}},{"type":"Feature","id":"6122618","geometry":{"type":"LineString","coordinates":[[16.3427415,48.22001160000002],[16.3415148,48.22023630000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schumanngasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"471274566","geometry":{"type":"LineString","coordinates":[[16.3415148,48.22023630000001],[16.340405,48.220548699999995]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Schumanngasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4996507","geometry":{"type":"LineString","coordinates":[[16.3417881,48.2206918],[16.3421381,48.22062729999999],[16.3425194,48.220558400000016],[16.3428552,48.22049709999999],[16.3429362,48.220482300000015]]},"properties":{"highway":"pedestrian","name":"Klettenhofergasse"}},{"type":"Feature","id":"24412287","geometry":{"type":"LineString","coordinates":[[16.343526,48.22185849999997],[16.3434955,48.22180320000001],[16.3434288,48.22167279999999],[16.3432345,48.2212031],[16.3431569,48.22101559999999],[16.3429362,48.220482300000015],[16.3427415,48.22001160000002],[16.3421658,48.21854590000001],[16.3421478,48.218504300000006]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxheight":"default","maxspeed":"50","name":"Währinger Gürtel","oneway":"yes","ref":"B221","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"52296261","geometry":{"type":"LineString","coordinates":[[16.3429038,48.2183536],[16.3427624,48.2183617],[16.3424859,48.2184043],[16.3423034,48.21843239999998],[16.3422316,48.218443500000035],[16.3421284,48.2184594]]},"properties":{"highway":"residential","maxspeed":"50","name":"Währinger Gürtel","oneway":"yes"}},{"type":"Feature","id":"324549970","geometry":{"type":"LineString","coordinates":[[16.3420252,48.21851029999996],[16.3421284,48.2184594]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Leo-Slezak-Gasse","oneway":"yes"}},{"type":"Feature","id":"210597181","geometry":{"type":"LineString","coordinates":[[16.3397278,48.21894549999999],[16.3402148,48.218852],[16.3402954,48.218820100000016],[16.3409226,48.21870179999999],[16.3420252,48.21851029999996],[16.3421478,48.218504300000006]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Leo-Slezak-Gasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"23711934","geometry":{"type":"LineString","coordinates":[[16.3384073,48.21991510000001],[16.3380305,48.21937729999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Syringgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"4996484","geometry":{"type":"LineString","coordinates":[[16.3399699,48.219589499999955],[16.3397706,48.219629699999956],[16.3397127,48.219643899999994],[16.339645,48.2196601]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Blumengasse","oneway":"yes","sidewalk":"both","source":"wien.at","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"53555533","geometry":{"type":"LineString","coordinates":[[16.339645,48.2196601],[16.3384073,48.21991510000001],[16.336262,48.22035919999999]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"residential","lit":"yes","maxspeed":"30","name":"Blumengasse","oneway":"yes","sidewalk":"both","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"33184733","geometry":{"type":"LineString","coordinates":[[16.3397755,48.2207205],[16.3397475,48.22067700000002],[16.339602,48.22045080000001],[16.3401289,48.2202896],[16.3401536,48.22028209999999],[16.340231,48.22025839999998]]},"properties":{"highway":"service","name":"Lutherhof","surface":"gravel","vehicle":"private"}},{"type":"Feature","id":"171978231","geometry":{"type":"LineString","coordinates":[[16.336262,48.22035919999999],[16.3366029,48.220748499999985]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hildebrandgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"4996525","geometry":{"type":"LineString","coordinates":[[16.3395494,48.22169220000001],[16.3390404,48.220916200000005],[16.3384073,48.21991510000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dempschergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28766892","geometry":{"type":"LineString","coordinates":[[16.3351935,48.21927980000001],[16.3349769,48.21866270000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Jörgerbadgasse","noexit":"yes","surface":"cobblestone"}},{"type":"Feature","id":"37519370","geometry":{"type":"LineString","coordinates":[[16.3378102,48.21873310000001],[16.3380305,48.21937729999996]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Syringgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"23711937","geometry":{"type":"LineString","coordinates":[[16.3393624,48.219039399999986],[16.3397278,48.21894549999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Leo-Slezak-Gasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both"}},{"type":"Feature","id":"28079386","geometry":{"type":"LineString","coordinates":[[16.3380305,48.21937729999996],[16.3386613,48.2192173],[16.3393624,48.219039399999986]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Beheimgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"172222299","geometry":{"type":"LineString","coordinates":[[16.3404235,48.217507900000015],[16.3404471,48.21756430000002],[16.3409226,48.21870179999999],[16.3415148,48.22023630000001],[16.3417881,48.2206918],[16.3420432,48.221120299999995],[16.3420779,48.22117860000003],[16.3426137,48.22203670000002],[16.3426438,48.222128399999974]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Theresiengasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"27323306","geometry":{"type":"LineString","coordinates":[[16.3445798,48.21806650000002],[16.3437258,48.21821269999998],[16.343066,48.2183258],[16.3429038,48.2183536]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Borschkegasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"8096263","geometry":{"type":"LineString","coordinates":[[16.3416682,48.217337600000036],[16.3415519,48.217353599999996],[16.3404235,48.217507900000015]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Jörgerstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"324549972","geometry":{"type":"LineString","coordinates":[[16.3421478,48.218504300000006],[16.3421284,48.2184594],[16.3421083,48.21841290000003],[16.3417073,48.21742930000002],[16.3416951,48.217399400000005],[16.3416682,48.217337600000036]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Währinger Gürtel","oneway":"yes","ref":"B221","surface":"paved"}},{"type":"Feature","id":"218017203","geometry":{"type":"LineString","coordinates":[[16.3419537,48.21729529999999],[16.3419906,48.217354400000005],[16.3421182,48.217569499999996],[16.3422802,48.21789530000001],[16.3424762,48.218380800000034],[16.3424859,48.2184043]]},"properties":{"highway":"service","lit":"yes","maxspeed":"50","name":"Währinger Gürtel","oneway":"yes"}},{"type":"Feature","id":"277657664","geometry":{"type":"LineString","coordinates":[[16.3392305,48.21766410000001],[16.3388396,48.21768639999999]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Jörgerstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"11381454","geometry":{"type":"LineString","coordinates":[[16.3392305,48.21766410000001],[16.3392544,48.21772560000002],[16.3397278,48.21894549999999],[16.3399083,48.2194226],[16.3399699,48.219589499999955],[16.3400683,48.219852599999996],[16.340231,48.22025839999998],[16.3403674,48.220485999999994],[16.340405,48.220548699999995],[16.3404401,48.22059759999999],[16.340917,48.22126109999999],[16.3409478,48.22130390000001],[16.340989,48.221362],[16.3415988,48.22222160000001],[16.3416439,48.222285200000016]]},"properties":{"cycleway":"no","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Martinstraße","oneway":"no","sidewalk":"both","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"171978982","geometry":{"type":"LineString","coordinates":[[16.339645,48.2196601],[16.3395695,48.219481599999995],[16.3393624,48.219039399999986],[16.3390247,48.21827400000004],[16.3388538,48.21773160000001],[16.3388396,48.21768639999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Ranftlgasse","oneway":"yes","oneway:bicycle":"yes","sidewalk":"both","source":"wien.at","surface":"asphalt"}},{"type":"Feature","id":"384794715","geometry":{"type":"LineString","coordinates":[[16.3404235,48.217507900000015],[16.3393231,48.21765199999999],[16.3392305,48.21766410000001]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Jörgerstraße","oneway":"yes","surface":"asphalt","turn:lanes":"through|right"}},{"type":"Feature","id":"53378164","geometry":{"type":"LineString","coordinates":[[16.3353567,48.217888199999976],[16.3353773,48.21794439999999],[16.3355276,48.2183546],[16.3355858,48.2185135],[16.3358173,48.21914530000004],[16.336055,48.2197941],[16.336262,48.22035919999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bergsteiggasse","oneway":"yes"}},{"type":"Feature","id":"146985781","geometry":{"type":"LineString","coordinates":[[16.3388396,48.21768639999999],[16.3385519,48.21771029999999],[16.3382145,48.217746500000004],[16.3379315,48.217755899999986],[16.3375506,48.21769119999996],[16.3373825,48.21766310000001],[16.3370054,48.21761009999997],[16.3369154,48.21762050000001],[16.3354273,48.2178758],[16.3353567,48.217888199999976]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Jörgerstraße","oneway":"yes"}},{"type":"Feature","id":"23711936","geometry":{"type":"LineString","coordinates":[[16.3375506,48.21769119999996],[16.3375621,48.2177446],[16.3376885,48.21826849999999],[16.3377361,48.218450099999984],[16.3378102,48.21873310000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Syringgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"210597317","geometry":{"type":"LineString","coordinates":[[16.3349268,48.2174258],[16.3349569,48.21749679999999],[16.3352875,48.2178031],[16.3352887,48.21780460000002],[16.3353567,48.217888199999976]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bergsteiggasse","oneway":"yes","source:maxspeed":"sign"}},{"type":"Feature","id":"224762051","geometry":{"type":"LineString","coordinates":[[16.343154,48.216954499999986],[16.343467,48.21689900000001],[16.3437354,48.21689979999999]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237505066","geometry":{"type":"LineString","coordinates":[[16.3436531,48.21698509999999],[16.3432089,48.21707539999997]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"138562516","geometry":{"type":"LineString","coordinates":[[16.3432089,48.21707539999997],[16.3431726,48.216995999999995],[16.343154,48.216954499999986]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermanngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26738659","geometry":{"type":"LineString","coordinates":[[16.3432948,48.217259600000006],[16.3434381,48.21723],[16.3438163,48.21715050000003],[16.3440666,48.2171003],[16.3444391,48.21702350000001],[16.3444914,48.21701269999997]]},"properties":{"highway":"pedestrian","name":"Zimmermannplatz"}},{"type":"Feature","id":"4996487","geometry":{"type":"LineString","coordinates":[[16.3437258,48.21821269999998],[16.3433693,48.217339100000004],[16.3432948,48.217259600000006],[16.3432353,48.217132100000015],[16.3432264,48.217112999999955],[16.3432089,48.21707539999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermanngasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237194279","geometry":{"type":"LineString","coordinates":[[16.3427868,48.21615439999999],[16.3430021,48.21610800000002],[16.3434091,48.21602010000001],[16.3434676,48.21600749999999]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"30","name":"Kinderspitalgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"concrete"}},{"type":"Feature","id":"20440237","geometry":{"type":"LineString","coordinates":[[16.3434676,48.21600749999999],[16.3436069,48.215967500000005],[16.3436743,48.21592670000001],[16.3436858,48.21589800000001],[16.3437057,48.2158197],[16.3437177,48.21561029999998]]},"properties":{"highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"30","name":"Hebragasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"237916536","geometry":{"type":"LineString","coordinates":[[16.3434676,48.21600749999999],[16.3436265,48.216026599999964],[16.3437709,48.216055900000015]]},"properties":{"cycleway":"opposite","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Kinderspitalgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"35383449","geometry":{"type":"LineString","coordinates":[[16.343154,48.216954499999986],[16.3431341,48.216911100000004],[16.3431044,48.21684640000001],[16.3430778,48.2167886],[16.3428644,48.216323399999965],[16.3427868,48.21615439999999]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermanngasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"concrete"}},{"type":"Feature","id":"26738646","geometry":{"type":"LineString","coordinates":[[16.3430778,48.2167886],[16.3436426,48.2166766],[16.3436827,48.216676500000005],[16.3437153,48.21667780000004]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermannplatz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"146985785","geometry":{"type":"LineString","coordinates":[[16.3424207,48.21722879999999],[16.342322,48.21724280000004],[16.3420185,48.21728590000001],[16.3419537,48.21729529999999],[16.3418897,48.21730489999999],[16.3418378,48.21731270000001],[16.3417946,48.217320400000006],[16.3416682,48.217337600000036]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","turn:lanes":"left|through|through"}},{"type":"Feature","id":"23311963","geometry":{"type":"LineString","coordinates":[[16.3424207,48.21722879999999],[16.3424441,48.21728329999999],[16.3424708,48.217335099999985],[16.3429038,48.2183536],[16.342988,48.21855120000001],[16.3433094,48.2193417],[16.3433658,48.2194786],[16.3434154,48.2195988],[16.3437198,48.220254600000004],[16.3439725,48.22059970000004],[16.344293,48.22094680000001],[16.3447075,48.22130279999999],[16.3450598,48.221535899999964],[16.3454278,48.221733700000016],[16.3456406,48.22184960000001],[16.3460994,48.22203600000003],[16.3465761,48.222185999999994],[16.3471133,48.2223309],[16.3477258,48.22249339999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Währinger Gürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"384292261","geometry":{"type":"LineString","coordinates":[[16.3416682,48.217337600000036],[16.3416003,48.217201700000004],[16.3415386,48.21707719999998],[16.3414824,48.216968500000036]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"4","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"26738607","geometry":{"type":"LineString","coordinates":[[16.3432089,48.21707539999997],[16.3425829,48.21719730000001],[16.3425232,48.21720890000003],[16.3424207,48.21722879999999]]},"properties":{"cycleway":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"30","name":"Lazarettgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"378275518","geometry":{"type":"LineString","coordinates":[[16.34195,48.21634259999999],[16.3419993,48.2164344],[16.3422837,48.21695750000001],[16.3423271,48.217044999999985],[16.3423466,48.217081399999984],[16.3423632,48.2171123],[16.3423725,48.217131600000016],[16.3424207,48.21722879999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"4","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","ref":"B221","turn:lanes":"left|through|through|through;right"}},{"type":"Feature","id":"35317166","geometry":{"type":"LineString","coordinates":[[16.34195,48.21634259999999],[16.3427868,48.21615439999999]]},"properties":{"cycleway:left":"opposite_lane","cycleway:right":"lane","highway":"tertiary","lanes":"1","lit":"yes","maxspeed":"30","name":"Kinderspitalgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"224762049","geometry":{"type":"LineString","coordinates":[[16.3423632,48.2171123],[16.3424704,48.21709089999999],[16.343154,48.216954499999986]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"30","name":"Lazarettgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4996478","geometry":{"type":"LineString","coordinates":[[16.3370054,48.21761009999997],[16.3370367,48.21752179999996],[16.337242,48.21711750000003]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Palffygasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"sign"}},{"type":"Feature","id":"384794714","geometry":{"type":"LineString","coordinates":[[16.3408041,48.216596100000004],[16.3410953,48.21653040000001],[16.3412394,48.21649790000001]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:urban","turn:lanes":"through|through|right"}},{"type":"Feature","id":"384292260","geometry":{"type":"LineString","coordinates":[[16.3414824,48.216968500000036],[16.3412881,48.2165928],[16.3412394,48.21649790000001]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"5","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","ref":"B221","turn:lanes":"left|through|through|through|through"}},{"type":"Feature","id":"5010789","geometry":{"type":"LineString","coordinates":[[16.3404235,48.217507900000015],[16.3403824,48.21740220000001],[16.3403731,48.21737630000001],[16.340146,48.216744499999976]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Müglendergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"sign","surface":"asphalt"}},{"type":"Feature","id":"210597285","geometry":{"type":"LineString","coordinates":[[16.3389994,48.2169634],[16.3391893,48.217541799999964],[16.3391976,48.217567],[16.3392305,48.21766410000001]]},"properties":{"highway":"tertiary","is_in":"Wien","lanes":"1","lit":"yes","maxspeed":"30","name":"Veronikagasse","oneway":"yes","sidewalk":"both","source:maxspeed":"sign"}},{"type":"Feature","id":"224715391","geometry":{"type":"LineString","coordinates":[[16.3411778,48.215821000000034],[16.3411845,48.215795000000014],[16.3413389,48.21576240000002],[16.3413772,48.2157838],[16.341628,48.2162495],[16.3416112,48.216274],[16.341508,48.21630099999999],[16.3414728,48.21633409999998],[16.3414743,48.216374900000005],[16.3414927,48.21639880000001],[16.34155,48.21643040000001]]},"properties":{"highway":"service","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"224715392","geometry":{"type":"LineString","coordinates":[[16.341508,48.21630099999999],[16.3414575,48.21629630000001],[16.3414206,48.21626029999999]]},"properties":{"highway":"service","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"376410648","geometry":{"type":"LineString","coordinates":[[16.3413684,48.216472099999976],[16.34155,48.21643040000001],[16.3417638,48.216383500000035],[16.3418205,48.21637100000001],[16.34195,48.21634259999999]]},"properties":{"cycleway:left":"opposite_lane","cycleway:right":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","oneway:bicycle":"no","turn:lanes":"left|through"}},{"type":"Feature","id":"245115220","geometry":{"type":"LineString","coordinates":[[16.3412394,48.21649790000001],[16.3413684,48.216472099999976]]},"properties":{"cycleway:right":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"4996503","geometry":{"type":"LineString","coordinates":[[16.3316878,48.22291569999999],[16.3310124,48.22172420000001],[16.3306752,48.22111380000001],[16.330311,48.220468600000004],[16.3298513,48.21984770000003]]},"properties":{"created_by":"Potlatch 0.10f","highway":"residential","maxspeed":"30","name":"Kastnergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5010790","geometry":{"type":"LineString","coordinates":[[16.3320632,48.21997859999996],[16.3323449,48.220602300000024],[16.3327043,48.2211676],[16.3333166,48.22215449999999],[16.3333519,48.22221150000004],[16.3340208,48.22296890000001],[16.3347675,48.223805200000044]]},"properties":{"highway":"residential","maxspeed":"30","name":"Weidmanngasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"37519307","geometry":{"type":"LineString","coordinates":[[16.3289414,48.220138899999995],[16.3293648,48.22079600000001],[16.329384,48.22088670000002],[16.3297548,48.22143030000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Lacknergasse","oneway":"yes"}},{"type":"Feature","id":"37519305","geometry":{"type":"LineString","coordinates":[[16.3306752,48.22111380000001],[16.3314843,48.220840200000026],[16.3315553,48.220820599999996],[16.3323449,48.220602300000024],[16.3331256,48.220390399999985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Beheimgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"53556204","geometry":{"type":"LineString","coordinates":[[16.3281299,48.22041799999997],[16.3285369,48.22106919999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rokitanskygasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"30190610","geometry":{"type":"LineString","coordinates":[[16.336262,48.22035919999999],[16.3349181,48.220639500000004],[16.3341114,48.2207966]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blumengasse","oneway":"yes"}},{"type":"Feature","id":"227970769","geometry":{"type":"LineString","coordinates":[[16.3331256,48.220390399999985],[16.3344245,48.2201278],[16.336055,48.2197941],[16.3380305,48.21937729999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Beheimgasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"11384861","geometry":{"type":"LineString","coordinates":[[16.3338278,48.224264000000005],[16.3330875,48.22342420000001],[16.3327199,48.22300759999999],[16.3325305,48.22279399999999],[16.332435,48.22268679999999],[16.3323881,48.22263319999999],[16.33235,48.22258360000001],[16.3323322,48.222557300000005],[16.332316,48.22252230000004],[16.3322825,48.22245269999999],[16.332211,48.222312399999964],[16.3320708,48.222027],[16.3318174,48.22151389999999],[16.3317914,48.22146129999996],[16.3317707,48.221419499999996],[16.3314843,48.220840200000026],[16.3311818,48.2202168],[16.3310881,48.2200215],[16.330995,48.219818599999996],[16.330938,48.21964800000001],[16.3308885,48.21947060000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Hormayrgasse"}},{"type":"Feature","id":"227970783","geometry":{"type":"LineString","coordinates":[[16.3329009,48.21974740000002],[16.3320632,48.21997859999996],[16.3311818,48.2202168],[16.3310649,48.22026320000003],[16.330311,48.220468600000004],[16.3293648,48.22079600000001],[16.3285369,48.22106919999999],[16.3276881,48.221348199999966]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pezzlgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"23712060","geometry":{"type":"LineString","coordinates":[[16.3308885,48.21947060000002],[16.3309088,48.2194624],[16.3309345,48.2194571],[16.3309815,48.21944719999999],[16.3326133,48.2191282],[16.3326792,48.21911530000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rötzergasse","source":"yahoo"}},{"type":"Feature","id":"60640443","geometry":{"type":"LineString","coordinates":[[16.327352,48.220685100000026],[16.3273127,48.220616500000006],[16.3267001,48.21954640000001],[16.326678,48.2195217],[16.3266206,48.219457500000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Rosensteingasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"4996482","geometry":{"type":"LineString","coordinates":[[16.327352,48.220685100000026],[16.3280701,48.22044679999999],[16.3281299,48.22041799999997],[16.328213,48.22037810000003],[16.3289414,48.220138899999995],[16.3298513,48.21984770000003],[16.3304671,48.21965319999998],[16.3307837,48.21955199999999],[16.3308116,48.21953869999999],[16.3308361,48.21951640000003],[16.3308885,48.21947060000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rötzergasse"}},{"type":"Feature","id":"505413699","geometry":{"type":"LineString","coordinates":[[16.3224428,48.22108450000002],[16.3228315,48.22094959999998],[16.3233604,48.22075459999999],[16.3236484,48.220643499999994],[16.3241802,48.2204107],[16.3248097,48.22013850000002],[16.3254117,48.21987390000001],[16.3261996,48.21952249999998],[16.3262766,48.21948430000003],[16.3263149,48.21945980000001],[16.3263434,48.21943590000001],[16.3263969,48.219389500000034]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"56455210","geometry":{"type":"LineString","coordinates":[[16.3266206,48.219457500000004],[16.3263485,48.21962300000001],[16.3254745,48.22001560000001],[16.3237251,48.2207717],[16.3229229,48.22108539999999],[16.3224737,48.22125539999999],[16.3222498,48.2212739]]},"properties":{"bicycle":"yes","highway":"service","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","vehicle":"destination"}},{"type":"Feature","id":"223971683","geometry":{"type":"LineString","coordinates":[[16.3264774,48.21933769999998],[16.3264452,48.2193164],[16.3264305,48.219305399999996],[16.3264261,48.21930090000001],[16.3264148,48.2192895],[16.3264025,48.21926869999996],[16.3263892,48.21924179999999],[16.3263729,48.219189099999994]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Rosensteingasse","oneway":"yes"}},{"type":"Feature","id":"505413704","geometry":{"type":"LineString","coordinates":[[16.3263729,48.219189099999994],[16.3263381,48.21906680000001]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Rosensteingasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"56455223","geometry":{"type":"LineString","coordinates":[[16.3224428,48.22108450000002],[16.3225485,48.220977000000005],[16.3233016,48.22069920000001],[16.3241188,48.22034869999999],[16.3253818,48.2198094],[16.3261694,48.219468800000016],[16.3264015,48.21936840000001],[16.3264774,48.21933769999998]]},"properties":{"bicycle":"yes","highway":"service","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","vehicle":"destination"}},{"type":"Feature","id":"5004102","geometry":{"type":"LineString","coordinates":[[16.3266206,48.219457500000004],[16.3265563,48.21940860000001],[16.3264774,48.21933769999998]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Rosensteingasse","oneway":"yes"}},{"type":"Feature","id":"4996501","geometry":{"type":"LineString","coordinates":[[16.3378102,48.21873310000001],[16.3358173,48.21914530000004],[16.3351935,48.21927980000001],[16.3342875,48.219466600000004],[16.3329009,48.21974740000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pezzlgasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29570105","geometry":{"type":"LineString","coordinates":[[16.3326792,48.21911530000003],[16.3327653,48.21909839999998],[16.3340489,48.21884609999998],[16.3342294,48.21881059999998],[16.3342791,48.21879070000003],[16.3342857,48.218744300000026],[16.3341211,48.21824179999999],[16.3341004,48.2181913]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rötzergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"150133452","geometry":{"type":"LineString","coordinates":[[16.3336007,48.2208909],[16.3331256,48.220390399999985],[16.3329009,48.21974740000002],[16.3327015,48.21917879999998],[16.3326792,48.21911530000003],[16.3326568,48.21904670000001],[16.332526,48.21864690000004],[16.3324084,48.218247700000006],[16.3323968,48.2182085],[16.332379,48.2181482]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Kalvarienberggasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"150120123","geometry":{"type":"LineString","coordinates":[[16.332379,48.2181482],[16.3322095,48.21817200000001],[16.331969,48.218207699999994],[16.3317921,48.21821699999998],[16.3316925,48.21821929999999],[16.3312037,48.21822259999999]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Elterleinplatz","oneway":"yes","source":"geoimage.at (high res)"}},{"type":"Feature","id":"442914476","geometry":{"type":"LineString","coordinates":[[16.3312037,48.21822259999999],[16.3310171,48.21820960000002],[16.3307416,48.2181904]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Elterleinplatz","oneway":"yes","source":"geoimage.at (high res)"}},{"type":"Feature","id":"138646486","geometry":{"type":"LineString","coordinates":[[16.3308885,48.21947060000002],[16.3308015,48.2193455],[16.3307902,48.219234900000004],[16.3307879,48.21909700000003],[16.3308082,48.218896899999976],[16.3308274,48.21873640000001],[16.3308967,48.2182947],[16.3308981,48.218284900000015],[16.3308945,48.218274399999984],[16.3308872,48.21826340000004],[16.3308678,48.218241500000005],[16.3308115,48.21821320000001],[16.3307416,48.2181904]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"50","name":"Hormayrgasse","oneway":"yes","source":"geoimage.at (high res)"}},{"type":"Feature","id":"150120133","geometry":{"type":"LineString","coordinates":[[16.3312037,48.21822259999999],[16.3311065,48.218286500000005],[16.3311016,48.218291599999986],[16.3310788,48.21831550000002],[16.3310599,48.21834450000003],[16.3310196,48.2185681],[16.3309752,48.218814700000024],[16.330939,48.21891550000004],[16.3309016,48.21906849999999],[16.3308859,48.219258300000035],[16.3308885,48.21947060000002]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"50","name":"Hormayrgasse","oneway":"yes","source":"geoimage.at (high res)"}},{"type":"Feature","id":"195532942","geometry":{"type":"LineString","coordinates":[[16.3263969,48.219389500000034],[16.326437,48.2193618],[16.3264774,48.21933769999998],[16.3265297,48.21931760000001],[16.3266925,48.21924760000002],[16.3274629,48.21891640000001],[16.3275349,48.21888550000003],[16.3275585,48.21887429999998],[16.327692,48.218813600000004],[16.3281978,48.21863479999999],[16.3282325,48.218626700000016],[16.328265,48.21862229999999],[16.328329,48.21861710000002],[16.3284484,48.21861050000004]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"138646547","geometry":{"type":"LineString","coordinates":[[16.3274882,48.218643799999995],[16.327516,48.21874109999999],[16.3275287,48.21878579999998]]},"properties":{"cycleway":"no","electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"4789272","geometry":{"type":"LineString","coordinates":[[16.3281978,48.21863479999999],[16.3282126,48.21868530000003],[16.3282273,48.218735699999996],[16.3282499,48.21878140000001],[16.3288973,48.22009009999999],[16.3289414,48.220138899999995]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Lacknergasse","oneway":"yes"}},{"type":"Feature","id":"285182494","geometry":{"type":"LineString","coordinates":[[16.3275287,48.21878579999998],[16.3275379,48.218814399999985],[16.3275467,48.21884159999999],[16.3275585,48.21887429999998]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes"}},{"type":"Feature","id":"23711733","geometry":{"type":"LineString","coordinates":[[16.3284484,48.21861050000004],[16.3283521,48.2186705],[16.3283129,48.218696300000005],[16.3282722,48.21871709999999],[16.3282273,48.218735699999996],[16.3279686,48.2188414],[16.3274457,48.219088400000004],[16.3274326,48.21909410000001],[16.3268554,48.21935239999999],[16.3268111,48.21937220000001],[16.3266206,48.219457500000004],[16.3263163,48.219570000000004],[16.3260416,48.21968720000001],[16.3254467,48.21994849999999],[16.3236863,48.22071690000001],[16.3228836,48.22102000000001],[16.3225429,48.2211451],[16.3224711,48.2211748],[16.322387,48.22120960000001],[16.3223097,48.221243500000014],[16.3222498,48.2212739],[16.3221177,48.2213462],[16.3219575,48.221424299999995],[16.32177,48.2214994],[16.3216111,48.22155409999999],[16.3215556,48.2215707],[16.321441,48.221604799999994]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"37421738","geometry":{"type":"LineString","coordinates":[[16.3249453,48.2186883],[16.3261857,48.21853089999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mariengasse","oneway":"yes"}},{"type":"Feature","id":"244147727","geometry":{"type":"LineString","coordinates":[[16.3274136,48.21837020000001],[16.3274297,48.21842910000004],[16.3274882,48.218643799999995]]},"properties":{"cycleway":"no","electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"160894195","geometry":{"type":"LineString","coordinates":[[16.3301389,48.21824290000001],[16.3298255,48.21829829999999],[16.329507,48.218357499999996],[16.3288798,48.21849],[16.3284484,48.21861050000004]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße","source":"yahoo"}},{"type":"Feature","id":"210598154","geometry":{"type":"LineString","coordinates":[[16.3261857,48.21853089999999],[16.3262605,48.218521100000004],[16.327345,48.218379200000015],[16.3274136,48.21837020000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Mariengasse","oneway":"yes","sidewalk":"both","source:maxspeed":"sign"}},{"type":"Feature","id":"141233620","geometry":{"type":"LineString","coordinates":[[16.3307416,48.2181904],[16.3307153,48.2181928],[16.3305541,48.218201300000004],[16.3303846,48.21821380000003],[16.3301389,48.21824290000001]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße"}},{"type":"Feature","id":"150120124","geometry":{"type":"LineString","coordinates":[[16.3307416,48.2181904],[16.3309992,48.21814789999999],[16.33101,48.21814710000001],[16.3316804,48.218098999999995],[16.3321253,48.21805760000004],[16.3321929,48.218051299999985],[16.3323462,48.21803129999998]]},"properties":{"highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Elterleinplatz","oneway":"yes","source":"geoimage.at (high res)"}},{"type":"Feature","id":"211549406","geometry":{"type":"LineString","coordinates":[[16.3315795,48.21775950000003],[16.3316212,48.2177097],[16.3316064,48.217614499999996],[16.3316577,48.21750700000004]]},"properties":{"highway":"footway","name":"Kindermanngasse"}},{"type":"Feature","id":"211549403","geometry":{"type":"LineString","coordinates":[[16.3316212,48.2177097],[16.3317087,48.2177456]]},"properties":{"highway":"footway","name":"Kindermanngasse"}},{"type":"Feature","id":"211549405","geometry":{"type":"LineString","coordinates":[[16.3315916,48.21783210000004],[16.3315795,48.21775950000003]]},"properties":{"highway":"steps","name":"Kindermanngasse"}},{"type":"Feature","id":"211549401","geometry":{"type":"LineString","coordinates":[[16.3317087,48.2177456],[16.331718,48.2178016]]},"properties":{"highway":"steps","name":"Kindermanngasse"}},{"type":"Feature","id":"211549404","geometry":{"type":"LineString","coordinates":[[16.331718,48.2178016],[16.3316386,48.21785059999999]]},"properties":{"highway":"footway","name":"Kindermanngasse"}},{"type":"Feature","id":"249412429","geometry":{"type":"LineString","coordinates":[[16.3316734,48.2180668],[16.3316386,48.21785059999999],[16.3315916,48.21783210000004]]},"properties":{"highway":"footway","name":"Kindermanngasse"}},{"type":"Feature","id":"24341674","geometry":{"type":"LineString","coordinates":[[16.3353567,48.217888199999976],[16.3352632,48.217919199999955],[16.3352407,48.21792669999999],[16.3350057,48.21803489999999],[16.3347704,48.2181253],[16.3346718,48.2181482],[16.3345724,48.218165400000004],[16.3343443,48.218181200000004],[16.3341004,48.2181913],[16.3328375,48.2181453],[16.3325916,48.21813839999999],[16.3325295,48.21813660000004],[16.332379,48.2181482]]},"properties":{"cycleway":"lane","highway":"secondary","history":"Retrieved from v11","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Jörgerstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"211549402","geometry":{"type":"LineString","coordinates":[[16.3316577,48.21750700000004],[16.3315858,48.21710970000001]]},"properties":{"highway":"service","name":"Kindermanngasse","service":"driveway"}},{"type":"Feature","id":"4583411","geometry":{"type":"LineString","coordinates":[[16.3323462,48.21803129999998],[16.332504,48.218003399999986],[16.3328549,48.21789060000003],[16.333229,48.217766299999994],[16.3335084,48.2177222],[16.3343108,48.217601],[16.3344962,48.21757299999999],[16.3348565,48.2174498],[16.3349268,48.2174258],[16.3351931,48.2173152],[16.3354141,48.21720210000001],[16.3356558,48.21711139999999],[16.3359051,48.21705140000003],[16.3360928,48.21702060000001],[16.3362933,48.21700520000002],[16.3364964,48.216996600000016],[16.3367149,48.21701030000003],[16.3369462,48.2170548],[16.337242,48.21711750000003],[16.3375672,48.21715950000001],[16.3377612,48.217167200000006],[16.3379795,48.21714130000001],[16.3382807,48.2170888],[16.3389994,48.2169634],[16.340146,48.216744499999976],[16.3408041,48.216596100000004]]},"properties":{"cycleway":"lane","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"50","name":"Hernalser Hauptstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"175493927","geometry":{"type":"LineString","coordinates":[[16.3316577,48.21750700000004],[16.3317296,48.217536000000024],[16.3322473,48.21746830000001]]},"properties":{"highway":"service","name":"St.-Bartholomäus-Platz","service":"driveway"}},{"type":"Feature","id":"146985784","geometry":{"type":"LineString","coordinates":[[16.3267495,48.215931799999964],[16.3267664,48.215993499999996],[16.3269092,48.2165143],[16.3271733,48.217481599999985],[16.3274136,48.21837020000001]]},"properties":{"cycleway":"no","electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"4996475","geometry":{"type":"LineString","coordinates":[[16.3273106,48.21593279999999],[16.3268193,48.215933800000016]]},"properties":{"foot":"yes","highway":"footway","name":"Mayssengasse"}},{"type":"Feature","id":"11831120","geometry":{"type":"LineString","coordinates":[[16.3273411,48.216507500000006],[16.3281493,48.21650589999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Parhamerplatz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"11830819","geometry":{"type":"LineString","coordinates":[[16.3284484,48.21861050000004],[16.3284346,48.218518200000005],[16.3281418,48.216562899999985],[16.3281493,48.21650589999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Weißgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"210597467","geometry":{"type":"LineString","coordinates":[[16.3269092,48.2165143],[16.3269814,48.21651320000001],[16.3273411,48.216507500000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geblergasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"11830574","geometry":{"type":"LineString","coordinates":[[16.3281961,48.2156368],[16.3290343,48.21562929999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Spitzackergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"31906237","geometry":{"type":"LineString","coordinates":[[16.3281961,48.2156368],[16.3272956,48.215650900000014]]},"properties":{"foot":"yes","highway":"footway","name":"Parhamerplatz"}},{"type":"Feature","id":"5004064","geometry":{"type":"LineString","coordinates":[[16.3272956,48.215650900000014],[16.3273106,48.21593279999999],[16.3273411,48.216507500000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Parhamerplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"11830827","geometry":{"type":"LineString","coordinates":[[16.3281493,48.21650589999999],[16.3281583,48.216437299999996],[16.3281961,48.2156368]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Parhamerplatz","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"488828280","geometry":{"type":"LineString","coordinates":[[16.3300496,48.21567379999996],[16.3299644,48.215710400000006],[16.3299608,48.21574460000002],[16.3299458,48.215927300000004]]},"properties":{"access":"no","highway":"service","motor_vehicle":"designated","name":"Einfahrt Tiefgarage Parhamerplatz","service":"parking_aisle","surface":"asphalt"}},{"type":"Feature","id":"141233628","geometry":{"type":"LineString","coordinates":[[16.3266994,48.215744099999995],[16.3267495,48.215931799999964]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"23487751","geometry":{"type":"LineString","coordinates":[[16.3281493,48.21650589999999],[16.3290586,48.216503700000004],[16.3300259,48.216498],[16.3319361,48.21648959999999],[16.3320677,48.21648099999999],[16.3321823,48.216473500000006],[16.3333852,48.216436200000004],[16.3335148,48.21643040000001],[16.3345693,48.2163472],[16.3355835,48.216264300000006],[16.3372575,48.2161361],[16.3387674,48.21601070000003],[16.3408749,48.21582230000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geblergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"11820124","geometry":{"type":"LineString","coordinates":[[16.3271733,48.217481599999985],[16.3270952,48.21749109999999],[16.3260499,48.2176178],[16.3259382,48.217631400000016]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Lobenhauerngasse","oneway":"yes","sidewalk":"both","source:maxspeed":"sign"}},{"type":"Feature","id":"210598155","geometry":{"type":"LineString","coordinates":[[16.3259382,48.217631400000016],[16.3245964,48.217801899999955],[16.3232337,48.21794750000001],[16.3223438,48.2180592]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lobenhauerngasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"141233627","geometry":{"type":"LineString","coordinates":[[16.3263381,48.21906680000001],[16.3261857,48.21853089999999],[16.3259382,48.217631400000016],[16.3256772,48.21669829999999],[16.3255466,48.2162252],[16.3254907,48.216036299999985],[16.3254797,48.21600180000004]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Rosensteingasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"210597462","geometry":{"type":"LineString","coordinates":[[16.3256772,48.21669829999999],[16.3257616,48.2166857],[16.3268325,48.2165258],[16.3269092,48.2165143]]},"properties":{"highway":"residential","maxspeed":"50","name":"Geblergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"23985123","geometry":{"type":"LineString","coordinates":[[16.3267495,48.215931799999964],[16.3266483,48.215935099999996],[16.3255619,48.21597700000001],[16.3254745,48.215981400000004]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"50","name":"Mayssengasse","oneway":"yes"}},{"type":"Feature","id":"237844086","geometry":{"type":"LineString","coordinates":[[16.3502668,48.21497600000001],[16.3507853,48.214939500000014],[16.3508558,48.2149345],[16.3509751,48.214926399999996],[16.3509955,48.21492570000001]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","surface":"asphalt","turn:lanes":"through|right"}},{"type":"Feature","id":"172550567","geometry":{"type":"LineString","coordinates":[[16.3493913,48.2149613],[16.3494105,48.214985600000006],[16.3494311,48.21501230000001],[16.3494637,48.215040200000004],[16.3494839,48.215046599999994],[16.3495221,48.21505859999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Kochgasse","oneway":"yes"}},{"type":"Feature","id":"20444390","geometry":{"type":"LineString","coordinates":[[16.3493913,48.2149613],[16.3493244,48.2149967],[16.3492104,48.21500470000001],[16.3491415,48.215001200000046],[16.3490047,48.2149747],[16.3486238,48.21485200000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Skodagasse","oneway":"yes"}},{"type":"Feature","id":"8096351","geometry":{"type":"LineString","coordinates":[[16.3482146,48.21404609999999],[16.3494553,48.214084799999995]]},"properties":{"created_by":"Potlatch alpha","cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Haspingergasse","oneway":"yes"}},{"type":"Feature","id":"149641164","geometry":{"type":"LineString","coordinates":[[16.345685,48.215290299999964],[16.3459039,48.21534439999999],[16.3460236,48.2153706],[16.3461416,48.2153768]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"237839814","geometry":{"type":"LineString","coordinates":[[16.3457204,48.215490999999986],[16.345685,48.215290299999964]]},"properties":{"highway":"residential","maxspeed":"30","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"237844088","geometry":{"type":"LineString","coordinates":[[16.3472713,48.215273499999995],[16.3475436,48.2152413],[16.347909,48.215211700000026]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes","turn:lanes":"left|through"}},{"type":"Feature","id":"237844085","geometry":{"type":"LineString","coordinates":[[16.347909,48.215211700000026],[16.3480082,48.21523640000001],[16.348039,48.215260700000016],[16.3480464,48.2152931],[16.348051,48.21534249999999],[16.348099,48.21611530000004],[16.3481408,48.21690830000003],[16.3481639,48.21727899999999],[16.3481679,48.21740429999997]]},"properties":{"highway":"residential","is_in":"Europe,Austria,Vienna,Wien","maxspeed":"30","name":"Pelikangasse","oneway":"yes","place_numbers":"1-18"}},{"type":"Feature","id":"237844079","geometry":{"type":"LineString","coordinates":[[16.3461416,48.2153768],[16.3464264,48.2153557],[16.3469079,48.21531010000001],[16.3472713,48.215273499999995]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"28079922","geometry":{"type":"LineString","coordinates":[[16.345685,48.215290299999964],[16.3456744,48.2152361],[16.3456031,48.21454769999997],[16.3455631,48.21447269999999],[16.3455458,48.214193300000005]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Feldgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"122605517","geometry":{"type":"LineString","coordinates":[[16.3486238,48.21485200000001],[16.3484589,48.2147995],[16.3481738,48.2146941],[16.3480086,48.21457939999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Skodagasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"237844090","geometry":{"type":"LineString","coordinates":[[16.347909,48.215211700000026],[16.3481994,48.215191300000015],[16.3485671,48.21516550000001],[16.3485937,48.21516359999998],[16.349098,48.2151188],[16.3491375,48.21511430000001],[16.3495221,48.21505859999999],[16.3498758,48.215008100000006],[16.3502668,48.21497600000001]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"243583618","geometry":{"type":"LineString","coordinates":[[16.350947,48.21503540000003],[16.350868,48.215040999999985],[16.3506134,48.21506170000001],[16.3501628,48.215084899999994],[16.3495955,48.2151403],[16.3491967,48.2151954],[16.3491623,48.2152002],[16.3486621,48.215249399999976],[16.348578,48.21525460000001],[16.3483891,48.21526620000003],[16.3480464,48.2152931],[16.3473692,48.2153539],[16.3467483,48.21541379999999],[16.3462002,48.21546119999999],[16.3461522,48.215465300000005]]},"properties":{"foot":"use_sidepath","highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"475073387","geometry":{"type":"LineString","coordinates":[[16.3484849,48.213222099999996],[16.3485785,48.21322649999999],[16.3489313,48.213243300000016],[16.3493955,48.21326959999999],[16.3494241,48.213271099999986],[16.3495107,48.2132756]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Laudongasse","source":"yahoo","surface":"concrete"}},{"type":"Feature","id":"475073386","geometry":{"type":"LineString","coordinates":[[16.3495107,48.2132756],[16.349594,48.21327930000001],[16.3509961,48.213346],[16.3510886,48.213350399999996]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Laudongasse","source":"yahoo","surface":"concrete"}},{"type":"Feature","id":"4997670","geometry":{"type":"LineString","coordinates":[[16.3485856,48.21259550000002],[16.3486387,48.21259710000001],[16.3494787,48.2126226],[16.349552,48.212624799999986]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"50","name":"Mölker Gasse","oneway":"yes"}},{"type":"Feature","id":"4997414","geometry":{"type":"LineString","coordinates":[[16.347284,48.213166599999994],[16.347278,48.21323180000002],[16.3471939,48.21415139999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Daungasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"435036266","geometry":{"type":"LineString","coordinates":[[16.3461723,48.213132400000006],[16.3461179,48.21319399999999],[16.3460729,48.213245900000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Skodagasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"211272013","geometry":{"type":"LineString","coordinates":[[16.3459152,48.2130463],[16.3459839,48.21312149999997]]},"properties":{"highway":"residential","maxspeed":"50","name":"Skodagasse","source":"yahoo","surface":"concrete","voltage":"600"}},{"type":"Feature","id":"4997426","geometry":{"type":"LineString","coordinates":[[16.3455458,48.214193300000005],[16.3455683,48.214157099999994],[16.3454776,48.21317049999999],[16.3454729,48.21311879999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Feldgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"8096326","geometry":{"type":"LineString","coordinates":[[16.3459839,48.21312149999997],[16.3460194,48.213171200000005],[16.3460729,48.213245900000004],[16.3463457,48.21362740000001],[16.3464322,48.213712999999984],[16.3465384,48.213783199999995],[16.3467534,48.2139052],[16.3471939,48.21415139999999],[16.3477361,48.2144423],[16.3479213,48.21453550000004],[16.3479496,48.21454969999999],[16.3480086,48.21457939999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Skodagasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"27275492","geometry":{"type":"LineString","coordinates":[[16.3459839,48.21312149999997],[16.3461723,48.213132400000006],[16.3462975,48.21313969999997],[16.3466256,48.21314910000001],[16.3469604,48.21315759999999],[16.347284,48.213166599999994],[16.3475791,48.213177599999995],[16.3478873,48.21319189999994],[16.3483888,48.2132172],[16.3484849,48.213222099999996]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Laudongasse","source":"yahoo","surface":"concrete"}},{"type":"Feature","id":"95406738","geometry":{"type":"LineString","coordinates":[[16.3454729,48.21311879999999],[16.3454211,48.21266270000001],[16.3454121,48.212615],[16.3454011,48.21252399999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Feldgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"211632046","geometry":{"type":"LineString","coordinates":[[16.3454011,48.21252399999997],[16.3454687,48.2125662],[16.3455007,48.2125887],[16.3455181,48.21260100000001],[16.3455562,48.2126293],[16.3455844,48.21265460000001],[16.3456364,48.21270369999999],[16.3457003,48.21277359999999],[16.3457565,48.21284719999997],[16.3458292,48.21294369999998],[16.3458742,48.21299880000001],[16.3459152,48.2130463]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"50","name":"Skodagasse","source:maxspeed":"AT:urban","surface":"concrete"}},{"type":"Feature","id":"4997417","geometry":{"type":"LineString","coordinates":[[16.3495934,48.21184490000002],[16.34959,48.21190939999997],[16.349552,48.212624799999986],[16.3495299,48.21308920000004],[16.3495156,48.21319840000001],[16.3495107,48.2132756],[16.3495094,48.21328700000004],[16.349505,48.21335210000001],[16.3494553,48.214084799999995],[16.3493913,48.2149613]]},"properties":{"highway":"residential","maxspeed":"50","name":"Kochgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"29048688","geometry":{"type":"LineString","coordinates":[[16.3500407,48.21180900000002],[16.3495934,48.21184490000002]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Florianigasse","oneway":"yes"}},{"type":"Feature","id":"4997657","geometry":{"type":"LineString","coordinates":[[16.3518089,48.21058740000001],[16.3503931,48.210584299999994],[16.3503201,48.210584100000034]]},"properties":{"highway":"living_street","name":"Maria-Treu-Gasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"4997701","geometry":{"type":"LineString","coordinates":[[16.3480692,48.21079610000001],[16.3486864,48.21079309999999],[16.3487548,48.21079280000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Löwenburggasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4583660","geometry":{"type":"LineString","coordinates":[[16.3553096,48.21236060000001],[16.3552428,48.212356400000004],[16.3542765,48.2122143],[16.353422,48.212106500000004],[16.3528568,48.21204080000001],[16.3521419,48.21195370000004],[16.351507,48.21187259999999],[16.351432,48.211862999999994],[16.3513393,48.211851300000006],[16.3511391,48.21182619999999],[16.3505171,48.211776800000024],[16.3501904,48.21179620000004],[16.3501728,48.211797700000005],[16.3500407,48.21180900000002]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","maxspeed":"30","name":"Florianigasse","oneway":"yes"}},{"type":"Feature","id":"96173591","geometry":{"type":"LineString","coordinates":[[16.3452813,48.212466800000016],[16.3453019,48.21239650000001],[16.3453111,48.21229439999999]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Skodagasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4997705","geometry":{"type":"LineString","coordinates":[[16.3462709,48.211163699999986],[16.3462887,48.211232499999994],[16.3465335,48.2116934]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Kupkagasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4997428","geometry":{"type":"LineString","coordinates":[[16.3470321,48.21157299999999],[16.3465335,48.2116934],[16.3452354,48.21201740000001],[16.3451626,48.21203560000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Krotenthallergasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"29048689","geometry":{"type":"LineString","coordinates":[[16.3495934,48.21184490000002],[16.3487363,48.21193499999998],[16.3486508,48.21194650000001],[16.3485483,48.211960800000014],[16.3482502,48.21200159999998],[16.3479476,48.2120314],[16.3473442,48.21210099999999],[16.3469506,48.212152300000014],[16.3468637,48.212194899999986],[16.346347,48.21228690000001],[16.3456089,48.212414800000005],[16.3455451,48.212425800000005],[16.3454777,48.2124628],[16.3454306,48.212500500000004],[16.3454011,48.21252399999997]]},"properties":{"highway":"residential","is_in":"Austria,Europe,Vienna,Wien","maxspeed":"30","name":"Florianigasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26125316","geometry":{"type":"LineString","coordinates":[[16.3462709,48.211163699999986],[16.3460026,48.21064710000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","motorcar":"no","name":"Hamerlingplatz","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"4997699","geometry":{"type":"LineString","coordinates":[[16.3471182,48.210916],[16.3463899,48.21108609999999],[16.3463159,48.211122399999965],[16.3462709,48.211163699999986]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Klesheimgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"26125210","geometry":{"type":"LineString","coordinates":[[16.3462709,48.211163699999986],[16.3458997,48.21125760000004],[16.345516,48.21135480000001],[16.3450517,48.211472300000025],[16.3450161,48.21148130000003],[16.3448976,48.211511299999984]]},"properties":{"bicycle":"yes","highway":"pedestrian","motorcar":"no","name":"Hamerlingplatz","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"26125366","geometry":{"type":"LineString","coordinates":[[16.3447904,48.211538399999995],[16.3444332,48.21103440000002]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Hamerlingplatz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"26125289","geometry":{"type":"LineString","coordinates":[[16.3455451,48.212425800000005],[16.3454715,48.2124225],[16.3454224,48.21240180000001],[16.3453874,48.21237000000002],[16.3453111,48.21229439999999],[16.3451626,48.21203560000001],[16.3451015,48.2119457],[16.3450238,48.21187869999997],[16.3447904,48.211538399999995]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Skodagasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"28079923","geometry":{"type":"LineString","coordinates":[[16.344126,48.21191570000002],[16.3446432,48.21216739999997],[16.3448855,48.21228769999999],[16.3451262,48.212396600000005],[16.3452813,48.212466800000016],[16.3454011,48.21252399999997]]},"properties":{"highway":"residential","maxspeed":"50","name":"Florianigasse","source:maxspeed":"AT:urban","surface":"concrete"}},{"type":"Feature","id":"4996506","geometry":{"type":"LineString","coordinates":[[16.3444332,48.21103440000002],[16.3443541,48.21094249999999],[16.3442281,48.21086460000001]]},"properties":{"foot":"use_sidepath","highway":"residential","maxspeed":"30","name":"Skodagasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"367126508","geometry":{"type":"LineString","coordinates":[[16.3443541,48.21094249999999],[16.3442637,48.21092889999997],[16.3441905,48.21092759999999],[16.3441468,48.21093160000001]]},"properties":{"highway":"residential","name":"Josef-Matthias-Hauer-Platz","oneway":"yes"}},{"type":"Feature","id":"12718114","geometry":{"type":"LineString","coordinates":[[16.3440045,48.210982900000005],[16.3440289,48.21096890000004],[16.3440553,48.21095869999999],[16.3441468,48.21093160000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Josef-Matthias-Hauer-Platz","oneway":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"304002815","geometry":{"type":"LineString","coordinates":[[16.3442281,48.21086460000001],[16.3440787,48.21065759999999],[16.3440516,48.2106206],[16.3440363,48.210603899999995]]},"properties":{"cycleway":"opposite_track","highway":"residential","lanes":"2","maxspeed":"30","name":"Josef-Matthias-Hauer-Platz","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4997691","geometry":{"type":"LineString","coordinates":[[16.3445228,48.211012900000014],[16.3446462,48.2109787],[16.3447105,48.21096300000002],[16.3455376,48.2107608],[16.345641,48.21073549999997],[16.3460026,48.21064710000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","motor_vehicle":"designated","motorcar":"no","name":"Hamerlingplatz","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"367126507","geometry":{"type":"LineString","coordinates":[[16.3441468,48.21093160000001],[16.3441936,48.210898499999985],[16.3442281,48.21086460000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Josef-Matthias-Hauer-Platz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"245222094","geometry":{"type":"LineString","coordinates":[[16.3437177,48.21561029999998],[16.3437351,48.2153553],[16.3437435,48.21531590000001],[16.3437615,48.2152749]]},"properties":{"highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"30","name":"Hebragasse","oneway":"yes","source:maxspeed":"AT:zone:30","turn:lanes":"left|right"}},{"type":"Feature","id":"237626855","geometry":{"type":"LineString","coordinates":[[16.3437615,48.2152749],[16.3437811,48.21520240000001]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Alser Straße"}},{"type":"Feature","id":"442914474","geometry":{"type":"LineString","coordinates":[[16.3437811,48.21520240000001],[16.3438767,48.215206800000004],[16.3442351,48.21522350000001],[16.3452835,48.21525919999999],[16.3455803,48.21527800000001],[16.345685,48.215290299999964]]},"properties":{"highway":"secondary","is_in":"Austria,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"15793004","geometry":{"type":"LineString","coordinates":[[16.3427727,48.2152538],[16.3427732,48.21528409999999],[16.3427868,48.21615439999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Zimmermanngasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"26609861","geometry":{"type":"LineString","coordinates":[[16.3438773,48.21383399999999],[16.3441336,48.21383980000002],[16.3441109,48.21417450000001]]},"properties":{"created_by":"Potlatch 0.6c","highway":"residential","maxspeed":"30","name":"Albertplatz","oneway":"yes"}},{"type":"Feature","id":"12717809","geometry":{"type":"LineString","coordinates":[[16.3441109,48.21417450000001],[16.344082,48.21457769999998],[16.3438336,48.21457129999999]]},"properties":{"created_by":"Potlatch 0.6c","highway":"residential","maxspeed":"30","name":"Albertplatz","oneway":"yes"}},{"type":"Feature","id":"20440224","geometry":{"type":"LineString","coordinates":[[16.343854,48.214169200000015],[16.3438336,48.21457129999999],[16.3437887,48.21512500000003],[16.3437813,48.215172999999965],[16.3437811,48.21520240000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Albertgasse","oneway":"yes"}},{"type":"Feature","id":"237626847","geometry":{"type":"LineString","coordinates":[[16.3427655,48.21517079999998],[16.3427693,48.215206499999994],[16.3427719,48.215233100000006],[16.3427727,48.2152538]]},"properties":{"highway":"residential","is_in":"Austria,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Alser Straße"}},{"type":"Feature","id":"237626842","geometry":{"type":"LineString","coordinates":[[16.3437615,48.2152749],[16.3436745,48.21527320000001],[16.3427727,48.2152538],[16.3419324,48.215234200000026],[16.3415203,48.215226],[16.3414652,48.21522490000001],[16.3413557,48.2152227]]},"properties":{"highway":"secondary","is_in":"Austria,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"237626838","geometry":{"type":"LineString","coordinates":[[16.3413063,48.215131499999956],[16.341421,48.21513449999998],[16.3419124,48.21514730000001],[16.3427655,48.21517079999998],[16.3433285,48.2151868],[16.3436258,48.21519699999999],[16.3436809,48.21519889999999],[16.3437811,48.21520240000001]]},"properties":{"highway":"secondary","is_in":"Austria,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"50","name":"Alser Straße","oneway":"yes"}},{"type":"Feature","id":"237626849","geometry":{"type":"LineString","coordinates":[[16.3413557,48.2152227],[16.3411306,48.21521569999996],[16.3408404,48.21520699999999],[16.3407177,48.21520530000004],[16.3405086,48.215182200000015]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"27657701","geometry":{"type":"LineString","coordinates":[[16.3415606,48.21413770000001],[16.3407546,48.2141297]]},"properties":{"created_by":"Potlatch 0.7","highway":"residential","maxspeed":"30","name":"Breitenfelder Gasse","source":"yahoo"}},{"type":"Feature","id":"28080758","geometry":{"type":"LineString","coordinates":[[16.3455458,48.214193300000005],[16.3441109,48.21417450000001],[16.343854,48.214169200000015],[16.3436004,48.21416540000001],[16.3434644,48.21416249999996],[16.3426267,48.21415769999999],[16.3415606,48.21413770000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Breitenfelder Gasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"227698376","geometry":{"type":"LineString","coordinates":[[16.3404639,48.2150877],[16.3406698,48.215114099999994],[16.3407897,48.21511680000003],[16.3410813,48.2151231],[16.3411596,48.215126],[16.3413063,48.215131499999956]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"351329884","geometry":{"type":"LineString","coordinates":[[16.338588,48.215051200000005],[16.3388472,48.215081699999985],[16.3391054,48.21509019999999],[16.3396847,48.21509019999999],[16.3398262,48.21507629999999],[16.3402795,48.2150709],[16.3403395,48.21507700000001],[16.3404639,48.2150877]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße","oneway":"yes"}},{"type":"Feature","id":"23713138","geometry":{"type":"LineString","coordinates":[[16.3385914,48.21510520000001],[16.3386062,48.2151815],[16.3387674,48.21601070000003],[16.3389088,48.216662499999956],[16.3389994,48.2169634]]},"properties":{"highway":"residential","is_in":"Wien","lit":"yes","maxspeed":"30","name":"Veronikagasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"146985783","geometry":{"type":"LineString","coordinates":[[16.3405086,48.215182200000015],[16.3403941,48.21517180000001],[16.340079,48.21515410000001],[16.3389779,48.215137999999996],[16.3388835,48.2151327],[16.338789,48.21512580000001],[16.3386909,48.21511749999999],[16.3385914,48.21510520000001]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße","oneway":"yes"}},{"type":"Feature","id":"147545881","geometry":{"type":"LineString","coordinates":[[16.337242,48.21711750000003],[16.3372635,48.21705560000001],[16.3372575,48.2161361],[16.337142,48.21498],[16.337134,48.214900400000005]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Palffygasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"254723023","geometry":{"type":"LineString","coordinates":[[16.3385914,48.21510520000001],[16.3385012,48.21509259999996],[16.3384104,48.2150776],[16.3382281,48.21504490000001],[16.3380453,48.215015600000044]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße","oneway":"yes"}},{"type":"Feature","id":"254723024","geometry":{"type":"LineString","coordinates":[[16.3380453,48.215015600000044],[16.3382873,48.21500450000002],[16.3385119,48.2150388],[16.338588,48.215051200000005]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße","oneway":"yes"}},{"type":"Feature","id":"171978159","geometry":{"type":"LineString","coordinates":[[16.3385914,48.21510520000001],[16.338588,48.215051200000005]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"residential","is_in":"Wien","lit":"yes","maxspeed":"50","name":"Veronikagasse","surface":"asphalt"}},{"type":"Feature","id":"254723019","geometry":{"type":"LineString","coordinates":[[16.338588,48.215051200000005],[16.3385846,48.2149958],[16.3385269,48.2140665]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Wien","lit":"yes","maxspeed":"30","name":"Veronikagasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4996477","geometry":{"type":"LineString","coordinates":[[16.3385269,48.2140665],[16.3368528,48.2140057]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Payergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29048733","geometry":{"type":"LineString","coordinates":[[16.3385269,48.2140665],[16.339939,48.2141005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Thelemangasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28693078","geometry":{"type":"LineString","coordinates":[[16.3368528,48.2140057],[16.3369828,48.2144193]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Brunnengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"99209608","geometry":{"type":"LineString","coordinates":[[16.339939,48.2141005],[16.3401144,48.214106800000025],[16.3402228,48.21411070000002],[16.340533,48.21412179999999],[16.3406187,48.21412480000001],[16.3407546,48.2141297]]},"properties":{"highway":"residential","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"234873388","geometry":{"type":"LineString","coordinates":[[16.3369828,48.2144193],[16.3371024,48.21480109999999],[16.337134,48.214900400000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Brunnengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8089523","geometry":{"type":"LineString","coordinates":[[16.3427655,48.21517079999998],[16.3427617,48.21515010000002],[16.3426267,48.21415769999999],[16.3424876,48.2131249]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Bennogasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"95406718","geometry":{"type":"LineString","coordinates":[[16.341172,48.21313989999999],[16.341209,48.21323490000003],[16.3415606,48.21413770000001],[16.3418667,48.215023099999996],[16.3419052,48.215128600000014],[16.3419124,48.21514730000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Blindengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26609862","geometry":{"type":"LineString","coordinates":[[16.3438773,48.21383399999999],[16.3436209,48.213830400000006],[16.3436004,48.21416540000001],[16.3435739,48.214560500000005],[16.3438336,48.21457129999999]]},"properties":{"created_by":"Potlatch 0.6c","highway":"residential","maxspeed":"30","name":"Albertplatz","oneway":"yes"}},{"type":"Feature","id":"26609858","geometry":{"type":"LineString","coordinates":[[16.3423787,48.21240879999999],[16.3426793,48.21239640000002],[16.3426508,48.21209809999999],[16.3426452,48.21204]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bennoplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"12717820","geometry":{"type":"LineString","coordinates":[[16.3420307,48.21206319999999],[16.3420674,48.212417000000016],[16.3423133,48.212410500000004],[16.3423787,48.21240879999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bennoplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"28080757","geometry":{"type":"LineString","coordinates":[[16.341172,48.21313989999999],[16.3412733,48.2131387],[16.3424033,48.213125899999994],[16.3424876,48.2131249],[16.3439237,48.2131287],[16.3454729,48.21311879999999],[16.345561,48.21312119999999],[16.3458721,48.2131186],[16.3459839,48.21312149999997]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Laudongasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26609859","geometry":{"type":"LineString","coordinates":[[16.3426452,48.21204],[16.342625,48.211863600000015],[16.3426032,48.21165819999999],[16.3423672,48.21166869999999],[16.3423068,48.21167140000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bennoplatz","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"26609860","geometry":{"type":"LineString","coordinates":[[16.3420307,48.21206319999999],[16.3419802,48.211684899999995],[16.3422439,48.211674000000016],[16.3423068,48.21167140000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bennoplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"96190456","geometry":{"type":"LineString","coordinates":[[16.344126,48.21191570000002],[16.3440888,48.21189509999999],[16.3440655,48.211883],[16.3440455,48.21186919999997],[16.3440268,48.2118538],[16.3440058,48.2118308],[16.3439886,48.21181070000003],[16.3439784,48.21178800000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Albertgasse","source:maxspeed":"AT:zone:30","surface":"cobblestone","voltage":"600"}},{"type":"Feature","id":"28079920","geometry":{"type":"LineString","coordinates":[[16.344126,48.21191570000002],[16.3440021,48.21197240000001],[16.3439955,48.21203729999999],[16.3439237,48.2131287],[16.3438773,48.21383399999999],[16.343854,48.214169200000015]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Albertgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4996483","geometry":{"type":"LineString","coordinates":[[16.3440021,48.21197240000001],[16.3438833,48.2119783],[16.3426452,48.21204],[16.342347,48.212050600000026]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Florianigasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"26738443","geometry":{"type":"LineString","coordinates":[[16.3397966,48.21236479999999],[16.340235,48.2131631],[16.3407546,48.2141297],[16.3412647,48.21505589999998],[16.3412826,48.21508850000001],[16.3413063,48.215131499999956],[16.3413557,48.2152227],[16.3413774,48.2152634],[16.3419201,48.21628629999998],[16.34195,48.21634259999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"28244395","geometry":{"type":"LineString","coordinates":[[16.3408809,48.21237940000003],[16.341153,48.21309020000001],[16.341172,48.21313989999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Blindengasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"4996514","geometry":{"type":"LineString","coordinates":[[16.340136,48.21240119999999],[16.3408809,48.21237940000003]]},"properties":{"highway":"service","maxspeed":"30","name":"Uhlplatz"}},{"type":"Feature","id":"28080756","geometry":{"type":"LineString","coordinates":[[16.340235,48.2131631],[16.3410809,48.21314220000002],[16.341172,48.21313989999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Laudongasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26738446","geometry":{"type":"LineString","coordinates":[[16.3397036,48.21198509999999],[16.3397242,48.212095500000004],[16.3397966,48.21236479999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Uhlplatz","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"95406733","geometry":{"type":"LineString","coordinates":[[16.342347,48.212050600000026],[16.3420307,48.21206319999999],[16.3408755,48.21210909999999],[16.3407986,48.21211220000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Florianigasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"28079389","geometry":{"type":"LineString","coordinates":[[16.3407986,48.21211220000001],[16.3408255,48.21219959999999],[16.3408809,48.21237940000003]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Uhlplatz","oneway":"yes","oneway:bicycle":"no","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4996498","geometry":{"type":"LineString","coordinates":[[16.3407063,48.211843999999985],[16.3406073,48.2118481],[16.3401586,48.211866499999985],[16.339937,48.2119017],[16.3398489,48.211933200000004],[16.3397036,48.21198509999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Uhlplatz","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"28079388","geometry":{"type":"LineString","coordinates":[[16.3407063,48.211843999999985],[16.3407741,48.212041],[16.3407986,48.21211220000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Uhlplatz","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"205999088","geometry":{"type":"LineString","coordinates":[[16.3413684,48.216472099999976],[16.3414057,48.21641439999999],[16.3414206,48.21626029999999],[16.3411778,48.215821000000034],[16.340863,48.21524819999999],[16.3408404,48.21520699999999],[16.3407897,48.21511680000003],[16.3407367,48.21502129999999],[16.3402228,48.21411070000002],[16.3397263,48.21318200000002],[16.3392384,48.212266099999994],[16.3391955,48.212185699999964]]},"properties":{"highway":"service","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"146687715","geometry":{"type":"LineString","coordinates":[[16.3384177,48.21221639999996],[16.3384815,48.21321120000002],[16.3385269,48.2140665]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Wien","lit":"yes","maxspeed":"30","name":"Veronikagasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4986589","geometry":{"type":"LineString","coordinates":[[16.3375383,48.213224800000006],[16.3373645,48.21231679999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dettergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4996489","geometry":{"type":"LineString","coordinates":[[16.3394444,48.2131924],[16.3384815,48.21321120000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schellhammergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9866259","geometry":{"type":"LineString","coordinates":[[16.3394444,48.2131924],[16.3396027,48.213186500000006],[16.3397263,48.21318200000002],[16.3400214,48.21317099999999],[16.340235,48.2131631]]},"properties":{"highway":"residential","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes"}},{"type":"Feature","id":"29048898","geometry":{"type":"LineString","coordinates":[[16.3384815,48.21321120000002],[16.3375383,48.213224800000006]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schellhammergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4986576","geometry":{"type":"LineString","coordinates":[[16.3389164,48.21217579999998],[16.3387751,48.21218729999998],[16.3387201,48.2121918],[16.3384177,48.21221639999996]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"lane","highway":"residential","maxspeed":"30","name":"Friedmanngasse","network":"lcn","oneway":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"23311966","geometry":{"type":"LineString","coordinates":[[16.3412394,48.21649790000001],[16.3411939,48.21641540000002],[16.3409857,48.21602819999998],[16.3408749,48.21582230000001],[16.3405357,48.21523530000002],[16.3405086,48.215182200000015],[16.3404639,48.2150877],[16.3404365,48.21503870000001],[16.339939,48.2141005],[16.3394444,48.2131924],[16.338967,48.2122732],[16.3389164,48.21217579999998]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Hernalser Gürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"18343136","geometry":{"type":"LineString","coordinates":[[16.3397036,48.21198509999999],[16.3395865,48.21208039999999],[16.3394613,48.21214499999999],[16.3393362,48.212178300000005],[16.3391955,48.212185699999964],[16.3390686,48.21218329999999],[16.3390096,48.212180399999994],[16.3389164,48.21217579999998]]},"properties":{"cycleway":"lane","highway":"primary_link","lanes":"2","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"211632045","geometry":{"type":"LineString","coordinates":[[16.3439784,48.21178800000004],[16.3439707,48.21177019999996],[16.3439675,48.2117533],[16.3439635,48.211713299999985],[16.343966,48.21162190000001],[16.343968,48.211439600000006],[16.3439608,48.21121339999996],[16.3439608,48.211153800000005],[16.3439649,48.21109010000001],[16.3439771,48.2110366],[16.3439913,48.2110041],[16.3440045,48.210982900000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Albertgasse","source:maxspeed":"AT:zone:30","surface":"concrete"}},{"type":"Feature","id":"4996515","geometry":{"type":"LineString","coordinates":[[16.3404555,48.21100040000002],[16.3404703,48.21106620000003],[16.3407063,48.211843999999985]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Blindengasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"27657700","geometry":{"type":"LineString","coordinates":[[16.3424876,48.2131249],[16.3423787,48.21240879999999],[16.342347,48.212050600000026],[16.3423287,48.21187789999999],[16.3423068,48.21167140000003],[16.3422098,48.21086700000001],[16.3422031,48.210811699999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bennogasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"148729664","geometry":{"type":"LineString","coordinates":[[16.3396766,48.2110806],[16.3395185,48.2111003]]},"properties":{"foot":"use_sidepath","highway":"tertiary","history":"Retrieved from v9","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"concrete"}},{"type":"Feature","id":"211266009","geometry":{"type":"LineString","coordinates":[[16.3403589,48.210690099999994],[16.3404044,48.210839899999996]]},"properties":{"highway":"residential","maxspeed":"50","name":"Blindengasse","source":"yahoo","surface":"concrete"}},{"type":"Feature","id":"172058503","geometry":{"type":"LineString","coordinates":[[16.3404044,48.210839899999996],[16.3404366,48.210930399999995],[16.3404555,48.21100040000002]]},"properties":{"highway":"residential","maxspeed":"50","name":"Blindengasse","surface":"concrete"}},{"type":"Feature","id":"211634375","geometry":{"type":"LineString","coordinates":[[16.3399811,48.21104840000001],[16.3404555,48.21100040000002],[16.3405678,48.21098860000001],[16.3406795,48.21097689999999],[16.3416021,48.21087890000001],[16.3422031,48.210811699999994],[16.3428309,48.21075160000001],[16.3436493,48.21065770000001],[16.3438384,48.21063700000002],[16.3439333,48.21062409999999],[16.3440363,48.210603899999995]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Josefstädter Straße","surface":"concrete:plates"}},{"type":"Feature","id":"211634374","geometry":{"type":"LineString","coordinates":[[16.3399811,48.21104840000001],[16.3396766,48.2110806]]},"properties":{"foot":"use_sidepath","highway":"tertiary","history":"Retrieved from v9","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"concrete"}},{"type":"Feature","id":"25535791","geometry":{"type":"LineString","coordinates":[[16.338719,48.21075010000001],[16.338642,48.21077930000004],[16.3385619,48.21079499999999],[16.3384969,48.21079850000001],[16.3384016,48.210801900000035],[16.3382038,48.21081620000001],[16.3380194,48.21083390000004]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Neulerchenfelder Straße","surface":"asphalt"}},{"type":"Feature","id":"4996492","geometry":{"type":"LineString","coordinates":[[16.3358084,48.21472780000002],[16.3357968,48.2148095],[16.3355835,48.216264300000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Helblinggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"219270808","geometry":{"type":"LineString","coordinates":[[16.3357535,48.213894299999964],[16.3346699,48.21376380000001]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"30","name":"Yppenplatz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9866286","geometry":{"type":"LineString","coordinates":[[16.3344467,48.21455900000001],[16.3344731,48.214465099999984],[16.3346699,48.21376380000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Weyprechtgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"29048839","geometry":{"type":"LineString","coordinates":[[16.3357535,48.213894299999964],[16.3358451,48.21390629999996],[16.3367406,48.214023199999986],[16.3368528,48.2140057]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Payergasse"}},{"type":"Feature","id":"4986562","geometry":{"type":"LineString","coordinates":[[16.3357535,48.213894299999964],[16.3355742,48.21461260000001],[16.3355502,48.2146985]]},"properties":{"highway":"residential","maxspeed":"30","name":"Yppengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"219442433","geometry":{"type":"LineString","coordinates":[[16.3332056,48.21440899999996],[16.3338214,48.214479600000004],[16.3344467,48.21455900000001],[16.334536,48.214570400000014],[16.3352025,48.21465520000001],[16.3355502,48.2146985],[16.3356809,48.2147133],[16.3358084,48.21472780000002],[16.3361381,48.21476979999997],[16.337134,48.214900400000005],[16.3378625,48.214991399999974],[16.3380453,48.215015600000044]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße"}},{"type":"Feature","id":"9866200","geometry":{"type":"LineString","coordinates":[[16.3331967,48.21483809999998],[16.3331606,48.214472900000004],[16.3332056,48.21440899999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Steinergasse","oneway":"yes","source":"survey","surface":"asphalt"}},{"type":"Feature","id":"4996524","geometry":{"type":"LineString","coordinates":[[16.3344467,48.21455900000001],[16.3344226,48.214650500000005],[16.3345693,48.2163472],[16.3349268,48.2174258]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bergsteiggasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5774543","geometry":{"type":"LineString","coordinates":[[16.3333852,48.216436200000004],[16.3331967,48.21483809999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Steinergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5004112","geometry":{"type":"LineString","coordinates":[[16.3331967,48.21483809999998],[16.331736,48.2149416],[16.3300421,48.2150695]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haslingergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"372336863","geometry":{"type":"LineString","coordinates":[[16.3300421,48.2150695],[16.3290549,48.21513920000001],[16.3282155,48.21520079999999],[16.3272784,48.215275099999985]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Haslingergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"484502154","geometry":{"type":"LineString","coordinates":[[16.3315755,48.21421459999999],[16.3316128,48.21422050000001],[16.331711,48.21423370000002],[16.3320003,48.21427249999999],[16.3332056,48.21440899999996]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße","surface":"paved"}},{"type":"Feature","id":"6122435","geometry":{"type":"LineString","coordinates":[[16.332379,48.2181482],[16.3323671,48.2181037],[16.3323585,48.2180779],[16.3323462,48.21803129999998],[16.3323353,48.2179687],[16.3322586,48.2175287],[16.3322473,48.21746830000001],[16.3321813,48.21710279999999],[16.3320677,48.21648099999999],[16.331736,48.2149416],[16.331626,48.214297999999985],[16.3316128,48.21422050000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kalvarienberggasse","oneway":"yes","oneway:bicycle":"yes","source":"wien.gv.at","source:maxspeed":"AT:zone:30","surface":"paved"}},{"type":"Feature","id":"4986566","geometry":{"type":"LineString","coordinates":[[16.3346699,48.21376380000001],[16.3334519,48.21360390000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Payergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4996476","geometry":{"type":"LineString","coordinates":[[16.3281961,48.2156368],[16.3282155,48.21520079999999],[16.3282518,48.21432779999998],[16.3283131,48.21371149999999],[16.3283203,48.213639]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Weißgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4986580","geometry":{"type":"LineString","coordinates":[[16.3290586,48.216503700000004],[16.3290589,48.2159767],[16.3290341,48.21579969999999],[16.3290343,48.21562929999999],[16.3290377,48.21540590000001],[16.3290549,48.21513920000001],[16.329036,48.213839199999995],[16.3290349,48.213766899999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Frauengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583627","geometry":{"type":"LineString","coordinates":[[16.3300755,48.21395519999999],[16.3300841,48.2140311],[16.3300421,48.2150695],[16.3300569,48.215418400000004],[16.3300496,48.21567379999996],[16.3300259,48.216498],[16.3300762,48.2172745],[16.3301337,48.21818059999998],[16.3301389,48.21824290000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ortliebgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"372336864","geometry":{"type":"LineString","coordinates":[[16.3272784,48.215275099999985],[16.3266562,48.21532239999999],[16.3266498,48.215323600000005],[16.3265865,48.21533529999999]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Haslingergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"28424033","geometry":{"type":"LineString","coordinates":[[16.3253168,48.215305900000004],[16.3254241,48.21530839999997],[16.3265087,48.215333499999986],[16.3265865,48.21533529999999]]},"properties":{"highway":"living_street","name":"Lorenz-Bayer-Platz","oneway":"yes"}},{"type":"Feature","id":"26617436","geometry":{"type":"LineString","coordinates":[[16.3265865,48.21533529999999],[16.3266994,48.215744099999995]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"138647301","geometry":{"type":"LineString","coordinates":[[16.3265398,48.21428],[16.326437,48.21428480000003],[16.3263696,48.21428800000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Lorenz-Bayer-Platz","oneway":"yes"}},{"type":"Feature","id":"26617432","geometry":{"type":"LineString","coordinates":[[16.3265398,48.21428],[16.3265646,48.2151705],[16.3265865,48.21533529999999]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Lorenz-Bayer-Platz","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"172962673","geometry":{"type":"LineString","coordinates":[[16.3265398,48.21428],[16.3266268,48.214282200000014],[16.3272344,48.214295299999975],[16.3282518,48.21432779999998]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Teichgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source":"wien.gv.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5004098","geometry":{"type":"LineString","coordinates":[[16.3263696,48.21428800000001],[16.3260733,48.214301500000005],[16.3256535,48.21432060000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Lorenz-Bayer-Platz","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26617426","geometry":{"type":"LineString","coordinates":[[16.3272018,48.21342379999999],[16.3272051,48.2135117],[16.3272344,48.214295299999975],[16.3272784,48.215275099999985],[16.3272956,48.215650900000014]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Nattergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5004103","geometry":{"type":"LineString","coordinates":[[16.3265268,48.213474599999984],[16.3265246,48.213519200000036]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"141233629","geometry":{"type":"LineString","coordinates":[[16.3265246,48.213519200000036],[16.3265309,48.21385219999999],[16.3265341,48.214022899999975],[16.3265366,48.21413380000001],[16.3265398,48.21428]]},"properties":{"electrified":"contact_line","frequency":"0","gauge":"1435","highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes","operator":"Wiener Linien","railway":"tram","voltage":"600"}},{"type":"Feature","id":"29048911","geometry":{"type":"LineString","coordinates":[[16.335939,48.21316860000002],[16.3363689,48.21322169999999],[16.3365877,48.21323100000001],[16.3366857,48.213235199999986],[16.3367371,48.2132374]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Schellhammergasse","surface":"asphalt"}},{"type":"Feature","id":"219270809","geometry":{"type":"LineString","coordinates":[[16.335939,48.21316860000002],[16.3357656,48.21384689999999],[16.3357535,48.213894299999964]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Yppenplatz","surface":"asphalt"}},{"type":"Feature","id":"463861959","geometry":{"type":"LineString","coordinates":[[16.3365877,48.21323100000001],[16.3368528,48.2140057]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Brunnengasse","surface":"asphalt"}},{"type":"Feature","id":"29048900","geometry":{"type":"LineString","coordinates":[[16.3375383,48.213224800000006],[16.3367371,48.2132374]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schellhammergasse","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4986582","geometry":{"type":"LineString","coordinates":[[16.3306864,48.212726799999956],[16.3307066,48.21290909999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brestelgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"157746412","geometry":{"type":"LineString","coordinates":[[16.3300755,48.21395519999999],[16.330068,48.21389340000002],[16.3299546,48.212957700000004]]},"properties":{"highway":"residential","history":"Retrieved from v5","maxspeed":"30","name":"Lindauergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4986571","geometry":{"type":"LineString","coordinates":[[16.3299546,48.212957700000004],[16.3307066,48.21290909999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brestelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29048926","geometry":{"type":"LineString","coordinates":[[16.3348448,48.21302750000001],[16.3336442,48.21288899999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schellhammergasse","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"234873387","geometry":{"type":"LineString","coordinates":[[16.3307066,48.21290909999999],[16.3308284,48.21402220000002],[16.3308366,48.214097100000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brestelgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4996504","geometry":{"type":"LineString","coordinates":[[16.3348448,48.21302750000001],[16.3349506,48.21304109999997],[16.335939,48.21316860000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Yppenplatz","surface":"asphalt"}},{"type":"Feature","id":"339373201","geometry":{"type":"LineString","coordinates":[[16.3346699,48.21376380000001],[16.3348348,48.213159099999984],[16.3348448,48.21302750000001]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"30","name":"Yppenplatz","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"60640442","geometry":{"type":"LineString","coordinates":[[16.3337573,48.212399000000005],[16.3338793,48.212407299999995],[16.3350145,48.212402199999985],[16.3362871,48.212390400000004]]},"properties":{"cycleway":"opposite","highway":"residential","lcn":"yes","maxspeed":"30","name":"Friedmanngasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9565616","geometry":{"type":"LineString","coordinates":[[16.3337573,48.212399000000005],[16.3336442,48.21288899999999],[16.3334519,48.21360390000001],[16.3334146,48.213740099999995],[16.3332543,48.21433880000001],[16.3332056,48.21440899999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hubergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5774544","geometry":{"type":"LineString","coordinates":[[16.3350145,48.212402199999985],[16.3348448,48.21302750000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Weyprechtgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"9866370","geometry":{"type":"LineString","coordinates":[[16.3283203,48.213639],[16.3283167,48.2135686],[16.3282667,48.21259700000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hellgasse","oneway":"yes"}},{"type":"Feature","id":"185166834","geometry":{"type":"LineString","coordinates":[[16.3289548,48.2125566],[16.3287278,48.21257130000001],[16.3283376,48.212593099999964],[16.3282667,48.21259700000002]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Friedmanngasse","oneway":"yes"}},{"type":"Feature","id":"141233625","geometry":{"type":"LineString","coordinates":[[16.3263498,48.21326760000002],[16.3265293,48.21330039999998]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Johann-Nepomuk-Berger-Platz"}},{"type":"Feature","id":"26617351","geometry":{"type":"LineString","coordinates":[[16.3265293,48.21330039999998],[16.3268816,48.213358]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße"}},{"type":"Feature","id":"141233624","geometry":{"type":"LineString","coordinates":[[16.3268816,48.213358],[16.3272018,48.21342379999999],[16.3283203,48.213639],[16.3290349,48.213766899999996],[16.3293391,48.213820999999996],[16.3300755,48.21395519999999],[16.330559,48.21404580000004],[16.3308366,48.214097100000004],[16.3315134,48.21420470000004],[16.3315755,48.21421459999999]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Ottakringer Straße"}},{"type":"Feature","id":"138647475","geometry":{"type":"LineString","coordinates":[[16.3265293,48.21330039999998],[16.3265311,48.21340939999999],[16.3265268,48.213474599999984]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Taubergasse","oneway":"yes"}},{"type":"Feature","id":"234029155","geometry":{"type":"LineString","coordinates":[[16.3260098,48.21320559999998],[16.3263498,48.21326760000002]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Johann-Nepomuk-Berger-Platz"}},{"type":"Feature","id":"410316538","geometry":{"type":"LineString","coordinates":[[16.3282667,48.21259700000002],[16.3279481,48.2126083],[16.3278254,48.212608200000005],[16.3276047,48.21258510000001]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Neulerchenfelder Straße","note":"Der westliche Teil dieses Straßenstücks heißt tatsächlich anders, als das östliche Stück.","oneway":"yes"}},{"type":"Feature","id":"60640433","geometry":{"type":"LineString","coordinates":[[16.3276047,48.21258510000001],[16.3275113,48.21260849999999],[16.3272976,48.2126585],[16.3269616,48.212738099999996],[16.3265828,48.21283679999999]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Neulerchenfelder Straße","surface":"concrete:plates"}},{"type":"Feature","id":"192640521","geometry":{"type":"LineString","coordinates":[[16.3265828,48.21283679999999],[16.3265474,48.21288329999999],[16.3265325,48.2132263],[16.3265293,48.21330039999998]]},"properties":{"highway":"residential","maxspeed":"50","name":"Johann-Nepomuk-Berger-Platz","oneway":"yes"}},{"type":"Feature","id":"212471617","geometry":{"type":"LineString","coordinates":[[16.325787,48.21316490000001],[16.3260098,48.21320559999998]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Johann-Nepomuk-Berger-Platz"}},{"type":"Feature","id":"229820220","geometry":{"type":"LineString","coordinates":[[16.3258085,48.21307150000001],[16.3258457,48.213059799999996],[16.3259681,48.21302320000001],[16.3260742,48.21299379999999],[16.326123,48.21298189999999],[16.3261745,48.2129693],[16.3264789,48.21289960000004],[16.3265284,48.212886000000026],[16.3265474,48.21288329999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Johann-Nepomuk-Berger-Platz"}},{"type":"Feature","id":"60640435","geometry":{"type":"LineString","coordinates":[[16.3362871,48.212390400000004],[16.3365655,48.2123847],[16.3373645,48.21231679999997],[16.3384177,48.21221639999996]]},"properties":{"cycleway":"opposite","highway":"residential","lcn":"yes","maxspeed":"30","name":"Friedmanngasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4986564","geometry":{"type":"LineString","coordinates":[[16.338667,48.21157280000003],[16.3384595,48.2115919],[16.3361475,48.211804700000016],[16.3337067,48.212047299999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gaullachergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"27890154","geometry":{"type":"LineString","coordinates":[[16.3359794,48.21109899999999],[16.3359822,48.211112199999974],[16.3359945,48.2111568],[16.3361475,48.211804700000016],[16.3362871,48.212390400000004],[16.3365877,48.21323100000001]]},"properties":{"highway":"pedestrian","name":"Brunnengasse","surface":"paved"}},{"type":"Feature","id":"192640516","geometry":{"type":"LineString","coordinates":[[16.3337067,48.212047299999995],[16.3330341,48.2121238],[16.3328705,48.21215780000003],[16.332668,48.21217659999999],[16.3325165,48.21217920000001],[16.3318081,48.21226179999999]]},"properties":{"highway":"living_street","name":"Gaullachergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"261704729","geometry":{"type":"LineString","coordinates":[[16.3318081,48.21226179999999],[16.3312798,48.21232459999999]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Gaullachergasse","oneway":"yes"}},{"type":"Feature","id":"64977654","geometry":{"type":"LineString","coordinates":[[16.3337573,48.212399000000005],[16.3322353,48.21241620000001],[16.3320348,48.21239959999997],[16.3319104,48.212354499999975],[16.3318081,48.21226179999999]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Friedmanngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"172053733","geometry":{"type":"LineString","coordinates":[[16.3316128,48.21422050000001],[16.3316006,48.214158],[16.3315537,48.2139353],[16.3315662,48.213862500000005],[16.3314998,48.21350419999999],[16.331468,48.21345070000001],[16.3314058,48.2131311],[16.3314183,48.213052800000014],[16.331305,48.21245739999998],[16.3312798,48.21232459999999],[16.3311767,48.21176220000004],[16.3311674,48.211711199999996],[16.3311569,48.211657900000006],[16.3310016,48.21086980000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haberlgasse","oneway":"yes","source":"wien.gv.at","surface":"paved"}},{"type":"Feature","id":"23487748","geometry":{"type":"LineString","coordinates":[[16.3262994,48.21218340000004],[16.3265487,48.212773],[16.3265828,48.21283679999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Johann-Nepomuk-Berger-Platz"}},{"type":"Feature","id":"8610239","geometry":{"type":"LineString","coordinates":[[16.3262994,48.21218340000004],[16.3260746,48.21236920000004],[16.3257356,48.21264930000001],[16.325538,48.212808199999984],[16.32541,48.21291289999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Johann-Nepomuk-Berger-Platz","oneway":"yes"}},{"type":"Feature","id":"9866315","geometry":{"type":"LineString","coordinates":[[16.3290349,48.213766899999996],[16.3290305,48.213701000000015],[16.3289548,48.2125566],[16.3289467,48.212293200000005],[16.3289449,48.21223309999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Deinhardsteingasse","oneway":"yes"}},{"type":"Feature","id":"261704728","geometry":{"type":"LineString","coordinates":[[16.3312798,48.21232459999999],[16.3298846,48.21250070000002],[16.3289548,48.2125566]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Friedmanngasse","oneway":"yes"}},{"type":"Feature","id":"26617399","geometry":{"type":"LineString","coordinates":[[16.3308223,48.21090239999998],[16.3299852,48.211241],[16.3297283,48.21135389999998],[16.3289048,48.21167700000004],[16.3278669,48.211859000000004],[16.3274045,48.211931900000025],[16.3264498,48.21214359999999],[16.3262994,48.21218340000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Abelegasse","oneway":"yes"}},{"type":"Feature","id":"9866351","geometry":{"type":"LineString","coordinates":[[16.3289048,48.21167700000004],[16.3289399,48.21216309999997],[16.3289449,48.21223309999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Deinhardsteingasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26617402","geometry":{"type":"LineString","coordinates":[[16.3260348,48.2115785],[16.3262994,48.21218340000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Eckmüllnergasse","oneway":"yes"}},{"type":"Feature","id":"9866312","geometry":{"type":"LineString","coordinates":[[16.3298096,48.212011200000006],[16.329819,48.212072199999994],[16.3298846,48.21250070000002],[16.3299546,48.212957700000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lindauergasse","oneway":"yes"}},{"type":"Feature","id":"4986567","geometry":{"type":"LineString","coordinates":[[16.3253329,48.211663300000026],[16.3254411,48.21165199999999],[16.3260348,48.2115785],[16.3273139,48.2114019],[16.3276917,48.2113516],[16.3287685,48.211189200000035],[16.32966,48.21105219999998],[16.3299027,48.21101770000001],[16.330638,48.2109083],[16.3308223,48.21090239999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Friedrich-Kaiser-Gasse","oneway":"yes"}},{"type":"Feature","id":"181550803","geometry":{"type":"LineString","coordinates":[[16.3380194,48.21083390000004],[16.3369994,48.210958800000014],[16.3360583,48.21108850000002],[16.3359794,48.21109899999999],[16.3359246,48.211105599999996],[16.3349835,48.21121299999999],[16.3341202,48.211305400000015],[16.3339504,48.21132699999998],[16.3337995,48.211350099999976],[16.3336418,48.211377700000014],[16.3335684,48.21139049999999],[16.3335179,48.21139720000002],[16.3312434,48.21170099999998],[16.3311674,48.211711199999996],[16.3310794,48.21172519999999],[16.3309652,48.211743299999995],[16.3306841,48.211800400000016],[16.3298096,48.212011200000006],[16.3291804,48.212168899999995],[16.3289449,48.21223309999999],[16.3287572,48.212295599999976],[16.3282763,48.21241960000003],[16.3276047,48.21258510000001]]},"properties":{"foot":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Neulerchenfelder Straße","surface":"concrete:plates"}},{"type":"Feature","id":"474396508","geometry":{"type":"LineString","coordinates":[[16.3385743,48.21075129999997],[16.3382538,48.21077120000004],[16.3382049,48.21074699999997],[16.3372889,48.2108552],[16.3372473,48.21088869999997],[16.3368429,48.2109342],[16.3368006,48.2109255],[16.336379,48.21097849999998],[16.3362156,48.211007600000016],[16.3360443,48.211030300000004],[16.3359671,48.21104060000002],[16.335914,48.21104729999999],[16.3358331,48.2110577],[16.3357779,48.2110648],[16.3353665,48.211110599999984],[16.3352635,48.21112210000001],[16.3348652,48.2111654],[16.3340504,48.211252400000006],[16.3337425,48.2112923],[16.3336266,48.2113138],[16.3335545,48.2113272],[16.333528,48.21133209999999],[16.3335098,48.21135939999999],[16.332819,48.211455099999995],[16.3321471,48.2115412],[16.3312345,48.211660799999976],[16.3311965,48.21165400000001],[16.3311569,48.211657900000006],[16.3311068,48.21166269999998],[16.3310772,48.21168699999998],[16.3310437,48.211693800000006],[16.3307843,48.21174239999999],[16.3306662,48.21177009999997],[16.33063,48.2117714],[16.3305305,48.21176500000004],[16.3301986,48.2118423],[16.3298805,48.21191959999996],[16.3298015,48.21194589999999],[16.3297492,48.21198719999998],[16.3294975,48.21204989999998],[16.329442,48.2120353],[16.3289399,48.21216309999997],[16.3288971,48.21217339999998],[16.3288723,48.21220600000001],[16.3285054,48.212298799999985],[16.3282077,48.21237120000001],[16.3274638,48.2125518],[16.3274,48.21257940000001],[16.3273009,48.21260319999999],[16.32722,48.21262669999999],[16.3271596,48.212627],[16.3265487,48.212773]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Neulerchenfelder Straße"}},{"type":"Feature","id":"474396507","geometry":{"type":"LineString","coordinates":[[16.3385571,48.21083620000002],[16.3380902,48.210881099999995],[16.3370401,48.211010200000004],[16.3365711,48.21106639999999],[16.3364672,48.21107889999999],[16.3364264,48.2110988],[16.336177,48.2111323],[16.3360725,48.211146299999996],[16.3359945,48.2111568],[16.3359353,48.21116510000002],[16.3358019,48.21118390000001],[16.334979,48.211279099999985],[16.3342999,48.2113487],[16.3340102,48.2113856],[16.3336562,48.21143789999999],[16.3335807,48.21144910000001],[16.3335305,48.21145610000002],[16.3329904,48.21153100000001],[16.3323492,48.21161359999999],[16.3318334,48.211683100000016],[16.3317685,48.211683600000015],[16.3317358,48.21168800000001],[16.3315613,48.21171129999999],[16.3314847,48.21174100000002],[16.331333,48.211759],[16.3312648,48.2117671],[16.3312512,48.21176870000002],[16.3312082,48.211758],[16.3311767,48.21176220000004],[16.3310816,48.21177180000004],[16.3309587,48.211786700000005],[16.3307311,48.21183530000002],[16.3306917,48.211860599999994],[16.329819,48.212072199999994],[16.3292414,48.21222180000004],[16.3289467,48.212293200000005],[16.3286987,48.21235480000004],[16.3282947,48.212457700000044],[16.3278695,48.212560800000006],[16.3278254,48.212608200000005],[16.3277949,48.21264790000001],[16.3273741,48.2126854],[16.3272921,48.21270270000002],[16.3271556,48.21273550000001],[16.3266179,48.2128678],[16.326584,48.21287610000002],[16.3265474,48.21288329999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Neulerchenfelder Straße"}},{"type":"Feature","id":"247977997","geometry":{"type":"LineString","coordinates":[[16.3521931,48.20937000000001],[16.3520915,48.20937549999999],[16.3512074,48.20941369999997],[16.3507073,48.2094482],[16.3506529,48.209452],[16.3505677,48.20945819999997]]},"properties":{"foot":"use_sidepath","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"concrete:plates"}},{"type":"Feature","id":"4997690","geometry":{"type":"LineString","coordinates":[[16.3481702,48.20972990000001],[16.3481652,48.20978259999998],[16.3480692,48.21079610000001],[16.3479476,48.2120314]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Fuhrmannsgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"122605524","geometry":{"type":"LineString","coordinates":[[16.3487814,48.20990929999999],[16.3487972,48.209736900000024]]},"properties":{"bus":"yes","highway":"platform","name":"Lederergasse/Josefstädter Straße","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"4850272","geometry":{"type":"LineString","coordinates":[[16.3469174,48.20997310000001],[16.3469409,48.21002609999999],[16.3470413,48.21025270000001],[16.3471055,48.210584600000004],[16.3471182,48.210916],[16.3470321,48.21157299999999],[16.3469506,48.212152300000014]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Schönborngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"26125318","geometry":{"type":"LineString","coordinates":[[16.3460026,48.21064710000002],[16.3459365,48.21057059999998],[16.3457852,48.210287600000015],[16.3457546,48.2102304]]},"properties":{"highway":"residential","maxspeed":"50","name":"Kupkagasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"215607030","geometry":{"type":"LineString","coordinates":[[16.3457546,48.2102304],[16.3454669,48.21029329999999]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Josefstädter Straße","surface":"concrete:plates"}},{"type":"Feature","id":"4997430","geometry":{"type":"LineString","coordinates":[[16.3480086,48.21457939999999],[16.3482146,48.21404609999999],[16.3484267,48.213415499999996],[16.3484633,48.2132938],[16.3484849,48.213222099999996],[16.3484959,48.213150799999994],[16.3485856,48.21259550000002],[16.3486425,48.212008999999995],[16.3486508,48.21194650000001],[16.3486552,48.21187599999999],[16.3487489,48.21085660000003],[16.3487548,48.21079280000001],[16.3488471,48.209781899999996],[16.3488384,48.209687700000046],[16.3487798,48.2096392]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Lederergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"97349393","geometry":{"type":"LineString","coordinates":[[16.3487798,48.2096392],[16.3486735,48.209651399999984],[16.3485068,48.209676400000006],[16.3481702,48.20972990000001],[16.3475615,48.2098335],[16.3469174,48.20997310000001],[16.3463847,48.2100901],[16.3457546,48.2102304]]},"properties":{"foot":"use_sidepath","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"concrete:plates","voltage":"600"}},{"type":"Feature","id":"4850270","geometry":{"type":"LineString","coordinates":[[16.3454669,48.21029329999999],[16.3454784,48.2102223],[16.3457085,48.20880700000001],[16.3457199,48.20873880000002]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lerchengasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"219645195","geometry":{"type":"LineString","coordinates":[[16.3505677,48.20945819999997],[16.3504733,48.20946440000003],[16.3500084,48.209496099999996],[16.3496094,48.20952260000004],[16.3494702,48.20953789999999],[16.3493043,48.209561000000036],[16.3491263,48.2095932],[16.3489035,48.20962339999997],[16.3487798,48.2096392]]},"properties":{"foot":"use_sidepath","highway":"tertiary","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Josefstädter Straße","source":"yahoo","surface":"concrete:plates"}},{"type":"Feature","id":"219735569","geometry":{"type":"LineString","coordinates":[[16.3440363,48.210603899999995],[16.3441753,48.210575199999994],[16.3442895,48.210551699999996],[16.3447872,48.210439399999956],[16.3454669,48.21029329999999]]},"properties":{"foot":"use_sidepath","highway":"tertiary","maxspeed":"50","name":"Josefstädter Straße","surface":"concrete:plates"}},{"type":"Feature","id":"171952284","geometry":{"type":"LineString","coordinates":[[16.3440363,48.210603899999995],[16.3440245,48.210590800000006],[16.3439782,48.210539799999964],[16.34397,48.21051370000001],[16.3439608,48.21047579999998],[16.3438533,48.209069400000004],[16.3438492,48.208992300000006]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Albertgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"7838185","geometry":{"type":"LineString","coordinates":[[16.3419273,48.209260700000016],[16.3419397,48.209330300000005],[16.342192,48.21074949999996],[16.3422031,48.210811699999994]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Stolzenthalergasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"23985400","geometry":{"type":"LineString","coordinates":[[16.3414074,48.209334600000005],[16.3414976,48.209361099999995],[16.34164,48.2093447],[16.3418719,48.209320399999996],[16.3419273,48.209260700000016]]},"properties":{"foot":"designated","highway":"cycleway","name":"Pfeilgasse","segregated":"yes"}},{"type":"Feature","id":"27608022","geometry":{"type":"LineString","coordinates":[[16.3448906,48.208805100000006],[16.3448885,48.20885479999998],[16.344789,48.210375899999974],[16.3447872,48.210439399999956]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tigergasse","oneway":"yes"}},{"type":"Feature","id":"23985425","geometry":{"type":"LineString","coordinates":[[16.3444008,48.20890850000001],[16.3444141,48.20887429999999],[16.3448906,48.208805100000006]]},"properties":{"foot":"yes","highway":"cycleway","name":"Pfeilgasse","segregated":"yes"}},{"type":"Feature","id":"23985404","geometry":{"type":"LineString","coordinates":[[16.3419273,48.209260700000016],[16.3437385,48.209007799999995],[16.3438492,48.208992300000006],[16.3439407,48.208978400000035],[16.3444008,48.20890850000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pfeilgasse"}},{"type":"Feature","id":"8105815","geometry":{"type":"LineString","coordinates":[[16.3509004,48.20812169999999],[16.3508321,48.2081144],[16.3500794,48.20802170000002],[16.3491432,48.20793280000001],[16.3490403,48.20793800000001]]},"properties":{"cycleway:left":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zeltgasse","oneway":"yes"}},{"type":"Feature","id":"95415643","geometry":{"type":"LineString","coordinates":[[16.3507951,48.2066222],[16.350182,48.20659810000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Roter Hof","noexit":"yes","surface":"cobblestone","vehicle":"destination"}},{"type":"Feature","id":"29072920","geometry":{"type":"LineString","coordinates":[[16.3512679,48.206702699999965],[16.3509862,48.20668549999999],[16.3507951,48.2066222]]},"properties":{"highway":"residential","maxspeed":"50","name":"Roter Hof","noexit":"yes","surface":"cobblestone"}},{"type":"Feature","id":"7837684","geometry":{"type":"LineString","coordinates":[[16.3493514,48.20641520000001],[16.3494456,48.206404899999995],[16.3497007,48.206390099999965],[16.3499751,48.20637739999998]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"secondary","maxspeed":"50","name":"Lerchenfelder Straße"}},{"type":"Feature","id":"27608020","geometry":{"type":"LineString","coordinates":[[16.344902,48.20862890000001],[16.3448906,48.208805100000006]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Tigergasse","oneway":"yes"}},{"type":"Feature","id":"8095140","geometry":{"type":"LineString","coordinates":[[16.3457199,48.20873880000002],[16.3467895,48.2084893],[16.3478162,48.208236400000004],[16.3484028,48.208100599999966],[16.3487384,48.20802069999999],[16.3489495,48.207974199999995],[16.3490403,48.20793800000001]]},"properties":{"cycleway:left":"opposite_lane","highway":"residential","maxspeed":"30","name":"Pfeilgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"35377168","geometry":{"type":"LineString","coordinates":[[16.3457199,48.20873880000002],[16.3457342,48.2086573]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lerchengasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"95410536","geometry":{"type":"LineString","coordinates":[[16.3438492,48.208992300000006],[16.3438331,48.20893480000001],[16.3434716,48.20764120000001],[16.3434482,48.20755600000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Albertgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4997434","geometry":{"type":"LineString","coordinates":[[16.3493514,48.20641520000001],[16.349266,48.20642430000001],[16.3490018,48.20645830000001],[16.34785,48.206648]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße"}},{"type":"Feature","id":"7837715","geometry":{"type":"LineString","coordinates":[[16.3487798,48.2096392],[16.3487299,48.20959500000001],[16.3487053,48.20951070000001],[16.3490135,48.20802829999997],[16.349025,48.207979600000016],[16.3490403,48.20793800000001],[16.3490564,48.207888800000006],[16.349331,48.206649899999974],[16.34936,48.206512299999986],[16.3493561,48.20647710000003],[16.3493514,48.20641520000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Strozzigasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"36925871","geometry":{"type":"LineString","coordinates":[[16.3457342,48.2086573],[16.3457733,48.208466499999986],[16.3458069,48.20801320000001],[16.3457536,48.207667500000014],[16.3456095,48.20711210000002]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lerchengasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4850271","geometry":{"type":"LineString","coordinates":[[16.344842,48.207274299999995],[16.3448603,48.207347700000014],[16.344911,48.207910399999975],[16.3449359,48.20824440000001],[16.344902,48.20862890000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tigergasse","oneway":"yes"}},{"type":"Feature","id":"45189907","geometry":{"type":"LineString","coordinates":[[16.3412898,48.207667799999996],[16.3413026,48.207719999999995]]},"properties":{"highway":"footway","name":"Enzingergasse"}},{"type":"Feature","id":"139118446","geometry":{"type":"LineString","coordinates":[[16.3413026,48.207719999999995],[16.3414028,48.207982000000015]]},"properties":{"highway":"residential","name":"Enzingergasse"}},{"type":"Feature","id":"26213743","geometry":{"type":"LineString","coordinates":[[16.3416718,48.207929699999994],[16.3419273,48.209260700000016]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Stolzenthalergasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"138369435","geometry":{"type":"LineString","coordinates":[[16.3424133,48.207516],[16.3424937,48.20768190000001],[16.3427303,48.207632200000006],[16.3429756,48.20758140000001],[16.343252,48.2075241],[16.3432946,48.20751580000001]]},"properties":{"highway":"footway","name":"Ceija-Stojka-Platz"}},{"type":"Feature","id":"28798328","geometry":{"type":"LineString","coordinates":[[16.3434482,48.20755600000001],[16.3434334,48.20748800000001],[16.3433906,48.20733470000002]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"4997698","geometry":{"type":"LineString","coordinates":[[16.3433906,48.20733470000002],[16.3451294,48.20689870000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Badhausgasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"138369439","geometry":{"type":"LineString","coordinates":[[16.342969,48.207435100000026],[16.3429893,48.20750170000002],[16.342947,48.20750739999997],[16.3429756,48.20758140000001],[16.3429826,48.20759829999997]]},"properties":{"highway":"footway","name":"Ceija-Stojka-Platz"}},{"type":"Feature","id":"4583769","geometry":{"type":"LineString","coordinates":[[16.3432872,48.20702899999998],[16.3431179,48.2070549],[16.3419622,48.20723140000001],[16.3420503,48.20748150000003],[16.3420857,48.20756800000001],[16.3421518,48.20775830000002],[16.3421754,48.207826299999965]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Mentergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"486139500","geometry":{"type":"LineString","coordinates":[[16.3432946,48.20751580000001],[16.3432479,48.20739449999999],[16.342969,48.207435100000026],[16.3424133,48.207516],[16.3420857,48.20756800000001]]},"properties":{"highway":"footway","name":"Ceija-Stojka-Platz"}},{"type":"Feature","id":"4997692","geometry":{"type":"LineString","coordinates":[[16.3493514,48.20641520000001],[16.3493515,48.206337700000006],[16.3491285,48.20549009999999],[16.3491133,48.20543240000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Neubaugasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"96132147","geometry":{"type":"LineString","coordinates":[[16.3514408,48.20631839999999],[16.3513392,48.20640470000001],[16.3513124,48.20652370000002],[16.3512679,48.206702699999965],[16.3509172,48.20805680000001],[16.3509004,48.20812169999999],[16.3508877,48.20817279999997],[16.3505801,48.20940830000001],[16.3505677,48.20945819999997],[16.3505539,48.20951790000001],[16.3505159,48.209668300000004],[16.3503484,48.210464599999995],[16.3503319,48.210534300000006],[16.3503201,48.210584100000034],[16.350308,48.2106378],[16.3502543,48.21087639999996],[16.3500407,48.21180900000002]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"50","name":"Piaristengasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"106806622","geometry":{"type":"LineString","coordinates":[[16.3499751,48.20637739999998],[16.3512909,48.206323199999986],[16.3514408,48.20631839999999]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"secondary","maxspeed":"50","name":"Lerchenfelder Straße"}},{"type":"Feature","id":"4997658","geometry":{"type":"LineString","coordinates":[[16.3499751,48.20637739999998],[16.3497239,48.20538690000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Döblergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"sign","surface":"asphalt"}},{"type":"Feature","id":"56212545","geometry":{"type":"LineString","coordinates":[[16.3504798,48.20421699999997],[16.3505756,48.20414299999996],[16.3508029,48.20413150000002],[16.3512571,48.20412429999999],[16.3513543,48.204121799999996],[16.3515058,48.20412849999997],[16.3522454,48.20416109999999],[16.3523593,48.20423709999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"122605534","geometry":{"type":"LineString","coordinates":[[16.3489086,48.204157899999984],[16.3489167,48.2040533],[16.348917,48.20403429999999],[16.3489087,48.2040135],[16.3488906,48.20397320000001]]},"properties":{"bus":"yes","highway":"platform","name":"Neubaugasse/Burggasse","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"122605530","geometry":{"type":"LineString","coordinates":[[16.3481986,48.20424209999999],[16.3484605,48.204232700000006]]},"properties":{"bus":"yes","highway":"platform","name":"Neubaugasse/Burggasse","network":"VOR","public_transport":"platform","shelter":"yes","wheelchair":"yes"}},{"type":"Feature","id":"4849376","geometry":{"type":"LineString","coordinates":[[16.34785,48.206648],[16.3476275,48.20561129999999],[16.3476294,48.20554250000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Myrthengasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"12254044","geometry":{"type":"LineString","coordinates":[[16.3476294,48.20554250000001],[16.3476511,48.20428460000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","name":"Myrthengasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"149681438","geometry":{"type":"LineString","coordinates":[[16.346903,48.20278619999999],[16.346897,48.2029469],[16.3469811,48.20300740000002],[16.3472791,48.20301760000001],[16.3473345,48.20305859999999],[16.3472647,48.20426349999997],[16.3472632,48.20428960000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hermanngasse","oneway":"yes"}},{"type":"Feature","id":"4849267","geometry":{"type":"LineString","coordinates":[[16.3460177,48.20279310000004],[16.346903,48.20278619999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Kandlgasse","oneway":"yes","oneway:bicycle":"no","source":"knowledge"}},{"type":"Feature","id":"4583458","geometry":{"type":"LineString","coordinates":[[16.3460103,48.204299100000014],[16.3460177,48.20279310000004]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Bandgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"54568121","geometry":{"type":"LineString","coordinates":[[16.3450175,48.202786299999985],[16.3450131,48.20283359999996],[16.3450171,48.204240200000015],[16.3449683,48.204306900000006],[16.3449069,48.2043788],[16.3448513,48.205642100000006],[16.3448576,48.205703],[16.3448647,48.20577229999998],[16.3449612,48.20624490000003],[16.3451294,48.20689870000001],[16.3452065,48.20719410000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zieglergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"313461800","geometry":{"type":"LineString","coordinates":[[16.3433906,48.20733470000002],[16.3432872,48.20702899999998],[16.3432083,48.206599799999964],[16.3432004,48.206473999999986],[16.3431095,48.2058825],[16.3431009,48.20582189999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"4996508","geometry":{"type":"LineString","coordinates":[[16.3449612,48.20624490000003],[16.3432083,48.206599799999964]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bernardgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"412060011","geometry":{"type":"LineString","coordinates":[[16.3431009,48.20582189999999],[16.3431025,48.20575850000003],[16.3431354,48.20439300000001],[16.3431405,48.204317]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"4849355","geometry":{"type":"LineString","coordinates":[[16.3415327,48.204326400000014],[16.3414026,48.20587089999998],[16.3414064,48.20593619999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Halbgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"184506228","geometry":{"type":"LineString","coordinates":[[16.3415327,48.204326400000014],[16.3416696,48.2027928]]},"properties":{"highway":"residential","maxspeed":"30","name":"Halbgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"148092693","geometry":{"type":"LineString","coordinates":[[16.3394082,48.210393899999985],[16.3395173,48.21033390000002],[16.3395557,48.2103128],[16.3399429,48.21012179999997],[16.3400169,48.21007380000003],[16.3400431,48.21005360000001],[16.3401096,48.21000049999998],[16.3401273,48.20998829999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Sanettystraße","oneway":"yes","surface":"concrete"}},{"type":"Feature","id":"148092692","geometry":{"type":"LineString","coordinates":[[16.3391479,48.21052739999999],[16.3393754,48.21041300000002],[16.3394082,48.210393899999985]]},"properties":{"highway":"residential","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes"}},{"type":"Feature","id":"26738034","geometry":{"type":"LineString","coordinates":[[16.3391479,48.21052739999999],[16.3393136,48.210567499999996],[16.3394577,48.21067959999999]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes"}},{"type":"Feature","id":"324297226","geometry":{"type":"LineString","coordinates":[[16.338893,48.20856659999998],[16.3389112,48.208605000000006],[16.3389436,48.20868530000001],[16.3389546,48.208720200000016],[16.3392716,48.20963359999999],[16.3393844,48.21026170000002],[16.3394082,48.210393899999985],[16.3394577,48.21067959999999],[16.3395047,48.21099079999999],[16.3395185,48.2111003],[16.3395497,48.21124259999999],[16.3395529,48.211257399999994],[16.3396782,48.2118639],[16.3397036,48.21198509999999]]},"properties":{"highway":"primary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"474377043","geometry":{"type":"LineString","coordinates":[[16.3549465,48.20914719999999],[16.3547195,48.20914590000001],[16.3543638,48.20917800000001],[16.3522989,48.20930559999999],[16.352211,48.209311100000036],[16.3521067,48.20932640000001],[16.3513885,48.209370199999995],[16.3513081,48.20936169999996],[16.3506627,48.20940300000001],[16.3505801,48.20940830000001],[16.3504741,48.209416000000004],[16.3492703,48.20950379999999],[16.3488839,48.20956899999999],[16.3487299,48.20959500000001],[16.3486606,48.20960869999999],[16.3485533,48.209629800000016],[16.3479752,48.2097205],[16.3478574,48.2097273],[16.3475416,48.20978220000001],[16.3474799,48.209805500000016],[16.3473726,48.20980230000001],[16.3470159,48.20987740000001],[16.346633,48.2099695],[16.3463364,48.21004210000001],[16.3463136,48.21005550000001],[16.3462305,48.210059099999995],[16.3454784,48.2102223],[16.344789,48.210375899999974],[16.3441357,48.210521099999994],[16.3440418,48.2105229],[16.3439782,48.210539799999964],[16.3438991,48.210560799999996],[16.3438279,48.21057969999998],[16.3435695,48.210606799999994],[16.3431361,48.21065250000004],[16.3429957,48.21066719999999],[16.342192,48.21074949999996],[16.3421146,48.21077539999999],[16.3417632,48.21081379999998],[16.3417123,48.210800800000015],[16.3405713,48.210921600000006],[16.34051,48.21092809999999],[16.3404366,48.210930399999995],[16.3401605,48.21096019999999],[16.3396516,48.211019300000004]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Josefstädter Straße"}},{"type":"Feature","id":"474377042","geometry":{"type":"LineString","coordinates":[[16.3549546,48.209271099999995],[16.3546653,48.2092619],[16.354516,48.209260700000016],[16.3538197,48.20930179999999],[16.3522748,48.20940169999997],[16.3521812,48.209407699999986],[16.3520792,48.20941149999999],[16.3518338,48.20942059999999],[16.3510244,48.20946169999999],[16.3506462,48.20948580000001],[16.350604,48.209516699999966],[16.3505539,48.20951790000001],[16.3504994,48.209518900000006],[16.3504726,48.20950679999996],[16.3496129,48.209564],[16.3493889,48.2095903],[16.3493152,48.20960099999999],[16.3492461,48.2096128],[16.3491811,48.20962309999999],[16.3490902,48.20963739999999],[16.3490214,48.2096473],[16.3489599,48.20965430000001],[16.3489169,48.2096607],[16.3488901,48.209681200000006],[16.3488384,48.209687700000046],[16.3487627,48.2096933],[16.3487083,48.209697800000015],[16.3486885,48.2097009],[16.3481652,48.20978259999998],[16.3478936,48.20982329999998],[16.3478339,48.209817499999986],[16.3475724,48.20986129999997],[16.3475523,48.20989209999999],[16.3469409,48.21002609999999],[16.3461467,48.210205900000005],[16.3457852,48.210287600000015],[16.3454936,48.21034129999998],[16.3448418,48.21048339999996],[16.3446299,48.210529699999995],[16.3443196,48.21059739999998],[16.3442255,48.21061800000001],[16.3442049,48.2106235],[16.3440787,48.21065759999999],[16.3439856,48.21068280000003],[16.3439395,48.2106952],[16.3438963,48.21070700000001],[16.3438756,48.21071269999999],[16.343864,48.210707299999996],[16.3438111,48.21070370000001],[16.3431439,48.21077519999997],[16.3422098,48.21086700000001],[16.3414112,48.210954000000015],[16.3412468,48.210970799999984],[16.3407965,48.211016599999994],[16.3405715,48.21103959999999],[16.3405172,48.21106139999998],[16.3404703,48.21106620000003],[16.3404092,48.211069899999984],[16.339698,48.211143899999996]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Josefstädter Straße"}},{"type":"Feature","id":"23985375","geometry":{"type":"LineString","coordinates":[[16.3398812,48.20951910000002],[16.3399002,48.2095171],[16.3414074,48.209334600000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pfeilgasse","surface":"asphalt"}},{"type":"Feature","id":"4583352","geometry":{"type":"LineString","coordinates":[[16.3398812,48.20951910000002],[16.3398588,48.209521600000016],[16.3397631,48.209532800000034],[16.3392716,48.20963359999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"50","name":"Pfeilgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4986573","geometry":{"type":"LineString","coordinates":[[16.338719,48.21075010000001],[16.3388804,48.21063029999999],[16.3391479,48.21052739999999]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes"}},{"type":"Feature","id":"250864445","geometry":{"type":"LineString","coordinates":[[16.3386767,48.20860579999999],[16.3387035,48.2086568],[16.3388743,48.20898159999999],[16.3389501,48.20917299999999],[16.3389935,48.20934270000001],[16.3390481,48.20964219999996],[16.3391488,48.21041389999999],[16.3391486,48.2104348],[16.3391479,48.21052739999999],[16.3391555,48.2105957],[16.3391559,48.210604399999994],[16.3392099,48.210958000000005],[16.3392222,48.2110059]]},"properties":{"highway":"pedestrian","name":"Lerchenfelder Gürtel"}},{"type":"Feature","id":"26332665","geometry":{"type":"LineString","coordinates":[[16.3389164,48.21217579999998],[16.3388599,48.21208609999999],[16.3387583,48.21193389999999],[16.3387072,48.21180580000001],[16.3386756,48.211696200000006],[16.3386743,48.21167750000001],[16.3386732,48.2116613],[16.33867,48.21161620000001],[16.338667,48.21157280000003],[16.3386774,48.211304299999995],[16.3386961,48.21109199999998],[16.3387005,48.21099719999998],[16.3387095,48.210876799999994],[16.338719,48.21075010000001],[16.3387135,48.21062119999999],[16.3386903,48.21006969999996],[16.3385974,48.20938989999999],[16.3385362,48.209171800000036],[16.3382498,48.208757899999995],[16.3382115,48.20870350000004],[16.3381825,48.20866240000001]]},"properties":{"highway":"primary","is_in":"Wien,Östereich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221","surface":"concrete"}},{"type":"Feature","id":"23842012","geometry":{"type":"LineString","coordinates":[[16.338893,48.20856659999998],[16.3387964,48.2085879],[16.3386767,48.20860579999999],[16.3383461,48.20865649999999],[16.3381825,48.20866240000001]]},"properties":{"highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"70843156","geometry":{"type":"LineString","coordinates":[[16.3381825,48.20866240000001],[16.3381316,48.20858049999998]]},"properties":{"highway":"primary","is_in":"Wien,Östereich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"5003917","geometry":{"type":"LineString","coordinates":[[16.3354543,48.20911000000001],[16.3357117,48.20995229999997],[16.3359671,48.21104060000002],[16.3359752,48.211083],[16.3359794,48.21109899999999]]},"properties":{"highway":"pedestrian","name":"Brunnengasse","surface":"asphalt"}},{"type":"Feature","id":"486145107","geometry":{"type":"LineString","coordinates":[[16.3380864,48.208702200000005],[16.3360405,48.2090192],[16.335627,48.20908320000001],[16.3355435,48.209096200000005],[16.3354543,48.20911000000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"486146201","geometry":{"type":"LineString","coordinates":[[16.333888,48.20920939999999],[16.3348105,48.209062500000044],[16.3353413,48.20897809999997]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"486145102","geometry":{"type":"LineString","coordinates":[[16.3379966,48.20856280000001],[16.337943,48.20858290000001],[16.3364081,48.20882180000001],[16.3355024,48.208956900000004]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"4583668","geometry":{"type":"LineString","coordinates":[[16.3379207,48.2086611],[16.3379767,48.20863970000002],[16.3380339,48.20861780000001],[16.3381316,48.20858049999998]]},"properties":{"highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"28984254","geometry":{"type":"LineString","coordinates":[[16.333911,48.20927689999999],[16.3353264,48.209058999999996],[16.3354337,48.20904250000004],[16.3355236,48.209028700000005],[16.336431,48.20888969999996],[16.3379207,48.2086611]]},"properties":{"cycleway":"no","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Thaliastraße","oneway":"no","surface":"asphalt"}},{"type":"Feature","id":"70843155","geometry":{"type":"LineString","coordinates":[[16.3381825,48.20866240000001],[16.3380598,48.208661800000016],[16.3380065,48.208661500000034],[16.3379207,48.2086611]]},"properties":{"highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4849351","geometry":{"type":"LineString","coordinates":[[16.3432004,48.206473999999986],[16.3427516,48.20651599999999],[16.3397225,48.2071095],[16.3395136,48.207158899999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bernardgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"73261335","geometry":{"type":"LineString","coordinates":[[16.3388375,48.208449900000005],[16.3388673,48.2085127],[16.338893,48.20856659999998]]},"properties":{"highway":"primary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"324297228","geometry":{"type":"LineString","coordinates":[[16.3388375,48.208449900000005],[16.3389884,48.20845299999999],[16.3391389,48.208456600000005]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"47379824","geometry":{"type":"LineString","coordinates":[[16.3381316,48.20858049999998],[16.3382698,48.20853930000001],[16.3387307,48.20846000000003],[16.3388375,48.208449900000005]]},"properties":{"highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"324297227","geometry":{"type":"LineString","coordinates":[[16.3391389,48.208456600000005],[16.3390143,48.20851329999999],[16.338893,48.20856659999998]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"106806632","geometry":{"type":"LineString","coordinates":[[16.339313,48.20842099999999],[16.339293,48.20842509999997],[16.3391389,48.208456600000005]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße","surface":"asphalt"}},{"type":"Feature","id":"211030127","geometry":{"type":"LineString","coordinates":[[16.3403589,48.210690099999994],[16.3403452,48.21064079999999],[16.3403301,48.210575000000006],[16.340197,48.21019079999999],[16.3401293,48.209994600000016],[16.3401273,48.20998829999999],[16.3400963,48.209920299999965],[16.3400341,48.20978149999999],[16.3398812,48.20951910000002],[16.3398513,48.20947469999996],[16.3396636,48.2091556],[16.3394583,48.20876839999997],[16.3393516,48.2085553],[16.3393375,48.20852550000001],[16.3393219,48.20848149999998],[16.3393164,48.2084524],[16.339313,48.20842099999999]]},"properties":{"highway":"residential","maxspeed":"50","name":"Blindengasse","source":"yahoo","surface":"asphalt","voltage":"600"}},{"type":"Feature","id":"26621213","geometry":{"type":"LineString","coordinates":[[16.3383682,48.20611389999996],[16.3383989,48.20618239999999],[16.3384309,48.20635200000001],[16.3388657,48.207231000000036]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Wimbergergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"189893586","geometry":{"type":"LineString","coordinates":[[16.34785,48.206648],[16.3456095,48.20711210000002],[16.3452065,48.20719410000001],[16.344842,48.207274299999995],[16.3440217,48.207440899999995],[16.3435406,48.2075366],[16.3434482,48.20755600000001],[16.3433517,48.207576500000016],[16.3430014,48.20765069999999],[16.3425313,48.20774890000001],[16.3421754,48.207826299999965],[16.3416718,48.207929699999994],[16.3414028,48.207982000000015],[16.3394293,48.20839749999999],[16.3393348,48.2084165],[16.339313,48.20842099999999]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Lerchenfelder Straße"}},{"type":"Feature","id":"4585729","geometry":{"type":"LineString","coordinates":[[16.3395136,48.207158899999996],[16.3395009,48.2071603],[16.3388657,48.207231000000036],[16.3382321,48.207310500000006],[16.338148,48.20732100000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bernardgasse","oneway":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"23799236","geometry":{"type":"LineString","coordinates":[[16.3345715,48.206484899999964],[16.3350018,48.207761499999975],[16.335219,48.208405700000014],[16.3354089,48.208969199999984],[16.3354337,48.20904250000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brunnengasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"47379823","geometry":{"type":"LineString","coordinates":[[16.3381316,48.20858049999998],[16.3380922,48.20852210000001],[16.3377492,48.208013600000015],[16.3373546,48.207397000000014]]},"properties":{"highway":"primary","is_in":"Wien,Östereich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"4986591","geometry":{"type":"LineString","coordinates":[[16.335219,48.208405700000014],[16.3362157,48.20825120000001],[16.3377492,48.208013600000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Menzelgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"118102638","geometry":{"type":"LineString","coordinates":[[16.3369327,48.206173699999994],[16.3367461,48.2061832],[16.3365797,48.20618719999999]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Neustiftgasse","oneway":"yes"}},{"type":"Feature","id":"4408002","geometry":{"type":"LineString","coordinates":[[16.3365797,48.20618719999999],[16.3355684,48.20633160000003],[16.3345715,48.206484899999964]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Koppstraße","oneway":"yes","ref":"B223"}},{"type":"Feature","id":"4583455","geometry":{"type":"LineString","coordinates":[[16.336431,48.20888969999996],[16.3364081,48.20882180000001],[16.3362157,48.20825120000001],[16.3359985,48.20760710000002],[16.3355684,48.20633160000003]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Hippgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"118102647","geometry":{"type":"LineString","coordinates":[[16.3371651,48.20616480000001],[16.3369327,48.206173699999994]]},"properties":{"bridge":"yes","busway":"lane","highway":"primary","lit":"yes","maxspeed":"50","name":"Neustiftgasse","oneway":"yes"}},{"type":"Feature","id":"4583745","geometry":{"type":"LineString","coordinates":[[16.3373996,48.206152599999996],[16.3372714,48.2061592],[16.3371651,48.20616480000001]]},"properties":{"busway":"lane","highway":"primary","lit":"yes","maxspeed":"50","name":"Neustiftgasse","oneway":"yes"}},{"type":"Feature","id":"149681441","geometry":{"type":"LineString","coordinates":[[16.3460177,48.20279310000004],[16.3451006,48.20278719999996],[16.3450175,48.202786299999985],[16.3449442,48.202787900000004],[16.3432616,48.2027942],[16.3432365,48.20279380000002],[16.3431831,48.202792999999986],[16.3430995,48.2027928],[16.3416696,48.2027928],[16.3403178,48.20280079999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Kandlgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"205992795","geometry":{"type":"LineString","coordinates":[[16.33945,48.2027664],[16.3403178,48.20280079999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Kandlgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"172232745","geometry":{"type":"LineString","coordinates":[[16.3385008,48.204259500000035],[16.3399339,48.20432210000001],[16.3400243,48.20432539999999],[16.3400452,48.204325900000015],[16.3400643,48.20432600000001],[16.3401255,48.20432729999999],[16.3403323,48.2043266],[16.3415327,48.204326400000014],[16.3430368,48.20431880000001],[16.3431405,48.204317],[16.3432249,48.20431640000001],[16.3448601,48.204306900000006],[16.3449683,48.204306900000006],[16.3450705,48.204306299999985],[16.3452198,48.2043051],[16.3460103,48.204299100000014],[16.3467723,48.204293300000046],[16.3472632,48.20428960000001],[16.3476511,48.20428460000002],[16.3484036,48.20426660000001],[16.3488621,48.2042481],[16.348954,48.20424600000001],[16.3490571,48.2042443],[16.3496773,48.204215199999965],[16.3503893,48.204217200000045],[16.3504798,48.20421699999997],[16.3510974,48.204222000000016],[16.3513099,48.20422300000001],[16.3514539,48.20422800000003]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"172232746","geometry":{"type":"LineString","coordinates":[[16.337525,48.20422429999999],[16.3376421,48.2042247],[16.3385008,48.204259500000035]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"2","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Burggasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4583595","geometry":{"type":"LineString","coordinates":[[16.3561842,48.205495900000045],[16.3549104,48.2054325],[16.3544088,48.205410900000004],[16.3542301,48.2054023],[16.3532052,48.20535960000001],[16.3527099,48.205335899999994],[16.3523636,48.2053181],[16.3522422,48.20531159999999],[16.3518595,48.20529139999999],[16.3516309,48.20527809999999],[16.3515375,48.205275900000004],[16.3514535,48.20527820000001],[16.3511485,48.20529620000002],[16.351127,48.205297599999994],[16.3497239,48.20538690000001],[16.3492057,48.20542369999998],[16.3491133,48.20543240000001],[16.3490291,48.20543910000001],[16.3485764,48.205470899999995],[16.3476294,48.20554250000001],[16.3450896,48.20569410000002],[16.3449438,48.205697499999985],[16.3448576,48.205703],[16.3447401,48.20571039999999],[16.3431982,48.205815299999955],[16.3431009,48.20582189999999],[16.3430145,48.20582709999999],[16.3414807,48.20593119999998],[16.3414064,48.20593619999997],[16.3398126,48.20603909999997],[16.3397177,48.20604540000002],[16.3396978,48.20604689999999],[16.3396148,48.206050000000005],[16.3393553,48.20606219999999],[16.3383682,48.20611389999996],[16.3375169,48.20614789999999],[16.3373996,48.206152599999996]]},"properties":{"bicycle":"yes","busway":"lane","cycleway":"share_busway","highway":"secondary","is_in":"Austria, Europe,Vienna,Wien","lanes":"1","lit":"yes","maxspeed":"30","maxspeed:psv":"50","name":"Neustiftgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"140768281","geometry":{"type":"LineString","coordinates":[[16.3374004,48.20551130000001],[16.3371741,48.20550940000001]]},"properties":{"highway":"service","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes"}},{"type":"Feature","id":"140469819","geometry":{"type":"LineString","coordinates":[[16.3371741,48.20550940000001],[16.3368806,48.20549870000002]]},"properties":{"bridge":"yes","foot":"yes","highway":"service","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes"}},{"type":"Feature","id":"118102645","geometry":{"type":"LineString","coordinates":[[16.336996,48.2041926],[16.3370141,48.20419340000001]]},"properties":{"admin_level":"9","boundary":"administrative","bridge":"yes","highway":"primary","lit":"yes","maxspeed":"50","name":"Burggasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"147402927","geometry":{"type":"LineString","coordinates":[[16.3370141,48.20419340000001],[16.3372343,48.20420390000001]]},"properties":{"bridge":"yes","highway":"primary","lanes":"3","layer":"1","lit":"yes","maxspeed":"50","name":"Burggasse","oneway":"yes","surface":"asphalt","turn:lanes":"left|left|through"}},{"type":"Feature","id":"118102650","geometry":{"type":"LineString","coordinates":[[16.3372343,48.20420390000001],[16.3373023,48.204207199999985],[16.3373869,48.2042112],[16.337525,48.20422429999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Burggasse","oneway":"yes","surface":"asphalt","turn:lanes":"left|left|through"}},{"type":"Feature","id":"26738383","geometry":{"type":"LineString","coordinates":[[16.337525,48.20422429999999],[16.3375177,48.204299700000036],[16.3374004,48.20551130000001],[16.3373452,48.206081600000005],[16.3373996,48.206152599999996],[16.3374543,48.20623789999999],[16.338148,48.20732100000001],[16.3387478,48.20828740000002],[16.3388216,48.208416],[16.3388375,48.208449900000005]]},"properties":{"highway":"primary","is_in":"Wien,Österreich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"4583748","geometry":{"type":"LineString","coordinates":[[16.3367537,48.2041797],[16.336864,48.2041863],[16.3369348,48.2041897],[16.336996,48.2041926]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"primary","lit":"yes","maxspeed":"50","name":"Burggasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"379080492","geometry":{"type":"LineString","coordinates":[[16.3370066,48.20413500000001],[16.3372885,48.20414640000004]]},"properties":{"bus":"yes","highway":"platform","name":"Burggasse-Stadthalle","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"161604958","geometry":{"type":"LineString","coordinates":[[16.3368806,48.20549870000002],[16.3368345,48.20547210000001],[16.3367966,48.205450299999995],[16.3367966,48.2053966],[16.3369055,48.2042663],[16.3369348,48.2041897]]},"properties":{"highway":"service","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes"}},{"type":"Feature","id":"26242735","geometry":{"type":"LineString","coordinates":[[16.3348358,48.20539819999999],[16.3356535,48.20543319999999],[16.3366347,48.205475199999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Herbststraße"}},{"type":"Feature","id":"140469776","geometry":{"type":"LineString","coordinates":[[16.3366347,48.205475199999995],[16.3367887,48.20551660000001]]},"properties":{"bicycle":"designated","foot":"designated","highway":"path","name":"Herbststraße","segregated":"no","source":"yahoo"}},{"type":"Feature","id":"140768326","geometry":{"type":"LineString","coordinates":[[16.3373546,48.207397000000014],[16.3365797,48.20618719999999],[16.3366347,48.205475199999995],[16.3367491,48.2042577],[16.3367537,48.2041797]]},"properties":{"highway":"primary","is_in":"Wien,Östereich,Europe","lanes":"3","lit":"yes","maxspeed":"50","name":"Lerchenfelder Gürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"26242732","geometry":{"type":"LineString","coordinates":[[16.3346724,48.20539120000004],[16.3347508,48.205394600000005],[16.3348358,48.20539819999999]]},"properties":{"foot":"yes","highway":"cycleway","name":"Herbststraße"}},{"type":"Feature","id":"26242733","geometry":{"type":"LineString","coordinates":[[16.3346724,48.20539120000004],[16.3346622,48.2054991],[16.3346588,48.205530099999976],[16.3346209,48.20595620000003],[16.3345715,48.206484899999964]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ludo-Hartmann-Platz","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"5743296","geometry":{"type":"LineString","coordinates":[[16.3348009,48.204096400000026],[16.3347565,48.20454380000001],[16.3347362,48.2047489],[16.3346724,48.20539120000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brunnengasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"192640518","geometry":{"type":"LineString","coordinates":[[16.3355684,48.20633160000003],[16.3356535,48.20543319999999],[16.3357604,48.20413780000001]]},"properties":{"cycleway":"opposite","highway":"residential","kerb":"yes","maxspeed":"30","name":"Hippgasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both"}},{"type":"Feature","id":"401254052","geometry":{"type":"LineString","coordinates":[[16.3357604,48.20413780000001],[16.3366507,48.20417710000001],[16.3367537,48.2041797]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"primary","lanes":"4","lanes:psv":"3","lit":"yes","maxspeed":"50","name":"Gablenzgasse","oneway":"yes","ref":"B223","turn:lanes":"through|through|through|right"}},{"type":"Feature","id":"4583254","geometry":{"type":"LineString","coordinates":[[16.3318878,48.2095855],[16.331937,48.2096497],[16.3324407,48.210307099999994],[16.3326368,48.210562899999985]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Fröbelgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"112630083","geometry":{"type":"LineString","coordinates":[[16.333911,48.20927689999999],[16.3331067,48.209399500000046],[16.3330136,48.20941369999997]]},"properties":{"cycleway":"no","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Östereich,Europe","maxspeed":"50","name":"Hofferplatz"}},{"type":"Feature","id":"192640517","geometry":{"type":"LineString","coordinates":[[16.3326368,48.210562899999985],[16.3333456,48.210419],[16.3357117,48.20995229999997],[16.3385974,48.20938989999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Grundsteingasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"4583248","geometry":{"type":"LineString","coordinates":[[16.3330136,48.20941369999997],[16.3330387,48.209489700000006],[16.3333456,48.210419],[16.3335545,48.2113272],[16.3335684,48.21139049999999],[16.3335807,48.21144910000001],[16.3337067,48.212047299999995],[16.3337573,48.212399000000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kirchstetterngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"486145097","geometry":{"type":"LineString","coordinates":[[16.3353476,48.20912630000001],[16.3331374,48.209471699999995]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"12288414","geometry":{"type":"LineString","coordinates":[[16.335219,48.208405700000014],[16.3336933,48.20863739999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Menzelgasse","oneway":"yes"}},{"type":"Feature","id":"4474215","geometry":{"type":"LineString","coordinates":[[16.333911,48.20927689999999],[16.333888,48.20920939999999],[16.3336933,48.20863739999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hofferplatz","oneway":"yes"}},{"type":"Feature","id":"29107339","geometry":{"type":"LineString","coordinates":[[16.332789,48.208754400000004],[16.332805,48.2088018],[16.3329903,48.209352499999994],[16.3330136,48.20941369999997]]},"properties":{"highway":"residential","maxspeed":"50","name":"Hofferplatz","oneway":"yes"}},{"type":"Feature","id":"486145099","geometry":{"type":"LineString","coordinates":[[16.3330805,48.20933629999999],[16.3338014,48.20922300000001],[16.333888,48.20920939999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Hofferplatz"}},{"type":"Feature","id":"122967030","geometry":{"type":"LineString","coordinates":[[16.3298096,48.212011200000006],[16.3298015,48.21194589999999],[16.3297283,48.21135389999998],[16.32966,48.21105219999998],[16.3295022,48.210598800000014],[16.3290905,48.21008169999999],[16.3290408,48.2100193]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lindauergasse","oneway":"yes"}},{"type":"Feature","id":"4986587","geometry":{"type":"LineString","coordinates":[[16.3310016,48.21086980000001],[16.331207,48.210770499999995],[16.3317489,48.21056729999998],[16.3319599,48.21049259999998],[16.3324407,48.210307099999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bertoligasse","oneway":"no","surface":"cobblestone"}},{"type":"Feature","id":"8086400","geometry":{"type":"LineString","coordinates":[[16.3326368,48.210562899999985],[16.3321219,48.21066579999999],[16.3318398,48.21072079999999],[16.3312276,48.210836099999995],[16.3310016,48.21086980000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Grundsteingasse","oneway":"yes"}},{"type":"Feature","id":"4789264","geometry":{"type":"LineString","coordinates":[[16.3317489,48.21056729999998],[16.3314005,48.210123399999986]]},"properties":{"highway":"residential","maxspeed":"30","name":"Liebhartsgasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"29107417","geometry":{"type":"LineString","coordinates":[[16.3317489,48.21056729999998],[16.3318398,48.21072079999999]]},"properties":{"highway":"footway","name":"Liebhartsgasse"}},{"type":"Feature","id":"4986569","geometry":{"type":"LineString","coordinates":[[16.3310016,48.21086980000001],[16.3308223,48.21090239999998],[16.3303835,48.21037430000001],[16.3300653,48.20993630000004],[16.3300176,48.20987059999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haberlgasse","oneway":"yes"}},{"type":"Feature","id":"486145093","geometry":{"type":"LineString","coordinates":[[16.3328997,48.209368100000006],[16.3328538,48.2093663],[16.3320066,48.20949300000001],[16.3309894,48.209645800000004],[16.330407,48.20973900000001],[16.3303694,48.209751900000015],[16.3300683,48.20979790000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"112630084","geometry":{"type":"LineString","coordinates":[[16.3330136,48.20941369999997],[16.3329191,48.209427800000014],[16.3320306,48.20956350000003],[16.3318878,48.2095855],[16.3310752,48.20970890000001],[16.330103,48.20985749999997],[16.3300176,48.20987059999999]]},"properties":{"cycleway":"no","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Thaliastraße"}},{"type":"Feature","id":"486145095","geometry":{"type":"LineString","coordinates":[[16.3329433,48.209491799999995],[16.331937,48.2096497],[16.3311282,48.20977639999998],[16.3305748,48.209859600000016],[16.3301451,48.20992430000004],[16.3300653,48.20993630000004],[16.3299596,48.20995199999999],[16.3290905,48.21008169999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"192640523","geometry":{"type":"LineString","coordinates":[[16.3314005,48.210123399999986],[16.3311282,48.20977639999998],[16.3310752,48.20970890000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Liebhartsgasse","oneway":"yes"}},{"type":"Feature","id":"486146200","geometry":{"type":"LineString","coordinates":[[16.3280668,48.210095499999994],[16.3271037,48.21024589999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Richard-Wagner-Platz"}},{"type":"Feature","id":"192653304","geometry":{"type":"LineString","coordinates":[[16.3280906,48.21016430000003],[16.3271266,48.21031000000002]]},"properties":{"cycleway":"no","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Richard-Wagner-Platz"}},{"type":"Feature","id":"9866343","geometry":{"type":"LineString","coordinates":[[16.3280906,48.21016430000003],[16.3281341,48.21022320000003],[16.3284762,48.2106866],[16.3285498,48.21074229999999],[16.3286098,48.21077500000001],[16.3286684,48.210937099999995],[16.3287314,48.21112210000001],[16.3287685,48.211189200000035],[16.3288018,48.211290099999985],[16.3288179,48.21134599999999],[16.3288997,48.21162659999999],[16.3289048,48.21167700000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Deinhardsteingasse","oneway":"yes"}},{"type":"Feature","id":"486146199","geometry":{"type":"LineString","coordinates":[[16.3271037,48.21024589999999],[16.3261261,48.2103951],[16.3253148,48.21051829999999],[16.3252734,48.21051059999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"192653305","geometry":{"type":"LineString","coordinates":[[16.3271266,48.21031000000002],[16.3261491,48.210463000000004],[16.3253218,48.210587900000036],[16.3252037,48.21060640000002],[16.3250818,48.210625300000004],[16.3241617,48.2107675],[16.3237391,48.210829099999984],[16.3231119,48.21092540000001],[16.3227423,48.2109801],[16.3220749,48.211082199999964],[16.3210464,48.21124090000001],[16.3206501,48.2113013],[16.3200065,48.211398799999984],[16.3196513,48.211453199999994]]},"properties":{"cycleway":"no","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Thaliastraße"}},{"type":"Feature","id":"4986585","geometry":{"type":"LineString","coordinates":[[16.3271266,48.21031000000002],[16.3271487,48.2103764],[16.327313,48.210871199999985],[16.3272905,48.210925799999984],[16.3272508,48.21098760000001],[16.3273139,48.2114019],[16.3273537,48.21159299999999],[16.3274045,48.211931900000025],[16.3273792,48.2120194],[16.3273041,48.212551099999985],[16.3273009,48.21260319999999],[16.3272976,48.2126585],[16.3272921,48.21270270000002],[16.3272103,48.2133556],[16.3272018,48.21342379999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blumberggasse","oneway":"yes"}},{"type":"Feature","id":"4986575","geometry":{"type":"LineString","coordinates":[[16.3254075,48.211218],[16.3255156,48.211201399999965],[16.3263705,48.21107030000002],[16.3272905,48.210925799999984],[16.3285498,48.21074229999999],[16.3295022,48.210598800000014],[16.3303835,48.21037430000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bachgasse"}},{"type":"Feature","id":"29109676","geometry":{"type":"LineString","coordinates":[[16.3263705,48.21107030000002],[16.3261733,48.21052929999999],[16.3261491,48.210463000000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wendgasse","oneway":"yes"}},{"type":"Feature","id":"29107726","geometry":{"type":"LineString","coordinates":[[16.3266715,48.20903820000001],[16.3268497,48.20953610000001],[16.3271037,48.21024589999999],[16.3271266,48.21031000000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Richard-Wagner-Platz","oneway":"yes"}},{"type":"Feature","id":"192653297","geometry":{"type":"LineString","coordinates":[[16.3218309,48.20977690000001],[16.3226657,48.209649600000006],[16.3237295,48.209487300000006],[16.3246648,48.209344499999986],[16.3247731,48.209328],[16.3248699,48.209313200000025],[16.3257168,48.20918389999997],[16.3266715,48.20903820000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hasnerstraße","surface":"asphalt"}},{"type":"Feature","id":"486145091","geometry":{"type":"LineString","coordinates":[[16.3299047,48.209823400000005],[16.3294426,48.209889499999974],[16.329018,48.2099503],[16.3280668,48.210095499999994]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"36335937","geometry":{"type":"LineString","coordinates":[[16.3278219,48.20938670000001],[16.3268497,48.20953610000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Richard-Wagner-Platz","oneway":"yes"}},{"type":"Feature","id":"436724659","geometry":{"type":"LineString","coordinates":[[16.3300176,48.20987059999999],[16.3299306,48.2098838],[16.3290408,48.2100193],[16.3280906,48.21016430000003]]},"properties":{"cycleway":"no","foot":"use_sidepath","highway":"secondary","is_in":"Wien,Östereich,Europe","lit":"yes","maxspeed":"50","name":"Thaliastraße"}},{"type":"Feature","id":"475890997","geometry":{"type":"LineString","coordinates":[[16.3253461,48.21066029999997],[16.3253877,48.21065490000001],[16.3258243,48.210587799999985],[16.3261733,48.21052929999999],[16.3271487,48.2103764],[16.3281341,48.21022320000003],[16.3290905,48.21008169999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Thaliastraße"}},{"type":"Feature","id":"192653298","geometry":{"type":"LineString","coordinates":[[16.3278515,48.20885820000001],[16.3286188,48.2087411],[16.3295803,48.20859440000001],[16.3305762,48.208442399999996],[16.3315962,48.2082867],[16.3325799,48.20813659999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hasnerstraße"}},{"type":"Feature","id":"192653293","geometry":{"type":"LineString","coordinates":[[16.3276499,48.20888889999998],[16.3277324,48.20887640000001],[16.3278515,48.20885820000001]]},"properties":{"foot":"yes","highway":"cycleway","name":"Hasnerstraße"}},{"type":"Feature","id":"192653303","geometry":{"type":"LineString","coordinates":[[16.3266715,48.20903820000001],[16.3276499,48.20888889999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Richard-Wagner-Platz","surface":"asphalt"}},{"type":"Feature","id":"29107696","geometry":{"type":"LineString","coordinates":[[16.3280906,48.21016430000003],[16.3280668,48.210095499999994],[16.3278219,48.20938670000001],[16.3276499,48.20888889999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Richard-Wagner-Platz","oneway":"yes"}},{"type":"Feature","id":"192653296","geometry":{"type":"LineString","coordinates":[[16.3327599,48.20810869999997],[16.3334756,48.20799790000001],[16.3350018,48.207761499999975],[16.3359985,48.20760710000002],[16.3373546,48.207397000000014]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hasnerstraße"}},{"type":"Feature","id":"29107347","geometry":{"type":"LineString","coordinates":[[16.3336933,48.20863739999996],[16.3334756,48.20799790000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Neumayrgasse","oneway":"yes"}},{"type":"Feature","id":"37074289","geometry":{"type":"LineString","coordinates":[[16.3325799,48.20813659999999],[16.3326678,48.20812300000003],[16.3327599,48.20810869999997]]},"properties":{"foot":"yes","highway":"cycleway","name":"Hasnerstraße"}},{"type":"Feature","id":"192640524","geometry":{"type":"LineString","coordinates":[[16.3334756,48.20799790000001],[16.3335981,48.206639499999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Neumayrgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"5003921","geometry":{"type":"LineString","coordinates":[[16.3319441,48.206258100000014],[16.3336562,48.206002799999965]]},"properties":{"highway":"residential","maxspeed":"30","name":"Nödlgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"26242727","geometry":{"type":"LineString","coordinates":[[16.3345715,48.206484899999964],[16.3335981,48.206639499999994]]},"properties":{"highway":"primary","lit":"yes","maxspeed":"50","name":"Ludo-Hartmann-Platz","oneway":"yes","ref":"B223"}},{"type":"Feature","id":"4789243","geometry":{"type":"LineString","coordinates":[[16.3335981,48.206639499999994],[16.3336562,48.206002799999965],[16.3336635,48.205922300000026],[16.3337035,48.20548400000001],[16.3337106,48.2054062],[16.3337157,48.20535029999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ludo-Hartmann-Platz","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"26242731","geometry":{"type":"LineString","coordinates":[[16.3337157,48.20535029999999],[16.3341998,48.205371000000014],[16.3342141,48.20537160000001],[16.3346724,48.20539120000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ludo-Hartmann-Platz"}},{"type":"Feature","id":"5003918","geometry":{"type":"LineString","coordinates":[[16.3317388,48.20565149999999],[16.3318294,48.205637800000005],[16.3328649,48.2054809],[16.3337157,48.20535029999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Herbststraße"}},{"type":"Feature","id":"26231343","geometry":{"type":"LineString","coordinates":[[16.3277427,48.20625720000001],[16.3277635,48.206317299999995],[16.3281111,48.207318799999996],[16.3281477,48.207417899999996],[16.3281964,48.207468999999975],[16.3286188,48.2087411],[16.329018,48.2099503],[16.3290408,48.2100193]]},"properties":{"highway":"residential","maxspeed":"30","name":"Habichergasse","oneway":"yes"}},{"type":"Feature","id":"37136213","geometry":{"type":"LineString","coordinates":[[16.3281111,48.207318799999996],[16.3285898,48.20724559999999]]},"properties":{"bicycle":"no","highway":"pedestrian","horse":"no","maxspeed":"30","motor_vehicle":"destination","name":"Koppstraße"}},{"type":"Feature","id":"4789261","geometry":{"type":"LineString","coordinates":[[16.3317388,48.20565149999999],[16.3316338,48.20566740000001],[16.3307506,48.20580129999999],[16.3297239,48.20595690000002],[16.3287135,48.20611009999999],[16.3278607,48.20623930000002],[16.3277427,48.20625720000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Herbststraße"}},{"type":"Feature","id":"436724662","geometry":{"type":"LineString","coordinates":[[16.3300176,48.20987059999999],[16.3299963,48.20980829999999],[16.3295803,48.20859440000001],[16.3291379,48.207327099999986],[16.3290798,48.207165799999984],[16.3287135,48.20611009999999],[16.3282896,48.204854600000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haberlgasse","oneway":"yes"}},{"type":"Feature","id":"146982061","geometry":{"type":"LineString","coordinates":[[16.3273358,48.20500279999999],[16.3273577,48.205072],[16.3274023,48.205212700000004],[16.3277093,48.20615480000001],[16.3277427,48.20625720000001]]},"properties":{"highway":"residential","maxspeed":"50","name":"Habichergasse","oneway":"no","source":"yahoo","surface":"concrete:plates"}},{"type":"Feature","id":"4583649","geometry":{"type":"LineString","coordinates":[[16.3261491,48.210463000000004],[16.3261261,48.2103951],[16.3257168,48.20918389999997],[16.3252843,48.20790389999999],[16.3248761,48.206695999999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ganglbauergasse","oneway":"yes"}},{"type":"Feature","id":"192653302","geometry":{"type":"LineString","coordinates":[[16.3262565,48.207762599999995],[16.3266715,48.20903820000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Hyrtlgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"4469955","geometry":{"type":"LineString","coordinates":[[16.3254263,48.20529809999999],[16.325847,48.20655070000001],[16.3262565,48.207762599999995]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Hyrtlgasse","oneway":"yes"}},{"type":"Feature","id":"26231342","geometry":{"type":"LineString","coordinates":[[16.3277427,48.20625720000001],[16.3276684,48.20626880000003],[16.3268042,48.20640320000001],[16.325847,48.20655070000001],[16.3248761,48.206695999999994],[16.3240276,48.206830800000006],[16.3239326,48.20684589999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Herbststraße","surface":"concrete:plates"}},{"type":"Feature","id":"26242729","geometry":{"type":"LineString","coordinates":[[16.3335981,48.206639499999994],[16.3322598,48.20684190000003],[16.3321475,48.206858900000015],[16.3320454,48.20687459999999],[16.3318047,48.206912200000005],[16.3311621,48.207010699999984],[16.3301396,48.207169300000004],[16.3291379,48.207327099999986],[16.3281964,48.207468999999975],[16.3272157,48.20761270000003],[16.3262565,48.207762599999995],[16.3252843,48.20790389999999],[16.3248665,48.207970200000005],[16.3244396,48.208035600000045],[16.3243315,48.20805050000001],[16.3242174,48.208068200000014],[16.3232987,48.2082111],[16.3222476,48.20836750000001],[16.3215343,48.208480500000036],[16.321202,48.208529999999996],[16.3201785,48.2086908],[16.3191179,48.2088468],[16.3187311,48.20890689999999],[16.3180554,48.209014800000006],[16.3159737,48.209332399999994]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Koppstraße","oneway":"yes","ref":"B223"}},{"type":"Feature","id":"9866320","geometry":{"type":"LineString","coordinates":[[16.3276499,48.20888889999998],[16.3272157,48.20761270000003],[16.3268042,48.20640320000001],[16.3263773,48.2051486]]},"properties":{"highway":"residential","maxspeed":"30","name":"Haymerlegasse","oneway":"yes"}},{"type":"Feature","id":"26242730","geometry":{"type":"LineString","coordinates":[[16.3337157,48.20535029999999],[16.3338056,48.20412779999998],[16.3338109,48.20405640000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Neumayrgasse"}},{"type":"Feature","id":"5003920","geometry":{"type":"LineString","coordinates":[[16.3328649,48.2054809],[16.3324159,48.2042232]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schinnaglgasse","oneway":"yes"}},{"type":"Feature","id":"228701465","geometry":{"type":"LineString","coordinates":[[16.3339175,48.20333230000003],[16.3338714,48.20343679999999],[16.3338374,48.20381029999996],[16.3338219,48.203953799999994],[16.3338109,48.20405640000001]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Moeringgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5003731","geometry":{"type":"LineString","coordinates":[[16.3320306,48.20956350000003],[16.3320066,48.20949300000001],[16.3315962,48.2082867],[16.3311621,48.207010699999984],[16.3307506,48.20580129999999],[16.3303495,48.204622400000005],[16.3303218,48.20454090000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lcn":"yes","maxspeed":"30","name":"Fröbelgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"37524624","geometry":{"type":"LineString","coordinates":[[16.3302082,48.204556999999994],[16.3303218,48.20454090000001],[16.3304125,48.2045286]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Gablenzgasse","ref":"B223"}},{"type":"Feature","id":"37524625","geometry":{"type":"LineString","coordinates":[[16.3304125,48.2045286],[16.3304534,48.20452260000002],[16.3313142,48.20439669999999],[16.3317565,48.20432249999999],[16.3319741,48.204290000000015],[16.3324159,48.2042232],[16.3335472,48.20404810000002],[16.3336727,48.20405210000001],[16.3338109,48.20405640000001],[16.3339158,48.20406059999999],[16.3343615,48.20408029999996],[16.3348009,48.204096400000026],[16.3357604,48.20413780000001]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Gablenzgasse","oneway":"yes","ref":"B223"}},{"type":"Feature","id":"379080489","geometry":{"type":"LineString","coordinates":[[16.3315093,48.20432349999999],[16.3318838,48.20426570000001]]},"properties":{"bench":"yes","highway":"platform","name":"Vogelweidpark/Stadthalle","public_transport":"platform","shelter":"yes"}},{"type":"Feature","id":"4474216","geometry":{"type":"LineString","coordinates":[[16.3313142,48.20439669999999],[16.3317114,48.20557059999999],[16.3317388,48.20565149999999],[16.331764,48.20572579999998],[16.3319441,48.206258100000014],[16.3321195,48.2067763],[16.3321475,48.206858900000015],[16.3321674,48.206917799999985],[16.3325799,48.20813659999999],[16.332789,48.208754400000004]]},"properties":{"highway":"residential","maxspeed":"50","name":"Kirchstetterngasse","oneway":"yes"}},{"type":"Feature","id":"5003725","geometry":{"type":"LineString","coordinates":[[16.33134,48.20383480000001],[16.3302052,48.203831199999996]]},"properties":{"created_by":"Potlatch 0.4c","highway":"living_street","name":"Volkergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5838279","geometry":{"type":"LineString","coordinates":[[16.3273358,48.20500279999999],[16.3273121,48.2049375],[16.3272638,48.204804499999966],[16.3271612,48.20446340000001]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Camillo-Sitte-Gasse","surface":"asphalt"}},{"type":"Feature","id":"31508908","geometry":{"type":"LineString","coordinates":[[16.317234,48.20653379999999],[16.3174098,48.20650699999999],[16.3174734,48.206497300000024],[16.3182886,48.2063728],[16.3193353,48.206213100000014],[16.3203445,48.20605900000004],[16.3208186,48.205983599999996],[16.3210437,48.20594539999999],[16.3213763,48.205891399999956],[16.321608,48.205856600000004],[16.3224385,48.205733399999986],[16.3234942,48.20557869999996],[16.3244507,48.2054421],[16.3250771,48.20534910000001],[16.3254263,48.20529809999999],[16.3263773,48.2051486],[16.3271234,48.20503579999999],[16.3272355,48.20501840000003],[16.3273358,48.20500279999999],[16.3274318,48.20498789999999],[16.3282896,48.204854600000004],[16.3292926,48.204699300000044],[16.3301487,48.20456619999999],[16.3302082,48.204556999999994]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Gablenzgasse","oneway":"yes","ref":"B223"}},{"type":"Feature","id":"4950565","geometry":{"type":"LineString","coordinates":[[16.3292926,48.204699300000044],[16.3297239,48.20595690000002],[16.3301396,48.207169300000004],[16.3305762,48.208442399999996],[16.3309894,48.209645800000004],[16.3310752,48.20970890000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Liebhartsgasse","oneway":"yes"}},{"type":"Feature","id":"29104202","geometry":{"type":"LineString","coordinates":[[16.3269935,48.20349439999998],[16.3269031,48.20349859999999],[16.3262582,48.20352889999998],[16.3255003,48.2035611]]},"properties":{"highway":"residential","maxspeed":"30","name":"Walkürengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"189028774","geometry":{"type":"LineString","coordinates":[[16.3262582,48.20352889999998],[16.3263145,48.204454699999985]]},"properties":{"cycleway":"opposite","highway":"living_street","name":"Brunhildengasse","oneway":"yes"}},{"type":"Feature","id":"5003724","geometry":{"type":"LineString","coordinates":[[16.3298996,48.203564400000005],[16.3280309,48.2036597]]},"properties":{"highway":"residential","maxspeed":"30","name":"Giselhergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"25940679","geometry":{"type":"LineString","coordinates":[[16.3302052,48.203831199999996],[16.3300885,48.203834299999954],[16.3299769,48.203845]]},"properties":{"highway":"residential","maxspeed":"30","name":"Volkergasse","oneway":"no","source":"yahoo"}},{"type":"Feature","id":"5003712","geometry":{"type":"LineString","coordinates":[[16.3254857,48.20453789999999],[16.3263145,48.204454699999985],[16.32714,48.204358799999994],[16.327222,48.20435050000003],[16.3281215,48.204259500000035],[16.329949,48.20405980000001],[16.3300315,48.204050600000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hagengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"219430757","geometry":{"type":"LineString","coordinates":[[16.3271612,48.20446340000001],[16.3271462,48.2043894]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Camillo-Sitte-Gasse","surface":"asphalt"}},{"type":"Feature","id":"23323918","geometry":{"type":"LineString","coordinates":[[16.3300167,48.2028181],[16.3300416,48.20306020000001],[16.3300818,48.20329480000001]]},"properties":{"bicycle":"permissive","highway":"living_street","lcn":"yes","name":"Markgraf-Rüdiger-Straße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003711","geometry":{"type":"LineString","coordinates":[[16.331417,48.202843900000005],[16.3300167,48.2028181]]},"properties":{"bicycle":"permissive","created_by":"Potlatch 0.10f","highway":"living_street","name":"Reuenthalgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003708","geometry":{"type":"LineString","coordinates":[[16.3280208,48.20305260000001],[16.3298078,48.2030642]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gernotgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"35977389","geometry":{"type":"LineString","coordinates":[[16.3300818,48.20329480000001],[16.3301381,48.20355359999999],[16.3302052,48.203831199999996],[16.3303896,48.20445729999997],[16.3304125,48.2045286]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Markgraf-Rüdiger-Straße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"35985257","geometry":{"type":"LineString","coordinates":[[16.3300818,48.20329480000001],[16.3313847,48.20334980000004]]},"properties":{"highway":"living_street","name":"Dankwartgasse","oneway":"yes"}},{"type":"Feature","id":"5003721","geometry":{"type":"LineString","coordinates":[[16.3298493,48.203295300000036],[16.3299644,48.20329319999999],[16.3300818,48.20329480000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Dankwartgasse","oneway":"yes"}},{"type":"Feature","id":"5003709","geometry":{"type":"LineString","coordinates":[[16.3269935,48.20349439999998],[16.328025,48.203464800000035]]},"properties":{"highway":"residential","maxspeed":"30","name":"Walkürengasse","source":"yahoo"}},{"type":"Feature","id":"473379542","geometry":{"type":"LineString","coordinates":[[16.3741438,48.201809999999995],[16.37446,48.2018947],[16.3746782,48.20195319999999],[16.3747694,48.20199339999999],[16.3757428,48.20293620000001],[16.3761976,48.2034012],[16.3762678,48.20346459999999]]},"properties":{"footway":"sidewalk","highway":"footway","lit":"yes","name":"Schubertring"}},{"type":"Feature","id":"270709587","geometry":{"type":"LineString","coordinates":[[16.3754319,48.2022254],[16.3751088,48.20191969999996]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schubertring","oneway":"yes","sidewalk":"no","turn:lanes":"left;through|through|through;right","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"128859772","geometry":{"type":"LineString","coordinates":[[16.3756435,48.202134],[16.3755916,48.2020636],[16.3755414,48.20200310000001],[16.375234,48.2016993],[16.3751845,48.20164760000003]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Schubertring","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"179636209","geometry":{"type":"LineString","coordinates":[[16.3757954,48.20291209999999],[16.3749245,48.202062600000005],[16.3748329,48.20197919999998],[16.3746998,48.20191129999998],[16.3744854,48.2018497],[16.374169,48.201763099999994]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Schubertring","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"8072727","geometry":{"type":"LineString","coordinates":[[16.3739416,48.2021853],[16.3750325,48.203218700000036]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Hegelgasse","oneway":"yes","sidewalk":"both","wikidata":"Q16916609","wikipedia":"de:Hegelgasse (Wien)"}},{"type":"Feature","id":"5930442","geometry":{"type":"LineString","coordinates":[[16.3724007,48.20366419999999],[16.3721829,48.203251800000004],[16.3721508,48.20318850000004],[16.372121,48.20313340000001],[16.3718682,48.20264359999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Akademiestraße","oneway":"yes","sidewalk":"both","source":"yahoo"}},{"type":"Feature","id":"8072736","geometry":{"type":"LineString","coordinates":[[16.3718682,48.20264359999999],[16.371847,48.20260329999999],[16.3716029,48.20212860000001],[16.3715952,48.202113500000024],[16.3715794,48.20208059999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Max-Weiler-Platz"}},{"type":"Feature","id":"26158627","geometry":{"type":"LineString","coordinates":[[16.3718682,48.20264359999999],[16.373516,48.20227599999998],[16.3737577,48.2022264],[16.3739416,48.2021853]]},"properties":{"highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Mahlerstraße","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"473379525","geometry":{"type":"LineString","coordinates":[[16.3741438,48.201809999999995],[16.3740405,48.201783500000005],[16.3738477,48.20173510000001],[16.3736561,48.201694599999996],[16.3735246,48.20169729999998],[16.3716685,48.2021139],[16.3716029,48.20212860000001]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Kärntner Ring"}},{"type":"Feature","id":"43980600","geometry":{"type":"LineString","coordinates":[[16.3740776,48.201928399999986],[16.3741369,48.20182289999997],[16.3741438,48.201809999999995],[16.374169,48.201763099999994]]},"properties":{"highway":"residential","lanes":"3","lanes:backward":"1","lanes:forward":"2","lit":"yes","maxspeed":"30","name":"Schwarzenbergstraße","sidewalk":"both"}},{"type":"Feature","id":"26399545","geometry":{"type":"LineString","coordinates":[[16.3735393,48.202883799999995],[16.373561,48.20284609999999],[16.3738535,48.20235650000001],[16.3739416,48.2021853],[16.3740776,48.201928399999986]]},"properties":{"highway":"residential","lanes":"3","lanes:backward":"1","lanes:forward":"2","lit":"yes","maxspeed":"30","name":"Schwarzenbergstraße","sidewalk":"both"}},{"type":"Feature","id":"26158620","geometry":{"type":"LineString","coordinates":[[16.3709682,48.2028449],[16.3710602,48.202824599999985],[16.3718682,48.20264359999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Mahlerstraße","sidewalk":"both"}},{"type":"Feature","id":"26158639","geometry":{"type":"LineString","coordinates":[[16.3715794,48.20208059999999],[16.3715496,48.202019500000006],[16.3715185,48.201970200000005],[16.3714944,48.201921]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Akademiestraße"}},{"type":"Feature","id":"482008862","geometry":{"type":"LineString","coordinates":[[16.3714944,48.201921],[16.3714535,48.20193040000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Kärntner Ring","oneway":"yes","sidewalk":"no","turn:lanes":"through|through|through;right","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"128859764","geometry":{"type":"LineString","coordinates":[[16.3711067,48.20182320000001],[16.3712731,48.201786999999996],[16.3713019,48.2017807],[16.3714046,48.20175309999999],[16.3714393,48.201744899999994]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"355378660","geometry":{"type":"LineString","coordinates":[[16.3714046,48.20175309999999],[16.3714387,48.201817000000005],[16.3714944,48.201921]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Akademiestraße","oneway":"yes","sidewalk":"no"}},{"type":"Feature","id":"473379541","geometry":{"type":"LineString","coordinates":[[16.3767756,48.20314110000001],[16.3763127,48.20268089999999],[16.3757126,48.2021101],[16.3757038,48.202101400000004],[16.3752729,48.201680100000004],[16.3751845,48.20164760000003]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Schubertring"}},{"type":"Feature","id":"142585626","geometry":{"type":"LineString","coordinates":[[16.3745806,48.201493],[16.3746687,48.20154200000002],[16.3747505,48.201571900000005],[16.3749661,48.20162819999999],[16.3750387,48.201636699999995],[16.3750867,48.20163980000001],[16.3751845,48.20164760000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schubertring","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"26930679","geometry":{"type":"LineString","coordinates":[[16.3751845,48.20164760000003],[16.3756994,48.2014116],[16.3758938,48.20132019999997],[16.3765289,48.20102669999997],[16.3766199,48.200986400000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Pestalozzigasse","oneway":"yes"}},{"type":"Feature","id":"298780844","geometry":{"type":"LineString","coordinates":[[16.3748732,48.20094610000001],[16.3746519,48.201363000000015],[16.3745806,48.201493]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","turn:lanes":"left|left|through;right"}},{"type":"Feature","id":"43981492","geometry":{"type":"LineString","coordinates":[[16.374169,48.201763099999994],[16.3741818,48.2017372],[16.3742399,48.201625000000035]]},"properties":{"highway":"residential","lanes":"3","lanes:backward":"1","lanes:forward":"2","lit":"yes","name":"Schwarzenbergstraße","source":"yahoo"}},{"type":"Feature","id":"482008866","geometry":{"type":"LineString","coordinates":[[16.3742399,48.201625000000035],[16.374209,48.2016175]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Kärntner Ring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"270709589","geometry":{"type":"LineString","coordinates":[[16.3751088,48.20191969999996],[16.3750027,48.201839399999955],[16.3748525,48.20178379999999],[16.37457,48.201707699999986],[16.3742399,48.201625000000035]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Schubertring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left;through|through|through;right","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"298780990","geometry":{"type":"LineString","coordinates":[[16.3745806,48.201493],[16.3745451,48.201544299999995],[16.3744965,48.201584],[16.3744299,48.20161189999999],[16.3742399,48.201625000000035]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","turn:lanes":"left|left|through"}},{"type":"Feature","id":"437179221","geometry":{"type":"LineString","coordinates":[[16.3740504,48.2013699],[16.3741704,48.201402]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"482008877","geometry":{"type":"LineString","coordinates":[[16.3714393,48.201744899999994],[16.3714863,48.20173430000003],[16.372789,48.20144099999999],[16.3735847,48.20125519999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26399482","geometry":{"type":"LineString","coordinates":[[16.374169,48.201763099999994],[16.3738752,48.201686199999955],[16.3737421,48.20165469999998],[16.3736411,48.20163629999999],[16.3735188,48.20164439999999],[16.3716463,48.202066],[16.3715794,48.20208059999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"29065779","geometry":{"type":"LineString","coordinates":[[16.374209,48.2016175],[16.373951,48.20155310000001],[16.3737167,48.201491000000004],[16.3736509,48.201481599999994],[16.3735683,48.20147610000001],[16.3734726,48.20148200000003],[16.3733774,48.20149950000001],[16.3728714,48.20161380000002],[16.3715713,48.20190450000001],[16.3714944,48.201921]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Kärntner Ring","oneway":"yes","sidewalk":"no","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"5930415","geometry":{"type":"LineString","coordinates":[[16.3728714,48.20161380000002],[16.3728478,48.20156639999999],[16.3728247,48.20151279999999],[16.372789,48.20144099999999],[16.3727699,48.20140330000001],[16.3725113,48.20089229999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Dumbastraße","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8072733","geometry":{"type":"LineString","coordinates":[[16.371159,48.201231300000046],[16.3713813,48.2017036],[16.3714046,48.20175309999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Akademiestraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"25702402","geometry":{"type":"LineString","coordinates":[[16.3735847,48.20125519999999],[16.374001,48.201359000000025],[16.3740504,48.2013699]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5930421","geometry":{"type":"LineString","coordinates":[[16.3735847,48.20125519999999],[16.3735694,48.20122309999999],[16.373326,48.20071419999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Canovagasse","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5930427","geometry":{"type":"LineString","coordinates":[[16.373326,48.20071419999999],[16.3725113,48.20089229999999],[16.3724408,48.20090859999999],[16.3713287,48.201160000000016],[16.3712396,48.20118740000001],[16.371159,48.201231300000046]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bösendorferstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"298780843","geometry":{"type":"LineString","coordinates":[[16.3752207,48.20033329999998],[16.3751705,48.200416099999984],[16.3750998,48.200537800000035],[16.3748732,48.20094610000001]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","turn:lanes":"none|none"}},{"type":"Feature","id":"298780842","geometry":{"type":"LineString","coordinates":[[16.3752207,48.20033329999998],[16.3750184,48.200281099999984]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","turn:lanes":"left;through|through|through","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"31400518","geometry":{"type":"LineString","coordinates":[[16.3750184,48.200281099999984],[16.3748255,48.20023019999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","turn:lanes":"left;through|through|through","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"298781349","geometry":{"type":"LineString","coordinates":[[16.3749712,48.19996449999999],[16.3750181,48.19988319999999],[16.3753185,48.19935989999999]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","turn:lanes":"slight_left|slight_left|slight_right|slight_right"}},{"type":"Feature","id":"298781348","geometry":{"type":"LineString","coordinates":[[16.3749712,48.19996449999999],[16.3753836,48.20006840000002]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","turn:lanes":"left|through|through","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"444330549","geometry":{"type":"LineString","coordinates":[[16.3729221,48.19994629999999],[16.3729679,48.1999984],[16.3730136,48.200070100000005]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Canovagasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"27356234","geometry":{"type":"LineString","coordinates":[[16.3730136,48.200070100000005],[16.373326,48.20071419999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Canovagasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"12987041","geometry":{"type":"LineString","coordinates":[[16.3742399,48.201625000000035],[16.3741538,48.201545399999986],[16.3741405,48.201490000000035],[16.3741504,48.201435300000014],[16.3741704,48.201402],[16.374784,48.2003134],[16.3748255,48.20023019999999],[16.3748643,48.20015749999999],[16.3749712,48.19996449999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"9353537","geometry":{"type":"LineString","coordinates":[[16.3736346,48.199695399999996],[16.3736833,48.199691900000005],[16.3737479,48.19968799999998],[16.3738426,48.19968989999998],[16.3739397,48.19969789999999],[16.3748824,48.19993829999996],[16.3749712,48.19996449999999]]},"properties":{"highway":"primary","lanes":"5","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1","turn:lanes":"through|through|through|right|right","wikipedia":"de:Franz I. (HRR)"}},{"type":"Feature","id":"31399550","geometry":{"type":"LineString","coordinates":[[16.3733095,48.19975070000004],[16.3735014,48.19971060000003],[16.3736346,48.199695399999996]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Karlsplatz","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"46738176","geometry":{"type":"LineString","coordinates":[[16.3748255,48.20023019999999],[16.3747305,48.2002081],[16.3746839,48.20019690000004],[16.3734916,48.1999113],[16.3732147,48.199907800000005],[16.3730832,48.1999251],[16.3729221,48.19994629999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Lothringerstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"12984312","geometry":{"type":"LineString","coordinates":[[16.3752947,48.1991031],[16.3751712,48.19908929999997],[16.3734231,48.19885829999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brucknerstraße","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5891884","geometry":{"type":"LineString","coordinates":[[16.3734231,48.19885829999998],[16.3734684,48.19949159999999],[16.3734757,48.199559599999986],[16.3735055,48.19961359999999],[16.3735376,48.199647700000014],[16.3735732,48.19967389999999],[16.3736346,48.199695399999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Maderstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"157741495","geometry":{"type":"LineString","coordinates":[[16.3721286,48.200304200000005],[16.3724309,48.20088950000002],[16.3724408,48.20090859999999]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Musikvereinsplatz","source":"Bing"}},{"type":"Feature","id":"165810402","geometry":{"type":"LineString","coordinates":[[16.3727755,48.19889839999999],[16.3733657,48.1988662],[16.3734231,48.19885829999998]]},"properties":{"bicycle":"yes","foot":"yes","highway":"footway","history":"Retrieved from v4","name":"Symphonikerstraße","surface":"paved"}},{"type":"Feature","id":"231155952","geometry":{"type":"LineString","coordinates":[[16.3711517,48.200630099999984],[16.3711364,48.200599100000005],[16.3709381,48.20064350000001],[16.3709133,48.200601500000005],[16.3708881,48.2005901],[16.3707554,48.20061080000002],[16.3707399,48.200582999999995]]},"properties":{"highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatzpassage","tunnel":"yes"}},{"type":"Feature","id":"27356200","geometry":{"type":"LineString","coordinates":[[16.3710624,48.20124089999999],[16.3710578,48.201232300000015],[16.3707987,48.200748799999985],[16.3707503,48.20066009999999],[16.3707327,48.2006265],[16.3707269,48.200615400000004]]},"properties":{"highway":"pedestrian","name":"Akademiestraße","source":"yahoo"}},{"type":"Feature","id":"412633713","geometry":{"type":"LineString","coordinates":[[16.3716029,48.20212860000001],[16.3715119,48.20214919999998],[16.3703806,48.20240509999999],[16.3703847,48.2024131],[16.3701293,48.20247120000002],[16.3701245,48.202462]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Kärntner Ring"}},{"type":"Feature","id":"241509169","geometry":{"type":"LineString","coordinates":[[16.3705421,48.200201600000014],[16.3704355,48.1999606]]},"properties":{"highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatzpassage","tunnel":"yes","wheelchair":"yes"}},{"type":"Feature","id":"411955244","geometry":{"type":"LineString","coordinates":[[16.3707399,48.200582999999995],[16.3705421,48.200201600000014]]},"properties":{"highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatzpassage","tunnel":"yes","wheelchair":"yes"}},{"type":"Feature","id":"31247027","geometry":{"type":"LineString","coordinates":[[16.3698126,48.20256280000001],[16.3698605,48.202646500000014],[16.3699621,48.20284090000001],[16.370071,48.20305250000001],[16.3703032,48.20351719999999],[16.3703259,48.20359139999999]]},"properties":{"highway":"residential","lanes":"2","lit":"yes","maxspeed":"30","name":"Kärntner Straße","oneway":"yes","sidewalk":"right","turn:lanes":"left|left;right"}},{"type":"Feature","id":"31261137","geometry":{"type":"LineString","coordinates":[[16.3715794,48.20208059999999],[16.3714889,48.20210109999999],[16.370667,48.20228910000003],[16.3705248,48.202342999999985],[16.3702301,48.2024107],[16.36989,48.20248670000001],[16.3698419,48.20251680000001],[16.3698126,48.20256280000001]]},"properties":{"foot":"use_sidepath","highway":"residential","lanes":"1","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"5930448","geometry":{"type":"LineString","coordinates":[[16.3697707,48.20209990000001],[16.3698149,48.202096299999994],[16.3698673,48.20208769999999],[16.3699397,48.20207110000001],[16.3708066,48.20187229999999],[16.3708819,48.20186620000001],[16.3709318,48.2018621],[16.3711067,48.20182320000001]]},"properties":{"cycleway":"opposite_lane","foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Ring","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"298785850","geometry":{"type":"LineString","coordinates":[[16.3750276,48.198418000000004],[16.3751931,48.198427400000014],[16.3752523,48.19844560000004]]},"properties":{"highway":"tertiary","lanes":"2","maxspeed":"50","name":"Gußhausstraße","oneway":"yes","surface":"concrete"}},{"type":"Feature","id":"12984113","geometry":{"type":"LineString","coordinates":[[16.3753185,48.19935989999999],[16.3753249,48.19930100000002],[16.3753281,48.199236999999954],[16.3752947,48.1991031],[16.3752071,48.19895589999999],[16.3751566,48.19885829999998],[16.3750516,48.19849970000001],[16.3750429,48.19847010000001],[16.3750276,48.198418000000004]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"5891919","geometry":{"type":"LineString","coordinates":[[16.3745722,48.19834350000002],[16.3744903,48.198385],[16.3743582,48.19845209999997],[16.373606,48.1987675],[16.3734231,48.19885829999998]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Technikerstraße","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"sett"}},{"type":"Feature","id":"298785853","geometry":{"type":"LineString","coordinates":[[16.3745722,48.19834350000002],[16.3747584,48.198408900000004],[16.3748784,48.198419099999995],[16.3749249,48.19841880000001],[16.3750276,48.198418000000004]]},"properties":{"bicycle":"use_sidepath","highway":"tertiary","lanes":"2","maxspeed":"50","name":"Gußhausstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"12985078","geometry":{"type":"LineString","coordinates":[[16.3745722,48.19834350000002],[16.374686,48.1983424],[16.374786,48.19835299999997],[16.374875,48.19833650000001],[16.3748973,48.198324799999966],[16.3749434,48.198300700000004],[16.3749918,48.1982586]]},"properties":{"highway":"tertiary","lanes":"1","maxspeed":"50","name":"Gußhausstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"5891872","geometry":{"type":"LineString","coordinates":[[16.3726309,48.198169199999995],[16.3729468,48.19782599999999],[16.3729983,48.197767400000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Hoyosgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"paved"}},{"type":"Feature","id":"47003637","geometry":{"type":"LineString","coordinates":[[16.3726309,48.198169199999995],[16.3725764,48.19814410000001],[16.3724447,48.198083499999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mattiellistraße","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"12986319","geometry":{"type":"LineString","coordinates":[[16.3734231,48.19885829999998],[16.3733951,48.198790900000006],[16.373337,48.19869460000001],[16.3732482,48.198574699999995],[16.3731604,48.198488199999986],[16.3730215,48.1983821],[16.3726309,48.198169199999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mattiellistraße","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"298785852","geometry":{"type":"LineString","coordinates":[[16.3742455,48.198223900000016],[16.3745722,48.19834350000002]]},"properties":{"bicycle":"use_sidepath","highway":"tertiary","lanes":"3","maxspeed":"30","name":"Gußhausstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt","turn:lanes":"left;through|through|right"}},{"type":"Feature","id":"13730735","geometry":{"type":"LineString","coordinates":[[16.3718085,48.197323600000004],[16.3718769,48.197351699999984],[16.3719215,48.19736999999998],[16.3729983,48.197767400000004],[16.3742455,48.198223900000016]]},"properties":{"bicycle":"use_sidepath","highway":"tertiary","maxspeed":"30","name":"Gußhausstraße","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"298785851","geometry":{"type":"LineString","coordinates":[[16.3750276,48.198418000000004],[16.3750138,48.19835649999999],[16.3749918,48.1982586],[16.3749668,48.198002299999985],[16.3750073,48.19787389999999],[16.3752338,48.19756430000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"28340757","geometry":{"type":"LineString","coordinates":[[16.3752338,48.19756430000001],[16.3752334,48.197659999999985],[16.3752326,48.19767580000001],[16.3752311,48.1977057],[16.3752266,48.1977464],[16.3751994,48.197863100000006],[16.3751811,48.197984700000006],[16.3751961,48.198175100000014],[16.3752279,48.19832790000001],[16.3752523,48.19844560000004]]},"properties":{"fixme":"yes","highway":"tertiary","lanes":"2","lit":"yes","maxspeed":"50","name":"Schwarzenbergplatz","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"107626537","geometry":{"type":"LineString","coordinates":[[16.3725529,48.196020799999985],[16.3726229,48.19603699999999],[16.3746351,48.196696900000035],[16.3755186,48.19693430000001],[16.3755953,48.19695490000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wohllebengasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"173517520","geometry":{"type":"LineString","coordinates":[[16.3725529,48.196020799999985],[16.372067,48.1968598]]},"properties":{"bicycle":"use_sidepath","footway:right.incline":"0%","footway:right.sloped_curb":"2","footway:right.smoothness":"good","footway:right.surface":"asphalt","footway:right.width":"3","highway":"residential","maxspeed":"30","name":"Argentinierstraße","oneway":"yes","source":"yahoo","surface":"paved"}},{"type":"Feature","id":"173517526","geometry":{"type":"LineString","coordinates":[[16.372067,48.1968598],[16.371835,48.1972768],[16.3718085,48.197323600000004]]},"properties":{"bicycle":"use_sidepath","footway:right.incline":"0%","footway:right.sloped_curb":"0","footway:right.smoothness":"good","footway:right.surface":"asphalt","footway:right.width":"3","highway":"residential","maxspeed":"30","name":"Argentinierstraße","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"5891887","geometry":{"type":"LineString","coordinates":[[16.3750073,48.19787389999999],[16.3749455,48.19785250000004],[16.3721352,48.19687830000004],[16.372067,48.1968598]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schwindgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5891926","geometry":{"type":"LineString","coordinates":[[16.3712865,48.19821200000001],[16.3712439,48.19826630000003],[16.3711489,48.198302299999966],[16.3710361,48.19830970000001],[16.3708812,48.1983161],[16.3707722,48.19827910000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Karlsgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"26137142","geometry":{"type":"LineString","coordinates":[[16.3724447,48.198083499999996],[16.3722963,48.198022099999974],[16.3719507,48.19790520000001],[16.3717425,48.1978575]]},"properties":{"bicycle":"designated","highway":"residential","maxspeed":"30","name":"Kreuzherrengasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"173517533","geometry":{"type":"LineString","coordinates":[[16.3718085,48.197323600000004],[16.3717639,48.197397800000005],[16.3717521,48.197417400000006],[16.3715385,48.19777239999999],[16.3715103,48.197825300000005]]},"properties":{"bicycle":"use_sidepath","footway:right.incline":"-1%","footway:right.sloped_curb":"0","footway:right.smoothness":"good","footway:right.surface":"asphalt","footway:right.width":"3","highway":"residential","maxspeed":"30","name":"Argentinierstraße","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"128862299","geometry":{"type":"LineString","coordinates":[[16.3715969,48.19783240000004],[16.3715103,48.197825300000005]]},"properties":{"foot":"yes","highway":"cycleway","name":"Kreuzherrengasse","segregated":"yes"}},{"type":"Feature","id":"28242654","geometry":{"type":"LineString","coordinates":[[16.3715103,48.197825300000005],[16.3714704,48.19789539999999],[16.3712865,48.19821200000001]]},"properties":{"bicycle":"use_sidepath","footway:right.incline":"-2%","footway:right.sloped_curb":"0","footway:right.smoothness":"good","footway:right.surface":"asphalt","footway:right.width":"3","highway":"residential","maxspeed":"30","name":"Argentinierstraße","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"48306837","geometry":{"type":"LineString","coordinates":[[16.3717425,48.1978575],[16.3716453,48.19784290000001],[16.3715969,48.19783240000004]]},"properties":{"foot":"yes","highway":"cycleway","name":"Kreuzherrengasse","segregated":"yes"}},{"type":"Feature","id":"13730938","geometry":{"type":"LineString","coordinates":[[16.3715103,48.197825300000005],[16.3714355,48.197814499999964],[16.3711394,48.19776790000003],[16.370913,48.197749699999974],[16.3706906,48.197751900000014],[16.3704377,48.19777719999999],[16.3703321,48.1977914]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paniglgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"229766424","geometry":{"type":"LineString","coordinates":[[16.3707722,48.19827910000001],[16.3706853,48.19818609999996],[16.3703831,48.19785300000001],[16.3703321,48.1977914]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Karlsgasse","oneway":"yes","source":"yahoo","surface":"paved"}},{"type":"Feature","id":"197342835","geometry":{"type":"LineString","coordinates":[[16.3699392,48.1980576],[16.3699522,48.19805740000001],[16.3700569,48.198059]]},"properties":{"access":"private","covered":"yes","highway":"corridor","layer":"-1","name":"Hoftrakt"}},{"type":"Feature","id":"318162291","geometry":{"type":"LineString","coordinates":[[16.3703099,48.20372040000001],[16.3701497,48.20366630000001],[16.3700887,48.2035985],[16.3696084,48.202702200000004],[16.3694754,48.20273280000001]]},"properties":{"foot":"yes","highway":"footway","name":"Herbert-von-Karajan-Platz","wheelchair":"yes"}},{"type":"Feature","id":"8043955","geometry":{"type":"LineString","coordinates":[[16.369666,48.20234640000001],[16.3696992,48.202392599999996],[16.3697574,48.202469399999984],[16.3697736,48.2024926],[16.3698126,48.20256280000001]]},"properties":{"highway":"residential","lanes":"2","lit":"yes","maxspeed":"30","name":"Kärntner Straße","oneway":"yes"}},{"type":"Feature","id":"25702400","geometry":{"type":"LineString","coordinates":[[16.369666,48.20234640000001],[16.3695625,48.202460799999955],[16.3695394,48.20249269999999],[16.3695037,48.20254969999999],[16.3694933,48.202568799999995]]},"properties":{"highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"481975921","geometry":{"type":"LineString","coordinates":[[16.3694933,48.202568799999995],[16.3693529,48.2026046]]},"properties":{"access":"permissive","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"29065850","geometry":{"type":"LineString","coordinates":[[16.369666,48.20234640000001],[16.3693123,48.20243420000003]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"482008863","geometry":{"type":"LineString","coordinates":[[16.3693123,48.20243420000003],[16.3692806,48.20244120000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"127061651","geometry":{"type":"LineString","coordinates":[[16.3693529,48.2026046],[16.3692246,48.20261190000002]]},"properties":{"access":"permissive","bicycle":"yes","cycleway":"opposite","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"105771181","geometry":{"type":"LineString","coordinates":[[16.3694969,48.20215489999998],[16.3695531,48.202202099999965],[16.3695952,48.2022547],[16.3696225,48.202290300000016],[16.369666,48.20234640000001]]},"properties":{"highway":"residential","lanes":"2","lit":"yes","maxspeed":"50","name":"Kärntner Straße","oneway":"yes","source":"geoimage.at;Bing"}},{"type":"Feature","id":"474344728","geometry":{"type":"LineString","coordinates":[[16.3740729,48.2013499],[16.374,48.20129180000001],[16.3736534,48.20120780000002],[16.3735694,48.20122309999999],[16.3727699,48.20140330000001],[16.3719778,48.201575100000014],[16.3714668,48.20168459999999],[16.3714133,48.20169609999999],[16.3713813,48.2017036],[16.3713148,48.201717700000046],[16.3712949,48.201722099999955],[16.371247,48.20173270000001],[16.3708576,48.201818900000035],[16.3706931,48.201855300000005],[16.3699159,48.2020263],[16.369753,48.20206209999998],[16.3696966,48.20207449999998]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Kärntner Ring"}},{"type":"Feature","id":"10128089","geometry":{"type":"LineString","coordinates":[[16.371159,48.201231300000046],[16.3710624,48.20124089999999],[16.3695979,48.201569199999994],[16.3695206,48.201592000000005],[16.3694678,48.20163869999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bösendorferstraße","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5930463","geometry":{"type":"LineString","coordinates":[[16.3694678,48.20163869999999],[16.3694318,48.2016687],[16.369429,48.20172830000001],[16.3695649,48.202011699999986],[16.3695695,48.202020300000015],[16.3696262,48.202064699999994],[16.3696742,48.20208769999999],[16.3697252,48.20209909999997],[16.3697659,48.20209980000001],[16.3697707,48.20209990000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Straße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone30"}},{"type":"Feature","id":"31246975","geometry":{"type":"LineString","coordinates":[[16.3714535,48.20193040000001],[16.3713838,48.20194570000004],[16.3698748,48.20229439999997],[16.3698051,48.202311500000064],[16.369772,48.2023198],[16.369666,48.20234640000001]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Kärntner Ring","oneway":"yes","sidewalk":"no","turn:lanes":"through|through|through;right","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"231156079","geometry":{"type":"LineString","coordinates":[[16.370331,48.2004096],[16.3701677,48.20045089999999],[16.3701086,48.20046830000001],[16.3698639,48.200530000000015],[16.3696768,48.200575399999934],[16.3695035,48.2006131]]},"properties":{"access":"no","highway":"service","maxspeed":"50","name":"Wagnerschleife","oneway":"yes","psv":"yes"}},{"type":"Feature","id":"26570432","geometry":{"type":"LineString","coordinates":[[16.3729221,48.19994629999999],[16.3720503,48.200154],[16.3706279,48.20052100000001],[16.3702584,48.200628800000004],[16.369576,48.20083790000001]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Karlsplatz","name:be":"Карлава плошча","name:de":"Karlsplatz","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"46738174","geometry":{"type":"LineString","coordinates":[[16.3696581,48.20034460000002],[16.3698371,48.2003775],[16.3698858,48.2003847],[16.3699362,48.200389900000005],[16.3699911,48.20039400000002],[16.3700307,48.2003962],[16.3700594,48.2003971],[16.3700848,48.20039650000001],[16.3701303,48.20039689999996],[16.3701882,48.2003953],[16.3702513,48.20039120000001],[16.3703187,48.20038310000001]]},"properties":{"access":"no","highway":"service","maxspeed":"50","name":"Wagnerschleife","oneway":"yes","psv":"yes"}},{"type":"Feature","id":"107099289","geometry":{"type":"LineString","coordinates":[[16.369217,48.2002961],[16.369319,48.2002799],[16.3693733,48.20027250000001],[16.3694176,48.20026810000002],[16.3694594,48.200266699999986],[16.3695152,48.200267199999985],[16.3695572,48.200271499999985],[16.3696162,48.20028190000002],[16.3699655,48.200345200000015],[16.3700815,48.20036480000002],[16.3701143,48.20037039999997],[16.3702105,48.20037690000001],[16.3702969,48.2003751],[16.3703875,48.20036650000003]]},"properties":{"access":"no","highway":"service","name":"Wagnerschleife","oneway":"yes","psv":"yes"}},{"type":"Feature","id":"30971418","geometry":{"type":"LineString","coordinates":[[16.369217,48.2002961],[16.369334,48.20029560000003],[16.3694314,48.20030460000001],[16.3696581,48.20034460000002]]},"properties":{"access":"no","highway":"service","maxspeed":"50","name":"Wagnerschleife","oneway":"yes","psv":"yes"}},{"type":"Feature","id":"481975922","geometry":{"type":"LineString","coordinates":[[16.3692246,48.20261190000002],[16.3690743,48.202601500000014]]},"properties":{"access":"permissive","bicycle":"yes","cycleway":"opposite","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"481973534","geometry":{"type":"LineString","coordinates":[[16.3692806,48.20244120000001],[16.3689673,48.2025098]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"27355895","geometry":{"type":"LineString","coordinates":[[16.3693499,48.20215000000002],[16.3693366,48.20218599999998],[16.3692883,48.20222100000001],[16.3690974,48.202283800000004],[16.369005,48.202327],[16.3688316,48.20236489999999]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"481973532","geometry":{"type":"LineString","coordinates":[[16.3689673,48.2025098],[16.3687205,48.202563999999995]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"482008880","geometry":{"type":"LineString","coordinates":[[16.3688316,48.20236489999999],[16.3685649,48.2024232]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"201856398","geometry":{"type":"LineString","coordinates":[[16.368948,48.201014999999984],[16.3689822,48.2010798],[16.3690907,48.201301899999976],[16.3694969,48.20215489999998]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Kärntner Straße","oneway":"yes","source":"yahoo","turn:lanes":"left|left;through|through"}},{"type":"Feature","id":"201856399","geometry":{"type":"LineString","coordinates":[[16.368948,48.201014999999984],[16.3689061,48.201099400000004],[16.3689155,48.201199599999995],[16.3689922,48.20137249999999],[16.3690235,48.20145260000001],[16.3690737,48.20155510000001],[16.3691309,48.201670500000006],[16.3691631,48.201740900000004],[16.3693173,48.20204820000001],[16.369349,48.20211029999999],[16.3693499,48.20215000000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kärntner Straße","oneway":"yes"}},{"type":"Feature","id":"201856397","geometry":{"type":"LineString","coordinates":[[16.3689061,48.200927699999994],[16.368948,48.201014999999984]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Kärntner Straße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"411400848","geometry":{"type":"LineString","coordinates":[[16.3686898,48.201070200000004],[16.3687497,48.20104850000001]]},"properties":{"highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatz Westpassage","tunnel":"yes","wheelchair":"yes"}},{"type":"Feature","id":"411400849","geometry":{"type":"LineString","coordinates":[[16.3685778,48.201082499999984],[16.3686898,48.201070200000004]]},"properties":{"highway":"footway","incline":"up","indoor":"yes","level":"-1","name":"Karlsplatz Westpassage","tunnel":"yes","wheelchair":"yes"}},{"type":"Feature","id":"230626595","geometry":{"type":"LineString","coordinates":[[16.369576,48.20083790000001],[16.3692017,48.2009559],[16.369123,48.20097680000001],[16.3690633,48.20099020000001]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Karlsplatz","name:be":"Карлава плошча","oneway":"yes","ref":"B1","turn:lanes":"through|through|through|right"}},{"type":"Feature","id":"46738175","geometry":{"type":"LineString","coordinates":[[16.3695035,48.2006131],[16.3693666,48.200641700000006],[16.3693148,48.20064930000001],[16.3692883,48.20065199999999],[16.3692599,48.20065460000001],[16.3692158,48.2006557],[16.3691749,48.2006543],[16.3691427,48.200651300000004],[16.3691146,48.20064550000001],[16.3690837,48.2006375],[16.369061,48.20062839999997],[16.3690358,48.2006159],[16.3690129,48.20060079999999],[16.3689912,48.20058169999999],[16.3689731,48.200565299999994],[16.3689608,48.200551399999995],[16.368953,48.2005379],[16.368947,48.200524100000024],[16.3689415,48.20049929999999],[16.3689416,48.200468599999994],[16.3689449,48.20044699999997],[16.3689566,48.20041929999999],[16.3689693,48.20040069999996],[16.3689968,48.20037009999999],[16.3690304,48.200343799999985],[16.369052,48.20033280000001],[16.3690821,48.200321],[16.3691204,48.200310100000024],[16.369217,48.2002961]]},"properties":{"access":"no","highway":"service","maxspeed":"50","name":"Wagnerschleife","oneway":"yes","psv":"yes"}},{"type":"Feature","id":"127061658","geometry":{"type":"LineString","coordinates":[[16.3688221,48.20075840000001],[16.3689061,48.200927699999994]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Kärntner Straße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"24931732","geometry":{"type":"LineString","coordinates":[[16.3689156,48.20024860000001],[16.368954,48.20046930000001],[16.3689898,48.20055310000001],[16.3689414,48.20069240000001],[16.3689121,48.20082959999999],[16.3690112,48.2010171],[16.3690825,48.20114699999999],[16.3691034,48.201184100000006],[16.3693142,48.2015667],[16.3695153,48.20195050000001],[16.3694722,48.20203420000004],[16.3695359,48.2022312]]},"properties":{"bicycle":"dismount","highway":"footway","indoor":"yes","level":"-1","name":"Kärntnertorpassage","tunnel":"yes","wheelchair":"yes"}},{"type":"Feature","id":"4583716","geometry":{"type":"LineString","coordinates":[[16.3688221,48.20075840000001],[16.3689545,48.20076069999999],[16.3690548,48.20075879999999],[16.3693454,48.2007289],[16.3696785,48.200661800000006],[16.3701744,48.20053390000001],[16.3703948,48.200466500000005],[16.3719986,48.20005889999996],[16.3727425,48.19987949999998],[16.3728622,48.19985060000002],[16.3732469,48.199764200000004],[16.3733095,48.19975070000004]]},"properties":{"foot":"no","highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Karlsplatz","name:be":"Карлава плошча","name:de":"Karlsplatz","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"160391134","geometry":{"type":"LineString","coordinates":[[16.3686689,48.1993789],[16.3686918,48.199421],[16.3688029,48.19963440000001],[16.3689417,48.19990960000001],[16.3689363,48.20006889999999],[16.3689287,48.2001587],[16.3689256,48.20019599999995],[16.3689156,48.20024860000001]]},"properties":{"bicycle":"yes","foot":"yes","highway":"service","incline":"down","motor_vehicle":"permissive","name":"Resselpark"}},{"type":"Feature","id":"142465072","geometry":{"type":"LineString","coordinates":[[16.3685614,48.20020929999998],[16.368718,48.20053659999999],[16.3687334,48.20057],[16.3687544,48.200614599999994],[16.3688221,48.20075840000001]]},"properties":{"highway":"secondary","lanes":"5","lit":"yes","maxspeed":"50","name":"Wiedner Hauptstraße","oneway":"yes","source":"geoimage.at","turn:lanes":"left|through|through|through|right","width":"14"}},{"type":"Feature","id":"481973533","geometry":{"type":"LineString","coordinates":[[16.3682832,48.202659900000015],[16.3682319,48.2026711],[16.3681071,48.2026985],[16.3679862,48.202721499999996]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","surface":"asphalt","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"201856400","geometry":{"type":"LineString","coordinates":[[16.3680168,48.202782799999994],[16.3679862,48.202721499999996]]},"properties":{"highway":"residential","lanes":"2","lit":"yes","maxspeed":"30","name":"Operngasse","oneway":"yes","sidewalk":"no","turn:lanes":"through|through;right"}},{"type":"Feature","id":"481973539","geometry":{"type":"LineString","coordinates":[[16.3687205,48.202563999999995],[16.3684103,48.20263200000002]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"351198427","geometry":{"type":"LineString","coordinates":[[16.3690743,48.202601500000014],[16.3685571,48.202713500000016],[16.3684841,48.20276000000001],[16.3684322,48.20279310000004]]},"properties":{"access":"permissive","bicycle":"yes","cycleway":"opposite_lane","highway":"service","lit":"yes","name":"Opernring","oneway":"yes"}},{"type":"Feature","id":"481973535","geometry":{"type":"LineString","coordinates":[[16.3684103,48.20263200000002],[16.3682832,48.202659900000015]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","turn:lanes":"left|left|through|through","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"5095758","geometry":{"type":"LineString","coordinates":[[16.3679862,48.202721499999996],[16.3679544,48.2026645],[16.3679201,48.202591299999995],[16.3679113,48.20257090000004],[16.3678942,48.202522499999986]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","sidewalk":"no","surface":"asphalt"}},{"type":"Feature","id":"31275219","geometry":{"type":"LineString","coordinates":[[16.3678942,48.202522499999986],[16.3678693,48.20244300000002]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"231265407","geometry":{"type":"LineString","coordinates":[[16.3677793,48.20226409999998],[16.367798,48.20217630000002],[16.367708,48.2019799],[16.3676333,48.201885199999964],[16.3675714,48.201853]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","sidewalk":"no","surface":"asphalt","turn:lanes":"slight_left"}},{"type":"Feature","id":"5930451","geometry":{"type":"LineString","coordinates":[[16.367708,48.2019799],[16.367745,48.20197239999996],[16.3688239,48.201736400000016],[16.3690381,48.20169039999996],[16.3691309,48.201670500000006]]},"properties":{"bus":"no","highway":"residential","lanes":"1","lit":"yes","maxspeed":"30","name":"Elisabethstraße","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"231265406","geometry":{"type":"LineString","coordinates":[[16.3677793,48.20226409999998],[16.3676429,48.201993200000004],[16.3675714,48.201853]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","sidewalk":"right","surface":"asphalt","turn:lanes":"slight_left|slight_right|slight_right"}},{"type":"Feature","id":"147468282","geometry":{"type":"LineString","coordinates":[[16.3678693,48.20244300000002],[16.3677793,48.20226409999998]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","sidewalk":"both","turn:lanes":"slight_left|slight_left|slight_right|slight_right"}},{"type":"Feature","id":"88061193","geometry":{"type":"LineString","coordinates":[[16.3685649,48.2024232],[16.3684205,48.2024557],[16.3683207,48.202478100000036],[16.3681946,48.2024854],[16.368072,48.2024902],[16.3680024,48.20248699999999],[16.3679357,48.20247599999999],[16.3678693,48.20244300000002]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"left"}},{"type":"Feature","id":"25678124","geometry":{"type":"LineString","coordinates":[[16.3664389,48.202236400000004],[16.3662854,48.20192270000001],[16.3661212,48.20158699999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schillerplatz","oneway":"yes","source":"wien.at"}},{"type":"Feature","id":"5930461","geometry":{"type":"LineString","coordinates":[[16.3676429,48.201993200000004],[16.3667081,48.202200000000005],[16.3664389,48.202236400000004]]},"properties":{"bus":"no","highway":"residential","lanes":"1","maxspeed":"30","name":"Elisabethstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"128859765","geometry":{"type":"LineString","coordinates":[[16.3660612,48.202953699999995],[16.3661322,48.20293579999998],[16.3661873,48.20292180000001],[16.3672765,48.20267870000001],[16.367647,48.20257900000004],[16.3676957,48.20256760000001],[16.3677707,48.202550900000034],[16.3678942,48.202522499999986]]},"properties":{"foot":"use_sidepath","highway":"residential","lit":"yes","maxspeed":"30","name":"Opernring","oneway":"yes","sidewalk":"right","surface":"asphalt"}},{"type":"Feature","id":"231265405","geometry":{"type":"LineString","coordinates":[[16.3675714,48.201853],[16.3673534,48.20142520000002],[16.3673358,48.201390599999996],[16.3673061,48.20133229999999]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","surface":"asphalt","turn:lanes":"slight_left|slight_left|slight_right|slight_right"}},{"type":"Feature","id":"172464282","geometry":{"type":"LineString","coordinates":[[16.3661212,48.20158699999999],[16.3671847,48.201352799999995],[16.3673061,48.20133229999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Nibelungengasse","oneway":"yes","source":"wien.at"}},{"type":"Feature","id":"26570420","geometry":{"type":"LineString","coordinates":[[16.368948,48.201014999999984],[16.3688156,48.20104309999999],[16.3685567,48.20108999999999],[16.3681489,48.20111589999999]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"5891878","geometry":{"type":"LineString","coordinates":[[16.3677927,48.200609900000046],[16.3680572,48.20073830000001],[16.3683337,48.20080730000001],[16.3686443,48.200854299999975],[16.3687285,48.20086710000001],[16.3689061,48.200927699999994]]},"properties":{"foot":"no","highway":"secondary_link","lanes":"3","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","width":"9"}},{"type":"Feature","id":"31275221","geometry":{"type":"LineString","coordinates":[[16.3677927,48.200609900000046],[16.3679897,48.20063959999999],[16.3681659,48.20067530000003],[16.3684316,48.200718800000004],[16.368613,48.2007452],[16.3688221,48.20075840000001]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1","width":"9"}},{"type":"Feature","id":"31275223","geometry":{"type":"LineString","coordinates":[[16.3673061,48.20133229999999],[16.3672903,48.20121790000002],[16.3672529,48.201132],[16.3671969,48.20105419999996],[16.367101,48.20094230000001]]},"properties":{"destination":"Graz; Eisenstadt; Hauptbahnhof; Oberlaa Therme Wien","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"244103706","geometry":{"type":"LineString","coordinates":[[16.3681489,48.20111589999999],[16.3678728,48.20110679999999],[16.3675782,48.2010717],[16.3674954,48.201059799999996],[16.3674098,48.20104040000001],[16.3673502,48.201024700000005],[16.367101,48.20094230000001]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","ref":"B1","surface":"asphalt","turn:lanes":"left|through|through|through"}},{"type":"Feature","id":"411396505","geometry":{"type":"LineString","coordinates":[[16.3669798,48.20096810000001],[16.3667375,48.2009458]]},"properties":{"highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatz Westpassage","tunnel":"yes"}},{"type":"Feature","id":"31275225","geometry":{"type":"LineString","coordinates":[[16.3667049,48.200709399999994],[16.3664968,48.2005772]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"31275224","geometry":{"type":"LineString","coordinates":[[16.3669285,48.20086379999998],[16.3667049,48.200709399999994]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"244103704","geometry":{"type":"LineString","coordinates":[[16.367101,48.20094230000001],[16.3669285,48.20086379999998]]},"properties":{"highway":"primary","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","ref":"B1","surface":"asphalt","turn:lanes":"through|through|through"}},{"type":"Feature","id":"231265404","geometry":{"type":"LineString","coordinates":[[16.3673061,48.20133229999999],[16.3672241,48.2012757],[16.3670743,48.201066999999995],[16.3669285,48.20086379999998]]},"properties":{"destination":"Linz; Schönbrunn","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"478992263","geometry":{"type":"LineString","coordinates":[[16.3671731,48.20028980000001],[16.367356,48.200389400000006],[16.3676639,48.20054490000001],[16.3677927,48.200609900000046]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1","turn:lanes":"slight_left|slight_left;through|through|through","width":"11"}},{"type":"Feature","id":"411396504","geometry":{"type":"LineString","coordinates":[[16.366355,48.2005834],[16.3664577,48.200630700000005]]},"properties":{"highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatz Westpassage","tunnel":"yes"}},{"type":"Feature","id":"40900937","geometry":{"type":"LineString","coordinates":[[16.3662511,48.2006777],[16.3662939,48.200655299999994],[16.3664577,48.200630700000005],[16.3669798,48.20096810000001],[16.3673802,48.201038600000004],[16.3676946,48.201078199999984],[16.3679407,48.20109710000003],[16.3681814,48.201100199999985],[16.3685294,48.20107350000001],[16.3685778,48.201082499999984]]},"properties":{"bicycle":"dismount","highway":"footway","indoor":"yes","level":"-1","name":"Karlsplatz Westpassage","tunnel":"yes","wheelchair":"yes"}},{"type":"Feature","id":"127061653","geometry":{"type":"LineString","coordinates":[[16.3669,48.200144499999965],[16.3669923,48.20019529999996],[16.3671288,48.20026569999999],[16.3671731,48.20028980000001]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1","surface":"asphalt","turn:lanes":"slight_left|slight_left;through|through|through","width":"11"}},{"type":"Feature","id":"244103699","geometry":{"type":"LineString","coordinates":[[16.367101,48.20094230000001],[16.3669818,48.2008065],[16.3669328,48.200739399999975],[16.3669006,48.20067019999999],[16.3668831,48.200502400000005],[16.3668931,48.2002914],[16.3668952,48.2002459],[16.3669,48.200144499999965]]},"properties":{"busway:right":"lane","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"24931693","geometry":{"type":"LineString","coordinates":[[16.3668767,48.20002320000003],[16.3669558,48.1999519],[16.367313,48.19982429999999],[16.3678597,48.19963419999996],[16.3679897,48.19959079999998],[16.3680984,48.19956119999998],[16.3682126,48.199530100000004],[16.3682301,48.199525300000005]]},"properties":{"bicycle":"yes","cycleway":"opposite","foot":"yes","highway":"living_street","name":"Treitlstraße","note":"Radfahren gegen die Einbahn ist in Wohnstraßen auch ohne explizite Beschilderung gesetzlich erlaubt.","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"197342819","geometry":{"type":"LineString","coordinates":[[16.3674107,48.199281600000006],[16.367555,48.199253699999986]]},"properties":{"covered":"yes","highway":"footway","name":"Resselgasse"}},{"type":"Feature","id":"189224207","geometry":{"type":"LineString","coordinates":[[16.3665447,48.19994080000001],[16.3666457,48.19994],[16.366679,48.19993969999999],[16.3667311,48.199925199999996],[16.3667733,48.199902099999974],[16.3667955,48.1998811],[16.3668111,48.19984679999999]]},"properties":{"highway":"secondary_link","maxspeed":"50","name":"Operngasse","note":"Abbiegen in die Treitlstraße ist von hier aus laut Verkehrsbeschilderung nicht erlaubt","oneway":"yes"}},{"type":"Feature","id":"432792248","geometry":{"type":"LineString","coordinates":[[16.3665447,48.19994080000001],[16.3667236,48.20004580000003]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"155291159","geometry":{"type":"LineString","coordinates":[[16.3667236,48.20004580000003],[16.3669,48.200144499999965]]},"properties":{"highway":"primary","lanes":"4","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"177093988","geometry":{"type":"LineString","coordinates":[[16.3661532,48.1996226],[16.3662552,48.19954129999999]]},"properties":{"highway":"footway","myth":"yes","name":"Bärenmühldurchgang","name:myth":"Die Bärenmühle an der Wien","tunnel":"building_passage","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/4_bezirk/baerenmuehle.html"}},{"type":"Feature","id":"31275222","geometry":{"type":"LineString","coordinates":[[16.3662243,48.1997719],[16.3665447,48.19994080000001]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"245964161","geometry":{"type":"LineString","coordinates":[[16.3667572,48.19940070000001],[16.3668659,48.199383299999994],[16.3669808,48.19936230000002],[16.3674107,48.199281600000006]]},"properties":{"bicycle":"yes","highway":"footway","motor_vehicle":"private","name":"Resselgasse"}},{"type":"Feature","id":"177093989","geometry":{"type":"LineString","coordinates":[[16.3663741,48.199487799999986],[16.3665278,48.19945999999999]]},"properties":{"covered":"yes","highway":"footway","myth":"yes","name":"Bärenmühldurchgang","name:myth":"Die Bärenmühle an der Wien","note":"Test auf covered, passage","tunnel":"building_passage","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/4_bezirk/baerenmuehle.html"}},{"type":"Feature","id":"177093990","geometry":{"type":"LineString","coordinates":[[16.3662552,48.19954129999999],[16.3663009,48.199511099999995],[16.3663741,48.199487799999986]]},"properties":{"highway":"footway","myth":"yes","name":"Bärenmühldurchgang","name:myth":"Die Bärenmühle an der Wien","url:myth":"http://www.sagen.at/texte/sagen/oesterreich/wien/4_bezirk/baerenmuehle.html"}},{"type":"Feature","id":"5891895","geometry":{"type":"LineString","coordinates":[[16.3680272,48.199177899999995],[16.3680869,48.199159699999996],[16.3688159,48.19893690000001],[16.3688807,48.198916199999985]]},"properties":{"bicycle":"yes","highway":"living_street","name":"Resselgasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"139885901","geometry":{"type":"LineString","coordinates":[[16.3688159,48.19893690000001],[16.3688699,48.199001899999985],[16.3691052,48.199302700000004]]},"properties":{"bicycle":"yes","highway":"service","name":"Resselgasse"}},{"type":"Feature","id":"42158845","geometry":{"type":"LineString","coordinates":[[16.3707623,48.19883770000001],[16.3704366,48.19892870000001],[16.3699702,48.199059000000005],[16.3696616,48.19914640000002],[16.3695901,48.19916660000001],[16.3692145,48.19927200000001],[16.3691052,48.199302700000004],[16.3689699,48.19934140000001],[16.3686918,48.199421],[16.3686206,48.19944140000001],[16.3685115,48.1994698],[16.3683804,48.19950639999999],[16.3683254,48.19951330000001],[16.3682573,48.19952190000001],[16.3682301,48.199525300000005]]},"properties":{"bicycle":"yes","foot":"yes","highway":"service","motor_vehicle":"permissive","name":"Karlsplatz","name:be":"Карлава плошча","surface":"paved"}},{"type":"Feature","id":"485597093","geometry":{"type":"LineString","coordinates":[[16.3695691,48.19669760000002],[16.3697116,48.196893200000005],[16.3699249,48.19719180000001],[16.3702945,48.1977407],[16.3703321,48.1977914]]},"properties":{"cycleway":"opposite","cycleway:left":"shared_lane","highway":"residential","maxspeed":"30","name":"Karlsgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5891892","geometry":{"type":"LineString","coordinates":[[16.3694537,48.196491699999996],[16.3694665,48.19655019999999],[16.3695395,48.19665509999999],[16.3695691,48.19669760000002]]},"properties":{"cycleway":"opposite","cycleway:left":"shared_lane","highway":"residential","maxspeed":"30","name":"Karlsgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"paving_stones","traffic_calming":"table"}},{"type":"Feature","id":"5891876","geometry":{"type":"LineString","coordinates":[[16.3695013,48.1979188],[16.369343,48.197292300000015]]},"properties":{"highway":"residential","maxspeed":"30","name":"Apfelgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"5095777","geometry":{"type":"LineString","coordinates":[[16.3703321,48.1977914],[16.3702332,48.19780509999998],[16.369965,48.19784760000002],[16.3695013,48.1979188],[16.3692868,48.19795160000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paniglgasse","oneway":"yes","sidewalk:right:incline":"-2%","sidewalk:right:sloped_curb":"2","sidewalk:right:smoothness":"good","sidewalk:right:surface":"asphalt","sidewalk:right:width":"2","source:maxspeed":"AT:zone:30","surface":"paved"}},{"type":"Feature","id":"12340684","geometry":{"type":"LineString","coordinates":[[16.3676886,48.19822239999999],[16.3677065,48.19829659999996],[16.3677408,48.19843190000003],[16.3677566,48.198503200000005],[16.3678439,48.19875680000001],[16.3679757,48.19906950000001],[16.367991,48.199107],[16.3680272,48.199177899999995],[16.3681494,48.1994115],[16.3682023,48.199488099999996],[16.3682125,48.19950170000001],[16.3682301,48.199525300000005],[16.3682401,48.199545900000004],[16.3685614,48.20020929999998]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Wiedner Hauptstraße","oneway":"yes","surface":"asphalt","width":"8"}},{"type":"Feature","id":"5095771","geometry":{"type":"LineString","coordinates":[[16.3676886,48.19822239999999],[16.367601,48.19823980000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schaurhofergasse","oneway":"yes","source:maxspeed":"sign"}},{"type":"Feature","id":"357470314","geometry":{"type":"LineString","coordinates":[[16.367601,48.19823980000004],[16.3675621,48.19824829999999],[16.3675219,48.198255500000016],[16.3663574,48.19844220000002],[16.3662548,48.1984726]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schaurhofergasse","oneway":"yes","source:maxspeed":"sign","surface":"asphalt"}},{"type":"Feature","id":"261098670","geometry":{"type":"LineString","coordinates":[[16.3688813,48.196250599999985],[16.3689028,48.196268799999984],[16.3689675,48.196309499999984],[16.3694537,48.196491699999996],[16.369621,48.1965472],[16.3698542,48.196624499999984],[16.3700242,48.19668819999998],[16.3717321,48.19729649999999],[16.3718085,48.197323600000004]]},"properties":{"bicycle":"use_sidepath","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Gußhausstraße","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"173484212","geometry":{"type":"LineString","coordinates":[[16.3692868,48.19795160000001],[16.3688057,48.198029700000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paniglgasse","oneway":"yes","sidewalk:right:incline":"3%","sidewalk:right:sloped_curb":"0","sidewalk:right:smoothness":"good","sidewalk:right:surface":"asphalt","sidewalk:right:width":"2","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"28723863","geometry":{"type":"LineString","coordinates":[[16.3671486,48.1977493],[16.3672638,48.19773789999999],[16.3673778,48.1976861],[16.3673921,48.19766799999999],[16.3674421,48.197604600000005]]},"properties":{"highway":"residential","maxspeed":"30","name":"Rilkeplatz","oneway":"yes","sidewalk":"right","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"173484213","geometry":{"type":"LineString","coordinates":[[16.3684121,48.19809509999996],[16.3678035,48.1981974],[16.3676886,48.19822239999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paniglgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"173484210","geometry":{"type":"LineString","coordinates":[[16.3688057,48.198029700000006],[16.3684121,48.19809509999996]]},"properties":{"highway":"residential","maxspeed":"30","name":"Paniglgasse","oneway":"yes","sidewalk:right:incline":"0%","sidewalk:right:sloped_curb":"0","sidewalk:right:smoothness":"good","sidewalk:right:surface":"asphalt","sidewalk:right:width":"2","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5891905","geometry":{"type":"LineString","coordinates":[[16.367573,48.19758379999999],[16.367652,48.197570799999994],[16.369343,48.197292300000015],[16.3699249,48.19719180000001]]},"properties":{"cycleway":"opposite","cycleway:left":"shared_lane","highway":"residential","maxspeed":"30","name":"Frankenberggasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"23395160","geometry":{"type":"LineString","coordinates":[[16.367573,48.19758379999999],[16.3676739,48.19815439999999],[16.3676886,48.19822239999999]]},"properties":{"highway":"secondary","maxspeed":"50","name":"Rilkeplatz","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"28690916","geometry":{"type":"LineString","coordinates":[[16.3674421,48.197604600000005],[16.3674264,48.19738130000002],[16.3673996,48.1971556],[16.3673671,48.19698790000001],[16.3673038,48.19676580000001],[16.3672486,48.196599599999985],[16.3671974,48.19646990000001],[16.3671829,48.196433299999995],[16.3671592,48.1963796]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"50","name":"Wiedner Hauptstraße","oneway":"yes","sidewalk":"right","source":"yahoo"}},{"type":"Feature","id":"4051934","geometry":{"type":"LineString","coordinates":[[16.3677431,48.19633479999999],[16.3676227,48.19637929999999],[16.3675026,48.19648540000003],[16.3674727,48.196544200000005],[16.3674619,48.196651299999985],[16.3674852,48.196955900000006],[16.367573,48.19758379999999]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Wiedner Hauptstraße","oneway":"yes","sidewalk":"right"}},{"type":"Feature","id":"105771178","geometry":{"type":"LineString","coordinates":[[16.3679862,48.202721499999996],[16.3678732,48.20274359999999],[16.367634,48.20279049999999],[16.3644498,48.20350339999999],[16.3643365,48.203536499999984]]},"properties":{"bicycle":"use_sidepath","foot":"use_sidepath","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Opernring","oneway":"yes","sidewalk":"no","surface":"asphalt","wikipedia":"de:Wiener Ringstraße"}},{"type":"Feature","id":"474349128","geometry":{"type":"LineString","coordinates":[[16.3676702,48.2025342],[16.366948,48.20270629999999],[16.3660386,48.20290919999999],[16.3660097,48.20291689999999],[16.3658029,48.20295809999999],[16.3657806,48.20296239999999],[16.3641546,48.20333959999999]]},"properties":{"footway":"sidewalk","highway":"footway","name":"Opernring"}},{"type":"Feature","id":"146683466","geometry":{"type":"LineString","coordinates":[[16.362093,48.202972800000026],[16.3615584,48.20266010000003],[16.3615382,48.20264739999999]]},"properties":{"bicycle":"yes","highway":"unclassified","lit":"yes","maxspeed":"50","name":"Babenbergerstraße"}},{"type":"Feature","id":"146683461","geometry":{"type":"LineString","coordinates":[[16.3615382,48.20264739999999],[16.361474,48.202604699999995]]},"properties":{"admin_level":"9","bicycle":"yes","boundary":"administrative","highway":"unclassified","lit":"yes","maxspeed":"50","name":"Babenbergerstraße"}},{"type":"Feature","id":"121911708","geometry":{"type":"LineString","coordinates":[[16.3658042,48.20300980000002],[16.3657806,48.20296239999999],[16.3655218,48.20244249999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Robert-Stolz-Platz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"27220098","geometry":{"type":"LineString","coordinates":[[16.3637839,48.20285469999999],[16.3647511,48.20264309999999],[16.3648482,48.20259490000001],[16.3653603,48.2024773],[16.3655218,48.20244249999996]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Elisabethstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"128859761","geometry":{"type":"LineString","coordinates":[[16.3655218,48.20244249999996],[16.3656484,48.20241659999999],[16.3657736,48.202388600000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Elisabethstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"27220147","geometry":{"type":"LineString","coordinates":[[16.3657736,48.202388600000006],[16.3660386,48.20290919999999],[16.3660612,48.202953699999995]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Robert-Stolz-Platz","oneway":"yes","sidewalk":"right","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"149641180","geometry":{"type":"LineString","coordinates":[[16.3641651,48.203377399999994],[16.3641546,48.20333959999999],[16.3641159,48.203271900000004],[16.3637839,48.20285469999999],[16.3633834,48.20238419999998],[16.3633378,48.202323199999995]]},"properties":{"highway":"unclassified","lit":"yes","maxspeed":"30","name":"Eschenbachgasse","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5930422","geometry":{"type":"LineString","coordinates":[[16.3621953,48.20290539999999],[16.3624759,48.202761699999996],[16.3632358,48.20237230000001],[16.3633378,48.202323199999995]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Nibelungengasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"31275226","geometry":{"type":"LineString","coordinates":[[16.3613644,48.2025208],[16.361474,48.202604699999995]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"unclassified","is_in":"Austria, Europe,Vienna,Wien","lcn":"yes","lit":"yes","name":"Mariahilfer Straße"}},{"type":"Feature","id":"20410411","geometry":{"type":"LineString","coordinates":[[16.3597777,48.20257620000001],[16.3598946,48.20246359999999]]},"properties":{"highway":"footway","name":"Typopassage","tunnel":"building_passage","website":"www.typopassage.at"}},{"type":"Feature","id":"5930430","geometry":{"type":"LineString","coordinates":[[16.3648482,48.20259490000001],[16.3646978,48.202290499999975],[16.3645286,48.201948000000016]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schillerplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"128859760","geometry":{"type":"LineString","coordinates":[[16.3657736,48.202388600000006],[16.3664389,48.202236400000004]]},"properties":{"highway":"residential","maxspeed":"30","name":"Elisabethstraße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"442721613","geometry":{"type":"LineString","coordinates":[[16.3644902,48.200895799999984],[16.3646524,48.20080779999998],[16.3647092,48.20076929999999]]},"properties":{"cycleway":"track","highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes","turn:lanes":"through|through|through;right|right"}},{"type":"Feature","id":"172464281","geometry":{"type":"LineString","coordinates":[[16.3657443,48.20084700000001],[16.3658556,48.201076400000005],[16.3659452,48.20124870000001],[16.3661212,48.20158699999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Makartgasse","oneway":"yes","source":"wien.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"121099999","geometry":{"type":"LineString","coordinates":[[16.3645286,48.201948000000016],[16.3641536,48.20121019999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Gauermanngasse","oneway":"yes","postal_code":"1010","source":"yahoo"}},{"type":"Feature","id":"62012305","geometry":{"type":"LineString","coordinates":[[16.3661212,48.20158699999999],[16.3653132,48.20176630000003],[16.3645286,48.201948000000016]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schillerplatz","oneway":"yes","source":"wien.at"}},{"type":"Feature","id":"254629114","geometry":{"type":"LineString","coordinates":[[16.3650216,48.20039400000002],[16.3649242,48.20033810000001]]},"properties":{"highway":"footway","name":"Papagenogasse"}},{"type":"Feature","id":"24030225","geometry":{"type":"LineString","coordinates":[[16.3667049,48.200709399999994],[16.3665816,48.200696799999974],[16.3664883,48.20069669999998],[16.3664435,48.200702500000006],[16.3657443,48.20084700000001],[16.3647695,48.20104949999998],[16.3643977,48.201137500000016],[16.3641536,48.20121019999999],[16.363903,48.20129220000001],[16.3636684,48.201402400000006]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes"}},{"type":"Feature","id":"36560413","geometry":{"type":"LineString","coordinates":[[16.3628916,48.20180730000001],[16.3622424,48.20216349999998]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"25677590","geometry":{"type":"LineString","coordinates":[[16.3645286,48.201948000000016],[16.3634388,48.20227449999999],[16.3633378,48.202323199999995]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Nibelungengasse","oneway":"yes","source":"lane"}},{"type":"Feature","id":"149641179","geometry":{"type":"LineString","coordinates":[[16.3633378,48.202323199999995],[16.3632915,48.20226439999999],[16.3628916,48.20180730000001]]},"properties":{"highway":"unclassified","lit":"yes","maxspeed":"30","name":"Eschenbachgasse","sidewalk":"both","source":"geoimage.at (high res)","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"244103709","geometry":{"type":"LineString","coordinates":[[16.3622424,48.20216349999998],[16.3615608,48.2025433],[16.3615387,48.202557600000006],[16.361474,48.202604699999995]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes"}},{"type":"Feature","id":"152022281","geometry":{"type":"LineString","coordinates":[[16.3617412,48.20110239999997],[16.361899,48.20116920000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Johanna-Dohnal-Platz","oneway":"yes","postal_code":"1060","ref:wien":"00391","source":"geoimage.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"244103696","geometry":{"type":"LineString","coordinates":[[16.3636684,48.201402400000006],[16.3628916,48.20180730000001]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes"}},{"type":"Feature","id":"107489405","geometry":{"type":"LineString","coordinates":[[16.3628358,48.201753199999985],[16.3632841,48.201520200000004],[16.3635428,48.2013858],[16.364009,48.201144699999986],[16.3644902,48.200895799999984]]},"properties":{"bicycle":"yes","cycleway":"lane","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes"}},{"type":"Feature","id":"209811999","geometry":{"type":"LineString","coordinates":[[16.361899,48.20116920000001],[16.3620533,48.20110790000001],[16.3621347,48.20107300000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Johanna-Dohnal-Platz","oneway":"no","postal_code":"1060","ref:wien":"00391","source":"geoimage.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"152022280","geometry":{"type":"LineString","coordinates":[[16.3617412,48.20110239999997],[16.3619161,48.200974100000025],[16.3619989,48.20094080000001]]},"properties":{"alt_name":"Papiermacherplatzl","description":"benannt nach Johanna Dohnal (14. Februar 1939 bis 20. Februar 2010), Politikerin","highway":"footway","name":"Johanna-Dohnal-Platz","postal_code":"1060","source:alt_name":"fieldwork and http://www.gumpendorferstrasse.at/index.php?i=Platz&p=34"}},{"type":"Feature","id":"29702973","geometry":{"type":"LineString","coordinates":[[16.3621347,48.20107300000001],[16.3622015,48.201139299999994],[16.362233,48.2011684],[16.3622711,48.2012024],[16.3623193,48.201249399999995],[16.3626864,48.20161950000002],[16.3627752,48.20169440000001],[16.3628358,48.201753199999985],[16.3628916,48.20180730000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Gumpendorfer Straße","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"31129446","geometry":{"type":"LineString","coordinates":[[16.3613644,48.2025208],[16.3612594,48.202426900000006],[16.3607487,48.201963000000006]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lcn":"yes","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","surface":"paving_stones"}},{"type":"Feature","id":"335975299","geometry":{"type":"LineString","coordinates":[[16.3600336,48.202010900000005],[16.3599457,48.20209270000004]]},"properties":{"highway":"footway","name":"Kabinettpassage","tunnel":"building_passage","website":"www.kabinettpassage.at"}},{"type":"Feature","id":"236742042","geometry":{"type":"LineString","coordinates":[[16.3609841,48.2018271],[16.361028,48.20186530000001],[16.360936,48.201912300000004]]},"properties":{"foot":"yes","highway":"steps","name":"Rahlstiege"}},{"type":"Feature","id":"335975296","geometry":{"type":"LineString","coordinates":[[16.3601933,48.20190550000001],[16.3603559,48.20183930000002]]},"properties":{"highway":"footway","name":"Literaturpassage","tunnel":"building_passage"}},{"type":"Feature","id":"8609655","geometry":{"type":"LineString","coordinates":[[16.3603219,48.200492499999996],[16.3617412,48.20110239999997]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Theobaldgasse","oneway":"yes","postal_code":"1060","source":"geoimage.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9790200","geometry":{"type":"LineString","coordinates":[[16.361899,48.20116920000001],[16.3619654,48.201280499999996],[16.3619395,48.201335900000004],[16.3613018,48.201663800000034]]},"properties":{"highway":"living_street","name":"Rahlgasse"}},{"type":"Feature","id":"25342527","geometry":{"type":"LineString","coordinates":[[16.3611755,48.20172870000002],[16.3609841,48.2018271]]},"properties":{"foot":"yes","highway":"steps","name":"Rahlstiege"}},{"type":"Feature","id":"24695024","geometry":{"type":"LineString","coordinates":[[16.3613644,48.2025208],[16.3614325,48.20248189999998],[16.3614641,48.202463800000004],[16.3616051,48.20239200000003],[16.3619591,48.202200000000005],[16.3628358,48.201753199999985]]},"properties":{"bicycle":"yes","cycleway":"lane","highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"229755591","geometry":{"type":"LineString","coordinates":[[16.3608507,48.201840300000015],[16.3609442,48.20179250000004],[16.3609841,48.2018271]]},"properties":{"foot":"yes","highway":"steps","name":"Rahlstiege"}},{"type":"Feature","id":"146683485","geometry":{"type":"LineString","coordinates":[[16.3579575,48.205073699999986],[16.358028,48.205026299999986],[16.3582334,48.204874099999984],[16.3595834,48.203873000000016],[16.3596472,48.203826899999996],[16.3597291,48.20377180000003],[16.3609147,48.20284609999999],[16.3612182,48.202620800000005],[16.3613187,48.202552],[16.3613644,48.2025208]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumsplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"10124388","geometry":{"type":"LineString","coordinates":[[16.361474,48.202604699999995],[16.3614219,48.202643999999964],[16.3614057,48.20265560000004],[16.3613462,48.20269799999997],[16.3610363,48.202922],[16.3602824,48.203488100000015],[16.3597483,48.20389069999996],[16.3591992,48.2042955],[16.358135,48.20508509999996],[16.3580741,48.205135600000006]]},"properties":{"cycleway":"track","highway":"secondary","lit":"yes","maxspeed":"50","name":"Museumsplatz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"4849327","geometry":{"type":"LineString","coordinates":[[16.354632,48.20239810000001],[16.3548284,48.2024375],[16.3548432,48.20243999999997],[16.3555227,48.20257000000001],[16.3558903,48.202644899999996],[16.3562128,48.2027052],[16.3566381,48.20278889999997],[16.3567082,48.20279790000001],[16.356785,48.202806399999986],[16.3568599,48.20281649999998],[16.3569231,48.202828899999986],[16.3570099,48.202861799999965],[16.3570651,48.202901499999996],[16.3570934,48.20295329999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Siebensterngasse","surface":"asphalt"}},{"type":"Feature","id":"4997694","geometry":{"type":"LineString","coordinates":[[16.3554451,48.204245000000014],[16.3556212,48.20363609999998],[16.3556895,48.203379299999995],[16.3557268,48.20324590000001],[16.3558742,48.202704100000005],[16.3558903,48.202644899999996]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Gutenberggasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"4997663","geometry":{"type":"LineString","coordinates":[[16.3550079,48.20416229999998],[16.3551798,48.20341969999998],[16.355234,48.203308600000014],[16.3552985,48.2031709],[16.3553681,48.20298650000004],[16.3554999,48.20263129999998],[16.3555227,48.20257000000001]]},"properties":{"highway":"pedestrian","lit":"yes","name":"Spittelberggasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"4997683","geometry":{"type":"LineString","coordinates":[[16.3562128,48.2027052],[16.3561216,48.20298500000001],[16.3561054,48.203134199999994],[16.3560512,48.2033007],[16.3560077,48.20343409999998],[16.3559243,48.203621],[16.3559127,48.20366229999999],[16.3558506,48.20384139999999],[16.3557544,48.20429830000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kirchberggasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"122729049","geometry":{"type":"LineString","coordinates":[[16.3517328,48.20250260000003],[16.3517432,48.202430100000015],[16.351766,48.2023221]]},"properties":{"bus":"yes","highway":"platform","name":"Siebensterngasse","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"4849654","geometry":{"type":"LineString","coordinates":[[16.3537249,48.20230750000002],[16.3537162,48.20234110000001],[16.3532382,48.2041921]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sigmundsgasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"4997661","geometry":{"type":"LineString","coordinates":[[16.3540923,48.20410240000004],[16.3541657,48.20373269999999],[16.354304,48.203159899999974],[16.3543142,48.2030422],[16.3543417,48.20293179999999],[16.3543577,48.202910599999996],[16.3543953,48.202864799999986],[16.3544996,48.20247549999999],[16.3545072,48.202437],[16.3545215,48.202382400000005]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Stiftgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"31129414","geometry":{"type":"LineString","coordinates":[[16.3517542,48.20220810000001],[16.3518889,48.20219170000004],[16.3519717,48.20218440000002],[16.3521868,48.20217890000001],[16.352279,48.202182100000016],[16.3524538,48.202188199999995],[16.3537249,48.20230750000002],[16.3542824,48.2023585],[16.3544481,48.20237509999998],[16.3545215,48.202382400000005],[16.354632,48.20239810000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"50","name":"Siebensterngasse","oneway":"yes"}},{"type":"Feature","id":"220572716","geometry":{"type":"LineString","coordinates":[[16.3501258,48.20220019999999],[16.35025,48.2022078],[16.3508101,48.20223839999997],[16.3509751,48.2022475],[16.3510584,48.202251399999994],[16.3511288,48.20225260000001],[16.351189,48.202252200000004],[16.3512439,48.20225160000001],[16.3514844,48.202240399999994],[16.3516555,48.20222319999999],[16.3517542,48.20220810000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"50","name":"Siebensterngasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"31129456","geometry":{"type":"LineString","coordinates":[[16.3517542,48.20220810000001],[16.3517102,48.202303],[16.3516787,48.2024347],[16.351364,48.204066600000004],[16.3513543,48.204121799999996],[16.3514539,48.20422800000003]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Kirchengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"149681458","geometry":{"type":"LineString","coordinates":[[16.3508101,48.20223839999997],[16.3508007,48.20228259999999],[16.3503893,48.204217200000045]]},"properties":{"bicycle":"destination","foot":"yes","highway":"living_street","horse":"no","lanes":"1","maxspeed":"5","motor_vehicle":"destination","name":"Stuckgasse","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"131621671","geometry":{"type":"LineString","coordinates":[[16.3490726,48.20214519999999],[16.3491297,48.202147],[16.3491659,48.2021493],[16.3493422,48.20216070000001],[16.3493626,48.202163600000034],[16.3495558,48.202170300000006],[16.3501258,48.20220019999999]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"50","name":"Siebensterngasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"234716782","geometry":{"type":"LineString","coordinates":[[16.3491133,48.20543240000001],[16.3491061,48.20537859999999],[16.3490733,48.205197999999996],[16.3490889,48.20509419999999],[16.3490646,48.20493479999999],[16.3490143,48.20482179999999],[16.3489448,48.2043266],[16.348954,48.20424600000001],[16.3489618,48.20418409999999],[16.3489666,48.204060999999996],[16.348948,48.20397890000001],[16.3489882,48.2034055],[16.3490388,48.202683399999984],[16.3490716,48.20227640000002],[16.3490735,48.202192800000006],[16.3490726,48.20214519999999]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"residential","lit":"yes","maxspeed":"30","maxspeed:bus":"50","name":"Neubaugasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4849362","geometry":{"type":"LineString","coordinates":[[16.3490726,48.20214519999999],[16.3490605,48.20203480000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"50","name":"Neubaugasse","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"146836192","geometry":{"type":"LineString","coordinates":[[16.3490605,48.20203480000001],[16.3490502,48.20189149999999],[16.349043,48.2017711]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"50","name":"Neubaugasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"149681437","geometry":{"type":"LineString","coordinates":[[16.3469614,48.20179189999999],[16.3469574,48.20186029999999],[16.346903,48.20278619999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hermanngasse","surface":"asphalt"}},{"type":"Feature","id":"10107591","geometry":{"type":"LineString","coordinates":[[16.3459495,48.20181149999999],[16.3459536,48.2018808],[16.3460177,48.20279310000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bandgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"paved"}},{"type":"Feature","id":"106806628","geometry":{"type":"LineString","coordinates":[[16.3432101,48.20182410000001],[16.3433047,48.20182299999999],[16.3440632,48.20181819999999],[16.3444887,48.20182460000001],[16.3448236,48.20182489999996],[16.3449204,48.20182589999999],[16.3450061,48.20182650000001]]},"properties":{"bicycle":"yes","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Westbahnstraße","oneway":"yes","oneway:bicycle":"no","vehicle":"destination"}},{"type":"Feature","id":"45422582","geometry":{"type":"LineString","coordinates":[[16.3469614,48.20179189999999],[16.3460822,48.20180340000002],[16.3459495,48.20181149999999]]},"properties":{"cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Westbahnstraße","oneway":"yes","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"106806625","geometry":{"type":"LineString","coordinates":[[16.3450061,48.20182650000001],[16.3451518,48.20182600000001],[16.3452394,48.201826400000016],[16.3455999,48.20182399999999],[16.3459495,48.20181149999999]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Westbahnstraße","sidewalk":"both"}},{"type":"Feature","id":"179646923","geometry":{"type":"LineString","coordinates":[[16.3405052,48.201846700000004],[16.3406089,48.201849400000015],[16.3407734,48.20184990000001],[16.3420814,48.20183689999999],[16.3431072,48.201825499999984],[16.3432101,48.20182410000001]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Westbahnstraße"}},{"type":"Feature","id":"4583688","geometry":{"type":"LineString","coordinates":[[16.354632,48.20239810000001],[16.3546672,48.20232849999999],[16.354942,48.2018808],[16.355168,48.20151250000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Stiftgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"437876305","geometry":{"type":"LineString","coordinates":[[16.3607487,48.201963000000006],[16.3605076,48.20176140000001],[16.360345,48.20162540000001],[16.3600868,48.201455100000004],[16.3598122,48.2013111],[16.3595273,48.20119249999999],[16.3591686,48.20107239999999],[16.3589441,48.20101679999999],[16.3586442,48.20095859999998]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lcn":"yes","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","surface":"paving_stones"}},{"type":"Feature","id":"9870098","geometry":{"type":"LineString","coordinates":[[16.3586442,48.20095859999998],[16.3585875,48.2010343],[16.3572271,48.20285129999999],[16.3570934,48.20295329999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Karl-Schweighofer-Gasse","oneway":"yes"}},{"type":"Feature","id":"164296307","geometry":{"type":"LineString","coordinates":[[16.355168,48.20151250000001],[16.3554964,48.200992299999996],[16.3558701,48.200384499999984],[16.3559068,48.200324800000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Stiftgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"246741923","geometry":{"type":"LineString","coordinates":[[16.3569095,48.200560499999966],[16.3559068,48.200324800000004]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lcn":"yes","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","surface":"paving_stones"}},{"type":"Feature","id":"8876782","geometry":{"type":"LineString","coordinates":[[16.357061,48.20041810000001],[16.356994,48.20048109999999],[16.3569095,48.200560499999966]]},"properties":{"bicycle":"yes","delivery":"yes","emergency":"yes","highway":"residential","maxspeed":"30","motor_vehicle":"delivery","name":"Capistrangasse","note":"Lieferverkehr only in Richtung MaHü","oneway":"yes","psv":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9827116","geometry":{"type":"LineString","coordinates":[[16.3591686,48.20107239999999],[16.3593149,48.2010032],[16.3597006,48.200820900000025],[16.3597967,48.200739699999986],[16.3603219,48.200492499999996]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Königsklostergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"333540640","geometry":{"type":"LineString","coordinates":[[16.3586442,48.20095859999998],[16.3582771,48.200884],[16.3569095,48.200560499999966]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lcn":"yes","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","oneway:psv":"no","surface":"paving_stones"}},{"type":"Feature","id":"162202307","geometry":{"type":"LineString","coordinates":[[16.3584104,48.200637299999954],[16.35837,48.2006835],[16.3583228,48.20078530000001],[16.3582771,48.200884]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"20","motor_vehicle":"emergency","name":"Theobaldgasse"}},{"type":"Feature","id":"28798331","geometry":{"type":"LineString","coordinates":[[16.3488663,48.20175520000001],[16.3487455,48.20175219999999],[16.3485898,48.2017616],[16.3483807,48.20177469999999],[16.3483156,48.20177949999999],[16.3481749,48.2017831],[16.3474589,48.20179849999997],[16.3469614,48.20179189999999]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Westbahnstraße","sidewalk":"both","surface":"asphalt"}},{"type":"Feature","id":"131621670","geometry":{"type":"LineString","coordinates":[[16.349043,48.2017711],[16.3488995,48.2017582],[16.3488663,48.20175520000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Westbahnstraße","sidewalk":"both"}},{"type":"Feature","id":"4583444","geometry":{"type":"LineString","coordinates":[[16.3491083,48.20097849999999],[16.3492162,48.2009769],[16.3505009,48.20095810000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Mondscheingasse","oneway":"yes"}},{"type":"Feature","id":"4849360","geometry":{"type":"LineString","coordinates":[[16.3512439,48.20225160000001],[16.351262,48.2022001],[16.3512768,48.20215620000002],[16.3512774,48.20211749999996],[16.3512724,48.20207729999996],[16.3512538,48.20200460000001],[16.3512937,48.20172149999999],[16.351296,48.20164410000001],[16.3512821,48.20158789999999],[16.3512577,48.2015413],[16.351201,48.20148309999999],[16.351124,48.20142179999996],[16.3505388,48.20100529999999],[16.3505009,48.20095810000001]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Mondscheingasse","oneway":"yes"}},{"type":"Feature","id":"4849253","geometry":{"type":"LineString","coordinates":[[16.347039,48.200354199999964],[16.3469644,48.2017362],[16.3469627,48.20176749999999],[16.3469614,48.20179189999999]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Hermanngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"10107617","geometry":{"type":"LineString","coordinates":[[16.3459495,48.20181149999999],[16.345949,48.20176270000002],[16.3459491,48.200724199999996],[16.3459489,48.200434099999995],[16.3459489,48.200366299999985]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Bandgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"233609825","geometry":{"type":"LineString","coordinates":[[16.3450224,48.20037099999999],[16.3450221,48.200426600000014],[16.3450084,48.20176480000001],[16.3450061,48.20182650000001],[16.3450036,48.20188289999999],[16.3450228,48.20274169999996],[16.3450175,48.202786299999985]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Zieglergasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"28798332","geometry":{"type":"LineString","coordinates":[[16.3432442,48.20036429999999],[16.3433414,48.2003661],[16.3449085,48.20037070000001],[16.3450224,48.20037099999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Seidengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"286653491","geometry":{"type":"LineString","coordinates":[[16.3450224,48.20037099999999],[16.3451167,48.20037189999999],[16.3457223,48.200367899999975],[16.3459489,48.200366299999985],[16.3469117,48.2003727],[16.347039,48.200354199999964]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Seidengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"437399868","geometry":{"type":"LineString","coordinates":[[16.3407879,48.2003651],[16.3431493,48.200364199999996],[16.3431914,48.200364199999996],[16.3432442,48.20036429999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Seidengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"39896751","geometry":{"type":"LineString","coordinates":[[16.3431405,48.204317],[16.3431459,48.20425119999999],[16.3431814,48.202849800000024],[16.3431831,48.202792999999986],[16.3431843,48.2027501],[16.3432079,48.2019013],[16.3432101,48.20182410000001],[16.3432204,48.2017501],[16.3432429,48.20042649999999],[16.3432442,48.20036429999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"26621214","geometry":{"type":"LineString","coordinates":[[16.3383682,48.20611389999996],[16.3383302,48.206031199999984],[16.3384984,48.204284400000006],[16.3385008,48.204259500000035],[16.3386584,48.202735200000006]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Wimbergergasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4849646","geometry":{"type":"LineString","coordinates":[[16.3386584,48.202735200000006],[16.3387385,48.202738099999976]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Kandlgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"205992796","geometry":{"type":"LineString","coordinates":[[16.3387385,48.202738099999976],[16.3390147,48.2027683],[16.3392715,48.20277500000003],[16.33945,48.2027664]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Kandlgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","traffic_calming":"table"}},{"type":"Feature","id":"30375210","geometry":{"type":"LineString","coordinates":[[16.3367918,48.20380209999999],[16.3369486,48.203728299999995],[16.3370405,48.20270120000001],[16.3369086,48.202646200000004]]},"properties":{"highway":"service","maxspeed":"50","name":"Neubaugürtel","oneway":"yes"}},{"type":"Feature","id":"26621215","geometry":{"type":"LineString","coordinates":[[16.3386584,48.202735200000006],[16.3376752,48.202687200000014]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Kandlgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"138782648","geometry":{"type":"LineString","coordinates":[[16.3387111,48.20218599999998],[16.338361,48.20215830000001],[16.3380886,48.202136800000005],[16.3378382,48.20211699999999],[16.3377458,48.20210970000002]]},"properties":{"bicycle":"yes","highway":"residential","lit":"yes","maxspeed":"30","name":"Urban-Loritz-Platz","oneway":"yes","source:maxspeed":"AT:zone:30","vehicle":"destination"}},{"type":"Feature","id":"15509638","geometry":{"type":"LineString","coordinates":[[16.3386584,48.202735200000006],[16.3387111,48.20218599999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wimbergergasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25771797","geometry":{"type":"LineString","coordinates":[[16.3349471,48.20258089999999],[16.3349018,48.20299720000003]]},"properties":{"highway":"residential","maxspeed":"30","name":"Geyschlägergasse","noexit":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"37729818","geometry":{"type":"LineString","coordinates":[[16.3359059,48.20260859999999],[16.3350502,48.2025701],[16.3349471,48.20258089999999]]},"properties":{"highway":"residential","lanes":"1","maxspeed":"30","name":"Sorbaitgasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"205992797","geometry":{"type":"LineString","coordinates":[[16.3339783,48.20262250000002],[16.3339441,48.20293430000004],[16.3339175,48.20333230000003]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Moeringgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5003913","geometry":{"type":"LineString","coordinates":[[16.3369086,48.202646200000004],[16.3368059,48.20264230000001],[16.3359059,48.20260859999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Sorbaitgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"29103989","geometry":{"type":"LineString","coordinates":[[16.3340599,48.20253489999999],[16.3339914,48.2025706],[16.3339783,48.20262250000002]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Moeringgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","traffic_calming":"table"}},{"type":"Feature","id":"37677561","geometry":{"type":"LineString","coordinates":[[16.3349471,48.20258089999999],[16.3348505,48.20257430000001],[16.3341542,48.2025357]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Sorbaitgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"205992798","geometry":{"type":"LineString","coordinates":[[16.3341542,48.2025357],[16.3340599,48.20253489999999]]},"properties":{"cycleway":"opposite","highway":"residential","lanes":"1","maxspeed":"30","name":"Sorbaitgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","traffic_calming":"table"}},{"type":"Feature","id":"24869491","geometry":{"type":"LineString","coordinates":[[16.3300093,48.20214010000001],[16.3299941,48.2023399],[16.3299922,48.20261540000004],[16.3300167,48.2028181]]},"properties":{"highway":"cycleway","lcn":"yes","name":"Burjanplatz"}},{"type":"Feature","id":"5003719","geometry":{"type":"LineString","coordinates":[[16.3300093,48.20214010000001],[16.3314709,48.202209900000014]]},"properties":{"bicycle":"permissive","created_by":"Potlatch 0.4c","highway":"living_street","name":"Langmaisgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003706","geometry":{"type":"LineString","coordinates":[[16.3253702,48.20240789999997],[16.3261636,48.20239219999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Guntherstraße","oneway":"yes"}},{"type":"Feature","id":"24869492","geometry":{"type":"LineString","coordinates":[[16.3297316,48.20256520000001],[16.3280589,48.20250579999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kriemhildplatz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"191251620","geometry":{"type":"LineString","coordinates":[[16.3261738,48.2025146],[16.3262582,48.20352889999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Brunhildengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003718","geometry":{"type":"LineString","coordinates":[[16.3280823,48.202325299999984],[16.3297345,48.20238279999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kriemhildplatz","oneway":"yes","surface":"cobblestone"}},{"type":"Feature","id":"24869498","geometry":{"type":"LineString","coordinates":[[16.3271092,48.2023825],[16.3280722,48.20240340000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Guntherstraße","noexit":"yes","surface":"cobblestone"}},{"type":"Feature","id":"189028260","geometry":{"type":"LineString","coordinates":[[16.3261738,48.2025146],[16.3262425,48.202514699999966],[16.3263859,48.2025137],[16.3267518,48.20251109999998],[16.3268419,48.2025232],[16.3268814,48.2025285],[16.3269207,48.20251050000002],[16.3269371,48.20250300000001],[16.3269544,48.20249530000001],[16.3270415,48.202456600000005],[16.3270622,48.20240939999999],[16.3271092,48.2023825]]},"properties":{"bicycle":"official","foot":"official","highway":"cycleway","name":"Friedensreich-Hundertwasser-Platz"}},{"type":"Feature","id":"219430763","geometry":{"type":"LineString","coordinates":[[16.3271462,48.2043894],[16.32714,48.204358799999994],[16.3270933,48.20415439999999],[16.3270492,48.20391879999997],[16.3270173,48.203707699999995],[16.3269935,48.20349439999998],[16.3269777,48.20329889999999],[16.3269687,48.203089000000006],[16.3269659,48.20289790000001],[16.3269692,48.202709700000014],[16.3269708,48.20257609999999],[16.3269585,48.20253589999999],[16.3269371,48.20250300000001],[16.3269061,48.2024696],[16.3268409,48.20242730000001],[16.3267664,48.20238600000002]]},"properties":{"highway":"tertiary","maxspeed":"50","name":"Camillo-Sitte-Gasse"}},{"type":"Feature","id":"5003720","geometry":{"type":"LineString","coordinates":[[16.3261636,48.20239219999999],[16.3261738,48.2025146]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Brunhildengasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"24869499","geometry":{"type":"LineString","coordinates":[[16.3271092,48.2023825],[16.3270536,48.20231960000001],[16.3269835,48.20230889999996],[16.326903,48.202305800000005],[16.3267712,48.20230380000001],[16.3267238,48.202284099999986],[16.3266967,48.20225270000003],[16.3266807,48.20225690000001],[16.3266566,48.20226339999999],[16.3266358,48.20227059999999],[16.3266198,48.20227599999998],[16.3265972,48.2022819],[16.3265205,48.20229290000003],[16.3264901,48.202297200000004],[16.3263862,48.202296899999965],[16.326283,48.20229660000001],[16.3262273,48.20233680000001],[16.3262298,48.20237689999999],[16.3262425,48.202514699999966]]},"properties":{"highway":"footway","name":"Friedensreich-Hundertwasser-Platz"}},{"type":"Feature","id":"5003727","geometry":{"type":"LineString","coordinates":[[16.3282896,48.204854600000004],[16.3281215,48.204259500000035],[16.3280677,48.20395909999999],[16.3280309,48.2036597],[16.328025,48.203464800000035],[16.3280208,48.20305260000001],[16.3280589,48.20250579999998],[16.3280722,48.20240340000001],[16.3280823,48.202325299999984]]},"properties":{"cycleway":"opposite","fixme":"yes","highway":"residential","maxspeed":"30","name":"Alliogasse","oneway":"yes"}},{"type":"Feature","id":"217030746","geometry":{"type":"LineString","coordinates":[[16.3405052,48.201846700000004],[16.3404962,48.201904799999994],[16.3404887,48.20195319999999],[16.3404418,48.20217529999999],[16.340407,48.202363100000014],[16.3403701,48.20256019999999],[16.3403333,48.20272370000001],[16.3403178,48.20280079999998],[16.3402872,48.20296079999997],[16.3402536,48.20315769999999],[16.3402353,48.20326699999998],[16.3402161,48.20337190000001],[16.3401791,48.20356749999999],[16.3401466,48.20375390000001],[16.3401103,48.20395320000003],[16.3400771,48.20415350000002],[16.3400568,48.20426330000001],[16.3400452,48.204325900000015],[16.3400326,48.20439329999999],[16.3399655,48.2047],[16.3399194,48.2049217],[16.3398395,48.20537920000004],[16.3397552,48.20584629999999],[16.3397279,48.2059812],[16.3397177,48.20604540000002],[16.3397062,48.206108700000016],[16.3396848,48.20622439999997],[16.339611,48.2066543],[16.3395291,48.20707199999998],[16.3395136,48.207158899999996],[16.3394594,48.207462599999985],[16.339412,48.2077486],[16.3393898,48.207882299999994],[16.3393147,48.20834479999996],[16.339313,48.20842099999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Kaiserstraße","note":"Tempo 30 Zone ausgen. Schienenstraßen & Busspuren, d.h. effektiv gilt auf dieser Straße Tempo 50"}},{"type":"Feature","id":"42799329","geometry":{"type":"LineString","coordinates":[[16.3388191,48.20172579999999],[16.3390952,48.2017472],[16.3401557,48.20182410000001],[16.3401715,48.2018248],[16.3403973,48.20183970000002],[16.3405052,48.201846700000004]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Westbahnstraße"}},{"type":"Feature","id":"138782641","geometry":{"type":"LineString","coordinates":[[16.3388191,48.20172579999999],[16.3388043,48.20178520000002],[16.3387991,48.201808],[16.3387789,48.2019157],[16.3387588,48.2020091],[16.3387111,48.20218599999998]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Urban-Loritz-Platz","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"147402943","geometry":{"type":"LineString","coordinates":[[16.3378269,48.2016304],[16.3379776,48.201649799999956],[16.3381643,48.20166689999999],[16.3384562,48.20169290000001],[16.3386512,48.2017103],[16.3388191,48.20172579999999]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"50","name":"Urban-Loritz-Platz","surface":"cobblestone"}},{"type":"Feature","id":"28318684","geometry":{"type":"LineString","coordinates":[[16.3370453,48.20154170000001],[16.3371746,48.201556400000015],[16.3372349,48.20156320000001],[16.3372684,48.20156700000001],[16.3375958,48.20160419999999],[16.3377374,48.20162020000001],[16.3378269,48.2016304]]},"properties":{"highway":"secondary","lit":"yes","maxspeed":"50","name":"Urban-Loritz-Platz","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"31275230","geometry":{"type":"LineString","coordinates":[[16.3378269,48.2016304],[16.3378088,48.201732100000015],[16.3377458,48.20210970000002],[16.3376816,48.20263460000001],[16.3376752,48.202687200000014],[16.3375363,48.20413579999999],[16.337525,48.20422429999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"26158104","geometry":{"type":"LineString","coordinates":[[16.3266299,48.20179809999999],[16.3267485,48.2018008],[16.3281779,48.20183299999999],[16.3296825,48.201885800000014],[16.3297755,48.201888499999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Witzelsbergergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26653791","geometry":{"type":"LineString","coordinates":[[16.3300672,48.20161390000001],[16.3300211,48.20187929999997],[16.3299954,48.2020904],[16.3300093,48.20214010000001]]},"properties":{"bicycle":"permissive","highway":"living_street","lcn":"yes","name":"Markgraf-Rüdiger-Straße","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003723","geometry":{"type":"LineString","coordinates":[[16.3315167,48.20168269999999],[16.3300672,48.20161390000001]]},"properties":{"highway":"living_street","name":"Alberichgasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"5003705","geometry":{"type":"LineString","coordinates":[[16.3266299,48.20179809999999],[16.3252732,48.201770899999985]]},"properties":{"created_by":"Potlatch 0.10b","highway":"residential","maxspeed":"30","name":"Witzelsbergergasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003914","geometry":{"type":"LineString","coordinates":[[16.3357604,48.20413780000001],[16.3359059,48.20260859999999],[16.3359276,48.20235120000001],[16.3359845,48.20167709999998],[16.3360316,48.201432899999986]]},"properties":{"highway":"residential","maxspeed":"30","name":"Wurzbachgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"30088016","geometry":{"type":"LineString","coordinates":[[16.3300672,48.20161390000001],[16.3299459,48.201602699999995],[16.3298291,48.20159290000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Alberichgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"26738389","geometry":{"type":"LineString","coordinates":[[16.3367537,48.2041797],[16.3367605,48.20409799999999],[16.3367918,48.20380209999999],[16.3368994,48.2027262],[16.3369086,48.202646200000004],[16.3370231,48.20165259999999],[16.3370453,48.20154170000001]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"42799326","geometry":{"type":"LineString","coordinates":[[16.3388191,48.20172579999999],[16.3388302,48.20165029999998],[16.3388674,48.2013987],[16.338888,48.201259600000014]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Urban-Loritz-Platz"}},{"type":"Feature","id":"26621217","geometry":{"type":"LineString","coordinates":[[16.338888,48.201259600000014],[16.3387687,48.201252600000004],[16.338574,48.201241100000004],[16.3382394,48.20122150000003],[16.3380858,48.2012125],[16.3379523,48.20120459999998]]},"properties":{"highway":"living_street","lit":"yes","name":"Urban-Loritz-Platz","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"299696928","geometry":{"type":"LineString","coordinates":[[16.3375954,48.20076259999999],[16.33761,48.20071920000004],[16.3376689,48.20066080000004],[16.3376911,48.200646800000015],[16.3377646,48.2006337],[16.337809,48.200630399999994],[16.3378204,48.200627000000026],[16.3378306,48.20063160000001],[16.3378578,48.20063590000001],[16.3378731,48.20064049999999],[16.3379092,48.200655299999994],[16.3379297,48.2006638],[16.3379565,48.20066849999998]]},"properties":{"highway":"footway","name":"Emil-Maurer-Platz","source":"basemap.at"}},{"type":"Feature","id":"37540941","geometry":{"type":"LineString","coordinates":[[16.3370453,48.20154170000001],[16.3370804,48.2014332],[16.337251,48.20095150000003],[16.3372667,48.20090479999999],[16.3373092,48.20079659999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"28798326","geometry":{"type":"LineString","coordinates":[[16.3373092,48.20079659999999],[16.3375946,48.200836100000004],[16.3379227,48.200888700000036],[16.338058,48.200907599999994]]},"properties":{"cycleway":"opposite_track","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"147402933","geometry":{"type":"LineString","coordinates":[[16.3364077,48.2005571],[16.336967,48.20071089999999],[16.3371951,48.20077259999999],[16.3373092,48.20079659999999]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Märzstraße","surface":"asphalt"}},{"type":"Feature","id":"5003715","geometry":{"type":"LineString","coordinates":[[16.3298776,48.201392],[16.3297918,48.2013857],[16.328325,48.201277900000036],[16.3275343,48.201223200000044],[16.3267559,48.20116619999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tellgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003726","geometry":{"type":"LineString","coordinates":[[16.3315748,48.20108299999998],[16.3303188,48.20086549999999]]},"properties":{"highway":"living_street","name":"Loeschenkohlgasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"26158103","geometry":{"type":"LineString","coordinates":[[16.3251848,48.20109579999999],[16.3259318,48.20112039999998],[16.3267559,48.20116619999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tellgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8090058","geometry":{"type":"LineString","coordinates":[[16.3360316,48.201432899999986],[16.3364077,48.2005571]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"50","name":"Löhrgasse","old_name":"Michaeler-Gasse","oneway":"yes","source:old_name":"Aufschrift bei Löhrgasse 13"}},{"type":"Feature","id":"8090089","geometry":{"type":"LineString","coordinates":[[16.3315914,48.20049089999998],[16.3315748,48.20108299999998],[16.3315167,48.20168269999999],[16.3314709,48.202209900000014],[16.3314676,48.20225599999998],[16.3314567,48.20242799999997],[16.331417,48.202843900000005],[16.331395,48.203155699999996],[16.3313884,48.20323539999998],[16.3313888,48.20330200000001],[16.3313847,48.20334980000004],[16.33134,48.20383480000001],[16.3313142,48.20439669999999]]},"properties":{"highway":"tertiary","maxspeed":"30","name":"Vogelweidplatz","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24869497","geometry":{"type":"LineString","coordinates":[[16.3280823,48.202325299999984],[16.3281779,48.20183299999999],[16.328325,48.201277900000036],[16.3286192,48.20054099999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Alliogasse","oneway":"yes"}},{"type":"Feature","id":"30088012","geometry":{"type":"LineString","coordinates":[[16.3303188,48.20086549999999],[16.330201,48.20084130000001],[16.3300845,48.20081690000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Loeschenkohlgasse","source":"yahoo"}},{"type":"Feature","id":"422392731","geometry":{"type":"LineString","coordinates":[[16.3664968,48.2005772],[16.3660428,48.20028869999999],[16.3657623,48.200114100000036],[16.3656474,48.200038500000005]]},"properties":{"highway":"primary","lanes":"4","lit":"yes","maxspeed":"50","name":"Friedrichstraße","oneway":"yes","ref":"B1","turn:lanes":"left|through|through|throught"}},{"type":"Feature","id":"155291150","geometry":{"type":"LineString","coordinates":[[16.3657977,48.19992589999998],[16.3660038,48.1997925],[16.3660605,48.199768199999994],[16.3661367,48.1997633],[16.3662243,48.1997719]]},"properties":{"highway":"secondary","lanes":"3","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes","turn:lanes":"left|through|through"}},{"type":"Feature","id":"155291149","geometry":{"type":"LineString","coordinates":[[16.3656474,48.200038500000005],[16.3657157,48.19998730000003],[16.3657977,48.19992589999998]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes"}},{"type":"Feature","id":"87511621","geometry":{"type":"LineString","coordinates":[[16.3647092,48.20076929999999],[16.3648155,48.2006959],[16.3651216,48.20044899999996],[16.3655695,48.200099300000005],[16.3656474,48.200038500000005]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Getreidemarkt","oneway":"yes","turn:lanes":"through|through|right|right"}},{"type":"Feature","id":"8876781","geometry":{"type":"LineString","coordinates":[[16.3611857,48.200090200000005],[16.3610941,48.200133300000005],[16.3603219,48.200492499999996]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Königsklostergasse","oneway":"yes","source:cycleway":"survey","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9827207","geometry":{"type":"LineString","coordinates":[[16.3590707,48.20024939999999],[16.3591273,48.2002909],[16.3596938,48.200732200000004],[16.3597967,48.200739699999986]]},"properties":{"highway":"residential","maxspeed":"30","name":"Pfauengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"234005049","geometry":{"type":"LineString","coordinates":[[16.3603219,48.200492499999996],[16.3595412,48.200164],[16.3594521,48.20013800000001],[16.3593004,48.2001564],[16.3592212,48.20017900000002],[16.3591212,48.20023449999999],[16.3590707,48.20024939999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Theobaldgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"9802951","geometry":{"type":"LineString","coordinates":[[16.3584104,48.200637299999954],[16.3590707,48.20024939999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Theobaldgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"339157705","geometry":{"type":"LineString","coordinates":[[16.3552925,48.19992580000002],[16.3551948,48.20000170000003]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage","tunnel":"building_passage"}},{"type":"Feature","id":"246741922","geometry":{"type":"LineString","coordinates":[[16.3575729,48.19993720000002],[16.3584104,48.200637299999954]]},"properties":{"highway":"residential","maxspeed":"30","name":"Windmühlgasse","oneway":"yes","oneway:bicycle":"yes","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"339157551","geometry":{"type":"LineString","coordinates":[[16.3551948,48.20000170000003],[16.3551819,48.20001210000001],[16.3550855,48.20009010000001]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage"}},{"type":"Feature","id":"26261752","geometry":{"type":"LineString","coordinates":[[16.3592426,48.1999696],[16.359268,48.200051400000035],[16.3591007,48.2000745],[16.3591104,48.200105699999995],[16.3592774,48.2000826],[16.3593004,48.2001564]]},"properties":{"foot":"yes","highway":"steps","historic":"monument","name":"Fillgraderstiege","source":"wien.gv.at"}},{"type":"Feature","id":"234005048","geometry":{"type":"LineString","coordinates":[[16.357061,48.20041810000001],[16.3575729,48.19993720000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Capistrangasse","noexit":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"209385061","geometry":{"type":"LineString","coordinates":[[16.359268,48.200051400000035],[16.3594238,48.20002950000003],[16.3594337,48.200060399999984],[16.3592774,48.2000826]]},"properties":{"foot":"yes","highway":"steps","historic":"monument","name":"Fillgraderstiege","source":"wien.gv.at"}},{"type":"Feature","id":"9826768","geometry":{"type":"LineString","coordinates":[[16.3588691,48.19990870000001],[16.3584371,48.19974260000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Fillgradergasse","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"218080888","geometry":{"type":"LineString","coordinates":[[16.3577387,48.19978570000001],[16.3575729,48.19993720000002]]},"properties":{"highway":"footway","name":"Capistrangasse"}},{"type":"Feature","id":"5893409","geometry":{"type":"LineString","coordinates":[[16.3641085,48.19987800000004],[16.3649242,48.20033810000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Papagenogasse","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"33483908","geometry":{"type":"LineString","coordinates":[[16.364622,48.19946450000003],[16.3645466,48.19952519999998],[16.3641085,48.19987800000004],[16.3635971,48.200290499999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Millöckergasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"253706317","geometry":{"type":"LineString","coordinates":[[16.3657332,48.19959109999999],[16.3656474,48.1996546],[16.3655261,48.199755900000014],[16.365457,48.1998414]]},"properties":{"highway":"footway","name":"Naschmarkt"}},{"type":"Feature","id":"164357939","geometry":{"type":"LineString","coordinates":[[16.3650293,48.19912049999999],[16.3650886,48.199150799999984],[16.365457,48.199349900000016],[16.365862,48.199568699999986],[16.3659864,48.19963599999997],[16.3660437,48.19966690000001],[16.3661145,48.19970809999998],[16.3661666,48.1997384],[16.3662243,48.1997719]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1"}},{"type":"Feature","id":"168428420","geometry":{"type":"LineString","coordinates":[[16.3656923,48.1998557],[16.3655499,48.19977750000001],[16.3655261,48.199755900000014],[16.3655132,48.1997442],[16.3651716,48.199559499999964],[16.3647541,48.199332999999996],[16.3647121,48.19930980000001],[16.3636472,48.198723]]},"properties":{"highway":"footway","name":"Minerlgasse","source":"wien.gv.at-labels"}},{"type":"Feature","id":"168548265","geometry":{"type":"LineString","coordinates":[[16.3658453,48.199754900000016],[16.3656474,48.1996546],[16.3652956,48.1994684],[16.3649263,48.19926649999999],[16.3648714,48.1992372],[16.3648274,48.1992137],[16.3637474,48.198640600000004]]},"properties":{"highway":"footway","name":"Sopherlgasse","source":"wien.gv.at-labels"}},{"type":"Feature","id":"5893469","geometry":{"type":"LineString","coordinates":[[16.3584371,48.19974260000001],[16.3589767,48.199139599999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Bienengasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"218080889","geometry":{"type":"LineString","coordinates":[[16.3584371,48.19974260000001],[16.3579811,48.1995642],[16.35716,48.199239500000004],[16.3569353,48.1993736],[16.3569077,48.199390100000016]]},"properties":{"highway":"residential","maxspeed":"30","name":"Fillgradergasse","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"5893453","geometry":{"type":"LineString","coordinates":[[16.3588691,48.19990870000001],[16.3590692,48.199984900000004],[16.3592426,48.1999696],[16.3594289,48.199935100000005],[16.3599167,48.19947100000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Fillgradergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"160532708","geometry":{"type":"LineString","coordinates":[[16.3609447,48.19985209999996],[16.360998,48.19981769999998],[16.3610989,48.1997872],[16.3611489,48.19977209999999],[16.3613718,48.19970459999999],[16.3613731,48.199702099999996],[16.3614062,48.1996365]]},"properties":{"highway":"footway","name":"Helene-Bauer-Platz","source":"wien.gv.at-labels"}},{"type":"Feature","id":"25511033","geometry":{"type":"LineString","coordinates":[[16.3579811,48.1995642],[16.3578839,48.19965300000001]]},"properties":{"highway":"footway","name":"Capistrangasse"}},{"type":"Feature","id":"306455745","geometry":{"type":"LineString","coordinates":[[16.3578839,48.19965300000001],[16.3577387,48.19978570000001]]},"properties":{"highway":"steps","name":"Capistranstiege"}},{"type":"Feature","id":"5893399","geometry":{"type":"LineString","coordinates":[[16.3606627,48.199733200000026],[16.3607486,48.19967779999999],[16.3608198,48.199650099999985],[16.3609126,48.1996379],[16.3614062,48.1996365],[16.3614292,48.19963680000001],[16.3615696,48.199646],[16.3626537,48.199646900000005],[16.362848,48.199779500000005],[16.3635971,48.200290499999994],[16.3637188,48.200375699999995],[16.3638014,48.2004335],[16.3644405,48.200862099999995],[16.3644902,48.200895799999984]]},"properties":{"highway":"residential","maxspeed":"30","name":"Lehargasse","old_name":"Dreihufeisengasse","oneway":"yes","source":"wien.at"}},{"type":"Feature","id":"196461771","geometry":{"type":"LineString","coordinates":[[16.3586637,48.19902819999999],[16.3589767,48.199139599999995],[16.3593803,48.19928010000001],[16.359383,48.19928380000002],[16.3599167,48.19947100000002],[16.3606627,48.199733200000026],[16.3608128,48.19978739999999],[16.3609447,48.19985209999996],[16.3611857,48.200090200000005],[16.3619989,48.20094080000001],[16.3621347,48.20107300000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Gumpendorfer Straße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"253639231","geometry":{"type":"LineString","coordinates":[[16.3564584,48.1990126],[16.3564362,48.19902450000001]]},"properties":{"foot":"yes","highway":"footway","name":"Stiegengasse","source":"yahoo"}},{"type":"Feature","id":"253639232","geometry":{"type":"LineString","coordinates":[[16.3563864,48.19906610000001],[16.3562588,48.1991725]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage","tunnel":"building_passage"}},{"type":"Feature","id":"28798335","geometry":{"type":"LineString","coordinates":[[16.3567063,48.19887959999997],[16.3564584,48.1990126]]},"properties":{"foot":"yes","highway":"steps","name":"Stiegengasse","source":"yahoo"}},{"type":"Feature","id":"339157558","geometry":{"type":"LineString","coordinates":[[16.3556296,48.19965819999999],[16.3552925,48.19992580000002]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage"}},{"type":"Feature","id":"191318797","geometry":{"type":"LineString","coordinates":[[16.3557599,48.199558000000025],[16.3556296,48.19965819999999]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage","tunnel":"building_passage"}},{"type":"Feature","id":"339157549","geometry":{"type":"LineString","coordinates":[[16.3562588,48.1991725],[16.3561631,48.19924159999999]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage"}},{"type":"Feature","id":"339157545","geometry":{"type":"LineString","coordinates":[[16.3561631,48.19924159999999],[16.3560464,48.19933770000003]]},"properties":{"highway":"steps","loc_name":"Raimundhof","name":"Raimundhofpassage","tunnel":"building_passage"}},{"type":"Feature","id":"339157553","geometry":{"type":"LineString","coordinates":[[16.3560464,48.19933770000003],[16.356,48.199377]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage"}},{"type":"Feature","id":"339157546","geometry":{"type":"LineString","coordinates":[[16.3558996,48.1994512],[16.3558479,48.19949650000001]]},"properties":{"highway":"footway","loc_name":"Raimundhof","name":"Raimundhofpassage"}},{"type":"Feature","id":"339157548","geometry":{"type":"LineString","coordinates":[[16.356,48.199377],[16.3558996,48.1994512]]},"properties":{"highway":"steps","loc_name":"Raimundhof","name":"Raimundhofpassage","tunnel":"building_passage"}},{"type":"Feature","id":"23587255","geometry":{"type":"LineString","coordinates":[[16.3546283,48.199948800000016],[16.3547167,48.19987470000001],[16.3552171,48.199455]]},"properties":{"highway":"service","name":"Mariahilfer Straße","service":"driveway","vehicle":"private"}},{"type":"Feature","id":"339157554","geometry":{"type":"LineString","coordinates":[[16.3558479,48.19949650000001],[16.3557599,48.199558000000025]]},"properties":{"highway":"steps","loc_name":"Raimundhof","name":"Raimundhofpassage","tunnel":"building_passage"}},{"type":"Feature","id":"5095770","geometry":{"type":"LineString","coordinates":[[16.3650293,48.19912049999999],[16.3651175,48.199048800000014],[16.3655349,48.19868109999999],[16.3659096,48.198542799999984],[16.3661456,48.19849479999999],[16.3662548,48.1984726]]},"properties":{"highway":"residential","maxspeed":"30","name":"Faulmanngasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"27188687","geometry":{"type":"LineString","coordinates":[[16.3652711,48.19819609999999],[16.3651717,48.19824230000003],[16.3651575,48.1982879],[16.3655349,48.19868109999999]]},"properties":{"highway":"residential","name":"Mühlgasse","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"4788786","geometry":{"type":"LineString","coordinates":[[16.3634115,48.19881509999996],[16.3634916,48.19874599999997],[16.3637476,48.198530500000004],[16.3638149,48.19846910000001]]},"properties":{"bicycle":"yes","highway":"residential","maxspeed":"20","name":"Schleifmühlbrücke","note":"Begegnungszone","oneway":"no","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"178284518","geometry":{"type":"LineString","coordinates":[[16.3646115,48.19782810000001],[16.3646992,48.19775240000001],[16.3647494,48.197710400000005],[16.3647795,48.19768519999997],[16.3648843,48.19759880000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"30","name":"Schleifmühlgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"10217102","geometry":{"type":"LineString","coordinates":[[16.3638149,48.19846910000001],[16.3638731,48.198421800000006],[16.3646115,48.19782810000001]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","maxspeed":"30","name":"Schleifmühlgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"5893493","geometry":{"type":"LineString","coordinates":[[16.3614292,48.19963680000001],[16.3625909,48.19847579999998],[16.3626361,48.198430599999995]]},"properties":{"highway":"residential","maxspeed":"30","name":"Girardigasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"226975667","geometry":{"type":"LineString","coordinates":[[16.3633231,48.19845000000001],[16.3632444,48.198527799999994],[16.363173,48.19860400000002]]},"properties":{"highway":"footway","name":"Johanna-Bauer-Platz","source":"https://www.meinbezirk.at/mariahilf/wirtschaft/naschmarkt-kleiner-platz-trotzt-der-sanierung-d1582394.html"}},{"type":"Feature","id":"5893479","geometry":{"type":"LineString","coordinates":[[16.3608832,48.197643700000015],[16.3608241,48.1977091],[16.3602834,48.198306900000006],[16.359383,48.19928380000002],[16.3588691,48.19990870000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Laimgrubengasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"492719824","geometry":{"type":"LineString","coordinates":[[16.36347,48.19863570000001],[16.3632444,48.198527799999994],[16.3628913,48.198358900000045],[16.3626132,48.19822590000001],[16.3625659,48.198202400000014],[16.3621615,48.1980011],[16.3619524,48.197897100000006],[16.3618749,48.197860100000014]]},"properties":{"highway":"footway","name":"Mariedlgasse","source":"wien.gv.at-labels"}},{"type":"Feature","id":"5893402","geometry":{"type":"LineString","coordinates":[[16.3545702,48.197936699999985],[16.3544835,48.19801669999998],[16.3536094,48.19874070000003],[16.3534913,48.1988499]]},"properties":{"delivery":"yes","fixme":"delivery times?","highway":"pedestrian","motor_vehicle":"no","name":"Barnabitengasse","oneway":"no","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"5893439","geometry":{"type":"LineString","coordinates":[[16.3563495,48.19822400000001],[16.356592,48.198005499999994]]},"properties":{"highway":"residential","maxspeed":"30","name":"Joanelligasse","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5893480","geometry":{"type":"LineString","coordinates":[[16.3572954,48.19854219999999],[16.3571778,48.19859389999999],[16.3567063,48.19887959999997]]},"properties":{"foot":"yes","highway":"pedestrian","name":"Stiegengasse","source":"yahoo","surface":"paving_stones"}},{"type":"Feature","id":"246741921","geometry":{"type":"LineString","coordinates":[[16.3542818,48.19770840000001],[16.3543547,48.197725100000014],[16.3552568,48.197948000000025],[16.3562774,48.19820579999998],[16.3563495,48.19822400000001],[16.3571018,48.1984856],[16.3572954,48.19854219999999],[16.3573907,48.198576],[16.3574862,48.19860950000003],[16.3585575,48.1989902],[16.3586637,48.19902819999999]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Gumpendorfer Straße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5893505","geometry":{"type":"LineString","coordinates":[[16.3542818,48.19770840000001],[16.3542513,48.1977828],[16.3542447,48.197799],[16.3542546,48.197852100000006],[16.354304,48.197899500000005],[16.3545702,48.197936699999985],[16.3547756,48.1979752],[16.3547876,48.1979786],[16.3552278,48.198089900000014],[16.3553833,48.198153399999995],[16.3560711,48.19873260000003],[16.3564173,48.199009399999994],[16.3564362,48.19902450000001],[16.3569077,48.199390100000016],[16.3575155,48.19989000000004],[16.3575729,48.19993720000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Windmühlgasse","oneway":"yes","oneway:bicycle":"yes","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"30069526","geometry":{"type":"LineString","coordinates":[[16.3494697,48.199904300000014],[16.3493613,48.1998916],[16.3492988,48.199884300000036]]},"properties":{"bicycle":"yes","highway":"path","is_in":"Austria, Europe,Vienna,Wien","motor_vehicle":"no","name":"Lindengasse","surface":"asphalt"}},{"type":"Feature","id":"25344092","geometry":{"type":"LineString","coordinates":[[16.350701,48.20012589999999],[16.3494697,48.199904300000014]]},"properties":{"highway":"living_street","is_in":"Austria, Europe,Vienna,Wien","name":"Lindengasse"}},{"type":"Feature","id":"4849384","geometry":{"type":"LineString","coordinates":[[16.350701,48.20012589999999],[16.350686,48.20018830000001],[16.3505009,48.20095810000001],[16.3502632,48.20214200000001],[16.35025,48.2022078]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Zollergasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"25344098","geometry":{"type":"LineString","coordinates":[[16.355168,48.20151250000001],[16.3541446,48.20119],[16.3524682,48.20067350000002],[16.3523881,48.20064869999999],[16.352309,48.20062419999999],[16.350701,48.20012589999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lindengasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"209975569","geometry":{"type":"LineString","coordinates":[[16.3531285,48.19917050000001],[16.3529517,48.199331900000004],[16.3529443,48.19934749999999],[16.3529337,48.19936980000003],[16.3529406,48.199409299999985]]},"properties":{"highway":"pedestrian","motor_vehicle":"delivery","name":"Barnabitengasse","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"29048678","geometry":{"type":"LineString","coordinates":[[16.3559068,48.200324800000004],[16.3556095,48.20025190000001],[16.3550855,48.20009010000001],[16.3548895,48.20002950000003],[16.3546283,48.199948800000016],[16.3545445,48.19992400000001],[16.3542499,48.19983669999999],[16.3537794,48.1996972],[16.3535929,48.19964190000002],[16.3530975,48.19946519999999],[16.3529406,48.199409299999985]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"164296306","geometry":{"type":"LineString","coordinates":[[16.3492988,48.199884300000036],[16.3493167,48.199828499999995],[16.3494677,48.19942929999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lcn":"yes","maxspeed":"30","name":"Neubaugasse","oneway":"yes"}},{"type":"Feature","id":"4849311","geometry":{"type":"LineString","coordinates":[[16.3529406,48.199409299999985],[16.3528997,48.19950690000002],[16.3528257,48.1996872],[16.3524152,48.2005891],[16.3523881,48.20064869999999],[16.3523667,48.2007026],[16.351822,48.202079000000026],[16.3517542,48.20220810000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kirchengasse","oneway":"yes","sidewalk":"both","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"146836193","geometry":{"type":"LineString","coordinates":[[16.349043,48.2017711],[16.349053,48.20165029999998],[16.3491083,48.20097849999999],[16.3491116,48.20093610000001],[16.3491367,48.20061620000001],[16.3491957,48.200277099999994],[16.3492764,48.19996449999999],[16.3492988,48.199884300000036]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Neubaugasse","oneway":"yes"}},{"type":"Feature","id":"24582593","geometry":{"type":"LineString","coordinates":[[16.3482641,48.2003186],[16.3483926,48.20025369999999],[16.3491114,48.2002746],[16.3491957,48.200277099999994]]},"properties":{"foot":"yes","highway":"footway","name":"Durchgang zur Ahornergasse","wheelchair":"yes"}},{"type":"Feature","id":"177925967","geometry":{"type":"LineString","coordinates":[[16.3469625,48.199912299999966],[16.347039,48.200354199999964]]},"properties":{"bicycle":"designated","foot":"designated","highway":"path","motor_vehicle":"no","name":"Jenny-Steiner-Weg","segregated":"no"}},{"type":"Feature","id":"4851456","geometry":{"type":"LineString","coordinates":[[16.347039,48.200354199999964],[16.3471924,48.200331500000004],[16.3479756,48.20031370000001],[16.3482641,48.2003186]]},"properties":{"highway":"residential","maxspeed":"30","name":"Ahornergasse","noexit":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"37432025","geometry":{"type":"LineString","coordinates":[[16.3468776,48.19959579999997],[16.3468041,48.199584500000014]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lindengasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"37432021","geometry":{"type":"LineString","coordinates":[[16.3492988,48.199884300000036],[16.3491948,48.199872],[16.3479422,48.19972899999996],[16.3468776,48.19959579999997]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lindengasse","oneway":"yes"}},{"type":"Feature","id":"233609813","geometry":{"type":"LineString","coordinates":[[16.3450224,48.20037099999999],[16.3450268,48.200297000000006],[16.3450547,48.1997514],[16.3450747,48.19935860000001],[16.3450718,48.1992984]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Zieglergasse","oneway":"yes","oneway:bicycle":"no","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25669262","geometry":{"type":"LineString","coordinates":[[16.3480899,48.19924789999999],[16.3493308,48.199410099999966],[16.3494036,48.19942029999996],[16.3494677,48.19942929999999]]},"properties":{"highway":"living_street","maxspeed":"5","name":"Richtergasse","surface":"asphalt"}},{"type":"Feature","id":"24722571","geometry":{"type":"LineString","coordinates":[[16.3480899,48.19924789999999],[16.3479422,48.19972899999996]]},"properties":{"highway":"living_street","maxspeed":"5","name":"Andlergasse","oneway":"yes"}},{"type":"Feature","id":"31350149","geometry":{"type":"LineString","coordinates":[[16.3470272,48.19912600000001],[16.3474115,48.19917090000001],[16.3480899,48.19924789999999]]},"properties":{"highway":"living_street","maxspeed":"5","name":"Richtergasse","oneway":"yes"}},{"type":"Feature","id":"209068571","geometry":{"type":"LineString","coordinates":[[16.3534913,48.1988499],[16.3531285,48.19917050000001]]},"properties":{"highway":"pedestrian","motor_vehicle":"no","name":"Barnabitengasse","source":"yahoo","surface":"cobblestone"}},{"type":"Feature","id":"328674181","geometry":{"type":"LineString","coordinates":[[16.3516961,48.19878479999997],[16.3515558,48.19889969999997]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"5","motor_vehicle":"delivery","name":"Nelkengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"328674183","geometry":{"type":"LineString","coordinates":[[16.3513063,48.1989767],[16.3514033,48.19884050000002]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"5","motor_vehicle":"delivery","name":"Zollergasse"}},{"type":"Feature","id":"4849375","geometry":{"type":"LineString","coordinates":[[16.3511094,48.1987192],[16.3512254,48.19859410000001]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"5","motor_vehicle":"delivery","name":"Kollergerngasse","source":"wien.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"39896748","geometry":{"type":"LineString","coordinates":[[16.3432283,48.199000299999994],[16.3432035,48.19906849999998],[16.3432425,48.20030650000001],[16.3432442,48.20036429999999]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"164296305","geometry":{"type":"LineString","coordinates":[[16.3468041,48.199584500000014],[16.3451662,48.19931460000001],[16.3450718,48.1992984],[16.3449796,48.19928390000001],[16.3433207,48.199015799999984],[16.3432283,48.199000299999994]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Lindengasse","oneway":"yes"}},{"type":"Feature","id":"202582741","geometry":{"type":"LineString","coordinates":[[16.3468776,48.19959579999997],[16.3470272,48.19912600000001]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"20","name":"Andreasgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"175761787","geometry":{"type":"LineString","coordinates":[[16.3431264,48.19898649999999],[16.3429968,48.19896890000001]]},"properties":{"covered":"yes","cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Stollgasse","oneway":"yes"}},{"type":"Feature","id":"10107368","geometry":{"type":"LineString","coordinates":[[16.350701,48.20012589999999],[16.3508239,48.19975920000002],[16.3509467,48.199495600000006],[16.3513063,48.1989767]]},"properties":{"highway":"residential","maxspeed":"30","name":"Zollergasse"}},{"type":"Feature","id":"25739014","geometry":{"type":"LineString","coordinates":[[16.3432283,48.199000299999994],[16.3431412,48.198988499999984],[16.3431264,48.19898649999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Stollgasse","oneway":"yes"}},{"type":"Feature","id":"209975570","geometry":{"type":"LineString","coordinates":[[16.3525897,48.1992736],[16.3526096,48.1992496],[16.3528016,48.199021000000016],[16.3528595,48.1989461],[16.3528622,48.198887799999994],[16.3532011,48.198554400000006],[16.3536094,48.19874070000003]]},"properties":{"highway":"pedestrian","name":"Barnabitengasse","surface":"cobblestone"}},{"type":"Feature","id":"5893497","geometry":{"type":"LineString","coordinates":[[16.3524843,48.198038800000006],[16.3524864,48.19808840000002],[16.3524882,48.19813049999999],[16.3516961,48.19878479999997]]},"properties":{"highway":"residential","maxspeed":"30","name":"Nelkengasse","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"328674182","geometry":{"type":"LineString","coordinates":[[16.3512254,48.19859410000001],[16.3516515,48.198129600000016],[16.3517015,48.198075099999954]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kollergerngasse","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"22982031","geometry":{"type":"LineString","coordinates":[[16.3506555,48.19763460000004],[16.350721,48.19765849999999],[16.3511589,48.197817999999984],[16.3511807,48.1978436],[16.3511981,48.198048],[16.3512023,48.19809720000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Chwallagasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"122779317","geometry":{"type":"LineString","coordinates":[[16.3507964,48.19811920000001],[16.3512023,48.19809720000001],[16.3517015,48.198075099999954],[16.3524843,48.198038800000006],[16.352802,48.19802200000004],[16.3537118,48.197973899999965],[16.3538334,48.19796740000004],[16.3539279,48.19794350000004],[16.3539797,48.197854199999995],[16.3540361,48.19773280000001],[16.3540604,48.197652000000005]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schadekgasse","oneway":"yes","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"29048677","geometry":{"type":"LineString","coordinates":[[16.350123,48.19830970000001],[16.3502227,48.19834910000003],[16.3502847,48.1983736],[16.3503665,48.19840719999999],[16.3507051,48.19855050000001],[16.3511094,48.1987192],[16.3514033,48.19884050000002],[16.3515558,48.19889969999997],[16.3525897,48.1992736],[16.3529406,48.199409299999985]]},"properties":{"admin_level":"9","bicycle":"yes","boundary":"administrative","cycleway":"opposite","highway":"pedestrian","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"122605513","geometry":{"type":"LineString","coordinates":[[16.3502979,48.1980868],[16.3501848,48.19823339999999],[16.350123,48.19830970000001]]},"properties":{"bicycle":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Bundesländerplatz","psv":"yes","source":"wien.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"8113566","geometry":{"type":"LineString","coordinates":[[16.3502979,48.1980868],[16.3504946,48.1981236],[16.3507964,48.19811920000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Schadekgasse","oneway":"yes","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"286621396","geometry":{"type":"LineString","coordinates":[[16.3432283,48.199000299999994],[16.3432499,48.1989408],[16.343532,48.1982826]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"25347121","geometry":{"type":"LineString","coordinates":[[16.3494677,48.19942929999999],[16.3497188,48.19890529999998],[16.3499636,48.198521],[16.3500453,48.19839669999999],[16.350123,48.19830970000001]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","foot":"yes","highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","motor_vehicle":"no","name":"Neubaugasse","oneway":"yes","psv":"designated","surface":"asphalt"}},{"type":"Feature","id":"202582742","geometry":{"type":"LineString","coordinates":[[16.3470272,48.19912600000001],[16.3470858,48.198950999999994],[16.3471233,48.198846599999996],[16.3471669,48.198780599999964],[16.3471867,48.19872140000001],[16.3472634,48.1985286]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"20","name":"Andreasgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"325533410","geometry":{"type":"LineString","coordinates":[[16.3491702,48.1978397],[16.3491537,48.19786279999997],[16.3490933,48.1979475]]},"properties":{"access":"permissive","highway":"footway","name":"Passage 81"}},{"type":"Feature","id":"4849338","geometry":{"type":"LineString","coordinates":[[16.3452139,48.19856950000002],[16.3451273,48.19855419999999],[16.343532,48.1982826],[16.341276,48.197919100000036]]},"properties":{"highway":"residential","maxspeed":"30","name":"Apollogasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"328674180","geometry":{"type":"LineString","coordinates":[[16.3487098,48.197618000000006],[16.3485832,48.197771899999964]]},"properties":{"bicycle":"yes","highway":"pedestrian","maxspeed":"5","name":"Esterházygasse","source":"wien.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"325533411","geometry":{"type":"LineString","coordinates":[[16.3493524,48.19760229999997],[16.3491702,48.1978397]]},"properties":{"access":"permissive","highway":"footway","name":"Passage 81","tunnel":"yes"}},{"type":"Feature","id":"26621216","geometry":{"type":"LineString","coordinates":[[16.338888,48.201259600000014],[16.3392374,48.20028389999999],[16.3392584,48.2002253]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Kenyongasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"437399867","geometry":{"type":"LineString","coordinates":[[16.3407879,48.2003651],[16.3393584,48.20023420000001],[16.3392584,48.2002253]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Seidengasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"244604983","geometry":{"type":"LineString","coordinates":[[16.3383418,48.19976299999999],[16.3382307,48.20006380000001],[16.3379502,48.20082350000001],[16.3379227,48.200888700000036]]},"properties":{"highway":"service","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes"}},{"type":"Feature","id":"24730556","geometry":{"type":"LineString","coordinates":[[16.3383508,48.200136800000024],[16.3384608,48.200147000000015],[16.3391935,48.20021890000001],[16.3392584,48.2002253]]},"properties":{"highway":"residential","maxspeed":"30","name":"Seidengasse","oneway":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"244604982","geometry":{"type":"LineString","coordinates":[[16.3385348,48.19965020000001],[16.3383418,48.19976299999999]]},"properties":{"highway":"service","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes"}},{"type":"Feature","id":"272672835","geometry":{"type":"LineString","coordinates":[[16.3377917,48.19952430000001],[16.3380726,48.198772399999996]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"163383045","geometry":{"type":"LineString","coordinates":[[16.3377917,48.19952430000001],[16.3378713,48.1996087],[16.3380308,48.19964390000004],[16.3380403,48.199646],[16.3382651,48.19969549999999],[16.3383497,48.199698100000006]]},"properties":{"foot":"yes","highway":"cycleway","name":"Emil-Maurer-Platz","segregated":"no"}},{"type":"Feature","id":"31275231","geometry":{"type":"LineString","coordinates":[[16.3373092,48.20079659999999],[16.3373418,48.2006983],[16.3377917,48.19952430000001]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"356347989","geometry":{"type":"LineString","coordinates":[[16.3328759,48.19957550000001],[16.3332979,48.19969120000002],[16.3342385,48.1999539],[16.3351851,48.20021710000003],[16.3364077,48.2005571]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Märzstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"4849398","geometry":{"type":"LineString","coordinates":[[16.3326268,48.200791599999974],[16.3332542,48.199762799999974],[16.3332979,48.19969120000002]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"50","name":"Hackengasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"24867727","geometry":{"type":"LineString","coordinates":[[16.3341795,48.20115580000001],[16.3341312,48.20104029999999],[16.3342385,48.1999539]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"50","name":"Zinckgasse","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"117702985","geometry":{"type":"LineString","coordinates":[[16.332257,48.199405799999965],[16.3322168,48.19947139999999],[16.3315914,48.20049089999998]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"50","name":"Beingasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"36335533","geometry":{"type":"LineString","coordinates":[[16.3342385,48.1999539],[16.3350137,48.198759300000006]]},"properties":{"cycleway":"opposite","highway":"living_street","lit":"yes","name":"Zinckgasse","oneway":"yes","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"23099006","geometry":{"type":"LineString","coordinates":[[16.336894,48.19927680000001],[16.3359649,48.19901730000001]]},"properties":{"highway":"living_street","name":"Goldschlagstraße","surface":"asphalt"}},{"type":"Feature","id":"117702986","geometry":{"type":"LineString","coordinates":[[16.3359649,48.19901730000001],[16.3351851,48.20021710000003]]},"properties":{"highway":"living_street","lit":"yes","name":"Pelzgasse"}},{"type":"Feature","id":"24867720","geometry":{"type":"LineString","coordinates":[[16.3312254,48.19911780000001],[16.3312991,48.19913840000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Märzstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"117702987","geometry":{"type":"LineString","coordinates":[[16.3364077,48.2005571],[16.336894,48.19927680000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Löhrgasse","old_name":"Michaeler-Gasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30","source:old_name":"Aufschrift bei Löhrgasse 13"}},{"type":"Feature","id":"356347988","geometry":{"type":"LineString","coordinates":[[16.3312991,48.19913840000001],[16.3318471,48.1992927],[16.3321825,48.199385199999995],[16.332257,48.199405799999965],[16.3323332,48.1994272],[16.3325825,48.199497399999984],[16.3328759,48.19957550000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Märzstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"36335397","geometry":{"type":"LineString","coordinates":[[16.336894,48.19927680000001],[16.3376999,48.199499],[16.3377917,48.19952430000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Goldschlagstraße","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"199261366","geometry":{"type":"LineString","coordinates":[[16.3305501,48.20019719999999],[16.3306641,48.200229000000036],[16.330696,48.20023800000001],[16.3315914,48.20049089999998],[16.3326268,48.200791599999974],[16.3331314,48.200925900000016],[16.3332284,48.20094699999996],[16.3332539,48.2009525],[16.3340072,48.20111940000001],[16.3341795,48.20115580000001],[16.3360316,48.201432899999986],[16.336914,48.20152719999999],[16.3370453,48.20154170000001]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Hütteldorfer Straße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"33873786","geometry":{"type":"LineString","coordinates":[[16.3306641,48.200229000000036],[16.3306108,48.20031990000004],[16.330516,48.2004809],[16.33041,48.200682900000004],[16.3303188,48.20086549999999],[16.3301995,48.20115870000001],[16.3301217,48.20139109999997],[16.3300672,48.20161390000001]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Markgraf-Rüdiger-Straße","oneway":"yes"}},{"type":"Feature","id":"5003707","geometry":{"type":"LineString","coordinates":[[16.3283027,48.1995608],[16.327851,48.200384499999984],[16.3276789,48.20080040000002],[16.3275757,48.201087700000016],[16.3275343,48.201223200000044]]},"properties":{"highway":"residential","maxspeed":"30","name":"Costagasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"5003710","geometry":{"type":"LineString","coordinates":[[16.3264144,48.200158499999986],[16.3266393,48.19969850000001]]},"properties":{"created_by":"Potlatch 0.10f","highway":"footway","name":"Zwingligasse"}},{"type":"Feature","id":"5003728","geometry":{"type":"LineString","coordinates":[[16.3295104,48.1999055],[16.3291521,48.20064049999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Pouthongasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5003716","geometry":{"type":"LineString","coordinates":[[16.3261404,48.2001468],[16.3259318,48.20112039999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Krebsengartengasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"37256869","geometry":{"type":"LineString","coordinates":[[16.3241737,48.200234799999976],[16.32504,48.20016620000004],[16.3251509,48.20015720000001],[16.3253863,48.200140600000026],[16.3256317,48.200134299999974],[16.3261404,48.2001468],[16.3264144,48.200158499999986],[16.3270782,48.2002468],[16.327851,48.200384499999984],[16.3286192,48.20054099999999],[16.3291521,48.20064049999999],[16.3300845,48.20081690000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Loeschenkohlgasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4950558","geometry":{"type":"LineString","coordinates":[[16.3302082,48.204556999999994],[16.3301763,48.20448880000001],[16.3301066,48.204297999999966],[16.3300315,48.204050600000016],[16.3299939,48.2039087],[16.3299769,48.203845],[16.3298996,48.203564400000005],[16.3298493,48.203295300000036],[16.3298078,48.2030642],[16.3297316,48.20256520000001],[16.3297345,48.20238279999998],[16.3297582,48.2020411],[16.3297755,48.201888499999995],[16.3297965,48.20174009999997],[16.3298291,48.20159290000001],[16.3298776,48.201392],[16.3299634,48.20112649999999],[16.3300627,48.20087670000001],[16.3300845,48.20081690000001],[16.3302346,48.200506399999995],[16.330386,48.20025749999999],[16.3304373,48.20016559999999]]},"properties":{"highway":"residential","lcn":"yes","maxspeed":"30","name":"Markgraf-Rüdiger-Straße","oneway":"yes"}},{"type":"Feature","id":"24867719","geometry":{"type":"LineString","coordinates":[[16.3301651,48.198826800000035],[16.330709,48.19897069999999],[16.3312254,48.19911780000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Reithofferplatz","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5000207","geometry":{"type":"LineString","coordinates":[[16.3295104,48.1999055],[16.330128,48.19888789999999],[16.3301651,48.198826800000035]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Pouthongasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"106674746","geometry":{"type":"LineString","coordinates":[[16.3275496,48.199362199999996],[16.3283027,48.1995608],[16.328507,48.199614800000006],[16.3295104,48.1999055],[16.3303921,48.200153099999994],[16.3304373,48.20016559999999],[16.3305501,48.20019719999999]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Hütteldorfer Straße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5003732","geometry":{"type":"LineString","coordinates":[[16.3305501,48.20019719999999],[16.3305986,48.200119700000045],[16.3311854,48.1991817],[16.3312254,48.19911780000001]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"50","name":"Tannengasse","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"5000211","geometry":{"type":"LineString","coordinates":[[16.3272581,48.199873300000036],[16.3266393,48.19969850000001],[16.3254322,48.199357599999985]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Plunkergasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24738225","geometry":{"type":"LineString","coordinates":[[16.3267664,48.20238600000002],[16.3266971,48.2023485],[16.3266541,48.202316499999995],[16.3266362,48.20229930000002],[16.3266198,48.20227599999998],[16.3266009,48.202250100000015],[16.3265885,48.20221969999997],[16.3265842,48.202177500000005],[16.3266052,48.201969599999984],[16.3266299,48.20179809999999],[16.3266448,48.20169279999999],[16.326674,48.201525299999986],[16.3266972,48.20142309999997],[16.3267213,48.2013197],[16.3267559,48.20116619999999],[16.326784,48.20106200000001],[16.3268236,48.20093650000001],[16.3268985,48.200709700000004],[16.3269788,48.20048689999999],[16.3270782,48.2002468],[16.3271597,48.200070900000014],[16.3272581,48.199873300000036],[16.3273989,48.1996216],[16.3275496,48.199362199999996]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schweglerstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"175761788","geometry":{"type":"LineString","coordinates":[[16.3429968,48.19896890000001],[16.3412007,48.19872509999999],[16.3411067,48.19871409999999]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","maxspeed":"30","name":"Stollgasse","oneway":"yes"}},{"type":"Feature","id":"211635132","geometry":{"type":"LineString","coordinates":[[16.3411067,48.19871409999999],[16.3410947,48.19876260000001],[16.3410851,48.1988125],[16.3410658,48.19892569999999],[16.3410357,48.199096],[16.3409856,48.1993516],[16.3409448,48.19956450000001],[16.3409067,48.19976539999996],[16.3408673,48.19997889999996],[16.3408286,48.200190099999986],[16.3407879,48.2003651],[16.34078,48.200402199999985],[16.3407432,48.20059220000002],[16.340704,48.200789499999985],[16.3406665,48.200994200000025],[16.3406316,48.201195299999995],[16.3405904,48.20139169999999],[16.3405522,48.20158740000002],[16.3405188,48.20177189999998],[16.3405052,48.201846700000004]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Kaiserstraße"}},{"type":"Feature","id":"192808254","geometry":{"type":"LineString","coordinates":[[16.3392584,48.2002253],[16.3392825,48.20016050000001],[16.3398763,48.19856340000001],[16.3398866,48.19853570000001],[16.3398928,48.19851890000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Kenyongasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"173047577","geometry":{"type":"LineString","coordinates":[[16.3411067,48.19871409999999],[16.3410059,48.19869510000001],[16.3408935,48.19867590000001]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Stollgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"146678747","geometry":{"type":"LineString","coordinates":[[16.3392533,48.19841509999998],[16.3391188,48.198404900000014],[16.3390104,48.19839669999999]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Stollgasse","oneway":"yes"}},{"type":"Feature","id":"146678749","geometry":{"type":"LineString","coordinates":[[16.3408935,48.19867590000001],[16.3402714,48.19857830000001],[16.3398928,48.19851890000001],[16.3392533,48.19841509999998]]},"properties":{"highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"30","name":"Stollgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"299709376","geometry":{"type":"LineString","coordinates":[[16.3385645,48.19891580000004],[16.3385907,48.1988801],[16.3386213,48.198830999999984],[16.3386461,48.198769],[16.3386515,48.19873260000003],[16.3386488,48.19870130000001],[16.3386399,48.19867679999999],[16.3386184,48.1986493]]},"properties":{"highway":"footway","name":"Emil-Maurer-Platz","source":"basemap.at"}},{"type":"Feature","id":"23099005","geometry":{"type":"LineString","coordinates":[[16.3350137,48.198759300000006],[16.3359649,48.19901730000001]]},"properties":{"foot":"yes","highway":"cycleway","name":"Goldschlagstraße","segregated":"no"}},{"type":"Feature","id":"299709373","geometry":{"type":"LineString","coordinates":[[16.3380308,48.19964390000004],[16.3380619,48.199547800000005],[16.3381718,48.19924739999999],[16.3381926,48.19921740000001],[16.3382169,48.19920350000001],[16.3382507,48.19919599999997],[16.3382949,48.199190200000004],[16.3383348,48.199186199999986],[16.3383565,48.199183000000005],[16.3383615,48.199181399999986],[16.3383853,48.19917389999998],[16.3384164,48.199162099999995],[16.3384574,48.199137699999994],[16.3385128,48.1990869],[16.338541,48.19905370000001],[16.3385614,48.19900419999999],[16.3385752,48.19896130000001],[16.3385645,48.19891580000004],[16.3385607,48.1989097],[16.3385339,48.1988776],[16.3384721,48.19882230000002],[16.33843,48.19878109999999],[16.3384114,48.19875540000001],[16.3383985,48.19870640000002],[16.3383967,48.19863409999999],[16.3384081,48.19859700000001],[16.3384385,48.19853330000001],[16.3384644,48.198507800000016],[16.3385011,48.19846830000003],[16.3385311,48.19844230000001],[16.3385513,48.198412899999994]]},"properties":{"highway":"footway","name":"Emil-Maurer-Platz","source":"basemap.at"}},{"type":"Feature","id":"299709375","geometry":{"type":"LineString","coordinates":[[16.3382651,48.19969549999999],[16.3382873,48.199684400000024],[16.3383206,48.19963229999999],[16.3383386,48.199587500000035],[16.3384348,48.19933409999999],[16.3384385,48.199309400000004],[16.3384305,48.199262000000004],[16.338413,48.19923639999999],[16.3383914,48.199208099999964],[16.3383712,48.19919139999999],[16.3383615,48.199181399999986],[16.3383468,48.1991635],[16.3383273,48.199146300000024],[16.3383056,48.199117400000034],[16.3382959,48.19910299999998],[16.3382782,48.19904300000002],[16.3382768,48.19899269999996],[16.3382824,48.1989605],[16.3383029,48.198878500000006],[16.3383246,48.198848200000015],[16.3383499,48.19881269999999],[16.3383709,48.19878879999999],[16.3383961,48.198767799999985],[16.3384114,48.19875540000001],[16.3384291,48.198744000000005],[16.3384487,48.198730900000015],[16.3384872,48.198710800000015],[16.3385397,48.19868629999999],[16.3385994,48.198659099999986],[16.3386184,48.1986493],[16.3386359,48.19863669999998],[16.3386591,48.19861],[16.3386697,48.19859170000001],[16.3386886,48.19854860000004],[16.338697,48.19850020000004],[16.3387027,48.198475299999984],[16.3387083,48.198455999999965]]},"properties":{"highway":"footway","name":"Emil-Maurer-Platz","source":"basemap.at"}},{"type":"Feature","id":"117693227","geometry":{"type":"LineString","coordinates":[[16.3332979,48.19969120000002],[16.3340373,48.198481000000015]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Hackengasse","oneway":"yes"}},{"type":"Feature","id":"162373026","geometry":{"type":"LineString","coordinates":[[16.3390104,48.19839669999999],[16.3389723,48.19849719999999],[16.3385348,48.19965020000001],[16.3383942,48.200020799999976],[16.3383508,48.200136800000024],[16.3380905,48.200824899999986],[16.338058,48.200907599999994],[16.3379523,48.20120459999998],[16.3378895,48.201425099999994],[16.3378645,48.20150989999999],[16.3378269,48.2016304]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"5000208","geometry":{"type":"LineString","coordinates":[[16.3291533,48.19854510000002],[16.3291125,48.19861259999999],[16.328507,48.199614800000006]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Benedikt-Schellinger-Gasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"25585620","geometry":{"type":"LineString","coordinates":[[16.3247453,48.1986426],[16.3248507,48.198638700000004],[16.3249592,48.198654000000005],[16.325705,48.198854900000015],[16.3266088,48.19910620000002],[16.3275496,48.199362199999996]]},"properties":{"cycleway":"lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Hütteldorfer Straße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"47194523","geometry":{"type":"LineString","coordinates":[[16.3275496,48.199362199999996],[16.3278447,48.19888660000001],[16.3281459,48.19840970000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schweglerstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"25585619","geometry":{"type":"LineString","coordinates":[[16.3282293,48.19828050000001],[16.3283382,48.19831099999999],[16.3285169,48.1983616]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Märzstraße","source:maxspeed":"sign"}},{"type":"Feature","id":"138647953","geometry":{"type":"LineString","coordinates":[[16.3282293,48.19828050000001],[16.3281767,48.198362],[16.3281459,48.19840970000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schweglerstraße"}},{"type":"Feature","id":"141233623","geometry":{"type":"LineString","coordinates":[[16.3285169,48.1983616],[16.3289351,48.198482799999994],[16.3290634,48.19851940000001],[16.3291533,48.19854510000002],[16.329285,48.1985818],[16.3301651,48.198826800000035]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Märzstraße","source:maxspeed":"sign"}},{"type":"Feature","id":"272672836","geometry":{"type":"LineString","coordinates":[[16.3380726,48.198772399999996],[16.3382355,48.1983261],[16.3382648,48.19821479999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"4","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221","turn:lanes":"through|through|through|through;right"}},{"type":"Feature","id":"4583442","geometry":{"type":"LineString","coordinates":[[16.3390104,48.19839669999999],[16.3384636,48.19826330000001],[16.3384214,48.198252999999994],[16.3383819,48.198243399999996],[16.3382648,48.19821479999999]]},"properties":{"highway":"secondary","lanes":"7","lanes:backward":"3","lanes:forward":"4","lit":"yes","maxspeed":"50","name":"Neubaugürtel","ref":"B224","turn:lanes:backward":"left|left|left","turn:lanes:forward":"left|left|through|through"}},{"type":"Feature","id":"146673487","geometry":{"type":"LineString","coordinates":[[16.341276,48.197919100000036],[16.3411383,48.198527299999995],[16.3411156,48.19865519999999],[16.3411067,48.19871409999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Kaiserstraße","oneway":"yes"}},{"type":"Feature","id":"272668388","geometry":{"type":"LineString","coordinates":[[16.3377541,48.19803239999996],[16.338119,48.19813829999998],[16.3382648,48.19821479999999]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Felberstraße","oneway":"yes","ref":"B224","turn:lanes":"through|through"}},{"type":"Feature","id":"38279773","geometry":{"type":"LineString","coordinates":[[16.3377541,48.19803239999996],[16.3379491,48.198025],[16.3380534,48.198006600000014],[16.3380932,48.1979834],[16.3381903,48.1979278],[16.3382852,48.1977794]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Felberstraße","oneway":"yes","turn:lanes":"right|right"}},{"type":"Feature","id":"198173144","geometry":{"type":"LineString","coordinates":[[16.3402714,48.19857830000001],[16.3407657,48.19787710000003],[16.341276,48.197919100000036]]},"properties":{"highway":"residential","maxspeed":"30","name":"Apollogasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"24867725","geometry":{"type":"LineString","coordinates":[[16.3312254,48.19911780000001],[16.331264,48.1990557],[16.3315069,48.1986651],[16.3319599,48.1979771],[16.3319918,48.19792469999999],[16.3320022,48.19790760000001]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Reithofferplatz","source":"yahoo"}},{"type":"Feature","id":"9066109","geometry":{"type":"LineString","coordinates":[[16.3373706,48.198017799999974],[16.3372858,48.19819810000001],[16.336894,48.19927680000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Löhrgasse","oneway":"yes","sidewalk":"both","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583628","geometry":{"type":"LineString","coordinates":[[16.3367061,48.19783770000001],[16.3359649,48.19901730000001]]},"properties":{"cycleway":"opposite_lane","highway":"living_street","lanes":"1","name":"Pelzgasse","oneway":"yes"}},{"type":"Feature","id":"24867724","geometry":{"type":"LineString","coordinates":[[16.3350137,48.198759300000006],[16.3340373,48.198481000000015],[16.333016,48.1981954],[16.3320022,48.19790760000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Goldschlagstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"9066013","geometry":{"type":"LineString","coordinates":[[16.3357797,48.19759880000001],[16.3350137,48.198759300000006]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Zinckgasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"246975210","geometry":{"type":"LineString","coordinates":[[16.3367846,48.1977579],[16.3377541,48.19803239999996]]},"properties":{"highway":"secondary","lanes":"4","lit":"yes","maxspeed":"50","name":"Felberstraße","oneway":"yes","ref":"B224","turn:lanes":"through|through|right|right"}},{"type":"Feature","id":"43086771","geometry":{"type":"LineString","coordinates":[[16.3308895,48.1976123],[16.3309219,48.19761280000003],[16.3309516,48.19760229999997],[16.3309735,48.197590700000006],[16.3309786,48.19758239999999]]},"properties":{"highway":"living_street","name":"Pouthongasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo"}},{"type":"Feature","id":"24867723","geometry":{"type":"LineString","coordinates":[[16.3309786,48.19758239999999],[16.3310217,48.19759379999999],[16.3314125,48.197701300000034],[16.331934,48.197844599999996],[16.3320022,48.19790760000001]]},"properties":{"foot":"yes","highway":"cycleway","lcn":"yes","name":"Reithofferplatz","source":"yahoo"}},{"type":"Feature","id":"276166590","geometry":{"type":"LineString","coordinates":[[16.3272921,48.198024799999985],[16.3272514,48.1980892],[16.3266088,48.19910620000002]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Stättermayergasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"145389585","geometry":{"type":"LineString","coordinates":[[16.3256629,48.197574599999996],[16.3263801,48.1977703],[16.3272921,48.198024799999985],[16.3275947,48.19810849999999],[16.3281083,48.198247699999996],[16.3282293,48.19828050000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"50","name":"Märzstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"26158102","geometry":{"type":"LineString","coordinates":[[16.325705,48.198854900000015],[16.3263387,48.19783690000003],[16.3263801,48.1977703]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Preysinggasse","oneway":"yes","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"24867721","geometry":{"type":"LineString","coordinates":[[16.3301651,48.198826800000035],[16.3301885,48.19875200000001],[16.3302921,48.19858449999998],[16.3304665,48.198281399999985],[16.3305219,48.198193599999996],[16.3308134,48.1977411],[16.3308514,48.197675300000014],[16.3308712,48.19764110000003],[16.3308895,48.1976123]]},"properties":{"cycleway":"lane","highway":"service","lit":"yes","motorcar":"no","name":"Reithofferplatz","source":"yahoo"}},{"type":"Feature","id":"146683495","geometry":{"type":"LineString","coordinates":[[16.3619301,48.1974213],[16.3624079,48.19768210000001],[16.3629586,48.1979767],[16.3637585,48.1984343],[16.3638149,48.19846910000001],[16.3638905,48.19851510000001],[16.3649556,48.199081699999994],[16.3650293,48.19912049999999]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1","surface":"asphalt"}},{"type":"Feature","id":"5891901","geometry":{"type":"LineString","coordinates":[[16.3657935,48.197344799999996],[16.3658725,48.19729559999999],[16.3659698,48.197273199999984],[16.3660753,48.19729380000004],[16.366569,48.197514600000005],[16.367033,48.19773240000001],[16.3671486,48.1977493]]},"properties":{"highway":"residential","maxspeed":"30","name":"Margaretenstraße","oneway":"yes","sidewalk":"both","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5891928","geometry":{"type":"LineString","coordinates":[[16.3629586,48.1979767],[16.3630145,48.197932899999984],[16.3638139,48.19727760000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schikanedergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"325533412","geometry":{"type":"LineString","coordinates":[[16.3494049,48.197535200000004],[16.3493524,48.19760229999997]]},"properties":{"access":"permissive","highway":"footway","name":"Passage 81"}},{"type":"Feature","id":"5893492","geometry":{"type":"LineString","coordinates":[[16.3586637,48.19902819999999],[16.3587273,48.19895780000002],[16.359276,48.198341700000014],[16.3599924,48.197545899999994],[16.3600118,48.197525299999995],[16.36006,48.19746670000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Köstlergasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"233609121","geometry":{"type":"LineString","coordinates":[[16.347702,48.19750260000001],[16.3481134,48.1976286],[16.3485832,48.197771899999964],[16.3490933,48.1979475],[16.3499708,48.1982495],[16.350123,48.19830970000001]]},"properties":{"admin_level":"9","bicycle":"yes","boundary":"administrative","cycleway":"opposite","highway":"pedestrian","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"49780445","geometry":{"type":"LineString","coordinates":[[16.347702,48.19750260000001],[16.3476631,48.19759350000001],[16.3472634,48.1985286]]},"properties":{"highway":"residential","maxspeed":"20","name":"Andreasgasse","oneway":"no"}},{"type":"Feature","id":"233664336","geometry":{"type":"LineString","coordinates":[[16.3474896,48.1972701],[16.3474422,48.197327],[16.3473704,48.19741569999999]]},"properties":{"bicycle":"yes","emergency":"yes","foot":"yes","highway":"residential","maxspeed":"30","motor_vehicle":"no","name":"Otto-Bauer-Gasse","old_name":"Kasernengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"492719821","geometry":{"type":"LineString","coordinates":[[16.3635551,48.19856570000002],[16.3633231,48.19845000000001],[16.363268,48.19843660000001],[16.3629759,48.19828080000002],[16.3626649,48.198115],[16.3625037,48.19802899999999],[16.3622637,48.197914499999996],[16.3618179,48.197701800000004],[16.3615744,48.1975999],[16.3613479,48.19750779999998],[16.3611013,48.197422700000004],[16.3607871,48.197340999999994],[16.3607752,48.197337999999974],[16.3603401,48.197250800000006],[16.3597322,48.19713759999999],[16.3592895,48.1970551]]},"properties":{"highway":"footway","name":"Reserlgasse","source":"wien.gv.at-labels"}},{"type":"Feature","id":"226975664","geometry":{"type":"LineString","coordinates":[[16.3607878,48.19722590000001],[16.3607752,48.197337999999974],[16.3607225,48.197442800000005]]},"properties":{"highway":"footway","name":"Maria-Welser-Platz","source":"wien.gv.at-labels"}},{"type":"Feature","id":"23395154","geometry":{"type":"LineString","coordinates":[[16.3656304,48.19696479999999],[16.365682,48.19689069999998]]},"properties":{"cycleway":"opposite_lane","highway":"secondary","lit":"yes","maxspeed":"50","name":"Schleifmühlgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"178284517","geometry":{"type":"LineString","coordinates":[[16.3648843,48.19759880000001],[16.365523,48.19706909999999],[16.3656304,48.19696479999999]]},"properties":{"cycleway":"opposite_lane","highway":"tertiary","lit":"yes","maxspeed":"30","name":"Schleifmühlgasse","oneway":"yes","oneway:bicycle":"no","surface":"asphalt"}},{"type":"Feature","id":"116971446","geometry":{"type":"LineString","coordinates":[[16.3669,48.200144499999965],[16.3668767,48.20002320000003],[16.3668654,48.19999330000002],[16.3668111,48.19984679999999],[16.3667226,48.19961230000001],[16.3666796,48.19950859999997],[16.3666497,48.1994234],[16.366286,48.1985478],[16.3662548,48.1984726],[16.3662239,48.19839679999998],[16.3657935,48.197344799999996],[16.3657686,48.19726539999999],[16.365674,48.19703980000003],[16.3656304,48.19696479999999]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Operngasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"224800030","geometry":{"type":"LineString","coordinates":[[16.3593414,48.1967118],[16.3594021,48.196675699999986]]},"properties":{"highway":"residential","name":"Kettenbrücke","note":"no vehicle allowed Saturday 05:00-189:00","surface":"asphalt","vehicle:conditional":"no @ (Sa 05:00-18:00)"}},{"type":"Feature","id":"5893508","geometry":{"type":"LineString","coordinates":[[16.3590637,48.19726940000001],[16.3590903,48.19720910000001],[16.35912,48.19714099999996]]},"properties":{"highway":"residential","name":"Kettenbrücke","note":"no vehicle allowed Saturday 05:00-189:00","surface":"asphalt","vehicle:conditional":"no @ (Sa 05:00-18:00)"}},{"type":"Feature","id":"5893450","geometry":{"type":"LineString","coordinates":[[16.3586665,48.197193999999996],[16.3586268,48.19725489999999],[16.3586132,48.197269300000016],[16.3583431,48.197532300000006],[16.3573511,48.198488499999996],[16.3572954,48.19854219999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stiegengasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"25511028","geometry":{"type":"LineString","coordinates":[[16.3542819,48.197205],[16.3542931,48.197246500000006],[16.3543449,48.197277799999966],[16.3565315,48.19798589999999],[16.356592,48.198005499999994]]},"properties":{"highway":"living_street","name":"Luftbadgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"5893416","geometry":{"type":"LineString","coordinates":[[16.3541455,48.19722329999999],[16.3541553,48.197275399999995]]},"properties":{"highway":"steps","name":"Viktor-Matejka-Stiege"}},{"type":"Feature","id":"147399465","geometry":{"type":"LineString","coordinates":[[16.3592165,48.196931500000005],[16.3592998,48.196744499999994],[16.3593414,48.1967118]]},"properties":{"highway":"residential","name":"Kettenbrücke","note":"no vehicle allowed Saturday 05:00-189:00","surface":"asphalt","vehicle:conditional":"no @ (Sa 05:00-18:00)"}},{"type":"Feature","id":"25371300","geometry":{"type":"LineString","coordinates":[[16.3656474,48.200038500000005],[16.3656088,48.20001380000002],[16.3655472,48.1999744],[16.3650098,48.199678300000016],[16.364688,48.19950090000003],[16.3646564,48.19948340000002],[16.364622,48.19946450000003],[16.364552,48.19942690000002],[16.3635304,48.19887889999998],[16.3634115,48.19881509999996],[16.3631136,48.19866739999998],[16.362755,48.198489600000016],[16.3626361,48.198430599999995],[16.3624138,48.198323200000004],[16.362226,48.19823250000002],[16.3620124,48.198128800000035],[16.3617924,48.19802200000004],[16.3614865,48.1978756],[16.3612245,48.19776169999997],[16.3608832,48.197643700000015],[16.3606125,48.1975755],[16.3601711,48.1974883],[16.36006,48.19746670000001],[16.3596298,48.197383900000005],[16.3592095,48.19729860000001],[16.3590637,48.19726940000001],[16.3589128,48.1972399],[16.3586665,48.197193999999996],[16.3583422,48.197132099999976],[16.3576206,48.19699079999998],[16.3572269,48.19690080000001],[16.3567697,48.196782600000006]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Linke Wienzeile","oneway":"yes","ref":"B1","source":"geoimage.at","surface":"asphalt"}},{"type":"Feature","id":"334946770","geometry":{"type":"LineString","coordinates":[[16.3591624,48.1970446],[16.3592165,48.196931500000005]]},"properties":{"highway":"residential","name":"Kettenbrücke","note":"no vehicle allowed Saturday 05:00-189:00","surface":"asphalt","vehicle:conditional":"no @ (Sa 05:00-18:00)"}},{"type":"Feature","id":"39577428","geometry":{"type":"LineString","coordinates":[[16.356592,48.198005499999994],[16.357005,48.19761399999999],[16.3575501,48.19708259999996],[16.3575932,48.19704060000001],[16.3576206,48.19699079999998]]},"properties":{"highway":"residential","maxspeed":"30","name":"Joanelligasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"334946771","geometry":{"type":"LineString","coordinates":[[16.35912,48.19714099999996],[16.3591624,48.1970446]]},"properties":{"highway":"residential","name":"Kettenbrücke","note":"no vehicle allowed Saturday 05:00-189:00","surface":"asphalt","vehicle:conditional":"no @ (Sa 05:00-18:00)"}},{"type":"Feature","id":"270940087","geometry":{"type":"LineString","coordinates":[[16.3567697,48.196782600000006],[16.3564876,48.19670960000002],[16.3562098,48.196622700000006]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Linke Wienzeile","oneway":"yes","ref":"B1","source":"geoimage.at","surface":"asphalt","turn:lanes":"slight_left|slight_left;slight_right"}},{"type":"Feature","id":"251431850","geometry":{"type":"LineString","coordinates":[[16.3540925,48.19720649999999],[16.3541439,48.19720380000001]]},"properties":{"highway":"footway","name":"Viktor-Matejka-Stiege"}},{"type":"Feature","id":"218080890","geometry":{"type":"LineString","coordinates":[[16.3528239,48.1971489],[16.3530251,48.197240300000004],[16.3537672,48.19757020000003],[16.3538376,48.1975994],[16.3539352,48.19762239999997],[16.3540604,48.197652000000005],[16.3541497,48.197674800000044],[16.3542818,48.19770840000001]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Gumpendorfer Straße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"251431849","geometry":{"type":"LineString","coordinates":[[16.3541341,48.1971375],[16.3541406,48.197187499999984]]},"properties":{"highway":"steps","name":"Viktor-Matejka-Stiege"}},{"type":"Feature","id":"251431851","geometry":{"type":"LineString","coordinates":[[16.3541455,48.19722329999999],[16.3541439,48.19720380000001],[16.3541406,48.197187499999984]]},"properties":{"highway":"footway","name":"Viktor-Matejka-Stiege"}},{"type":"Feature","id":"4583767","geometry":{"type":"LineString","coordinates":[[16.3509608,48.19725249999999],[16.3508878,48.19721609999999],[16.3505792,48.19706200000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Damböckgasse","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"122605531","geometry":{"type":"LineString","coordinates":[[16.3539981,48.19747269999999],[16.3540014,48.19727640000002],[16.3539755,48.19712179999999]]},"properties":{"bus":"yes","highway":"platform","name":"Haus des Meeres","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"217337376","geometry":{"type":"LineString","coordinates":[[16.3496948,48.19662050000002],[16.3505792,48.19706200000002]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Damböckgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30","surface":"cobblestone"}},{"type":"Feature","id":"5893410","geometry":{"type":"LineString","coordinates":[[16.357005,48.19761399999999],[16.3569617,48.19759619999999],[16.3550212,48.1967971],[16.354553,48.19661230000003],[16.3539581,48.19666000000001],[16.3538996,48.196664699999985]]},"properties":{"highway":"living_street","name":"Dürergasse","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"233609818","geometry":{"type":"LineString","coordinates":[[16.3496948,48.19662050000002],[16.349628,48.196674400000006],[16.3492221,48.19699510000001],[16.3487098,48.197618000000006]]},"properties":{"highway":"residential","maxspeed":"30","name":"Esterházygasse","source":"wien.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26258437","geometry":{"type":"LineString","coordinates":[[16.3517313,48.197091],[16.3517656,48.1970767],[16.3519277,48.197009099999974],[16.3520521,48.19695730000004],[16.3521399,48.196920699999964],[16.3522294,48.19688289999999]]},"properties":{"bicycle":"yes","foot":"yes","highway":"cycleway","name":"Blümelgasse","segregated":"no"}},{"type":"Feature","id":"26258436","geometry":{"type":"LineString","coordinates":[[16.3512323,48.1969115],[16.3513124,48.196940299999994],[16.3517313,48.197091]]},"properties":{"highway":"residential","maxspeed":"30","name":"Blümelgasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"172325303","geometry":{"type":"LineString","coordinates":[[16.3622685,48.19645589999999],[16.3620938,48.19689829999999],[16.3619871,48.19722780000001],[16.3619301,48.1974213]]},"properties":{"highway":"residential","maxspeed":"30","name":"Preßgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"139224654","geometry":{"type":"LineString","coordinates":[[16.3622685,48.19645589999999],[16.3623651,48.19653069999998],[16.362625,48.196659600000004],[16.3637566,48.19724709999997],[16.3638139,48.19727760000001],[16.3646992,48.19775240000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mühlgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"concrete"}},{"type":"Feature","id":"4786903","geometry":{"type":"LineString","coordinates":[[16.3656304,48.19696479999999],[16.3656027,48.196890800000006],[16.3651049,48.19642479999999]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"secondary","lit":"yes","maxspeed":"50","name":"Margaretenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"25678074","geometry":{"type":"LineString","coordinates":[[16.3651049,48.19642479999999],[16.3644104,48.19684250000003],[16.3638139,48.19727760000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Schikanedergasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5132421","geometry":{"type":"LineString","coordinates":[[16.3651049,48.19642479999999],[16.3651555,48.196361499999995],[16.3651916,48.1963437],[16.3656664,48.196135200000015],[16.3661863,48.1959799],[16.3669013,48.19584960000003],[16.3669526,48.195840299999986],[16.3670485,48.195822599999985]]},"properties":{"bicycle":"yes","highway":"secondary","lit":"yes","maxspeed":"30","name":"Paulanergasse","oneway":"yes","source:maxspeed":"sign"}},{"type":"Feature","id":"181202512","geometry":{"type":"LineString","coordinates":[[16.3618009,48.196029700000025],[16.3617128,48.196108400000014],[16.3616494,48.196164899999985],[16.3609514,48.196990700000015],[16.3609046,48.1970484]]},"properties":{"highway":"residential","maxspeed":"30","name":"Heumühlgasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5132419","geometry":{"type":"LineString","coordinates":[[16.3618009,48.196029700000025],[16.3622063,48.196396899999996],[16.3622685,48.19645589999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Mühlgasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"195664624","geometry":{"type":"LineString","coordinates":[[16.365682,48.19689069999998],[16.3657133,48.19687290000002],[16.3660421,48.19670350000001],[16.3663593,48.19657290000001],[16.3670056,48.19641669999996],[16.3670481,48.19640640000003],[16.3671592,48.1963796]]},"properties":{"bicycle":"yes","cycleway":"opposite_lane","cycleway:left":"shared_lane","highway":"secondary","lit":"yes","maxspeed":"30","name":"Schleifmühlgasse","oneway":"yes","source:maxspeed":"sign","surface":"cobblestone"}},{"type":"Feature","id":"5094768","geometry":{"type":"LineString","coordinates":[[16.3634387,48.195339200000035],[16.363376,48.1954016],[16.3627404,48.1960138],[16.3623342,48.19639440000003],[16.3622685,48.19645589999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Preßgasse","oneway":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"5132428","geometry":{"type":"LineString","coordinates":[[16.3651049,48.19642479999999],[16.3647011,48.19615060000001],[16.364315,48.195870600000006],[16.3637095,48.19547690000002]]},"properties":{"busway":"lane","cycleway":"share_busway","highway":"tertiary","maxspeed":"50","name":"Margaretenstraße","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"5893454","geometry":{"type":"LineString","coordinates":[[16.355589,48.19649480000004],[16.3555257,48.1965285],[16.3550212,48.1967971],[16.3542996,48.19716740000001],[16.3542819,48.197205]]},"properties":{"highway":"living_street","name":"Eggerthgasse","oneway":"yes","surface":"asphalt"}},{"type":"Feature","id":"210037962","geometry":{"type":"LineString","coordinates":[[16.3557535,48.196537500000034],[16.3556919,48.19652189999999],[16.3556473,48.19651060000001]]},"properties":{"cycleway":"opposite_lane","cycleway:left":"shared_lane","highway":"residential","maxspeed":"30","name":"Magdalenenstraße","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30","surface":"asphalt","traffic_calming":"table"}},{"type":"Feature","id":"251428134","geometry":{"type":"LineString","coordinates":[[16.3558134,48.196552800000006],[16.3557535,48.196537500000034]]},"properties":{"fixme":"maxspeed","highway":"residential","name":"Magdalenenstraße","oneway":"yes","source":"yahoo","surface":"asphalt","traffic_calming":"table"}},{"type":"Feature","id":"5893489","geometry":{"type":"LineString","coordinates":[[16.3562098,48.196622700000006],[16.355979,48.196591299999994],[16.3558134,48.196552800000006]]},"properties":{"fixme":"maxspeed","highway":"residential","name":"Magdalenenstraße","oneway":"yes","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"28667827","geometry":{"type":"LineString","coordinates":[[16.3594021,48.196675699999986],[16.3594442,48.19662170000001],[16.360279,48.195603800000015],[16.3604816,48.19535680000004],[16.3608641,48.194902600000006],[16.3608835,48.19487960000001],[16.3609207,48.19485679999997],[16.3620011,48.1941951]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite_lane","cycleway:left":"shared_lane","highway":"residential","maxspeed":"30","name":"Kettenbrückengasse","oneway":"yes","oneway:bicycle":"no","parking:lane:both":"parallel","source":"geoimage.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"29072522","geometry":{"type":"LineString","coordinates":[[16.3574893,48.1961689],[16.3576828,48.19622609999999],[16.3584236,48.19644490000002],[16.359069,48.19659419999999],[16.3592247,48.196633899999995],[16.3594021,48.196675699999986],[16.3594871,48.19669590000001],[16.3599126,48.1968009],[16.3609046,48.1970484],[16.3613807,48.19719190000001],[16.3617868,48.197357899999986],[16.3619301,48.1974213]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Rechte Wienzeile","oneway":"yes","ref":"B1","source:maxspeed":"AT:urban","surface":"asphalt"}},{"type":"Feature","id":"270940086","geometry":{"type":"LineString","coordinates":[[16.3562098,48.196622700000006],[16.3558234,48.19647170000002],[16.3557825,48.1964519],[16.3557063,48.196415],[16.3553778,48.19625619999999],[16.3552103,48.196158999999994],[16.3550863,48.1960871],[16.3547905,48.195890599999956],[16.3545909,48.19574350000002],[16.3545016,48.195666500000016],[16.3544088,48.19558649999999],[16.3542476,48.19540599999996],[16.3540502,48.1950741],[16.3540141,48.19496080000002],[16.35393,48.19469649999999],[16.3539343,48.1946025],[16.353952,48.19421160000002]]},"properties":{"highway":"primary","lanes":"2","lit":"yes","maxspeed":"50","name":"Linke Wienzeile","oneway":"yes","ref":"B1","source":"geoimage.at"}},{"type":"Feature","id":"5893491","geometry":{"type":"LineString","coordinates":[[16.3614477,48.193627899999996],[16.3610485,48.193785899999995],[16.3599316,48.194334],[16.3593309,48.19516060000001],[16.3584236,48.19644490000002]]},"properties":{"highway":"residential","maxspeed":"30","name":"Franzensgasse","oneway":"yes","oneway:bicycle":"yes","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"4583585","geometry":{"type":"LineString","coordinates":[[16.3517398,48.19638420000004],[16.3516666,48.19642679999998],[16.3516013,48.1964648],[16.3512323,48.1969115],[16.3509608,48.19725249999999],[16.3506555,48.19763460000004],[16.350372,48.1979839],[16.3503302,48.198041399999994],[16.3502979,48.1980868]]},"properties":{"highway":"residential","lcn":"yes","lit":"yes","maxspeed":"30","name":"Amerlingstraße","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"29048679","geometry":{"type":"LineString","coordinates":[[16.3517398,48.19638420000004],[16.3518033,48.196451800000006],[16.3518536,48.19650530000001],[16.3521783,48.19685409999997],[16.3522294,48.19688289999999],[16.3522761,48.196909300000016],[16.3528239,48.1971489]]},"properties":{"busway:right":"lane","cycleway:right":"share_busway","highway":"tertiary","lit":"yes","maxspeed":"30","maxspeed:bus:forward":"50","name":"Gumpendorfer Straße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"5893512","geometry":{"type":"LineString","coordinates":[[16.3522114,48.1959047],[16.3522954,48.195975000000004],[16.3531601,48.19669880000001],[16.3531615,48.196781999999956],[16.3528723,48.19709629999997],[16.3528365,48.19713519999999],[16.3528239,48.1971489]]},"properties":{"highway":"residential","maxspeed":"30","name":"Kopernikusgasse","oneway":"yes","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"233609827","geometry":{"type":"LineString","coordinates":[[16.3484298,48.19623920000001],[16.3474896,48.1972701]]},"properties":{"highway":"residential","maxspeed":"30","name":"Otto-Bauer-Gasse","old_name":"Kasernengasse","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4583764","geometry":{"type":"LineString","coordinates":[[16.3511549,48.195459899999975],[16.3510738,48.195525599999996],[16.3505154,48.19597780000001],[16.3496948,48.19662050000002]]},"properties":{"cycleway":"opposite","highway":"residential","maxspeed":"30","name":"Esterházygasse","oneway":"yes","source":"wien.at","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"251428133","geometry":{"type":"LineString","coordinates":[[16.3556473,48.19651060000001],[16.355589,48.19649480000004],[16.3550025,48.19633980000003],[16.3549766,48.19633160000001],[16.3546466,48.19622770000001],[16.3543364,48.1960842],[16.3540991,48.19595029999999],[16.3537301,48.19574800000001],[16.3534425,48.19556399999999],[16.3533746,48.19555710000003]]},"properties":{"cycleway":"opposite_lane","cycleway:left":"shared_lane","highway":"residential","maxspeed":"30","name":"Magdalenenstraße","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"4849367","geometry":{"type":"LineString","coordinates":[[16.3540604,48.197652000000005],[16.3540615,48.197561399999984],[16.3540647,48.19730979999997],[16.354054,48.19720849999999],[16.3540387,48.1971011],[16.353962,48.19692740000002],[16.3538996,48.196664699999985],[16.3538314,48.196329299999974],[16.3535302,48.1959664],[16.3532656,48.19564949999997],[16.3532259,48.19556559999998]]},"properties":{"highway":"tertiary","lit":"yes","maxspeed":"30","name":"Kaunitzgasse","oneway":"yes","source":"wien.at","source:maxspeed":"AT:zone:30","surface":"asphalt"}},{"type":"Feature","id":"233609122","geometry":{"type":"LineString","coordinates":[[16.3459705,48.19710069999999],[16.3466884,48.19726000000003],[16.3471366,48.197361],[16.3473704,48.19741569999999],[16.3475074,48.19744970000002],[16.347702,48.19750260000001]]},"properties":{"admin_level":"9","boundary":"administrative","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","surface":"paving_stones"}},{"type":"Feature","id":"4681923","geometry":{"type":"LineString","coordinates":[[16.3459705,48.19710069999999],[16.3459237,48.1971916],[16.3452404,48.198518199999995],[16.3452139,48.19856950000002],[16.3451262,48.198858900000005],[16.3450705,48.199230400000005],[16.3450718,48.1992984]]},"properties":{"cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"30","name":"Zieglergasse","oneway":"yes","sidewalk":"both"}},{"type":"Feature","id":"28798334","geometry":{"type":"LineString","coordinates":[[16.346423,48.1977694],[16.3466412,48.197350700000015],[16.3466884,48.19726000000003]]},"properties":{"highway":"residential","loc_name":"Zitahof","maxspeed":"30","motor_vehicle":"no","name":"Mariahilfer Straße","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"282938852","geometry":{"type":"LineString","coordinates":[[16.344301,48.19673689999999],[16.3448753,48.196858599999985],[16.3456276,48.19701789999999],[16.3459705,48.19710069999999]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"288657100","geometry":{"type":"LineString","coordinates":[[16.343532,48.1982826],[16.3442583,48.1968368],[16.3442679,48.19681130000001],[16.344301,48.19673689999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Schottenfeldgasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"286621395","geometry":{"type":"LineString","coordinates":[[16.344301,48.19673689999999],[16.3440162,48.196684800000014]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"no","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"109561733","geometry":{"type":"LineString","coordinates":[[16.3417939,48.19630000000001],[16.3420188,48.19634769999999],[16.3428244,48.19648190000001],[16.3440162,48.196684800000014]]},"properties":{"admin_level":"9","boundary":"administrative","cycleway":"opposite","highway":"residential","is_in":"Austria, Europe,Vienna,Wien","lit":"yes","maxspeed":"20","name":"Mariahilfer Straße","oneway":"yes","oneway:bicycle":"no","surface":"paving_stones"}},{"type":"Feature","id":"134633603","geometry":{"type":"LineString","coordinates":[[16.3416283,48.19640900000002],[16.3415913,48.1965113],[16.3414786,48.197012599999994],[16.3414536,48.19711849999996],[16.341276,48.197919100000036]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"50","name":"Kaiserstraße","oneway":"yes"}},{"type":"Feature","id":"5001005","geometry":{"type":"LineString","coordinates":[[16.3440162,48.196684800000014],[16.3441117,48.196585700000014],[16.3456236,48.195021699999984]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Webgasse","oneway":"yes","source:maxspeed":"AT:zone:30"}},{"type":"Feature","id":"26738920","geometry":{"type":"LineString","coordinates":[[16.3399201,48.19593760000001],[16.3398972,48.19600249999999],[16.33969,48.19659050000001],[16.3396254,48.19678579999996],[16.3394667,48.19729799999999],[16.3394477,48.19735510000001],[16.3390563,48.1982879],[16.3390104,48.19839669999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"3","lit":"yes","maxspeed":"50","name":"Neubaugürtel","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"30103966","geometry":{"type":"LineString","coordinates":[[16.3299041,48.197335399999986],[16.3294509,48.19807639999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Benedikt-Schellinger-Gasse"}},{"type":"Feature","id":"5000210","geometry":{"type":"LineString","coordinates":[[16.3299041,48.197335399999986],[16.3308895,48.1976123]]},"properties":{"highway":"living_street","name":"Goldschlagstraße","oneway":"yes","oneway:bicycle":"no","source":"Bing"}},{"type":"Feature","id":"4583259","geometry":{"type":"LineString","coordinates":[[16.3382648,48.19821479999999],[16.3380747,48.1982093],[16.3373706,48.198017799999974],[16.3367061,48.19783770000001],[16.3357797,48.19759880000001],[16.335249,48.1974735]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Felberstraße","oneway":"yes","ref":"B224"}},{"type":"Feature","id":"38527459","geometry":{"type":"LineString","coordinates":[[16.3347585,48.197315],[16.3340373,48.198481000000015]]},"properties":{"highway":"living_street","lanes":"1","name":"Hackengasse","oneway":"yes"}},{"type":"Feature","id":"38279772","geometry":{"type":"LineString","coordinates":[[16.3347585,48.197315],[16.3349415,48.197311499999984],[16.3350276,48.197308599999985],[16.335141,48.19730950000002],[16.3352574,48.197326600000025],[16.3367846,48.1977579]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Felberstraße","oneway":"yes","ref":"B224"}},{"type":"Feature","id":"272668391","geometry":{"type":"LineString","coordinates":[[16.335249,48.1974735],[16.3348309,48.19735450000002],[16.3347585,48.197315]]},"properties":{"highway":"secondary","lanes":"1","lit":"yes","maxspeed":"50","name":"Felberstraße","oneway":"yes","ref":"B224"}},{"type":"Feature","id":"357798726","geometry":{"type":"LineString","coordinates":[[16.3371847,48.1971422],[16.3371382,48.19729029999999],[16.3371228,48.19734],[16.3370211,48.197651500000006]]},"properties":{"highway":"footway","layer":"1","level":"1","name":"Verbindung Felberstraße Westbahnhof"}},{"type":"Feature","id":"276960529","geometry":{"type":"LineString","coordinates":[[16.3378861,48.19706439999999],[16.3379649,48.197079900000006],[16.3379554,48.197104800000005]]},"properties":{"highway":"footway","name":"Europaplatz"}},{"type":"Feature","id":"26738909","geometry":{"type":"LineString","coordinates":[[16.3382648,48.19821479999999],[16.3382704,48.19809570000001],[16.3382852,48.1977794],[16.3384956,48.19716780000002],[16.3385413,48.197039200000034],[16.3386616,48.19670250000004]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"4","lit":"yes","maxspeed":"50","name":"Europaplatz","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"5000212","geometry":{"type":"LineString","coordinates":[[16.3337195,48.197025300000035],[16.333016,48.1981954],[16.3322976,48.1993411],[16.332257,48.199405799999965]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Beingasse","oneway":"yes","oneway:bicycle":"no","source":"yahoo","surface":"asphalt"}},{"type":"Feature","id":"69906501","geometry":{"type":"LineString","coordinates":[[16.3299041,48.197335399999986],[16.3290935,48.19710739999999],[16.3289893,48.1970781]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Goldschlagstraße","oneway":"yes","oneway:bicycle":"no"}},{"type":"Feature","id":"25585421","geometry":{"type":"LineString","coordinates":[[16.3282293,48.19828050000001],[16.3282722,48.19821009999998],[16.3289427,48.197151700000006],[16.3289893,48.1970781]]},"properties":{"cycleway:left":"lane","highway":"tertiary","lit":"yes","maxspeed":"50","name":"Schweglerstraße","source:maxspeed":"AT:urban"}},{"type":"Feature","id":"170141443","geometry":{"type":"LineString","coordinates":[[16.3372719,48.1969148],[16.3372565,48.1969546],[16.3372455,48.19698310000001],[16.3372167,48.197059499999995],[16.3371847,48.1971422]]},"properties":{"highway":"footway","layer":"1","level":"1","name":"Verbindung Felberstraße Westbahnhof"}},{"type":"Feature","id":"30103991","geometry":{"type":"LineString","coordinates":[[16.328034,48.19682119999999],[16.3279033,48.197040500000014],[16.3278379,48.1970814],[16.3276484,48.197378799999996],[16.3276375,48.19744269999998],[16.3274581,48.19772739999999]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","name":"Stättermayergasse","source":"yahoo","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"24867726","geometry":{"type":"LineString","coordinates":[[16.3320022,48.19790760000001],[16.3327201,48.19675760000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Tannengasse","source":"yahoo"}},{"type":"Feature","id":"28229076","geometry":{"type":"LineString","coordinates":[[16.3289893,48.1970781],[16.3288637,48.19704440000001],[16.328034,48.19682119999999]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Goldschlagstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"122580909","geometry":{"type":"LineString","coordinates":[[16.3275672,48.19676709999999],[16.3278985,48.19685559999999]]},"properties":{"bus":"yes","highway":"platform","name":"Schweglerstraße","network":"VOR","public_transport":"platform"}},{"type":"Feature","id":"308005941","geometry":{"type":"LineString","coordinates":[[16.3381372,48.196609799999976],[16.3380636,48.196600700000005]]},"properties":{"highway":"footway","name":"Europaplatz"}},{"type":"Feature","id":"272672834","geometry":{"type":"LineString","coordinates":[[16.3387489,48.19649079999999],[16.3390096,48.19583210000002],[16.3390226,48.19578910000001],[16.3390429,48.19572210000001]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"5","lit":"yes","maxspeed":"50","name":"Europaplatz","oneway":"yes","ref":"B221","surface":"asphalt"}},{"type":"Feature","id":"183723744","geometry":{"type":"LineString","coordinates":[[16.3386616,48.19670250000004],[16.3387489,48.19649079999999]]},"properties":{"highway":"primary","is_in":"Austria, Europe,Vienna,Wien","lanes":"4","lit":"yes","maxspeed":"50","name":"Europaplatz","oneway":"yes","ref":"B221"}},{"type":"Feature","id":"461149504","geometry":{"type":"LineString","coordinates":[[16.327121,48.19657000000001],[16.3277696,48.1967511],[16.328034,48.19682119999999]]},"properties":{"busway":"opposite_lane","cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Goldschlagstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"291245678","geometry":{"type":"LineString","coordinates":[[16.3263801,48.1977703],[16.3264206,48.1977047],[16.327121,48.19657000000001]]},"properties":{"cycleway":"opposite_lane","highway":"residential","lit":"yes","maxspeed":"30","name":"Preysinggasse","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"461149505","geometry":{"type":"LineString","coordinates":[[16.327121,48.19657000000001],[16.3261932,48.1963073]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Goldschlagstraße","oneway":"yes","oneway:bicycle":"no","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"9874258","geometry":{"type":"LineString","coordinates":[[16.3261932,48.1963073],[16.3257097,48.197062200000005],[16.3256336,48.197184899999996],[16.3255329,48.19734740000001]]},"properties":{"highway":"residential","lit":"yes","maxspeed":"30","mofa:conditional":"no @ (22:00-05:00)","moped:conditional":"no @ (22:00-05:00)","motorcycle:conditional":"no @ (22:00-05:00)","name":"Huglgasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"36931506","geometry":{"type":"LineString","coordinates":[[16.3305735,48.196267500000005],[16.3299041,48.197335399999986]]},"properties":{"cycleway":"opposite_lane","highway":"residential","maxspeed":"30","name":"Benedikt-Schellinger-Gasse","oneway":"yes","oneway:bicycle":"no","source":"Bing"}},{"type":"Feature","id":"442936883","geometry":{"type":"LineString","coordinates":[[16.3309786,48.19758239999999],[16.3316433,48.19650699999997],[16.3316716,48.19646119999996]]},"properties":{"highway":"living_street","name":"Pouthongasse","oneway":"yes","source":"yahoo"}},{"type":"Feature","id":"31509318","geometry":{"type":"LineString","coordinates":[[16.3289893,48.1970781],[16.3295928,48.196088300000014],[16.3296298,48.19602879999999],[16.3296858,48.195936200000034]]},"properties":{"cycleway":"lane","highway":"tertiary","lanes":"2","maxspeed":"50","name":"Schweglerstraße","source":"Bing"}},{"type":"Feature","id":"38279774","geometry":{"type":"LineString","coordinates":[[16.3347585,48.197315],[16.3346934,48.1972969],[16.3337195,48.197025300000035],[16.3327201,48.19675760000001],[16.3316716,48.19646119999996],[16.3306329,48.19617249999996],[16.330492,48.19616339999999],[16.3298718,48.19599819999999],[16.3296858,48.195936200000034]]},"properties":{"highway":"secondary","lanes":"2","lit":"yes","maxspeed":"50","name":"Felberstraße"}},{"type":"Feature","id":"28229053","geometry":{"type":"LineString","coordinates":[[16.3278643,48.19539979999999],[16.327121,48.19657000000001]]},"properties":{"highway":"residential","maxspeed":"30","name":"Preysinggasse","oneway":"yes","source:maxspeed":"AT:zone"}},{"type":"Feature","id":"25156738","geometry":{"type":"LineString","coordinates":[[16.328034,48.19682119999999],[16.3287865,48.19565879999999]]},"properties":{"highway":"residential","maxspeed":"30","name":"Stättermayergasse","oneway":"yes","source":"yahoo","source:maxspeed":"AT:zone"}}]} diff --git a/examples/street-labels.html b/examples/street-labels.html index 22c4785ec2..002643a686 100644 --- a/examples/street-labels.html +++ b/examples/street-labels.html @@ -3,14 +3,8 @@ layout: example.html title: Street Labels shortdesc: Render street names with a custom render. docs: > - Example showing the use of a custom renderer to render text along a path. [Labelgun](https://github.com/Geovation/labelgun) is used to avoid label collisions. [label-segment](https://github.com/ahocevar/label-segment) makes sure that labels are placed on suitable street segments. [textpath](https://github.com/ahocevar/textpath) arranges the letters of a label along the geometry. -tags: "vector, label, collision detection, labelgun, linelabel" -resources: - - https://cdn.polyfill.io/v2/polyfill.min.js?features=Set - - https://unpkg.com/rbush@2.0.1/rbush.min.js - - https://unpkg.com/labelgun@0.1.1/lib/labelgun.min.js - - https://unpkg.com/textpath@1.0.1/dist/textpath.js - - https://unpkg.com/label-segment@1.0.0/dist/label-segment.js + Example showing the use of a text style with `placement: 'line'` to render text along a path. +tags: "vector, label, streets" cloak: As1HiMj1PvLPlqc_gtM7AqZfBL8ZL3VrjaS3zIb22Uvb9WKhuJObROC-qUpa81U5: Your Bing Maps Key from http://www.bingmapsportal.com/ here --- diff --git a/examples/street-labels.js b/examples/street-labels.js index 8435549bea..1654416bc6 100644 --- a/examples/street-labels.js +++ b/examples/street-labels.js @@ -1,5 +1,3 @@ -// NOCOMPILE -/* global labelgun, labelSegment, textPath */ goog.require('ol.Map'); goog.require('ol.View'); goog.require('ol.extent'); @@ -8,64 +6,37 @@ goog.require('ol.layer.Tile'); goog.require('ol.layer.Vector'); goog.require('ol.source.BingMaps'); goog.require('ol.source.Vector'); +goog.require('ol.style.Fill'); goog.require('ol.style.Style'); - -var emptyFn = function() {}; -var labelEngine = new labelgun['default'](emptyFn, emptyFn); - -var context, pixelRatio; // Will be set in the map's postcompose listener -function measureText(text) { - return context.measureText(text).width * pixelRatio; -} - -var extent, letters; // Will be set in the style's renderer function -function collectDrawData(letter, x, y, angle) { - ol.extent.extend(extent, [x, y, x, y]); - letters.push([x, y, angle, letter]); -} +goog.require('ol.style.Text'); var style = new ol.style.Style({ - renderer: function(coords, state) { - var feature = state.feature; - var text = feature.get('name'); - // Only create label when geometry has a long and straight segment - var path = labelSegment(coords, Math.PI / 8, measureText(text)); - if (path) { - extent = ol.extent.createEmpty(); - letters = []; - textPath(text, path, measureText, collectDrawData); - ol.extent.buffer(extent, 5 * pixelRatio, extent); - var bounds = { - bottomLeft: ol.extent.getBottomLeft(extent), - topRight: ol.extent.getTopRight(extent) - }; - labelEngine.ingestLabel(bounds, feature.getId(), 1, letters, text, false); - } - } -}); - -var rasterLayer = new ol.layer.Tile({ - source: new ol.source.BingMaps({ - key: 'As1HiMj1PvLPlqc_gtM7AqZfBL8ZL3VrjaS3zIb22Uvb9WKhuJObROC-qUpa81U5', - imagerySet: 'Aerial' + text: new ol.style.Text({ + font: 'bold 11px "Open Sans", "Arial Unicode MS"', + placement: 'line', + fill: new ol.style.Fill({ + color: 'white' + }) }) }); -var vectorLayer = new ol.layer.Vector({ - source: new ol.source.Vector({ - format: new ol.format.GeoJSON(), - url: 'data/geojson/vienna-streets.geojson' - }), - style: function(feature) { - if (feature.getGeometry().getType() == 'LineString' && feature.get('name')) { - return style; - } - } -}); - var viewExtent = [1817379, 6139595, 1827851, 6143616]; var map = new ol.Map({ - layers: [rasterLayer, vectorLayer], + layers: [new ol.layer.Tile({ + source: new ol.source.BingMaps({ + key: 'As1HiMj1PvLPlqc_gtM7AqZfBL8ZL3VrjaS3zIb22Uvb9WKhuJObROC-qUpa81U5', + imagerySet: 'Aerial' + }) + }), new ol.layer.Vector({ + source: new ol.source.Vector({ + format: new ol.format.GeoJSON(), + url: 'data/geojson/vienna-streets.geojson' + }), + style: function(feature) { + style.getText().setText(feature.get('name')); + return style; + } + })], target: 'map', view: new ol.View({ extent: viewExtent, @@ -74,31 +45,3 @@ var map = new ol.Map({ minZoom: 14 }) }); - -vectorLayer.on('precompose', function() { - labelEngine.destroy(); -}); -vectorLayer.on('postcompose', function(e) { - context = e.context; - pixelRatio = e.frameState.pixelRatio; - context.save(); - context.font = 'normal 11px "Open Sans", "Arial Unicode MS"'; - context.fillStyle = 'white'; - context.textBaseline = 'middle'; - context.textAlign = 'center'; - var labels = labelEngine.getShown(); - for (var i = 0, ii = labels.length; i < ii; ++i) { - // Render label letter by letter - var letters = labels[i].labelObject; - for (var j = 0, jj = letters.length; j < jj; ++j) { - var labelData = letters[j]; - context.save(); - context.translate(labelData[0], labelData[1]); - context.rotate(labelData[2]); - context.scale(pixelRatio, pixelRatio); - context.fillText(labelData[3], 0, 0); - context.restore(); - } - } - context.restore(); -}); From abd50b8fcf6c3b276737177d712a9f31669dfdfa Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Fri, 8 Sep 2017 14:02:12 +0200 Subject: [PATCH 4/9] Utility to get the longest straight chunk of a linestring --- src/ol/geom/flat/straightchunk.js | 49 +++++++++++++++++ test/spec/ol/geom/flat/straightchunk.test.js | 58 ++++++++++++++++++++ 2 files changed, 107 insertions(+) create mode 100644 src/ol/geom/flat/straightchunk.js create mode 100644 test/spec/ol/geom/flat/straightchunk.test.js diff --git a/src/ol/geom/flat/straightchunk.js b/src/ol/geom/flat/straightchunk.js new file mode 100644 index 0000000000..a33dcac391 --- /dev/null +++ b/src/ol/geom/flat/straightchunk.js @@ -0,0 +1,49 @@ +goog.provide('ol.geom.flat.straightchunk'); + + +/** + * @param {number} maxAngle Maximum acceptable angle delta between segments. + * @param {Array.} flatCoordinates Flat coordinates. + * @param {number} offset Offset. + * @param {number} end End. + * @param {number} stride Stride. + * @return {Array.} Start and end of the first suitable chunk of the + * given `flatCoordinates`. + */ +ol.geom.flat.straightchunk.lineString = function(maxAngle, flatCoordinates, offset, end, stride) { + var chunkStart = offset; + var chunkEnd = offset; + var chunkM = 0; + var m = 0; + var start = offset; + var acos, i, m12, m23, x1, y1, x12, y12, x23, y23; + for (i = offset; i < end; i += stride) { + var x2 = flatCoordinates[i]; + var y2 = flatCoordinates[i + 1]; + if (x1 !== undefined) { + x23 = x2 - x1; + y23 = y2 - y1; + m23 = Math.sqrt(x23 * x23 + y23 * y23); + if (x12 !== undefined) { + m += m12; + acos = Math.acos((x12 * x23 + y12 * y23) / (m12 * m23)); + if (acos > maxAngle) { + if (m > chunkM) { + chunkM = m; + chunkStart = start; + chunkEnd = i; + } + m = 0; + start = i - stride; + } + } + m12 = m23; + x12 = x23; + y12 = y23; + } + x1 = x2; + y1 = y2; + } + m += m23; + return m > chunkM ? [start, i] : [chunkStart, chunkEnd]; +}; diff --git a/test/spec/ol/geom/flat/straightchunk.test.js b/test/spec/ol/geom/flat/straightchunk.test.js new file mode 100644 index 0000000000..4b645d8d58 --- /dev/null +++ b/test/spec/ol/geom/flat/straightchunk.test.js @@ -0,0 +1,58 @@ +goog.require('ol.geom.flat.straightchunk'); + + +describe('ol.geom.flat.straightchunk', function() { + + describe('ol.geom.flat.straightchunk.lineString', function() { + + describe('single segment with stride == 3', function() { + var flatCoords = [0, 0, 42, 1, 1, 42]; + var stride = 3; + + it('returns whole line with angle delta', function() { + var got = ol.geom.flat.straightchunk.lineString(Math.PI / 4, flatCoords, 0, 6, stride); + expect(got).to.eql([0, 6]); + }); + + it('returns whole line with zero angle delta', function() { + var got = ol.geom.flat.straightchunk.lineString(0, flatCoords, 0, 6, stride); + expect(got).to.eql([0, 6]); + }); + + }); + + describe('short line string', function() { + var flatCoords = [0, 0, 1, 0, 1, 1, 0, 1]; + var stride = 2; + + it('returns whole line if straight enough', function() { + var got = ol.geom.flat.straightchunk.lineString(Math.PI, flatCoords, 0, 8, stride); + expect(got).to.eql([0, 8]); + }); + + it('returns first matching chunk if all chunk lengths are the same', function() { + var got = ol.geom.flat.straightchunk.lineString(Math.PI / 4, flatCoords, 0, 8, stride); + expect(got).to.eql([0, 4]); + }); + + }); + + describe('longer line string', function() { + var flatCoords = [0, 0, 1, 0, 1, 1, 0, 1, 0, -1, -1, -1, -1, 0, -1, 2, -2, 4]; + var stride = 2; + + it('returns stright chunk from within the linestring', function() { + var got = ol.geom.flat.straightchunk.lineString(0, flatCoords, 0, 18, stride); + expect(got).to.eql([10, 16]); + }); + + it('returns long chunk at the end if angle and length within threshold', function() { + var got = ol.geom.flat.straightchunk.lineString(Math.PI / 4, flatCoords, 0, 18, stride); + expect(got).to.eql([10, 18]); + }); + + }); + + }); + +}); From 94a455408363a9306e705d5d417b3e6d357c113e Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Sun, 10 Sep 2017 20:53:10 +0200 Subject: [PATCH 5/9] Find longest straight chunk when textAlign is not set --- externs/olx.js | 6 ++++-- src/ol/render/canvas/immediate.js | 10 ++++++---- src/ol/render/canvas/textreplay.js | 23 ++++++++++++++++------- src/ol/typedefs.js | 2 +- 4 files changed, 27 insertions(+), 14 deletions(-) diff --git a/externs/olx.js b/externs/olx.js index cf0e8c1add..6873a3133f 100644 --- a/externs/olx.js +++ b/externs/olx.js @@ -7764,7 +7764,9 @@ olx.style.TextOptions.prototype.text; /** * Text alignment. Possible values: 'left', 'right', 'center', 'end' or 'start'. - * Default is 'start'. + * Default is 'center' for `placement: 'point'`. For `placement: 'line'`, the + * default is to let the renderer choose a placement where `maxAngle` is not + * exceeded. * @type {string|undefined} * @api */ @@ -7773,7 +7775,7 @@ olx.style.TextOptions.prototype.textAlign; /** * Text base line. Possible values: 'bottom', 'top', 'middle', 'alphabetic', - * 'hanging', 'ideographic'. Default is 'alphabetic'. + * 'hanging', 'ideographic'. Default is 'middle'. * @type {string|undefined} * @api */ diff --git a/src/ol/render/canvas/immediate.js b/src/ol/render/canvas/immediate.js index d6aae61277..b3cef08778 100644 --- a/src/ol/render/canvas/immediate.js +++ b/src/ol/render/canvas/immediate.js @@ -789,21 +789,23 @@ ol.render.canvas.Immediate.prototype.setContextStrokeState_ = function(strokeSta ol.render.canvas.Immediate.prototype.setContextTextState_ = function(textState) { var context = this.context_; var contextTextState = this.contextTextState_; + var textAlign = textState.textAlign ? + textState.textAlign : ol.render.canvas.defaultTextAlign; if (!contextTextState) { context.font = textState.font; - context.textAlign = textState.textAlign; + context.textAlign = textAlign; context.textBaseline = textState.textBaseline; this.contextTextState_ = { font: textState.font, - textAlign: textState.textAlign, + textAlign: textAlign, textBaseline: textState.textBaseline }; } else { if (contextTextState.font != textState.font) { contextTextState.font = context.font = textState.font; } - if (contextTextState.textAlign != textState.textAlign) { - contextTextState.textAlign = context.textAlign = textState.textAlign; + if (contextTextState.textAlign != textAlign) { + contextTextState.textAlign = textAlign; } if (contextTextState.textBaseline != textState.textBaseline) { contextTextState.textBaseline = context.textBaseline = diff --git a/src/ol/render/canvas/textreplay.js b/src/ol/render/canvas/textreplay.js index 8c0ff774dd..4cb0204491 100644 --- a/src/ol/render/canvas/textreplay.js +++ b/src/ol/render/canvas/textreplay.js @@ -3,6 +3,7 @@ goog.provide('ol.render.canvas.TextReplay'); goog.require('ol'); goog.require('ol.colorlike'); goog.require('ol.dom'); +goog.require('ol.geom.flat.straightchunk'); goog.require('ol.geom.GeometryType'); goog.require('ol.has'); goog.require('ol.render.canvas'); @@ -191,7 +192,8 @@ ol.render.canvas.TextReplay.measureTextWidths = (function() { ol.render.canvas.TextReplay.prototype.drawText = function(geometry, feature) { var fillState = this.textFillState_; var strokeState = this.textStrokeState_; - if (this.text_ === '' || !this.textState_ || (!fillState && !strokeState)) { + var textState = this.textState_; + if (this.text_ === '' || !textState || (!fillState && !strokeState)) { return; } @@ -220,12 +222,20 @@ ol.render.canvas.TextReplay.prototype.drawText = function(geometry, feature) { ends.push(endss[i][0]); } } + var textAlign = textState.textAlign; var flatOffset = 0; var flatEnd; for (var o = 0, oo = ends.length; o < oo; ++o) { - flatEnd = ends[o]; + if (textAlign == undefined) { + var range = ol.geom.flat.straightchunk.lineString( + textState.maxAngle, flatCoordinates, flatOffset, ends[o], stride); + flatOffset = range[0]; + flatEnd = range[1]; + } else { + flatEnd = ends[o]; + } end = this.appendFlatCoordinates(flatCoordinates, flatOffset, flatEnd, stride, false, false); - flatOffset = flatEnd; + flatOffset = ends[o]; this.drawChars_(begin, end); begin = end; } @@ -282,7 +292,7 @@ ol.render.canvas.TextReplay.prototype.getImage_ = function(text, fill, stroke) { var fillState = this.textFillState_; var textState = this.textState_; var pixelRatio = this.pixelRatio; - var align = ol.render.replay.TEXT_ALIGN[textState.textAlign]; + var align = ol.render.replay.TEXT_ALIGN[textState.textAlign || ol.render.canvas.defaultTextAlign]; var strokeWidth = stroke && strokeState.lineWidth ? strokeState.lineWidth : 0; var widths = []; @@ -340,7 +350,7 @@ ol.render.canvas.TextReplay.prototype.drawTextImage_ = function(begin, end) { var textState = this.textState_; var strokeState = this.textStrokeState_; var pixelRatio = this.pixelRatio; - var align = ol.render.replay.TEXT_ALIGN[textState.textAlign]; + var align = ol.render.replay.TEXT_ALIGN[textState.textAlign || ol.render.canvas.defaultTextAlign]; var baseline = ol.render.replay.TEXT_ALIGN[textState.textBaseline]; var strokeWidth = strokeState && strokeState.lineWidth ? strokeState.lineWidth : 0; @@ -479,8 +489,7 @@ ol.render.canvas.TextReplay.prototype.setTextStyle = function(textStyle) { var textTextBaseline = textStyle.getTextBaseline(); var font = textFont !== undefined ? textFont : ol.render.canvas.defaultFont; - var textAlign = textTextAlign !== undefined ? - textTextAlign : ol.render.canvas.defaultTextAlign; + var textAlign = textTextAlign; var textBaseline = textTextBaseline !== undefined ? textTextBaseline : ol.render.canvas.defaultTextBaseline; textState = this.textState_; diff --git a/src/ol/typedefs.js b/src/ol/typedefs.js index 098c7f410e..c3483a6170 100644 --- a/src/ol/typedefs.js +++ b/src/ol/typedefs.js @@ -90,7 +90,7 @@ ol.CanvasStrokeState; /** * @typedef {{font: string, - * textAlign: string, + * textAlign: (string|undefined), * textBaseline: string}} */ ol.CanvasTextState; From 7a30e495ba5349296debe1738ba3f7faeae1fa18 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Thu, 7 Sep 2017 23:33:18 +0200 Subject: [PATCH 6/9] Make the vector-labels example even uglier This example is a candidate for removal and replacement with rendering tests. --- examples/vector-labels.html | 63 +++++++++++++++++++++++++++++++++++-- examples/vector-labels.js | 14 ++++++++- 2 files changed, 74 insertions(+), 3 deletions(-) diff --git a/examples/vector-labels.html b/examples/vector-labels.html index 10fbe57700..872bbb8213 100644 --- a/examples/vector-labels.html +++ b/examples/vector-labels.html @@ -80,6 +80,25 @@ tags: "geojson, vector, openstreetmap, label"
+ + +
+ + +
+ + +

@@ -131,7 +150,8 @@ tags: "geojson, vector, openstreetmap, label"

+ + +
+ + +
+ + +

@@ -220,7 +259,8 @@ tags: "geojson, vector, openstreetmap, label"

+ + +
+ + +
+ + +

diff --git a/examples/vector-labels.js b/examples/vector-labels.js index 71a53f4b23..ef80956195 100644 --- a/examples/vector-labels.js +++ b/examples/vector-labels.js @@ -35,6 +35,9 @@ var myDom = { rotation: document.getElementById('lines-rotation'), font: document.getElementById('lines-font'), weight: document.getElementById('lines-weight'), + placement: document.getElementById('lines-placement'), + maxangle: document.getElementById('lines-maxangle'), + exceedlength: document.getElementById('lines-exceedlength'), size: document.getElementById('lines-size'), offsetX: document.getElementById('lines-offset-x'), offsetY: document.getElementById('lines-offset-y'), @@ -50,6 +53,9 @@ var myDom = { rotation: document.getElementById('polygons-rotation'), font: document.getElementById('polygons-font'), weight: document.getElementById('polygons-weight'), + placement: document.getElementById('polygons-placement'), + maxangle: document.getElementById('polygons-maxangle'), + exceedlength: document.getElementById('polygons-exceedlength'), size: document.getElementById('polygons-size'), offsetX: document.getElementById('polygons-offset-x'), offsetY: document.getElementById('polygons-offset-y'), @@ -86,6 +92,9 @@ var createTextStyle = function(feature, resolution, dom) { var offsetX = parseInt(dom.offsetX.value, 10); var offsetY = parseInt(dom.offsetY.value, 10); var weight = dom.weight.value; + var placement = dom.placement ? dom.placement.value : undefined; + var maxAngle = dom.maxangle ? parseFloat(dom.maxangle.value) : undefined; + var exceedLength = dom.exceedlength ? (dom.exceedlength.value == 'true') : undefined; var rotation = parseFloat(dom.rotation.value); var font = weight + ' ' + size + ' ' + dom.font.value; var fillColor = dom.color.value; @@ -93,7 +102,7 @@ var createTextStyle = function(feature, resolution, dom) { var outlineWidth = parseInt(dom.outlineWidth.value, 10); return new ol.style.Text({ - textAlign: align, + textAlign: align == '' ? undefined : align, textBaseline: baseline, font: font, text: getText(feature, resolution, dom), @@ -101,6 +110,9 @@ var createTextStyle = function(feature, resolution, dom) { stroke: new ol.style.Stroke({color: outlineColor, width: outlineWidth}), offsetX: offsetX, offsetY: offsetY, + placement: placement, + maxAngle: maxAngle, + exceedLength: exceedLength, rotation: rotation }); }; From 85bfeda50ef4a89d10b8d0b4a4fdf424f6f7bd54 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Sun, 10 Sep 2017 21:07:16 +0200 Subject: [PATCH 7/9] Add rendering tests --- .../style/expected/text-linestring-auto.png | Bin 0 -> 12415 bytes .../style/expected/text-linestring-center.png | Bin 0 -> 12454 bytes .../text-linestring-left-nice-rotated.png | Bin 0 -> 12373 bytes .../expected/text-linestring-left-nice.png | Bin 0 -> 8536 bytes .../style/expected/text-linestring-left.png | Bin 0 -> 11307 bytes .../expected/text-linestring-nice-rotated.png | Bin 0 -> 12493 bytes .../style/expected/text-linestring-nice.png | Bin 0 -> 8464 bytes .../style/expected/text-linestring-omit.png | Bin 0 -> 3694 bytes .../style/expected/text-multilinestring.png | Bin 0 -> 17543 bytes .../ol/style/expected/text-multipolygon.png | Bin 0 -> 12603 bytes .../ol/style/expected/text-polygon.png | Bin 0 -> 5732 bytes test/rendering/ol/style/text.test.js | 184 +++++++++++++++++- 12 files changed, 182 insertions(+), 2 deletions(-) create mode 100644 test/rendering/ol/style/expected/text-linestring-auto.png create mode 100644 test/rendering/ol/style/expected/text-linestring-center.png create mode 100644 test/rendering/ol/style/expected/text-linestring-left-nice-rotated.png create mode 100644 test/rendering/ol/style/expected/text-linestring-left-nice.png create mode 100644 test/rendering/ol/style/expected/text-linestring-left.png create mode 100644 test/rendering/ol/style/expected/text-linestring-nice-rotated.png create mode 100644 test/rendering/ol/style/expected/text-linestring-nice.png create mode 100644 test/rendering/ol/style/expected/text-linestring-omit.png create mode 100644 test/rendering/ol/style/expected/text-multilinestring.png create mode 100644 test/rendering/ol/style/expected/text-multipolygon.png create mode 100644 test/rendering/ol/style/expected/text-polygon.png diff --git a/test/rendering/ol/style/expected/text-linestring-auto.png b/test/rendering/ol/style/expected/text-linestring-auto.png new file mode 100644 index 0000000000000000000000000000000000000000..fccec2827337962a851537574d01e0cdcb8c94c8 GIT binary patch literal 12415 zcmd^mhdY&T{QrZKj!@@NNVY>{lNA{!i7UeAnf`~D)QmWwZ?(5%heDG(nR!KSp z(Lop~Np*LF9eoeI$eF9Fw7H#cxuZED@dB7z?-6{7JxZn=X!W<{eUufXtaAL6b4Dh~ z#-G_Sne_5Kah)kyKK1j5udDaHKGvP^``mZAx9dD~5}v-Ewl2K4@3A=KEVllY?o%X# z1oD^;H^k%_@)O*f0!I$R94;R>B(8?MTWXOLvw z(1h^xApbGw_j5v`qbj0UA}A3~cV^>}$@PaOo-QNg3BEfHw2x@XR;DV*pPzZ^c|Z|` zD9A4=YDkNZSD(mZtQEs{n3O+y^oU{6xe+t;AM_eB3W9uXRd2pqkRo7MZZ(0PLGHI9 zeE3pANZaFj-Pf;6_G%nge3$o6iiU@Wi$99E8O%AvMC;oR;_*o2WZ59)V%B6Mej5-O z-GRK2{;}|R@qBp)46XQ_vJemeii#_o{ z=dm^#-6~^aV`BkRs*HlX*-} z6XWB{hCYgr7v|>+56{ldlA1P9(I0qUo}W|%-=^lx1HYOtxp4WN>&%)+iltd3Q|Ngp zjJSTlakZvv9&`%1PZVhE#>U2S`pitPa&g)9Mp`;Jv zEe29}aF>j%ss7bk{|9c<&WK;0f!Ls+ zjuO3E)yp4k!A~DVx0!#n!NN|}17!~kuq0WbFr-dFD-t?k@|z+eCQf)|X14n5*|Vn= z6&1dERn`gKL+MX#1Z=05_EuLPXY~E7xO?y3kLhyL{i#yJy{o1F@TO~>EvkZpZ>AD0 zZ*F=H4h$%AK7L$jd9*t(9@EUBUD58d+8x`u(iLr}_2LB`6B}FjL!~r|UrS5e${HH~ zs3ijf1Ji5k>QZ9FNSPIm$H3=1r>3gyrKGTO@FTb)gS1mqM@hThxHY>8Z zS$uI~Lc>5wsbqO`qEKUWbkxnp+S-$tR;+=Ui%a>{REd7MrlzLbCP9VU-h!>JuI@dk zo0EgXN4r$={NlpHd97bXMMHz5&f!NOd+LA^3p@Mc>gs9>dhDtW`YoJ*p&Tr9RU96O zL-c7d!X^YV5NN0}Z1&}R_3BkK9rnfCH@iZ@Teqh9`T0K;7b{}ZvP(;&`FMGMPZsNH zhm&#Ovazwr%F6mnzQw;cn8GhVJ2Ij&(%qf637&5-_>TD-xRSrqgq?FbySmt5`1t0j z$;niu4`m%39E?j18ppf$dzc&3=_Dm3v6j4RYimF0>FJ*fQ$>kHcX?8|WqvP>!{Z zTa(4R;E|58v9rfN;^Hdpm}qJF#EwEqE&TUiz|c>p?4HGMc5|J3-)o&WvM}$}v$C>U zrlyXJ7Mpx5z?5L=o|u^UIJExd;_S%cJ|*R)rZU3NaM4{vq<+??^9+veB!I(@v%$uf zfT}*4D%Q1_iObN6D*|n@@C-rpn-q!|-W#_{OG%lHQTq7A1FWUq`*3>(xw*NSE`D(^ z*0Mg7k?~Shwbf>_sMZ)v6&5BYjh&ShQ{TgF?Z~jOuvwL^i2G`r8yg??Ha82>l9Oc* zZv>W=m7$4=Bi~q9SVXR_ntjyy(RPeNTauhqzk4U+sHHVs`1kK$mYX+&rOoc_(_goe zhLEuEA3{RHIe1rX0Af@5QW1_8_@kqvlTnGWhexA!!HOx7FuZLXD686C1`(1o`yI`@oeA2_#vg6Ze7(4F<3@#;n3xsVW?>Zr17B`oVUK|Vjlwi} zIXMYBM9bmMobm6a|HNs99E?m}yof2t&u85OHG#1eIFqrm+KA>e@9&nyVDjh92zz3E z4}PgIxw!l@qKWQG7xnntnwCbD@9*zl559h5{>9t)q$GJTVmV8}0|FIRt|%=X#8A6X z__DO1-fhpx%*+gCF_eB$|3?@@`c03vL7HUf`i4UA@IxSf!o>M{!=2IW@W%T3`nc@u zS7+}ZD$iy-aglr9VPXub;(0+qfgd$ksH>iyo|l^1*mAA&x=ifbXW&_X7|IaOD9O!z zNs2(cm?_a0S;j{{Zj**;(5vLoH%4r?M~~v)dxzk5VVp^4I-q9_m6c0xLS_tDcAicV zsD&D;F{8yIDA~tJ%&45glqqLuU4HDJ`~>fGY){DnQNIA=%c0X~H&OJC^go^*2^l-naj7a9>zh&^I+Tt-5>n?y-S^fwC~wZNK%wkEdYd zg4-y-1$$euylk?xe^Nk0LzB%Y6M=vvU}(!*oyT0z3%Y1)ma^4t7{m@qkVB(5OZ4cx z$s+<&Q9>vOZpcMLUx_|;LsQxOSbT;=-^8vwm|7%+bXxrk>CJ3eoyNrsTfHk$>2wtS z$tIye1%$ZnvGMU)oj)AD+0Ry5$;ruuHH3y@F4qQ9_gDd%av3yCvj_`oYk)0rKRevn z`0(L_UA65DgTAI_4hjJ;0}CD>&sQtGLnVYL%*)HdX<^2`kdwdlYl=G&wIhv6p+n10 zh#g#Iuvh(ksiX7cu;=|ln}&vle$W|ar$>7kwGKa8gK+~StbX<;=o>bAW`F-`G4%aa zUt)H}jBQX>7OF$geqr?vtytQZPoH9P^YW6P4W1#;?TT+572_&H+DTw|{dfSKji$X& z$sH?y%-h@B*?;fv^A+di#iR&1n)HI@(Pn35{qpqi_&~ZmJu~x)Q@`#YAS_IdJ-p+T z3|fFBZlNvNR!HVZAwwDA z`0$6COfZQC^TjI6d*=I%p8p_`VC)mZZC!Cy0TcAOyLz({^9C(|V zn!cyHe}6_1l!{e#3=!xl4x~ z^*s2M$@uUgxt6xJu#TZ&vy6rY|IUAJZ+co=TPM6{R(w=mU47NHxMAERc$&9F+;$sCk;qJP8k&;q;$r=2@F2qg_7ld($BzOeH%d!QWoriPsekaJ zNEf`=us!}vYP4HL+%RWPnnD>t#C;dS4N82p0mg;~5{YChC@jpjv$b^xLqhBqXda)- zbB{eR?VVg)T(oTkQq|Pd7^j;3u3D?@7ke$t%w+AR%YGQRxbP>&##$AA`t*WbVHn|$ zcoeJdB-?6$9l2&4GMROVnc2fBLqA0p4vwcZR8)F_2$M((p3lRboy@y{U_2usAqnYX zCva#bBj*UQ$vL3g*69sbpZ90X=i$&Fbky;mez*5hE=DcvtJ5HVu65tKg;tfjH-oL_un8ZS}Wr-%bBsMn7$Q)hNL+f_ zr;jT`LwiJ7Sy_{OFHWCcZscYtISZv_aImvS+`LV7Y~$_SaPLpU#K;IMt+11sj*?Q; zQ`$j{I3sIv00!<#n>{DOjRcZi9fUL9ny6aivZXnBvcFz+aByG* z0Q@H4mm;2kd~HfSh)IqTc3!)ylqNKSk(B&__V75_1U+F#52N8Vll=i8U*mZc6~Rhp zq!+o9JbV;92|~bk*uV!e(VZ?14lGAUM@iQCS;UGLJVpg%#zd0b{!PR66R?S(?#Vr2 zP8n%w?fC`|wI;<>0p8Qo(;Ld^q9ecN>)m<*pc=BVvi_R`HQblPWw;4QiX0c1PbIar zwU07}k~ChtaA)|A-IIaOUkn+(h_u-Qht!>a)MK@<~N;?kQOrsM=@cK z&@|}GbudhNA8;E&IaQzIuG-KUVQ6)S}gyxE=$4IU~$uc-fe5*LPebe!xT z^ZWZR`J}j~nx%=mR(6q%NgRES4sKIRf8E({czAeo3LWpX+ReS8VR|UP^Zi@oUb(e~ z9rj0#%hvHBGqe5ctn3XA?efou_RS@RR|TXQ8N!?_-2%;Jh@PI_)=uIFF#Mg_1Zz0V z!<39;Q%g^$_mqjd%)2f%RdnO4=ftD`jMT=6uEug*2C+dH%-0zqQM#onol=9FVu!o5 zH8lQESjt#ZsE*V&Xw|j2rKjrT3}*|jJG1<1G|}YGWMh(&re?;+E9qERWOY zvI+_cSAf(Lk^`)4blWrdE1VF5NI9gpVMi^LwAp z`R{AAa;TM((rC@anHOo`_FPrra;kmvKYG)I#b$Ar{?Y6m0!iG%?R>`!L1np@y7g-Z zfj2@&7ybM)=~#PQiV6##7}81n@H)!L_t_s9S%cU9HXzBAb@H3&`uNxbo@0e9XAa^1 zQunxkF!o}IjFglws_*Azt<6-4AUm0SzTed)F5p@c0;$vr4X+Iw+<9hNT9zyzx(ro6 zI&9#A;L^XXsph@u@-Gs~%3LB$Oia(4o!84zTeop3^z`+qx3{-NFF*(K;^X79Jbl`j z<2d>b$tW{^O>C*CsWq^e2Zum&a+1SgB7lEXFM+L&CWdE+WMJSNXWf3BBI~P zq=S;rJYpwz7t|(_WHks%k>xS4>6G*Ku75Tg>cs3 zeZo80)65!8-_0(H=0V8G}Yo{;syRXDez)bQGUR zAw6lAKfD9h3Zo1r7$82B?HZ)@Lu|j!f_AS406i$`dtUP`Ki_IFkwf=#WNb_~8o^M) zSVe4F6o_EREZLj=EFG>2xaB|Y&egG7<%mFfpHqkDBEs|K<>ekn9!E?6y;UG5C$}4Q zJU{+Z=6&)vV;$VVM@xK$N{hiX%<$-FU7gW?flQ8$j#WJ??}+Z>q8J&isGq#a6Lwr~ z-|g*{o9v1cIR7_g=mEf8v#-Cuh`MWZl!Szo)TYZSG>ce0JVg7o0nsoGq>9sW7fipf zaWLC`fuyLoTuZf&^E}#BbTYiaBI+dZ>%k6-0=>+z^e`blp2o254dw^9Q9oKy_u;^_ z@S6Ji=0rC3@uw~;_`QPz(!f;ku(7xI8w9q*q)U3=&v#(({qTxI##$13d7WYY>2!>a zsv;;TYBXhJ%pXK|h3htYxygqjaWU+McIAQkvfN~re-bqBo?gk z1`Vxe7=NAFf&A0#+!?VIrY0tuPrZ+aIr#ZCJUYVeRRh^e-re2J0(kX?y1To3SMBcZ z4W-afYs=1vNI%d$%YcMbfr5|I2K?c?%(%^*g_V_wKaA;N51H?IY4SmTzrq%v8?In} z%D;Shl+MDl0lw52m`yo=lxis|Ms8>7uruqAR)uK!m>By{K%d6q6+P78Z+TqNaO!5a zz4Qi9WFdfVJHCGXnlvmt92rWc*Wm7Grl~pk4`AviwwEQ{3fohq<_qtL*;W%0e4Lz} z8-YZ8yaG5{0WgBT1HOJVGCq!inXA8l!@-~l%b%wm|KJkL=pV~LAF86FLVe;bM&PRY zt+H~JnTct`ex{-$0`^=nnVbIAa(k$o$>s6N-2C&XN;MUg{L4RGwD!8%+8=>Di&_HJ zD0c7OJ$_D3&eENooil42oA+98I{7h^3?|PJ^cY#Y+x9S{OV-g4o=Hzou!Au%F)9G7 ztiGBLqyz&7#RY)UOrh150OLz3-jtUctMaes?5K}{fngTZ)fX|J(^WwHEzK+}UT$q| zk>9v^^LcM?Z;1rF@gn}{MCVMdf($7i2*;SOtopEs|OYr{r>*! zOPY(bKi02zod>qh&=aRs*(qm>L5g?{&DKqRo4AOGh%8_u#nX!W7OAMJqHnKi3kV3< zC$Vd*(y_5^6=Y^g{ypUVhAALJ>VnIlzq5yE^wHq7hckQx_x%o76HV#q>63r{{Mn?W zq`U_Rw0G9Uak;bv8g1qNrjimvRt;F1MO|H;HlRz?J?qI45ekycz85s*T19rCl%u6R zz6t${Rp(%sgyoZS>$#maQir~HCoC>*s0|)5WZK{b6et;>d%cbS{>`v8HthCVS^u3Z z(YMi5PFq@9>Y}>6{*Wx3=}T5t`%P%Mp9QI{fEAY|ajP4I2g1qs?n3SK{yG`iIhCMV zXhq)q8oufXCwF>#^UffLlKfWnt25WJ_y*B{k013XfjFYoeEE{}eW^AO84pMT>%n8% zadL8!jFXDM7ni#JQVOsQ6{OHAWoiIVXM1s)vUT{>LU4I`M#kdo@$qrb$;nAJ@P+=q zwX>6N-Wd(jm?>Y`=g|F@{GRv}jPNla?{|N@i#9fT9l8Gd{abc(x||X7aCV#YJO`mk zwHsU62>$|SK=m~Dw_N*#g+)c8qwVb|;IAdFwg+bTU7j2!OTo0hEW;xsq2g}4dP&2>FWP_tTr1To4>Xe%e~a+E$j3d*zW_Y@vx$jG z9r9*Jlh2u0TtWi%xPyYzQvrd*;SGG{Dxi=V!O< z4Z!_G!PM;2uX_`^|NFOAYC=MgZBdaBzpcRXA9sz9Ph1`e^6{xPx$fvp04x0UhtyPy zhs?~bn^UEd&gGZ{KA0*9Pi+R%ZDN8G~=beRbKI34Gx? z>Mr$rZoJBHB2v2>g{YH~eI`eFYme#S0V*ckEdA=GLfyM}oi`vle(7$ZEHTUo7^$l| zB35k=x1~c|$0VQ;4#~+$nzt&j(2$T9ni?AVC7(Y1t_F6;?clc1=*Y;OmnlhZ177P& z2Ev`)-(GUD&P7qby7K((fAwpGaVCmdL~}5ihmnJaM3Y9vzS z*UnDlb#9=`P-lEL?w_C2udmKA8eiU==tc1?2DEVQ9?%_1C&$Mz${%`1zC0&a0${@+ zCbn?co4}?MdbDe`VQKjZNWp;5@9=x7Q>XIP9&Ui)>HrLdp8y040o}{^Z+%}7Xs$~) z6*3k87_W9_t3KAb?J4o{%0=GilL@=K0xZi?P$@>W_4VZ9KBwwdU7#G;G>h^Sze#L9 z09Lt8_g?cAO_OO?)T|B@c(HGMWQ3qNngvx(4aWOzpu+Fi&)5Bve=2#KMzq__)wN_G zf*08NTfV-&UzinB4mQEav=b+lloBIH-dN-s3Fd*(FX;m|a0X(FT!1QR-qsqaDJgQ~ z_wFV9uBcG&5_w``C0x61pCLMOxpVHpPfSdl{`PI#+@F=MhoFKxe^%N2=r8WM5cHsaDM`{c^PP=tenQv|9qR?Y1Mh){AMHLFxKHA@KY+*#z{ z;@Sgy<2Ig4U`_RYcW37#x8?As**YvSX&0Dr(R;hQoMR>W^_xJipT$id0xfTI`}S?r zo1}@946T0@Jo@3>VRU9A42+DJ?atxuZdso=4=FVaK`oaKc6@w1ac*X22k>L3Hh28Mlod)wC5$mj*2=jB4TgZc7ua@NA?>%I1{SQwL^-xWE)Zekm2g=?WN zf9+8|1f~zL$c_g>kc^KXv9SqfgwjP!GDI-Kk>m17oYGR*pbzZ}b=h2ujBk@X+(jvX zq4Go^)h9}?+5OLQWXSK|>4zUhoZk(k)e_EDYHRrQF2vALn7aJ9(uQX;cX*!v?c+ja z$2{72KB(ck``yD5xT=FFSkn0bu*^P0MGZy*>NChNBYBAP}gTHuUJ;Gi^l>{}8VCe;7-Q*gxBACY|z9Qcxgr1JTl>j1|(t05V~Ah2Ouo za?e}5BYo~;5OKMWT(2$(15{L4xztqOC@Lsq>Feur%}q~l$0R0Ro`LSL8yFZkvhL~W zkW3ZW!ZBjOm8By@y^&X8sJ#mry_2A$`*+J8K+b|~SU5&c?|YTU{@P4zd1n;0Zj;l` zUPt*v_FDJ-HAT9UirXN+nwXxRcAhNKz7ZN4ng!i?19Y-5D{D{uc|F+n1R!waUX~in z?=CHsCHMXO+zF%S+34u#C{oK+>KOdMm#geEitpod0TSGJ9p^I8ufB#(TayU1o`p%2 zq{|G){RxWa2qK9=2Ih9D=gOR{tQdx#>lIhi$h&k5I96g(8W*-*lNX=l^74IMSLgf6J10Rg zRJA}e?j9chS=k13ftH$@+6Sa;W?(400+y6nl^-O_dlLjW89-EIUvHKfV6f}z8XE6` z7_t`J0toQ|D8!xX9ftu81RXNlRU2xQWNE*Gc&3P7^sWY(s*3!Jpo65Z+& zRSd=oh#5ya{P;x6$;rtb7;XSjXEF#;-@ZY1ndxe2;D~ zpVjO?rr{6jHKug@bi%B)RR-YQY^rr!kvRf3zO38kc)le_hW<4AuXSiq83_)_Tu@2jGqpc{`^S+yxhNJg(iyI#;(r5ft$ zbzUAG7lj9u_(GDKC4ThAuQ$5l(pq6dej2!!)6bIgq}x;IY6eR~vu4XBTxQ6`r@1>v z;q+pi$;VnQOtpEyIUL&u?);OKl$2Lsq`CvVb7K+}_3j;#l%$@xdoSBK~ip37SYhqP?8`ww|kHI*Lz7Ey5{j|X+_p1CaN`dbKllM zPuZ;vew=Fx>C;FVZx&B!vek}g2n+Lda3~uG_&5hN(}^O8tA@bn`DqO48)xg#;e`S}%Ti{45}iuRn!<3z^hs zx3#fhmHy!a>*94#1Jr;8ikaEk-OH=`eL_O7h^CdZX`E_X-nYxqH(-e}I5g+(0#Aw0b zy#Vpg$~)t40AUA!>Z$t z8rUQtj|yrH48(10ZADjEIXVst3!muK7d&#R$qj_Qr=03JHYxwF;wIQqI(P6BFz9X1?ZL0lVQ1rb6gCngp<%4@ir}l;?7he*IxSI2ADpW{=cuDxsLP zeD#&Oh`++{PlnDJTqQ^Hb!14kK)86hY``EbQbJt~d)rjuGcE`r13;|x20TJVJG-6F zp!OJOX=&esbbte7u3^+7uA-BpqrCu345NXIycOd#v=4G=k=NgAW-0w@234!bHU-vD zD)V_cq8S87Af-f#1j2(7)Ki56pi7NUs=xFsVbBJgo}@`msV@n)g-ls_s1*$FiPiP> z!i~*Mr(C6vI;Q64iM75Lo=;6WM#sk34*&e|U}j@GbDghqSuE2kYQ8u>XC~y(XpjH? zbwM=&N&M z63a>09J9E?b^SJIb%{qQ`N45`jhnZUx!nI1-piee&`Jm7z|F%`J`WfV|KI(6V}PUo zQLHQj-?rbd)`{t)Jaz-Mbpx{k#OrRAg@QaVBsfG1UKjqNemjD(X za%hz;QQ;>OLrUt9hC;UWBzSd=4!SKRlswD%yp{9b0# zaf_dWgCp)2oeN+DrAq0dRumKzmS$E~tahM}!C2w*m6pB%;yR7V@$oV+@!taHC3vyk zZ756%2Kd$?1O7A)RG?U;&VPV^nT9^A&0qpXbrAvj_La4A1(JcL?jff^jRW74Cv_I; z>hbAOQA)Mp;eBe1jEr9Z*VDL1Mpob?M3q=q=Q#+RjY4olME@%|_;6@$Zf>y)4CI}K zMlTdUD=pqR0aT5EFs8GsntQ|%kgH(r`{a2Ra4}ngKpq1i0tA8im1|{fO_OBu)jqC4 zRnXL=0{0o({Tdq|`uO-HgG{IJ_}Kjm;OUyNHMao{f;hvY2Vg-wFE6ipoy(T188`>U ziMBgHK$GBLk{f_dO#&C5rVu18H3bD>W(2Wd@JBUy z9qlIHyhHm9d8+;o4P~fr;o208GxZ_g`c_MvaZ! zfAebNxtecsHB()i{|@Ht?p*tns-Q`gWVo`9e3>K2!T># zK!tW)`@TU~tdU6yH3)qGGZb;H&??G6qVEwjH5t3f$p;%K$#w(Hp{#u8PBfL?%YsPt zFV>0Ka#Umo&W&I4bXJ`k4dtIc-zGr&)AcOBp0AVse0dP^pa&df8wK02*7n0eR`F@g zSI>X52D;TGijuq`qLBYT_>zKr089Q#2$=5#TrvnOq!icjQQU9gHxOZyjBE4Ypi3ta z;1v~MDC``G1~_k*V$oZWu>=({la!QjyX=tV-ODM z&N+N6Jm-Nq7~tBSV4G4fz=Q
    2zp2GzoV*o&VF~%FZj{qA~^CnfJf^Lf8Fv zhVEK$v;y-LvrGuVaoA5ua2eVC6dL?R82kkdm#Lf9EW!$}6J{(*8-f;njQP0f3I4D% z%fM!_@DT9IUGT~YWq(V%#w8u@aRTq^6%z6MI)aB|{_-aWgchE&!OCLevToxz0JgUYF~LUxj@vhm_6OF_+kk*%jp3j}zGq)gX5&c2^77b%ou zO8+A|pODA#`R@(`9TH|`gpUvC4M~Bk08}5l2O2y63)F7)hg~2@>RNz#@M%7uPKz0+Z+!ACo~I)51`R zbpK?H{H2WT4!9rD-VNx4%Zf^3XII%lRt9W0K_~k4p(iB}h(Q zR3cz##Z~1igMSLOB9}uT$#3Jm;42H64pkGBi&56&u*SaxJNb7vo{pnT0(=23op1KD z7lD<-tuOc-2ysplh@TOR1`?tNS~%cqFM01W$r5tG`0=W_KN-3U$;D`DfxCHq<3;mu zOgvpN%o~r-ffg3?T`oGa?HeyH_$MN6{F*=rzxuD~uiwR3aQK)FM?Ux!K6t5L>-m## zO|(BrR)T+a8!sL>cy3m$u4UBtLjc4C=bMZj{G0%`$BM~lqpbh>Ap89- zS&I=lI9Mb}*&8i$IthZ-2$!s{mP{}fNgV>MC+vLS?Z%x?Mzt$Ru9pB~r%t>N-p*}G zy}_(EPyc5N>U|gqrm?Io#&f) literal 0 HcmV?d00001 diff --git a/test/rendering/ol/style/expected/text-linestring-center.png b/test/rendering/ol/style/expected/text-linestring-center.png new file mode 100644 index 0000000000000000000000000000000000000000..bed2dd4b9f7ef814768947f2244e6c3797978d53 GIT binary patch literal 12454 zcmd^m^;=b4)a@pu;{bw4gM>6lhX@By8l@W~rCYk=B_*Xp5RgW?L%Km41nKUU{ucN7 z?jLcV`-2Fw_Fn7kJ?EHXj5!T`uka2Vg9HPDAZ%$V2_^7%@8cgd6!5h~qcj78s32(x zF%?(6eO(tFm3Px3l}{4b5M@+j*j_Rj+Wsc)!huI*&mba4yp?{+$@IC{cWf^jK_pnaH>~Es+qXTRM2cE5dT~YtE3|8NMcG+NGA0BKz9dx^x7r1d?iBa6fF0X?|GtKdAOjPa{nQ|L4Eu(R zhs!4@qX52%iHpn|c!~>t_y5PD=#i@5#8hZdo=@I(%Ne&EWcLpGuk|dzbNfcw-!quJ z4cdg3h#|5Etnuo2##hicX2gF*xx%A~t~fH$KB0mry~w_^XjBLK3g<1$#Wo8KkrHU= zZo+?q&d$zKTm)lwJBYDR0tVLgJV%_%DbbN!AyF6Pqkx&X-ZoJg7$+YdQW9dDGQ=SU zjdZ4MeDC<%!kqAYXA@p+=R6a>j1gg=UY-gSpw+t7vun2zw_7hm&RSF|Z9eh$)Cy8T$JAm?3C( zcD5d&jTc&iL|MCC#T*UqZJD@$uXi^L6%jOiWA~oSdBM zb5-VCGsD9+=-sZ=@U87M0Y`qY70V*F3bsV%DHqQ7bdIuy7INrEb*O6(;-B5cJ?=Xe6_>4 zlp<-j2m28b5p2OhLAvR@)^jH-D=W2$W`jux<3AJ?KT%0JIh}o#3@2jzk(YPj>ViWQ zPWKc~3LiOUw-Sv`iU6IaLM2@i$|7EsOk~s5+S%PLn*aU|cR7rZ8Lp$NyBQxJ&!M8K zO3lP%@ujuZM@mKpV{f+d$Hq`9AD5Sx*Z1C%`Go}|VPWBT9139#5@KS0zgz3wsgh@j z?D`@(`S~Gz%XUY#i{7LMYir!v%F3s#Vl*@~8Fh_~+OhX+Y-|kR(x(Cb{?}dI-8Hea zV!d~3nvYM$kE-sT(al zQ&p8NA~Mn|NIAFW!B5N<>6dgMo$RS?zvqp$m^L z(XPFpthHTKgO1cqOia`QP|(rQ8Bb46EOHA9G~Ey81#rTnbRG$ty4C93B|xu$(S68BFEFZE!in z0fEHfv^Bco>+9>Nm?6B)WzzrD$kFjM1-#g|4*X<_exg5z1_mtq7aCnu;cz(9-QAr) zAl085Yv!8TT3h)8Nt|tL}mBaaZ$4q~Je=|)@&7G~^--ldSx8O1H zUTKSpLOwG;Kk6xFis%ZMkI{P3$DxafiFsU~@AB>b3P8m>I5^1g6rq%qkWjh5-Ys)R zM#sQt5VBipYjEtoL4$9gVPh{$R+=eZR+^3c)vmG9RF`fw?5iZoLUzLy<7kV5I4}_S zn>=PgMkJS(+PILDrz_;;<(YyIFW!Cid2c2R9F(ZOv9V~e)h9Cz6Z!Y=-(A*!Y9{e8 zf-V>4=bc`?dUduNh`ri@mKD0TC@3hn{w|85gyM~N6R$vrX9yKoucNN6?rm>h9{lOc z09qEp+F~Hp8f>w~`p<~Blx>r@n=pu}rVa?}XHb$cUfX4cPJt>l(9HJKR;dA ztpX)+K$UKKe}CW7X0fH@TYmmae&?NuNtf0*?q%1>Vz!fix`FsPF(C%N8W8_%mX?+@ftbWt-7<7^bcS>CtV~RXx-Fiw6+eGQ^EhtE{XJUlc=Gn` zTLs9D0=lOfvGLx9sc+8CBKlwxJ$Vtda zNZjRKK79oWLfjk2jX`Au1cZ-Io;+cA#l^*%o}SL-bAPqzNff>wpP6}BZ`_BU3BvNz zU=rtQP-^O*Llz=SBzS&qE2Ma=Xy}T=gF!GO|H=1qG49;^M(fF0*0f zckgwy{2}~%6NdcU1!PBtu^Ybe@n6EebmXo7WX)=(|2(s+zeuwi0UCiL&icy{m;KZ`G+1aH}`~T<*X14?tmA> zz^)~6faZ@dj4w-oh-Ut88JtuN(T{4dr{{;PyL-di#?Slx0P`srU%rgDp85Ify8kP) zb#--heUVy;dmac+Vp3A(;?h#0t?lhBy=M1yOACt{lX4AGJh=0{+R50OSa>fX_yC2O z@4Z5-R)axlxK>wDDNYu0DYf?Y7O{tWR=OUqaI31Su3w#QrkWWWf8vGxP%TpHyf$t# zEN2QW4@)zG!F~EMIZ37%akV7a&_ErGIYisYzxQbWGu7E3kdTm=f-{EQ-CT}r0o+J_|561P z2d8Gmp#4sbS`IuNUTSSUz7=acF^Dk>^d+${|C6qJ+?Je=HE z6vF>}N@cIF9$x~B7>6ha-o`L5ZxMKXr~WzV9$t|7f%?Wc_j^t$z{SpusT0I-Bs1mX<}ey z9cpsi97e>&jT$E;B>YdUM5|i)BsrNt6UFZx?G$dE?E^%4?~y;1A#5;;s638jhtlsA*Pz z>LUX$)d)(OHYgDEzIFA8I1c*$E^23OZ7o_@srS#Hn}6j-J?>qdofB?TfEO(tw%mN- zGwzK}#C*nPrLL^pq0#Jqj!8g3kj)sfNDz8RWva7cC)MOy8x$Dmy0Nj*zSb9~KQlAq zN+IleG`QLmrFnOKUPL0`kkfy@JB>M7hJThXrz9mkB?CtYqt(4R9eL9OvMx=h z+)y&h-yhMV%@=_uUC^0H*yTXyCL#ih4u5-dXXpBIw$jWJz%6#DkhF#dap-yyDr62( zNuV`HzN95FSZ)tuUR_%)Yuu zlO0GKsITAm^z_=L!M#L5O}woz4C-F&>XHiW@cYWFh9-A*#^j9b-)?`pQO#afY`lko zTb8l0oF#Y7esN0RX>IcLnZsVvec#q6`qZv=GjZ|E+M3$Mg{NXRhLrg7nsc2k&I`uJ zEHvlHzo5=8PclSe8w(4WVVq^Nk&HVvWo3e3tmm|!0ozl=#=^P{3k$QFvAReF zuv81;3L6|IS4Ur8KL+^)f^RnXZ9f1I8}m<}J~1;hGf)NIiqKLC2ncKg&YXaOfdTvZ zx#Z}F+o?uQ8Dc87wm5ugS~5IvK857z>S1O~S#j~9pqT=*GY^la_wVc*j2CY^G1&E- z>~PS_huqG?o|8OPS#5QoONG%|jnmtdm9@;tZ4|b+*!I_D`tZ^sqc2oQZV7nsj*F_R zyILL0-|Q`Sj1cDjXpC}kncl!e-rAcgsW0(3pPMH0yO+|(uiiQm8UOcVBaw%dW)d0C zM8)j;HEg!w^Ug#84}i{7Tr&P|Ik~y2AFZr(^t814mrt+OCU+XLva+Nd9A14154W^6 zFlckMw|CoETgy?>(YdW{X=x#Wnk3M4uP3M*YHB{G0=iH&_(M^ETwZQzvPiw%C5|_O zgh!^%YW7tWAV{jErKRrKIoR6#WW#X4`ModpW*u!8TZYWjs+N^Gw{;twmI3LtF3Qec zfg5&_@Y(3-OQ!*dv86r2MBom0s>qYfNuVNL!h&=p&Z#RNK0Ra8;U^{_FmgHHQB_6> z@SCf#)_x7@(3^LWBqlbWJ|#IVw?C=u_z&0eM@|kg_?XK8H}of`rx`wY;UauPqm~$~ zr?e(sUH|WG#^*jf0kxun>E>(@t!|-YX+Lb3#7F^yT(t^clc&7 ztWgAL<%3s~TxAN2IbH!R8j342B$6*8ana1m#&&=~{R>pVA%NI!kHm0){KtqYO2CK2 z;{DsJQ^x;rDNQ5Dg)YjDS9^A2r@0OL>HfRUlR`q_Pyf8yy|i6vRup$XJUsjp6s~z$}!biWmyZeX0niC*WCMloIL~}4UDKD0k+S@UpnF9fe^byd@Z9N_y@HDnt z05jT~o14=^zpE|P>wF%(7sz5|=0vMQ;@3C2pkU|-5h@0hV-Hmu4)_18sybN$O5Fs| z4O??_b4;%8?%hrY^KO9Jv@fLc*`{b~Xy^d6qViUu6}lk_gcXDyM-h>d7KwZsr5c}~ zpVz{~42Q3{1nu%f+L}xE;ey=h=wpBLn+VkDq?vE34WIX!&~S0}3-j}dMd?|XnH$Ri zt+4?qss5?XFF9G$+RpCCh>k9|PCAZ$=wY|4b+l2MRO)1>u#l;{FOGp7aMV=5WyNa& zF&K`W1R7>Jl9Z2_mh?saeSIA7dsZ4R$kTo)iMPuzqvc=7Uq zZ9qQy`#1VKwAY=)akt8=2vo?_XHjrY;#F^u8~a6tg=&Dm#6*Nz;2@#Q?^YT2!G_ld z((&59yBPLKS3JSjS1{~;LmZcpnQ04(R8fxs2N2;{2i$!0={>-4NJ!9%A^tj5qP>{l zB-a2uo&xu-b|@S{wDmaaR+(E`PR@yikx`)Bezltn2p$tk%1jzSIh!F^1Z*YtnAnI2 zo?mmU^9LyTN}q>&^R?;JwYqjV_4mpcyo;mrp{d`$?Ez&j^=XYcra#n@C`40Y7(6#! zh(R-OQa0h@A1e|PruG4Wh~XB3k(0lE z!_DnW~RM z35nPk=qCcg47chLpt6MD%E}(nU$&|s!?z@WpA^;9)WkYns>|j0`7?bf-N3};3c;*g-~2y8ZjA}@cLjfR|6o2?ASOs-o7v`LQ>L3 z)>p5_@|zQgFw%H-y^EGR$N~GlA>+3*IKSBcGXx&YKTIMP4R9DfrL(teDNPo51#}@H zw4LYv8r5&9pje3#>3vWIF_Yvr-jkB1;!{MKRkA`mF$TxDcZN;sBQ6*>}w<3wZxyP${PPadum*udi!AzMP1)rm^=*a0ER)Nt6H--SCKrDszdnDnBID12|gq zdu3&h49B@4cib{Nbeh?9O}^K-Tc?a>Ye zWL5TpMfA%S$+q|gb&%6e8VSM@4>U3Py12Ob_MKeAmoGSdXjcKBaF$N5I@9&GWofPd zJ<|&OButJRO~r`lGwfy(Mzy`YT?lxU7_jHa)wH!S-`xK*vitaPxo?_5A?I519Wzr= zfqmlDzxd9KH;V^4O87NZRcknuB29Uq4Ay3dcojCA4y6o(0LqCt<>cb3TtLhEcj+h3 zEedMK3A1`>PKic&cIDTvsz-mDJr-Wj&X_*xKJ;P@sb8%m7As1Pp^$zy>pU^QN``IhQFhufm+& z#$YlxfW>g&f%X8iF2UX1eUgAdq4;l&bt--0fQf8F|NiC#O{TIh-Rnd-JX$U;M^7O9 z3`9jmQN_hOn1B}k57b7X_KuEbMY7j()h;6$Grgm*jAqZ!dL0}2GQH*`P`R+=<%e$Z zUc99R2I-H~$VmCzm>4{J$*Vh~CBQ)h&+?lm?!#eYKSGh7F^aaTpcy#3LCA4-e;R1zFPq_(t3KIG3ij zwzkhzw&Yt$LPCswCME+@8$BM&sbXzLM#c?1JiKdg5gW;C_cIl8a&mmz6BxC`FdL;c z*lt!fk!|0=(o&lcm`G%NHe{8>#Syv1#Vo-7HUab_;f?pL1}g^#N2yWImpq^u8F;3D z0Vz6GtXUaMF5s}X2VC9V!Y$xz)~;-3`l!*^)6v!d$uBrLF_EL!>g}bDBnF6Shl`_Q z(LmTMqwa_|0RaI$a%ud>v%pEIZlMzE{33Y!w1suOVS-={+-=b?V!-`uOHAoHI;|e| z?3s%Xzyu}`vF^a*-RtwZaVT5cD7<&Oa=<2_4oV&#t}YA?762w2H{fgZl$eJeuC6m5 zBc97gzVrn3pv8PVuO46hAE2snG(yfEGJ!nY-0{Z)?5!#>flfC7Mals|o(4d@Q&3cd zIg;_3G{3mG$#-P4%vOqUf}h^2BN)3+{6CzMBH0;!dmSJ+7stnyKPW1eUCfjliP4tc zfm=%h&yLnA@mRmrkO%E&G2k8ay@0cCnwps0MaRY(@|%z4@M~-TF*r$IX%E80jEjv$ z1cCj}0ETqmZc9~Gh>fZGLg{;CI`aDt)SeQj26A}zQ0HX;& zQ_B7jVD&<85&qR5ut5gDprF=#lbd5AQ0gq%>Dk%YVZd&w(rfY5_78aIxIeB^J;WUv23*Qpf0n;|$?72CuuYh1@vgMp@D&cnpam>)S&q?No;g-=g0Z+-_cx#c<}rOWo1%bUEMoJ(4>q2GN}lt znnxh&?hGa9TdpIbR*~CigVy#ch!D~~4Ii|)pZEU(_IrL#j>PhhOz(!Rjg1R=J3G6% z7O$IP0K~Evhl^#{5F#F<3b0~RF1CKZppkQyS5!P40v@Ii11&ATLWZyah{6y880_a^ zs%?w?i)mR|Sw0~Ffjf=Ijz&bpnf>R_Uw%(a41#6(LdDven(M%4-C|^7!oVTp|5*ca za3JOMHnWl)CAxjE5FdhIA0KA{q*;LrfoC3DeR;T;X-~@}qupk}L7tu#=IQ12j4OGN zeC--ELSHB;Dba%vj+s|2fH(-KB}As0t%*TLS_dgYy1j}dFj}JBe1C863>ndnraLJ! zHugjYi`v9_dn~tFlqw&5mIo{S%P!Y1K3FlTtTY73)I!cK3k`|CuddR#)JvlWHwgj$ zC<5cCE~d*6kI&WhXz3R(DJiLgo<=xK<_cASV~U34$#A;t($~ZnHI=8CSSYI)@O&F9 zWl|y&E^~_qqQ7N@1+zvZQ`F&F67*;EvB5ufq1ClF2;-%bVW$dEw#C&dyp!{|E$}n1)^XZRRIl zQVDL0-CuoEPX;UUC38}!>i$lLuJ!N0PgG*$A1$_iVDRNdr>0s?{7|HvdhE)A;}a~G zSQ4+^L!u`icyeyHQ6UDkQk_sEL&LdfB=+#W&ZH5u!QHJ?X98N8crCi3A@tiXYQK{H5DUPu!~D2X(Yx~68b>;0`;5RjZE z05XK4C)j(43HYL(1O)}D0RhwpDz_|Wcc8%y=*^B_fJRv!JPQ^{CU9~L+CJ48B5v7P z!v;T_LE}ZtgCI^5bY^LbFDbE+qEmu$Y(mHpsp#g6^FBhc2&OEEN%LuveJPLPX2~5_ z;~DbN`3>(OP$oDD2??$Fg@p%%F#)s&7p~W5+esi{x9#}T_ySOIMP@+jZybb=Py&nQ z*af(N9GJ)+cD>QmyC7(E0K0v?4~S`rlXkU|&L^7#Yf>2OI7*$%_t*Q(t9fLE3GR0x zIl1hUG)f8XRR@FxA{#o-5nR3GMmf6Y(6ZnW_LLBD*XAkD;X)%{@5snVaYaR}WV;nA z4w+U%{1`}pYcM20|2vRRfJ|W-@Q2{rvvEad$_p#tXa&IGEk^iU98e$fA_hWq zis!4vHQjKjN#=z70|_6MhrbWMgLma???I~?2NjpXN>@pV=FyxMCnWqj2ek0#29L|q z8o*XT0y)nj`h6?O%%m)8YSK|vSFim9Y~`2K)LBfAUVlrAcWG#7sF$c{+hU!__ghP3 zQJias-;cY2eodK1XW0<}V>duZu=jw3?J0W_$dn`zHXCOBaN~6$pWWrX$@Fyd$Chknu z8-zh6e*xra&h;QQ@=;&*S6W=~XllK6DorD?rH{EB)_Ug;TOUNK>*_Q-`eNyLLGOzR z2?eV+6V$g=Fr=|i586HdKtIU>xGJc}$H$l#rly5wOAetyh3^7#F_0qg=?ZsQm}&oQ zxhZ^M)l!m%;Yoi+6h$a}Q1!9xAdX|9>H?040+^*B0sUlSNhx@2S0uSm0zX!bE!8m4 zCYX70$rY15J^y*08c@7;uky#`2zdgddqsCjvWSeN5hvkHD?)})MVyE$ji;vfSj{CQ z@K+cuL!mrgG?eb7y0~aWp%%b+uVs{#l^@mz61RbJqN6C^|DK&4;U-K0JU$<ddzIG1pq6VYgk4=(sg)S2K-X-`1112e+W|TyhC|fg`MXp34v6y4hn7)U=LVCxw@oe zmjp0h%7YWtDMP|{k#}}H6w?JwKpu{M`DNe>oOf2~!BODOYXLj5KTG^S5n%K?{%v*;;@0{Fk|G(WuSKynK!(k%i78Ee03v(>AK7T{ z3Jk0in46osgIBDa%4<5PSpqad!u^Hz&fHMyBt8Lwe9O&2V?St>GTwqA2RZN(W4)r^ z07o1Z@U}^BZ*N`jxW8Us9{SKyQMIX_^}p3wPNeo#Ug>2+nUQcXqV^S7iAW6Q1X>!{ zv_Or#2DIOnP2=a1o|u?lU;c;h{hpqlEBfg|eD5keV#cBL}=!nexjMLw}X4NI!uI>2T^F^+C> z7<`1Yn`|XAH9r0fG*_=zUVB^^I6FHBfB(L^8%n^iA|Fol{2@7^dkqs=E|#Yp1bI&B zx3H+FCUszUwP)ZuBiF#F7|sqX zvpl;!jUONW!x=I~bm~0c_PWJulQ#cToN&>!ViA*2gOf}x^?#jdfO}J*wvsTvd`Sgv zZ)IQra|gE7J~cJFy|5FaO=k$jAY+uxD%V#6DHJaC z6@|JzIw^_&TXFH8=ll2Xy@3z&?!}822ZgFd-j#qxNEM0#+eZ*=buioL!v1G!>hlPA z@tcNF?0n?Yc540E(ADM3F{R8ES^RH|mkG|SG|tG>sZ-G`HUkN)bYwX1%z@WH2yDig z4#RSP=~s1ITU)jRU?d8>b;S@CRpk$$$*Yx~8nmIMF`@D_pH-2vL+$*wcJFu!<oIE&xYTR{|~ z+2Jgupstbj9J*DzF+VCL`acEpCdr5kLs}Edg z;SWO)^ttzx1JC&m)ZmOmK)h;0$Y>o`PVzJg?V5{(1>&OFcd9}|eT#ux%78XI0w(bq zzkv3`81V%g$DM;hHIrLoirsef%OjzsCaQ95?aU8n8fp0RjG&Q3{$F@bhq^W!1;wxdl89i

    cqe zc3-D)77E!s*k-5ZB5uQmOr>a?M-w%oXb%{Nv?O*w(9zQ(h|?g>(1c>&Po!n9Ij+eW z-WIf+xay`i)el`d z#Eg@ZW|ST-3V!o{eBA^C6#CK=4_Mn_JoQ7AFE=o%9~lknFDyBo^-OBtukp0!Xj0#a zVx;{;c)!yn`StPPD=FWFr-f_LaOTQC&SYpsKmVtVY?niav76{hk0q)TeD>ZeVSs4S zID-n@XMQEuS7ZqlFB;RI`xO!rVv^#zAI+!=@>(#kfNznZPM)sv0_eB*Nu;mNqtk3p zGaYYp(tPf8E-xl}fJQ?T%4#o<=XK6ziSfQF%9DmF5g9K=LVOKd7={piG6Kf2?@7KOlbBn33U$8lEm4tpi5Q6o#;>#d5d1^=ka>`l{onh0 zilT5p;9KuoB!oh-zj$a^qC;)*w62 zDN@t^nJz#vZ@)JLYitk|DrSQ4b3z+shT7zjWx5+a_;VYH7d)?fZqO&CE)#8PL(7B2 zN5H{&sDMt>jiSW$llYtTHtcaK83*Y-*UzLG>2VG) zl?N$^p`Rr42B-MFA&6$RB9Vz6siOw#p8v92=soC#_jgu$=cI zrW6iGd+#rWrXg5jMFp0V-bkraQ$Oy9%#yCg`?x&PE2k(L2KK>6Oi*AZ1He<^(a!V1|I{Qm<;T2eux6mH=EKllWoLI3~& literal 0 HcmV?d00001 diff --git a/test/rendering/ol/style/expected/text-linestring-left-nice-rotated.png b/test/rendering/ol/style/expected/text-linestring-left-nice-rotated.png new file mode 100644 index 0000000000000000000000000000000000000000..9c989919cc55cec26ee3227c4d73f3f9b9c5d7c4 GIT binary patch literal 12373 zcmeHu1yfY-`}d(c1wmRs1nFK$K|qiO1(6O3X=!PYZs`_~66uDeyQI6jyZe8CXPy`E zynx@%EFKwT?{lvD#AT3@!aE#HGE4}9aAc$EAxVAF)(|!7H;eGqYyJzXtkBz@j#XQlK{HMDSAa9L$@pVJXpke{ps$!3<$MJfA6EUp z5&VD%(Zwjj`agt0g#SCt|DMeM%b7?1{&rg}YUm9rlmJ242oM?MwMpt9d(VGxnSLcl z(PaWbH;9k`0_21Mp^*Ax5T%E$!Yba8Kr}wZbl!I_^PX&RuVp6SK}SzQI<$9ocJPo9 zy|vBF&2>Nhl9Q8TQ_de-OOw{iXycH(P~=#K6|u6{>_A=&*ljRjOkPT8$y&E9W~t;`N4|LoXZ-%Ch-^c_zjo~0 z6%rh*m93I*(H;3bA~`wv*}Dj;O1kKtpIcj7vH}7E%EFi_Bv3OEbR?(4Ec*CH2o>@| zhu(O>)dCJh5um@ZSStb$jrOb9w9R8@9*VAH4VDQ5sF@n_3W6X{$O{>2j%iZ!(VzNA z(Zz}YeTEu=dT6nOCnLw(D34<>3{F-?PX3(sBt(QXt8r8hNcU- zoYZ-Hi}8TZ5=Vg4gs6(k3k$;rjkr$j?d`cZu$gzB)6CY@)wK&c9sH=MsQ3`@;|Hk{ zV@$#8*RR`(bs9dGnGR>Ru(7de`1$#9M^Fl?Jr3|Mno3GYg#LV=jrG;sJU|ET9CfoX zK>n5?nyIq1bQzmk}n|EtuX=uLZLK`r#jigi^EkIF3J)*G~~<6EB2s1DlWKWt)EWA$<^23S3EUKmt&L5j zzrX+Y(`&c)3JU)y!9OW4)@@2_biZ}%4I}4I=`s3N4UQ}8?Ch-h=FOYb#Kh@u&YsTH z6kV17(u4(8*S zxa)fIQb7*>{d}i0>s>_B#Q3yEFlZ=av|^G4T8D^Y<|h0~)W zd@2#QPj(Z3H4Lz@LN@%cNCf^A6v#$U2`9bF9hKE>@}NAsyS5WHG&E%JZTXc7v-NS> zpW$s78XA(KkMskr?qLLy3fwft+^BXUl0Zv4V9Y=j#OJOTG2&G z3z!TfolkXjy+rRi7JcPioUMl^&$-DG5BT(4p=C1|6JT7O{7B_t#u z@sL@@t_U8^Ru9TE66pwg+|}sl>HUInaj6KnURbcQ#mn+>a70oF*rO+ldN$USmMYV+ zvhGVeIbEJ&k+4ZD)Y!JwDW;21ZftD0XlrY`zhY*-RmuM#^WnpoEO?FFU7w~d-7mXy zU?UwLA3Lx-Ent2Ayk&T9E~Uv~cj9MoFy{Td=h2R?-Lk5xszz0F70&l}c3P_~XD1F;R}Gn; zhLDK5-`MX>mz&`HmkFRuGZBzbkKEkdXVLJe+@x8ak{4@MTS>{t1nJAk^+zu)Es>mV z4h9$)c6M|K508#=>%yHmwN+JBEk}OKFoSx-{O|%uSf80iL{z3LC~#tEc~FZuFfhfEDX=d*(g9l!$mHc zw(u=(dZJNQqDo7T&tqa@T==c#IMO)uTSL0LyUTFM`P?$_u~QWek+9Aq zpTEs}czC#2?F@6Bo|vbe(g_rXO00cbT&hg77(-z)Uy>l{KuNZ6@_9rvd234?xL%sVZ{;!=ya zDTDU<Ha5xg0JuxT9f{ z4iS=)c7ujoFZU`oDU6hJr8+Jyj^4rHJRNj_WmL_E*LE9oZvixW<1DlwGR6Am&mV)% z_I4i7KC2QXXq7=WsB(R|`>l)a+x+Y6YYwSP7GcJ5kurQ+!k|M@P$T=#uhqtNFTF4GoQZVjo)vhjkNU?ZOMeGr=DVuu=p`$7rS=C7=n3eg2%378WKyIa6ug_qVX{6m+~M%~AstUxnP!)s>YZ zI&XXlnv#qDo*tR0TDx4~@Kw^-_u1V>T%jEX4kM;KN}8Io+`PP&vI+`Cx95|(=l{}0 zi$|xY^Ud`2ThvumR|R1(Q;tNrU|-+2^;ubl8(>Ve>gg`Dv}DjRF)^`=iY{7$GsOV*RKZO=lRP0Iq0YabN>`q0Icrsz4!45@**7SkmII;0ND<@a z;J|nN{{2D3erqTTG=BN1CQnaMc6N3JH#fITKfew>w)py2tgMzYIyz|!)r%gQ<`x!O z^`O^#{rjgNBp^^XJwE=C`{m1knB?RFV`F3g+?<@W|CrGmWW*LPK+PIJTk_-9m|AM_ ztyM45N<7@!LZ_vpQ_uPRyGA;D#0sXw&dS>0v_0~o3EX1u+4kr)0Rch(qUYniJorq8 z6ckK!^r^Y|dCGEw4orT4Ac`mj9aEaX3|~Auvv+cJy`8wax;g{TO2qx)?z%21iHro( z&u7%Mf=yPoFW~9Zr)HqRh@zP|i%LA+oST=^y$inz>{w9%vHxaixi0`g!a_n6MTU3V z-y9v)$ORoOq~E;@P;_#tE|sR|;^E+M1`~D!;D=Cd4gt-0;2aUF)`6RI3y(1hLrYKG5b?=WP9&7UemL)vY@o$u5}5}alLRM zsB^pdwNnR@NB|xh=_?xD+vJ^wVTJn)^OH6i~^Sz)Jji( zf4?oL7m6rpdloLPlU-1y97}If#WN_F+1SEs+;6KAL81pLRMd% zv~+ObUEdf;#`+IPVbvSm+}vorecN^`DJe++-c?_|eCe5kcVHP>6GZhTT&#J6&C%_aJ5OViv8&gYnMIIt!ESo$+|Y|=FZ92}4OM2*}~ zxu?Swm42Z)IdPvwMU5MZiu@5$|CNe-uPCwYA*@!Rs8-J%t`JX3O0%aHWwRI`<=$UA zPUv553#(+)RYPLeX+9a#to1ecN+Q1BI? zU{6C{Twh^E2qb{rlZ;wUeX%Wj#C{T$P3fOO_2$;`L=uDaV!3g`ikTFjk}JORnc~yauy7v zRu71$=!rAj_Sv&%nH=NsyfLmA%QI(rcou_(PP%=Ja1p0qIVW5eq8fwGFP+R)80R(ZnA+)8v;=~r;!mL zq4icK6etFQ79L&%o7QL@YysNX9vX_RUZeDsfFO#`?dpgqQLc)XpWn$!QWC`w5aPie zqZ4UeU0pU@W@%N`MJsuE-I38;4jrr$?zq~zxcJ=P2^|kdzDxkI$5p!D-j~gM9{91g z=5a#2V+aV~<;ls38X!!XynK8kORyh3M!^km_-74e_gh2cL0D^1A-$y z+t(*6V7JlldV8^N*JQUD9tRql1?UU>)S@1HE;napVI?Ic7h=As!V2>8IL_xg#FDbI z1z3(@dY2I`deX*&Y4=kzGv5_8G^Ts|;@LG@TdJh#f0~(^HakS^XxBSFW1cWaL_*pO zlE{=veD*AQN2iJ5_2u^H%FeQWQi+G~Kqp8CPFsUxQ8M49!xcNC`NA~q!i75R;7PrG zTyu}9u~u8D!Q;-Z2ldc*dW+HXS%NR_wfvT$sXj^^q_JOZ%eqrDce|2po2R*t$6eGm zmD8;Y3yoC(f^&n$LDyONq+TN}Buk@88+Yf2rI8fNIhC ziEoqfm?{azO0-gmes6bfGahX^x!h#!D6y+pTZ<1aI=gQR=z3xDWg8MmEpy(Gn_ezA z>A7TPmid5*!jj5|6Z7$-cXD>No|qDTk(G5sv5d^~(gZoT$(?a6O-jlGZ_x*io~!Mb z!G&S+PCI+kP1INW{F8kyF8=lc+QwhM&aCh5&T<*|lad-6AgJG|7k>VDu(x+-zde#| z2*_fcEk%GqG#NR$@1H-f$_fh1Hy0XQJ)N2H@8)yj2U)i`gjt5HZ=I+^`5#8em=?Mg zaLR}-f6V8kt%gP17n4RbH`31SWo{|7l=cVA=Pz`=NGBS3DPc$TFY~PAkbPc$Z@&5X zanG-5w*9Q?8=+29qv>dIQ}`{bsIK{U=Ni4UzIZ1&r@fk&8ub_Ta#7NUpTrQZW){<_ z50;J!zI^@KdYY2bK40$?FxTjwtdKQar>}3ql{f~-ioKnkT|59pEro@JJMWwh*(T|u z^HoXM{Z+g56y1b2zlnKo^c1L%`=a8ulWgy-Xv6;XeN@fbZ*Y#_Z=^4=v9T(!20_D_3PB3CNfK0X zf5ikSuCl7=P{b`k*L9`6EWa;4nS+P-xc_6pm1wH4>| z*Mo(Iol5J4$Poj>SzRalyzDPV9QKKF+h;w|wQd14=c+7cFH1sD zaz{c%tADkfkwTBAPx?h!KVAuTdBRY)EwxSrA;{5JpII6E(Ex($cI@xFc1vcVBdPay zpYw5}z2tfr%^O|a#|XeBU-I+u82});9}a{X;`xSx z+p;1B!-=WV6&ikiWi2WHgVP*_5_Y~g6Eg$aq@OAM2G!Nk)y2BHp1FVJcGnWQWAaCH zf-*P%Q4WoaWGZWDxUh(bG&XsAdoyx#KVjQ&pUg_;{Q??{44~f|C44WVduUi#DSjFairPDor8U!^uVAJ0Oqlj7~#_UKq3#*^lliHSeB zREoQS{{CMSJVd@sHGAs``wruxWZvtNnK#cgR;yuDp&kiKR&Qr%v+T`>j*B)PIdNMd zt!uxszSf1|J?e0rl%nr7x=*~IK0Qn6JigjA!D<4%mNi_2?(_YO+a)2TzZ&Mi$%hqTI# z!|==byXWbLX)aeBeKWo9%V-5| z7}Z%Cl@=G$N)5Yk4S_x^CN3^6|MlyiFCRa~9>85rt-$DaOY`%SOf*O$XM5G^kOU4h zRIF7iu2Z6iU=3KS2r)6S2mo8Rm;19OTmU(QxBFo=sei>jaV)u*bO=)n<6d&L;aEuK zUSxYXOX$4+K!SC$%S2N%i|uGe#Qh<7d!c%;)G1SSr**MX$ObzTADbeixrmek&P-(! zd9j!f>pSOa9!A6OeBN0o$+?>q17`sqjS65xo3n+w2ki-a1mhC`)e>2ERo%M|kF1_ZJ|M<`o zDk_~yx9bxzC5{5Mzj;bo!xrkr8d(`RIjA`SKPpU5oHKQG;T+7xMGO%*7%i*R!e2Yt zbbdqmL^sqr@Hjs#8Bu-G)w})K59)$~W*=-gA_iA`aJ8C>Mw^YJX?=ZX>1^O98I2x` zXSyE41(v2XEz`{IPqBntA1F-o^Ou*!#6}4C_$ZHa6}i*LCsm)&(WappnNVj;jEz-k z)e@3(dNv~Mp#ruwmL}v7>;X!$jnlA`2WSD-*Y~%V?(Dja6t<@u@~O?u%@Z{>HO^B$ za#2pDBD|>H^G~w7o}DDgZnxfW2CNu@;=EkZ!x&69Gn&p}&Ga&&YY`A=!< z?C#Ffq>X}|It%3&m)rGiN53?ic5xAi(sh54GE`k`dN^NS7atPB1X_VZ#L)@ii&Vkf zhpnC`a#Q0dXk#O4xB)8%JFkMn!r7{Y?TpzRPK|4D;)}PKY+xxius*dx=IwRYR$=yWVSBq;CMgM3ab*>aeWCR2Y+w(vnX>Zyw4~%(dXW~wjetOn zY?H@4SANB4MWzJfRsgbp{aV54>0eH1j@UTk(-k7?d!%B zj|TZjcvHaAa@+Rq#o^(?(h zNE8JT&jX6-**+{}7uVA?UOuiOt$HZ}X?nfKI)|_hVq&secC8_@o!vfdn8S{5s>#0^ ztp<-&-Y>l|>d_4HGd;^TDL}|485$e=ol{VNg?6RF&R+bDoIKgc-TmH`)W1b?^^zof z)yAJdP1@#?F0{()__K{l7aBYy$N3kG6Q%1|jFOU4S&MBlO^%`bx5_p^wdWzgSctFD zvT7YKQ1|r{&ydp7TN0zA%L)T1*fD}ybRin3a)kv2vxxvfw3%6s4^CANJ{pT5Ao-t> zZ|$y%dqYY+Mn{%5Hm+A$@2X>W4DPiNZggF!!>iZkUv-?Z-Cgtya;j7Or_-2)9qmHEMN64RsoCiu}jq8) z;|>sBx8)k-H24Y7My{?uTUl9UFE1|_pudP*z&u|J+z1xRE1J~!<0-(fl^t?9LH(FL z=ssKLU^RWRewdTf$G<=G#jM%Lu_*oZX{G9?Pe@iKoA>lgL4@Tdcwyq%y&lqXZu-^+ zKb7c+q#jTD*d2wa6oK&i{P^_L9N0tBOUKRvq7PTA8+UhZqh_Ny!njyi%yTuitInk8 zq?DA}Lf_W9j~PV_AP67-zg+-71_p+swW!N@U=qGgAKVo7e4tQ+JTcYw7MnbExf1u- zqI+N}`4vFZOo;4RE7m)dVu)VvGvXqMeV_U!ca(C={^qs3{J;ztjZxUBZGIgFLAs4@ ziEnA6-oKZX)n}Fijm9`GKE9gC>Ys6WnC9ot;a%l7GWbFIK}NCra>E+iu2A+U^c!k_6~iEnWs$|sAGdYsQDZ@tU#m{%W+1g(yU z@HHP=3XnCTYUWfgsv7IJxHp(Y%sb`h3uqH!OeOvtS)sy*A_kcX-A?FV0--m#!vF)Q z(RNLMz&u&f$KguEK9Jxc!1Qwfn&lTDQhan1@!V6gnN6pZ~_(mqpGT16C8fWibc_NYiwl1(lv{f2&QRC(PHB zmEElc&Oj%?@!Y`kTK|uGtOMthu&u;^qAULP=H?(x#QkQarUvE&w7h@d=hC@&cv5)v znjyPHxtxI28V)+T)np*I#ZDIMPGaETxbp!v>IYoON%fod+lEki5td&K#6~dHiCvah zH(KO{V^!~8Hnc0M$F`o^aZH_jn5sI!8T?OAe``Y#-_h9_r>UVK??0;xXoP1YIFTN> zP&P7JQw9n#F{yt836BK=BN3)74gT0uVq%n35%=$gYHD#|z{Z#hzRi_a1y0_BM@KMm z5zyzkf!17M#Pv)`T^&s&pQyU5>=p3TKGm2{vQ4!%a~=o6;qc!nDHM~vz3+RcN)7cT zj+22?bS0gw!a_syD<8-u>%bhR`kS5IQCU`&NkT+q3Y5XNhVxW;dHEQSV!K186^@`Y zuAc&t3T`o7ri|zf4Vm&#_+Ns25C)xkrM+E(gcLVAF3!<@GzW0OogG?oa`Jh-ic&!9 z%+=N7JAmf7JS@%&{IoDh#A`G}fo=z^A_t1~M}VrKqXBSkSq+G{4F>VcYdz7P^Off6dH@;@2NKZz`OnAr^Xu1} z?>l2mi#Ipl)ug4ndu&%bSsiR_Oq*@z&VYU=`=9yyRDlqiO6XIsLFtVCF7p2A$;rya z?xbR5YO1BFq2Z_ua9eS3aLSlebKuxGIO{^75iFK{2>}4FQU;`M_Hfoa@_$LZSh#!3 z-Z-sbl(_=a!;XcK(HW_UI`nO_u=R8&;#04V?N>FKE|=_>;+Ve)@Yp*p%T zz&JqA(g+7m{Z|llLo`&>*3*iy=$}8E3pJ~6kkQbZQh3cL-amN~&5h5LK8V*lIQVG0 zJ5e|Rh<{jzK~K8@Ct&*6pfVQ~R=>eg4%i#7#6N%h_~N6w`XNx^>-bHFep#@^-wpr? zcpum{e{rWL?g4znTeOF%eM(I>wqOyxH?$vdfmDism(NH7)|kbAiab8xj(N zMg_C+ib+g#fjxh&ucxV*d{gJJyJN&Pedpuj;|F|g^1bbC4UoN>o**OIK*GM>+TNDw zjG$)k?d=`;feLePszvx8bCGe0;m?0 ztB_iTi;iv@3XGi5$;m}F>VO&%mlLC|a7sZfaO3vRuu+eWj+P?Gc!S}#t5QjCXlTfv zJ!|n@&I4U@+1|;?JOcPilU@i&guJ}Gs#O-#T=|)qKD?mIe@6B7c7MFTbO*Y%3y}EL zfqNMjERl%;K$9Ku?Z*7v+|q%JCGe`YGbKZIKs2Y<*Vi2Zl zeo&vC+FDvL8-a7c(&=Bt_5#H&Qw>l)4239T6O%^-b7x5jYZVnjBJ|35F3mbc-Bh2o8wp0zL^zJRr}t%53=Ve8~-Wy|K*7z~VG9GdK5*jKr@ok%Sbr zT`u+#{cCGoxchN2i0K;Vl01jeEeETMMZ^_gv2BtIMt<& z`!f`Hcz9r~;;r|i7WvXL%8^z994=%?(Io>mRt`w_#)gLpDyyqyL9XB|VY~!W;kElp zdypRxzG43QM%LEWdX|=~*`wQtK@zR!mzVs~a&pKZ2xE8=G{Uwk5-zs3oI)7GKH?e8 z<&{a&^eXjlXl%gVjfLNQk$#)MWh=*CpcV}gRm3J(7O->t&rBl1M4>uGY8yKR8pM5h zdAS3K;mqjBNL`UuZR-N?04W37hJnVhg5@VJPx=;QVlVmYZ$>U+V%`H_$>j!{l;fA> zIjA|H6LJyrwGAZzpf?GuU=1L*kUBow2L6gH7$}$k-?Hn}*~=`Bja86SO%3HLQu9bZ z&b6LfOBchacYu4wSMq{XzENWLmEt9pg~6uVXyN?$;9ltE1#Me5-7|oYD+j!b1luYO{YkuiSg0%qGnKogK|vTW z+ZE(};J#I*rlx*PN=j;;no1A_93TKl<;_5Uw#RN;2zXqASVJB7{@)^qgrwwjpaiW2 zkZA{w+RuUgclKXmGlg{g{F9&Gq9!%l-HncGBxv{T+fshO*V59`kHAdyI6oZ}t+%b! zssy04frFFtTAK!6&dS<)vwV6_fR(in73^TRy1TnyA@PbDkY3mg7Kg9Gux+%Fpeq%s z7|hFyzYt{9)8?nQ^!4{0&&{F!WD(##Y&3sbtO%f`-$EC-MfJ@##8=#yOr-wW(LF}4 zpjkHkEiP84hS}&f0Bp8-WK#A4#yijh9p1hbsssY#8Eii}iR1dB*WV5f}CbEE&+J^&fX ziOI=*deXJ&>AJVT+R+P5{-KcD_U()eQo&hdaf;l=m)`R&Ss z-8bP>g-L(a3;@#((9dEY&&WbeeCJZ5GUiOBw z<(D)?SBBowQ?wdtj015$f(0tb3m<~q@Pdi`o8Lq=pXUmb`mfV@yFESdR5XB@&V$`0 zIPj_Go!7dfaH683%-nA;=AXyD&mEtfWCw&W12ogNk7wz6O}Y#F&t8#07AShGDXe(- zccKmZS9T2ycy2K*jEEqF*_Z4x>_nJdVAF|52RxRV+FBWq$>p5bnqWioZa4)67@!22 zNDz$qu&y~tedhG??%@Tah#4v&IstqxBn;e75wg$;#>MiozN->Cnk|JoMe^9(>7*`3 zFou*`R!AV&vka)`T^4aC^;h<7A97^^CVi$r`LmB#Z*<%LEPK7HUageR(8LNt~AO pzr##M{qHdUdout3IdkP1vQH=QqDU0&p!Liw~s2ag!mNr000om%Sow$=fVFRxR1g2DxKa@bTl*<1{QKnEYdfgzA9jh2#jE~Vuse<&T?^KfAUdQ?+lb)EX~;2 zzEe9(OtJXa2FgY1;MsfbLn=L^^qVpWzd&tRTKwO`C!<`WqxZQnlAI^ybAtZw-NuC` z-cC5`yNq8~-HG{BHKD!&G;#o*NCNPI|3Bvp0RNFJ4v8l|#xvZfMD&4}z1)G1TL1a^ zZwRG8BMBbHvj{oN7<=c}ftVYA2&<$d0PI(Z;)PkOxZlNFog~>3h{eA~&`<6$3Scr5 z+pkV4&_DV}_X>}iEe8LY=+kXNW0mg(t3+_ww*p#NWHj{;g#Wmu> zo5{lib+op+3S|mez1#Gh`g^1z?uwb8d?`Q?zk0)mT5tB;>G)8;O8c zAdn1j#-Ix)mUy_bz850%?&?gO|S9f6&gLa zyt0DgC9qUCGBTojDYa0doaGxT!M$TmF3p0(0g%8?0Km2|;r^!_<9npvc;3eB%y|Bk z)$(eG$C0s;k`gBY0l^Hk%STm6Sa{-5;GC|mZudgXXYCg;GC!)TwGI~R`d>0L4{~`N zuAWutHAOOntZw<-J^M)pWCMYGz@pDgRI%TIt$S?=VEPA|WmJ4%i}`U3MKO7gBBirw zTGp)6qV+_rdEBwHv)ht$8u`LtupS&z6)!Ke$7g@EIeF5MhOpbdMow0iep;!YtE6Oq z0r(;=oU&SKcSG1J6xWy3*PnWYN_?oQtn_~rsEYSev*+RTe(|%KLNUMk&~T0CY{?z7jHS{21m zD3tj5^I~c)P-%NF4mrq%_*L?2rr|Y;;$$ocI>W*BVJAiiGc!7&N z9cHUB1JB_k5;lScyQa#_#qPjQBWIV$JzOAvN2BfqkchFKw7R-_DU?%vzuaUyx3siG zwmA@|?Evju+UyG@Xy)eTzBcI(o0F23mOni^qZWDpek9w@ZYD}m5oc#-mn}OdXCnrW zbnitHiz<)*ZNG(w?~T~Ik6Di^zQsK}6F*H~+O_V3TpMnahGg`sSpssef#<%}$`Q>{ zr8A)ht&T74rwXL0si>)KwW|$uw~@#kE1nFEva&MC-HAL{FBEFj;Cb>_@x9MwwiVZl zFVQlal=z`Rgi4RQh=D}F*iu<}tQpLwr`11xe59wRH*j=v;tmN5yPQE>B=(0B<+(XI zc}-=v#{hv9A@Mf{)i9nGfv8C=K;xLX`1n!a*PU~_w?OUkUe)#W^*m#eb)H22kI~W5 zgS3Q%jqI!}HuZ|R%-UM6H3H7gNk{lJ1H9Ys#vnz3LB#iJQl@k!A(Vg|s-&vwvC?Fl z<|i%=+-^24JfY<@_`$LOhrrxCYLF-WM1Mw6(4>PN|20Md&bVkQ!NjMB^GLn4nr=P7 z2LKOT!*L$Rp;lMK+ zy{XM+saMu{+1U^e)S)3_a&pqy(sFm6Qough+{~;tLt@y5fRZwcf-!MCM_6%ZENfu; zxqD1lt~0u)K(jnD`}o*Nar5sR!tc8?=_Ft1a$ z!fE{j*Vm05Jv`ZR#YIGVd|ALvSpK-kIhDw3(+VDqZy9A3tAI-q7O@wEu*Xn z#%#?9ogTU6@SciaCS^MG&&fe{+fLB*MXE3G+bK2A&wDGTD3o)sHw})Ayar=cvbeZN zOHD;3Br7AMhj10L4ekZh%AO@F6yKwF^J;XvebHl?nVB3(jLJ4|cs-7wew<=rpZP$t zn;#z^|8s#@5bJb>t9_D?=yPFUV7O#V8anXyj-I=6hyU7;6_0#r_et0W!mz_^TT?T!3=4^+JK&h7N&COzY=CS%gK z(L6Dj=lw1ES}~1dC@46X9TO81mvkxjy^oxY4J&-5h12y2nseRWZiMKvR;Qv88En^$ zt02uJU#omMm9F)^deMJ1kO_!^Ghx@-qz=DV{y2thwe(kHY+~({g5tL$}c z{r#6JCi#u)_kMfiFK`=f@0!Gh%~EYQ|E3$SZ$4+U`sBpzx7+iOwTD2!o7wew`Shxs z4{we}G+3Ye-d!yGwzjs8Wz(+K0Hc%e7zbzJaH(NH!@vMy%JsruHvsR+lQ)sk(VcS@ z+BKme@dR(SBcr19Q!_KKEzHdsGWgB$>*D417ktshN%{F7NM>7V>^sMU1BljVCnUM2{f0nZZ1?xw%1lSo>vT?zz z%Os@aXZAQ)G|3ilpy|Mnvlz?72GQWU(rot&3Z*fk5lYT{^7x(i?Yk)}-pOJ`^1ZnV za?h3Jc^oFD(u6J_2eJH_bHyoT8n@H?#$eIRlq`bAHc!3CO0SK8S&_oe7=eGty=K4q z{xu;RJKLE}b7MEe_-@zWk=lHxz&jT5i_Bbic~t6`MHj`XmDksWljK8V7nr`Y@#eAh zTQ_bNPR^cMa7j=W78bMhpI=KbupU#Xs;a_xAd9s`q$DKm2A!S>At50zBp(y0sLCmw z3wzvmj`sCohCQKCVhEWuWnm%72*n=F7F{#mT&L4TFIgteSLyX$OGoX&N0oFsOt9d8 zH?f|wrfj&{l)FaceO{_9FR$REp#gUd>eiEy#TH?)D^ES^5b2G+a`m za#LN+*jOAuQa*b$qE+?kap6C{U0uqrB_#;u)Yrs4bd|*%dsU5(Ssi&{qJMYRH#U*wtEi2iAE;3-z@-!|` zQBVl_`}Yf1hSK-=5o^SJl`e9RGIg!2q5Xq3Md73jlry+%$E!=kBr2( zgLV7mkdTs^TaIUc{ZuHE;p^uYS6Wom>3g^;_^r5@0VERMr>tP5Z=RHsl$2yEuc)x& zhb+>aU0m>S=++lq4JN#<@at zhWdhnX;n}t*cV!w?x+vt!{bi{lad;I$1?dq?NqrJh=H|tvN^zTcY_L_DOHt>qj|5S zU1OB;2nQ$Y;Nal=_wV25`*Rh;AA%o$$P@KjY;+LvI;9tMKX}oQZ|LWT=w5D}8Xg$H z!SuQ0bz}Usfhjh-0Hw=e}MyFO+i7|*|>Ftu*G(cJEH2Gs0lJ?G~d-uU@HhT5H6^K(sOjm7KjwEd0z3 zp;Ju=l6g>2o$=B4xe?vsmXf;zp81e{5UD7b;q~oZkWpdxO(mjy-wag34 zPE>Akj>G7WPlWB|&0S~d;+uN~iZEcC!*;H5S!9)}w!rU@4GWeB<9h7s* z;p-dutL=7KyliX)okDIwF{Xc#7gaLPiTC$)6f+2oQWf}UYkLGe+c+-y6kqG%?^&}v zvn3FNUoS2bD0s$t5_ z%{>QoP04dMEsX=P?u=XU4!a6b|CqCRt^bHh(7A}?&6_9u_N!K2$Ys8CQMd9sqtc`U zB_(>WHwyBAdf|wOh^&tzS85?>XMWRZ>9-cEz8hOZg2yKV3!@%;J?9*-fhV!46{rh< ziv(EJA0>tuZj}{ScV^tRUm9CKS1it4czs|A=}=3us$Y8Y5aL>1$7pSo$6KMk=vIHm zhm`U(2tSs8Wqh$@Iy2A2$B!#6C`>EpxGrvIV2~ZT=7&Q_p+QMY`*2O^(D~1IwKAxf z%T9Fm_GY1M+`OfwC3#6{X-mS8+3>*uBwlVY22ZD4TG+?i#?*4OcCp(u{B~<7iI|2= z=5=2`yuGITO9Qr2Z1kfpEybRtrl>)49!C#1Y{8fD?z>M#7P{Yiy6;PoyTMNJPU}ss3Mm7M%md>dJibXV*n=OGtb}U*4ROs)A~s zMu(G8HX{tOwp`0C3JoG;W@BTkt#7Q5cwyZBRl^eAymOi9y1^hQF>$-}P)~Y`CD{Rr))pg67J~QOEPW zPnTWT4dyt)pTnP0>r7RyfgMqgfq}uFO!YUZ-O@+PO^AlhPLcV@*OkT~{LBclVmweQ zEe@2yK|w_z&4z$AZYIzFT0Si?vB1m&9g*;QBs)8&D)#p1K@U1Q&ba317jr~NV~|s& zA@t^EuTW-+>h5yI8>j8oy-RJ$#^Fl=8^YM_VDXcf-Ew14m43@I89Dh%cxb3*czAe# z_xavbbvO|%&BgJCBs}7u*EFMG<>iJ++|@8ArY@XQ7MQGYYQY+nO5YLvfytfdSVprK zh@KG^KKssMXfKFWHdwAI%6%a0D89e74q*A9_?c&I{BopTb?E6ZkFYZb-uvD3&8{2Y z4OPBbI>f?}1Ea8>ceYFErdMTs7=+D}y8k9ypeFS>@@O>Ee0zNz012g{)oC-#7k#>| zl>@R{3Y#`m%>5v}|Nibq7bkdjc9zTOQ+7%wwOh4zyNmrf zQq&QQ6AvFBQ(Ifx8|>Quw1?xl{tU#ZEhqYgO=F!e?Y#Z05@2%y^cDd-~}D<`))~ctv;a?AT{m=IPNX zR-^3DlDs;Rbfm;&yevV%!~s`JdtRgcFaP^i7`Ky%b=SVAZoSzzenG({9ubk%clN9A z3MKNH%c`nUz_gl2gWN?Hj6+oN!S8yDR$1OU&wC>%*>1@=lv7{BtSK->0lNX}JF~Z3 zLYUEE_N~ZnrTG|LAbsxZE#%v6g5?EvM;ratGv#VWYwGq9acN?{SH#fB$ms{|9{=ku z*;pNFF{hw0{8~od#_t35<}K{|`-`tK2$k}njPGCdIUNqCkQAppkNy@B=nzNsb#>Js zeq@`=r0Fl zSP`uH+yi~j$EPU@LbEbHKHeI++|*&DuiwGP!^0C|XJpXr>(v|{E{h-%z54!!jjh7T z#RAmjaJHIGHFY($L{bWheJH2_sY$+>-G4UmIDJcLII$NzDvYZaS>k2br^dj@kt$Rt z(q(Sj;zd1u-cjO48ZMhONGjl5&wFA`DM-6;=e>Xb_7v)KlyY~q8F!hGkdOj;6R=s( zOV|Q^2Q;n!mB}Pnh%~@&^k`}G6n#*KNVo0b=jI*mNI6h_J1*YPRfPCcdMuk7sZ zhTcbUcGp^X97{)$rBK}+3U^eUoJ9WoDJ~Rnx|KKMu;zRvA_^TEhj!QPS$bGz7^vv< z8fj=qk;zD}dBefj)hWmsOB=jSpDrk<5z}dJ6w8WPTz-t;y*PsPYz(Kc@q|iXfEs18 z$yQt0)z#I;-~T><-LPF__}(6L7RWVO=eqI&?%O6hz0QPcHBWMcJ#rUpng&n@OK*{& z*tC}nd(!rBx#GYH8WMN0pry7=>wDb0)!4|po1UJ&QYaHM>~nQ&5*{7>#L?OLy3KZ> z+8NZZ4idOnqnM3Yz@lmEgs<5ATZ+g>?O;^zAt=OR zohf{8st{46R(5-fK0C1gxQjsOCue3ZbBKy|&&9u#bgiqaTLOQ5u?o66$cmco@+=1zKDp5Iy*l(F}W$TIa=$`7IoeGcmwjCp1FmE0@)iK$Jbn3j^zyvZ}qcnM3{?5 z1RS7LcWWLn!PK-gMF<3Od=wk=S>Snif>q0@Uq@oKFwm+Yq6f$ zxdihr(az2e2BNXy2_YeS2Dj;-DbQso1fg(~$Ju?=mu44-KA%xd6A~1xnnqkCIlH)6 zmT9npa9OT{yVC-4F*1d;FN>0-UYS%G%$u0{4C&~f|9#kPzU%qDM>Zs#xVLBJ=I!0S z2@>(42UuWN7Zy-9c6P`T_)KXWh|A_RFpZA>W9A@0ts4h=pte3`8s)Ce&a73{)y);) z;d}C%{9VyQFeyy=;kTH+!i26I5>iZLHay=e1A*SkO<2UY9q>*?U- z)+4Fx2seL@V1(lV78-F$sJwLg7IfJ_(3hi+_aROqy8>*@-kL1?>cYHE@wuyj<1aTvC@ zuB@yySfleo;uVvpCq|J%>9eFLG;=uXF(#$Jz-qb;HWHMosuRct^e?FC*WH@ z**6`1Em>UolH_`oUn3A8Ghl+B%pV(o^g><%Pr_v@vLSVGP1m=heWpY&xHp=3C}O6( zyY3lsR8Zd=8ym&JwKH9IYO-q5_?*TO_tA{p&3#}oCsM5IQmrif<$XX71b(}g1dJ;x zbVK3;j$#UCS33WVog;y)NMhU4iwK)t$$xqE69K#bsKAc<^6^;!omt#^y{5`M+~nxs zL52GhcWO+wQonzb*~S0NQ(jjkAIwA2!nro#=iI02rkIc^2S*yYv5$`hZh)<0xi*Pn-xoF#*U+t4LK#7zh0yD3pp> literal 0 HcmV?d00001 diff --git a/test/rendering/ol/style/expected/text-linestring-left.png b/test/rendering/ol/style/expected/text-linestring-left.png new file mode 100644 index 0000000000000000000000000000000000000000..2f420503db25ce2734a85ec3e4328b03567c2fce GIT binary patch literal 11307 zcmd^lg;$i_8|?rC3<5eJjdXV?BHi8H4I(Ywk}BQEM~5KY(lsERf;0$7r*zjn{?`2` z?z*g{BFwyV-t#`s-uv16gsUpcU_T*w0)arVP={C`Zm9CJh=2b@!9yB>=MYG~Tztol0)E~tik9Y~ z@e;}?_UcFUCN~^>gJqdx!^-x0wGYaQ)$9s#r+k5KybmRG@_i%ZEbgdrQi)>Vqy7_QRTxUd$ww8YVbMYXZ9u}JaZDmUM0xt&ZdH`;$$_hU~_k4~XdIsq+i z_?x|%N|k3YSkZsnR)Z^PX(Y;uii+mw0xcnspTFYDVRW)D3t7;vAdp__z?t;ax*l={ zNfAuzMgn7t!J2O{*&_KTXB3<|0&sUvU?3A?zSkWJqpy$$HCC@{<@Rtq}$Kt%--XXFI3A zH%HP%MBKLH=0Y)^+iF)Dvy~SYb1hVvp@>jX1?}zZgi{Fnh1uEJ@v*bBC$zQ-(meev zF-@s^j~_`DCZ>-gA4jODh;<|kiIRX=q;okL9H@!MIj{9%mz9^_bJXohEiX5@qL2N@ z^)=UFX=w=+vJ#h?I(HOdWos)xO_8I@i0JNy8X6kn#Zri9%hKXfpBh&;Gz7dA!dgk%`L$eJMSXR>OFW0k`6BBfxjT{ z(UAO>hxrytVlARL65Mehnvg(j@&2Yigb%387ExPBh^NJxJ}o&plm_f6m>HRwLf(Q| z(c-!9D8n-|$p*6Q?ClMM;VxGErx2>isudlTPv73D1>ZeVpOHgY#Ua)P?)7%6#Jyg0 zkRtj+_t2kDK2b*dt4wPgB8z&~WWyldIg3YzPa$ncqELwCOokWQ88T#b#J3?QC$M#} zprEkuxjhLk8Yd%*`4O}evQC)DsQEiiy_)-q7VnAga+|N`9=Jzjl}!FRbgJ*tBUBSP z7gAVhlu_z+C`=|gSi)veN=T+}<>UrRG6g)DSJ&3aP?5zvl$A%{x|Z&`Z(dn2fBb91u_hfy;g6+vW^n3x!bva&L^BbQ5) z-$s+`);G9Lys-aGK0iPIg9B0C&CN~p)>!tl&C~05vsGpcSAGw1S65fUeKBNf)>c-| z!^6Xf!9jUL1B0Q&p^bC!^)@*1aOhg}+4yR>>9}E=Gos@9R>d77wFm6vFoH-luOxVK`kuiHRCUT3Yxu zb#-hQPoC6(58>*#I~i)x)6?7dR7GG$Cq`7T`$C;O-pa_fq@{)VzaO>XQO9<$Tpvs2k^OfV|66pup+S*twxrzB^%-TQP`>e8`u)dQJ6YI>f z`Sopty3%4d@C_dy6L|QZ9D;(2T2gS_{vdd7S68s-3L;2g{b=%=Qu-T0cEc*3moHz| z)YJq6deKxb>d+H$Ctp12x9NMRr!zh6 zQXg=c>2{vRlR=Uj=W2UYDQT_Mb`03XNYZmh16LZrJ|&}Feo{P#89Muj%~}c$E}y&mtwwEi1nwQ6)2=s zD9Orl(uYhq;Z;cQ3eDAJk(eXQPT74 zS6eR&D>pd)E@4ngJDUa{#s(KBohdia0ZNYN86jbc1``vLla;l#PW4p8Hk(-0$;=J% z|6N5pD&!^fD0bRj)K#+#fWqqi?WKgIB(%)1>4f2<_&A_fM;{|2vhYvpya5k>>=JQ! zF2+LC)LqG~>IbvcC>3-JKMu#oC51mxNqmweBO^NnI6ea8fYWk?k$@fmU0ncfyMe?k zLjLCopsAli{6dptEEj0a0@on$*rdzg@3yweKR*FH=+diw%afr;0Umc=O%1M#mY3SogG!t37! z`o!&Sg}g2b)-P>mu%6&BX}?>Gz-RHIO{2Eq$R6tx@YpXpJ3AXrf8(6TfniKWOq|;8 zv@GmY6FK_lz3JuO-_Pz1jVQwD63hgiktc0#ZILFYq_Ft;`MHFIgp}^??O7ckA0L2D z&H(-UY{0VS*<52wg%gzO>F4!#_6AH^Mnp_=&zQ<}(`l7P^A%_lE(Zq(TY-%3?(F;% zR9$@xjXFl##NywP84-Cnj^!#YE~aV&^=I<52`T_PC>R(R(w`D>=EPv%Qu|23xjBgRF5RKfJb2rTL%(2T(#EY-1h6m=H@q+j=LHl zGAf>li;J6I`+Z0Q*jud1c(*-}$e=BrdlX(*SGV1;{J~YkeK*OWP&xBr8L0NXv#2Ob z|8^5e4ven2ZcNAn1Y!*pMSk+#%T}SFq(|UaH!@c*4NxfpG`zesM$F0D0E8QcCnjn} zuU321aLGAJ7ncL9{r&wjA|o+NDk?l)adXdW8yhbxx)o<^AUr!Sy#7R+O1iwZ@GIUyf@ovJxpkg~EG#2Q%1g4*)EE^N6Z0BCVsd=#9OJ;&F_!ep(ObbfrR@P>aQ!RK zP}A2>e7VQqDJDpIs-?m-q0@gnn#@nw3NXT4^OBH&KV z|lSUVH$9-T@fkN@187NaWeE9Nj&~Ps#X0 zp~yjQ7yEMs#>U2Vu-wJpEuPOP(<3@NJ7wsVGq#=oF7h1%`O?uEpSD}-6hXiOs(ZbF zyQ-a8i*{CAR<=K1sV{r z>A#X>#B+&`iV~%S_X9}nH)`|Y@w?tgiHna%0#CZ!xW-bBLq?|0G*|V_Vas8=E5HAZ z+vi+~&jccVS3m#F_Vj=M{(T(n@4uoJqMtl7-8>x)2o3 z*HJCSh=*31EvG})q?P%MidQkd6_b!XqfC|2>+RdO-=02wdJgV+lZ@YOg_f2UaoF*w z>{orVHIlydcYC{0l0K2`Znv~@UgX2wZ1B*=po4=0zU9{Msj2f6tD!G#pOe#D$l#(G z^n1C}qd#nei`d}V0|oIa%)cEdxx`svlSTccW&HFC~+@0Bi-rPI2W5O)0 z&TF5tMJbC;FE7WgRwFrl-oMG{I$rC097{dhf^p{qnKc)J{%m-0ak1q2^XIo2Kp1+g z^+xv=eEfK|7fl+}*y`);JuosdqM)I!o)3icMJN%l5l$ZNZiNl=_6mge5pVq zY*;QdU{W9)@~`v4uoM$=cvK$S23KBv(E%31?S<0$>FJQpfhmQcR~40P*6zgun3Z

    gQ^ZSYB9?VJ5&&+MJnrgrtEL39eZG15C{e_gv_| z41O_^bRyE1g4z0&mc>(`H!l}<(~6cl2;2Mel(>gr@K zUfjj?tsQW`ejPKR6M1|$Tb)J8prPg~QO2HaGL~&)kZ| zbG>$VcCM`@B_;n`3YwP<(Nl;^VbUT(q&I%!TtbYk4)6Xzyq4*i|8Aq9Woene@gJ8( zM90I89TK0@hxPt=EcTQ=5+b7hfZKxxr8ILf%|_EGfuxj_XF~%6bB(TB%6Hr2G^Fj~ zW)Jx_2`q_2@j%a*PZp`MfKjuRkm^j6;^?mBbxi`Ll2!>P#CwWz3DF5#`P7a@FA?$y+eU zp8%wFekCsJ#OYwauO|an@&ns#0;zh6^kNDXlZ!otR~A0J99+i&iG<7O8=!{!~+x5m_Me!LPI8Y=ha&!5AYsVQeraJTWGA8K!` zpFN8uM0<>hjBGi*I=0ZsRSiQyMmE1a-{aNbcHhlS*^XIy*zmCzCWwR<$JLofK4HMx3@W+Yd2Qg8~i;~ z1s{#lSs(gKaTRBV&;n)K(-&nP}luis?@j%4-l4p-3k9 z&eU>E97GTWO5)!UAr*DK zx7Dv3UAOqFham>xOJqmw#bQ%g%FAqi?)=OtQzXHZnV|Z$*d=%ooF>8%Qi`}Spl1emZn&o zQK1c}5MJofJ~Ow{?)a2ocSI7h;?+sWvzu@E`TMSJZmjd|{w)~UVRams1RR-=nD{4FSoK2!)5)7xv(n_M%vN1F3 z|2aHdUb)EIllwPn$!?FOJK(4p(V?I~n$)IAkXV17cRGY$;IOz1^)udmZdktX2X^!& za5?JzgiVwUJ&lZvN(oqXDJv@~>Xl_>i!P6kN=r)@m{-3U@9FvIb)p~njC`MC z(!$8vG0j#9Te6W?&p4xm6eFE6j~%F08kAkiGcc6}ci_$OLI2qiAkU13wm z@5L?Rf(XNwp9Te*JUVEOj+xCDt<8B;x(l4Wzrh8MoTa6E-ToPdK>zdu$Ftgyc?0$Q zzyOb&+;|drhnD2Ap1MLs85QT}*B9Hs8cWzm4m5}6)I~F5iDsOKeL9SRbnmY4NTE%i zcRDHGPL}tdUIV27rH@d?=cO$NN9Eb|=@v`n z!c<894A9TqA$o~ej!dmwkS6c&3?rum^#Z3QMB3^ZH482oSsQRfc0vI4B!ZR_5d3iG zh42Ru)(6I4+kdBUy^{e+QqAopd4(?J?AC>g<`d;$!;R7e}pf8Hp)%Rq5K%mF` zSO6HL;1W_e!2GzWZJAET@?jC|fAVhuySRLJ>p_qjp3bKzmJoz36kcxjpmTyYoj*D~ z`n86-xW;0AijrVCO$@zWbTOVbH>%R2<6#RdXjmi9=mMhQ2Rmf^e?y zc3)|tQUwlw+w>iGP4hwNkk2en)%hJUoceNW7gQOt92P5iY#)dV+i01X29owG1o-$m z0q4q1_DEb@Tnzoq5P9s3k0jK|l2_D>I}(LaDOMzUxVk2CfW1mDEZnjUjT`-a-_IY+ z`TT(z@nuDDu{$_iy7w8$yYFDLZ1^u&4f%Ga4q(ItBF_@!^JSUjY`vrFgY-~)^v2K@*kiXuSZ zoFIQL0fF^9hQtBI*4EaNW-$6Hgg|C5~(MBeiu889@SlzmLBa z)@iMy7tfZ?>seM(k|qG^u?t8LZ(wutC@2i!Q^yw_0yCtPv-b@vYZ+o_s1%nfUq=S2 z>m)W=Cd~n%R9hN2&?w_0S@^>0@90T}Pe73N*2+q0WNhqF5JZCMsi|_brq9_^B7ZL~ zJ^=)RAm(>t@G|U6$9e5jhdjFEJ?;rE@?G+-EA9e3UR@(x+P@N(%oS;351-jTBfs)(I(^T-Cu8cI6FHZuTPp4yvQ)kF~J2mp zjR|Lef46{$Y^D`N2btozf&X&O%-0U{e3+P#n&{}CA)!BC814RuobM{pVZ~ZOTxp(5 z4VpSC$rA-O4kq$o#0S|-K#-F0F|c4>4Jz5f9fIB`ma1>u0@fvnW~htz_$lZ-ab z&RohWDhxrS^I)P#tn1gtF0rd)Eu(^c)x00P(&X{|4A4oSC!Dv61(}j?>DQzpRMRe= zW4eOw*z5kyi&1I?1%;h39GYR^$M6G@J$MCV@KX@2B!E0;8swJAhW6Xz!?yb8&f0J& z$}l+MF`3M)q}DC3bKL}^H2%en#gpBf2c~Z;H4_t&(uxYlCE)%Dz|BFX$L>8vExx)x zSDOutFyqbreMLiMk5_)-)tKV4g`vOo@M6`9nzs84HFPKiTlp~b#Y5E4i0ykZ+zkwHATD`Q}LdZ>a&8ww_0o!iU904|W6 zxDO=Ior52ImX0Qoax7wQ40vo`1>R&Z0wLN2yhbeXcY42Ue?4gUD8QwQZ^Y9Z#LcX_ z@o>jO2N5IxMKZJ0nBDvM0@ubHKwCQq#@0X(FpwGd{&aI>oYvS$PcQWpY>Wf&D)#&L zW=SgycGk-A;%E*Z$P@Ye0#Ky^IygoL)JEv~T$S-ER&7 zj%auohP%6a$hwPnH-L&;FmIIo0#fckR+KMXvWu9{#q!VH^(ln_KR-E09Y4dxRorry zf$uCGL)S^%U+Gioz|Hl9STC`0yDMi$f^^dVyRDtwfcwI!u_TrY<`m$e$Y!@4TsvD^ zpV`GlL9LXVLf(JD_S@;n`n3FED5VZ|GssIiT;kDrKe{XcHJEQH>kTO$xh9jmnk52pNqXfGJORJr49^tK&3|O2M32>l)2^e zIUMIDW&JZI{u>_PQ~(jU5mI44FELqJ*;H9t?uwEU7dd6+5AQ(tlaY|WhP}gpykbH@=|(~rL#tF0?>;5S{EqNDpVAS*0@fdxXX{#g zFC8mqXJ^xfhZO}v;d~t8$b8>O z5q{Cu(OGL)@=;h{TXSt@yOcWnLTOuRD0xnq)zY_MK5A;!oy0c}Bby|+AD7PTjtD~% z7k<22a|E6`f6t%ycp#alW?(2h0GX4>6DnUfUZ0X&dF#d5P!Yk`{oMX)v}IcK|Jjk}`xpH$U$JNOTuueZB&(UcLGPO_qSwrJfD_({^*> zF>sndItMO{>Ito^H}moC<6rCFg|N@amC2GLy2&U4_Fea;%i91<^6Y^OL{CjE9;XQ} zrThFGa5crNcdFA@$7|sni{8T7*^|@$=Gb7*S&;*A99U7FC&0(dGbc_LeDaDbrIrF7 z?`s3@j%BLi}VA5?Y$BGC#gVo?V`Pu932a#FDPss@??>>9V7@~kl|q0+5^9e&u+r1(6oraPB@Th<`BvXCNm|} zFk$Oi7!e-0=}_(prl3zkXWuWC#1JdsUESHh9&1_R_r8Cxffg(L)gOwL07O?Ak<$v5 ztoQv(CA^?VF@z~bo;Wf}K9}d$zMt1(I9}vPAq>Ds?dR!Efg@h?OEDtv!c>Df-&aBQxyCnHE`#8Es2r@i!wQg2co1>s~Y_7&HH~JNMc^7GRG)p?EJk5>n;Ma>*XOI zM?gf$jM4xJ~b(7s1Ueua*A zK~#x#F>~tG;*%)#k&Ttm{>DNa?TShC%f8^`K*zZeL@U(DLMdtt^juD9fqzxs{purv%WVI#_uqY-~v?^FKjrzheGJWz62KZ)S!S1ctp`0eEb5gIgVTP zUDtzB6r(G~Ilt{EF1V&X@)v@kr{Ds!TruAX|KC~E9YuPl^k)71@enu!43U#kmaGsr G4gNnJ(RgJ5 literal 0 HcmV?d00001 diff --git a/test/rendering/ol/style/expected/text-linestring-nice-rotated.png b/test/rendering/ol/style/expected/text-linestring-nice-rotated.png new file mode 100644 index 0000000000000000000000000000000000000000..3350a763d665f3127c98a09f2be932a27016b82f GIT binary patch literal 12493 zcmeHuRa;eE+xDb8lx_j(?hfe^5RnF@LAtwJN~9zN5$W!d7Le}l?(Tlaz5i`|Kj7I| zxDM7_gE_~z;*84(Rb^QWRAN*Jf-vOeq}0H_|NeU+BZ8kLTBR8f^a_%fdZX@caQFjB z{k{DC^LB2W1PY9VI5xIa>aXxuzkZeedc}LNSd$f4it73%4)5<#A=AyAxJd~;BfU|3 zDKfs)mq6!0|KOK$uQs2Cn9GOz=t4F`NIbqK`&Hep}jW~>!F`t1Vb;8-;hQRsK-Jt z!#x*NSpu=eVJXA2<5Kosh{L{%B`K7~hLw8-@4(IZUIe_^bC9e-mVi)#U&Y9n70N;= zQX;nb_-~M31z`Uj{ik#Z-sJaSOj04kyv7dXCr&9K2X8LxvvlAo{oy6BWvRI)sr})9 zk@KlXz5=&~yk=pN>j~cc?`HnDGyl(+frZ)}(&3;T42Zs+z4+^^mg5N}(jFEV=!B+| z{QxsgTYNrF9D*h%C*O0R>q=&+rp{VliJ*7ZO7Qc?RKY-vgrRtkAJK71dv+mz4fIa? zkmmhhiPiAXP{f#+80CQ6+%521$0xSA(!#fLuOR>J;mn@jd3o2PQ&VQ{?(PXGDJdoG z?95eJS%$n3QmJJH1q=w#ZwOjrM=!b~W{p{&f*^WY4(KN$G!kg26;!Bvv&6 zijz|(Bm1$f&WMK}@GBrNpfe$xFtp|oCw+NtjyNMRk*B1h;$4+&EP0n6s~bnOj2Fgn zNlS~bqqn!WySMkBu9fzn+ak@fn6c^UG9rtY}Yxnb-tZHW*mal&^tH$F0?N%FXtsCCAY=At_D7JeZlj{ zmW^G?&dJF^f(WD6>(_&ju;wHrB%Hx@y4k;eu{t&^-1=QNKgU0dt|EL(O5)vlyuXfk z_wF4tA79-RxZ1aa{UAe&nN|7i+mLp6&#QykMz`Z7bbWpO8EOkyh%rkJg6d$Py42Lv zA(d3_-7pXg(e?H9+hE_%h`7w^E47#{m6Qhb$z%C+h~W8SNFeBf1HJz-BOqY?Mhz0r z_%$7PJ&g?QAVDW;3tVu}h%__4RcJ`a>CtlQaGIE(Z$(*|owSTh=uuZBL5%~c`P}?` z{7{BS5leDE!*r>>*WXP?k(Ow7#XLezr9+QRlIltLD>VO_rdF zn~|57KM2F3NR1-ofJH+`xBe0x&C=i7Td`u#|IMJ;GclT6r171mrkhaa@Uo!Q6f*&7 z&l|A&+2D!p#&Q&Y>^e7cv$7ruhIMKe5MFoshXkO~b(KL7NCrLh&Qu{}IV9*OMitl) z7DyZm64!(vQp7kIDBkdA=ZiQa18#&bKMM*9N{fr5B=W}7E-o+aK3iGkO-xQk_y7C% zePU{A%KFo%S55AxM)7rZeAk0%e3vLFC|jbUqM5QWq`fmWR>|e%!G zlzM-$$&ExqUESVL^p zqdS_!uGVgOD5-z*PkRs&0XPIv+z6?ul9H0g$jHcEYhK-nvX5dV^L2LpURMY5cc(oR z(qO6Ionctxgy^9=U}+lgOcFV-er0D<2>aYkn1Cm7W#6Hqrq0~l+$5rX{hF}V^HPE0 zik1CqbaXUH?%On4LSE|`YDvk?Oc;oGI70-j$@8)>Qtox3PPN60Ch(Xi8@=%wJUl#S z4(r{9LqkIp>uYNV%gtW0XQ!tH99&#Mum`D`nPokn*iD=T^=aee*b#$9d99|3InB+@ zTUuM6SMKgSIpcd1($dl>F3-;H&>=z!JUr9II=f|F&J<>!o0F`hIDNOWk6O|7Ukj}4=08cC0k?+j6+K!BdP`PozDNxxC1&E&r>-p z{7@t+BQ2dG?0JzNnUbO%pOv+0m7-*JadoJRh8RSt-RNw&`jt|0szR%H{`B;;%5Jgo zQqj_q;b?nXmXnX~`H#o>7AsX;_`%lJ6t~;a!WNm3s|DCCLne)4_xp!ir=vtBP3AkW z9GCaa2@4228*tTZYEsfvS7&Fo_vu;}UVjpcQ$bM?^>7MTo-i+O?J)QXDJTOqA1Oao z{P^+Xp(6xs;9a)Nr0q=kYPsC&#%pjST;TC&Wn^TieyL16;|Hu94#Qu-KiQmcm?EI;T_%Kc7{~X45x0&0@ z3EP4+{`G{CcmRmSuAUdrnmwt=}eg6A^vM&HM~2Ld(& zsfAX*%=1nxv6JZ%-MSw#+0uDAId9$XE-WW<6qB9x^!0O;XyYH&y3kfOHzz@m?$qw> zeV)C)J}$sT4Y9PcN=uH9&o0500-N#(;<>3q{v`ihb|0P6_mOJQ=ef{3xj}k=UESMj z4424?!otKfa5-KQxq7%gXS%;SY-;Q6-BtGV6jY(dB?ljpcNta8(JH6QMMOu_=<4eB zi~2qw3yX-H{{H=%f8w)lz5VJOIQOy^$IUOjGZn@~kB^VB?+PY5Ha0de!Z67y**Q2Y zwOhPBuGm^1#;!r_EcW;J*VEOVF96l7#9Q4e!FlLuJ6336)Dw` zabb6mNuG+GgU4Xl6))_5!9Z=BFWE~{BVbOvx_8bt`;#y*Fp|+wQ5&_iv~cHUXWu$F zIWe_>M4wAYNVqIBXdXMexG3&qFWv+fZ`p^N*x9l9$6tanhrz^Dl*{lw_cskKZR5v3 z?xQ9X`S0+2eSK3#M@N+b8emW1wp2U)`6dW;3Y2nE<$92Ts&fFPc>x5dEcSRYp4<=w zYUVuvRVsT+&0d%>>j|+GV#*kx8V>gLbu{R)vL-6Xi#UF8f#lnlo;c1?c2?>FMbb z?C3$-Jl}nTI7T(&^sA1sZxo)&6Q9Sld?vp#EHl05{`ywSi}$$6zOuD0ph?-mviD8nhm_N4sX`7w(Ft)JRsaROhI|OS@ zVi9xa@11WCpELxKhZ-jQ{Q1*oy(e~g(i}RVCBvi#ekzp)f*g+LzU#)`(TRE2b+q^t#ilI3@GoINbNBG0$w?S zLRaEHE@k?zKlQ`v`p!&tlvb~Muj`62HR;t46*P9*qn5_qDH33cyM?Hx7yW4#8J?dL zOjlHd3tC*v5fc)iiQ68We?Isdk?Z|(clC#mo6h~k?)cjAaVsYk)tafKWKfk9)vgR} zJQ0Waqd7F}1jzu_lc+&E4HltM8+y zx|-U{*g-SJ?ST|7G{|0njxLNbxqtEe{M^_umB6e5;GmJee>aW*U)Wmy<1xN-Fk8iS zqzDM_2f?ct@~-rg7Bl?#W6o)40H z>k!mw7!MB*JvX;&JwU5$BJo)~H&#~I|7#xhTE?$mMqFqyYiKJdeEIn1P5bjs4igg- zo%MXJ4cdWaC_2%%j`h=8Za%(Y{}eVGn?n_6K@rcvRG#uI|7ijWL4JPwUK38~*Dq^Y z{GQ1%30m~{p@Eonmx#2q5AUS@dbWPW=CXPF*5g1$%x8p1;N@NBwb9K#@oXHov|;0o{CvjtG2Sl8|Ov0CxFH3ODsy(MqSt>qF$FudomNP@)_hv-TA*`AHQ z$ZRlqwb)*^PO^6r-kT};?z^3EtzsAHjoLirh-=cHFYC0l&Q(6-ZJxTm^AkbZwKj0X zf*=C4j;u*EX+^C>K+XTS9UBw@Vs##YLx(CXEUe7O$M^AdoLp7x^WFZxvp$8TC=TP` zs=sUIH2@J=aq~2dm~i6LQA?KgY**z=WMw!X>3xn$A#%Mt(*JV2(!MtPc<(3b{4BaX zRb}qnTJT;><>uiQmx=p=b>s4zjFrOl*yn|^vgPlYnOJZeZ2Ep9#v~B=F!IHLC92wc z!*Vxt(iAyOO@AkTj7dG)w22Az;??72o2RLgJ9|t=5S`O^IXO+GMl+2wGg@B!+S6lW zflg$A+tNl;h_#piKskSjf&MK)gbixbK2?7X6HBq9$Dv#HF}TxgbJ>9e&D1{-ovMom zSO7>kb?mu%7gn0IA4$L#1^7^bhK9yV6&014 z%F-#Qjm2>|BgYbpoRBqLwAtuS8j0A$Uz9YuvX52>gX!Aa;3VX|P9X069l}0hlG(ZQ zZIZwsBpz|A{km@yBTGZ|?LX}jEUl(d+=UI(0^US&BV=JPdpx}mfm02RIeq*(jlM~k_sAWWe zH+q0lkP7OGL``)yu5(rStLFYbqojmnt_3pE*J8RlwU(j5ZG^X+ZtwqO_>~1mQE9aB zr0(!{_@6@SxmAV}ZV`zw?YSe}nLU|QPFbJba@A=E9Neau+R4$(QWH9J#fXjC)As3K zegCX(Chx0q$TxKGdg#?|kmmH%+QV?>>97Q)JZO+nQrUTar{A9U_vSI|IIb#&&AfkeeLlrE4xJvD_`T~l)^eZIA+lprTziAEqHG>5?9 z<$4^Jo7=2Fh%O>)Wz{0>;j#9}s=w9D#&$e6xsYyTZH-Ph=JhQ;o=kugb8>wATuxp- zqW5xtI;_S0R063qhbm649tdjvC##+NTZ3uW`&p7<_#az+7nP{uzJA(sZ}W!<1X(r( zXiF+U>gAXRi)p&&t8gCkS(3F|p`l}M$Me={cX!wFFfo6JulEpvBm4G#bd&+n%xqm9 zc3!kND1Ir%(tv+L?do9Uda>n9>|uO4HP-b)?4r3>b9gG@6fraLF~<;hid@&vy`9`7 z*C_l_)(M+m__nd@zBBEXsr{}*NWGew3<18U5*r)7)Z2yBsJ-`7Pw^KuDGCU(b?JhJpeMG+TE=iiwm3DYbui5J=;r`-KF-AqXo8eKJB!>RHUBjKhF08pgXPS zr$-v&o|w17fYa1gn+0%gLJ}f*Hc~O))b7n8AP}~405Pi_Ho%{pfZ%%K-#?3QKyXbSG;+UBS^&mK z5oW;h=`51&JG?1D}uL+^TAMXV%8 zm7aiH)SF+7fx&VdPz?+~R94?R?@s=eGK*LJ=U86XgMp4N?&~XR(7PQUdVRdS#`js> z=O%^g&Vz=g+Q-+IN|zift;$cVxv+)&Z?P_2L2*G`X-te6;qG1^FCs$C91#)9n(g9P zgn(a$>3DM!zjb#MKNm$N*~gppdK+u&gNhq2^C*l4y}7a5b1SxwP2C|*j;<*Lc8u{^n|ynF;18JT_4o_}MqNHb4c zM~AhfuyC%q@awmGj`zlRVw z2;uBf@AtY~#3@CN$MY$COXC~qX)LmZ>)ZCABHw2Fc5#2h1nF#9zGy&G1sOy|Pusg9 z*Z=#Vpt5qzVy@cK#e_4(Wov+_{z##7bo3qkwI>8w*!!r*l8gN948`c5t9LNA>*KMWJ{;+;CW}cSpMbT`>_P$v)7{XtV&G zbpS}n1>EAiq=ba8Iwl$!8QCpRG93Q(^{rv-F1Ploy|2mLKFcgG`5l^94wEnCYx zGSyPrU`uALwA!hW7*_dg!*O=`_)_5&S+w8Hi6P)tzgZ%?s8}+EZ)@&XJKfrwy%x#I zMFd6n{-S)wiD$q{6{yOOP@Z0$L}TW?Ve(YWnX_iys?v?4&} zNx$&aRZ2o~}nhPCmrW!P`w` zKBScQwKr7g<;%ugbMtZL!2x@L7~`&-90=3u7cAW779wH^SFK&1-z+m8sUA&2|Ecuq zYACv(K7Ng{?C541AJ2N39*5)JVw3OG#qRT(%i*0M508s3V0V00R{L{+@u6K^UG*o% zbUJv8OGtDa0XBHe%)nq+F>Ad5DCCQt)7tua{zpKCzg5M@f67XpeoL*dKWM|jAzA6@ zr2Xi5W$nVvZJm!B;Y@C3V)2gyeV*G;q6j8M$-s9NHgWKiKWL3<*3-ov)F|jCKi2FU zd-8slcY{_@J~Dc$UXo>a7uMY!4zytlC;s%@7N7e*1x3XI5Ui-EY&i0c3ps8Lg0eZ<<@n)fa6Lk|0s z+1$v)d>2Y{b3*~r&j+$)3sCB470G^_>?I{>D{7QF{~WhC8(&@Z@aXFDq(s6xV~&c> zX)+%w?(G{k&v3tx6RInYvL4Gp0~q*?gTrYurg1lxSh)EIjTRGfAw)N{TDIK%r5~r1 zuiCDuGLPLEcoGeZ%h)ov_nG(-bYo9*+GrQKpdC7^wDm`0kqYISnb=&}PkTx6~4?tDy zE-fuR1}YxWkXe=C3D?}*94`+qZ-)<6H;DKjUsF;F_<#U#4N_lsaMRHaTY*eUlmN{( zLD2h#Jys&i;`aVt?DXUWIWW)bH7)H^($}vm`WhPDCue7k*tod3$W`7zKoJEj6q7SW zDX4$bH+Os&&4HB9#=>I83q*5((TzV}0|a4*|2GRzp;haCx)$jzx_nf(?7QD-RFO)+ zs^|W_%P8@8Zmw;E_id%6gF}T3&=C?#vZ+b-4;MFj*Y%GpoXm;c&k=L~CKhGCS^wiP zSBHpxGUs;o+n0bkyVmr4o1ls)Dhkc*NXhf@j%RCg^FxJ6@3$^>#!F>m12eW#7dvxdZLRCkYG+u`_}JJ0tx86^ z2!I){c+(#3!v1bj@9sTF{WBZfjbaZt56()}*$Hz}v z+1aUw%`gGnNv+|7 zfI1!niAs`dZdw+ThmVg<5Qt+_Bz(3fxynCu1T4pX^8jb4I4CG6D>Ss5`@1bKNZZ=# zYVP5Ifr(w9K(2$_E5$wy#*x6R0Pde%T4v@mKO^IpK@-mQdWUtjwY9aFHGYF8`_&F4 z5Q=Rb9TLt!8^Zy6{%;C@Xj8k&+1dFI2{Cb{Dd%kG-Q8WR5yWj-B6g4*L#4G2G12Pg!80yma0=>uKduc7gA<36d-N?Bg z42cc0*I}@JM7aL@N_j9hr&9tJpF2BqdJs9mv7+`3^ofsOmF(598_4W0Qg*9CQGL{BRDUzN|$K?6>dAG@t5kfPd!ucC& z`F!{=dDz|Eoj!!m$QZQL*Qb#E^QX9(t*tUJ?Rf*4!f9Uin!k*A{ack@WYsdpu|fD4 z+~Tg!-GxIpJNnVAe-GL!GyZ->L_{wU99&RZ5F&;nKlqe9Lh2U+*ZWLSAI@}M8y%hy z3Cnl3XF648gKySmn90L5N8oxj2s;G{6+ zOi>KF>LAcz_RNMe7PSD&3{X^AQKbW-Sb;jDe$GN{3ox<0hBL+L4$2>|Zia!fTMUe= z^7{Ijcl5X&dCm4B>g2IKkzmlk0o0QGeL@>l4up|iXAC;JymNKNM0HhFh_A+>xTM5R zTT4rijg@uj`E*@2?FF^WA7Hk+fi(4H24*pBq5@2O??dHBY0!@?tgO5^+1XVaKeY#b z0LBlY_sq`fYMg*+UqTBAOFO}(ZE(1#pxR<3BqzW3d%E531IpPnFCX7~&0?+gf#Ko0 z8{j{pb;nXrn2fYo#IX}lBEZt^fFLqy&z1pZ%DkSQ-gls+{{jnj1g*bzY|yh??FgaZ zCmqTGa-ePBz<^1+IaWqSMk1&c6B`>Qq;NalwR`{1b5Ltj07F(v@Waf2uv1@zM z77C06MS#ps{|yb*f{Z2rr66(@uItYq;d+YS0Evi>^!M-A0mkX89TU4=KMVebtE{YS zY*~K(t5`Cj+H%kkP{0Bxg=J+(z{kV@X0|S?UVV90eZ3YjDXE^@_Rxk<2Kz!Z@tetsneO*((#e3FzXCy1JNTX!#ZFPhoCBm=t zpKiNj(r_`&zz5I-vm&<3Ek7DP&dnk~f7=2!EjcoL;C(WyKI$M?ac^g*jVtdp5WAl* zcH?o$Z@Fw2>QPC1di!vcz(_^L-|lWf#_R0+n;R1wa5q}OuQUb|7!4=+86c}X?Cr~q zK^J;TV0i!X@Zi8VFpQNRK}}7qatj#M<9@fB1T28{-k`rW1z3KGUD6a7r$AX~ee7pz zjlz!X>W~b>`~aj0j0^>%_0`pPK-8wBjPK1X{n%;?%4`5@Zf-6MaOefV5k8`#qFMl{ z`~yHEOC6us_o^x@rw|bk1UeSOPBy-QxEBNEROTNLIGO<4=VjKZrsrm1DJjX%r#}F{ zyc6-fz$WFlU-{C~BAOLLMUyU`A?#rkA0H1#x1$6cX24mH+&bfxKKUCoI3i%7q1|)7 z5p&%5NAo>N#PwjN9K;7;BkOXY8hkD)C}=-BKc5FgyIix(AQQBq=lcK*aH}d{0_Be3 zIvb0Gx7YzViuR@AvjBq5XNY(`A#&-!z`#s_^18;N-^jiE_peDe@FZJE!!fRdrl+Uf z00HYu=Q5AsO&iP|0Ed0|FOGWQ2&kICwXZl`??D4v*=qZEV0d_VdT=m&Hqh<3fG*~4 ztwNZn;Nu9w?h$x#PKKN*9U!`*4E+xnDI{Ez`$4D9U@84%8ySrtKY-})w+t%8C z_`15f8nLmJ4dBoze+Py-4*85Ku)nVzkC&QRPZs8ZF@{&)&=3a)3%e31@7`fZ729(T z#46ny@QFXz=L%lCrGe|yQ-@A=bX%C4M^MVNK}+CcU}2dAV68huBFh@Ag)1f|CLo+0 zIlLW&$E1M_JWP990fAX3&@Q(ABRB@YSG)n{zinc2vZT-*cz{X3E3;odiBeNbnuAQF z0HZ)~3kwV6XSWX|pu9UiR$A^I%$lEAP((<X&){E662QK5gZP1ub87YFfyXbYuEw58vcUX;9$9R857kA%rqe2 z&?@;$7QV56u>xw#*`Ma-6aeR^*3NJ5SXo)6!TDIpL=#_*gRoo3Q7d?83xG=mAFx+l z+C@IwlZs*E;BW~D3Z|lA+1lINTL3W+>*)A6mVki3s&CWL8;l=i9v&WQf@i-hpDZgb zHW|05*5FKeXw1p!!ZVu;#iB5%@Vwkx3lB#w0#%wYnusgc1VEO3;6t$?hjduI&r>F& z#YSEUm{$QCw33CN4JPWw0I*>NfC|i&;O&B$m=4psFY8GwIL{y1(fjH8n16)B26*V# zmywYteT^|BT%g7X<0Dzsgy?yl+8?P~+b-;Yjcjjfn&YCZ98;c~E0bMN5MgLz!{X-Z z$~rPORw(Lm_FGX$CzU+?!4u5o!NbGX6X4-l+RcrIIP?0^mrQ>)W@{tZ9Q= zXz;Mq^$x()C;%Yij5=C|wwPX2G{fof&V^Np z=Xjx^Y6i6N4A65=?=G#bLHSw*g4q@`KALFj*VL4h=GdsH;QayLCZNRa0CdL+n4q_p z*L~)yb`zLV0i3BjQ91AZN}W6mWM)LD5xvg8;IWGV5$4Y1J`h4D$_|bXUg(`qOi7h~ zY%n;=ua;r+Zfr&QMtt{rwIRrwhLXaKQ21rUUjwQ*)qf_HQj(Hz83UNH%>hWtSYau; z5ad0FiS@hO%EIF3h()y;Vo*hPLxaE>D9P^1%9weDgjnTGE`d#oi-v|)*wo~OnB1?Ac5U)+^DNS+LaVj3 z^hh6IfD|w(nNm?vAppH1g1$n~N!WGHOtCY3XZb#VOc@-6{_f&;Ir_s@F&iBYV~eNq znK>3st0wkS{4?guf0^#Gr(N9kKX4bA;oZ18Bwu_QhU3yYDH>QIce}ZSx2MK`5U~ze zl}XqA>BBW=PufEOpu_lIql)heITD6#BDePX6SZR42Z&voWNoV$%zoGqyV@zy$uR{i zq!;`q3hZtNDwjjdmvP2bf;fp6vWzh^4uQ)x`R-Ji7~8`9F`dy8_S8fVjrGe|ZFoimV6*s>@4dLyN#< zwG^I0KDr?a7^t4Q{Ad5+zkzBAltfBqK(9I)$%#r)!J7~CS)9Q%V4zxSn!57?n5_PV tN~0cH{@+0L|8C}gJM;e&GbhiGTuw_N{c93_@ZS_5d1+;-Qi)H2{|DR60+s*( literal 0 HcmV?d00001 diff --git a/test/rendering/ol/style/expected/text-linestring-nice.png b/test/rendering/ol/style/expected/text-linestring-nice.png new file mode 100644 index 0000000000000000000000000000000000000000..3934d40c85cd621e7b7e4e13448beff4f0fb3935 GIT binary patch literal 8464 zcmeHt^;;D08}$MLf`o{Kw313mcPd@d%>oN7&EnD>DoQCxvxFidu^`>u-7KBL(%mfZ z&gYMKe|g{U4>NPkTyxDlbKm!K&biMsU*2gd5fjo7fW{Bu!cW)HCy*~cO^Rz-;;F-#nB%^0u|Q{+%HzLFJGk062L=u|f-n5C(2`#jZ;Avw0Itmv0faiV@FT_cXY;PdE7_x;*btFs*=8t#r{FZgl+x69*=BI(IEaY zQ>gM2`}exhAcD8iw8kp(ArD@tWcOJ19z`|WQLAd2S8&(Ft+ii*kz2ncYM5ErLpV_~V_c=f6*cq=#AwZ5k2 z?dz_xB5NHi*}$&pn0wd&XU8oTr~(Tl07Bq~>_wM0+<$`KxQXMx#BCER3GF2Wky1lQ zUo+X2`yPL1*TVaUMoUPDin93o`}0Dgtyc9|60kuD(R`3jCj|usI0OP&QdL%l(TKt< zP3-MAZ&OlIMt=QbL5smRSOo1ynEJZA@tcMIqPLJQI)+cJqWA7{SU9=47lKyWKAvytDl038 z85GiYQMVu5FSLr4;DQ)H-z=V=%Utg_kKK$Be1J>$*zgkvAOHIjCI6#ld28#66|%b> zj!!CmeTD)nWs17XFV(n11`k)-^YZly%o86R^MfYvLd=}Pmd3X{4!BGz?B|DN?#)gz zyccVQEL%bf;Tr>6u&puH;ftkUnRVbPS<9=dtI5g9A}4JhAI19m`ch_SLJ0^6UOprs zP#Loq1cO?9yQpJVDdaJi{k+W>QC3z~_lZB+p=Ud&`_=8q!kq8lzw=hQ%n1*SkHa6M z13p@mpd2erz(|97A`r|V4I9MqG{Cafn;6uD2YLh&lzR?pAqVx~hui=!n~NZ!pY64L z&4DTb2mf$gs4EfZdgswBF<^IsFP>2xk&}~Sf;7l_8_M71dY}0AP!jx$yeCKL>*8Qf zk5Rz!zg~~v;Nb3{+iPxvSBbQ-j53S&6ZyJeI#F25+N2?v+qlAhlwDX@7z`V7KeaH@ z)0?asPOql8FLpX-k1dusks);Uij-2k@Q zL9iCV7-TO1TW-k#s?RkGfiRmcG~`8pA!jd^^xB=iaY7Y0PL@Ktvw@9gXmF6e)?u7& z;pznKBrYoY8Vm+6gka$?RNIffSacT7TWAgr{yF1(?(Xd^LPLc2Jv}`=LNl+PjDmu~ z$jIo=Y;*8EuZ4vLeNp*0#v%3SQfy3PP0eNc?af8AwVRvUT(Nn*jiDjRJ-YPilOAwF zOYe8~IdHufx9j+C4HBeDC4Z4grDMJcGSd?n`d17FgV2(`dO#!OXk%0ZTalBIX%_Np z3_1mdmtJhqIQx>D8~G_O4{D{X+_Sd7P)}9mJj3scDmGsLqLeXL?dBF88{0%hOS?lw zMFpiIBeSBD4)EFD7)%$c_u4DSpLA^P@83ykR9uToN%*&)JxUE#&qUlF|JHD#_d4j( zULpt06K7^txu2j(G0yFH-8>oM&)BpOe;9?WKS1`!^9n*jK(}?CJN%S9W}89B|5Unv zyouPTa9g_Dzdqa9VP|2fNlZxiBZ{_!LZKuiBts1RHp*V5S4dw_>(`(|clHkX%M1Ox>1<>chP%A|@3?9Jz@X&4llQQ7Et;xuRW7oQ~`ysQ|}XKFc^F?T?&~|5`exUQe>VuJ`U5`7zov} z8{YVchr>lD$Z?O_b)GCZXo5dHz7RQeo<2;<{lkH#$|yD-8%&Q~$&i3X2OKokGpc9I zZVzQh2orvkU)kKW-=D24Y%;I+DwrvUI!Q`N4LVH~UG*+3+`5r6N+SX;_7@DR-Igqh z#P3=FwDQ^>i!_4Tu2u2or?+^0RjJS0!zHZ|zBE}gzOSX$cL z+Y995&*f`jhtrZT}ms!CEZqp6MlXd!>J_i}zgy`XPsA~U!2aSkV z(NXevUSd#CP(ghB6VV`y=-1Dmd$wjPcP>8>(`}1O()1^5Mhs&)|z@Yfc)tS8aC#3yu&bt6C{6z8esi;{EEL2QfJZaD) zhE}9%cfMBl$EbbHjI$kp#eAOI6I=U0c{#DNu-LyFad2?3#jyb17&J9j;V?d5y%c0h zPfx#h{jZn&(qr`Js#=~F`gC(PkzK}Tx!Q4%Mjw`=7+`g=FNXV-v0ihjT*;T2U1=2Q zxidd2QQrS;HdYG5}t!J~F$N>~c17=s$llz@^`QsPPZpHJLgu6^Z^xw~Yx7o<^_ zY#FYvuTPc(!tWUu5fNcK_DjWtO922s!-DaxY2Xu_9jA&2_=0cJ-O)oCFiZ!5Cv2^2 z1b}!oZ8@y35-?fcgGDL(@iJD%or8Np%VQho&qr!5uIgFE;tyLq2yrERHXlzM9*2?8 zON51$@>|)W|AB@W8tc4y9gOmZZcDuO9REv#Fd$n_02c9aaCm82>6m!jm&o~;fx%)V zSB*;AX^M-z(SmfXE2g}ovy-Buqr->?+_YQaxnp2kXn<5_48|N)6%`es6l3YO(A(R6 zzhkN63{P6aSKn%BWu1Woaj&kf{yLxU<_)f{$yAw_{WHZo)T4}hP4brvM2J)isUiAI zYDRj$Cx*jubr1T0V~^E>4{|gKUWErN3q?1*ySvLRLV<^+M@p8mJ!ysi&G`UrwzjpKj}IonH;TC(&FQSig!(&O;?SbojrX#PfGw$7k|Lb($vIwKBt>xzZM%G z`SAR}!n#i0o`i6c(vAEwYmQxi_5m0F1bb+vG9jVN81_~#p|yXGR@$^_zDqMF^!b}l zMo-yvEvhXVol!2+%dmevWIk&#A_F-1B$%V)^?q|oE~9KfY=v62e>%Fnyd0AbyqJuM9MS;X#=Hp+@*e}W!oc@MC?z) zN1;^ziuporDA)n+Y>M|i*_fFq0cZVqTnuiu2oPY+{pEIlS4=D7YQw|BGXe;hzxst% z{Zq(q>FJNob|!J0lg7u#TTv(~Y{$u0sZYppwB4GKFS)or08Eg+bA3bG9ZQ>6T3Q+! z$E=igi@|tg1)iry<>WB;4-Z2fE9S#3|`GxLI*h@|{Z zm&L@y%t}z49^&*sXpB@yR4Z7pR)!v{!_ zB`%HNQ{_^J9fQi`Ja(esHR8sDOsQv0{Yh6P3uOvqjEto1pGZD>5z}r%)>e0i5Mnr$ zrR>IKA8c)H<>ckDo#$)Fzyc)}jedFc^*8CZXo7e6phJW^D%33(E8p6(&56f{`}cdU zS057WD5xVJ;%|ge@qyqVb|(_U})NG?gL!h)c+8Uo|e`WV2_+W0M4KJoo;FidheShM@JJGl-p^*-@O|lPgGrhzdiAi zwrEd@m@$*~?h4K5CoWne#UNFOR;d(s23XLGUfhG@<_4dHF68IWpJmb=i;D~is;p-9 zUc_C|&vXHm364}7NEtA~UTvS6qJ;9AIS6nY{mnkCKWG}4_BoVY2ZTZ^^7XT4&t$YR z#4G+V26N#6+); zH#ax?0jYMy%FGP$v9kI>p2Re*=CL`_S`m2TMM0PYlm_LHn3|?$*Kvea)EAY;B!n4s zFiog{t+h2tj4?2w8onf*?B>0vi z4kLX_OUomGd+3}d3vk!Ezw$2Dd-I;Nkhr?KatR2KtH~Z79)b|HFvT=U>ksQOmzVN$ z=JlG8FN7c}&@vqk#~k$hfT5w`L9yg(=^ZiGlh%g(dF+HQAy}4Yhw`K(%aPc%`0KiC zk-xSXi(T<9_k{2c85i;$H86d*c+w@3>xK!IGO|~-78TMwdrQ?NCyo9W1~R_K9cut7 zVYbHeYAXECFjptNv9Ylk0{r}rfYJsfv2mML{X6Q8<>M+{q!CY8QqizAt#-kQ$)FFo z9Fj2G+a`RJ%w=^~>C_%?Tpme^5Vx&%II)|mvsLS_kBc*Qs&+Y1RaVziR8UwUYRNz# zj2s*%_DR}=X!s#$Z&>)2#1Uecn^&>6!xD$nxcGeuRT3s zu-9e{K4j@Pt9)-h%}3pyo8Ck6G-och7Sc&Sf3~#yPT;jai_5WFg*0ui!NR#rnJJ(7 zK5u4EMTzGoZ!*Mj2 zctGW$6UT<~q291*XACrT;Q(R!1L+zVT3T8X4ZJ>`<1{Sx zX!P1kL#4Yl8P67*OJszHzu5xR+s^gv#nN2!`K;4cTwGjwny`y_1bmV0`E#q*-x}#A z8Den7C;}Q98k6fWHQrPJ$(+8HhZq!A643~5x&l2M!$6iy^C)11NCHTtZdWe0G&H1{ zk(ih(<#U+*6PRJRKyd|0+V&;*;o{={_1MyZ?}&TyxJPx~wakPtW4%ivu9?P$~1|+-=3|7m$0r-3lh~FGQdW6r<&j%Hgytu#psoV+DuNCP)!SG5x zle+4*_GQ=c7ZkDQ>zM1EzO)T@&$Y;@>$*0+ilpd=pOiWB>S*iV<}>^=Cg{SV%N(Va zDty_7a{t{X{-jgCa-e|Zo$WW#_8%OX>6gQ_4n9|!Ms&EQc3uYzcm2z)F?VEC5rz6A z!YseC;r5#v7cH`h#o0_Y!RTT(`{{xLQ!Ix8`qwdf55rKe&p9k9EW(F!M!*(FCk~Te$Gj#F=UFT~?r6eRw z&yM?f(V7U+qsa7h)0Kf#0aF%M)~mM)3JV95g(x!6L$gXp{Y^j&xZIp>o%{is3x(0q zQ8`g3ZnK)#B1}w7%DFlUK^F_&SzTRSj&I()xdKwB-r3n%pq-=m16<^VGaa?bGR(wyQw+R%Szhb94 zBj>V&r1U8@*WVK=odi21!3z9FiOG4Jsj!vkxFV14K19B3s0+e@b{5zgmYpp|M(N-D zK0Q6nP>QAVg#dL)__PI32Qux0QPj~uJsj7<(b&Rks<~xM+}s*F>+889sp>@E%QVu3 zyZ9ho^WFZ^pNO7~3G?y}d!1|yqUq`A2AGv%om~Ov%c42xRsm_?zupx?yTZ|d!30pn zDC%ynuiH8=Hq`!bU+aPXQ4%z~SB@e`z=H?+gdmhGnDNux0QWCQPkQse4x9LV9!h5Jz6V5&g(TyO6ex4Ejl ze1pOmcNpw5QrTi>Oo9+s&Ag#I*HP>vN->B%?NuN_vGr<<@kb(%;Y;vzYd=+RW@TAq ziQxsqIn87xLCPHI{ojtVfP6o7P;XoL}9(2NDS>mJ}v=zhw{^X$_7n23!NvymgRzQ#lY{xK&O2}LqR@3 zf9za7W7gl^-i~9Kx4XNW#LCW2DhbdIJVxnseZg#$9#1*vVtW%s)|z=%O1Z5>R$=XFNI(I71+v7j`uc3%94naPn+*1G zbQf_(i6-)r#)7f6JInZj=Vl-(Gp-=>gj5Ct^E_JZBmv~i5FZ~O)m){MNI0L@OF(M% zXLboWPPAy_C7XHz{50e9Jq{qZQF}on$KAih8M$~OY52B)KrIozP>VIQqo{R4Ez@|vhP`?R5w#;PZgZskPqhZ9_{TJE00meJG>w&$wY7xmG zOpVw%%@pz=7#eN<4?&6-LN*nLsqwUWPThC$!YZsA5(XbS3S;K+HyA+pbxl9wX1x1M zHS{6nRP>cV*VvJD{h6lx?z6vu$q@Nh)Pe#Ek_yj&WdkW1oRv0{Z{^7vTSeb@kADEHE5LhFZVM8~7}c Nih}0bVtLE3{{y{y`r!Zo literal 0 HcmV?d00001 diff --git a/test/rendering/ol/style/expected/text-linestring-omit.png b/test/rendering/ol/style/expected/text-linestring-omit.png new file mode 100644 index 0000000000000000000000000000000000000000..df31badddc0e0160304556d909e61ad08d7682b2 GIT binary patch literal 3694 zcmds4`9G9v8-JeJj6E`BiD}M6Gp7_`NHk>|LK!n7`&zQ3u~Ww}99fI89Fm02WSOxG zN0K=z*}{=6>r|GMgG9DY-luckzv2Di{oz?Y_kG>p>$>l2`QBI3d22Iq5d{$d0L0BH z##HFr@%=%gpm)WE%6kAHp>1w_nik>mSH6Au5fe;&YwW%sRB;kX*p84t2Ctp@Z7GvA(>9KCzh zlqDmg?7n~HtlJAQdy)vOA5FPxGTPvz=yMU0` z;@HgW6fY5wXE#Wx10F0}p%A}q>N4G!wPrcJNOM*c+`s4C<22U<;VAnkH79(^tk9zy zWIuT$-3JMkXB?CYZ2>}dh|M^r;pZ0`ZFy^-3i^0stzul%3oc^T>_Js z%GG6exfV1_F~6qd+Xx7N6t{%2uh%=|R-b$uj&F13`vh_4$Txl=dZ5_o@%hHxd(w~W zyoTn=S1{qv8hVlbIBsOxRJ1|qS^4=I~_7&#Z=JW--6S( zNU4@vIW6e^ZGyk3HhHq(Z|#V^CH2GsE$o)@dcut*%xfEmxDj}jNcF}c(s`c&bPkM! z+?-((%IWElsgte4r1*b@B!N6+#8XHpZ~#3Hk`k7pa!Js(H@nifT z?)FoSPd)R+kfS+O;)hFob(N-+j?}TrFF~?IxM%H%Olt~9C0s>CkiD>c{~Nj(wC_b_ z+iK@=?#$VH>4YCEuyF!3-Qgv>6K!MT(VxwKP3WaMn6y8d&WJPsGk#WylwT3wuWFY; z?1oVnFTb3V_>lG%#x^e@s+iqrC{}WEb=f(7p$dvj``)r-rrXq=Rm&ZMQ}~VH0+SwC zZMH4u&4Q1g#gzEhoJT%h*VoWFGjQc$N5?XA^7aY3lyYu3d|6Q-G#sm6wQfABqvDos z-KaIx15#^Ch;19J4aDZ-viH4#8Vp_{fn59=g0m3h73m+axl#y&#^lMDY9PU#n1q}$ z{?@sMn6monoZYDR3mUS#L}Bu!rV{QTDwS!ny|mp{yi=_>jxX2=eZvlrpI zHExZNU<6arnfV3)Ivomx2p^;t03cr56L8(H;*ZL+x#FAikh|P#A zlv>+g4Vzac4wm?qiaYHn`=u>6C2I*&;%9#2tH3zXL%fIRqo8_s!O6{$89cN_B1wCo z(1k~-V|h`gK+f`g6}^v-pJ&I2nO3Y;_A=gEjhNc z7fIDGhyy2~kd=Gjo$+<`Rdfk>FwAkP6@%UHIo2FGD!y2gd>g!2NcRw$^t4O{LdJ$}J_!kRt0BOVO9@=r%fZiv%lKJHC?B>c4 z(u!7aZ(UU*(L;jmWEB8Ymz+Gh%xhSrMG=?FuCZKa(4SxE z!L_n683=Z`R^ODgvHQ=yai=mDH9p-9qJL8u!j^Q=;?FhR9w2JYJ`7$CP-csnk2ys| zLY`Csy%C#j6GJ*W?mieFbCeu(o?*Z3jLw7EF1Pj{e|?fBCC4(RM7ul?sZCuP8hz)m zW%&Fyu$DW14Wl6m5kRUKL;#8oiw#|_vVy%)8RQY@YO+rBP++6I;c3oLo=q~griFB! z0m~BBEYU-jjqWVlwq^x0M55!uVfx63zd{Ian;W4iY4)fd-TO-**Q1ecXpqSXKQ$iL`t7o*>ujCc| z9r`!w^SjEBuOIqf?US?D-^()AMd|tulo2roVUDwD!c4z~eJ(rp<+zvd4Cpj(EFEji zeK>mMS67usN7c&2&+{EHJ__uwvaVxdzu&jj#x_Vk(o&&rGy~pQsc&iuAl^6((b=`| zm(E2s`WhGW{RQr&j$GVJ5JFoU7Kp~{(x0CB${%`-G7OXLBR$yYcQ|#H&LNO%_vcA? zQ+Bz#o-Rq5`)k)MYbPJi`9~@LNax6tasJ?hAtPfhZJlFuph0x<%^qLgA-4y~4-p;1 zd_#T_=%T?0Gu_l?hOnw`g-TZR_!T88n{K+PX;P7;k)}frJE~OH&D94H@6&f>(>8e2ea9V1J~mNg5OR!LT)UnAei+< zt(vO(L#Zv=@vOk9aX!C!o(9@;{!o5OQYuv!fOtpvUDqG@ez$TZ z3(of8$E!jsUhGZ>VKhJ}eVwof-77coJq4$%n^}$GE8`kV?&zm1Jg3RazaDz4D z8>Gz)W{GCusBTmc%os{!x{Qe*P`toGvoS%~Sbw)qpRh>UX&sA1bZrc>a~HD*+l@Cu zyynMx{Q`q|&7NxXf{RLnwG4?4l*`!zM+hRrj!?4&Ub`L0yQr_^n#xw2x7zK zu*cDCe}R1B?}bKa=w5BAvvM=esoEXUAqK}OM#OulcbtcLwa2i4G3r4F@4HlkXbZY-8L)mOXbO1@l_laG+!QHU&I1xq|7SrXF$zI zMzz9lJk*?+D%B@jK;42xo9_ihsGCp>93&Eov;|s1*vl2h~pvqwV<-k20;-q)Md`9|Apobdx{tOaB zZI`S;L@JGnnat+LTxXM);xI|sjkf{&$#tiA_4U=C%#4h(C)a3=8wPz(XlkEN~J_%S>eC7emgo0-o>xRQN)Gle`1)J@fZWsFieygG%0I z691i)c&@Ed&x2!zS*mD#tBy|(oW!picS}o@2VVV?{Z#fB2yoIoCh+%Eg(C3k|M#u^ z|J=1!PF|CrAgHzfKB~wFIq;y(j-TAguk|RtSXuE23keCa6k@}o>J81z{_4A3@it;m z$V+f(I?UI7+77~}v=uhloSc$lICVq(BTtxo34-3?LO(*_9%GFMMv;4Op_)`u!OP z+E&{nXFS$UMA{P}MgM}UZK;2K?uk(vWVB1la$2Usx)q1T?72vox#9yV$ z;38#MdePRO|8v&6YJPltd=VCzTVBpKH$D9=#-UvbRJ+6#ag%Xoiuf0@*J7bKrTZef zzqWSB>vH~ccG8c_g+0lH$tOur7wlC4WDq#?tF#+-#dgDgt{o4N8Dpy>rmFUs@Vjl} z2RG}>HLHV=rTu?*cX@zINfgw&gnc=u-#a+KCxL6@caxF8_ZQkd?~?E-`4vY`uh6&> zYgMTF4SmIZY?hksjFMK=e(yD?LVnN8G_aH5y}tV9kF@+H&Xek4GLpvk;rLJ1)=;v5 zqm$FeUu42q=^sE7z9Zb++$Uw9vs_JOwcfBi5{LI1%~?7_;Lm@J5E?!%*HsWoO1!W5 zK$Iq6vs@hju_;Ul+7uomhL3(@->ZUq$+16Q%yxLRMzHWZ5Z+S?2CzVT&H`c_6DA$u zA&cxoZWX%vroCa$sL!@X{Ndg@O7fuENQcKkDf$!admR-Om16U>9iF}@e>8dN1;&8u zqEA|OH-f)sXPwE6_mv`Qxkp`tkZFoc@!o9T2w)7Xb0ziK6t0kmbV%K_KvOaB0vg{1 z_%^4OmkGRynuITZzeSi&4GawYa@_kpvdhK#`B+0UW_fw}{S>daG>d1t4ax>Q#29#5 z-FVJ1c{i7}VFWd&Kyglj^`AzoMZ+`D8&h9EJej+Y|xF%5Z3v!baI86AD3 zxsQ@HbX{IW*UXzY@z*M0GX5TTS8ZK&6|&)YjpLt-kfqagtV?tl0@Hq&xHP#5>u!W{ zm@YCPySgRztbApbA90X6@y8!A`J=$Zd?E`v5rGfI@NqqZ?cBEkBPK!oUVzJn0SHEiN5^qQb3uw#n^Y~m2S*KWRG~|yvJUm=B;Bw(8Ja;@j z0`boYJ0E&1-d^kpyo3=E1nUoyb#vT`fvmb`yE@q3#6$d^9tcNoE>ab@tGm0quXPIv z@q@eB$c&>|^i@EyOab@3b?j8IPuP;c<*DF6X$umtwhW5m1~=D$Me|XA6v~^9GYyxJ zV<5f>{iRgkz;*?e2Qp}Zv~`M> z@Gfv!*l9(sG==A+mJBRr8Geh*g-^urPLIySC+$z8gDVIk_#p))rSPYNg@!rOH==8{ zuwk;+4CL+mn>@CFX5mDHC+MlQq2XBv;it|LCC6aTS9qS^z9^chT&yqn_U&63r8L{l)t6Gb zSEV=xbX9xp0;!72T9*F9Mw3}ubSg5Nob&-Py|&i@5YXbXEQ?;Ya`BVM+qZ2b9r*Pj zkkdgyp3%bW`}>*V~;rDo;;OZ0^3*OCAfW*U=N(UkeW&RrJg(aA?ycQ|Pk6@rl5g5yxn7@HF~K@k8m;b-Pgp>842SK2gfey)b6!pkw^U7=Cd5`$ z6T#c_hCxeo0g#Nxa1d1gRX`iX3i_7nO26QfB!9XHB@sv8oFMGe7S=jEL>~fg$8rtm zUaKY#LS11frkW(ZXDd9f&N#zNnA9YON1dl~hwN8wWq9+)%H2O(VYAs*U@pwQ`U7vW z8>KBw$fBFYmPqbUQC9vqJ~`>PGK8rBf`*ttLuz%}aR?rO)qQCcQArmt{5fJR$-~;n z$f)G|_nWWXT*v8IDxtLwqhe`t499=CaLX^J5fVjKPJ*G)pX%oqv9YiWtoJXa=wp#! zzo}hSmXzr07gZs=wni&)gCaXGLbYB9hmbauW^}K)&**Q>Ki{ z>d+n$VA>e_QwG_!k3EqQ!FBt{S`qKTx+*Lph!KCJP_JNzwY~i*WsqUSOLnSIsmt7i zpUDB=ONQl#*F5^>uGUYkrJz$9QI5!EOIG^p)~`aI@?2y~+1yU*S=m=4Lv^F4=`w7Z zRhBl^)_s*6XTM zg4N}f#qH!!+a}IS(fjXOD;qu8PVcG*zyM<1MF+dP3v8s|Ox&qYK{)GfBOFDLbumbW z)uQwJF129%2WN!&aMRk8;UYi1SgYP1Hucx>w$V}L&G!VyTko?dsHsI-GHgxs^;cqp z3_T>XHm?Uc;2{nmC@A!2fW=zI6GZR@e88QhkV_v+Z}x%5c;7JrnPSjvb-Xkp_>^R| z7~OAF>n#8D$>v5Npzuh!c&d0ucnw&kdJ(l^Z~ERc_U4MS{HZbSkCOadtuLm*{Pv@n zRRE-^09ksbqob2+S@Sx&r1=|h*tlvg=_5oKBieTaGkbKlpS~FE0-tolql`&R5$cv(+v) zSvLlb{$~iYpHd&{OmGzOrAFTta=f}Jd9H|sVa*uO27jbczM)k`ME7*8jjv{8N2&4* zGp2^m`z{7TP6^-xwauSuOYO=b@G4qza`L17{k9n7tsryCedUhc><@-mxuq0Z)VL-P z0b`2zF1Zuc4hcFsy2^8*ulJP7LEqOlpG>BTlve&YuXqxrjWAl`K#wg9^4$1r297ZN zyMR@l&DLmFSj{KT(wiF)^VTGM<@)#UN*&Hhr`N?vU_Y~8zOHEgu3H0`!N&ircyBt0 zPENBQzgxT^1&0E=AdT_9hhv<)&e=P}zk}w(!ff9uhS=onlwT%1a<4n_%I4Ho+FZ~6 zw%;9wtJ-DTbT3A2co^8)9;e=8itN{PUs{`+f7by`6qAD2ko|VA$tWlmkh`04>4e`& zHl^AkUq9eGDnvPquJj777^X4(%rcx?xAn90zc%RzcX;&boAW$zp=w$kIbQQ%+ErzW z7qqgqg+Q;(i)iWJQBzZ|#7>A6ZhHHd&aSLH8RUX71goL5j&^LoL^xy&m`hM(+5qs| z9X)i@Qez^fnl4rjBUJN#8CCRVHOO6i+jN1*AvRQ|`ubgaaQC{bPNSt@`2zWcHVcTJ z88%qNB3G&uTdZi?INcB`_l~}rbW?2J^3w6&SGVN77T)xcx~M3EeqJSpdr|xyJNVWZDAhY49RM4?DAa+ckW*W z#3)!UjwVJ7Gm!jC?s_Lphqh)&MK4^~adN%6xp{}?>q7~`SalE3c&8Agr9}RxW!5fZ z43B`Is@q1IJ~mqo5qow5KZb{V=1Cpq#=K{~7bJ_6fpTujPv2ePLPwjd?rZ|@h2S89 z0?>{}W=D^-3^9?XzkXn3)QSxGSTFE?A>q9S8mmP=@i#>5N1Gdn@}4NsNHfmzi5Pp{ zdDQvyo%FwBy;y5Qrq5e`_dEKHkPv039BeCls@e)rUt%`sGwg|2WqgC3%L* zpW?vwzL51YDSBT#_rX_G1hhkBt$%1=Co^H~&b&r2#cQrQ;RnLy+NHNvY|EnL3*n$^ z+^CIvj4q-S#RzVxi6RYlMI|NbD){=N1jom=W~+{e%X$#B}oVPg6zcJ z^7A{v6L+udjY<;z+S0kPidz?(VjGfhF}M^n>PLy>u2&nAAm>)LiRQ~Jo`0$0QcJVd#h zOPLhjrgHmkcZSclj$_Dg{@w4X#l`TlkJAAMNdp@h9RTpYJCPn>FOR8u3XgqTkU;Z1 zx?e!tl~Ck-JaA-W#CF|qyJUxa)^SXcf!O=hoBw%u!)g#e-o|Tv1_INg{JLM{O}F1D z1it5vHL&Aa@Ex!apTH{@UZ@^D50xUwPx$!KlilMv__;IH&H+$hV0bfC7YQ!W~4`T6;>i6kg23fHHFY0M#SZ)#%gXLBIyoEc|qRQ;}4MdD2Hc9OX<&c76u zm0J!D4*FFQL=W&a+N=z{?*?6dfn5fW2a1r&WVfvNQ7EyC9F1u7-mD!}^`qJAC^t<_ zO$BDspCdkII->#c;Q?ukOJ)PmPHa^*`UW4dK@*;xt)UM*s0_0tzKWQC}c0`)gZf`}@s@$2>Iqi&QR)6U5^3-Z_C{;?B>a*9+7;z6I z#mJROd3EB_W3C;V{d)Dz4fTiPS21>3jE~LqfKXdh|9;*F*8Q_xQ;8j)8%bJKj z==s^k=7`wU7}}geib1&p9jb$r{#rHRS2`n`;(baHNXe|)%gU5vs9|wXVIYM;N-Vszc+ zWCu-~8)i-Iemm9!##i4s0xDGeb4-KH`XaiONkGnbBuaj1qvi0$?cLoh>4L_Z?e&(N zc{qxyWw?T6Yq|gJYT6FJEKkL$T{zI{9~bBI!#iqWHiXSym=M_&9~#4;%81kx$5%N%8FQqSd}dd53}EJlks#DJ>Iz?f*=nL)daB! zKu*_+xyn8Oi~-n zg|F_sKL2iT5B$ykwDKj74wGM)6vMDb{Ve>?w2vt=W~N+I1puUkst7~VQU;Q$$)~Lh z{VX{KgW~)i;pyMMo$4ZJN)Njjc8g5}{dHLLUk{CNCN;b(JAcqR*Pd&Pv@O$|Bo38I zLLy>^;hUKDQob~-&P4V>=D{PEU-{ELzu4Q`k60$=&#e!#*RMI88^+U;fiOg06QY|; z6EV7(T3YT8!#i+S`goNvs6;cWLDHnug{-pxSk$j^I?!ggl8QxBz1Do8l@yrPY#xoL z)1BQFq&b5L;_kpUJcUDzM+H5KXXhL79R!`v=y8O-AMddt3zwLLUywB)NH9aC=!4Y} zvE0&yC2p$pwurYhvaUVWDvzHFHVWxUHYUtS8zjU|7dMzMAn>;mES?Dt)riden-cOL(~==>Kp74gg_X*%zg{do)COXi@6_iC0+kyK5m766?%|^KA}lQ{;Ugcrul3l!~Wb&LAV~m0PvijL*-{+W^7nX9r9hG@;R1e0uu&@7N3YQYxZw zRIlDtsj9VZJd#VDY%%#=fc|c(m20RvMR>1uOc(x=_6Tz`!&eCFUjn~MrZA2)kg8y{#_4# zU38=c*zLi*c9%s7uU9j~2Fd)7t_|MO^ka>PNE4)4yh$Bq3?zu7w;K6g#OGlLqY@qA z!khl&8r9-49(AV&?fEfp`P}t2gR-G^u4dm6trDA3SrSB_7ZVy_X|H#64QL+ka=T>d zV|x>j=dsrtt5ftOdU|>T#!JkL96$Psj0jH|nBUk@?d-QPq|Bc8kV%>k)z2KJmH+

    QKLdk*K-0jsqtd z%-G77j(54bTH3XIi3rD=R86Svnu%RSS#KmSdOt*?{abxn1n@2N=e6J3M_wQA0$901)sD)p*ugv0a`%| zh(1jqR*1cT6pP?s*z%dIj7(L<_JKYLW^6jO8rHk0GVBIPo6`%)Bc{$mh2-TJ#-%ibrcFa`PT1yNKB@)bx5CCdfH#!n0D% z6sDj=ieVoqlW%LUHtAy)pWK$3mL_EE;zC9g>ZjuDeC6dUj#4zmY;5@rZ-5HsGy>cW zA3S(!eY`%2MlauQ{R?^o9dRg?1dH?|wz7yd*)=_g3{MR~J8Hty9l^cXpGIc9H#Eog zEVA7cjGQn#5B`Qxq(C?R=g$vKI*7QO9xN&zQHV?j7y)+Mw->#ZzX8jn;D5tAd0c_# zoBTnkXg5zYdbqt{)?}vSY?QcE=vJy%d)CwaO`|+=-%3GY=s%t1=BvOLPakB89K)eU z?fL zpavoR*%y$Wh)|LqHeujsoDTIIT8am@Pu&5dHOnbumJejd-c(&=i?n8(3CIMyR$$iS zh!x<2;d-<9?g;@C8``6da=43%AG#7xqFkb&=F%P*<_~iY;Z{AB*>x(uU z=7~%H3l8l~&!@|S#oioxEp`j)yjcsJ0CnZEjMBG<^3x~pbe@Ej8 zM^Y7o0+;|Qu3d5afd@w2Cx}h(T8No2j&Vg5{8hbK#(!U>qc1#lI_9@Yfxl5%OTW%fsKDFOu&U_3=Ru&-Z;5#)V3<(aia41JAQ_q zAalNleqlEk?XJ=1Tmx+Do=Q^~H5g^h5`q1Ilt0q&ce$d)Zy@V1n!9h@eLvSmL8|jj zc*7#X)^CyAxPSfA3@#FHyaEq;tFP9>A^2P;bndFzs5a3gL;Oj++zRSP?QKYFKe0bec)+<4pg#EXgAM)avG=YM<0IhABj! zHiV+^66Y!nxUnHxb1aO3@ZaDyhmiVXez{T+(-hG@UeJY&eV8Nc$cj_%)} zt7ku-PViH5s@LlMV5!iFx)syUeGE(vA3&aMSFh@I4jS=qzszQeA3RDP%q^BP_bDk+ zCAX8z;av3p{tq~S+0Zf4O}9)hQSu{*G3HpV08V%#xo%zwC>lq!GÐFHx^0WM%t( z0hvSt&$?GWY&OD;XUKJV*uyS zZ9Z=Fc&^itPXqADjgh}4`E1sMag4OQcpI&(>l)joE!vZWD7KXaDwDIbSKw~0PEMDA zdoNz}2R9Fo`)Nyl1z};~6@W&41g-h14@4nS*aQ|EJ+U5@PO0+B)z|cW>o>AS(gm{d zd_MbF05B6Z|An|cm&Uy~&KGUint&?8SIo)yEzJskLF@31dw0ciSwm4hT6RB?Sig~u zd5fQFplgb5uIGLoeh$_kD3joh#e_x*VTNupvNa0Q-%ng*wH)Qm)KT61 zzIGp3C!tTpI+5)!Y^K?KppX?0PjeN0jOsPIX1B(LShAY*t>8jM(Ye|TxIj*fwt*)lgu-dQ<4pF5w~j zOc1QaKrBdlZVCr=ZsqrrLvB{pv6n<|Cp6U&-Unx{+xsOiZzmTP+}h03yq2_Tgi)78=$fEn}|8wWG0qy7K;OaVhPU95_+SppI=8De9dJ zS!W*=q}SX*PzXs==PH)y09aO2M_c>&NWU<_ttphZ`mi`5>sfSvC16?t?wlj0S%t(T zIxQ>q@-`)#b-b8hltb33+G?x3w$RtduCXqPrGu73pxC1%Z_v5EJWeStDjGEhR6`Dp z=a`FlJZK(ee%^ZYJDMa?Bu5Ku4IdKkMY5HZl#QxLEmwQc%W&jA_=IBAWf~ENm^?DY zzCcYE`z$L$MbM3hN>d?QQOaeH1I?~sx1iWB?imvC<;G%Ed8s_uV z1SGRx9=ZEZM?KpDl)D#mKbX)t|Gz9i%Maol`c=vFdwmF4A{1q)RQ!!?Ju$pJ8&OzA zMoa4q7`blGjPb-BzGGvQH2eC950WVa!=ZHHx-u-7fr0B-5_{*#jn;o|*%-7wiDOmH ze1`~`6SUD34D@vwJ*{={ZFW1K?DV!>znwBQ8QJxf zF12HfOAtI)7;scJ?jm>Iq$=v?{*?!eL&}0=QKnbyn@1c&@Xb<_Rx@6Tz)*0Wk~Fjy zD+i;~AB~@jAKwE!_yX<8TnyS{94C1!j$nZ-5yn#fH4ja_TLhSh>KB7>!wnW`eYOCU zu2*ypZPIMtyowbdfct#vFihFw1#AauH|T>hD0{#ydCNO#Sxb zk2ZB^I7u&8M7BDjYoeG2gjJJ2@M1L~Vk`Fm744i=%DZf}WaFJTPqg9g5kU5BSkS(& zyz@E#OhGWMI15-6nDN9^j&z9ic^pc5%r&-#Mqpge;jIh5RelvhUB8k^6e!O{sNENR=fQ?dOVPWx; z`jT9z;F^-pncJkLq%>EM%0h?dqN1XV10h_TsJ~-gifibzx*F%OAG;nq=V%?ql3Gr| zz=4oeY~M@&dNf>YH-i+~ups=-Pl7af9ex!bYW*4-8Zynuu=2zaWf%%S=Fyv<;3hOYL=du(Fk+1xM=)CLEzgn$$ zUSamIxTqwAo_;<~enlMm=M-|2jh!s3pnwbivATM!ERSNS5TpsYRuqbIK+-{c{+)PA zm3Ly`VzH^3+=&Kbtfc}fv4Dz_lAuBod)EOfiL~L1Ck13#mq40RJ#+;viF45WZ)zBq zUj6*ODB66ceJT@L}S@E_abE^PG4Qf66b%$ct#p;vDz0bxp#9K#)b zC?`3XU&_It-T%f+hJ@v4;j3{iS(SG*x%_K5PpTqKv*`#0LvReAX-EdURviYvb(FtK z+y@%-#YnoTGMGzdjn|hcBHl zAoLP~y7Ro4ffS#TCb$O+m;!ONTC3>PtVAFQPE?Y2fmXgnPbV&K3D{XWxgWxiZW){{ ziMCWb8^p;j3+)N=f-ws|r;2O;L{mmgIRpJj;U>v#uf@Jn?flBkg^stoiq9%3DaEL$ zfg7u;UX#Xqg(1PjV^m*?AZWp?9&83|=yB&8ags8zF-F6JWf7^Y{HDkjBk%IW_>UUk z#*4jKV?&9Yf7qf}TPG}lM97qb<%1ukWaqazKB_kc4~f=Fab<;2xp_>i+Vg7d=n%t36Pe2MWux{*4edN+0oASBXEia# z4{~-+n^{;$im!8#n@ZE*4C`6J0$@9upLkNk#kG9!X+ap)C$zkDlS>U2nnw!_7PUmh zBBw#kI%yxW-U{wSJB&)WoqhGC;9uGeJy>j_eOPiBQyTh`oM*82Un~Rp zL011yi{l>WuR>NV#sEXIvd1qAq=0=>umKZzxk3^tbA*~z*=Bf5V@;kj>fg9(mGr5L z_pEu_ziSmUELGkMn(+j9koZhmPu*^AZUo#)XLeGf9%nUxh2ys@HA2_6+OtwE4*J{IVgVMMixi^NH?9KLqIc2f(y^@${s3>5z5ZemgIisHmu5 za)g_T%Gjwmolglt9)Fk+s@JFw1daKx_fCet3Xv5j$p^miXrH@EB>e*r>Oo zsjKz;lv`|%-I{6iX3T0)CXe{0WaD0q1wJ4&%ngj$isyoQSUyC{shdmu_rF2>rZ z?Lg6K6Iii?e~;b_L%nG^Yy8RsFmBb_&Js zBu+g6X`8blmN99d+RErjdFXgC^E!&vXTU`8tbt0r!4Y{U-DMQUy9tn`HCu^-gix$GGs? zlHE-twpAD|E93Z1C73_9Db}Htvp=ZALyiDhR}_?EdtYTp_6qfOs-Ha6nd4XyLGTkk zsCitjo09$FXAU?p;DIXe<`c8rqy6Ynoz-1IP>zBB0U?;b7b~$t-gKSW(#FQ--`~ID z_7L%YR{DV6mN~nOJGJZp(bL#iqUHJd!O4GL9V{#?RAmNjB?ToVC2I_012e<(A5|=A z`sRZ1yHV<=Bi3(#Dj^*$DpV(P@g zWo$|5x#}q~b=aRvej~uHa{Dib!Xri^{vCTl@o1(;zM3CXM<~;2do0_V#~5!-QH*2Z z3ZNS*o{pNZnU9hn-_SE2@3^*+z>EO~^|?z+ z89RCokf!9y%87iH#!(&`~J?7Jo1-+}B) zwm6T{$(1jw;w0shL?w(KUNZo2ei`i(H2Pl{1TG0JJ+iX0*_HepcHASU&<)AZoSIh1 z!t1ZMM)jlV0!JUFc!}hW>jj_P-B#?i(8@8zJC_v|&@)YOy$wYR`zKO;TnurR+V1H+< zE-o*f$b;-6AnW=GlL1zX21y*3T*t-b>G+xMT?Sm#(fw+>$l2)OnKo&VZwpJn_{4Vk z>8qT0@ps_1vt;Y#wi}{^!E&5u3&#$d%u>}Oy%Duj_pT85fN|7D1~(vm0!BabJJSWWg7lb|x?qHwr%27PTRT?u$|;p^)WPH^u%BHi{$nnbu1tb zQ!4auHRGw8eW)tQ@+#oyWWk;h_1|)k;jnD$n*l54LM~1LQ=U}!^t3dm&8s#AOjo=F zvtOK>8Q#g}v@v;f{lSQ`pR@t2{N^JT_6It;nD`tL*cCvG2|N z!jlR%1~x8I3_jPg_lkjbYIy;>xLYr_s|9vXM*+t0WX|V4WsygB7FE5P0qQ5KvuKt@SUP5r0Y`j1e6rb1)Wp`p9I3QZL` zL2xuL9(oj?;&&%#j{)jA;@XEEADP0tV9w>wC&nNBz(reqq+ky0x8Bg?{Cs zeg<5CRhF-*ypjS(uxK^Cofrjs4(d@bQQ@Pa}f%KzVM`wlkh68$JSH zbM^ZYhX67>byiX03-^bIO#D}FW0Hx*B&07Na<}(oEV#v${%wQ)V8PMxg=17VeQ&xq2p=+jz$zSza za{_!CmxLnpchoQ<^RS#jV->B*a2s=6&}Sj}<(zA6q5l`Nemm8WWW$JD^MO)g>ObKk ziSUkMf-RAC)2c1}JlJMJjOp7@yI=l+&mXp`_K>!7TgFNn%`K*YqX$&}@glID9YwfR ztkam+tYb7=aWoY(B{AFc%)rVZLq*g2`AQ%&AXblR-g(dPW;(RUynRWwI*2%2_~C)| zT4_|!Y(RBB?929lK+vY-Oj{uOB?c%O2n`h?SzfbTj%VLr; zCdQ`*3H?@^%%i0{YX#gvl^2W0asU4Ec5{uZ5Xd1@grYWJHdSbq&#fVyQ$CZ!d)%F- z^Z_Vx6!(;E7}iJrfdv39Q%wx3lA`nW`6~k@TyLGYLJ5%k+Lc>CX-4}gGX>=f3JlYD z*n%i&LwfO;rO^t#g2Jl%46ySn49QA7`i|B*Mxr)!g}J!67{vPCSLwQn1Iq3m!xCFf z9S?9FPqLyV=^nKBa(o;p2_g(W3>qR(lpL42x(eqci(d$=`goSYloyvcX*)9geSOPo zuLLWTir(o-Fu2jeczx1xv+STf+)1BuL(Q9Hm2cnoeIVEgLAE#oGE1<{Tn(xSjf1Nh zH#6-_g*wPb9JCgUerjV4F{2qF6V?&B@B$6r+vN#77y>ziqoX72Nm+SD-#RBJCmKl> z%(%AQk!A4ye@O!xd;9CP;A%6#?mfaIAic0ev2Czg%$jF*=M&|$QC11;*ZUQakz-{>b9KM2BLeSZS!-DZ;TY=Fx#^ zvKM%4gX;ldW~?@f_ycFb+~cI7;%Wl$atZXSR67uFb9D^~I-O@HFK7>a!sln7;_cWt zI>F9*4+LXA*6I32d;{QHM&I8ftj43)2=jD8ZJgM4S)Uj&LBSg!66shb)Ac-3#tSB*f#Oq(RqLFWZr=5uhZAB8DM3|3QXdeUFat*XKMQaX!ydyLd-^&5=Kf+Tr{s> zhoRPQLeEFE;&N#gC?iGjg9;mZ|*;|PkD63`Nwcd z<*NHdpJxZs2yEpdi z%{(CFQ9AU=-kSKp(DZ!lAD=*Rlznq>)fyuBDkpQ04j+vwMg|`rpEMw+`uGr_h+yVo z#2>V|ynWOKiXid0tOqG*_pEcm%?}BFMd2H4eoz$<1FXM}l5vW{BdmL_fbnN51NiU| z*-t3>vS^A=FEf?(C#R<|;!AX+;8b$B06sLp^i8MR@xZ3{&s7B_*fg_T#hne=j*78D z)iltW6HG$}C-qL-AXmg0OCb$q_5OUj2jH)lZEu^NAEQe@ zSbd=ZJ@Ys1w97b(1S}owTqCJ};!o_Q4EGRW{rLuq*=QneRy4Ut9SjVi=2DR<{E%=U z<*{VI)$Gjz=4YY2c3U;P$?L)D)9x07+Zw8ZQ19PRL1^MO75w}vNo8}R-Sg=j%>Sq5 z0CsclQc-wGQ4*~p>+%g8CB)A$evhJ_udFL&>nqc~*su(AP|%Tree)s1TDuRg`hfDP ztqkL#h(r@7EUsTi1d|+2l>5?9jDCZx_vb_zMEG)p|I&*`ybb5Rq=5FAg9GCrr;wd{ z-kim&SLXU1%~7Ra)7E+!FtiAPAt zZQ}msOybqfE3P!t?e%)DCv6=aRJyBJI7Eym2BomG%NP-k+SKO?1nS!m+Zu?2@Vcju z<&>L>eIGE}!cpNqEs+BZloF3`(*|X+>Tquw;Pjj#~ zCSnv53^ADw3RpcvwF9sOFfX~VI)|Byzw(niiW~dkVl2_p2tOY%>Fe*0=J>Y8=$B9b zpyspq=@l(w+jiunich_-cxMy2v8+6U)TrPS)y~^cooCySxs(9NDkmyE=<$r1KwKnQ zxwu-T5Sb6C_XdT5Pk9j1E(_4(IosJY&#hmHci+B!^U+=-5lwaLkp^PnPUKX9#|pMC zOaFyek2tlzfo`JmNCEDKk;>-L?DyPHYAGX5;MFCV^wZc5a{^jWXUvWCwDd#`3!_H- zh?O<8XQ#iv-v%5Aho9PcFMfW`fSLeA^|@)HH(Cf$$hjb(Rf{ahcmc@yr8k;ip1CW< z(gIKbQD*22MySE?kTakaKr(Qgc&p7|`7wbT3lY{kZ|Rf+!`-E3y06F5=deQk9G|&PV{krO`7j z^;x70k>On|-i_Nv3QlWdi~)Tt$OF^%v;pV_dNn(wVLQq(>nOGl8~p$%wr03)pWfkO z6Vhv6cQm^mW~Zgyo=>TWMed9K><}}K@Ksc2`C|a|9_^*^Svchf#>*=(Y(XF=_5>ls zKp>1D&kmE=+vO8${9q?V$eor$_&DQcT*uVAueREo-!r|hgn@|`G`4@?(p6(5u^ZzNKr`N_SWUq=3V1yC z17Cb>_B>hdwF1haK*VSDp^mLpPK8g?`4h~;FJNOIQ#A9$K4t;=c3L1(o1<)SO$&tU z=v>6p#&Xf^N5_cZ_sjrvff*KN0dl)DMbHUuDc$lvf+@5cLKFmGJ+JaI;l6l{@t40W z;eMuI}jt6xf{+&|*{KdX~&VM^5{_?X!R$I#yOZD2`M%w?lcri0TK z5H5ZWxRcPgDfxWqBMf%sp#MozYS$Qa@$#s`<>tvRfJ`lEh~OEOV?Z+JplN-R?Wiod zG0Iy>7I59N*S&#lL?^EVxw2O6tt6qyS62%QHj|{W83{l<(*aUyM}btpT>14?953N% zRYv4zmp(Eq@kpcm%HK^)rIBst_8)+Pa^k%R%g7h+w^h+qPIEdK#nSJVg(CZGBJNaWFP zDGBg+sUdL=b2EMX;M?$YS{%-PyCop4Y?TBYfSrGxHujhSpfx-!8`k7})gV6K_Fxh- zyiXJWy7o3$ZgV}fe`% zRdfu0iRtQ_RQp=H7{U-dJUq)7O7ir_R@ZR+8xhk*emQOpYm_zhO=SDuHxfWpGGWBD zqYNy0k{Q8mYrFcq$0~=0`DP2i2wmujI%pT^;HD~KxChX72EkWyN2u0_P=)udIxlVI z2TA@Vmy+oGlI4^$0JLjTR{Xcxk7pAm9X3v2WxCGprg;YGV&0DcuY3=)Dd|u{{E!CO zaps(`6mo)~IgnOhNF12+Wyrq*W8^@EJy9+{*R3&7VuKglT^$?t_T~H!Z$CK5#N|Jq zH+G&5{bvR!5T4`vSaK^0t1OAGW5;#Hi~h#~0a00y^&Opgktpfw0}rKm>M*{KsNGwg z-r@K;1CulP#N|gduufZ<7i9lZ6lw$F>>vs6t&wn07TErGcV|hunTzJiy7V59Ejzd? zHPF_!0PI-JvW_%o{hw|-Y1TvqJyPkXkMWcRou2Q}72zn5Ta zs#wyDWx*XJ2=(sCxi0WIobUE?ihxJ`{uGu70T-Ew|-r2Z*Rxrbsv9TQHyo21fGG@nI9L&9C)P&)mQ-fTbA=v zY&|!62E9=M!qLP!9X@8s5P&DA^R$H-GeczB&YnK9j3Oksr9KeR_yQuK26TJS0}B(P z=#H=>Ez6?v#z2C6{ZVkb|0p6!*>4F6FtGnuZ<>st=S)@_vs{B9SZ#weRBAc;lxW5n z?TsYpBvsH1s? zfa^G`#knP^*Q7k_IaKPgskuP%hDd(IhvZTOsQ07d3vsI%8xO)9L#Ob<(-WV>PdfWN zePnr`D~rtOyS~4PAGA~|MCz1h&T}-R4&4YVKUwmJ+q=ADd}&O08{!u|tntGWTMwYuE*YRBD?qm>@02tR zuQQMWJyJ70Y5)*z9NKWpN466Hb|19qCh-Xg-4+41rSHd)lOHH382tZzF2D+n>7`Zz za>?>h^u;^#{F+lySK$tT4uK4#J7{+pyVM2*pA5LM@;ny!rMns(c1AUsi#}K`0eu#* zI0Ja*1h04(6?hTgcA`~rCiZ7*K`?1AY&^Xt&m+p}hs5=*` z1C%CHK(4G6H}H@lnYv|LH8}u@$3W$5H`>%vb=L$Ksj31UB_?cJ?3)TV)Ud-|Atuye zZXm!bTsv*{)lZ%wpn0UxidpIqMY0QMj6olm83@}jmq&i*e3S=u9RzOX&A#wwetv2R zm_nMfM@3bw^pprtL|b$j&NgP+nEnflC+0idmE<0RD@#cf;y+wogd zQxkVzXS@gz2!rP)p_g+@>HDiOd{fQbsgE)*^+$o6DIt8clSQ(SXLmg71w7|y>*!cu z%j@KF7U+FW`hqR}#om8^FubV$qZn}vxu?{esw5MzD+~ZDcbm`Rx6j12Gty#8bHRo746 zT5fB9JbgudB@Zk}E0_5P6YYEU@RohnPww!cZa&tUnX=W4(3CKV2dA;IfwG>G&H|T)#or%z zhYg1qDkE17=2!g5P)}K|i|db9q3d;8Ns}6Zr=CdCeBc~LSr7XEZ~Z?$i9f!6O`V;W zDWUSWRL<6FD$lZm+L3#4RI8}zV$}oe_IPJ*wi#qvL*)U!(vw-0h3+pS0*cl@DIVAF zoc;O3Kfd+!x?pw`AJ^nbc*yKV^IejB#;(mQDOp>YVyP6obg1b4y6p0@a zPQ&sle|N~<=QY$`5AqvHoPvMf_p;+vreZg!pGeeYB2P^~kyFS$qzqbIRkhz2Dz9Jz z(WiiKmZrbNQ#!(pZt_@c413zXVkh-T1VN8d(67YLN<-6%o* zA>EJM!@AOuqSzV zFF8kie(4I@Zfj;BcO23#dr)EYvY4xS-$F#pHmf~ zehdx;BNbR_2-`)j&eO{ljgE#se0E^Y`eEP`sKk_iI|dpCM{`ig(E>xt$;J_qY}(=b z1Lxr2Ko`QgG_Fz|^~RLnKBO@XP4n)9c$epLYfP1K&5|BJjorfm-qhx|^>|OM&gPOg zu3R29yJwvfv3~fZ;_GoiCstUI-XVyWlJj-|gDOqGI5Fi@Z!ncrh4`3kf47T}zSIJi z@b3Us+(uLW8y(1R`e)Nm+AXd1xT%5RG9Y|{e87*dq{mB>NKV9R?Hax=EGye(Yis-F z`{m8G%AeuSqfg%=_moZjFnh-utRG4%E=vdZy{D%?!{q~;2UaH~9O>6%|C$5_kj;}%1FVh>-FZPsO*PS^HqYo%3 z!ai4XW+hE&8<$Pgd7+Xx_NE<+MX}x)NR*TD%T3>1$pGkdCsHUdYW^ZcTrul>7Ez(u zm``_yWy*?41IPc}&Vc#C{Cuml83izaa&kGRDuh znSa(a4C#y#=Yb6G(O_DTqiq8oqZlmuF|#uh1zZsawR^r(*y}u=Bk=?@Z)t>dUT)65 zYy4(81L^X&2PHxgCVg^MN%%Tj;Z1r6MeiM!dsZL?lNyUpeoy3Si14(wD^YCIw9!zM zm5`#_50)wSi_1$p$8yO@>_iIEy70;qX9f=XEqi!anttf8?SO`??fs!;ilE~x-eO~8 zI|E*WCiMnlA%7$!$ns;$7pm6>^9Y0m2%|uJhArnkC_;)bUcW-FtaDOCML&n;YfP?$ z`+UBun)PwZne5^92`)Q{vT4JNu|zdYiCWcrZ-3w7@bX4Os5cDe+#{S&EOT*j@u-cBN2GrxS0W>UJK<_=ZLL0bhv5}; zxktOWs)4um1HMn^bzNYpU67#K00!=#1+PQ z692q)2tC=MC5l0@7N6y8kc(i=xkr$ri(hV_6yK|*$A1f$?~83n_0-kXd0U(o4B7u? zj)Bs0^eW?U6~~~*D~mpEG;aaBpnM4P`q{b@^?7_rqMl!L`jH_{BQaBGbZfIkgqFBC z>5~;~S1)_<0wHU-(OB`TZ1i#r^ej0kDYUq^7sY5yw&16mg1qU5ejk6t)$h-@(iMcg zPe4GR7Dg4%EjxKh%(FGf6Hzi=imr>gbr3JmfcSVo!B6@QK3gvMm8Rbo9BY?MMtVI< zK<wykz=?&melo5oA`dB z#4tLr;LHnlAw?nJw0$Us)wZL9e`E3l?zIVy7GfhZfiwsvZ;+=WII++5k9F%-UGV4iXa?4KM`!dilOs1oMB}DS-WMHA4q41n9geFNsWZo+;T}epUZL3 z?D?<75VMHSDS}#Qo}Qj<5LRo_u&C?@qF7QD-zH>brK6B_SKzOe_Gdy|urHS~(a=e^ znp;5<(|D!_7wq@=Dw`(TPL8n z(~^^sc@-=jEmpah0}a-rfz{R3OPS;*64xS7#7>Y91)L?~aMTf+bxu)pLaI-_iYqsW z?K1e5%2}*D{*c4D2gws-4<=N9Dkmq0+K?hUmOquW)jV8w2~Ik=e#Zi|YOK-w9gwE? zrVt;H*lh{2!qNp)AA!~xi*}MNZ|P|;tI21SK8g)0Fv(ldxGmI>zlku zSn=ZaQsRK{Rg{L-lJ=knvq2r$oQcKC$_k4;zfvnn&uX3<#{9iNJs=shNa3L!5m7w$ zgTZNRo=%Xr%r6-8X56~DyAK{_W(!dBo4=3agh>&p-50Y-R$mb&p|}vKP#g{>n74i) zNBKA?qHnny=wVdPLvJ)y{sjCmibB^KAy(sxUGnqurFNWQ($aop16|&0jZS0CGBPr$ zhexWgs9#8FCH)*d{q$_dC9xvl*Z#ymvyW>?u;Y4m4PScu-P)de0gy(Kfo?4EUZ`1W7ib0WCe8K8XENXg5c=4rRktgV;Ei>g0G|)l9cL# zr1O9P(t@xFjAkG1=B=Y_&NTr@7@OOWR`TH%tSCx|J@f;{OOoo74EC){q3{OfW3vbr zAIOX!!;T8X{1OSWQz)C@Hh;qhYs&)&QlquqSQ)qj;ouM(kuR9u;7uf{OCqF7fux|>$Q?U;k8 zRK+nIu-z&qiNUL6#MmU&Fa)OosZZVgwyy5*o7329fvk^L%hS_7U#rcUOOEc>DU?#64{2=;+93$}A@!_)CEVsbX+&u=Tza+1?~9<~N>Q8T>|%04G^7+oFn zXcwF{=i}MJK_c`BF$?CXQcFP_5nm!+z+&>Tp6cvmJe`r+%!qv zzyJir-6KrjIDxtLVL&0=uj%-0+bzjB+*3Be@LbyOQsKI-NDX2P@$%54&q~1XrYv31 z0xM*xfil^0A*_2tiaU0j%g`QkMW=`q%p_nKc_^DXwwexR!v(|9J6hTnnb|uzf6TI? zdOO0eFSgtlYE{Simd*8WNt>d88b}6{UNGe8QscoRYGiCYrr|dgcAv<5c!|jt+wqT1 za~u`}s{`}p^c}!;y+o}07!sO=9MLIrlt4mpu5q<#HBUkTnA1-G>*V_PGJk;46hgKp+z*{r~L$k)IiQBzD3%sYf?TB%~a za(msSFzi(K@}P}bt5;JyXj(1nJmzWpmGX#BLEM1+^qaQtzde4tv4Zz5?IoDooPK=s z@LY>$Z*?De)^m6UrFbep7K`gCyY@yvS@7XssjqEx<9G|^HV;KbpBjaPTt1Bb+*o!_ z+s>l-nt#z{uF_~qRguefS&EYGC0Ceizf+<&&>UgK#bj6N?!s3DqqAK0zIjo=J)&r3 zuce%Cv=~O(PEJqd_k)-wYFuw>40!{Rl~jetz1L;is%TkEm4ICYTV86L+uv?G8rEX~ z!5PJgPGXNf`(&U$iXF^AY-Rosm@(b9(WAIJpG4iX(as|9zUPI?lP7?W;{S1U5fiO+ zbV;qHU;te*g}#n^cab5loU3%=z~_Q_X~_}EOhoC(%=ZTu0~MI0E86IVh!vN+AC;c7 zDB^y3ECzlPch7${4_Ud{A?O>^n}KBFhwSy(zdUX|y}+C6ap*>AN5QH)3!qWku^ipzPZo z|D`)_lzjvG;1dF7o)?Tc0u~@m)N#8h|G?8|BbcjEqt1e#&4JVe%GsLq#|L#hscdwz zHnYRFSO#*z>0Vi*6>zae%Tl0+st}y0Lf<<+6N8H`-@(Kwu355FD+53F_Ll1OxceGg zo}ZgQeg_Q}h%=oWV|u@B7J$6qP;A$5p1h@CCM`7)-d~qK%EXjRUp|1yM^l`==$M$S zg@Hoxp{2_DdAW1x=eQIe*H-H{F7L(t21()Q=gsrwj)mjig#Ur!EOpML<-5Zm zh`MakRYCxP66jZYInX`u6;3`UqQd?eqjFn2D{t^FsB zZ}N*73PgM^j+{4VP7kj=yyPCg=q`EbkC%PCQn*6umW|S5jp>1M(f^I;?0QsoR|uYT=hWk@zQbK%zE^#m6F^*{axtxH@oan8nSWo>KU+Ki+ zc+AREVp>5=omD4|^YRB%VK06YQv7B2?0Z+?E>S;>-NULkq`u0B0^Dv(=TY^4aQpku zLLZ+LFpOZns^43+KOiD)hJNoM={rOs>_Q}#4r7RE{V|0K%q{UX*#YLx*Me*8BDYa; zbHbzY@f{{g&?_HWZ=<(Cwf8<7Kaw{*=ouJP7#4K| zoLaSW&Ft_xta$ul4=-t{rr#OR8f({owKqW+jg@?t)B19AQ-Q6Vui5mLVkV9mpyG)M zqPvKKey`idQx{+a2Wz8H3P~h$+d*shkO*+5aW0h?huhEcVVy#bG%U-pze+Nr{WHHMQvW9n;WheYX{+t7mVeEiuojKR2i7wTRv-96 zk~pP83ya@QgAmzs)!@<9efq7R(4Myf1QycnI^Cr#r;diM>mmAWUP&0jORt6;<0fz&8`G8sCkH>U7oU_O z36)Z1#0TFcPbHY#16`5KA)}$apUn^Vr6$b2oR{Q>neU_cGsjHcA`qwHL-rJY5kiQt zm^R93_y^}Xy-lB`V-`pXSCcX}?AGd0YN2`u#7Iq@Q1>p&@QCO=@*81(Ga42uQtdko zXJO1DHtMU_0A7-P5+@`J6?VDr4juSOK@ymaJeI)QL4JB<6NoS-W;yBC;B77pe7fW_$70L~zWNd^?n=kG*Vt9Aah6&>d^MRn5iq$nhFcQrs}u%^ zmY|ebqz#t0O5iWitM$9;K1KY`rfH#VPs_d=w0{8?SAaH!>@mXKWSPYOY(5wayASlG|!)TEjDf? z_4g}nmX?@M1lA}~b@yGp??P6D)&RTLn?_Ia*8sTPV*tdM0n8U2IS5EAYOZzCZ?z4< zlS*Lo;=KgBv;xr}w1e0&5&AMuq=-`B zj!t%(=L=T=(j^}`F4qlHKVU2~z!e~e8hT9bU{MBKRR=HJ=d0WIBkqt%)pvJa-`B84 z)ZoBLZEH>x)b#(v`9g+$$;!GH{%F40!of|QA9Jf}d4wa8g+lFi2!5$anf2kO;AsDb z9)hdzF~qI27st&$q?}dAJ58Py0JI40a@eNK`_1Mz0D55_N^0NrhrB3W0>*s#Dq?s7|`t*R}Cf7$~=Gm z{CBDv)8g;lw=awRX*avnxID*KsNH|cSVWWzlP|{mFbL7VobwmmULP)?JUy7DeC!u7 z^?fLj7&vl@>g%;L7;oObMU~x)VdTL}mz%qAOG?#g&(>ORY(%vaj(xH3OVK35$>;aw zk{#w27S7b78(hphxf}pkvk@x2Qhz(lC^6Yw&{NRNpqS$Kep3GOjr`~P@wxaq0;JpfWC}IHPT~K{aJI`NAeGK<-hY>bYD{4W%hoo4$ag#SH6E^X;n%e|k z{CHQl=G}WOO&o(;DPo=7XkJt%z)kHHX*6ou+c6-ll2Yuc%^6vC2V#six7&m$=E;Se z{!ZQq6;Y*qk?@?pL>7(?(=rsidGz?NE25&av!jD%6MLSI>4l?FMu;N*$*jD1ZAlaJ zMj359C{XeN*F_z1zHg3qA6Q8D=SD?l%-xSl*oq(%Jtpcrb(C<7WV#3X9h}gB9hY=L z^tRak+tk$5Id|J^n%Fy4=~Z#i?=a?=IlXfRzswt)R|+J`pNHXZfBo_j${Z`Q?f-_) zViIE)_$!S=^VHMZTVc^BZy(c+0!t}k@!zcjXBwTDm^g98*2OP{SxnC*P5JPa0bO8@Ur!__CpV#Y6P@v|04M38 zSRHF|uP8(8$IBkb_Bx^zSCAYUA3h&EWN}9fIHesoSn=MIP`59Y)vfx}{l1;uRaIl& z?(WJuXRO?V$|`pt+PbZln5*a93AGF6Un!T zLbL9TUgRq)D>F;5vei7)G=IOKeFvIUv=elzs8U{_Uz2CYiOQI3MOMfbjBV-pY-maa!lnt`rr=X%zhu-)*)9{#7(K35%t2Qz%|I<e>?`Bm9QBJr zlCleF;44Mx7g}(hh?)feTA>axd%xyziOOCWYwBjBm;p)_0t5kCifK(W#5O0Uc;=|^ zagESDdir4dlf5|>{1yR@NPYssfu~U{Ae-;+1;)aiG+*klH&{t|@iJO-MhEH+xFsTD z&G+vQ3SUVZC&P=5?07inywq~%J30_hecipC%JYEPGVL(newzUIN-24xYd$NqE!OTY zb0Uqv=wWPSTqjGU+|Fl>qmqTt#m9DP*B}t|^j{Xh!_$s9J?_Dvj=Sl}dnpmb6}7TT2dTqxLY!5!tZmqN?)T_WeA5eKcQVvG9&D zga<2>9x6pr1*p=*3?uD-hP0j>huzAQg9`UXWS+B>(|i)7NfcHyX@_V7b};UT+<5v> z)~YBL^~ws{wBoc2lVOS-?fa4*QZkE(`9PY-6!NcO+p;=5Cw+k+r62QvN;{>L_s{-) z$2YqyFi%ocLQ^HcG=$MBUvB|4n_Kfve*x|(|HlP8O84TDaaC`e;OO-}-c$P#!))Pu zdV(hRjV1J?@AF171`^M%pd@yQDCuz{97JUq1C1l5P@ycyD;8Ix_xdyW(RwZbm-_s; zvoYrwyN2s1imb%uiI{pS@g2RTwGRBYQhoj)hy>pRL6|oA0#VUCf!xW}x^Coeclw_| zIx2on20v^AmKGEz3)p2|zl}}=3n8~);MDRBsoU%zvCVEvJ9)B^vX>&*Y(&L=BUpN| zfJ4i00|cHh`_NH(KTw^CvzW0Uo{C?wOg><^TY12ZFB-(WF8l1*pj;_K^48fqO751) zcoF*9y;oD@3t8sa7G4Y-X9AI8Ys^E1tf2!d@eC5aw+jpm?CL!ra9N8Wu5<iK7hwanALMwAx*{E_-z0wP`K zP4+7?BKVZWWs zC=#>&8UtMkmQuHxyk+JxjL%j;$?sMI%z0+#@JB-?8ztg{-i>8})bHq^lw6Kap4RS9 z;Jo^Lda%4OULcp->a{8@8gEG%Iu}rHT53&cV+FmuQbXw8lfz&Xj1k>;Ux^SmH_!1k zMO{G{I4ahY=ggV)g#agfUi`$jX2eVyf}_b;KRClKTIMhMfv!zf*xK;Ps7J13(*Th#pfr&HboYomymH@&ieC(+$m7Qr zP5_)go}|fht|P;eV8@|IFA!ELY;r=K4zHwTY4L^bO1L_pcY<8hd8l3sbPg?z|1Fmn z6uG6G#!-Tn2uO%sNcSAF(K0!2m~g7HA}_$kjoN_GQjI7*9%-n2lO=bNLoXCeUu@m< zUyzCGVO2SPb`5O#ue(d+`Z3;m2vYh}GwND8zfBIC5M?R?tKucfUbWM(;Rbs-^v%0k z@?!2_s?qw39uy_THGh~8ps?+xGn{P;zx-7za94Jz?iI3tuN17FqKm95Vqrw&h9_mC z6!3$%Fx_Sb73kuRhX)6w?tv2`@dWX^TdtY_swK`W=YJkclD?i1%HsZOrtnb^*Rg#k zhzr4^b}xd9KAboup8Yd;WW0yo`tWR!b`X;bb>ffilYGZ`(hAin+;gKF`E3Tkr;naY zatD`)WG3lb3t#iLX5%Yh+No^2_YS52?LM~PS(W+Uy-!tsP zkj`)*{<`TBu%TrWisOi4a6_pNV;^Rqtvy=>&~!Izv$_h`{eJuN2P!xRL2EYZJj^;c z?4E)#ugGs+29&IA{BKZ6=Y2~bSG1g0oPOc+wEEHRs0gA$;qw>!qH?_Ar&TYqUqNZF z2p#Sm-}Dx=lT9kufC6u-PH^@7HF)rt=b2XNVRm~%DR1^W;;5!$kfUBT5~AB)8Yb@I z7i4aZ{f-H4M_)A*WJm_5!(`X)+dO0a&|dNM9pIPj#MuRodF|3F&JAG*a-UYlNF^`q zJZ*o%c}M(3?X&mu^ksXV$k7b3^RDdlw|MHLKl}p%gfKf;b#gfUB^eQ zY;@{H({<;F;9TgdiH0U^Z-r z9fIW)w#HVrX>C!!@3Zgn8Ox>|uW2s$rTRucp~#E#zxgGueAqtgJ&6({hKfA`PDE_( z?oko`HoZe&$mH*dR{Wdjxl>wn5v-UQO2Ob6^y<~|Ezk#Yp?52!lKFtkNIkqXp`3o` z%-5>#9wrS}qxZAv+0otq5iA&7z_072^>v@oE}zJ2=fM{AB`{nU>v~CLFpLyGjH8tB0Ju4G!k%7 zMJTEc0QYVQUIaoiQFq}#2%fP$j5DKUi;batm0>76kbClI^vZ`q6pN=?dqeK7Zn>(bCu{0v*K*&^0;e zIe*IS^*`X{n#foF&bqxokWy4sB4)+kz6Fn5dO(@e;U@pat}!6AfqiNel$uB@G%*RZ z>tDGO3gXBbe1FU^T+y_c{-aK(ZEs=hRtufKO*KyIWPT3VoRVegK{OPdCr5D(g`)-F z=#iAF2H=4(x3#r-kM3XzG_eYFj0zAIdf9nc6Tcu6z0W9dF)Hjwqd0~^VM%tFP;E)iLT-;g4 z*Nlx{(%^O(;0_qEa zLnFM16Lxhw3IO0R&Bvr%OCX+?c6xexNeO*iqhKVM*$dqEHiAcq>Pall2q{GTv-zzC z;`~M`nR)l%;QFljoR)Ka)eKp#v16_5TlEbGw-?Nt{(L_Vt!KvWN}E2mbqFL0a8;?x zfk>BU^2SP31bp}2*Hr+tERr`^sIS>AOImJT&tCwNP@OA~a3JzYo4?rKpReisne9?= zPkyibEt!YAJGRm6IjP9ZDaU@A;@}-{w>98prvZUdCswfNSsDz_$k>AF&PmdKhpp@d zE$nz4@tbQfCY(j=cJWE+dSX40J$<>O#nN7m+lwH50}!|vh)@Z| z?=oxsQkD2AJLGn$r>3Tsn@(vY+YtjL+eK^N4Aa+~44Ln*p8zi)k{USNY{78@JP8B3 zSexd)#~4ESxi&BQ2)dN6=V*B?6|NGnfl~{Bhx$BQBEVg~lO@zp`}H@6J7L0hJ1)fy zXwEXxyST4d|9UWt>;P6=ab^6Af&4uW_rCr6L@e9|G$Rcbycv3R6`VDZJ3-v7M}#U3 zTpRru1;8@*0iMn6?Be1%Cl5!p)m-deG#s)*Zd~U;a{pKO_Ls@n*x0oP#_d!14BnTc zo!pVJIOxO6MABU9YQu%BVi&V8MM1Mh$3n9v=SXJ8g5&97%#nj7h3YiTh|feivN*x+ zLh8#?VpqK(pQ}=!1wTnP@eQWk^3?SfCKLz%%fr|JY%ItQdzpQPcSgW_5o1SJ;`@9B z5T)90fylx{8ZxT7$++{Wqa#?NvKg?Bw@<@iIT>;kw!E2R3qTERXsM$2c%+Nnm&8^4 z=w}6{S@Q~I5Z;HKb5|Sk?o^vLe4kcLq-hz?m!X~L5pvauSN;Dpoe*0}Z`|mkCa8g9NeM%Ul#5HW&G9(G9sL|*|x`&yyTZT*W9Q+8f*2W5zLwGX~bpkkUN}{j9^h7LE zTr`4~Uy|*o;Ec7`IFF@-AW`05e%NtL@q?5U z+!~e!Ryrg9sUzQN9D=$NhhXKO*6xhRh@muiVveYntHHzRif?OJG}M5N_b&X+7YkFt z%*lhpL)~1InhZHS5AbJu=B4>F5Vy`dF&TX-l#dM~BBmvTq62H7-~Fcwv!_xRF})7e z?C&SGpJ<7T{rp`Crl(;EJdd6;hD36&HUnzre@Psu{^X{NK124YDUi~Ldp5u|uB;yz z5fziBg~Ntraow%oaH3eNoo;{(L`WzX1eaZYk%3HR0a(rkAa;kFFbm3w35*M0X^&N= z<4;v%+!wXa9Ulpc+^$6io4kS5`&IsAD69nMIN{xsxb3JVUfO^IgQaY6H@SNa@n#WZ zul5;XYYya;L~Fh`KX8`>vTNeY=%pL2Dxmn38ReZik8|P>r#Ro&UoLdbh`{^UoG`mq zy$EQnGahVimtr+Qt;;s{S<02j1rEsZRPjWW83F3~EU!*TlQR%nQg3=uelXb#G%1ee zL$2QQ9>4*vtrRWS*~Y+UX;n!bjOShgcT cxEtC&6@6<-JeqCbpCUjSsyZsQaNDT=0fAll!2kdN literal 0 HcmV?d00001 diff --git a/test/rendering/ol/style/expected/text-polygon.png b/test/rendering/ol/style/expected/text-polygon.png new file mode 100644 index 0000000000000000000000000000000000000000..2f3e4f8bf4cbdaac59abbdac39e77fb843a6435b GIT binary patch literal 5732 zcmeHL`8$+v`?gGx!VHo^7(zmrNaHh79$T`6>=T+XWGvaY5Q?!CDQl>)eJqoTNn~q5 zGInDuA=!sP4Qa;qKJVY~{poug?|mHi^W4u5_x&8_eVx~NElHNx9r?>~v)S{o zT*zyvsoVoS*`C2I-`)aiRJkYlLUH1ky3H20M{f{~RJrqEePw$p%2a)ZgA+Qc$az>C z$`P9;d|%HJspl#Tk%o#0Lcx#2dTnVOUeJrauYW(_fc!LhF;gba$@?Wuy!sy*j@U3E z&-crQ99;ghhtFB?>PZ(uPWd*%?(2Pj|M8nJ7nGn7n~?7dp7p=&|A(uaXu9d*GF{l< zymlHE{wz0CBqN2W$YxCXTc-X|%z7Kb2 zJ{5XvO%yeLr+re}?ZB$GuD9&;=IBPThbT=|g?=PdtFx-hg_9FL3<+MWQ_84l#1t;p z+gwI4&h-=wWd^Lr>%FtoyPNw5zF`g_YJL^aS$%zs>rPG1yS*W0``519&Z-yl35H3E z9;x9<$3APae>68YBWlN1Z?Pp29wc&=(z9>OBx?!Cl>tX_h3RI83Y$VN?dO{(bkD(e z5X=bJSS%q+gUN6cGwgBYd-$ohBc~ZCc|}Vh{%fTuQde{LsX9&mo@_iHEwXZaHRcZT*Om+7Z^5fKp~Ul*CJt_zzUq`~m{K=*FPsN@?B;ktLc2vpG_ozpAgx zGh5BS&|zcMx;uVH>N=kdI^URbFTyJS zo)J*z_dATft4|_lsN)=p)04kO-4Kz?8$O+8O?F}WQFe2OKT8TF%&g}fg2NXLZUi}u zCz=5f6S6_8oBiV7F}u;j^R=k$5vY{uGFk?!P)4_ zB8`1AVHcT9Y!!&p(_ziZQkPTh=#CLZA97jeL2nXCn2BEpq#s^=sgv2|NpxHF3|?Qr zLcE}T4?wpR81_z6U$_e&cL0Jm*6+Xust22ETG;gBbGFs}y}sSD&)%7pJ7^x=%v4M^ zSA2FYTZ0*XcJ_@(H9by3Df2}^OM?eS&CMXDrO)yy*sO!%4Jbya~4!0E3%_Xz1St%)qiU-+jwkVUOuviY{oEO8V**Bn8HU&_?Oc^6h-)U#4x=c3+LrrREJnrlwDrL`dK(niB*x~ z3vzr^h*$#hXVXW`c{^it@|SQ1wStZ; z0B9afm{_@4<;;`qv}Kh7=vQE7>~M=<+zXoH2M>u(Q!ny(m_pqzP@7CT<$R6zT|7wC zBT+Qct!DP}e0Mf2rTu3v<(?ekprWu?GYR)E7;T=sJIIHLq_hi)V@{hLktNiC8kUq5A^lzNtN;k?pP(>b&Y@Qzi z&dzO}+`Jyq*Xo9oWSy5+)-sm$<2JZ$^?0e>S-C*AlpNptn(8t)Gc)4^`mc)*^jevp zi!{6(5t#TW!U_LaIlKFD=~>Z~_EyloIpJ<^^VS|}KeDK>tvb*=JHDn+@j{gFl_w`0 z0FYpKP|5Gf8j6ou%btGkJ~%zr=~z`kzk;F6I_(rXeHNtQeYd%mS5_u2W_M4jz&~iz z;!1)d{@%v5l&T*`4`s3L?VrN!SIwRHrOv<%dy(t+=-`jHD{+8OYno-gC#~y__Z6W8G;8VUkqK}VbkD0A2e*+0Uy6%- z7c&^B2@;OWMR?F9Dw#Rq@~~xMi4n-jOJqkg1(qi81Z0DfmQPIIwJ$-#*o!(j+7jBu zlf2%cTmz?yi;HLZFq8<%;h{sOjV*3iEVjm3HS{=Q<$2i~eZaSNWXh((CfZtA^zt`K z{h0zcAKhjmcl^kBpplW0-7AM$`9f6WpGbo_TS?&hV9R-s_{Eh}x-3J~{-3@qnb+te zB{oXS5l7MIZ@4aO<5k>9&5nm&RNO51S83$Kfbv%n{d|I}^?@5$37gBS|EQyYx4 z>*zT=ux3?w{O$8x3u!n*(ZT`}VkTlxu4xAUu95Na=6GD&A2}!}@Q8~=eN`NF z!l)2?e6agu&wKzY8eL@u?1*DFpKmKX+;zt@_~8M}A3uK3Pa<&6xYU7x&65?pY4bZn zFyRb*LSkZ#gqT?Wvec|FYaCt~Mo=+yjT9ohTAGl_>{9-Ut5v%HW}XOt>xe&sYq^w6 z%)=3ZIbp}l5=Gq;oxcPV6BGT!B_$=l`*%vV8UUSjry~0~FT)#&w`!)*RaC7}HMbOl z!za9sa!owbd+KRn(N}#>H|8}ikKoy9s3HSLYTPqzaE_K)E|Gu2s+?T*eN~B58fXJmZvND`PZfdAn%-F6`c!U_*9k#Vx`aqlSsC` z=-u+hs=`}i?;Jd(d;WJ!y?*+}F>52&4^V?G+fv2#HL}2bC zs6f+GV`C0QmjV}f0vf*eRQ!5uRu*G0$3J;Y=GbQv>WF{k?Bg8^J=c6u!Yf}{c!6tJ z*ie}_=4d)FH$$zmE6VM`kwV@nTssgNfKhgXVJvKe^DE-!{Wh(0>7dua;K+6{W)c?t z&iCIk@wzlAxJD&+M3r5QZVY>K8Asgo3k}`wW!=*?%;Njx3H5Y}T`GfYMKm*$6bk!; z#r?!9Mz+L<%FJ{o#D+$PSq`x9YYJi-Oc&@4Da0bx1U9fG+?mxqKLN^Uq+>~pRQ*VF zpJSvG$yOW~;E25t`%c98ZStBBeDIKIy}^x=+JMf-S6|+}E1x-F!&pNKesipf9K3}> zBH780q89@icAhvicrl~!j7c!$Iag7GoO-u4%VUx}Z-^yaz6zd*gA)#=cPH*%M3fde5h3A0@+b%nk4(Oxp_E94IP)~ywB*-9*b`h1|L$|%?;);tJ zql~(dP(xzOZna~YQTZw&eC6U8)d8H%;Dbg&?hY6($!U~7+Owe!2MK}RJg z!)9EFii5$6zjj&7(DkLIoU{r$w4;o-?wQ`^mEc-#+`bZQ`JNKGsid>y52yT7pOSC1~y3kiv zbmTyMPDPDdjs6k`KBZO-{PP?TdD9mvhn@_}86lVslwA*gkD&8PFxIzxzZMoH^(11` z$9&d$gj`_&AVd7CLq>uJtc{F1=h?Sfup5@O&I0J?skLv<4no(H|NQhKvoH7TaYkK9^-b*`8>^_{6PtLU9PC`N zm%6n=t68Db2h&756lBZ1^52lIZpGjk+n}V!3{OwjbbGvE`&k)qE1ZoDMN4-r^ygLN z)i^CK<@v!JY*e#9Cm1hKauGf>bm*jJX4lfIXm(2zzku0+06+gSm%dhawFD9N}yG$av|v z+qAQqwiKkSDVbdl~(?ACU7=VPRo=Z{53t_QE1&F9MPft(3M8==fCBbKhYt{D|_T33{4y zYVboGS_ zgjh(vc0gA~!v{kXG4V?zp=jqIIG2xXx(%-C(q0u_Zw&-;E=OMDhW4+$Ect$0t}%dZ zS6=LV++aXZZKJ+4h2vHI+5akB5ZewAFrBh%8FY*c0`n@t8Axnsrk)O;T*3a{5!f>1 zOP^a&WoWJak6Zj)45jopn|?1X?OjP|hbn58ELK|WIAq*G+WI5+HYBzl>`_@t|F6&W hzb4)Pp9bab maxAngle', function(done) { + createMap('canvas'); + createLineString(uglyPath, 'left'); + vectorSource.getFeatures()[0].getStyle().getText().setTextAlign('left'); + expectResemble(map, 'rendering/ol/style/expected/text-linestring-omit.png', IMAGE_TOLERANCE, done); + }); + + it('omits text along a linestring with `textAlign: \'right\'` when > maxAngle', function(done) { + createMap('canvas'); + createLineString(uglyPath, 'right'); + vectorSource.getFeatures()[0].getStyle().getText().setTextAlign('left'); + expectResemble(map, 'rendering/ol/style/expected/text-linestring-omit.png', IMAGE_TOLERANCE, done); + }); + + it('renders text along a linestring with `textAlign: \'left\'` and no angle limit', function(done) { + createMap('canvas'); + createLineString(uglyPath, 'left', Infinity); + expectResemble(map, 'rendering/ol/style/expected/text-linestring-left.png', 3.5, done); + }); + + }); + + describe('Text along a nice path', function() { + + it('renders text along a linestring', function(done) { + createMap('canvas'); + createLineString(nicePath); + expectResemble(map, 'rendering/ol/style/expected/text-linestring-nice.png', 2.5, done); + }); + + it('renders text along a linestring with `textAlign: \'left\'`', function(done) { + createMap('canvas'); + createLineString(nicePath, 'left'); + expectResemble(map, 'rendering/ol/style/expected/text-linestring-left-nice.png', 2.5, done); + }); + + it('renders text along a rotated linestring', function(done) { + createMap('canvas'); + map.getView().setRotation(Math.PI); + createLineString(nicePath); + expectResemble(map, 'rendering/ol/style/expected/text-linestring-nice-rotated.png', 4.5, done); + }); + + it('renders text along a rotated linestring with `textAlign: \'left\'`', function(done) { + createMap('canvas'); + map.getView().setRotation(Math.PI); + createLineString(nicePath, 'left'); + expectResemble(map, 'rendering/ol/style/expected/text-linestring-left-nice-rotated.png', 4.5, done); + }); + }); + + it('renders text along a MultiLineString', function(done) { + createMap('canvas'); + var line = new ol.geom.LineString(); + line.setFlatCoordinates('XY', nicePath); + var geom = new ol.geom.MultiLineString(null); + geom.appendLineString(line); + line.translate(0, 50); + geom.appendLineString(line); + line.translate(0, -100); + geom.appendLineString(line); + var feature = new ol.Feature(geom); + feature.setStyle(new ol.style.Style({ + text: new ol.style.Text({ + text: 'Hello world', + placement: 'line', + font: 'bold 30px sans-serif' + }) + })); + vectorSource.addFeature(feature); + map.getView().fit(vectorSource.getExtent()); + expectResemble(map, 'rendering/ol/style/expected/text-multilinestring.png', 6.9, done); + }); + + it('renders text along a Polygon', function(done) { + createMap('canvas'); + var geom = new ol.geom.Polygon(null); + geom.setFlatCoordinates('XY', polygon, [polygon.length]); + var feature = new ol.Feature(geom); + feature.setStyle(new ol.style.Style({ + text: new ol.style.Text({ + text: 'Hello world', + font: 'bold 24px sans-serif', + placement: 'line', + exceedLength: true + }) + })); + vectorSource.addFeature(feature); + map.getView().fit(vectorSource.getExtent()); + expectResemble(map, 'rendering/ol/style/expected/text-polygon.png', IMAGE_TOLERANCE, done); + }); + + it('renders text along a MultiPolygon', function(done) { + createMap('canvas'); + var geom = new ol.geom.Polygon(null); + geom.setFlatCoordinates('XY', polygon, [polygon.length]); + var multiPolygon = new ol.geom.MultiPolygon(null); + multiPolygon.appendPolygon(geom); + geom.translate(0, 30); + multiPolygon.appendPolygon(geom); + geom.translate(0, -60); + multiPolygon.appendPolygon(geom); + var feature = new ol.Feature(multiPolygon); + feature.setStyle(new ol.style.Style({ + text: new ol.style.Text({ + text: 'Hello world', + font: 'bold 24px sans-serif', + placement: 'line', + exceedLength: true + }) + })); + vectorSource.addFeature(feature); + map.getView().fit(vectorSource.getExtent()); + expectResemble(map, 'rendering/ol/style/expected/text-multipolygon.png', 4.4, done); + }); + where('WebGL').it('tests the webgl renderer without rotation', function(done) { createMap('webgl'); createFeatures(); From 98981127096f171153142f999aced569fbab1569 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Tue, 12 Sep 2017 09:08:54 +0200 Subject: [PATCH 8/9] Add sans-serif font fallback --- examples/street-labels.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/street-labels.js b/examples/street-labels.js index 1654416bc6..1e3242b373 100644 --- a/examples/street-labels.js +++ b/examples/street-labels.js @@ -12,7 +12,7 @@ goog.require('ol.style.Text'); var style = new ol.style.Style({ text: new ol.style.Text({ - font: 'bold 11px "Open Sans", "Arial Unicode MS"', + font: 'bold 11px "Open Sans", "Arial Unicode MS", "sans-serif"', placement: 'line', fill: new ol.style.Fill({ color: 'white' From e2ebd056248eb821e1004b203fbebc7d78362289 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Tue, 12 Sep 2017 11:27:26 +0200 Subject: [PATCH 9/9] Use a stricter type for chars_ --- src/ol/render/canvas/replay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/render/canvas/replay.js b/src/ol/render/canvas/replay.js index 1341e9a855..a54401fb21 100644 --- a/src/ol/render/canvas/replay.js +++ b/src/ol/render/canvas/replay.js @@ -135,7 +135,7 @@ ol.render.canvas.Replay = function(tolerance, maxExtent, resolution, pixelRatio, /** * @private - * @type {Array.<*>} + * @type {Array.>} */ this.chars_ = []; };