From 50e1c9e0f48bc4f281d33d0dcd515664e2fea27f Mon Sep 17 00:00:00 2001 From: Felix Ebert Date: Tue, 14 Feb 2017 20:26:48 +0100 Subject: [PATCH] unfinished work --- .gitignore | 8 +- frontend/index.html | 3 + frontend/modules/SelectPlaceCtrl.js | 7 +- frontend/modules/geocodeAddressDirective.js | 13 + frontend/modules/locateMeButtonDirective.js | 12 + frontend/modules/partials/selectPlace.html | 11 +- node-backend/app.js | 35 +- node-backend/converter.js | 58 + node-backend/hn-streets.json | 12865 ++++++++++++++++++ node-backend/mongo-setup.js | 22 + node-backend/zones.json | 1862 +++ 11 files changed, 14860 insertions(+), 36 deletions(-) create mode 100644 frontend/modules/geocodeAddressDirective.js create mode 100644 frontend/modules/locateMeButtonDirective.js create mode 100644 node-backend/converter.js create mode 100644 node-backend/hn-streets.json create mode 100644 node-backend/mongo-setup.js create mode 100644 node-backend/zones.json diff --git a/.gitignore b/.gitignore index 7fb5d66..fb5f622 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,7 @@ -.settings \ No newline at end of file +.settings +.hg +*.iml +.idea +.DS_Store +bin +node_modules diff --git a/frontend/index.html b/frontend/index.html index 9605f4f..e037a07 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -5,6 +5,7 @@ Was steckt in meinem Leitungswasser? +
@@ -48,6 +49,8 @@ + + diff --git a/frontend/modules/SelectPlaceCtrl.js b/frontend/modules/SelectPlaceCtrl.js index cb75ad8..b6794e2 100644 --- a/frontend/modules/SelectPlaceCtrl.js +++ b/frontend/modules/SelectPlaceCtrl.js @@ -1,12 +1,17 @@ (function (angular) { 'use strict'; - angular.module('tw').controller('SelectPlaceCtrl', function($scope) { + angular.module('tw').controller('SelectPlaceCtrl', function($scope, $http) { $scope.cities = Object.keys(tw.data.locations); $scope.getDistrictsOfCity = function(city) { var cityObject = tw.data.locations[city]; $scope.districts = Object.keys(cityObject); } + $scope.$on('location', function(event, latLon) { + $http.get('http://localhost:8012/geocode?lat=' + latLon.lat + '&lon' + latLon.lon).success(function(data) { + console.log(data); + }) + }) }); })(angular); \ No newline at end of file diff --git a/frontend/modules/geocodeAddressDirective.js b/frontend/modules/geocodeAddressDirective.js new file mode 100644 index 0000000..3a192a5 --- /dev/null +++ b/frontend/modules/geocodeAddressDirective.js @@ -0,0 +1,13 @@ +(function (angular) { + angular.module('tw').directive('geocodeAddress', function () { + return { + restrict: 'A', + link: function (scope, elem) { + var autocomplete = new google.maps.places.Autocomplete(elem[0]); + google.maps.event.addListener(autocomplete, 'place_changed', function () { + console.log(autocomplete.getPlace()); + }); + } + } + }); +})(angular); \ No newline at end of file diff --git a/frontend/modules/locateMeButtonDirective.js b/frontend/modules/locateMeButtonDirective.js new file mode 100644 index 0000000..79b3dc1 --- /dev/null +++ b/frontend/modules/locateMeButtonDirective.js @@ -0,0 +1,12 @@ +(function (angular) { + angular.module('tw').directive('locateMeButton', function () { + return { + restrict: 'A', + link: function (scope, elem) { + elem.on('click', function () { + scope.$emit('location', {lat: 1, lon: 2}); + }); + } + } + }); +})(angular); \ No newline at end of file diff --git a/frontend/modules/partials/selectPlace.html b/frontend/modules/partials/selectPlace.html index 10e2d41..4da628e 100644 --- a/frontend/modules/partials/selectPlace.html +++ b/frontend/modules/partials/selectPlace.html @@ -4,6 +4,13 @@

{{district}} - +

-Open Place \ No newline at end of file +Open Place + + + + + + +Locate me \ No newline at end of file diff --git a/node-backend/app.js b/node-backend/app.js index 49fdcb7..f488e75 100644 --- a/node-backend/app.js +++ b/node-backend/app.js @@ -3,37 +3,8 @@ var mongoose = require('mongoose'); var express = require('express'); var baucis = require('baucis'); var cors = require('cors'); -mongoose.connect('mongodb://localhost/tapwater'); - -// define models -var Location = mongoose.model('Location', new mongoose.Schema({geoFeature: GeoJSON.Feature})); -var sampleLocation = new Location({ - geoFeature: { - "type": "Feature", - "properties": { - "haertegrad": "10", - "name": "Aachener Straße" - }, - "geometry": { - "type": "MultiLineString", - "coordinates": [[[9.1054195, 49.1836073], [9.1053332, 49.1833407], [9.1051728, 49.1828456], [9.1051326, 49.1828453], [9.1046133, 49.1828413]], [[9.1051326, 49.1828453], [9.1049988, 49.1830276], [9.1048492, 49.1832862]], [[9.1051728, 49.1828456], [9.1053677, 49.1827792], [9.1066049, 49.1825795]]] - } - } -}); -sampleLocation.save(); - - -var Zone = mongoose.model('Zone', { - name: String, - calcium: Number, - kalium: Number -}); -var sampleZone = new Zone({ - name: 'Erlenbach', - calcium: 0.8, - kalium: 0.9 -}); -sampleZone.save(); +var mongoSetup = require('./mongo-setup'); +var mongo = mongoSetup.setupInstance(); // rest baucis.rest('Zone'); @@ -44,6 +15,6 @@ app.use(cors()); app.use('/api', baucis()); app.listen(8012); -app.get('/geocode', function(req, res) { +app.get('/geocode', function (req, res) { res.send("Latitude " + req.query.lat + ", Longitude " + req.query.lon + ' has the following mineral values in its tapwater: calcium 0.8, natrium 2, nitrat 5 - you have a good tapwater!'); }); \ No newline at end of file diff --git a/node-backend/converter.js b/node-backend/converter.js new file mode 100644 index 0000000..9ba393f --- /dev/null +++ b/node-backend/converter.js @@ -0,0 +1,58 @@ +var process = require('process'); +var mongoSetup = require('./mongo-setup'); +var heilbronnPlaces = require('./hn-streets.json'); +var zones = require('./zones.json'); + +var GeoJSON = require('mongoose-geojson-schema'); +var mongoose = require('mongoose'); + + mongoose.connect('mongodb://localhost/tapwater'); + + var Location = mongoose.model('Location', new mongoose.Schema({ + name: String, + zone: String, + geometry: GeoJSON.Geometry + })); + var Zone = mongoose.model('Zone', { + name: String, + calcium: Number, + kalium: Number + }); + + +var convertCoordinatesArray = function (coordinates) { + var convertedCoordinates = []; + coordinates.forEach(function (coordinate) { + if (Array.isArray(coordinate[0])) { + convertedCoordinates.push(convertCoordinatesArray(coordinate)); + } else { + convertedCoordinates.push([coordinate[1], coordinate[0]]); + } + }); + return convertedCoordinates; +}; + +heilbronnPlaces.features.forEach(function (feature) { + var location = new Location({ + name: feature.properties.name, + zone: "Heilbronn " + feature.properties.haertegrad, + geometry: { + "type": feature.geometry.type, + "coordinates": convertCoordinatesArray(feature.geometry.coordinates) + } + }); + location.save(function(e) { + console.log(e); + }); +}); + +Object.keys(zones).forEach(function (zoneName) { + var zone = new Zone({ + name: zoneName, + calcium: zones[zoneName].calcium, + kalium: zones[zoneName].kalium + }); + zone.save(); +}); + +process.exit(); \ No newline at end of file diff --git a/node-backend/hn-streets.json b/node-backend/hn-streets.json new file mode 100644 index 0000000..d27c8a3 --- /dev/null +++ b/node-backend/hn-streets.json @@ -0,0 +1,12865 @@ +{ "type": "FeatureCollection", "features": [ { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Aachener Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1054195, 49.1836073], [9.1053332, 49.1833407], [9.1051728, 49.1828456], [9.1051326, 49.1828453], [9.1046133, 49.1828413]], [[9.1051326, 49.1828453], [9.1049988, 49.1830276], [9.1048492, 49.1832862]], [[9.1051728, 49.1828456], [9.1053677, 49.1827792], [9.1066049, 49.1825795]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Achtungstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2109388, 49.1399688], [9.2110247, 49.1399443], [9.2121222, 49.1395355], [9.2125454, 49.1393571]], [[9.2095117, 49.1393234], [9.2095202, 49.1399803]], [[9.2125454, 49.1393571], [9.2128314, 49.1392289]], [[9.2081486, 49.1399913], [9.2082810, 49.1399904], [9.2094538, 49.1399809], [9.2095202, 49.1399803], [9.2109388, 49.1399688]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Adelberger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2327079, 49.1424633], [9.2326870, 49.1423205], [9.2325213, 49.1411923]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Adenauerplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2295558, 49.1460001], [9.2295640, 49.1457571], [9.2297589, 49.1457477], [9.2299046, 49.1457061], [9.2299416, 49.1456752], [9.2301673, 49.1456846], [9.2304259, 49.1456658], [9.2305100, 49.1459987], [9.2305798, 49.1461330], [9.2307009, 49.1463182], [9.2303048, 49.1463840], [9.2301673, 49.1462578], [9.2299929, 49.1461383], [9.2298328, 49.1460712], [9.2297076, 49.1460296], [9.2295558, 49.1460001]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Adlerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2243613, 49.1482132], [9.2244569, 49.1489133], [9.2244800, 49.1492569]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Adolf-Alter-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1851079, 49.1409577], [9.1850786, 49.1410442], [9.1851343, 49.1411303], [9.1853599, 49.1412606], [9.1860830, 49.1416566], [9.1865200, 49.1418815], [9.1869964, 49.1420638], [9.1874535, 49.1422140], [9.1877803, 49.1423027], [9.1881072, 49.1423746], [9.1885165, 49.1424248], [9.1892255, 49.1425077], [9.1895492, 49.1425397], [9.1897171, 49.1425484], [9.1906609, 49.1425044], [9.1909284, 49.1425198]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Adolf-Grimme-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1396015, 49.1938882], [9.1395126, 49.1938769], [9.1392780, 49.1938789], [9.1391755, 49.1939035], [9.1389320, 49.1939746], [9.1386826, 49.1940591]], [[9.1399475, 49.1940280], [9.1396754, 49.1939079], [9.1396015, 49.1938882]], [[9.1397258, 49.1943350], [9.1397225, 49.1942642], [9.1396754, 49.1939079]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Agnese-Schebest-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1941709, 49.1188485], [9.1946339, 49.1188319], [9.1946703, 49.1188306], [9.1949304, 49.1188213], [9.1949586, 49.1188203], [9.1952350, 49.1188104], [9.1954239, 49.1188036], [9.1955477, 49.1187992], [9.1958428, 49.1187886], [9.1961472, 49.1187777], [9.1963034, 49.1187721]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Ahornweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1836466, 49.1473682], [9.1839464, 49.1474149], [9.1840658, 49.1474331], [9.1843484, 49.1474724], [9.1844707, 49.1474864], [9.1847802, 49.1475097], [9.1848983, 49.1475174], [9.1854212, 49.1475232]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Aiblinger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1690758, 49.1617329], [9.1697983, 49.1620966], [9.1699144, 49.1621483], [9.1703121, 49.1623392]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Akazienweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2007924, 49.1567831], [9.2010231, 49.1577172]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Albert-Schäffler-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1969933, 49.1508609], [9.1970856, 49.1508622], [9.1972496, 49.1508590], [9.1978087, 49.1508633], [9.1978585, 49.1508640], [9.1982408, 49.1508694], [9.1983094, 49.1508655], [9.1983683, 49.1508551], [9.1984056, 49.1508295], [9.1984315, 49.1507975], [9.1985029, 49.1506617], [9.1986558, 49.1503342], [9.1987274, 49.1501553], [9.1987425, 49.1500995], [9.1988241, 49.1498154], [9.1988920, 49.1495564], [9.1991186, 49.1486275]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Albert-Schweitzer-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1187698, 49.1851409], [9.1183641, 49.1852800], [9.1174423, 49.1854271]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Albert-Wagner-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1541090, 49.1235449], [9.1537874, 49.1235715], [9.1537365, 49.1236011], [9.1531427, 49.1236358], [9.1519297, 49.1233621], [9.1519513, 49.1232133], [9.1511847, 49.1231320], [9.1510909, 49.1231208], [9.1503346, 49.1231793]], [[9.1539314, 49.1243925], [9.1537980, 49.1238509], [9.1537365, 49.1236011]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Albertistraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2095251, 49.1693945], [9.2095414, 49.1695201]], [[9.2092755, 49.1661738], [9.2091278, 49.1658625], [9.2090162, 49.1656215], [9.2089927, 49.1655353], [9.2089674, 49.1654194], [9.2089543, 49.1653015], [9.2089610, 49.1651809], [9.2089929, 49.1650191]], [[9.2089929, 49.1650191], [9.2091199, 49.1646761], [9.2091775, 49.1645509], [9.2092120, 49.1643878], [9.2092208, 49.1642914], [9.2092082, 49.1641637], [9.2091834, 49.1640712], [9.2091227, 49.1639204], [9.2090384, 49.1637628], [9.2090096, 49.1637146]], [[9.2106040, 49.1646207], [9.2099393, 49.1655858], [9.2097050, 49.1659502], [9.2096305, 49.1661321], [9.2095736, 49.1662127], [9.2095372, 49.1662505], [9.2094854, 49.1662754], [9.2093506, 49.1663499]], [[9.2092434, 49.1690882], [9.2095558, 49.1692296], [9.2097557, 49.1693298], [9.2102970, 49.1694556]], [[9.2089015, 49.1693612], [9.2091626, 49.1693237], [9.2092404, 49.1692775], [9.2092668, 49.1692466], [9.2092674, 49.1691664], [9.2091900, 49.1690482]], [[9.2095251, 49.1693945], [9.2094956, 49.1693157], [9.2092434, 49.1690882], [9.2091900, 49.1690482]], [[9.2088392, 49.1687309], [9.2087723, 49.1686391], [9.2087560, 49.1686167], [9.2087386, 49.1685775], [9.2086799, 49.1684599], [9.2086460, 49.1681500], [9.2087131, 49.1677939], [9.2088039, 49.1675485], [9.2089792, 49.1672109], [9.2091711, 49.1668804], [9.2092290, 49.1667866], [9.2092607, 49.1667320], [9.2093098, 49.1666225], [9.2093604, 49.1664557], [9.2093506, 49.1663499], [9.2092755, 49.1661738]], [[9.2091900, 49.1690482], [9.2090529, 49.1689431], [9.2089650, 49.1688683], [9.2088833, 49.1687800], [9.2088392, 49.1687309]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Alemannenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1832648, 49.1181529], [9.1834556, 49.1182652], [9.1837351, 49.1183899], [9.1842246, 49.1185711], [9.1845430, 49.1186696], [9.1848979, 49.1187931], [9.1853477, 49.1189286], [9.1853922, 49.1189453], [9.1857032, 49.1190485]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Alexander-Baumann-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1582192, 49.1806209], [9.1581972, 49.1804542], [9.1581744, 49.1802689], [9.1581974, 49.1800644], [9.1582468, 49.1800024], [9.1583489, 49.1799506], [9.1584664, 49.1799216], [9.1586220, 49.1798999], [9.1607145, 49.1798755], [9.1610810, 49.1798870], [9.1617075, 49.1799090], [9.1622720, 49.1799485], [9.1629111, 49.1799610], [9.1635544, 49.1799822], [9.1642791, 49.1800104], [9.1658403, 49.1799990], [9.1678483, 49.1799711], [9.1729949, 49.1799314], [9.1732615, 49.1799041], [9.1734620, 49.1798771], [9.1737218, 49.1798154], [9.1740543, 49.1797072], [9.1743034, 49.1796135], [9.1745248, 49.1795303], [9.1750455, 49.1793735], [9.1754886, 49.1792786], [9.1757481, 49.1792454], [9.1760111, 49.1792164], [9.1769743, 49.1792039], [9.1778039, 49.1791896], [9.1785852, 49.1791761], [9.1794219, 49.1791632], [9.1804241, 49.1791522], [9.1818754, 49.1791161], [9.1820131, 49.1791235]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Alexanderstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2338661, 49.1384768], [9.2339511, 49.1392817], [9.2340158, 49.1400265]], [[9.2315729, 49.1322021], [9.2316322, 49.1322437], [9.2317961, 49.1324207], [9.2319364, 49.1325699], [9.2321718, 49.1328191], [9.2327408, 49.1331792], [9.2331446, 49.1334267], [9.2331930, 49.1334908], [9.2332164, 49.1335714], [9.2332537, 49.1338614], [9.2332864, 49.1342216], [9.2333830, 49.1347682], [9.2334330, 49.1350981], [9.2334814, 49.1354173], [9.2334870, 49.1354544], [9.2335303, 49.1357027], [9.2336262, 49.1364920], [9.2336851, 49.1369766], [9.2338282, 49.1381625], [9.2338661, 49.1384768]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Alfred-Finkbeiner-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2056373, 49.1392447], [9.2054646, 49.1388305], [9.2054094, 49.1387818], [9.2053442, 49.1387554], [9.2052389, 49.1387258], [9.2042516, 49.1385786], [9.2040687, 49.1385604]], [[9.2056439, 49.1411168], [9.2056447, 49.1403700]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Alfred-Minner-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2273830, 49.1612002], [9.2270520, 49.1612949], [9.2270155, 49.1613190], [9.2269881, 49.1613595], [9.2272603, 49.1620309], [9.2273477, 49.1620814], [9.2277652, 49.1621168], [9.2278447, 49.1621109], [9.2279877, 49.1620596]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Allee" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2223162, 49.1415721], [9.2223231, 49.1415858], [9.2223405, 49.1416305], [9.2223542, 49.1417171], [9.2224650, 49.1421378], [9.2227070, 49.1430451], [9.2227281, 49.1431681]], [[9.2221148, 49.1415839], [9.2220640, 49.1414503], [9.2218278, 49.1408289], [9.2217431, 49.1406713], [9.2217042, 49.1406123], [9.2215970, 49.1404863], [9.2211647, 49.1400987], [9.2210444, 49.1399923]], [[9.2227281, 49.1431681], [9.2228550, 49.1436021], [9.2230019, 49.1441950]], [[9.2218903, 49.1406179], [9.2219929, 49.1407834], [9.2220111, 49.1408248], [9.2222544, 49.1414213], [9.2223162, 49.1415721]], [[9.2210758, 49.1395345], [9.2210732, 49.1395842], [9.2210835, 49.1397267], [9.2210947, 49.1397805]], [[9.2230437, 49.1443787], [9.2230757, 49.1444645], [9.2232010, 49.1449720], [9.2232560, 49.1452005], [9.2233406, 49.1455694]], [[9.2231683, 49.1459945], [9.2232060, 49.1458612], [9.2232238, 49.1456538], [9.2232031, 49.1454474], [9.2231543, 49.1452264], [9.2229582, 49.1444749], [9.2229287, 49.1443856], [9.2229072, 49.1443105], [9.2228402, 49.1440957]], [[9.2225860, 49.1431740], [9.2225560, 49.1430604], [9.2223374, 49.1421530], [9.2222681, 49.1419027], [9.2221959, 49.1417352], [9.2221262, 49.1416121], [9.2221148, 49.1415839]], [[9.2230019, 49.1441950], [9.2230214, 49.1442899], [9.2230437, 49.1443787]], [[9.2228402, 49.1440957], [9.2227334, 49.1437778], [9.2226857, 49.1435871], [9.2226206, 49.1433505], [9.2225860, 49.1431740]], [[9.2210444, 49.1399923], [9.2210044, 49.1399500], [9.2209517, 49.1398678]], [[9.2218296, 49.1405469], [9.2218465, 49.1405657], [9.2218903, 49.1406179]], [[9.2233406, 49.1455694], [9.2233462, 49.1455935], [9.2233432, 49.1456039], [9.2233650, 49.1459531], [9.2233659, 49.1459903]], [[9.2210947, 49.1397805], [9.2211256, 49.1398487], [9.2211535, 49.1399006], [9.2212008, 49.1399729], [9.2212315, 49.1400155], [9.2212646, 49.1400506], [9.2218296, 49.1405469]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Allensteiner Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1948969, 49.1582976], [9.1954037, 49.1583048], [9.1954484, 49.1583054], [9.1955043, 49.1583180], [9.1959775, 49.1583177], [9.1960049, 49.1583363], [9.1960713, 49.1583816], [9.1971401, 49.1583778], [9.1972652, 49.1584480], [9.1973564, 49.1584958], [9.1977836, 49.1585005], [9.1977767, 49.1585826], [9.1977952, 49.1586058], [9.1978356, 49.1586055], [9.1981434, 49.1586064], [9.1982616, 49.1585997], [9.1984210, 49.1585785], [9.1985597, 49.1585016], [9.1986492, 49.1584495], [9.1987239, 49.1583710], [9.1987280, 49.1579945]], [[9.1982616, 49.1585997], [9.1982710, 49.1591385]], [[9.1954477, 49.1581159], [9.1957597, 49.1581161], [9.1957896, 49.1581002], [9.1957938, 49.1580210], [9.1958766, 49.1579681], [9.1961350, 49.1579716], [9.1961712, 49.1579400], [9.1961707, 49.1577759]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Allerheiligenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2151042, 49.1397047], [9.2153745, 49.1397774], [9.2155448, 49.1398160], [9.2158380, 49.1398634], [9.2162512, 49.1399040]], [[9.2162512, 49.1399040], [9.2162452, 49.1399320], [9.2162033, 49.1399427], [9.2160957, 49.1399404], [9.2159183, 49.1399185], [9.2157075, 49.1398867], [9.2154924, 49.1398438], [9.2152846, 49.1397686], [9.2151042, 49.1397047]], [[9.2151042, 49.1397047], [9.2150075, 49.1396528], [9.2149260, 49.1395965]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Allmendweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1366857, 49.1985528], [9.1365926, 49.1986249], [9.1362741, 49.1988961]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Almosengartenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1695417, 49.1164696], [9.1700707, 49.1165787], [9.1700741, 49.1166670]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "25", + "name": "Altböllinger Hof" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1785896, 49.1850003], [9.1785943, 49.1850831], [9.1786179, 49.1854963], [9.1786220, 49.1855681], [9.1786357, 49.1858084]], [[9.1786357, 49.1858084], [9.1786966, 49.1858983], [9.1788108, 49.1859407], [9.1796724, 49.1859075], [9.1805563, 49.1858760], [9.1814847, 49.1858217], [9.1815880, 49.1858298], [9.1816699, 49.1858580], [9.1817491, 49.1858892], [9.1817996, 49.1859468], [9.1820291, 49.1863597], [9.1820862, 49.1864185], [9.1821872, 49.1864864], [9.1823091, 49.1865291], [9.1824510, 49.1865335], [9.1829835, 49.1864909], [9.1831156, 49.1865252], [9.1832458, 49.1865911], [9.1833303, 49.1866833], [9.1833719, 49.1867886], [9.1833811, 49.1868600], [9.1833621, 49.1869281], [9.1832955, 49.1870587], [9.1831688, 49.1873076], [9.1832789, 49.1875234]], [[9.1832789, 49.1875234], [9.1833899, 49.1876526]], [[9.1833899, 49.1876526], [9.1834819, 49.1877177]], [[9.1807178, 49.1870851], [9.1808467, 49.1870754], [9.1818149, 49.1868702], [9.1819956, 49.1868319], [9.1820459, 49.1867631], [9.1820206, 49.1866144], [9.1819983, 49.1864837], [9.1820862, 49.1864185]], [[9.1823519, 49.1867492], [9.1827397, 49.1867256], [9.1828019, 49.1867420], [9.1828424, 49.1868171], [9.1830338, 49.1871617], [9.1831688, 49.1873076]], [[9.1843282, 49.1877202], [9.1841278, 49.1876927], [9.1838082, 49.1877162], [9.1834819, 49.1877177]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Alter Hochweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1489961, 49.1221842], [9.1487504, 49.1214471], [9.1487407, 49.1213455], [9.1487929, 49.1212956], [9.1488691, 49.1212627], [9.1489917, 49.1212531], [9.1497828, 49.1212377]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Alter Mühlweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1159689, 49.1815102], [9.1156380, 49.1815963], [9.1152166, 49.1816995]], [[9.1152166, 49.1816995], [9.1146900, 49.1817838], [9.1143779, 49.1818158], [9.1142388, 49.1818108], [9.1141246, 49.1817411]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Alter Rathausweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1705006, 49.1581676], [9.1704547, 49.1583358], [9.1704328, 49.1585556]], [[9.1705299, 49.1583441], [9.1704547, 49.1583358], [9.1702011, 49.1583043]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Altnachtstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1477492, 49.1922718], [9.1488905, 49.1918232], [9.1493274, 49.1916302]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Am Förstle" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1501274, 49.1928887], [9.1502523, 49.1931043], [9.1503582, 49.1932291], [9.1503938, 49.1932554], [9.1505068, 49.1933413]], [[9.1518778, 49.1944538], [9.1518879, 49.1945213], [9.1518796, 49.1946165]], [[9.1505068, 49.1933413], [9.1505653, 49.1933823], [9.1507721, 49.1935170], [9.1509954, 49.1936624], [9.1514192, 49.1939564], [9.1517685, 49.1942365], [9.1518778, 49.1944538]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Am Gesundbrunnen" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1892642, 49.1545191], [9.1895419, 49.1545675], [9.1898405, 49.1546125], [9.1900157, 49.1546358]], [[9.1886459, 49.1516551], [9.1884785, 49.1516656], [9.1882994, 49.1516542], [9.1881437, 49.1516461], [9.1879977, 49.1516458], [9.1878078, 49.1516899], [9.1876310, 49.1518245]], [[9.1875113, 49.1521125], [9.1875841, 49.1516307], [9.1875955, 49.1515570]], [[9.1876061, 49.1514956], [9.1876438, 49.1515152], [9.1876686, 49.1515375], [9.1876810, 49.1515651], [9.1876862, 49.1516038], [9.1876772, 49.1516375], [9.1876561, 49.1517236], [9.1876310, 49.1518245], [9.1875113, 49.1521125]], [[9.1892642, 49.1545191], [9.1890811, 49.1544813]], [[9.1875955, 49.1515570], [9.1876061, 49.1514956]], [[9.1881883, 49.1542399], [9.1883829, 49.1542853], [9.1885779, 49.1543366], [9.1887159, 49.1543736], [9.1887688, 49.1543907], [9.1888177, 49.1544113], [9.1889056, 49.1544439]], [[9.1889056, 49.1544439], [9.1888084, 49.1544305], [9.1886895, 49.1544145], [9.1885511, 49.1543788], [9.1884782, 49.1543601], [9.1883968, 49.1543347], [9.1883604, 49.1543199], [9.1881883, 49.1542399]], [[9.1881883, 49.1542399], [9.1880159, 49.1541702], [9.1877882, 49.1540685], [9.1876977, 49.1540216], [9.1875699, 49.1539495], [9.1874659, 49.1538679], [9.1873170, 49.1537134], [9.1872485, 49.1536022], [9.1871886, 49.1534732], [9.1871679, 49.1533141], [9.1871724, 49.1532825], [9.1871940, 49.1531798], [9.1872677, 49.1528995], [9.1873715, 49.1525938], [9.1874526, 49.1523175], [9.1875113, 49.1521125]], [[9.1900157, 49.1546358], [9.1904738, 49.1546810], [9.1906716, 49.1546958], [9.1910438, 49.1547085], [9.1912913, 49.1547091], [9.1916467, 49.1547216], [9.1917187, 49.1547232], [9.1917788, 49.1547275], [9.1919354, 49.1547376], [9.1921017, 49.1547593], [9.1924142, 49.1548182], [9.1925170, 49.1548381], [9.1928697, 49.1549855], [9.1932253, 49.1552004], [9.1937569, 49.1555687], [9.1939895, 49.1557461], [9.1941067, 49.1558355], [9.1943311, 49.1560066], [9.1944570, 49.1561135]], [[9.1890811, 49.1544813], [9.1890249, 49.1544692], [9.1889056, 49.1544439]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Am Hohrain" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2054421, 49.1293894], [9.2052742, 49.1292333], [9.2050866, 49.1290632], [9.2048924, 49.1288893], [9.2046995, 49.1287096], [9.2045249, 49.1285304], [9.2045086, 49.1285130], [9.2044670, 49.1284670], [9.2044440, 49.1284294], [9.2044335, 49.1283962], [9.2044265, 49.1283673], [9.2044255, 49.1283348], [9.2044277, 49.1283190], [9.2044306, 49.1282989], [9.2044363, 49.1282844], [9.2044453, 49.1282615], [9.2044674, 49.1282244], [9.2045287, 49.1281540], [9.2047178, 49.1279741], [9.2048981, 49.1278052]], [[9.2038971, 49.1285718], [9.2043638, 49.1283366], [9.2043919, 49.1283269], [9.2044277, 49.1283190]], [[9.2044845, 49.1290807], [9.2046132, 49.1290246], [9.2048924, 49.1288893]], [[9.2040687, 49.1287446], [9.2044617, 49.1285612], [9.2045249, 49.1285304]], [[9.2046709, 49.1292642], [9.2048493, 49.1291773], [9.2050866, 49.1290632]], [[9.2041304, 49.1284129], [9.2043598, 49.1283058], [9.2044363, 49.1282844]], [[9.2042873, 49.1289044], [9.2046387, 49.1287402], [9.2046995, 49.1287096]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Am Kieselmarkt" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2195765, 49.1430793], [9.2193889, 49.1425285]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Am Klingenbach" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1502761, 49.1193340], [9.1502479, 49.1192886], [9.1501796, 49.1192417], [9.1498491, 49.1192166], [9.1497086, 49.1192060], [9.1493870, 49.1191427], [9.1491496, 49.1190943], [9.1490417, 49.1190304], [9.1490095, 49.1189320], [9.1490202, 49.1188478], [9.1490900, 49.1187319], [9.1491128, 49.1187234], [9.1491651, 49.1187038], [9.1493153, 49.1186757], [9.1499805, 49.1186757], [9.1500216, 49.1186770]], [[9.1501616, 49.1186641], [9.1501432, 49.1186811], [9.1501186, 49.1186918], [9.1500678, 49.1186951], [9.1500216, 49.1186770], [9.1500021, 49.1186473], [9.1500072, 49.1186220], [9.1500460, 49.1185932], [9.1501050, 49.1185883], [9.1501474, 49.1186048], [9.1501690, 49.1186406], [9.1501616, 49.1186641]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Am Melchiorsgraben" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1881291, 49.1170656], [9.1879731, 49.1173690], [9.1877993, 49.1176671], [9.1877085, 49.1177246], [9.1875425, 49.1178354], [9.1873524, 49.1179545], [9.1872152, 49.1180463], [9.1869204, 49.1182907], [9.1864063, 49.1188210], [9.1863670, 49.1188765]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Am Mühlpfädle" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1774578, 49.1171633], [9.1782961, 49.1169234], [9.1791360, 49.1166937], [9.1796292, 49.1165461]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Am Ratsplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1473512, 49.1918341], [9.1471101, 49.1919302], [9.1468770, 49.1920231], [9.1466412, 49.1921098], [9.1465903, 49.1921296], [9.1463707, 49.1922147], [9.1463479, 49.1922246], [9.1461614, 49.1923060], [9.1458867, 49.1924261], [9.1456226, 49.1925394], [9.1455696, 49.1925729], [9.1455426, 49.1926064], [9.1455314, 49.1926308]], [[9.1466412, 49.1921098], [9.1467562, 49.1920164], [9.1468502, 49.1919315], [9.1469221, 49.1918873], [9.1470977, 49.1917801], [9.1471328, 49.1917598]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Am Rotbach" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1687167, 49.1592365], [9.1686436, 49.1594787], [9.1684650, 49.1601781]], [[9.1684650, 49.1601781], [9.1687042, 49.1601435], [9.1688633, 49.1601033], [9.1690364, 49.1600241], [9.1691091, 49.1599653], [9.1699941, 49.1592291], [9.1701629, 49.1590451], [9.1702556, 49.1588851]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Am Salzwerkplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2138949, 49.1638830], [9.2146856, 49.1637902], [9.2157577, 49.1636637]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Am Seelesberg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2466438, 49.1384781], [9.2473956, 49.1384118], [9.2476779, 49.1383795], [9.2479061, 49.1383583], [9.2479696, 49.1383526]], [[9.2479696, 49.1383526], [9.2480421, 49.1383456], [9.2480957, 49.1383491], [9.2481480, 49.1383614], [9.2481976, 49.1383737], [9.2482781, 49.1383913], [9.2483452, 49.1384062], [9.2484216, 49.1384220], [9.2484873, 49.1384316], [9.2485571, 49.1384413], [9.2486254, 49.1384483], [9.2486737, 49.1384483], [9.2487113, 49.1384439], [9.2487716, 49.1384316], [9.2488172, 49.1384123], [9.2488521, 49.1383851], [9.2490152, 49.1382282], [9.2491230, 49.1381110], [9.2493336, 49.1379631], [9.2494087, 49.1379201], [9.2494556, 49.1378885], [9.2494605, 49.1378832], [9.2494851, 49.1378569], [9.2494985, 49.1378262], [9.2495025, 49.1377902], [9.2494918, 49.1377551], [9.2494703, 49.1377104], [9.2493899, 49.1376262], [9.2493000, 49.1375560], [9.2492839, 49.1375744], [9.2492477, 49.1375841], [9.2492142, 49.1375867], [9.2491874, 49.1375797], [9.2491565, 49.1375639], [9.2491391, 49.1375411], [9.2491418, 49.1375182], [9.2491581, 49.1375007], [9.2491954, 49.1374884], [9.2492187, 49.1374871], [9.2492410, 49.1374858], [9.2492692, 49.1374937], [9.2492973, 49.1375147], [9.2493000, 49.1375376], [9.2493000, 49.1375560]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Am Sülmertor" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2209876, 49.1516518], [9.2209174, 49.1516401], [9.2208746, 49.1516223]], [[9.2208746, 49.1516223], [9.2207696, 49.1514786]], [[9.2207696, 49.1514786], [9.2207473, 49.1514449], [9.2206868, 49.1513595], [9.2206667, 49.1513171], [9.2206418, 49.1512596], [9.2205645, 49.1510524], [9.2203227, 49.1507062], [9.2201570, 49.1505344], [9.2199867, 49.1503816]], [[9.2215323, 49.1510857], [9.2215058, 49.1510648], [9.2214686, 49.1510627], [9.2214394, 49.1510711], [9.2213969, 49.1511176], [9.2212911, 49.1512113], [9.2210648, 49.1514028], [9.2208039, 49.1516325], [9.2207852, 49.1516489], [9.2204347, 49.1519446], [9.2203651, 49.1520048], [9.2203441, 49.1520546], [9.2203479, 49.1521167], [9.2203947, 49.1521410], [9.2204703, 49.1521444], [9.2205563, 49.1521195]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Am Teuerbrünnle" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1069097, 49.1807477], [9.1067731, 49.1804478], [9.1063554, 49.1805307]], [[9.1071337, 49.1802600], [9.1071047, 49.1801915], [9.1071750, 49.1801788], [9.1072041, 49.1802473], [9.1071337, 49.1802600]], [[9.1080617, 49.1803494], [9.1078974, 49.1799873]], [[9.1072818, 49.1805763], [9.1071337, 49.1802600]], [[9.1078974, 49.1799873], [9.1078783, 49.1799472], [9.1077870, 49.1799658], [9.1078061, 49.1800059], [9.1078974, 49.1799873]], [[9.1092425, 49.1800144], [9.1088377, 49.1797170], [9.1086346, 49.1797524]], [[9.1089870, 49.1801618], [9.1090558, 49.1802147], [9.1091126, 49.1803479], [9.1091660, 49.1804942], [9.1090261, 49.1805202], [9.1088897, 49.1805645]], [[9.1142159, 49.1783597], [9.1141140, 49.1784814], [9.1140033, 49.1785860], [9.1137465, 49.1786849], [9.1136307, 49.1787944], [9.1135281, 49.1790417], [9.1134523, 49.1791267], [9.1133343, 49.1791909], [9.1131734, 49.1792185], [9.1130212, 49.1792350], [9.1126215, 49.1792719], [9.1122088, 49.1793211], [9.1118544, 49.1793333], [9.1116772, 49.1793078], [9.1113830, 49.1792351], [9.1111380, 49.1791991], [9.1109997, 49.1791923], [9.1108649, 49.1792073], [9.1107262, 49.1792294], [9.1105938, 49.1792710], [9.1104384, 49.1793268], [9.1101253, 49.1795019], [9.1098277, 49.1796768], [9.1092425, 49.1800144], [9.1091545, 49.1800652], [9.1089870, 49.1801618], [9.1080617, 49.1803494], [9.1076503, 49.1804252], [9.1074569, 49.1804829], [9.1072818, 49.1805763], [9.1069097, 49.1807477], [9.1067409, 49.1808227], [9.1061618, 49.1809317], [9.1060373, 49.1809663], [9.1059758, 49.1810343], [9.1060340, 49.1813169]], [[9.1130212, 49.1792350], [9.1129523, 49.1788864]], [[9.1122088, 49.1793211], [9.1121302, 49.1789850]], [[9.1113830, 49.1792351], [9.1113293, 49.1789425], [9.1113736, 49.1788604]], [[9.1060340, 49.1813169], [9.1061239, 49.1817109]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Am Viehweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2149802, 49.1621774], [9.2148786, 49.1621644], [9.2148277, 49.1621401], [9.2147604, 49.1620960], [9.2146235, 49.1620061], [9.2145163, 49.1619831], [9.2144603, 49.1619817], [9.2139679, 49.1619760], [9.2138587, 49.1619827], [9.2135053, 49.1620042], [9.2132976, 49.1620122], [9.2129239, 49.1620241], [9.2128066, 49.1620279], [9.2126737, 49.1620211], [9.2125535, 49.1620046], [9.2124221, 49.1619585], [9.2123028, 49.1618936]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Am Wasserturm" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1520404, 49.1188986], [9.1520824, 49.1188761], [9.1521218, 49.1188078], [9.1521011, 49.1187346], [9.1519440, 49.1183767], [9.1517126, 49.1178655], [9.1516265, 49.1177884], [9.1515129, 49.1177589], [9.1515359, 49.1176874], [9.1514774, 49.1173773], [9.1515195, 49.1172698], [9.1523866, 49.1174294], [9.1525324, 49.1172732]], [[9.1513915, 49.1172361], [9.1515195, 49.1172698]], [[9.1538617, 49.1191541], [9.1536620, 49.1191782], [9.1524632, 49.1193226], [9.1523604, 49.1193203], [9.1523094, 49.1192725], [9.1522441, 49.1190356], [9.1522305, 49.1189918], [9.1522960, 49.1189742], [9.1526026, 49.1189362], [9.1532150, 49.1188707], [9.1534568, 49.1188276], [9.1534994, 49.1188486], [9.1536620, 49.1191782]], [[9.1519440, 49.1183767], [9.1532244, 49.1181811]], [[9.1523866, 49.1174294], [9.1525711, 49.1174619], [9.1526660, 49.1174996], [9.1527360, 49.1175829], [9.1527736, 49.1176817], [9.1527243, 49.1177328], [9.1526279, 49.1177606], [9.1517126, 49.1178655]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Am Wollhaus" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2210955, 49.1391890], [9.2210174, 49.1391615], [9.2209166, 49.1391054], [9.2207919, 49.1390218]], [[9.2211570, 49.1385122], [9.2210824, 49.1385445], [9.2210557, 49.1386093], [9.2210347, 49.1387569], [9.2209746, 49.1388249], [9.2208903, 49.1388596], [9.2208073, 49.1388745], [9.2206477, 49.1388986]], [[9.2210955, 49.1391890], [9.2210903, 49.1392796]], [[9.2211570, 49.1385122], [9.2210502, 49.1385073], [9.2207536, 49.1384935], [9.2199966, 49.1384585], [9.2193171, 49.1384270]], [[9.2211724, 49.1384231], [9.2211570, 49.1385122]], [[9.2211946, 49.1370764], [9.2212253, 49.1372068], [9.2212684, 49.1373902], [9.2212811, 49.1374948], [9.2212792, 49.1375326], [9.2212510, 49.1378167]], [[9.2207919, 49.1390218], [9.2207865, 49.1390138], [9.2207720, 49.1389997], [9.2206477, 49.1388986], [9.2205276, 49.1388407], [9.2203029, 49.1387763]], [[9.2208790, 49.1396013], [9.2209242, 49.1392818], [9.2209478, 49.1392331], [9.2209800, 49.1391954], [9.2209906, 49.1391858], [9.2210174, 49.1391615], [9.2210564, 49.1391357], [9.2211020, 49.1391219], [9.2212032, 49.1391132], [9.2212601, 49.1391164]], [[9.2208790, 49.1396013], [9.2208819, 49.1392417], [9.2208291, 49.1391127], [9.2207919, 49.1390218]], [[9.2211144, 49.1390083], [9.2211020, 49.1391219]], [[9.2209517, 49.1398678], [9.2209087, 49.1397745], [9.2208901, 49.1396967], [9.2208790, 49.1396013]], [[9.2190792, 49.1393899], [9.2202658, 49.1397638], [9.2203368, 49.1398100], [9.2204685, 49.1398601], [9.2206845, 49.1399316], [9.2208380, 49.1399812], [9.2209003, 49.1400591]], [[9.2211020, 49.1391219], [9.2210955, 49.1391890]], [[9.2211944, 49.1382533], [9.2211724, 49.1384231]], [[9.2212510, 49.1378167], [9.2212446, 49.1378653], [9.2211944, 49.1382533]], [[9.2211570, 49.1385122], [9.2211443, 49.1386005], [9.2211144, 49.1390083]], [[9.2203029, 49.1387763], [9.2199344, 49.1387309], [9.2197599, 49.1387043], [9.2196249, 49.1386697], [9.2195251, 49.1386304]], [[9.2210903, 49.1392796], [9.2210758, 49.1395345]], [[9.2208307, 49.1399039], [9.2207751, 49.1398543], [9.2207416, 49.1398132], [9.2207305, 49.1397694], [9.2207233, 49.1397298]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Ammernweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1194713, 49.1853627], [9.1191904, 49.1850618]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Amselweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1491633, 49.1950428], [9.1493686, 49.1950706], [9.1495897, 49.1951173], [9.1497674, 49.1951753], [9.1499343, 49.1952477], [9.1500784, 49.1953311], [9.1507747, 49.1960134]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Amsterdamer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1801746, 49.1181244], [9.1800162, 49.1186210]], [[9.1800162, 49.1186210], [9.1783669, 49.1185193], [9.1775531, 49.1184160], [9.1765913, 49.1182167], [9.1765255, 49.1181653], [9.1757187, 49.1180427], [9.1750369, 49.1179446], [9.1744494, 49.1178616], [9.1735987, 49.1177273], [9.1727919, 49.1176010], [9.1723784, 49.1175348], [9.1720051, 49.1174748], [9.1717209, 49.1174309], [9.1707710, 49.1172810], [9.1693090, 49.1170223]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "An der Ziegelhütte" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1851666, 49.1165730], [9.1852006, 49.1162274], [9.1852144, 49.1160870], [9.1851639, 49.1159912], [9.1850662, 49.1159303], [9.1848969, 49.1159142], [9.1837446, 49.1158539]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Andersenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1180678, 49.1840469], [9.1190894, 49.1837730], [9.1196093, 49.1836222], [9.1201021, 49.1834656], [9.1205551, 49.1833198], [9.1207450, 49.1832482], [9.1208021, 49.1832030], [9.1208049, 49.1830975], [9.1207679, 49.1826247]], [[9.1208021, 49.1832030], [9.1208482, 49.1832756], [9.1209761, 49.1836085]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Anemonenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1406225, 49.1925173], [9.1408906, 49.1922333]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Anna-Collmer-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1871017, 49.1337926], [9.1876619, 49.1341620], [9.1882307, 49.1344806], [9.1885088, 49.1346200], [9.1887797, 49.1346923], [9.1894825, 49.1347954]], [[9.1882307, 49.1344806], [9.1886303, 49.1341934]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Annalindestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1173430, 49.1834211], [9.1174121, 49.1835550], [9.1175888, 49.1840555]], [[9.1145162, 49.1840745], [9.1145530, 49.1840247], [9.1147124, 49.1839878], [9.1155820, 49.1838319], [9.1165460, 49.1836558], [9.1167515, 49.1835964], [9.1173430, 49.1834211], [9.1177500, 49.1833004], [9.1183982, 49.1830913], [9.1190494, 49.1829154], [9.1207679, 49.1826247], [9.1212423, 49.1825327], [9.1214638, 49.1824984], [9.1216552, 49.1824988], [9.1218146, 49.1825061], [9.1219716, 49.1825256], [9.1220991, 49.1825596], [9.1222172, 49.1826026], [9.1223486, 49.1826714], [9.1225503, 49.1828801], [9.1226031, 49.1829438], [9.1227518, 49.1831750], [9.1227987, 49.1832428], [9.1229651, 49.1834531], [9.1230300, 49.1835262], [9.1232017, 49.1837132], [9.1232944, 49.1838164], [9.1235937, 49.1841155]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Ansbacher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1744122, 49.1644020], [9.1752390, 49.1637361], [9.1759647, 49.1631734], [9.1760958, 49.1630704]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Anton-Bühler-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1156941, 49.1798616], [9.1158754, 49.1798446], [9.1164913, 49.1798142], [9.1171126, 49.1797485]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Armsündersteige" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2364339, 49.1471849], [9.2367325, 49.1471411], [9.2370461, 49.1471383]], [[9.2404763, 49.1474284], [9.2406379, 49.1467533]], [[9.2370461, 49.1471383], [9.2377221, 49.1470806], [9.2380572, 49.1470940], [9.2383876, 49.1471391], [9.2390243, 49.1473795], [9.2393473, 49.1474512], [9.2395963, 49.1474567], [9.2401426, 49.1474388], [9.2404763, 49.1474284], [9.2410989, 49.1474621], [9.2414164, 49.1474850], [9.2419142, 49.1475625], [9.2427193, 49.1477935], [9.2431718, 49.1479025], [9.2437786, 49.1479061], [9.2447992, 49.1478953], [9.2457051, 49.1478544], [9.2467702, 49.1478027], [9.2477389, 49.1479230], [9.2483173, 49.1480204], [9.2487612, 49.1481302], [9.2496767, 49.1484680]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Arndtstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2558929, 49.1367079], [9.2558124, 49.1365940], [9.2557702, 49.1364791], [9.2557525, 49.1362912], [9.2557161, 49.1360291], [9.2556833, 49.1351601], [9.2556764, 49.1349163], [9.2556870, 49.1347426], [9.2557117, 49.1345267], [9.2560131, 49.1335030], [9.2560159, 49.1334809], [9.2563020, 49.1324387]], [[9.2563020, 49.1324387], [9.2567359, 49.1324517], [9.2571647, 49.1324649], [9.2577596, 49.1324814]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Arnoldstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1996618, 49.1191958], [9.1996961, 49.1195273], [9.1997042, 49.1196098], [9.1997163, 49.1196756], [9.1997270, 49.1197327], [9.1997337, 49.1198459], [9.1997324, 49.1199214], [9.1997327, 49.1199867], [9.1997326, 49.1200127], [9.1997324, 49.1200566], [9.1997203, 49.1202216], [9.1997055, 49.1205007], [9.1996940, 49.1205922], [9.1996814, 49.1206625], [9.1996736, 49.1206919], [9.1996586, 49.1207245], [9.1996398, 49.1207500], [9.1994950, 49.1209273], [9.1994468, 49.1209821], [9.1993931, 49.1210431], [9.1991503, 49.1212950], [9.1990083, 49.1214517], [9.1988681, 49.1215952], [9.1985862, 49.1219068], [9.1981391, 49.1224190]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Asperger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1106896, 49.1808017], [9.1118742, 49.1804818], [9.1121557, 49.1803986], [9.1125981, 49.1802987], [9.1129630, 49.1802379], [9.1133253, 49.1802008]], [[9.1106896, 49.1808017], [9.1103590, 49.1808746], [9.1101055, 49.1809177], [9.1094632, 49.1810269], [9.1086140, 49.1811345], [9.1084360, 49.1811724], [9.1083160, 49.1812179], [9.1082162, 49.1812764], [9.1081728, 49.1813233], [9.1080847, 49.1816447]], [[9.1082162, 49.1812764], [9.1079711, 49.1812263], [9.1075405, 49.1813203]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Asternweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1893828, 49.1417479], [9.1894347, 49.1420447]], [[9.1894347, 49.1420447], [9.1894564, 49.1421258], [9.1895492, 49.1425397]], [[9.1893348, 49.1417426], [9.1892675, 49.1414688], [9.1892378, 49.1411477]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Attichäckerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1315520, 49.1837270], [9.1312549, 49.1837844], [9.1310577, 49.1837684], [9.1279511, 49.1832833], [9.1263437, 49.1833088], [9.1261431, 49.1832818]], [[9.1243597, 49.1838539], [9.1242079, 49.1839070], [9.1241708, 49.1839199], [9.1236542, 49.1840947], [9.1235937, 49.1841155], [9.1224385, 49.1844946], [9.1223081, 49.1845377], [9.1216266, 49.1847234], [9.1208506, 49.1849579], [9.1202614, 49.1851317], [9.1194713, 49.1853627], [9.1190754, 49.1854851]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Auerbachstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2149264, 49.1264171], [9.2149543, 49.1264423], [9.2149704, 49.1264660], [9.2149999, 49.1265169], [9.2150348, 49.1265950], [9.2151126, 49.1267933], [9.2152064, 49.1270479], [9.2152817, 49.1272387], [9.2153227, 49.1273640]], [[9.2145681, 49.1266643], [9.2150348, 49.1265950]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Auf dem Bau" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1897183, 49.1187958], [9.1900615, 49.1185673], [9.1900971, 49.1185307], [9.1901301, 49.1185078], [9.1901859, 49.1184699]], [[9.1901134, 49.1197019], [9.1898491, 49.1194271], [9.1897304, 49.1192291], [9.1898350, 49.1192069], [9.1897655, 49.1189844], [9.1897183, 49.1187958]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Auf der Schanz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1823882, 49.1435312], [9.1826734, 49.1435114], [9.1832942, 49.1435029], [9.1842161, 49.1434890], [9.1851674, 49.1434162], [9.1857113, 49.1433678], [9.1860646, 49.1433341]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "August-Häußer-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1991899, 49.1486355], [9.1996554, 49.1486357], [9.1998155, 49.1486123], [9.1999470, 49.1485380], [9.2000107, 49.1484601]], [[9.1991899, 49.1486355], [9.1991186, 49.1486275], [9.1986999, 49.1485809], [9.1981874, 49.1485051], [9.1977156, 49.1484215], [9.1969916, 49.1482477], [9.1967316, 49.1481750], [9.1966167, 49.1481474]], [[9.1999365, 49.1490166], [9.1999138, 49.1489008], [9.1998729, 49.1488322], [9.1997955, 49.1487845], [9.1996134, 49.1487287], [9.1991899, 49.1486355]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "August-Hornung-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1886628, 49.1397084], [9.1886263, 49.1388842], [9.1885870, 49.1382916], [9.1885853, 49.1380615], [9.1886023, 49.1378614], [9.1886108, 49.1377013], [9.1886176, 49.1375434], [9.1886142, 49.1374300], [9.1885789, 49.1373768]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "August-Lämmle-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2587527, 49.1346622], [9.2583963, 49.1346238], [9.2580197, 49.1345389], [9.2578824, 49.1344598], [9.2577831, 49.1343309], [9.2577739, 49.1342101], [9.2577884, 49.1341042], [9.2578287, 49.1339795], [9.2579023, 49.1337838], [9.2580141, 49.1336349], [9.2581974, 49.1334665], [9.2583575, 49.1333749], [9.2585317, 49.1332869], [9.2587054, 49.1332130], [9.2588842, 49.1331516], [9.2593202, 49.1330665], [9.2596235, 49.1330450]], [[9.2583575, 49.1333749], [9.2589019, 49.1337132]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "August-Mogler-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1966310, 49.1508593], [9.1965249, 49.1508557], [9.1960810, 49.1508513], [9.1958467, 49.1508495], [9.1948095, 49.1508415], [9.1946335, 49.1500611], [9.1945820, 49.1498557], [9.1944585, 49.1492032], [9.1943620, 49.1486685], [9.1941396, 49.1476460], [9.1941338, 49.1476169], [9.1940337, 49.1472817], [9.1939562, 49.1470128], [9.1938128, 49.1465093], [9.1938526, 49.1464339]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "August-Rücker-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1705813, 49.1597557], [9.1712609, 49.1600330], [9.1713099, 49.1600530], [9.1713970, 49.1600712], [9.1714833, 49.1600620], [9.1718988, 49.1599595], [9.1722748, 49.1598714]], [[9.1712609, 49.1600330], [9.1711182, 49.1601863], [9.1708259, 49.1604055], [9.1707864, 49.1604247], [9.1706758, 49.1604040]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "August-Schreiber-Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2108543, 49.1305118], [9.2109622, 49.1304913], [9.2115258, 49.1303777], [9.2116579, 49.1303516], [9.2116968, 49.1303457], [9.2129219, 49.1300977], [9.2132147, 49.1300378], [9.2132631, 49.1300218], [9.2133114, 49.1299976], [9.2133517, 49.1299610], [9.2134258, 49.1298532], [9.2134751, 49.1297913]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "August-Wankmiller-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1758333, 49.1806769], [9.1761362, 49.1805230], [9.1764180, 49.1804413], [9.1767873, 49.1804307], [9.1797190, 49.1803955], [9.1821857, 49.1803452], [9.1825151, 49.1803228]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Augustenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1934622, 49.1360985], [9.1920874, 49.1362365]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Auhang" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2336918, 49.1641396], [9.2335276, 49.1642877], [9.2331811, 49.1643749], [9.2330034, 49.1644085], [9.2327931, 49.1644482], [9.2327089, 49.1644599]], [[9.2327089, 49.1644599], [9.2320591, 49.1644331], [9.2317964, 49.1644163], [9.2314690, 49.1643489], [9.2312208, 49.1642907], [9.2305367, 49.1641197], [9.2300869, 49.1639782], [9.2295670, 49.1638105], [9.2291256, 49.1636509]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Austraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2184204, 49.1798721], [9.2184480, 49.1796814], [9.2184776, 49.1795541], [9.2186761, 49.1788009], [9.2187026, 49.1786345], [9.2187130, 49.1785452], [9.2187022, 49.1784311], [9.2186831, 49.1783384], [9.2186325, 49.1782167], [9.2185701, 49.1781063], [9.2184900, 49.1779884], [9.2182167, 49.1776800], [9.2179433, 49.1773917], [9.2177489, 49.1771845]], [[9.2177489, 49.1771845], [9.2176349, 49.1772545], [9.2174705, 49.1773632], [9.2173688, 49.1774912], [9.2172769, 49.1776439], [9.2168535, 49.1801212], [9.2167677, 49.1802178], [9.2166518, 49.1802928], [9.2165250, 49.1803187], [9.2153747, 49.1802480]], [[9.2173520, 49.1824852], [9.2176024, 49.1822612], [9.2178481, 49.1820531], [9.2179529, 49.1819362], [9.2180470, 49.1817972], [9.2180981, 49.1816541], [9.2181691, 49.1812595], [9.2184204, 49.1798721]], [[9.2184536, 49.1720846], [9.2185146, 49.1716779], [9.2186135, 49.1711211], [9.2186245, 49.1710580], [9.2186812, 49.1707903]], [[9.2177489, 49.1771845], [9.2176700, 49.1770768], [9.2176008, 49.1769155], [9.2175728, 49.1768026], [9.2175638, 49.1766875], [9.2175989, 49.1764360], [9.2180349, 49.1741228], [9.2184536, 49.1720846]], [[9.2189944, 49.1690832], [9.2190124, 49.1689565]], [[9.2186812, 49.1707903], [9.2186916, 49.1707365], [9.2187124, 49.1706285], [9.2187642, 49.1703598]], [[9.2190563, 49.1685918], [9.2190703, 49.1684831], [9.2191168, 49.1679926]], [[9.2191168, 49.1679926], [9.2191937, 49.1672076], [9.2192694, 49.1665178], [9.2192996, 49.1661191]], [[9.2189556, 49.1693555], [9.2189767, 49.1692072], [9.2189944, 49.1690832]], [[9.2190124, 49.1689565], [9.2190323, 49.1688169], [9.2190563, 49.1685918]], [[9.2192996, 49.1661191], [9.2194167, 49.1650733], [9.2194614, 49.1647396], [9.2195500, 49.1640783], [9.2195787, 49.1635997], [9.2196067, 49.1633497]], [[9.2193541, 49.1593393], [9.2193692, 49.1594543], [9.2193894, 49.1596075], [9.2194315, 49.1599261], [9.2194597, 49.1601716], [9.2194801, 49.1604167], [9.2194829, 49.1604523], [9.2194885, 49.1605229], [9.2194976, 49.1606370], [9.2195253, 49.1609374], [9.2195559, 49.1613161], [9.2196420, 49.1618578], [9.2196508, 49.1619785], [9.2196747, 49.1623085], [9.2197032, 49.1625731], [9.2196959, 49.1626957], [9.2197310, 49.1629462]], [[9.2196058, 49.1629565], [9.2195690, 49.1627004], [9.2194918, 49.1619830], [9.2194072, 49.1612612], [9.2193473, 49.1607846], [9.2193136, 49.1605297], [9.2193031, 49.1604577], [9.2192777, 49.1602541], [9.2192520, 49.1597786], [9.2192291, 49.1594964], [9.2191974, 49.1593556], [9.2191614, 49.1592735], [9.2191182, 49.1591538], [9.2188757, 49.1584456], [9.2186873, 49.1579069], [9.2186467, 49.1577648], [9.2185195, 49.1573746], [9.2181937, 49.1564044], [9.2178774, 49.1555260], [9.2178243, 49.1553649], [9.2176776, 49.1548719], [9.2176521, 49.1547721], [9.2176084, 49.1546504], [9.2175649, 49.1545054], [9.2175402, 49.1544307], [9.2175263, 49.1544038]], [[9.2196067, 49.1633497], [9.2194860, 49.1633015], [9.2194337, 49.1632579], [9.2193921, 49.1631760], [9.2193903, 49.1631452], [9.2194021, 49.1630964], [9.2194201, 49.1630649], [9.2194357, 49.1630458], [9.2194569, 49.1630256], [9.2194727, 49.1630134], [9.2195530, 49.1629718], [9.2196058, 49.1629565], [9.2196244, 49.1629528], [9.2196915, 49.1629459], [9.2197310, 49.1629462], [9.2198177, 49.1629586], [9.2198957, 49.1629863], [9.2199530, 49.1630220], [9.2199929, 49.1630631], [9.2200185, 49.1631135], [9.2200242, 49.1631569], [9.2200157, 49.1632010], [9.2199992, 49.1632338], [9.2199369, 49.1632959], [9.2198530, 49.1633371], [9.2198152, 49.1633479], [9.2197046, 49.1633603], [9.2196067, 49.1633497]], [[9.2177095, 49.1543351], [9.2177062, 49.1544106], [9.2177092, 49.1544646], [9.2177289, 49.1545433], [9.2177643, 49.1546246], [9.2177679, 49.1546328], [9.2177825, 49.1546903], [9.2177984, 49.1547425], [9.2178496, 49.1548666], [9.2179448, 49.1551491], [9.2180586, 49.1554979], [9.2182801, 49.1560949], [9.2184223, 49.1564746], [9.2185438, 49.1568914], [9.2186443, 49.1572562], [9.2188188, 49.1577611], [9.2188531, 49.1578846], [9.2189725, 49.1582338], [9.2191698, 49.1587400], [9.2193389, 49.1592529], [9.2193541, 49.1593393]], [[9.2187642, 49.1703598], [9.2188105, 49.1701196], [9.2189492, 49.1694003], [9.2189556, 49.1693555]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Äußere Mausklinge" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2231515, 49.1209242], [9.2238644, 49.1207925], [9.2246958, 49.1206457], [9.2249589, 49.1205909], [9.2258322, 49.1204329]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Äußerer Pfühl" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2572573, 49.1430594], [9.2568939, 49.1437927], [9.2568494, 49.1438478], [9.2568367, 49.1439069], [9.2567128, 49.1438906], [9.2565317, 49.1438616], [9.2557555, 49.1436044], [9.2557193, 49.1435924], [9.2552096, 49.1434483], [9.2547604, 49.1433361], [9.2539929, 49.1431582], [9.2535753, 49.1430264], [9.2532146, 49.1428966], [9.2528400, 49.1427877], [9.2524892, 49.1427371], [9.2519482, 49.1426943], [9.2517995, 49.1426710], [9.2510167, 49.1423110], [9.2505034, 49.1421070], [9.2502961, 49.1420455], [9.2502496, 49.1420424]], [[9.2549679, 49.1420038], [9.2550450, 49.1419707]], [[9.2554868, 49.1421241], [9.2553677, 49.1422625]], [[9.2553555, 49.1425322], [9.2554727, 49.1423558]], [[9.2563369, 49.1426278], [9.2563330, 49.1426820]], [[9.2552073, 49.1420240], [9.2551354, 49.1420533]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Äußerer Steinweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2437515, 49.1272261], [9.2451364, 49.1265625], [9.2452136, 49.1265179], [9.2452993, 49.1264583], [9.2454343, 49.1263452], [9.2458926, 49.1259548], [9.2459343, 49.1259107], [9.2459722, 49.1258561], [9.2459991, 49.1257981]], [[9.2392977, 49.1283973], [9.2399730, 49.1283751], [9.2407801, 49.1283631], [9.2410708, 49.1283321], [9.2413204, 49.1282851], [9.2415998, 49.1282106], [9.2419562, 49.1280726], [9.2429020, 49.1276107]], [[9.2459991, 49.1257981], [9.2460159, 49.1257464], [9.2460243, 49.1257017]], [[9.2429020, 49.1276107], [9.2437515, 49.1272261]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Bachstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1897350, 49.1376018], [9.1904914, 49.1375654], [9.1910021, 49.1375450], [9.1917541, 49.1374698], [9.1923691, 49.1374113], [9.1930296, 49.1373356], [9.1934398, 49.1372870], [9.1937429, 49.1372535]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Backhausplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1563102, 49.1201527], [9.1563345, 49.1201048], [9.1563885, 49.1200721], [9.1564532, 49.1200470], [9.1566599, 49.1199944], [9.1567453, 49.1198966], [9.1568362, 49.1197952], [9.1569594, 49.1196516], [9.1569861, 49.1195795]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Backhausstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1699299, 49.1580755], [9.1705006, 49.1581676], [9.1707857, 49.1582162]], [[9.1707857, 49.1582162], [9.1710854, 49.1582683]], [[9.1710854, 49.1582683], [9.1715992, 49.1583497], [9.1716443, 49.1583568], [9.1722496, 49.1584621], [9.1722662, 49.1584650], [9.1724393, 49.1585298]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Badener Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2475322, 49.1331077], [9.2483846, 49.1328525], [9.2486103, 49.1328256]], [[9.2500369, 49.1359612], [9.2498361, 49.1358705], [9.2495363, 49.1357190], [9.2492919, 49.1356111], [9.2491772, 49.1355604]], [[9.2480349, 49.1333088], [9.2472356, 49.1335486]], [[9.2490108, 49.1343801], [9.2479793, 49.1346777], [9.2479455, 49.1346887]], [[9.2494461, 49.1351945], [9.2495590, 49.1352086], [9.2502492, 49.1352946]], [[9.2487124, 49.1357032], [9.2487770, 49.1357818], [9.2490503, 49.1361145], [9.2491930, 49.1362880]], [[9.2483192, 49.1358178], [9.2484744, 49.1360704], [9.2485393, 49.1361780], [9.2485910, 49.1362461], [9.2487966, 49.1361962], [9.2490503, 49.1361145]], [[9.2482072, 49.1334075], [9.2488535, 49.1330932]], [[9.2487073, 49.1337756], [9.2475826, 49.1341121]], [[9.2465369, 49.1333970], [9.2466544, 49.1333607], [9.2470101, 49.1332564], [9.2470649, 49.1332382], [9.2475322, 49.1331077], [9.2476593, 49.1331272], [9.2477315, 49.1331559]], [[9.2492454, 49.1336255], [9.2487073, 49.1337756]], [[9.2491387, 49.1346261], [9.2492358, 49.1347596], [9.2493400, 49.1348806], [9.2493676, 49.1349215], [9.2494081, 49.1349887], [9.2494352, 49.1350635], [9.2494487, 49.1351299], [9.2494461, 49.1351945], [9.2494351, 49.1352617], [9.2494096, 49.1353261], [9.2493760, 49.1353816], [9.2493261, 49.1354423], [9.2492616, 49.1355007], [9.2491772, 49.1355604]], [[9.2477315, 49.1331559], [9.2478486, 49.1332098], [9.2480349, 49.1333088], [9.2482072, 49.1334075], [9.2482765, 49.1334525], [9.2482878, 49.1334598], [9.2483171, 49.1334788], [9.2483685, 49.1335169], [9.2485371, 49.1336352], [9.2487073, 49.1337756], [9.2488100, 49.1338742], [9.2488877, 49.1339804], [9.2489295, 49.1340595], [9.2489687, 49.1341419], [9.2489939, 49.1342647], [9.2490108, 49.1343801], [9.2490367, 49.1344626], [9.2490599, 49.1345145], [9.2490895, 49.1345583], [9.2491230, 49.1346072], [9.2491387, 49.1346261]], [[9.2476222, 49.1350838], [9.2476106, 49.1350520], [9.2476035, 49.1350194], [9.2476028, 49.1349963], [9.2475962, 49.1349665], [9.2475897, 49.1349392], [9.2475794, 49.1349165], [9.2475538, 49.1348714], [9.2474851, 49.1347755]], [[9.2491772, 49.1355604], [9.2490614, 49.1356182], [9.2489492, 49.1356599], [9.2488247, 49.1356908], [9.2487124, 49.1357032], [9.2485827, 49.1357030], [9.2484601, 49.1356944], [9.2483412, 49.1356770], [9.2482334, 49.1356503], [9.2481277, 49.1356120], [9.2480439, 49.1355701], [9.2479673, 49.1355214], [9.2478912, 49.1354615]], [[9.2478912, 49.1354615], [9.2478240, 49.1353875], [9.2477398, 49.1352738], [9.2476222, 49.1350838]], [[9.2448308, 49.1340180], [9.2449741, 49.1339523]], [[9.2474851, 49.1347755], [9.2473816, 49.1346203], [9.2473248, 49.1345417], [9.2469352, 49.1339697]], [[9.2467646, 49.1337209], [9.2465749, 49.1334483]], [[9.2469352, 49.1339697], [9.2467646, 49.1337209]], [[9.2465749, 49.1334483], [9.2465369, 49.1333970]], [[9.2449741, 49.1339523], [9.2450308, 49.1339263], [9.2451336, 49.1338786], [9.2453350, 49.1337858], [9.2456522, 49.1336666], [9.2458314, 49.1336102], [9.2460594, 49.1335361], [9.2465369, 49.1333970]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Badstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2006750, 49.1326333], [9.2012930, 49.1328064], [9.2021746, 49.1329815], [9.2036579, 49.1333366], [9.2043726, 49.1335151], [9.2046305, 49.1335778], [9.2046861, 49.1335906], [9.2051727, 49.1336996], [9.2052708, 49.1337230], [9.2055573, 49.1337913]], [[9.2128314, 49.1392289], [9.2132103, 49.1395887], [9.2135822, 49.1399895], [9.2136558, 49.1400676]], [[9.2055573, 49.1337913], [9.2070978, 49.1341441], [9.2074957, 49.1343108], [9.2078535, 49.1345692], [9.2080491, 49.1347304], [9.2083282, 49.1350117], [9.2094651, 49.1362024], [9.2100479, 49.1367849], [9.2101897, 49.1369294], [9.2103203, 49.1370470], [9.2105364, 49.1372510], [9.2109425, 49.1376300], [9.2109704, 49.1376569], [9.2113178, 49.1379716], [9.2115905, 49.1382204], [9.2124001, 49.1388557], [9.2126761, 49.1390946], [9.2128314, 49.1392289]], [[9.2136558, 49.1400676], [9.2139975, 49.1405726], [9.2141374, 49.1408179], [9.2141456, 49.1408711], [9.2141220, 49.1409204]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Bahnhofstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2144320, 49.1426426], [9.2143000, 49.1426557], [9.2139076, 49.1427072], [9.2132019, 49.1427998]], [[9.2123238, 49.1426763], [9.2124940, 49.1426506], [9.2130418, 49.1426448], [9.2130989, 49.1426389]], [[9.2146146, 49.1428672], [9.2145519, 49.1427279], [9.2145248, 49.1426707]], [[9.2115258, 49.1426799], [9.2117060, 49.1426766]], [[9.2074292, 49.1422059], [9.2076144, 49.1422633], [9.2078784, 49.1423390], [9.2080368, 49.1423344], [9.2081171, 49.1423124]], [[9.2132019, 49.1427998], [9.2131201, 49.1428091], [9.2130492, 49.1428034], [9.2130303, 49.1427967], [9.2129764, 49.1427778], [9.2129538, 49.1427699], [9.2129294, 49.1427612], [9.2128705, 49.1427356], [9.2128004, 49.1427127]], [[9.2146884, 49.1430102], [9.2146146, 49.1428672]], [[9.2082652, 49.1422404], [9.2083376, 49.1423148], [9.2084016, 49.1423483], [9.2086042, 49.1424315], [9.2089107, 49.1425362], [9.2092656, 49.1426557], [9.2093425, 49.1426773], [9.2094749, 49.1426981]], [[9.2050574, 49.1411070], [9.2050618, 49.1411938], [9.2050832, 49.1414143]], [[9.2081171, 49.1423124], [9.2082652, 49.1422404]], [[9.2094749, 49.1426981], [9.2095251, 49.1427023], [9.2097914, 49.1427060], [9.2100961, 49.1427023], [9.2107307, 49.1426974]], [[9.2072950, 49.1421627], [9.2074292, 49.1422059]], [[9.2050832, 49.1414143], [9.2051987, 49.1414756], [9.2053306, 49.1415226], [9.2056998, 49.1416405], [9.2058695, 49.1416980], [9.2061032, 49.1417753], [9.2064844, 49.1418921], [9.2069506, 49.1420564], [9.2072950, 49.1421627]], [[9.2129764, 49.1427778], [9.2129597, 49.1427586], [9.2129586, 49.1427404], [9.2129633, 49.1427290], [9.2129839, 49.1426988], [9.2130082, 49.1426727], [9.2130524, 49.1426536], [9.2130989, 49.1426389]], [[9.2114315, 49.1426850], [9.2115258, 49.1426799]], [[9.2117060, 49.1426766], [9.2121196, 49.1426759]], [[9.2121196, 49.1426759], [9.2123238, 49.1426763]], [[9.2107307, 49.1426974], [9.2109866, 49.1426891]], [[9.2109866, 49.1426891], [9.2113109, 49.1426866], [9.2114315, 49.1426850]], [[9.2128004, 49.1427127], [9.2126912, 49.1427026], [9.2124993, 49.1427071], [9.2123238, 49.1426763]], [[9.2130989, 49.1426389], [9.2131470, 49.1426340], [9.2139018, 49.1425562], [9.2142650, 49.1425188], [9.2144086, 49.1425063]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Baltenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1760009, 49.1125238], [9.1761569, 49.1135449], [9.1761765, 49.1136751], [9.1761932, 49.1137745], [9.1762275, 49.1140711], [9.1762742, 49.1144744]], [[9.1759386, 49.1121635], [9.1759812, 49.1122955], [9.1759973, 49.1124825], [9.1760009, 49.1125238]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Balthasar-Wolff-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2347715, 49.1506483], [9.2347728, 49.1504503]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Bamberger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1735469, 49.1615007], [9.1733885, 49.1616145], [9.1731816, 49.1621987], [9.1730584, 49.1625701], [9.1725802, 49.1630519], [9.1719735, 49.1637382]], [[9.1726518, 49.1695401], [9.1725034, 49.1682603], [9.1724117, 49.1678121], [9.1721452, 49.1669765], [9.1720693, 49.1666590], [9.1720474, 49.1664982], [9.1720132, 49.1661617], [9.1719845, 49.1658900], [9.1719535, 49.1655971], [9.1719772, 49.1649151]], [[9.1624404, 49.1661120], [9.1631123, 49.1660994], [9.1632615, 49.1661183], [9.1634202, 49.1661568], [9.1655150, 49.1663256], [9.1656170, 49.1656098], [9.1665696, 49.1656406], [9.1669051, 49.1656514], [9.1681763, 49.1656927], [9.1689989, 49.1656925], [9.1700903, 49.1656920], [9.1706869, 49.1656616], [9.1710940, 49.1656409], [9.1719535, 49.1655971]], [[9.1719735, 49.1637382], [9.1716994, 49.1641529], [9.1720028, 49.1646695]], [[9.1719772, 49.1649151], [9.1719900, 49.1647795], [9.1720028, 49.1646695]], [[9.1677141, 49.1695824], [9.1679737, 49.1673837], [9.1681088, 49.1662396], [9.1681400, 49.1659347], [9.1681763, 49.1656927]], [[9.1720028, 49.1646695], [9.1732828, 49.1646511], [9.1733693, 49.1646359], [9.1734303, 49.1646015], [9.1736616, 49.1642353]], [[9.1734303, 49.1646015], [9.1738512, 49.1647227]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Bauernpfadstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2279902, 49.1524034], [9.2285773, 49.1522705], [9.2290801, 49.1521623]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Bauernstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1936155, 49.1316609], [9.1937627, 49.1318452], [9.1938180, 49.1318563], [9.1940051, 49.1318461], [9.1941581, 49.1318444]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Bauleuteweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2211480, 49.1535969], [9.2201744, 49.1537670], [9.2201571, 49.1537826], [9.2201596, 49.1538057], [9.2203515, 49.1542264]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Bebelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2465367, 49.1423975], [9.2464329, 49.1421112], [9.2463532, 49.1419714], [9.2462586, 49.1418483], [9.2462101, 49.1418097], [9.2461553, 49.1417804], [9.2460928, 49.1417608], [9.2460216, 49.1417531], [9.2458045, 49.1417496], [9.2455742, 49.1417567], [9.2454619, 49.1417761], [9.2453788, 49.1418079]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Bechtstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2316641, 49.1506866], [9.2317348, 49.1506415], [9.2317649, 49.1506045], [9.2317932, 49.1505420], [9.2318126, 49.1504044], [9.2318763, 49.1497036], [9.2318639, 49.1496527], [9.2318250, 49.1495926], [9.2316219, 49.1493729]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Beethovenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2235533, 49.1268075], [9.2234768, 49.1268192], [9.2229789, 49.1269076], [9.2226345, 49.1269639], [9.2216556, 49.1270549], [9.2213289, 49.1270584], [9.2204743, 49.1270628], [9.2195975, 49.1270847], [9.2186899, 49.1271123], [9.2180436, 49.1271198], [9.2177768, 49.1271245], [9.2172437, 49.1271447], [9.2171294, 49.1271504], [9.2169976, 49.1271590], [9.2168593, 49.1271752], [9.2168305, 49.1271786], [9.2159986, 49.1272761], [9.2153227, 49.1273640], [9.2148429, 49.1274304], [9.2146521, 49.1274527], [9.2143746, 49.1274861], [9.2140762, 49.1275225], [9.2139982, 49.1275404], [9.2139521, 49.1275594], [9.2139184, 49.1275828]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Behringstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2429835, 49.1369545], [9.2425123, 49.1357499]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Bensheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1061239, 49.1817109], [9.1062120, 49.1820348], [9.1063650, 49.1823094], [9.1066049, 49.1825795], [9.1070669, 49.1830749], [9.1070949, 49.1831045], [9.1072611, 49.1833090], [9.1071992, 49.1834072], [9.1065399, 49.1835128], [9.1059706, 49.1835743]], [[9.1063650, 49.1823094], [9.1054060, 49.1825021]], [[9.1070949, 49.1831045], [9.1065027, 49.1831943], [9.1059182, 49.1832722], [9.1053332, 49.1833407]], [[9.1059706, 49.1835743], [9.1054195, 49.1836073], [9.1045633, 49.1836228], [9.1038841, 49.1836338]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Benzstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2098936, 49.1752205], [9.2099959, 49.1753633], [9.2101934, 49.1754731], [9.2106273, 49.1755576], [9.2113425, 49.1756482], [9.2128351, 49.1757677], [9.2129462, 49.1758047], [9.2130508, 49.1758683], [9.2131383, 49.1759876], [9.2131637, 49.1761184], [9.2120450, 49.1819843]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Bergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2169022, 49.1373669], [9.2167727, 49.1381098], [9.2167664, 49.1381492], [9.2167510, 49.1383871], [9.2166883, 49.1389435]], [[9.2165047, 49.1365129], [9.2165471, 49.1366159], [9.2169070, 49.1372862], [9.2169022, 49.1373669]], [[9.2162302, 49.1359679], [9.2165047, 49.1365129]], [[9.2158716, 49.1354581], [9.2159942, 49.1355369], [9.2162302, 49.1359679]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Berliner Platz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2209598, 49.1455302], [9.2212933, 49.1454750], [9.2217694, 49.1453968], [9.2218175, 49.1453887], [9.2222444, 49.1453236], [9.2225400, 49.1452863], [9.2226854, 49.1452735], [9.2228874, 49.1452562], [9.2229623, 49.1452498], [9.2230800, 49.1452347], [9.2231543, 49.1452264]], [[9.2229047, 49.1453775], [9.2228874, 49.1452562], [9.2228724, 49.1451279], [9.2227651, 49.1451404], [9.2225513, 49.1451657], [9.2225533, 49.1451610], [9.2224781, 49.1451714], [9.2224995, 49.1452293], [9.2223521, 49.1452478], [9.2222446, 49.1452594], [9.2220433, 49.1452834], [9.2218464, 49.1453075], [9.2217820, 49.1453146], [9.2217694, 49.1453968], [9.2217633, 49.1454461], [9.2218320, 49.1458481], [9.2219609, 49.1458379], [9.2219431, 49.1457956], [9.2219030, 49.1457641], [9.2218998, 49.1457230], [9.2220182, 49.1456974], [9.2221712, 49.1456840], [9.2223954, 49.1454112], [9.2224677, 49.1454059], [9.2225400, 49.1454757], [9.2225807, 49.1454717], [9.2226203, 49.1453976], [9.2229047, 49.1453775]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Bernhäusle" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1868007, 49.1687867], [9.1868900, 49.1687850], [9.1869320, 49.1687936], [9.1869425, 49.1688228], [9.1869500, 49.1692679], [9.1869492, 49.1692854], [9.1869732, 49.1706780]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Bert-Brecht-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1402539, 49.1914774], [9.1396909, 49.1914238], [9.1391812, 49.1913729], [9.1391039, 49.1913729], [9.1390672, 49.1913930]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Berwanger Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1046133, 49.1828413], [9.1043986, 49.1832643]], [[9.1046133, 49.1828413], [9.1045674, 49.1825896], [9.1044805, 49.1823617]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Besigheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2111072, 49.1291460], [9.2110012, 49.1291650], [9.2106691, 49.1292336], [9.2103280, 49.1293069], [9.2102011, 49.1293296]], [[9.2113723, 49.1290855], [9.2113250, 49.1291491], [9.2112571, 49.1292396], [9.2112396, 49.1292773], [9.2112205, 49.1293656]], [[9.2112205, 49.1293656], [9.2111574, 49.1292613], [9.2111245, 49.1291887], [9.2111072, 49.1291460], [9.2110910, 49.1291061], [9.2110752, 49.1290671], [9.2110407, 49.1289733]], [[9.2129588, 49.1332441], [9.2121681, 49.1315072], [9.2121360, 49.1314252], [9.2120602, 49.1312503], [9.2118970, 49.1308737], [9.2116579, 49.1303516], [9.2114231, 49.1298204], [9.2112205, 49.1293656]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Beutingerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2466285, 49.1453754], [9.2463607, 49.1449763], [9.2462596, 49.1448804], [9.2461037, 49.1448098], [9.2457598, 49.1447093], [9.2453078, 49.1445832], [9.2452167, 49.1445346], [9.2451218, 49.1444601], [9.2450178, 49.1443165], [9.2449434, 49.1441811], [9.2448979, 49.1440684], [9.2448744, 49.1439533], [9.2448775, 49.1438777], [9.2448992, 49.1437701], [9.2449473, 49.1437255], [9.2450028, 49.1436962], [9.2450706, 49.1436761], [9.2451535, 49.1436633], [9.2452330, 49.1436656], [9.2453087, 49.1436763], [9.2455720, 49.1437647], [9.2459664, 49.1439100], [9.2461761, 49.1440078], [9.2464700, 49.1440943], [9.2465649, 49.1441203], [9.2468236, 49.1441736], [9.2471256, 49.1442435], [9.2471467, 49.1442499], [9.2472860, 49.1442926], [9.2473999, 49.1443483], [9.2474867, 49.1444082], [9.2475514, 49.1444947], [9.2477989, 49.1449055], [9.2480137, 49.1452618], [9.2481876, 49.1455289]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Beziersstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2129279, 49.1165290], [9.2129299, 49.1167502], [9.2129361, 49.1167791], [9.2129576, 49.1167932], [9.2129952, 49.1168098]], [[9.2124062, 49.1180821], [9.2128206, 49.1179362], [9.2129294, 49.1178921], [9.2129844, 49.1178693], [9.2130233, 49.1178605], [9.2130662, 49.1178579], [9.2131399, 49.1178579], [9.2137195, 49.1178545], [9.2137837, 49.1178553], [9.2138185, 49.1178500], [9.2138333, 49.1178403], [9.2138387, 49.1178289], [9.2138413, 49.1176165], [9.2138387, 49.1173918], [9.2138360, 49.1170354], [9.2138373, 49.1168529], [9.2138333, 49.1168169], [9.2138172, 49.1167976], [9.2137984, 49.1167879], [9.2137703, 49.1167844], [9.2136737, 49.1167826], [9.2131239, 49.1167844], [9.2130514, 49.1167870], [9.2130139, 49.1167958], [9.2129952, 49.1168098], [9.2129857, 49.1168169], [9.2129616, 49.1168441], [9.2129509, 49.1168774], [9.2129455, 49.1169292], [9.2129420, 49.1170109], [9.2129388, 49.1174199], [9.2129669, 49.1174901], [9.2129669, 49.1175905], [9.2129669, 49.1177692], [9.2129562, 49.1178307], [9.2129294, 49.1178921]], [[9.2117679, 49.1183119], [9.2120678, 49.1182091], [9.2124062, 49.1180821]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Biberacher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1936385, 49.1694058], [9.1938399, 49.1694026], [9.1940615, 49.1693570], [9.1946066, 49.1692264], [9.1954243, 49.1690203], [9.1956013, 49.1689705], [9.1959324, 49.1688908], [9.1962535, 49.1688247], [9.1964424, 49.1687982], [9.1969630, 49.1687413], [9.1972648, 49.1687139], [9.1975629, 49.1687008], [9.1980150, 49.1687443], [9.1983589, 49.1687760], [9.1985395, 49.1688102], [9.1990322, 49.1688967], [9.1992838, 49.1689352], [9.1994777, 49.1689637], [9.1995953, 49.1689065]], [[9.1932342, 49.1694628], [9.1930790, 49.1696007], [9.1928913, 49.1696551], [9.1925471, 49.1697135], [9.1920515, 49.1698805], [9.1915224, 49.1700581], [9.1911407, 49.1701703], [9.1906583, 49.1702801], [9.1895287, 49.1703184], [9.1891169, 49.1703343], [9.1887195, 49.1704043], [9.1884506, 49.1704488], [9.1882550, 49.1704974], [9.1880887, 49.1705675], [9.1879250, 49.1706562]], [[9.1879250, 49.1706562], [9.1875024, 49.1709622], [9.1873164, 49.1710663], [9.1871173, 49.1711430], [9.1868978, 49.1712097], [9.1866700, 49.1712640], [9.1864888, 49.1712969], [9.1862896, 49.1713305], [9.1850612, 49.1714820], [9.1847532, 49.1715474], [9.1840726, 49.1717296], [9.1840264, 49.1717420], [9.1839351, 49.1717664], [9.1833813, 49.1719909], [9.1827552, 49.1723836], [9.1823563, 49.1724949], [9.1822223, 49.1725323], [9.1819014, 49.1726218], [9.1811810, 49.1728687], [9.1808676, 49.1730240], [9.1805827, 49.1732066], [9.1804494, 49.1732850], [9.1802677, 49.1733671], [9.1801956, 49.1733857], [9.1800982, 49.1734108], [9.1797702, 49.1734850], [9.1795302, 49.1735139], [9.1790131, 49.1735437], [9.1788678, 49.1735521], [9.1787192, 49.1735607], [9.1785100, 49.1735767], [9.1782956, 49.1736077], [9.1780865, 49.1736477], [9.1778867, 49.1737063], [9.1776056, 49.1738149], [9.1772037, 49.1739737], [9.1767477, 49.1741328], [9.1765217, 49.1741999], [9.1763486, 49.1742469], [9.1759156, 49.1743323], [9.1754226, 49.1744125], [9.1745630, 49.1745244]], [[9.1958191, 49.1690126], [9.1959786, 49.1689722], [9.1962858, 49.1688766], [9.1963606, 49.1688472], [9.1964424, 49.1687982]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Bibersteige" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1449686, 49.1947814], [9.1451997, 49.1949199], [9.1455960, 49.1951669], [9.1456205, 49.1951822], [9.1459919, 49.1954203], [9.1462281, 49.1956313], [9.1464699, 49.1958390], [9.1465933, 49.1959468], [9.1467668, 49.1960027], [9.1469007, 49.1960345], [9.1471428, 49.1960434], [9.1472025, 49.1960422], [9.1474191, 49.1960412], [9.1476023, 49.1960398], [9.1478173, 49.1960382], [9.1478949, 49.1960384], [9.1480245, 49.1960387], [9.1482116, 49.1960516], [9.1484297, 49.1960997], [9.1486801, 49.1962300], [9.1487447, 49.1962847], [9.1488141, 49.1963434], [9.1491996, 49.1966697], [9.1495411, 49.1969587], [9.1496948, 49.1970400], [9.1498528, 49.1970988]], [[9.1467668, 49.1960027], [9.1466998, 49.1960802], [9.1465665, 49.1961604], [9.1461699, 49.1961635], [9.1454448, 49.1961672]], [[9.1475001, 49.1967267], [9.1474965, 49.1965068], [9.1475822, 49.1965047], [9.1475666, 49.1961301], [9.1476047, 49.1961291], [9.1478034, 49.1961239], [9.1480465, 49.1961229], [9.1482475, 49.1961433], [9.1484313, 49.1961962], [9.1485731, 49.1962981], [9.1486432, 49.1963938], [9.1486744, 49.1967033], [9.1475001, 49.1967267]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Biedermanngasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2189282, 49.1406153], [9.2192662, 49.1405213], [9.2193193, 49.1405136]], [[9.2193193, 49.1405136], [9.2198787, 49.1404354], [9.2200016, 49.1404123], [9.2202234, 49.1401576]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Bietigheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2053686, 49.1299480], [9.2057023, 49.1302054], [9.2057353, 49.1302235], [9.2057681, 49.1302299], [9.2057695, 49.1302450], [9.2057748, 49.1302596], [9.2057960, 49.1302822], [9.2058745, 49.1303426], [9.2062429, 49.1306209], [9.2062689, 49.1306427], [9.2067945, 49.1310826], [9.2070417, 49.1313343], [9.2071733, 49.1314979], [9.2072343, 49.1315770], [9.2072587, 49.1315918]], [[9.2072587, 49.1315918], [9.2072511, 49.1316219], [9.2072524, 49.1316515], [9.2072631, 49.1316840], [9.2072886, 49.1317235], [9.2074562, 49.1319183], [9.2076198, 49.1321061], [9.2076627, 49.1321315], [9.2077068, 49.1321385]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Binderweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1923024, 49.1692214], [9.1923064, 49.1690726], [9.1923926, 49.1689756], [9.1926199, 49.1685239]], [[9.1926698, 49.1682823], [9.1927097, 49.1682927], [9.1927354, 49.1683250], [9.1926199, 49.1685239]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Binswanger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2278447, 49.1621109], [9.2278866, 49.1621768], [9.2279611, 49.1622528], [9.2283212, 49.1625072], [9.2284365, 49.1625859], [9.2285257, 49.1626597], [9.2285560, 49.1626966], [9.2285749, 49.1627378], [9.2285914, 49.1627770], [9.2285964, 49.1628237], [9.2285965, 49.1628616], [9.2285346, 49.1631023]], [[9.2265813, 49.1579844], [9.2264198, 49.1579385], [9.2263099, 49.1579172], [9.2262060, 49.1579067]], [[9.2253558, 49.1579292], [9.2255262, 49.1578911], [9.2256603, 49.1578661], [9.2257625, 49.1578468], [9.2259381, 49.1578221], [9.2260810, 49.1578270], [9.2262137, 49.1578390], [9.2263322, 49.1578675], [9.2264289, 49.1579065], [9.2265813, 49.1579844]], [[9.2340067, 49.1642033], [9.2343038, 49.1642544], [9.2348017, 49.1643317], [9.2354018, 49.1643854], [9.2362756, 49.1644680], [9.2367401, 49.1645092], [9.2372017, 49.1645650], [9.2374583, 49.1646150], [9.2377147, 49.1646855], [9.2380099, 49.1647869], [9.2390534, 49.1651657], [9.2403434, 49.1656339], [9.2412853, 49.1660239], [9.2415872, 49.1661594], [9.2420252, 49.1664011], [9.2430793, 49.1670128], [9.2434459, 49.1672070], [9.2438188, 49.1673711], [9.2441129, 49.1674879], [9.2446808, 49.1677048], [9.2454613, 49.1680030], [9.2470606, 49.1686106], [9.2486616, 49.1692674], [9.2500526, 49.1698300], [9.2504526, 49.1699756], [9.2508416, 49.1701085], [9.2511455, 49.1702041]], [[9.2285346, 49.1631023], [9.2284586, 49.1634901]], [[9.2291256, 49.1636509], [9.2284586, 49.1634901]], [[9.2262060, 49.1579067], [9.2261246, 49.1579067], [9.2257635, 49.1579564], [9.2257210, 49.1579631], [9.2255795, 49.1579897]], [[9.2265813, 49.1579844], [9.2266196, 49.1580096], [9.2266652, 49.1580433], [9.2267025, 49.1580782], [9.2267561, 49.1581422], [9.2267753, 49.1581799], [9.2268144, 49.1582732], [9.2268332, 49.1583599], [9.2268397, 49.1584518], [9.2268361, 49.1585242], [9.2268060, 49.1586335], [9.2267166, 49.1589514], [9.2265774, 49.1594750], [9.2265712, 49.1595936], [9.2265818, 49.1597058], [9.2266013, 49.1598059], [9.2266250, 49.1598670], [9.2266323, 49.1598904], [9.2266934, 49.1600069], [9.2267821, 49.1601435], [9.2269269, 49.1603366], [9.2270785, 49.1605608], [9.2271547, 49.1606842], [9.2271706, 49.1607107], [9.2272336, 49.1608450], [9.2273237, 49.1610649], [9.2273830, 49.1612002], [9.2274542, 49.1613348], [9.2275458, 49.1614815], [9.2276579, 49.1616456], [9.2277846, 49.1618254], [9.2279050, 49.1619735], [9.2279877, 49.1620596], [9.2281341, 49.1621917], [9.2282983, 49.1623189], [9.2284680, 49.1624358], [9.2287328, 49.1625838], [9.2290338, 49.1627384], [9.2293404, 49.1628746], [9.2300002, 49.1631277], [9.2303865, 49.1632691], [9.2308614, 49.1634357], [9.2311812, 49.1635383], [9.2315037, 49.1636234], [9.2321798, 49.1637861], [9.2336918, 49.1641396], [9.2340067, 49.1642033]], [[9.2255795, 49.1579897], [9.2254071, 49.1580256]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Birkenhof" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1834413, 49.1509859], [9.1834555, 49.1506638]], [[9.1834555, 49.1506638], [9.1834790, 49.1494643]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Bleichstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2249564, 49.1495811], [9.2248649, 49.1488947], [9.2247685, 49.1481908]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Blumenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1887199, 49.1416767], [9.1893348, 49.1417426], [9.1893828, 49.1417479], [9.1896431, 49.1417826], [9.1899063, 49.1418009], [9.1902040, 49.1418110], [9.1905559, 49.1417836], [9.1913649, 49.1416913]], [[9.1884409, 49.1415954], [9.1887104, 49.1416309], [9.1887199, 49.1416767], [9.1886876, 49.1417279], [9.1885297, 49.1417296], [9.1884027, 49.1417195], [9.1884409, 49.1415954]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Blumhardtstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1938778, 49.1347558], [9.1940405, 49.1354244]], [[9.1949740, 49.1345700], [9.1949169, 49.1345993], [9.1947455, 49.1346480], [9.1945462, 49.1346791], [9.1941372, 49.1347293], [9.1939720, 49.1347470], [9.1938778, 49.1347558], [9.1931735, 49.1348239], [9.1917902, 49.1349359], [9.1906412, 49.1350574]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Blücherstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2305347, 49.1314167], [9.2303584, 49.1314365], [9.2299790, 49.1314898], [9.2296477, 49.1315296], [9.2292753, 49.1315729], [9.2290826, 49.1315913], [9.2289402, 49.1316020], [9.2286986, 49.1316196], [9.2285036, 49.1316285], [9.2283406, 49.1316380], [9.2280714, 49.1316483], [9.2277527, 49.1316534], [9.2275261, 49.1316494]], [[9.2272243, 49.1316322], [9.2271188, 49.1316567], [9.2270750, 49.1316775], [9.2270411, 49.1317018], [9.2270027, 49.1317481], [9.2269720, 49.1317959]], [[9.2268275, 49.1316088], [9.2266823, 49.1316574]], [[9.2272243, 49.1316322], [9.2270393, 49.1316187], [9.2269694, 49.1316136], [9.2268840, 49.1316079], [9.2268275, 49.1316088]], [[9.2275261, 49.1316494], [9.2272243, 49.1316322]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Blütenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1399226, 49.1900975], [9.1390464, 49.1900056]], [[9.1390278, 49.1900998], [9.1383674, 49.1900330], [9.1383254, 49.1900287]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Bodelschwinghstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1984531, 49.1694003], [9.1984198, 49.1698968], [9.1984112, 49.1700244], [9.1983785, 49.1702775], [9.1983517, 49.1704723], [9.1982624, 49.1705199], [9.1981341, 49.1705209], [9.1978183, 49.1705061], [9.1965693, 49.1703960]], [[9.1932330, 49.1701057], [9.1935047, 49.1701247]], [[9.1951185, 49.1703661], [9.1951350, 49.1702782], [9.1946470, 49.1702290]], [[9.1951185, 49.1703661], [9.1952041, 49.1703729], [9.1953124, 49.1703834], [9.1954513, 49.1704549], [9.1958312, 49.1704811], [9.1961051, 49.1704631]], [[9.1962213, 49.1703840], [9.1962041, 49.1703768], [9.1961783, 49.1703690], [9.1961450, 49.1703679], [9.1961132, 49.1703756], [9.1960889, 49.1703910], [9.1960753, 49.1704274], [9.1961051, 49.1704631], [9.1961304, 49.1704723], [9.1961589, 49.1704752], [9.1962115, 49.1704676], [9.1962242, 49.1704529], [9.1962383, 49.1704242], [9.1962374, 49.1704039], [9.1962213, 49.1703840]], [[9.1965693, 49.1703960], [9.1963097, 49.1703843], [9.1962213, 49.1703840]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Bodenstedtstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2270834, 49.1537794], [9.2276723, 49.1536749]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Bohnenbergerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2292307, 49.1528434], [9.2294223, 49.1533366], [9.2294807, 49.1533705], [9.2295141, 49.1534163]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Bolzstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2101538, 49.1259340], [9.2120187, 49.1255753]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Bonfelder Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1416457, 49.1940978], [9.1415927, 49.1941675], [9.1415017, 49.1942537], [9.1412613, 49.1943764], [9.1410638, 49.1944648], [9.1405434, 49.1946910], [9.1404743, 49.1947236], [9.1404289, 49.1947635], [9.1402902, 49.1949886], [9.1401871, 49.1951464], [9.1401619, 49.1951866], [9.1398361, 49.1954488], [9.1397590, 49.1955077], [9.1393192, 49.1959387], [9.1389273, 49.1963323], [9.1389044, 49.1963553], [9.1388553, 49.1964403], [9.1387952, 49.1965881], [9.1387791, 49.1966276], [9.1387150, 49.1967832], [9.1386858, 49.1968540], [9.1386379, 49.1969703], [9.1385354, 49.1972189], [9.1384012, 49.1975447], [9.1382533, 49.1978967], [9.1381548, 49.1980424], [9.1380450, 49.1982050], [9.1378078, 49.1983930], [9.1377420, 49.1984388], [9.1372474, 49.1988450], [9.1370319, 49.1990380]], [[9.1385354, 49.1972189], [9.1382878, 49.1971240], [9.1382228, 49.1971159], [9.1381121, 49.1971297], [9.1376553, 49.1969621]], [[9.1381548, 49.1980424], [9.1377765, 49.1978869], [9.1378564, 49.1977948]], [[9.1386379, 49.1969703], [9.1383117, 49.1968829]], [[9.1387952, 49.1965881], [9.1384449, 49.1964801]], [[9.1418795, 49.1937661], [9.1418006, 49.1938037], [9.1417643, 49.1938314], [9.1417435, 49.1938553], [9.1417143, 49.1939165], [9.1416730, 49.1940394], [9.1416457, 49.1940978]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Bornweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2060362, 49.1187031], [9.2059877, 49.1186665], [9.2059422, 49.1186347], [9.2059261, 49.1186233], [9.2059207, 49.1186110], [9.2058734, 49.1184773], [9.2058617, 49.1184443], [9.2058389, 49.1184302], [9.2058094, 49.1184232], [9.2057745, 49.1184206], [9.2054245, 49.1184232], [9.2051952, 49.1184258], [9.2049501, 49.1184258], [9.2044932, 49.1184257], [9.2041732, 49.1184232], [9.2039947, 49.1184232], [9.2035080, 49.1184171], [9.2030466, 49.1184127], [9.2025548, 49.1184154], [9.2024499, 49.1184153], [9.2021094, 49.1184118], [9.2019849, 49.1184100]], [[9.2025923, 49.1194086], [9.2025611, 49.1189613], [9.2025581, 49.1187051], [9.2025548, 49.1184154]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Borsigstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2020928, 49.1181364], [9.2030426, 49.1181369]], [[9.2020650, 49.1178514], [9.2030049, 49.1178560], [9.2030383, 49.1178555], [9.2030871, 49.1178625]], [[9.2044763, 49.1178411], [9.2044766, 49.1177714], [9.2044803, 49.1174547]], [[9.2049499, 49.1178430], [9.2044763, 49.1178411], [9.2040686, 49.1178395], [9.2039989, 49.1178394], [9.2031741, 49.1178377], [9.2031379, 49.1178404], [9.2031071, 49.1178527], [9.2030871, 49.1178625], [9.2030749, 49.1178685], [9.2030548, 49.1178878], [9.2030494, 49.1179071], [9.2030426, 49.1181369], [9.2030467, 49.1183951], [9.2030466, 49.1184127], [9.2030428, 49.1190223], [9.2030442, 49.1194113]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Bottwarbahnstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2029688, 49.1247744], [9.2018942, 49.1244495], [9.2010415, 49.1241652], [9.2004058, 49.1239044], [9.1997594, 49.1236421], [9.1995686, 49.1235661], [9.1994350, 49.1235132], [9.1991058, 49.1233862], [9.1984483, 49.1231088], [9.1980506, 49.1229638], [9.1978372, 49.1228951], [9.1976201, 49.1228386], [9.1972606, 49.1227701], [9.1968904, 49.1227080], [9.1963041, 49.1226141], [9.1961872, 49.1225897], [9.1960607, 49.1225241], [9.1958923, 49.1224362], [9.1958322, 49.1224084], [9.1955055, 49.1222713], [9.1953733, 49.1222259], [9.1953152, 49.1222102], [9.1951789, 49.1221764], [9.1946986, 49.1220915], [9.1946301, 49.1220886], [9.1945658, 49.1220981], [9.1945230, 49.1221152], [9.1944598, 49.1221694]], [[9.2043824, 49.1252508], [9.2041338, 49.1251849], [9.2040372, 49.1251621], [9.2038066, 49.1251059], [9.2035330, 49.1250252], [9.2033211, 49.1249655], [9.2029197, 49.1248491]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Böckinger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2047096, 49.1665227], [9.2047776, 49.1663839], [9.2048971, 49.1661384], [9.2049930, 49.1656290], [9.2050038, 49.1651261], [9.2048924, 49.1643402], [9.2047873, 49.1637489], [9.2047072, 49.1631359], [9.2046195, 49.1625457], [9.2045331, 49.1620992], [9.2044869, 49.1619202], [9.2043648, 49.1615160], [9.2043285, 49.1613957], [9.2040898, 49.1607028], [9.2037739, 49.1599003], [9.2036499, 49.1595743], [9.2033977, 49.1590866], [9.2028781, 49.1584005], [9.2024342, 49.1578755], [9.2019892, 49.1573552], [9.2018842, 49.1572294], [9.2017963, 49.1571115], [9.2016963, 49.1569695], [9.2015158, 49.1567408], [9.2014214, 49.1567231]], [[9.2046659, 49.1666061], [9.2047096, 49.1665227]], [[9.2045807, 49.1667730], [9.2046659, 49.1666061]], [[9.2032010, 49.1679237], [9.2039922, 49.1680019]], [[9.2042337, 49.1674882], [9.2042782, 49.1674490], [9.2044030, 49.1671390], [9.2044255, 49.1670923], [9.2045262, 49.1668694], [9.2045457, 49.1668368], [9.2045807, 49.1667730]], [[9.2031016, 49.1684698], [9.2035412, 49.1685023]], [[9.2031602, 49.1680934], [9.2034713, 49.1681136], [9.2034977, 49.1681764], [9.2034998, 49.1682399]], [[9.2031730, 49.1680036], [9.2029999, 49.1680472], [9.2025858, 49.1681478], [9.2026135, 49.1682409]], [[9.2038928, 49.1675785], [9.2037744, 49.1673756]], [[9.2030482, 49.1686278], [9.2035604, 49.1686706]], [[9.2029418, 49.1689127], [9.2030482, 49.1686278], [9.2030672, 49.1685772], [9.2031016, 49.1684698], [9.2031343, 49.1683026], [9.2031602, 49.1680934], [9.2031730, 49.1680036], [9.2031875, 49.1679409], [9.2032010, 49.1679237], [9.2034350, 49.1677266], [9.2035141, 49.1676867], [9.2036044, 49.1676566], [9.2037835, 49.1676062], [9.2038928, 49.1675785], [9.2039740, 49.1675574], [9.2040591, 49.1675368], [9.2042337, 49.1674882]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Böcklerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1772761, 49.1501550], [9.1771566, 49.1501545], [9.1770903, 49.1501668], [9.1770088, 49.1502017], [9.1769769, 49.1502815], [9.1769798, 49.1503175], [9.1769817, 49.1503414], [9.1770559, 49.1504022], [9.1771733, 49.1504192], [9.1773072, 49.1504030], [9.1773661, 49.1503664], [9.1773956, 49.1503223], [9.1773900, 49.1502693], [9.1773690, 49.1502167], [9.1773409, 49.1501808], [9.1772761, 49.1501550]], [[9.1773409, 49.1501808], [9.1774474, 49.1501656], [9.1776227, 49.1501650], [9.1778782, 49.1501642], [9.1781468, 49.1501629], [9.1784265, 49.1501642], [9.1786942, 49.1501648], [9.1789702, 49.1501666], [9.1791682, 49.1501674], [9.1793019, 49.1501672], [9.1796462, 49.1501639], [9.1799215, 49.1502794]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Böcklinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2181904, 49.1285582], [9.2181689, 49.1284625], [9.2185893, 49.1284215]], [[9.2180436, 49.1271198], [9.2180697, 49.1271895], [9.2183513, 49.1276525], [9.2183969, 49.1277359], [9.2184492, 49.1278658], [9.2184868, 49.1279869], [9.2185163, 49.1281124], [9.2185498, 49.1282572], [9.2185893, 49.1284215], [9.2187223, 49.1289833]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Böllinger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1977068, 49.1779197], [9.1977066, 49.1778688], [9.1977516, 49.1777824], [9.1978418, 49.1776508], [9.1979407, 49.1772961], [9.1980637, 49.1768877], [9.1982844, 49.1765184], [9.1987401, 49.1760749], [9.1994466, 49.1753580], [9.1999901, 49.1747956], [9.2005826, 49.1741417], [9.2008212, 49.1738625], [9.2008581, 49.1738213], [9.2009413, 49.1737285], [9.2009949, 49.1736615], [9.2012285, 49.1734008], [9.2015225, 49.1730434], [9.2017931, 49.1727134], [9.2021275, 49.1723778], [9.2022939, 49.1722548], [9.2023859, 49.1722071], [9.2024689, 49.1721846]], [[9.1964998, 49.1789025], [9.1964782, 49.1786039], [9.1964517, 49.1782879], [9.1965150, 49.1781928], [9.1966820, 49.1781196], [9.1972211, 49.1779916], [9.1977068, 49.1779197]], [[9.2030270, 49.1715558], [9.2027267, 49.1717886], [9.2024685, 49.1720550], [9.2024421, 49.1721146]], [[9.2009949, 49.1736615], [9.2007103, 49.1735531], [9.2003220, 49.1734077]], [[9.2012285, 49.1734008], [9.2004727, 49.1731361]], [[9.2007103, 49.1735531], [9.2008657, 49.1733713]], [[9.2024689, 49.1721846], [9.2030539, 49.1720689]], [[9.2015225, 49.1730434], [9.2009361, 49.1728446]], [[9.1964517, 49.1782879], [9.1967832, 49.1783942], [9.1968750, 49.1784182], [9.1969342, 49.1784235]], [[9.2024421, 49.1721146], [9.2024689, 49.1721846]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Bönnigheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2082646, 49.1319227], [9.2085838, 49.1322532], [9.2090334, 49.1327493], [9.2090696, 49.1328028], [9.2090789, 49.1328431], [9.2090682, 49.1328739], [9.2090401, 49.1329116]], [[9.2090401, 49.1329116], [9.2090253, 49.1329265], [9.2090240, 49.1329467], [9.2090280, 49.1329721], [9.2090347, 49.1329976], [9.2090476, 49.1330215], [9.2090709, 49.1330520], [9.2090811, 49.1330633], [9.2091473, 49.1331292], [9.2093270, 49.1332974], [9.2095094, 49.1334574], [9.2095430, 49.1334802], [9.2095604, 49.1334907], [9.2095792, 49.1334934], [9.2096006, 49.1334942], [9.2100547, 49.1334236]], [[9.2087344, 49.1331216], [9.2088122, 49.1330830], [9.2088966, 49.1331595]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Brackenheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1950212, 49.1252556], [9.1947530, 49.1250171], [9.1945118, 49.1247613], [9.1941744, 49.1244485], [9.1940367, 49.1243717], [9.1939548, 49.1243577], [9.1938497, 49.1243519], [9.1936426, 49.1243911]], [[9.1972099, 49.1246541], [9.1975016, 49.1245022], [9.1977553, 49.1243415], [9.1977993, 49.1242955], [9.1978223, 49.1242565], [9.1978321, 49.1241859]], [[9.1945558, 49.1253389], [9.1933383, 49.1256695], [9.1931594, 49.1257169]], [[9.1931594, 49.1257169], [9.1929869, 49.1257652]], [[9.1922244, 49.1259739], [9.1927115, 49.1257495], [9.1927921, 49.1256621], [9.1928243, 49.1255006]], [[9.1939832, 49.1241992], [9.1938381, 49.1243079], [9.1936426, 49.1243911], [9.1935168, 49.1244381], [9.1933320, 49.1245299], [9.1931387, 49.1246631], [9.1930339, 49.1247672], [9.1929111, 49.1249552], [9.1928631, 49.1251793], [9.1929105, 49.1253719], [9.1929835, 49.1254946], [9.1930741, 49.1256050], [9.1931594, 49.1257169]], [[9.1987080, 49.1246443], [9.1983446, 49.1245353], [9.1981841, 49.1244932], [9.1981003, 49.1244837], [9.1980287, 49.1244833], [9.1979063, 49.1244998], [9.1977253, 49.1245445]], [[9.1972099, 49.1246541], [9.1975004, 49.1245571], [9.1977190, 49.1244478], [9.1978742, 49.1243291], [9.1979684, 49.1242592]], [[9.1980934, 49.1243223], [9.1980000, 49.1243872], [9.1979109, 49.1244466], [9.1977253, 49.1245445]], [[9.1901229, 49.1269717], [9.1897808, 49.1272891], [9.1895842, 49.1274974], [9.1894084, 49.1276281]], [[9.1977253, 49.1245445], [9.1973975, 49.1246211], [9.1972099, 49.1246541]], [[9.1929869, 49.1257652], [9.1929156, 49.1256582], [9.1928243, 49.1255006]], [[9.1922244, 49.1259739], [9.1920062, 49.1260545], [9.1911155, 49.1263916], [9.1908052, 49.1265315], [9.1904483, 49.1267216], [9.1901229, 49.1269717]], [[9.1929869, 49.1257652], [9.1929123, 49.1257856], [9.1922244, 49.1259739]], [[9.1933079, 49.1244880], [9.1937301, 49.1242353], [9.1938953, 49.1241320]], [[9.1928243, 49.1255006], [9.1927732, 49.1252105], [9.1927934, 49.1250324], [9.1928615, 49.1248795], [9.1929831, 49.1247119], [9.1931411, 49.1245925], [9.1933079, 49.1244880]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Brahmsstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1535471, 49.2005438], [9.1532983, 49.2003858], [9.1531567, 49.2002719], [9.1531030, 49.2002033], [9.1530710, 49.2001477], [9.1529190, 49.1997747], [9.1528155, 49.1995717], [9.1527409, 49.1994714], [9.1526438, 49.1993310], [9.1525110, 49.1991018], [9.1524976, 49.1990653], [9.1525057, 49.1990302], [9.1525414, 49.1989680], [9.1526761, 49.1987795], [9.1527213, 49.1986917], [9.1527691, 49.1985819], [9.1527795, 49.1985288], [9.1527681, 49.1984695], [9.1527364, 49.1984045], [9.1526151, 49.1981591], [9.1524628, 49.1979051], [9.1523729, 49.1977674], [9.1523151, 49.1977115], [9.1522453, 49.1976694], [9.1516696, 49.1974005], [9.1516468, 49.1973906], [9.1515299, 49.1973400], [9.1513575, 49.1972642], [9.1512476, 49.1972304], [9.1511533, 49.1972111], [9.1510543, 49.1972044], [9.1509470, 49.1972086], [9.1505584, 49.1972364], [9.1504419, 49.1972424], [9.1503455, 49.1972364], [9.1502471, 49.1972203], [9.1500750, 49.1971758], [9.1498528, 49.1970988]], [[9.1523401, 49.2000943], [9.1524456, 49.2000328], [9.1529190, 49.1997747]], [[9.1520690, 49.1999134], [9.1521327, 49.1998712], [9.1521804, 49.1998367], [9.1527409, 49.1994714]], [[9.1505379, 49.1977256], [9.1507163, 49.1975991]], [[9.1510657, 49.1974664], [9.1512158, 49.1975615]], [[9.1509548, 49.1977477], [9.1512158, 49.1975615], [9.1512446, 49.1975438], [9.1515299, 49.1973400]], [[9.1499015, 49.1977324], [9.1505379, 49.1977256], [9.1502443, 49.1979414]], [[9.1512446, 49.1975438], [9.1513637, 49.1976151], [9.1517386, 49.1978655]], [[9.1509548, 49.1977477], [9.1507163, 49.1975991], [9.1503788, 49.1973886], [9.1501680, 49.1972635], [9.1499636, 49.1971790], [9.1498528, 49.1970988]], [[9.1519925, 49.1971707], [9.1516468, 49.1973906]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Brechhausstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1753468, 49.1549587], [9.1753634, 49.1551823], [9.1753656, 49.1552109], [9.1753944, 49.1553293], [9.1755290, 49.1554791], [9.1757673, 49.1556558], [9.1761548, 49.1558396], [9.1767286, 49.1561009]], [[9.1753656, 49.1552109], [9.1750651, 49.1553314], [9.1749207, 49.1553686], [9.1747054, 49.1553877]], [[9.1753634, 49.1551823], [9.1749515, 49.1551865], [9.1748789, 49.1552386]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Breite" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2517546, 49.1453454], [9.2517747, 49.1452215], [9.2517512, 49.1451540], [9.2516792, 49.1450724], [9.2515432, 49.1449185], [9.2512631, 49.1445983], [9.2509644, 49.1442464], [9.2508748, 49.1441207], [9.2508101, 49.1440299], [9.2507263, 49.1438825], [9.2506607, 49.1437670], [9.2503973, 49.1433327], [9.2502476, 49.1431300], [9.2499980, 49.1428227], [9.2499644, 49.1427485], [9.2499596, 49.1427119], [9.2499539, 49.1426680], [9.2499623, 49.1425850], [9.2500305, 49.1424127], [9.2501099, 49.1422132], [9.2501854, 49.1420384], [9.2500061, 49.1418859], [9.2497348, 49.1416733]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Breitenloch" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2405755, 49.1522308], [9.2408822, 49.1522752], [9.2414484, 49.1523336], [9.2415640, 49.1523662], [9.2416568, 49.1524358], [9.2418017, 49.1525748], [9.2418035, 49.1526105], [9.2418045, 49.1526304], [9.2414656, 49.1528737]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Breslauer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2007278, 49.1634911], [9.2006618, 49.1634205], [9.2005260, 49.1632755], [9.2003628, 49.1632368], [9.2000268, 49.1632326], [9.1997637, 49.1632292], [9.1995184, 49.1632261], [9.1993717, 49.1632243], [9.1990875, 49.1631895], [9.1989987, 49.1630823], [9.1989571, 49.1630023], [9.1989233, 49.1629022], [9.1989229, 49.1627410], [9.1989244, 49.1626984], [9.1989256, 49.1625643], [9.1989226, 49.1624886], [9.1989268, 49.1622855], [9.1989283, 49.1622434], [9.1989416, 49.1619886], [9.1989466, 49.1619238], [9.1989549, 49.1617015], [9.1989569, 49.1615796], [9.1989336, 49.1613576], [9.1989207, 49.1612760], [9.1988188, 49.1608541]], [[9.1982385, 49.1610721], [9.1987705, 49.1613463], [9.1989336, 49.1613576]], [[9.1981663, 49.1613808], [9.1986610, 49.1615863], [9.1987548, 49.1616539], [9.1989549, 49.1617015]], [[9.1981500, 49.1616738], [9.1986183, 49.1618352], [9.1989416, 49.1619886]], [[9.1981114, 49.1619359], [9.1989268, 49.1622855]], [[9.1980057, 49.1622475], [9.1984786, 49.1623659], [9.1985938, 49.1623987], [9.1986365, 49.1624315], [9.1989226, 49.1624886]], [[9.1979374, 49.1625345], [9.1985981, 49.1626630], [9.1989244, 49.1626984]], [[9.1994405, 49.1622416], [9.1994911, 49.1622385]], [[9.1989283, 49.1622434], [9.1989949, 49.1622464], [9.1994405, 49.1622416]], [[9.1994911, 49.1622385], [9.1998743, 49.1622449]], [[9.1989207, 49.1612760], [9.1989936, 49.1612704], [9.1994326, 49.1612395], [9.1995979, 49.1612615], [9.1996471, 49.1612651]], [[9.1989569, 49.1615796], [9.1990771, 49.1615732], [9.1997468, 49.1615436]], [[9.1997577, 49.1619170], [9.1995670, 49.1619350], [9.1989885, 49.1619256], [9.1989466, 49.1619238]], [[9.2003628, 49.1632368], [9.2003660, 49.1631744], [9.2003793, 49.1629138], [9.2003908, 49.1626877]], [[9.1999355, 49.1625964], [9.1998067, 49.1625412], [9.1993803, 49.1625553], [9.1989564, 49.1625646], [9.1989256, 49.1625643]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Brögerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1979375, 49.1568776], [9.1979760, 49.1570023], [9.1979938, 49.1570429], [9.1980773, 49.1570982], [9.1982511, 49.1571302], [9.1997435, 49.1572375]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Bruchsaler Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1825621, 49.1455906], [9.1825470, 49.1453948], [9.1825251, 49.1450732], [9.1825187, 49.1449790], [9.1824898, 49.1446749], [9.1824868, 49.1446369], [9.1824384, 49.1440984], [9.1824065, 49.1437892], [9.1824030, 49.1437431]], [[9.1824030, 49.1437431], [9.1823882, 49.1435312], [9.1823714, 49.1433227], [9.1823687, 49.1431727], [9.1823580, 49.1430578], [9.1823567, 49.1430407], [9.1823509, 49.1429771], [9.1823318, 49.1428658], [9.1823164, 49.1428004], [9.1822712, 49.1427083], [9.1821820, 49.1425894], [9.1820523, 49.1424772], [9.1818513, 49.1423515], [9.1818285, 49.1423444], [9.1815848, 49.1422686], [9.1812671, 49.1422093], [9.1812112, 49.1421999], [9.1798533, 49.1419724], [9.1795271, 49.1419191], [9.1795077, 49.1419168], [9.1793849, 49.1419024], [9.1783370, 49.1417799], [9.1780012, 49.1417461], [9.1778259, 49.1417342], [9.1776373, 49.1417219], [9.1773083, 49.1416994], [9.1768144, 49.1416721], [9.1762824, 49.1416601]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Brucknerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1859782, 49.1307850], [9.1859534, 49.1313473]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Bruhweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1820932, 49.1350771], [9.1819827, 49.1350737], [9.1812059, 49.1349973], [9.1790665, 49.1347863], [9.1764082, 49.1345121], [9.1742962, 49.1342972], [9.1711541, 49.1339775]], [[9.1687969, 49.1338194], [9.1641480, 49.1335323], [9.1623738, 49.1334257], [9.1609645, 49.1333349], [9.1594753, 49.1332419], [9.1577403, 49.1331235], [9.1555175, 49.1330484], [9.1518077, 49.1328927]], [[9.1558884, 49.1314879], [9.1565287, 49.1315179], [9.1578800, 49.1315766], [9.1601395, 49.1318892]], [[9.1518077, 49.1328927], [9.1504634, 49.1328401], [9.1493841, 49.1327979], [9.1446490, 49.1326128]], [[9.1711541, 49.1339775], [9.1687969, 49.1338194]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Brunnenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1331556, 49.1948899], [9.1337582, 49.1949225], [9.1346603, 49.1950274], [9.1356147, 49.1952341], [9.1369937, 49.1954969], [9.1375684, 49.1955551], [9.1380630, 49.1955803], [9.1382405, 49.1955875], [9.1384414, 49.1955899], [9.1386947, 49.1955808], [9.1390397, 49.1955618], [9.1397590, 49.1955077]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Brückenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2095414, 49.1695201], [9.2092346, 49.1695008], [9.2081119, 49.1694200]], [[9.2081236, 49.1693236], [9.2089015, 49.1693612]], [[9.2036686, 49.1689655], [9.2037879, 49.1689751], [9.2040345, 49.1689927]], [[9.2029418, 49.1689127], [9.2036686, 49.1689655]], [[9.2089015, 49.1693612], [9.2092562, 49.1693801], [9.2095251, 49.1693945]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Brücklespfad" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1241708, 49.1839199], [9.1239354, 49.1835844], [9.1237393, 49.1832940], [9.1235001, 49.1829968], [9.1232263, 49.1827312], [9.1229000, 49.1824706], [9.1227854, 49.1823669], [9.1225894, 49.1822467], [9.1223050, 49.1820783], [9.1220591, 49.1819707], [9.1217981, 49.1819006], [9.1215761, 49.1818813], [9.1213570, 49.1818944], [9.1209293, 49.1819365], [9.1209662, 49.1819733], [9.1212423, 49.1825327]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Brüggemannstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2204504, 49.1591591], [9.2201679, 49.1592145], [9.2196444, 49.1593031], [9.2194227, 49.1593324], [9.2193541, 49.1593393], [9.2191974, 49.1593556]], [[9.2154935, 49.1598406], [9.2156215, 49.1598461], [9.2157981, 49.1598313], [9.2182918, 49.1594393]], [[9.2230699, 49.1586188], [9.2229617, 49.1586542], [9.2217852, 49.1589302], [9.2211589, 49.1590761], [9.2207047, 49.1591952], [9.2206028, 49.1592063], [9.2205293, 49.1592026], [9.2204798, 49.1591922], [9.2204504, 49.1591591]], [[9.2182918, 49.1594393], [9.2189921, 49.1593045], [9.2191614, 49.1592735]], [[9.2191974, 49.1593556], [9.2182918, 49.1594393]], [[9.2191614, 49.1592735], [9.2193389, 49.1592529], [9.2195482, 49.1592125], [9.2202413, 49.1591131]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Brünnlesstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1951244, 49.1667307], [9.1974678, 49.1667572]], [[9.1951244, 49.1667307], [9.1949130, 49.1667219], [9.1946960, 49.1666823], [9.1941950, 49.1665158], [9.1931989, 49.1661850]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Buchener Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2014269, 49.1783298], [9.2013529, 49.1783254], [9.2001763, 49.1782206], [9.1999498, 49.1781997], [9.1980376, 49.1780272], [9.1978736, 49.1780093], [9.1977933, 49.1779886], [9.1977380, 49.1779572], [9.1977068, 49.1779197]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Buchenhof" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1811606, 49.1508986], [9.1812409, 49.1505976], [9.1812313, 49.1493076]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Bundschuhstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1864345, 49.1189741], [9.1865226, 49.1189875], [9.1866560, 49.1189776], [9.1871199, 49.1189478]], [[9.1871199, 49.1189478], [9.1872496, 49.1189434]], [[9.1872496, 49.1189434], [9.1873773, 49.1189371], [9.1875489, 49.1189774], [9.1877657, 49.1190571], [9.1878799, 49.1191029], [9.1879295, 49.1191105], [9.1883098, 49.1190375]], [[9.1864345, 49.1189741], [9.1863838, 49.1189357], [9.1863670, 49.1188765]], [[9.1884407, 49.1190220], [9.1887210, 49.1190145]], [[9.1883098, 49.1190375], [9.1884407, 49.1190220]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Bunsenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1938135, 49.1431111], [9.1935041, 49.1421435]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Burenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2228743, 49.1511168], [9.2220166, 49.1509845], [9.2218831, 49.1509710], [9.2217339, 49.1509385]], [[9.2228743, 49.1511168], [9.2235410, 49.1512363], [9.2237097, 49.1512628], [9.2238806, 49.1512883], [9.2240380, 49.1513042], [9.2245564, 49.1513109], [9.2259563, 49.1512908], [9.2261452, 49.1512752], [9.2262070, 49.1512678], [9.2263912, 49.1512376], [9.2269080, 49.1511439], [9.2272612, 49.1510705], [9.2277511, 49.1509486], [9.2284000, 49.1507520], [9.2290111, 49.1505610], [9.2295645, 49.1503143], [9.2301073, 49.1500540], [9.2303058, 49.1499588]], [[9.2217339, 49.1509385], [9.2218682, 49.1508803], [9.2219975, 49.1508927], [9.2220164, 49.1508975], [9.2228743, 49.1511168]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Burgmal" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2489327, 49.1281075], [9.2495096, 49.1280741], [9.2498212, 49.1280691], [9.2501547, 49.1281042], [9.2504423, 49.1281419], [9.2507327, 49.1281925], [9.2509925, 49.1282686], [9.2512372, 49.1283528], [9.2514973, 49.1285209], [9.2518405, 49.1288421]], [[9.2518405, 49.1288421], [9.2523801, 49.1292961], [9.2525420, 49.1294923], [9.2527026, 49.1297010], [9.2528261, 49.1299657], [9.2529204, 49.1302397], [9.2529684, 49.1306022], [9.2530100, 49.1311529], [9.2532003, 49.1321931]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Burgstallstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1688040, 49.1550038], [9.1693819, 49.1543927], [9.1695841, 49.1539509], [9.1695998, 49.1539212], [9.1696377, 49.1538020], [9.1696161, 49.1537190], [9.1695952, 49.1536420]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Burgundenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1779714, 49.1644443], [9.1790465, 49.1646117]], [[9.1719735, 49.1637382], [9.1721715, 49.1638255], [9.1724167, 49.1638929], [9.1727133, 49.1639745], [9.1728061, 49.1640000], [9.1730177, 49.1640582], [9.1736616, 49.1642353], [9.1744122, 49.1644020], [9.1746016, 49.1644537], [9.1755093, 49.1646344], [9.1763876, 49.1648245], [9.1769340, 49.1649395], [9.1772438, 49.1650402], [9.1774070, 49.1650862], [9.1775648, 49.1651183], [9.1777361, 49.1651316], [9.1779025, 49.1651265], [9.1790465, 49.1646117], [9.1793117, 49.1641973], [9.1793800, 49.1641180], [9.1794487, 49.1640217]], [[9.1746016, 49.1644537], [9.1743517, 49.1649246]], [[9.1755093, 49.1646344], [9.1753486, 49.1649492]], [[9.1763876, 49.1648245], [9.1760497, 49.1653932], [9.1760746, 49.1654623]], [[9.1772438, 49.1650402], [9.1770278, 49.1654346]], [[9.1728061, 49.1640000], [9.1725561, 49.1643843]], [[9.1730177, 49.1640582], [9.1732202, 49.1637529]], [[9.1727133, 49.1639745], [9.1729966, 49.1635821], [9.1732245, 49.1636523]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Bussardstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1476607, 49.1937636], [9.1478599, 49.1943251], [9.1480841, 49.1949317], [9.1481692, 49.1955810], [9.1481654, 49.1956330], [9.1481761, 49.1956609], [9.1483038, 49.1957435]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Carl-Zeiss-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1322553, 49.1806402], [9.1301446, 49.1803170], [9.1287468, 49.1801099], [9.1279990, 49.1800423], [9.1272458, 49.1800057], [9.1260090, 49.1800266], [9.1258499, 49.1800423], [9.1257434, 49.1800916], [9.1256758, 49.1801552], [9.1256686, 49.1802467], [9.1256758, 49.1803710], [9.1257134, 49.1804975], [9.1258122, 49.1807235], [9.1258252, 49.1808059], [9.1258132, 49.1808913], [9.1257784, 49.1809698], [9.1257354, 49.1810318]], [[9.1257354, 49.1810318], [9.1255783, 49.1811464], [9.1254243, 49.1812425], [9.1252758, 49.1813363], [9.1251721, 49.1814561], [9.1251393, 49.1816172], [9.1251896, 49.1817645], [9.1252629, 49.1818764], [9.1256908, 49.1824588], [9.1261445, 49.1830411], [9.1261733, 49.1831020], [9.1261787, 49.1832178], [9.1261431, 49.1832818]], [[9.1261431, 49.1832818], [9.1260710, 49.1833361], [9.1259442, 49.1833926], [9.1249558, 49.1836598], [9.1248758, 49.1836814], [9.1243952, 49.1838458], [9.1243597, 49.1838539]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Cäcilienbrunnen" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2251445, 49.1294421], [9.2253104, 49.1294065], [9.2255088, 49.1293241], [9.2256718, 49.1292147], [9.2258367, 49.1291300], [9.2261744, 49.1290413], [9.2272472, 49.1288604], [9.2279615, 49.1287815], [9.2281967, 49.1287445], [9.2286317, 49.1286733], [9.2292633, 49.1284833], [9.2297712, 49.1282824], [9.2300517, 49.1281867], [9.2302433, 49.1281417], [9.2305283, 49.1281050], [9.2305801, 49.1280944], [9.2306275, 49.1280774], [9.2306945, 49.1280427], [9.2307519, 49.1280104], [9.2308036, 49.1279999], [9.2308575, 49.1279949], [9.2310232, 49.1280053], [9.2310761, 49.1280010], [9.2311272, 49.1279901], [9.2311835, 49.1279695], [9.2313015, 49.1279060], [9.2313566, 49.1278818], [9.2313884, 49.1278721], [9.2314381, 49.1278622]], [[9.2308634, 49.1281301], [9.2308923, 49.1280670], [9.2310373, 49.1280955], [9.2310084, 49.1281586], [9.2308634, 49.1281301]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Cäcilienbrunnenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2314881, 49.1262546], [9.2312817, 49.1267250], [9.2312631, 49.1272328], [9.2312778, 49.1272829], [9.2314381, 49.1278622]], [[9.2313105, 49.1295148], [9.2312798, 49.1296018], [9.2312612, 49.1296736], [9.2311745, 49.1298885], [9.2310799, 49.1301231], [9.2308912, 49.1305910], [9.2307032, 49.1310358], [9.2305347, 49.1314167]], [[9.2314381, 49.1278622], [9.2314899, 49.1281348], [9.2315085, 49.1283202], [9.2315146, 49.1284196], [9.2314719, 49.1287981], [9.2314600, 49.1289929], [9.2314321, 49.1291538], [9.2314098, 49.1292687], [9.2313723, 49.1293838], [9.2313105, 49.1295148]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Cäcilienstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2151251, 49.1373171], [9.2169022, 49.1373669]], [[9.2151251, 49.1373171], [9.2142180, 49.1373115], [9.2142017, 49.1373116], [9.2137084, 49.1373079], [9.2128544, 49.1372896], [9.2127931, 49.1372691], [9.2127829, 49.1372224]], [[9.2194334, 49.1374402], [9.2187247, 49.1374235], [9.2169022, 49.1373669]], [[9.2194334, 49.1374402], [9.2212811, 49.1374948]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Charlottenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2160064, 49.1189473], [9.2160556, 49.1188863], [9.2162657, 49.1186152], [9.2164113, 49.1185459], [9.2169594, 49.1183724], [9.2179086, 49.1180464], [9.2180619, 49.1179927], [9.2182779, 49.1179156], [9.2183446, 49.1178962], [9.2184087, 49.1178744], [9.2186447, 49.1177940], [9.2187243, 49.1177669], [9.2191087, 49.1176484], [9.2195999, 49.1174812], [9.2199901, 49.1172971], [9.2201892, 49.1171672], [9.2203683, 49.1170241], [9.2205547, 49.1168955]], [[9.2181303, 49.1318746], [9.2181183, 49.1317832], [9.2180956, 49.1316729], [9.2179963, 49.1312993], [9.2179652, 49.1311902]], [[9.2179372, 49.1309470], [9.2179764, 49.1309752], [9.2180827, 49.1312330]], [[9.2160405, 49.1189989], [9.2159747, 49.1190364], [9.2159493, 49.1190603], [9.2159439, 49.1190787], [9.2159547, 49.1191481], [9.2159922, 49.1192587], [9.2160539, 49.1194219], [9.2160982, 49.1195536], [9.2161143, 49.1196089], [9.2161317, 49.1196984], [9.2161464, 49.1198538], [9.2161531, 49.1199854], [9.2161759, 49.1200679], [9.2162014, 49.1201092], [9.2162403, 49.1201355], [9.2163080, 49.1201556]], [[9.2163579, 49.1209434], [9.2164130, 49.1210776], [9.2165349, 49.1214104]], [[9.2139413, 49.1121821], [9.2139352, 49.1122818], [9.2139344, 49.1126549], [9.2139282, 49.1138071], [9.2139587, 49.1141906], [9.2140170, 49.1145772], [9.2140967, 49.1149100], [9.2141560, 49.1150705]], [[9.2175585, 49.1295837], [9.2174700, 49.1295937], [9.2166707, 49.1296845]], [[9.2176354, 49.1299274], [9.2175506, 49.1299381], [9.2169486, 49.1300143], [9.2166536, 49.1300560]], [[9.2175995, 49.1297724], [9.2175167, 49.1297824], [9.2170828, 49.1298349], [9.2165298, 49.1298988]], [[9.2146785, 49.1161437], [9.2147759, 49.1163529], [9.2148637, 49.1165764]], [[9.2176350, 49.1317367], [9.2177079, 49.1316727], [9.2178861, 49.1315318], [9.2179474, 49.1314585], [9.2179729, 49.1314054], [9.2179963, 49.1312993]], [[9.2182026, 49.1299192], [9.2177227, 49.1299728], [9.2176444, 49.1299815]], [[9.2169177, 49.1237172], [9.2168547, 49.1235163], [9.2168346, 49.1234987], [9.2167957, 49.1234943], [9.2165905, 49.1235040], [9.2165127, 49.1234460], [9.2158947, 49.1235680]], [[9.2159635, 49.1188948], [9.2160064, 49.1189473], [9.2160405, 49.1189989], [9.2161700, 49.1192503], [9.2162197, 49.1193682], [9.2162550, 49.1194862], [9.2162996, 49.1196617], [9.2163174, 49.1198445], [9.2163080, 49.1201556], [9.2163090, 49.1201776]], [[9.2148637, 49.1165764], [9.2148904, 49.1166607], [9.2149591, 49.1170080], [9.2150175, 49.1173262], [9.2150977, 49.1176581], [9.2151633, 49.1178267], [9.2152559, 49.1179983], [9.2153705, 49.1181682], [9.2155037, 49.1183270], [9.2157627, 49.1186246], [9.2159635, 49.1188948]], [[9.2146328, 49.1160601], [9.2146785, 49.1161437]], [[9.2163090, 49.1201776], [9.2163056, 49.1206400], [9.2163260, 49.1207943], [9.2163579, 49.1209434]], [[9.2166086, 49.1215907], [9.2166830, 49.1217541], [9.2167246, 49.1218294]], [[9.2173107, 49.1250854], [9.2172903, 49.1251379], [9.2170919, 49.1257465], [9.2170464, 49.1258860]], [[9.2178585, 49.1307935], [9.2179372, 49.1309470]], [[9.2177337, 49.1303664], [9.2177405, 49.1304072], [9.2177617, 49.1304772]], [[9.2175089, 49.1241011], [9.2175052, 49.1242539], [9.2174761, 49.1245487]], [[9.2177617, 49.1304772], [9.2177886, 49.1305661], [9.2178496, 49.1307677], [9.2178585, 49.1307935]], [[9.2179652, 49.1311902], [9.2179347, 49.1310833], [9.2179018, 49.1309934], [9.2179372, 49.1309470]], [[9.2171229, 49.1277310], [9.2171905, 49.1280067], [9.2173000, 49.1284934], [9.2174525, 49.1291187], [9.2175585, 49.1295837], [9.2175995, 49.1297724]], [[9.2169678, 49.1266708], [9.2169733, 49.1267755], [9.2169776, 49.1268827]], [[9.2169976, 49.1271590], [9.2170138, 49.1272586], [9.2170214, 49.1273050], [9.2170434, 49.1274011], [9.2170767, 49.1275463], [9.2171151, 49.1276993], [9.2171229, 49.1277310]], [[9.2167246, 49.1218294], [9.2168429, 49.1221116], [9.2170411, 49.1225607], [9.2171638, 49.1228515], [9.2173779, 49.1233823], [9.2174432, 49.1235777]], [[9.2165349, 49.1214104], [9.2166086, 49.1215907]], [[9.2143176, 49.1154718], [9.2144677, 49.1157520]], [[9.2144677, 49.1157520], [9.2146328, 49.1160601]], [[9.2141560, 49.1150705], [9.2142099, 49.1152163], [9.2142708, 49.1153659], [9.2143176, 49.1154718]], [[9.2180827, 49.1312330], [9.2181505, 49.1313973], [9.2182335, 49.1315346], [9.2183056, 49.1316244], [9.2184050, 49.1317213], [9.2184493, 49.1317542], [9.2185399, 49.1318210], [9.2186984, 49.1319004], [9.2187882, 49.1319283], [9.2188772, 49.1319484]], [[9.2175090, 49.1240433], [9.2175089, 49.1241011]], [[9.2169754, 49.1265124], [9.2169678, 49.1266708]], [[9.2169776, 49.1268827], [9.2169822, 49.1269967], [9.2169868, 49.1270456], [9.2169976, 49.1271590]], [[9.2174432, 49.1235777], [9.2174551, 49.1236328], [9.2175014, 49.1239108], [9.2175090, 49.1240433]], [[9.2174761, 49.1245487], [9.2174649, 49.1246142], [9.2174131, 49.1248070], [9.2173633, 49.1249503], [9.2173107, 49.1250854]], [[9.2170464, 49.1258860], [9.2170130, 49.1260320], [9.2169944, 49.1261570], [9.2169813, 49.1263910], [9.2169754, 49.1265124]], [[9.2175995, 49.1297724], [9.2176354, 49.1299274], [9.2176444, 49.1299815], [9.2176706, 49.1300913], [9.2177337, 49.1303664]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Christian-Leichtle-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1503337, 49.1244535], [9.1517673, 49.1243927], [9.1519018, 49.1243302], [9.1529701, 49.1244266], [9.1539314, 49.1243925]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Christophplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2206056, 49.1562212], [9.2210654, 49.1561364], [9.2212964, 49.1560946], [9.2216944, 49.1560225], [9.2217132, 49.1560191], [9.2220873, 49.1559514]], [[9.2211714, 49.1564342], [9.2210654, 49.1561364], [9.2210407, 49.1560928], [9.2210042, 49.1560025], [9.2209837, 49.1559494]], [[9.2207665, 49.1566023], [9.2211737, 49.1565452], [9.2211930, 49.1565379], [9.2211937, 49.1565233], [9.2211637, 49.1564476], [9.2211714, 49.1564342], [9.2211904, 49.1564236], [9.2213974, 49.1563875], [9.2218174, 49.1563183], [9.2222171, 49.1562526]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Christophstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2230699, 49.1586188], [9.2230015, 49.1589170], [9.2230560, 49.1591291], [9.2232846, 49.1597158], [9.2236016, 49.1605142], [9.2236432, 49.1605672], [9.2237633, 49.1606231], [9.2239583, 49.1606810], [9.2241571, 49.1607420], [9.2241874, 49.1607697], [9.2242163, 49.1608075]], [[9.2229699, 49.1581304], [9.2230910, 49.1584966], [9.2230902, 49.1585633], [9.2230699, 49.1586188]], [[9.2217385, 49.1550717], [9.2212080, 49.1551686], [9.2211878, 49.1551671], [9.2211729, 49.1551584], [9.2211574, 49.1551335], [9.2210863, 49.1549564], [9.2210634, 49.1548860], [9.2210085, 49.1547172], [9.2210035, 49.1546855], [9.2210065, 49.1546735], [9.2210289, 49.1546565], [9.2210753, 49.1546372], [9.2211337, 49.1546235], [9.2215320, 49.1545512]], [[9.2205563, 49.1521195], [9.2206054, 49.1522151], [9.2206528, 49.1523145], [9.2206792, 49.1523986], [9.2207174, 49.1524808], [9.2208517, 49.1528414], [9.2209408, 49.1531012], [9.2211480, 49.1535969], [9.2212239, 49.1537815], [9.2212709, 49.1538958], [9.2213286, 49.1540385], [9.2215320, 49.1545512], [9.2216272, 49.1547912], [9.2217385, 49.1550717], [9.2218678, 49.1553795], [9.2218769, 49.1554031], [9.2219480, 49.1555883], [9.2220873, 49.1559514], [9.2222171, 49.1562526], [9.2223364, 49.1565546], [9.2224103, 49.1567417], [9.2226504, 49.1573496], [9.2229699, 49.1581304]], [[9.2205563, 49.1521195], [9.2204808, 49.1519925]], [[9.2202200, 49.1517763], [9.2200259, 49.1517132]], [[9.2204808, 49.1519925], [9.2202815, 49.1518102], [9.2202200, 49.1517763]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Claudiusweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2088920, 49.1263017], [9.2092379, 49.1262215], [9.2095163, 49.1261586], [9.2097913, 49.1261056], [9.2101951, 49.1260279]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Cleebronner Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2100948, 49.1334972], [9.2103560, 49.1339459]], [[9.2100547, 49.1334236], [9.2100948, 49.1334972]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Clußstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2334359, 49.1285574], [9.2336440, 49.1288547], [9.2337552, 49.1290446], [9.2339111, 49.1293480], [9.2341567, 49.1298218]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Cronbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1997594, 49.1236421], [9.1991832, 49.1242777]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Damaschkestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1832648, 49.1181529], [9.1832652, 49.1181138], [9.1833168, 49.1180727], [9.1837798, 49.1178044], [9.1838864, 49.1172072], [9.1839617, 49.1164861]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Dammstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2190402, 49.1475164], [9.2191368, 49.1475069], [9.2197957, 49.1474690], [9.2202616, 49.1474369]], [[9.2190402, 49.1475164], [9.2189106, 49.1475366]], [[9.2202616, 49.1474369], [9.2212711, 49.1473726]], [[9.2213480, 49.1473687], [9.2220287, 49.1473289]], [[9.2220287, 49.1473289], [9.2235922, 49.1472282], [9.2241125, 49.1471936], [9.2244361, 49.1471741], [9.2254025, 49.1471266], [9.2255212, 49.1471208], [9.2256224, 49.1471152], [9.2258800, 49.1471010], [9.2260098, 49.1470948], [9.2261975, 49.1470858], [9.2264305, 49.1470722], [9.2267059, 49.1470559], [9.2268846, 49.1470451], [9.2276737, 49.1469994], [9.2280358, 49.1469772], [9.2282763, 49.1469624], [9.2288741, 49.1469277], [9.2293051, 49.1469005], [9.2300782, 49.1468499], [9.2301088, 49.1468512], [9.2301409, 49.1468592]], [[9.2212711, 49.1473726], [9.2213480, 49.1473687]], [[9.2189106, 49.1475366], [9.2187574, 49.1475711], [9.2183460, 49.1476637], [9.2181759, 49.1476981], [9.2180048, 49.1477365], [9.2178299, 49.1477729], [9.2174793, 49.1478483], [9.2173943, 49.1478458]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Danziger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2011045, 49.1624945], [9.2013028, 49.1624500], [9.2018845, 49.1622995], [9.2021454, 49.1622124], [9.2026518, 49.1620146], [9.2027912, 49.1619389], [9.2028030, 49.1618321], [9.2026847, 49.1616847], [9.2026479, 49.1616395], [9.2025146, 49.1614982], [9.2023019, 49.1612822], [9.2020993, 49.1610868]], [[9.2029295, 49.1615237], [9.2026479, 49.1616395]], [[9.2025146, 49.1614982], [9.2021778, 49.1616045]], [[9.2023019, 49.1612822], [9.2020168, 49.1613753]], [[9.2026847, 49.1616847], [9.2023219, 49.1618219]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Daucherweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2343652, 49.1340999], [9.2344779, 49.1356768], [9.2345710, 49.1368358], [9.2345610, 49.1368643], [9.2345447, 49.1368870], [9.2345278, 49.1369013], [9.2345034, 49.1369134]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "David-Friedrich-Strauß-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2010415, 49.1241652], [9.2006873, 49.1246118], [9.2004217, 49.1249491], [9.2001531, 49.1252795], [9.2000999, 49.1253442]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Defreggerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2062409, 49.1261021], [9.2062524, 49.1261357], [9.2064368, 49.1265327], [9.2064707, 49.1266029], [9.2065054, 49.1266748], [9.2065255, 49.1267363], [9.2065295, 49.1267731], [9.2065215, 49.1268065], [9.2065081, 49.1268346], [9.2063700, 49.1270241], [9.2062306, 49.1272115], [9.2061661, 49.1272915], [9.2061136, 49.1273539]], [[9.2068779, 49.1265225], [9.2067519, 49.1265348], [9.2067183, 49.1265796], [9.2064707, 49.1266029]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Deinenbachstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1879210, 49.1185285], [9.1878942, 49.1184777], [9.1878109, 49.1184236], [9.1877299, 49.1183547], [9.1877460, 49.1183204], [9.1878591, 49.1182537]], [[9.1880615, 49.1185833], [9.1881195, 49.1184910], [9.1881814, 49.1184593], [9.1884382, 49.1183630], [9.1887164, 49.1183159], [9.1889488, 49.1182905], [9.1891564, 49.1182604], [9.1893084, 49.1182315], [9.1893366, 49.1182089]], [[9.1889488, 49.1182905], [9.1888827, 49.1181906], [9.1888036, 49.1181619], [9.1885268, 49.1182029], [9.1884621, 49.1181526]], [[9.1880578, 49.1180709], [9.1881588, 49.1181227], [9.1882600, 49.1180763], [9.1883496, 49.1180097], [9.1884178, 49.1179467], [9.1884577, 49.1178960], [9.1884705, 49.1178312]], [[9.1879210, 49.1185285], [9.1878730, 49.1185686], [9.1876266, 49.1186246], [9.1873907, 49.1186072]], [[9.1883800, 49.1180430], [9.1883496, 49.1180097]], [[9.1892028, 49.1186175], [9.1889488, 49.1182905]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Derfflingerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1859686, 49.1421614], [9.1859725, 49.1422373], [9.1860135, 49.1427785], [9.1860646, 49.1433341], [9.1861427, 49.1436363], [9.1862500, 49.1440807], [9.1863243, 49.1443522], [9.1864020, 49.1445793], [9.1865164, 49.1447024]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Deutschhofstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2170081, 49.1414941], [9.2170416, 49.1413360], [9.2171271, 49.1407676], [9.2171255, 49.1407454]], [[9.2182264, 49.1403665], [9.2181427, 49.1403792], [9.2179538, 49.1403825]], [[9.2179538, 49.1403825], [9.2173142, 49.1403939]], [[9.2171255, 49.1407454], [9.2171849, 49.1405671], [9.2172496, 49.1404277], [9.2172713, 49.1404051], [9.2173142, 49.1403939]], [[9.2182264, 49.1403665], [9.2182495, 49.1403614], [9.2185353, 49.1403123], [9.2186304, 49.1402353]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Deutschordenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1898756, 49.1198157], [9.1901134, 49.1197019], [9.1908040, 49.1193938]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Deutschritterstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1165063, 49.1846949], [9.1167238, 49.1847434], [9.1170040, 49.1847096], [9.1172643, 49.1846754], [9.1182630, 49.1845535]], [[9.1118934, 49.1846655], [9.1117619, 49.1844678]], [[9.1120443, 49.1843829], [9.1121927, 49.1846405], [9.1119254, 49.1847153]], [[9.1141578, 49.1840315], [9.1142272, 49.1840463], [9.1145162, 49.1840745], [9.1145909, 49.1841016], [9.1159358, 49.1845185], [9.1165063, 49.1846949]], [[9.1099833, 49.1851129], [9.1100513, 49.1850915], [9.1101298, 49.1850651], [9.1102648, 49.1850185], [9.1104401, 49.1849528], [9.1105883, 49.1848992], [9.1109341, 49.1847638], [9.1112940, 49.1846297], [9.1117356, 49.1844771], [9.1117619, 49.1844678], [9.1120443, 49.1843829], [9.1121863, 49.1843380], [9.1123821, 49.1842836], [9.1126829, 49.1842117], [9.1131194, 49.1841255], [9.1135585, 49.1840670], [9.1138113, 49.1840420], [9.1141578, 49.1840315]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Diedenhofer Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2392182, 49.1349729], [9.2391372, 49.1349940], [9.2385847, 49.1350101], [9.2385340, 49.1348056]], [[9.2383795, 49.1337117], [9.2384642, 49.1330141], [9.2384856, 49.1328238], [9.2385310, 49.1324199]], [[9.2385340, 49.1348056], [9.2384397, 49.1342524], [9.2383795, 49.1337117]], [[9.2385310, 49.1324199], [9.2385545, 49.1322114]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Dieselstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2184536, 49.1720846], [9.2182315, 49.1720917], [9.2178877, 49.1721028], [9.2168470, 49.1721511], [9.2154203, 49.1721866], [9.2151857, 49.1721924], [9.2146979, 49.1722049], [9.2136692, 49.1722185], [9.2125220, 49.1722216], [9.2113848, 49.1721980], [9.2111167, 49.1721956], [9.2104240, 49.1721760], [9.2103188, 49.1721710], [9.2102465, 49.1721691], [9.2100521, 49.1721615], [9.2099624, 49.1721519], [9.2098394, 49.1721112]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Dinkelsbühler Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2376208, 49.1297536], [9.2376108, 49.1297106], [9.2375910, 49.1296751], [9.2375446, 49.1296378], [9.2374499, 49.1296495], [9.2373220, 49.1296903], [9.2374227, 49.1296921], [9.2375234, 49.1297103], [9.2376208, 49.1297536], [9.2376727, 49.1299018], [9.2377566, 49.1304315], [9.2377666, 49.1304947], [9.2378047, 49.1306212], [9.2378550, 49.1307310], [9.2381623, 49.1313506], [9.2382548, 49.1315935], [9.2382930, 49.1317251], [9.2382730, 49.1318647], [9.2381688, 49.1320706]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Distelfinkweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1885365, 49.1509571], [9.1885842, 49.1502083], [9.1887278, 49.1496294]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Dittmarstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2289601, 49.1347056], [9.2300199, 49.1345707], [9.2310055, 49.1344517], [9.2316874, 49.1343788], [9.2327198, 49.1342757], [9.2332864, 49.1342216], [9.2343652, 49.1340999], [9.2369367, 49.1337333], [9.2370931, 49.1337205], [9.2378897, 49.1336814], [9.2383795, 49.1337117], [9.2392596, 49.1338491], [9.2397462, 49.1339006], [9.2399876, 49.1339148], [9.2402776, 49.1339290], [9.2408060, 49.1339307], [9.2408442, 49.1339327], [9.2411889, 49.1339510], [9.2413887, 49.1339823], [9.2415167, 49.1340064], [9.2417715, 49.1340543], [9.2421646, 49.1341069], [9.2423917, 49.1341287], [9.2425796, 49.1341268], [9.2426330, 49.1341141], [9.2426762, 49.1340922], [9.2427384, 49.1340620], [9.2427821, 49.1340132], [9.2429357, 49.1334729], [9.2430587, 49.1330050]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Dobrudschastraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1837713, 49.1156845], [9.1831242, 49.1156657], [9.1830340, 49.1156670], [9.1829724, 49.1156805], [9.1829252, 49.1157046], [9.1829129, 49.1157395], [9.1829010, 49.1159184], [9.1828984, 49.1163194], [9.1828987, 49.1165105], [9.1828651, 49.1167623], [9.1828340, 49.1171787], [9.1828162, 49.1172918], [9.1827344, 49.1172938], [9.1826580, 49.1173012], [9.1826407, 49.1173412], [9.1826443, 49.1173695], [9.1827194, 49.1173896], [9.1827635, 49.1173884], [9.1828177, 49.1173435], [9.1828162, 49.1172918]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Dorfgraben" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1912433, 49.1331319], [9.1916066, 49.1331755]], [[9.1916066, 49.1331755], [9.1927075, 49.1334627]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Dorfplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1926137, 49.1326552], [9.1925809, 49.1324158], [9.1925397, 49.1321370], [9.1928434, 49.1320870], [9.1929796, 49.1326094], [9.1926137, 49.1326552]], [[9.1926137, 49.1326552], [9.1925809, 49.1324158]], [[9.1975568, 49.1677196], [9.1975404, 49.1673419], [9.1975800, 49.1673233], [9.1979367, 49.1671711], [9.1979579, 49.1672270], [9.1978324, 49.1673018], [9.1978303, 49.1673499], [9.1978168, 49.1673887], [9.1978045, 49.1674100], [9.1977875, 49.1674435], [9.1977605, 49.1674754], [9.1977139, 49.1675071], [9.1976549, 49.1675322], [9.1975954, 49.1675445], [9.1976015, 49.1676662], [9.1976612, 49.1676625], [9.1976612, 49.1677126], [9.1975568, 49.1677196]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Dörnlestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1741640, 49.1571183], [9.1743016, 49.1572228], [9.1743771, 49.1573229], [9.1744365, 49.1574175], [9.1745008, 49.1574986], [9.1745858, 49.1575608], [9.1747216, 49.1576541]], [[9.1745858, 49.1575608], [9.1748830, 49.1572923], [9.1749583, 49.1572440], [9.1750346, 49.1572312], [9.1751540, 49.1572529], [9.1753037, 49.1573293], [9.1754868, 49.1575205], [9.1755996, 49.1576441]], [[9.1755996, 49.1576441], [9.1756842, 49.1577305], [9.1757830, 49.1577755]], [[9.1747216, 49.1576541], [9.1748352, 49.1577321], [9.1749443, 49.1578266], [9.1751953, 49.1581869], [9.1755758, 49.1588426], [9.1759927, 49.1596656], [9.1760358, 49.1597553], [9.1760850, 49.1597841]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Dr.-Hoffmann-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1111929, 49.1861218], [9.1108023, 49.1855188]], [[9.1121141, 49.1858173], [9.1119458, 49.1853932]], [[9.1136674, 49.1850777], [9.1129302, 49.1851911]], [[9.1129302, 49.1851911], [9.1125163, 49.1852411], [9.1119458, 49.1853932]], [[9.1103496, 49.1856386], [9.1102545, 49.1855360], [9.1101361, 49.1854494], [9.1099001, 49.1852957]], [[9.1103496, 49.1856386], [9.1108023, 49.1855188], [9.1111008, 49.1854355], [9.1112924, 49.1854220], [9.1117403, 49.1854320], [9.1119458, 49.1853932]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Drosselweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1490129, 49.1956419], [9.1491686, 49.1956953], [9.1493215, 49.1957723], [9.1495884, 49.1959535], [9.1497706, 49.1960978], [9.1499535, 49.1962609], [9.1502905, 49.1965872]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Drosteweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2307032, 49.1310358], [9.2324744, 49.1303853]], [[9.2324744, 49.1303853], [9.2325011, 49.1303881], [9.2329116, 49.1302327]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Dühringstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2326325, 49.1512162], [9.2323117, 49.1514600], [9.2320033, 49.1517150], [9.2318626, 49.1517928], [9.2312693, 49.1518953]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Dürerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2014795, 49.1647708], [9.2009803, 49.1647078], [9.2008486, 49.1646849], [9.2007952, 49.1646520], [9.2007828, 49.1646177], [9.2008181, 49.1643407], [9.2008168, 49.1643091], [9.2008001, 49.1639033], [9.2007871, 49.1636635], [9.2007278, 49.1634911]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Eberbacher Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1045633, 49.1836228], [9.1046376, 49.1839144], [9.1047089, 49.1839487], [9.1053670, 49.1839347], [9.1060015, 49.1839420], [9.1060410, 49.1839299]], [[9.1060410, 49.1839299], [9.1060433, 49.1839091], [9.1059706, 49.1835743]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Eberhard-Gmelin-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2470540, 49.1367655], [9.2474856, 49.1374254], [9.2477015, 49.1377559]], [[9.2477015, 49.1377559], [9.2478269, 49.1379351], [9.2479035, 49.1380370], [9.2479487, 49.1381080], [9.2479668, 49.1381364], [9.2480568, 49.1382807], [9.2480582, 49.1383123], [9.2480421, 49.1383456]], [[9.2478269, 49.1379351], [9.2481410, 49.1377414], [9.2482917, 49.1376431]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Eberlinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1979519, 49.1198791], [9.1980302, 49.1198838], [9.1984523, 49.1199070], [9.1988387, 49.1199303], [9.1994862, 49.1199748], [9.1996077, 49.1199815], [9.1997327, 49.1199867]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Eberstädter Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2328188, 49.1436034], [9.2327475, 49.1432037], [9.2326149, 49.1425636], [9.2325967, 49.1424710]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Eckenerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2095084, 49.1175902], [9.2095201, 49.1175710], [9.2095498, 49.1175517], [9.2095792, 49.1175441], [9.2096107, 49.1175436], [9.2096275, 49.1175463], [9.2096550, 49.1175565], [9.2096771, 49.1175741], [9.2096871, 49.1175937], [9.2096850, 49.1176177], [9.2096717, 49.1176364], [9.2096364, 49.1176560], [9.2096060, 49.1176615], [9.2095879, 49.1176615], [9.2095576, 49.1176558], [9.2095237, 49.1176372], [9.2095099, 49.1176186], [9.2095084, 49.1175902]], [[9.2088230, 49.1175881], [9.2088349, 49.1183680]], [[9.2083098, 49.1180026], [9.2083067, 49.1175862]], [[9.2077757, 49.1179891], [9.2077664, 49.1175804]], [[9.2061893, 49.1175982], [9.2062055, 49.1181367]], [[9.2055749, 49.1175980], [9.2055785, 49.1180969]], [[9.2095084, 49.1175902], [9.2088230, 49.1175881], [9.2083067, 49.1175862], [9.2077664, 49.1175804], [9.2069352, 49.1175842], [9.2068863, 49.1175832], [9.2068541, 49.1175876], [9.2067629, 49.1176113]], [[9.2070714, 49.1173304], [9.2068662, 49.1173243], [9.2068394, 49.1173304], [9.2068219, 49.1173480], [9.2068152, 49.1173769], [9.2068018, 49.1175481], [9.2067938, 49.1175744], [9.2067629, 49.1176113]], [[9.2049517, 49.1194029], [9.2049503, 49.1192301], [9.2049501, 49.1184258], [9.2049499, 49.1178430], [9.2049497, 49.1177921], [9.2049551, 49.1176815], [9.2049605, 49.1176508], [9.2049724, 49.1176287], [9.2050047, 49.1176122], [9.2050369, 49.1176060], [9.2050771, 49.1176016], [9.2051147, 49.1175999], [9.2055749, 49.1175980], [9.2061893, 49.1175982], [9.2067173, 49.1176025], [9.2067629, 49.1176113], [9.2067938, 49.1176280], [9.2068259, 49.1176578], [9.2068340, 49.1176894], [9.2068290, 49.1182289], [9.2068314, 49.1182706], [9.2068383, 49.1183105], [9.2068585, 49.1183719]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Eckweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1752124, 49.1145314], [9.1752844, 49.1135990]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Edisonstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2125348, 49.1497314], [9.2125780, 49.1497966], [9.2128488, 49.1502051]], [[9.2111281, 49.1501117], [9.2110870, 49.1500457], [9.2109120, 49.1497642], [9.2107604, 49.1495248], [9.2107094, 49.1494475], [9.2106424, 49.1493479], [9.2104678, 49.1490715]], [[9.2121727, 49.1492353], [9.2122828, 49.1493905], [9.2121125, 49.1493695], [9.2120047, 49.1493497], [9.2119453, 49.1493266], [9.2119003, 49.1492541], [9.2119344, 49.1491995], [9.2119963, 49.1491676], [9.2120796, 49.1491699], [9.2121396, 49.1491872], [9.2121727, 49.1492353]], [[9.2115622, 49.1507880], [9.2115171, 49.1507173], [9.2112337, 49.1502725], [9.2111764, 49.1501852], [9.2111281, 49.1501117], [9.2112357, 49.1500838], [9.2118092, 49.1499351], [9.2125348, 49.1497314]], [[9.2128488, 49.1502051], [9.2129393, 49.1503415]], [[9.2125348, 49.1497314], [9.2124882, 49.1496628]], [[9.2129393, 49.1503415], [9.2129609, 49.1503741], [9.2130479, 49.1505053]], [[9.2124882, 49.1496628], [9.2124593, 49.1496202], [9.2123568, 49.1494708], [9.2123343, 49.1494464], [9.2122828, 49.1493905]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Eduard-Bader-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1848551, 49.1342454], [9.1850156, 49.1337833]], [[9.1861791, 49.1329211], [9.1853504, 49.1328224]], [[9.1864278, 49.1329509], [9.1861791, 49.1329211]], [[9.1850156, 49.1337833], [9.1861911, 49.1339334], [9.1864508, 49.1339648], [9.1867085, 49.1339596], [9.1869936, 49.1338572], [9.1871017, 49.1337926], [9.1872744, 49.1335772], [9.1872601, 49.1333190], [9.1871745, 49.1331992], [9.1869937, 49.1330667], [9.1866772, 49.1329950], [9.1864278, 49.1329509]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Eduard-Hilger-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1879728, 49.1376026], [9.1876930, 49.1372874], [9.1877227, 49.1372222], [9.1878410, 49.1369835], [9.1867672, 49.1367609], [9.1851144, 49.1364377], [9.1850508, 49.1364371], [9.1849927, 49.1364740]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Ehrlichstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2462907, 49.1376540], [9.2460519, 49.1377051], [9.2457649, 49.1378192], [9.2454244, 49.1380020], [9.2450676, 49.1381509], [9.2446715, 49.1383129], [9.2444064, 49.1383948], [9.2442066, 49.1384492], [9.2439571, 49.1385036], [9.2437224, 49.1385501], [9.2436109, 49.1385648]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Eibenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1841440, 49.1469473], [9.1844750, 49.1470055], [9.1845872, 49.1470150], [9.1848541, 49.1470341], [9.1853107, 49.1469970]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Eichelberger Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2404443, 49.1486902], [9.2405182, 49.1486600], [9.2405477, 49.1486479], [9.2407364, 49.1484399], [9.2410035, 49.1482224], [9.2411283, 49.1481279], [9.2412588, 49.1480200], [9.2413319, 49.1478948], [9.2413638, 49.1477435], [9.2414164, 49.1474850]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Eichendorffstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2203687, 49.1300292], [9.2201989, 49.1294161], [9.2200518, 49.1289022], [9.2200320, 49.1288841], [9.2200049, 49.1288636], [9.2199500, 49.1288434], [9.2199231, 49.1287310], [9.2199245, 49.1287109], [9.2199338, 49.1287031]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Eichenhof" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1822694, 49.1509518], [9.1822760, 49.1506429]], [[9.1822760, 49.1506429], [9.1823315, 49.1493769]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Eichgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2182264, 49.1403665], [9.2182770, 49.1404789], [9.2183338, 49.1406382], [9.2183410, 49.1407290], [9.2183437, 49.1408420], [9.2183943, 49.1409612], [9.2184589, 49.1411198], [9.2184965, 49.1413327], [9.2185011, 49.1414870]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Eichhäuser Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1102151, 49.1871929], [9.1103710, 49.1870208], [9.1105439, 49.1868719], [9.1106683, 49.1868191], [9.1107702, 49.1867853], [9.1110349, 49.1867443], [9.1113809, 49.1866934], [9.1116411, 49.1866659], [9.1123642, 49.1866497], [9.1127244, 49.1866417], [9.1131309, 49.1866246], [9.1134331, 49.1865952], [9.1143356, 49.1864223]], [[9.1110349, 49.1867443], [9.1111797, 49.1869387], [9.1112291, 49.1870084], [9.1110778, 49.1870543]], [[9.1123642, 49.1866497], [9.1122049, 49.1863291]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Eigenheimstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2213025, 49.1299155], [9.2211763, 49.1295486], [9.2210902, 49.1293063], [9.2210389, 49.1291707], [9.2209611, 49.1289636], [9.2208954, 49.1287732], [9.2208579, 49.1286565], [9.2208438, 49.1286187]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Einsteinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2446561, 49.1331457], [9.2444777, 49.1329443], [9.2442779, 49.1327189], [9.2442238, 49.1326171]], [[9.2467084, 49.1390288], [9.2467058, 49.1389396], [9.2467034, 49.1387479], [9.2466863, 49.1386128], [9.2466605, 49.1385311], [9.2466438, 49.1384781], [9.2463745, 49.1378464], [9.2462907, 49.1376540], [9.2461868, 49.1374043], [9.2461300, 49.1372664], [9.2460603, 49.1370973], [9.2459383, 49.1368013], [9.2459243, 49.1367673], [9.2457869, 49.1364339], [9.2455481, 49.1358544], [9.2455302, 49.1358111], [9.2454492, 49.1356144], [9.2454191, 49.1355307], [9.2452698, 49.1351156], [9.2449244, 49.1342223], [9.2448308, 49.1340180]], [[9.2455302, 49.1358111], [9.2451895, 49.1358599]], [[9.2454191, 49.1355307], [9.2450849, 49.1355817]], [[9.2455481, 49.1358544], [9.2452056, 49.1358976]], [[9.2444444, 49.1332054], [9.2445087, 49.1333117]], [[9.2445087, 49.1333117], [9.2445822, 49.1334543], [9.2446554, 49.1335964], [9.2446989, 49.1336953], [9.2448308, 49.1340180]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Eisenbahnstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1949042, 49.1325821], [9.1949532, 49.1326073]], [[9.1949532, 49.1326073], [9.1949854, 49.1326847], [9.1952113, 49.1332967], [9.1952295, 49.1333641], [9.1952340, 49.1334327], [9.1952272, 49.1337737], [9.1951925, 49.1338697], [9.1951554, 49.1339725], [9.1951230, 49.1341052], [9.1950775, 49.1344159], [9.1950556, 49.1344881], [9.1949740, 49.1345700]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Eisvogelweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1791360, 49.1166937], [9.1789436, 49.1162466], [9.1786526, 49.1162080], [9.1773035, 49.1160288]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Elbinger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1966095, 49.1589530], [9.1969658, 49.1589564], [9.1973648, 49.1589658], [9.1974142, 49.1589700], [9.1977683, 49.1589997], [9.1978969, 49.1590394], [9.1980385, 49.1590830], [9.1981182, 49.1591020], [9.1982710, 49.1591385], [9.1983303, 49.1591425], [9.1985117, 49.1591536], [9.1986605, 49.1591611], [9.1990603, 49.1591844], [9.1993511, 49.1592380]], [[9.2016586, 49.1591145], [9.2014118, 49.1588307]], [[9.2002343, 49.1594145], [9.1998921, 49.1589945]], [[9.1999293, 49.1594188], [9.1994848, 49.1595866]], [[9.1993511, 49.1592380], [9.1994932, 49.1592726]], [[9.1994932, 49.1592726], [9.1995403, 49.1592885], [9.1999293, 49.1594188], [9.2000626, 49.1594234], [9.2002343, 49.1594145], [9.2006586, 49.1593833], [9.2010606, 49.1593358], [9.2013733, 49.1592760], [9.2016991, 49.1591970]], [[9.1978675, 49.1594448], [9.1980931, 49.1592937], [9.1981409, 49.1592520], [9.1982710, 49.1591385]], [[9.2017667, 49.1591514], [9.2018075, 49.1591512], [9.2018528, 49.1591680], [9.2018718, 49.1591875], [9.2018778, 49.1592105], [9.2018671, 49.1592368], [9.2018401, 49.1592568], [9.2018066, 49.1592665], [9.2017642, 49.1592659], [9.2017235, 49.1592504], [9.2017012, 49.1592262], [9.2016991, 49.1591970], [9.2017190, 49.1591704], [9.2017382, 49.1591594], [9.2017667, 49.1591514]], [[9.1969658, 49.1589564], [9.1969207, 49.1592631], [9.1969433, 49.1593372], [9.1975103, 49.1596726]], [[9.2010606, 49.1593358], [9.2006746, 49.1589114]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Elisabethenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1948752, 49.1435418], [9.1952424, 49.1434810]], [[9.1964361, 49.1432218], [9.1966289, 49.1431420], [9.1973129, 49.1430099]], [[9.1952424, 49.1434810], [9.1954022, 49.1434570], [9.1956629, 49.1434096], [9.1957552, 49.1433958], [9.1959025, 49.1433740], [9.1963200, 49.1431387]], [[9.1954022, 49.1434570], [9.1953216, 49.1432596]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Elise-Heß-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1380106, 49.1917598], [9.1379065, 49.1918325], [9.1378388, 49.1918646], [9.1377219, 49.1918982], [9.1375945, 49.1918970], [9.1373474, 49.1918370], [9.1368964, 49.1917573], [9.1368098, 49.1917420]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Ellwanger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2197374, 49.1543531], [9.2199392, 49.1547976], [9.2200336, 49.1549991], [9.2201245, 49.1551948], [9.2202195, 49.1553996], [9.2203099, 49.1556002], [9.2203922, 49.1557794], [9.2205212, 49.1560514], [9.2206056, 49.1562212], [9.2207665, 49.1566023], [9.2208848, 49.1569482], [9.2211019, 49.1575828]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Elsternweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1464699, 49.1958390], [9.1472820, 49.1954651]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Endgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2197415, 49.1453357], [9.2197056, 49.1451758], [9.2197016, 49.1451498], [9.2197110, 49.1451288], [9.2197312, 49.1451095], [9.2197563, 49.1451011], [9.2204286, 49.1450481]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Enge Gasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1679130, 49.1161383], [9.1683890, 49.1164004], [9.1680383, 49.1168804], [9.1678645, 49.1171109]], [[9.1683890, 49.1164004], [9.1687674, 49.1165442], [9.1688409, 49.1165933], [9.1688453, 49.1166700], [9.1688029, 49.1167647]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Entenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2034350, 49.1677266], [9.2033710, 49.1676114], [9.2033907, 49.1673953], [9.2034422, 49.1669458]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Eppinger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1908477, 49.1358911], [9.1914436, 49.1358382], [9.1919768, 49.1357811], [9.1933444, 49.1356497], [9.1940802, 49.1355737], [9.1946680, 49.1355128]], [[9.1883331, 49.1363439], [9.1884407, 49.1361689], [9.1885735, 49.1360799], [9.1887456, 49.1360235], [9.1889422, 49.1359998], [9.1894450, 49.1359985], [9.1901667, 49.1359717], [9.1908477, 49.1358911]], [[9.1942216, 49.1361455], [9.1940802, 49.1355737], [9.1940405, 49.1354244]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Erhard-Schnepf-Gasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1424002, 49.1933436], [9.1423915, 49.1933223], [9.1423837, 49.1933041]], [[9.1420890, 49.1927354], [9.1421199, 49.1928403], [9.1421989, 49.1929891], [9.1422793, 49.1931189]], [[9.1426405, 49.1935680], [9.1426113, 49.1935308], [9.1425815, 49.1935098], [9.1425323, 49.1934881], [9.1424372, 49.1934601], [9.1421923, 49.1934087]], [[9.1423837, 49.1933041], [9.1423725, 49.1932809]], [[9.1424002, 49.1933436], [9.1424201, 49.1934065], [9.1424372, 49.1934601]], [[9.1423280, 49.1931654], [9.1424643, 49.1930910], [9.1426939, 49.1929999], [9.1427521, 49.1929565], [9.1427928, 49.1929002]], [[9.1422793, 49.1931189], [9.1423280, 49.1931654], [9.1423725, 49.1932809]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Erhardgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2181947, 49.1433008], [9.2182129, 49.1433398], [9.2182681, 49.1435034], [9.2182782, 49.1435900], [9.2182847, 49.1436157], [9.2183908, 49.1439942], [9.2184142, 49.1440977], [9.2184309, 49.1442159], [9.2184627, 49.1444536]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Erlachweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2389340, 49.1390688], [9.2389791, 49.1391161], [9.2390286, 49.1393360], [9.2391992, 49.1400946], [9.2392081, 49.1401343]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Erlenbacher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2307113, 49.1502192], [9.2309396, 49.1503122], [9.2310567, 49.1503600]], [[9.2339712, 49.1520498], [9.2340985, 49.1521050], [9.2341728, 49.1521383], [9.2342103, 49.1521551], [9.2342625, 49.1521890]], [[9.2310567, 49.1503600], [9.2316641, 49.1506866], [9.2324905, 49.1511404], [9.2326325, 49.1512162], [9.2330898, 49.1514472], [9.2333507, 49.1516379], [9.2334371, 49.1517046], [9.2335967, 49.1518296], [9.2337482, 49.1519296], [9.2339065, 49.1520217], [9.2339712, 49.1520498]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Erlenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1824936, 49.1493882], [9.1826118, 49.1489078], [9.1826713, 49.1484330], [9.1827034, 49.1481627]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Ernst-Abbe-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1257354, 49.1810318], [9.1264882, 49.1810346], [9.1267761, 49.1810233], [9.1278117, 49.1811460], [9.1295430, 49.1813649], [9.1297708, 49.1813779], [9.1299338, 49.1813406], [9.1300622, 49.1811743], [9.1301101, 49.1811123], [9.1301446, 49.1803170]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Ernst-Bader-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1689103, 49.1176586], [9.1693090, 49.1170223], [9.1695417, 49.1164696], [9.1698119, 49.1159278]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Ernst-Jäckh-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2341452, 49.1525264], [9.2341921, 49.1525935], [9.2342204, 49.1526675], [9.2342402, 49.1527647], [9.2342402, 49.1531828], [9.2342290, 49.1532147], [9.2341963, 49.1532438], [9.2341412, 49.1532688], [9.2340605, 49.1532818], [9.2339304, 49.1532873], [9.2336475, 49.1533160], [9.2332600, 49.1533761], [9.2330037, 49.1534202]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Ernst-Wecker-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2039989, 49.1178394], [9.2039947, 49.1184232], [9.2039902, 49.1190401], [9.2039917, 49.1194159]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Erwin-Habold-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1692978, 49.1135960], [9.1685581, 49.1143942], [9.1684878, 49.1144295]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Eschenbachstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1432979, 49.1901425], [9.1442379, 49.1904137], [9.1447637, 49.1905692], [9.1450141, 49.1906421], [9.1452406, 49.1907301], [9.1456608, 49.1909192], [9.1460440, 49.1911090], [9.1461515, 49.1911685], [9.1462206, 49.1912094], [9.1471328, 49.1917598]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Eschenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1834790, 49.1494643], [9.1836403, 49.1485204], [9.1837106, 49.1482142]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Etzelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2198911, 49.1512705], [9.2164401, 49.1522321], [9.2163172, 49.1522646]], [[9.2163172, 49.1522646], [9.2152268, 49.1525648], [9.2144752, 49.1527639], [9.2130401, 49.1531524]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Eugen-Nägele-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2638984, 49.1326938], [9.2640479, 49.1326274], [9.2642736, 49.1324633], [9.2642731, 49.1324101], [9.2642494, 49.1323748]], [[9.2589257, 49.1350011], [9.2587028, 49.1352402], [9.2584688, 49.1355199], [9.2582930, 49.1356951], [9.2580880, 49.1358716], [9.2576036, 49.1362405]], [[9.2593598, 49.1346342], [9.2589257, 49.1350011]], [[9.2642494, 49.1323748], [9.2641478, 49.1323668], [9.2639538, 49.1324260], [9.2635650, 49.1325438], [9.2634442, 49.1326003], [9.2633426, 49.1326406]], [[9.2614998, 49.1331504], [9.2614530, 49.1331858], [9.2609454, 49.1335860], [9.2601169, 49.1341528], [9.2593598, 49.1346342]], [[9.2625657, 49.1327764], [9.2623100, 49.1328150], [9.2621140, 49.1328690], [9.2618116, 49.1329834], [9.2616792, 49.1330382], [9.2615757, 49.1330930], [9.2614998, 49.1331504]], [[9.2633426, 49.1326406], [9.2631720, 49.1326786], [9.2629333, 49.1327289], [9.2625657, 49.1327764]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Eulenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1916693, 49.1500162], [9.1946335, 49.1500611]], [[9.1857296, 49.1493879], [9.1859318, 49.1494030], [9.1860746, 49.1494139], [9.1863354, 49.1494315]], [[9.1863354, 49.1494315], [9.1875605, 49.1495274]], [[9.1875605, 49.1495274], [9.1887278, 49.1496294], [9.1898983, 49.1497857], [9.1910729, 49.1499691], [9.1914758, 49.1500089], [9.1916693, 49.1500162]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Europaplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2135077, 49.1480115], [9.2135995, 49.1479575], [9.2137207, 49.1479301], [9.2138203, 49.1479322], [9.2139177, 49.1479558], [9.2139849, 49.1479895], [9.2140485, 49.1480500], [9.2140748, 49.1481136], [9.2140640, 49.1481925], [9.2140183, 49.1482545], [9.2139709, 49.1482891], [9.2138737, 49.1483278], [9.2137720, 49.1483414], [9.2136899, 49.1483362], [9.2135483, 49.1482877], [9.2134902, 49.1482414], [9.2134628, 49.1482032], [9.2134451, 49.1481366], [9.2134612, 49.1480697], [9.2135077, 49.1480115]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Eythstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2101657, 49.1283554], [9.2101840, 49.1283335], [9.2102337, 49.1282659], [9.2102538, 49.1282185], [9.2102568, 49.1282029], [9.2102618, 49.1281764], [9.2102578, 49.1281413], [9.2102431, 49.1281009], [9.2102055, 49.1280378], [9.2100593, 49.1278113], [9.2100432, 49.1277806], [9.2100365, 49.1277499], [9.2100405, 49.1277236], [9.2100633, 49.1276929], [9.2101022, 49.1276560], [9.2101598, 49.1276299], [9.2102182, 49.1276139], [9.2102792, 49.1276122], [9.2103329, 49.1276148], [9.2103919, 49.1276201], [9.2104658, 49.1276196], [9.2105052, 49.1276127], [9.2105707, 49.1275971], [9.2108696, 49.1275321], [9.2112514, 49.1274643], [9.2115756, 49.1274054], [9.2117427, 49.1273710], [9.2124221, 49.1272431], [9.2126108, 49.1272066], [9.2127375, 49.1271883]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Faißtstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2326261, 49.1490060], [9.2327160, 49.1491105], [9.2328060, 49.1492305], [9.2328489, 49.1492952], [9.2328617, 49.1493459], [9.2328627, 49.1494505], [9.2327366, 49.1506744], [9.2327283, 49.1508476], [9.2327135, 49.1509078], [9.2326786, 49.1509749], [9.2324905, 49.1511404]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Falkenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2193214, 49.1425394], [9.2193889, 49.1425285], [9.2196008, 49.1424899], [9.2198425, 49.1424458], [9.2199810, 49.1424233], [9.2200838, 49.1424076], [9.2201605, 49.1423957]], [[9.2201605, 49.1423957], [9.2204948, 49.1423543]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Falltorstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1143356, 49.1864223], [9.1143060, 49.1863618], [9.1141269, 49.1860283], [9.1140988, 49.1859759], [9.1136674, 49.1850777]], [[9.1142272, 49.1840463], [9.1142620, 49.1841834], [9.1143252, 49.1845438], [9.1142978, 49.1846855], [9.1141914, 49.1848208], [9.1139673, 49.1849631], [9.1138841, 49.1850720]], [[9.1136674, 49.1850777], [9.1138841, 49.1850720], [9.1149564, 49.1849540], [9.1164022, 49.1847804], [9.1165063, 49.1846949]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Falter" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1928128, 49.1731507], [9.1928208, 49.1733457], [9.1922197, 49.1733582], [9.1922117, 49.1731633]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Falterhecklesweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1915590, 49.1713435], [9.1917050, 49.1707030], [9.1917455, 49.1704959], [9.1917175, 49.1703047]], [[9.1917050, 49.1707030], [9.1925136, 49.1707113], [9.1929212, 49.1707211], [9.1929885, 49.1707227]], [[9.1926300, 49.1715720], [9.1925480, 49.1715536], [9.1915590, 49.1713435], [9.1907509, 49.1714041], [9.1907494, 49.1713907], [9.1906897, 49.1708430]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Falterstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1940269, 49.1727544], [9.1939634, 49.1727769], [9.1939386, 49.1728067], [9.1938839, 49.1729709], [9.1938192, 49.1731153]], [[9.1928540, 49.1710380], [9.1927914, 49.1710393], [9.1922853, 49.1710495], [9.1918861, 49.1710479]], [[9.1928813, 49.1709813], [9.1928540, 49.1710380], [9.1926300, 49.1715720], [9.1923829, 49.1721448], [9.1922852, 49.1724000]], [[9.1934337, 49.1695300], [9.1934020, 49.1696096], [9.1933754, 49.1696812], [9.1932330, 49.1701057], [9.1931715, 49.1702632], [9.1929885, 49.1707227], [9.1928813, 49.1709813]], [[9.1931715, 49.1702632], [9.1930884, 49.1702695], [9.1925817, 49.1703078], [9.1925657, 49.1702201]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Falterweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1720406, 49.1154223], [9.1722424, 49.1150390]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Fasanenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2405165, 49.1430850], [9.2406900, 49.1431657], [9.2407549, 49.1432007], [9.2408094, 49.1432302]], [[9.2380655, 49.1435001], [9.2385753, 49.1433693], [9.2387053, 49.1433219], [9.2387737, 49.1432938], [9.2388180, 49.1432640], [9.2388864, 49.1431982], [9.2389220, 49.1431602], [9.2389374, 49.1431438], [9.2390634, 49.1430228], [9.2391855, 49.1429148], [9.2393249, 49.1427920], [9.2394483, 49.1426841], [9.2394711, 49.1426701], [9.2395033, 49.1426631], [9.2395341, 49.1426613], [9.2395610, 49.1426639], [9.2396696, 49.1426894], [9.2398493, 49.1427517], [9.2399982, 49.1428148], [9.2401309, 49.1428710], [9.2402463, 49.1429280], [9.2404361, 49.1430349], [9.2405165, 49.1430850]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Felix-Wankel-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1505879, 49.1890040], [9.1507336, 49.1890855], [9.1514095, 49.1896085], [9.1514990, 49.1896850], [9.1517529, 49.1898822], [9.1522544, 49.1902717], [9.1523541, 49.1903492]], [[9.1523541, 49.1903492], [9.1524675, 49.1904372]], [[9.1524675, 49.1904372], [9.1525531, 49.1905037]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Felsenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1511074, 49.1196761], [9.1511917, 49.1197540], [9.1512783, 49.1198092], [9.1515555, 49.1198872], [9.1520421, 49.1200159], [9.1524300, 49.1201254], [9.1527557, 49.1202048], [9.1529404, 49.1202356], [9.1531787, 49.1202455], [9.1532647, 49.1202438], [9.1535202, 49.1202314], [9.1537578, 49.1202097], [9.1538940, 49.1201948], [9.1542988, 49.1201555], [9.1544370, 49.1201419], [9.1547480, 49.1201132], [9.1547777, 49.1201096], [9.1550305, 49.1200789], [9.1552404, 49.1200887], [9.1554971, 49.1201038], [9.1556239, 49.1201132], [9.1558957, 49.1201249]], [[9.1563102, 49.1201527], [9.1566260, 49.1201972], [9.1569701, 49.1202317], [9.1571043, 49.1202227], [9.1572371, 49.1201871], [9.1574842, 49.1201078], [9.1578737, 49.1200073], [9.1581470, 49.1199596], [9.1583826, 49.1199051], [9.1585927, 49.1198481], [9.1588128, 49.1197756], [9.1590453, 49.1196996], [9.1592513, 49.1196216], [9.1593308, 49.1195595], [9.1594407, 49.1194796], [9.1594964, 49.1194427], [9.1596432, 49.1193657], [9.1596718, 49.1193064], [9.1596405, 49.1192001]], [[9.1558957, 49.1201249], [9.1563102, 49.1201527]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Ferdinand-Braun-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2199733, 49.1198297], [9.2199687, 49.1197677], [9.2199594, 49.1196400], [9.2199517, 49.1195359], [9.2199298, 49.1191918], [9.2198981, 49.1189097], [9.2198950, 49.1188715], [9.2198802, 49.1188258], [9.2198453, 49.1187854], [9.2197971, 49.1187530], [9.2197434, 49.1187275], [9.2196723, 49.1187082], [9.2196053, 49.1187038], [9.2195276, 49.1187056], [9.2192931, 49.1187105], [9.2184977, 49.1187315], [9.2184802, 49.1187319], [9.2184033, 49.1187392], [9.2183691, 49.1187509], [9.2183449, 49.1187591], [9.2182914, 49.1187916], [9.2182512, 49.1188286], [9.2182240, 49.1188732], [9.2182140, 49.1189139], [9.2182125, 49.1189516], [9.2182136, 49.1189692], [9.2182239, 49.1191378], [9.2182463, 49.1195054], [9.2182648, 49.1198092], [9.2182682, 49.1198658]], [[9.2190650, 49.1198482], [9.2190872, 49.1202332], [9.2190917, 49.1203136], [9.2191065, 49.1205562], [9.2191132, 49.1206664], [9.2191266, 49.1208348], [9.2191346, 49.1209307]], [[9.2208888, 49.1198090], [9.2208981, 49.1199160], [9.2209102, 49.1199441], [9.2209236, 49.1199642], [9.2209491, 49.1199774], [9.2209906, 49.1199818], [9.2210295, 49.1199818], [9.2210684, 49.1199765], [9.2211140, 49.1199634], [9.2211462, 49.1199344], [9.2211507, 49.1198865], [9.2211462, 49.1198493], [9.2211167, 49.1198212], [9.2210751, 49.1198089]], [[9.2210751, 49.1198089], [9.2210175, 49.1198071], [9.2208888, 49.1198090], [9.2206663, 49.1198131], [9.2203402, 49.1198225], [9.2202173, 49.1198249], [9.2199733, 49.1198297], [9.2193641, 49.1198416], [9.2191509, 49.1198463], [9.2190650, 49.1198482], [9.2189415, 49.1198510], [9.2183764, 49.1198646], [9.2182682, 49.1198658], [9.2172987, 49.1198871], [9.2171588, 49.1198917], [9.2170546, 49.1198940], [9.2169862, 49.1198896], [9.2169205, 49.1198773], [9.2168708, 49.1198528], [9.2168413, 49.1198264], [9.2168092, 49.1197703], [9.2168065, 49.1197474], [9.2168279, 49.1197255], [9.2168655, 49.1197071], [9.2169124, 49.1196948], [9.2169392, 49.1196913], [9.2169781, 49.1196957], [9.2170117, 49.1197027], [9.2170345, 49.1197106], [9.2170559, 49.1197299], [9.2170929, 49.1197911], [9.2171588, 49.1198917]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Feuerbacherweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1865058, 49.1299904], [9.1866307, 49.1295494], [9.1867078, 49.1291075], [9.1867596, 49.1288379]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Feurerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2029021, 49.1693091], [9.2021783, 49.1693501], [9.2014542, 49.1694007], [9.2007968, 49.1694348], [9.2002419, 49.1694621], [9.2000072, 49.1694693], [9.1997688, 49.1694496], [9.1992736, 49.1693984], [9.1987960, 49.1693825], [9.1984531, 49.1694003], [9.1972507, 49.1694569], [9.1965157, 49.1694766], [9.1964936, 49.1694769], [9.1962062, 49.1695178]], [[9.1935047, 49.1701247], [9.1946470, 49.1702290]], [[9.1962062, 49.1695178], [9.1959000, 49.1695785], [9.1956366, 49.1696321], [9.1955302, 49.1696738], [9.1950601, 49.1700001], [9.1949723, 49.1700606], [9.1947715, 49.1701344], [9.1946470, 49.1702290], [9.1944864, 49.1708341]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Feyerabendstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2249530, 49.1535887], [9.2248798, 49.1534139], [9.2247692, 49.1531498], [9.2247307, 49.1530425], [9.2245052, 49.1525076], [9.2243191, 49.1520024], [9.2240380, 49.1513042]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Fichtestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2331446, 49.1334267], [9.2341239, 49.1332920], [9.2351199, 49.1331520], [9.2367795, 49.1329840], [9.2368921, 49.1329765], [9.2373396, 49.1329575], [9.2376310, 49.1329589], [9.2379448, 49.1329796], [9.2384642, 49.1330141], [9.2398354, 49.1330848], [9.2400721, 49.1330868], [9.2403241, 49.1330720], [9.2404978, 49.1330469], [9.2406750, 49.1330119], [9.2408215, 49.1329722], [9.2409465, 49.1329297], [9.2409610, 49.1329248], [9.2410469, 49.1328809], [9.2411093, 49.1328299]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Finkenbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1416457, 49.1940978], [9.1416936, 49.1941125], [9.1417388, 49.1941357], [9.1421089, 49.1944093], [9.1421335, 49.1944260], [9.1423350, 49.1945788], [9.1424254, 49.1946560], [9.1424465, 49.1946714], [9.1425822, 49.1947757], [9.1426917, 49.1948572]], [[9.1427447, 49.1948997], [9.1427863, 49.1949381], [9.1431431, 49.1953047], [9.1435285, 49.1956265], [9.1436198, 49.1957085], [9.1436947, 49.1958010], [9.1437558, 49.1959330], [9.1437699, 49.1960760], [9.1437681, 49.1962937], [9.1438365, 49.1965572], [9.1439145, 49.1967739], [9.1440283, 49.1969824], [9.1442133, 49.1972604], [9.1442658, 49.1973150], [9.1443465, 49.1974133], [9.1444455, 49.1975160], [9.1444522, 49.1975187], [9.1445352, 49.1976082], [9.1446356, 49.1977323]], [[9.1426917, 49.1948572], [9.1427447, 49.1948997]], [[9.1446356, 49.1977323], [9.1456595, 49.1988346], [9.1457796, 49.1989868], [9.1458971, 49.1991527], [9.1459802, 49.1993052], [9.1460496, 49.1995298]], [[9.1461057, 49.1997517], [9.1461670, 49.2000269], [9.1462282, 49.2002161], [9.1462443, 49.2002510], [9.1463250, 49.2004134], [9.1464419, 49.2005768], [9.1466409, 49.2008130], [9.1468288, 49.2010011], [9.1475328, 49.2016314], [9.1477612, 49.2018541], [9.1479641, 49.2020829]], [[9.1460496, 49.1995298], [9.1461057, 49.1997517]], [[9.1462408, 49.1995011], [9.1462203, 49.1992890], [9.1462334, 49.1992195], [9.1462731, 49.1991796], [9.1468058, 49.1989158], [9.1473125, 49.1986910], [9.1474430, 49.1986331], [9.1475265, 49.1986037]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Finkenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1897047, 49.1503604], [9.1898983, 49.1497857]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Fischergasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2159371, 49.1403635], [9.2159468, 49.1404316], [9.2159852, 49.1405386], [9.2160787, 49.1406907], [9.2165270, 49.1413519]], [[9.2159468, 49.1404316], [9.2156992, 49.1404272], [9.2156992, 49.1403822], [9.2156786, 49.1402374], [9.2156771, 49.1402272], [9.2156590, 49.1400997], [9.2154842, 49.1400806], [9.2154551, 49.1400774], [9.2152830, 49.1400587]], [[9.2159183, 49.1399185], [9.2159171, 49.1399511], [9.2159371, 49.1403635]], [[9.2165270, 49.1413519], [9.2165977, 49.1414295], [9.2166582, 49.1414731], [9.2167329, 49.1414893], [9.2170081, 49.1414941]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Flaischlenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1911745, 49.1393633], [9.1899034, 49.1394071]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Flammerweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2378274, 49.1517618], [9.2378361, 49.1514454], [9.2378151, 49.1507499]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Fleiner Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2191255, 49.1389423], [9.2191946, 49.1390022], [9.2192069, 49.1390313], [9.2191646, 49.1392052], [9.2190792, 49.1393899], [9.2189440, 49.1396118], [9.2188697, 49.1397598], [9.2187081, 49.1402408], [9.2188070, 49.1404388], [9.2189282, 49.1406153], [9.2191681, 49.1408813], [9.2193851, 49.1411863], [9.2194079, 49.1412210], [9.2196294, 49.1414504], [9.2198830, 49.1415245], [9.2200552, 49.1417543], [9.2202298, 49.1418054], [9.2202381, 49.1418192]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Fliederweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1872623, 49.1464551], [9.1871013, 49.1464519]], [[9.1868278, 49.1470173], [9.1868563, 49.1464957], [9.1868509, 49.1463814]], [[9.2097497, 49.1245490], [9.2100428, 49.1251292]], [[9.1871013, 49.1464519], [9.1868509, 49.1463814], [9.1863514, 49.1463563], [9.1858460, 49.1463507], [9.1855046, 49.1463850], [9.1850532, 49.1464905]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Florian-Geyer-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1819029, 49.1517920], [9.1818994, 49.1522127], [9.1816063, 49.1522178]], [[9.1819029, 49.1517920], [9.1821190, 49.1517932], [9.1829274, 49.1518231], [9.1839214, 49.1518598], [9.1846488, 49.1518629], [9.1848327, 49.1518581], [9.1851338, 49.1518496], [9.1853745, 49.1518501], [9.1856051, 49.1518659]], [[9.1816063, 49.1522178], [9.1815932, 49.1518615], [9.1815990, 49.1518216], [9.1816345, 49.1518034], [9.1819029, 49.1517920]], [[9.1793995, 49.1522664], [9.1805041, 49.1522318], [9.1816063, 49.1522178]], [[9.1856051, 49.1518659], [9.1858518, 49.1519238], [9.1860832, 49.1520071], [9.1864574, 49.1521313], [9.1865954, 49.1521771], [9.1868432, 49.1522385], [9.1874526, 49.1523175]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Fontanestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2150307, 49.1256592], [9.2150484, 49.1256302], [9.2150889, 49.1255760], [9.2151295, 49.1255487], [9.2152143, 49.1255078], [9.2153309, 49.1254706], [9.2154451, 49.1254462], [9.2164013, 49.1252479], [9.2165891, 49.1252131], [9.2168400, 49.1251690], [9.2170701, 49.1251347], [9.2171628, 49.1251298], [9.2172903, 49.1251379]], [[9.2168198, 49.1249460], [9.2167850, 49.1249539], [9.2167743, 49.1249618], [9.2167689, 49.1249784], [9.2168400, 49.1251690]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Forchenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1903955, 49.1451434], [9.1900210, 49.1441584]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Forellenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1372871, 49.1971452], [9.1383158, 49.1975214], [9.1384012, 49.1975447]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Frankenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1702599, 49.1632576], [9.1703624, 49.1632832], [9.1706300, 49.1633443], [9.1712974, 49.1635252], [9.1718056, 49.1636721], [9.1719735, 49.1637382]], [[9.1731816, 49.1621987], [9.1729468, 49.1621717], [9.1727582, 49.1621322], [9.1724100, 49.1619639], [9.1713995, 49.1627504], [9.1710623, 49.1629455], [9.1708040, 49.1631213], [9.1706300, 49.1633443]], [[9.1706300, 49.1633443], [9.1704504, 49.1636407], [9.1704104, 49.1638308]], [[9.1727076, 49.1617383], [9.1724100, 49.1619639]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Frankfurt-Oder-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2081122, 49.1210059], [9.2081993, 49.1210077], [9.2087660, 49.1210070], [9.2092012, 49.1210029], [9.2092494, 49.1210024], [9.2092829, 49.1210033], [9.2093151, 49.1210103], [9.2093446, 49.1210243], [9.2093755, 49.1210419], [9.2093929, 49.1210647], [9.2094050, 49.1210981], [9.2094171, 49.1213157], [9.2094575, 49.1215974], [9.2094633, 49.1216583]], [[9.2089651, 49.1203371], [9.2090013, 49.1203380], [9.2090255, 49.1203441], [9.2090456, 49.1203538], [9.2091341, 49.1204273], [9.2091448, 49.1204363], [9.2091582, 49.1204617], [9.2091622, 49.1205091], [9.2091649, 49.1205513], [9.2091676, 49.1207470], [9.2091703, 49.1207795], [9.2091850, 49.1208119], [9.2091958, 49.1208506], [9.2091989, 49.1209001], [9.2092012, 49.1210029]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Frankfurter Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2032985, 49.1409153], [9.2036264, 49.1409757], [9.2039594, 49.1410310], [9.2042449, 49.1410626], [9.2046328, 49.1410958]], [[9.2072583, 49.1411056], [9.2071567, 49.1411063], [9.2071570, 49.1411242], [9.2071582, 49.1412022], [9.2062167, 49.1412087], [9.2062153, 49.1411223]], [[9.2072583, 49.1411056], [9.2073726, 49.1411053], [9.2081616, 49.1410874], [9.2086367, 49.1410703]], [[9.2141533, 49.1421237], [9.2141891, 49.1421621], [9.2143915, 49.1423703]], [[9.2143915, 49.1423703], [9.2144305, 49.1424206]], [[9.2046328, 49.1410958], [9.2048859, 49.1411022], [9.2050574, 49.1411070]], [[9.2119702, 49.1410489], [9.2121145, 49.1410563], [9.2122960, 49.1410780], [9.2124666, 49.1411110], [9.2125466, 49.1411277], [9.2130367, 49.1412300], [9.2131850, 49.1412763], [9.2132813, 49.1413104]], [[9.2052177, 49.1411135], [9.2056439, 49.1411168], [9.2062153, 49.1411223]], [[9.2086367, 49.1410703], [9.2093864, 49.1410649], [9.2094658, 49.1410648], [9.2095636, 49.1410631], [9.2109295, 49.1410488], [9.2114096, 49.1410434], [9.2119702, 49.1410489]], [[9.2050574, 49.1411070], [9.2052177, 49.1411135]], [[9.2125466, 49.1411277], [9.2124536, 49.1413276], [9.2124186, 49.1413746], [9.2120086, 49.1415146]], [[9.2132813, 49.1413104], [9.2133879, 49.1413720], [9.2134392, 49.1414168], [9.2134977, 49.1414714], [9.2137904, 49.1417696], [9.2140937, 49.1420623], [9.2141533, 49.1421237]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Franz-Lehar-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1474206, 49.1995218], [9.1486981, 49.2001664], [9.1487367, 49.2001858], [9.1489427, 49.2003007], [9.1491379, 49.2004096], [9.1491733, 49.2004287], [9.1492393, 49.2004644], [9.1493958, 49.2005603], [9.1494804, 49.2006122], [9.1496363, 49.2007077], [9.1498395, 49.2008322], [9.1498568, 49.2008428], [9.1500124, 49.2009382], [9.1501751, 49.2010572], [9.1504718, 49.2012868]], [[9.1494804, 49.2006122], [9.1500793, 49.2002325]], [[9.1497308, 49.2000027], [9.1491379, 49.2004096]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Franz-Reichle-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1517914, 49.1808720], [9.1519969, 49.1809617], [9.1520314, 49.1809755], [9.1523090, 49.1811005], [9.1526591, 49.1812562], [9.1538616, 49.1817974], [9.1540968, 49.1818800], [9.1541927, 49.1818908], [9.1542900, 49.1818721], [9.1543755, 49.1818399], [9.1544815, 49.1817725], [9.1545812, 49.1816892], [9.1546242, 49.1816512], [9.1551609, 49.1811502], [9.1552892, 49.1810385], [9.1555829, 49.1807741], [9.1557749, 49.1806784], [9.1559179, 49.1806498], [9.1560579, 49.1806390], [9.1576844, 49.1806176], [9.1582192, 49.1806209], [9.1584441, 49.1806529]], [[9.1453573, 49.1766336], [9.1454366, 49.1766994], [9.1457007, 49.1768777], [9.1458106, 49.1769447], [9.1462660, 49.1772268], [9.1466722, 49.1775154], [9.1470301, 49.1778108], [9.1473899, 49.1781284], [9.1474993, 49.1782250], [9.1487195, 49.1792845], [9.1489340, 49.1794538], [9.1491802, 49.1796159], [9.1495191, 49.1798176], [9.1499219, 49.1800186], [9.1510451, 49.1805313], [9.1517914, 49.1808720]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Franz-Renner-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2064820, 49.1369952], [9.2063885, 49.1369075]], [[9.2064820, 49.1369952], [9.2065528, 49.1370637], [9.2069008, 49.1373999], [9.2073785, 49.1378614]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Franz-Werfel-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1402880, 49.1892054], [9.1403110, 49.1892839], [9.1403201, 49.1893663], [9.1403085, 49.1894519], [9.1403013, 49.1895334]], [[9.1403013, 49.1895334], [9.1401990, 49.1895768], [9.1401353, 49.1896171], [9.1400737, 49.1896710], [9.1400285, 49.1897325], [9.1400017, 49.1897966], [9.1399226, 49.1900975], [9.1398715, 49.1903041]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Franziska-Schmidt-Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2139297, 49.1385191], [9.2125341, 49.1373524], [9.2127307, 49.1372484], [9.2127829, 49.1372224]], [[9.2125341, 49.1373524], [9.2124270, 49.1372493], [9.2123857, 49.1372045]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Franziskanerhof" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2216355, 49.1432593], [9.2216047, 49.1430366]], [[9.2216047, 49.1430366], [9.2214190, 49.1430568], [9.2213919, 49.1430563], [9.2213805, 49.1430394], [9.2213855, 49.1430150], [9.2213500, 49.1428320], [9.2218773, 49.1427882], [9.2219375, 49.1427761]], [[9.2216047, 49.1430366], [9.2219836, 49.1430031]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Frauenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2233462, 49.1455935], [9.2234797, 49.1455832], [9.2235781, 49.1455749], [9.2241571, 49.1455033], [9.2246900, 49.1454352], [9.2248587, 49.1454218], [9.2252312, 49.1453878]], [[9.2252312, 49.1453878], [9.2253845, 49.1453840], [9.2256738, 49.1453903]], [[9.2256738, 49.1453903], [9.2260900, 49.1454074], [9.2261640, 49.1454217], [9.2262734, 49.1454441], [9.2264138, 49.1454853]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Fraunhoferweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1758421, 49.1393339], [9.1782033, 49.1395302], [9.1786330, 49.1396120], [9.1790523, 49.1396530]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Freiligrathstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2084854, 49.1303764], [9.2089955, 49.1302851], [9.2093117, 49.1302276], [9.2096606, 49.1301591], [9.2098528, 49.1301200], [9.2099552, 49.1300990], [9.2102850, 49.1300365], [9.2105999, 49.1299767], [9.2107133, 49.1299551], [9.2113050, 49.1298427], [9.2114231, 49.1298204]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Frida-Schuhmacher-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1952642, 49.1719838], [9.1952104, 49.1723481], [9.1950783, 49.1724044], [9.1949987, 49.1724307], [9.1949754, 49.1725930], [9.1949570, 49.1727529]], [[9.1944743, 49.1723385], [9.1934092, 49.1722362], [9.1932707, 49.1722257], [9.1923829, 49.1721448]], [[9.1937590, 49.1718752], [9.1934248, 49.1721027], [9.1934092, 49.1722362]], [[9.1956615, 49.1723568], [9.1961340, 49.1723983]], [[9.1934248, 49.1721027], [9.1932842, 49.1720953], [9.1932707, 49.1722257]], [[9.1972097, 49.1710214], [9.1971691, 49.1713061], [9.1971546, 49.1714081], [9.1970849, 49.1717575], [9.1970359, 49.1719874], [9.1969755, 49.1720454], [9.1969081, 49.1720774], [9.1968117, 49.1720923], [9.1966583, 49.1720783], [9.1962617, 49.1720417], [9.1957201, 49.1719929], [9.1954148, 49.1719691], [9.1952642, 49.1719838], [9.1950913, 49.1720386], [9.1945633, 49.1720040], [9.1939977, 49.1719526], [9.1938617, 49.1719256], [9.1937590, 49.1718752], [9.1936981, 49.1717903], [9.1936858, 49.1717113], [9.1937943, 49.1713843], [9.1938959, 49.1710520]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Friedensplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2278198, 49.1401196], [9.2273626, 49.1401377], [9.2263912, 49.1401969], [9.2263694, 49.1402086], [9.2263743, 49.1402518], [9.2264900, 49.1412623], [9.2264937, 49.1412950], [9.2265054, 49.1413022], [9.2280248, 49.1412409], [9.2279327, 49.1406212], [9.2278477, 49.1401353], [9.2278198, 49.1401196]], [[9.2281680, 49.1412555], [9.2281627, 49.1412180], [9.2281501, 49.1411281], [9.2281273, 49.1409844], [9.2280793, 49.1406810], [9.2280772, 49.1406677], [9.2280724, 49.1406373], [9.2280577, 49.1405497], [9.2279708, 49.1400321]], [[9.2262206, 49.1400958], [9.2262268, 49.1401583], [9.2262330, 49.1402066]], [[9.2263694, 49.1412687], [9.2263797, 49.1413489]], [[9.2262330, 49.1402066], [9.2263694, 49.1412687]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Friedenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1929965, 49.1337382], [9.1930033, 49.1338323], [9.1930250, 49.1339842], [9.1930512, 49.1341093]], [[9.1932482, 49.1352564], [9.1927080, 49.1353009]], [[9.1927080, 49.1353009], [9.1926678, 49.1351504]], [[9.1930512, 49.1341093], [9.1931735, 49.1348239], [9.1932482, 49.1352564], [9.1933444, 49.1356497], [9.1934622, 49.1360985], [9.1934659, 49.1361097], [9.1935845, 49.1366293]], [[9.1935845, 49.1366293], [9.1936253, 49.1367852], [9.1937031, 49.1370928], [9.1937429, 49.1372535], [9.1937476, 49.1372748], [9.1937976, 49.1374809]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Friedhofstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2371146, 49.1383330], [9.2371262, 49.1384352], [9.2372057, 49.1388902], [9.2372646, 49.1392272], [9.2372664, 49.1392413], [9.2372941, 49.1394528], [9.2373275, 49.1397361], [9.2373674, 49.1400978], [9.2373757, 49.1401489], [9.2373859, 49.1401973], [9.2374255, 49.1405430], [9.2375776, 49.1419538], [9.2375873, 49.1420433], [9.2375962, 49.1421261]], [[9.2358126, 49.1394143], [9.2358099, 49.1393818], [9.2358153, 49.1393520], [9.2358434, 49.1393344], [9.2358917, 49.1393230], [9.2359641, 49.1393143], [9.2361760, 49.1392994], [9.2364711, 49.1392827], [9.2369828, 49.1392562], [9.2372664, 49.1392413]], [[9.2356718, 49.1397231], [9.2362685, 49.1397170], [9.2362887, 49.1397144], [9.2363034, 49.1397047], [9.2363115, 49.1396924], [9.2363101, 49.1396029], [9.2362846, 49.1395766]], [[9.2364389, 49.1397416], [9.2373275, 49.1397361]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Friedrich-Ackermann-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1941876, 49.1183794], [9.1941991, 49.1184337], [9.1942333, 49.1186548], [9.1942386, 49.1187198], [9.1942310, 49.1187570], [9.1942156, 49.1187911], [9.1942008, 49.1188101], [9.1941709, 49.1188485], [9.1940733, 49.1189653], [9.1939780, 49.1190786], [9.1939261, 49.1191368], [9.1937600, 49.1193342], [9.1936185, 49.1194889], [9.1935859, 49.1195235], [9.1935598, 49.1195585], [9.1935492, 49.1195939], [9.1935386, 49.1196279], [9.1934912, 49.1196456], [9.1934513, 49.1196744], [9.1933717, 49.1197657], [9.1932289, 49.1199329], [9.1928635, 49.1203572], [9.1926796, 49.1205729], [9.1923392, 49.1209800]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Friedrich-Dürr-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2096158, 49.1313514], [9.2090471, 49.1308539], [9.2084854, 49.1303764], [9.2082289, 49.1301373], [9.2079873, 49.1299274], [9.2079355, 49.1298855], [9.2077486, 49.1297152], [9.2076373, 49.1296209], [9.2074876, 49.1294939], [9.2073720, 49.1293965], [9.2070517, 49.1291274], [9.2069519, 49.1290409], [9.2068606, 49.1289515], [9.2068079, 49.1289065], [9.2067453, 49.1288526], [9.2065396, 49.1286659], [9.2063920, 49.1285545], [9.2062617, 49.1284706], [9.2061426, 49.1283965], [9.2059897, 49.1283111], [9.2052606, 49.1279722], [9.2048981, 49.1278052], [9.2044127, 49.1275723], [9.2042546, 49.1274781], [9.2042282, 49.1274590], [9.2041265, 49.1273858], [9.2040395, 49.1273144], [9.2039451, 49.1272102], [9.2038901, 49.1271294], [9.2038426, 49.1270389], [9.2037935, 49.1269361], [9.2037642, 49.1268223], [9.2037474, 49.1267440], [9.2037514, 49.1266940], [9.2037622, 49.1266711], [9.2037945, 49.1266334], [9.2038238, 49.1265992]], [[9.2066603, 49.1280376], [9.2066039, 49.1280201], [9.2064980, 49.1279674], [9.2064792, 49.1279621], [9.2064524, 49.1279656], [9.2063431, 49.1280398], [9.2062392, 49.1281131], [9.2060983, 49.1282263], [9.2059897, 49.1283111]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Friedrich-Ebert-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2330898, 49.1514472], [9.2329009, 49.1517323], [9.2327347, 49.1519065], [9.2325652, 49.1520799], [9.2323934, 49.1522273], [9.2321934, 49.1523614], [9.2318872, 49.1525145], [9.2316983, 49.1525939], [9.2316598, 49.1526038], [9.2316251, 49.1526035]], [[9.2271840, 49.1559260], [9.2272453, 49.1558186], [9.2276094, 49.1553980]], [[9.2277408, 49.1554553], [9.2274075, 49.1558564], [9.2273683, 49.1559159], [9.2272868, 49.1559346], [9.2271840, 49.1559260]], [[9.2274708, 49.1553375], [9.2278718, 49.1549916], [9.2281773, 49.1547150], [9.2282791, 49.1546068], [9.2283241, 49.1545235]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Friedrich-Naumann-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2398670, 49.1366404], [9.2399642, 49.1365713], [9.2401371, 49.1364430]], [[9.2401371, 49.1364430], [9.2403831, 49.1363058], [9.2406845, 49.1361455], [9.2408469, 49.1360735], [9.2410355, 49.1360085], [9.2412919, 49.1359552], [9.2416351, 49.1358975], [9.2425123, 49.1357499], [9.2429336, 49.1356581], [9.2430556, 49.1356185], [9.2431602, 49.1355706], [9.2433599, 49.1354597], [9.2434404, 49.1353941], [9.2434946, 49.1353222], [9.2439650, 49.1347490], [9.2442538, 49.1344105], [9.2444933, 49.1342016], [9.2448308, 49.1340180]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Friedrich-Niethammer-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2431544, 49.1387841], [9.2430966, 49.1386388], [9.2430173, 49.1384252]], [[9.2430173, 49.1384252], [9.2426573, 49.1384815], [9.2424081, 49.1385205], [9.2422476, 49.1385343], [9.2420784, 49.1385466], [9.2418916, 49.1385482], [9.2417459, 49.1385449], [9.2416943, 49.1385438], [9.2413612, 49.1385088], [9.2410106, 49.1384616], [9.2407362, 49.1384030], [9.2403651, 49.1383190], [9.2400502, 49.1382671], [9.2399704, 49.1382540]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Friedrichstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1942216, 49.1361455], [9.1943200, 49.1365628]], [[9.1896801, 49.1370130], [9.1896321, 49.1370177], [9.1893714, 49.1370590], [9.1891920, 49.1371054], [9.1890181, 49.1371676], [9.1888193, 49.1372601], [9.1885789, 49.1373768], [9.1879728, 49.1376026], [9.1878020, 49.1376691], [9.1875971, 49.1377607], [9.1874072, 49.1379095], [9.1869109, 49.1383412], [9.1868289, 49.1384056], [9.1867585, 49.1384355]], [[9.1909460, 49.1368865], [9.1908499, 49.1368869], [9.1905582, 49.1368561], [9.1904420, 49.1368273]], [[9.1904420, 49.1368273], [9.1903745, 49.1368986], [9.1902643, 49.1369409], [9.1900680, 49.1369815], [9.1896801, 49.1370130]], [[9.1935845, 49.1366293], [9.1933951, 49.1366480], [9.1929699, 49.1366898], [9.1922218, 49.1367678], [9.1921380, 49.1367718], [9.1916316, 49.1368226], [9.1914329, 49.1368460], [9.1913362, 49.1368574], [9.1910510, 49.1368802], [9.1909460, 49.1368865]], [[9.1916316, 49.1368226], [9.1916968, 49.1370443]], [[9.1935845, 49.1366293], [9.1941325, 49.1365809], [9.1943200, 49.1365628], [9.1943606, 49.1365586]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Fritz-Haber-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2096558, 49.1197584], [9.2096588, 49.1194329]], [[9.2087421, 49.1197970], [9.2087978, 49.1197802], [9.2088311, 49.1197721], [9.2088525, 49.1197669], [9.2089124, 49.1197620], [9.2091476, 49.1197599], [9.2096558, 49.1197584], [9.2098117, 49.1197554], [9.2099379, 49.1197530], [9.2101981, 49.1197391], [9.2103323, 49.1197307], [9.2104439, 49.1197102]], [[9.2104439, 49.1197102], [9.2105160, 49.1196804], [9.2106002, 49.1196527], [9.2107105, 49.1196383], [9.2110343, 49.1196194], [9.2112162, 49.1196165], [9.2114228, 49.1196080], [9.2116453, 49.1196002]], [[9.2103508, 49.1188982], [9.2099539, 49.1189245], [9.2097968, 49.1189301]], [[9.2103710, 49.1191510], [9.2101939, 49.1191808], [9.2101148, 49.1191861], [9.2097931, 49.1191879]], [[9.2103857, 49.1194099], [9.2102364, 49.1194461], [9.2101765, 49.1194529], [9.2098104, 49.1194556], [9.2097795, 49.1194090]], [[9.2088212, 49.1186964], [9.2090272, 49.1187060], [9.2098002, 49.1186956]], [[9.2088349, 49.1183680], [9.2088317, 49.1184603], [9.2088212, 49.1186964], [9.2088247, 49.1187981], [9.2087818, 49.1189026], [9.2087729, 49.1191065], [9.2087697, 49.1191492], [9.2087321, 49.1192274], [9.2087268, 49.1193494], [9.2087539, 49.1193861], [9.2088107, 49.1194230], [9.2088904, 49.1194415], [9.2089494, 49.1194512], [9.2090084, 49.1194538], [9.2092029, 49.1194512], [9.2092967, 49.1194415], [9.2093785, 49.1194336], [9.2096588, 49.1194329], [9.2097205, 49.1194327], [9.2097554, 49.1194240], [9.2097795, 49.1194090], [9.2097903, 49.1193818], [9.2097931, 49.1191879], [9.2097968, 49.1189301], [9.2098002, 49.1186956], [9.2098205, 49.1183649], [9.2098187, 49.1183110]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Fritz-Ulrich-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1880574, 49.1324399], [9.1876760, 49.1321555], [9.1875832, 49.1319940], [9.1875133, 49.1318733], [9.1874592, 49.1316764], [9.1874839, 49.1314066]], [[9.1882166, 49.1325521], [9.1880574, 49.1324399]], [[9.1820932, 49.1350771], [9.1820896, 49.1350198], [9.1821796, 49.1349115], [9.1822815, 49.1348086], [9.1824599, 49.1347286], [9.1827614, 49.1346426], [9.1839776, 49.1344099], [9.1848551, 49.1342454], [9.1862882, 49.1344591], [9.1865212, 49.1344750], [9.1867582, 49.1344681], [9.1871250, 49.1343922], [9.1874158, 49.1343000], [9.1876619, 49.1341620], [9.1877711, 49.1340879], [9.1879559, 49.1338727], [9.1880386, 49.1337397], [9.1880707, 49.1336580], [9.1881257, 49.1334956], [9.1882237, 49.1334274], [9.1885220, 49.1333787], [9.1886234, 49.1333426], [9.1886641, 49.1332873], [9.1886748, 49.1332273], [9.1886338, 49.1331582], [9.1885439, 49.1329719], [9.1883454, 49.1326677], [9.1882166, 49.1325521]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Frosch" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2542973, 49.1395915], [9.2543272, 49.1395241], [9.2544042, 49.1393713], [9.2544324, 49.1393178], [9.2544767, 49.1392599], [9.2545625, 49.1391660], [9.2547865, 49.1389440], [9.2548955, 49.1388241], [9.2549157, 49.1388031], [9.2549853, 49.1387219], [9.2550423, 49.1386554], [9.2550713, 49.1386194], [9.2550855, 49.1386018], [9.2551740, 49.1384957], [9.2552719, 49.1383640], [9.2553725, 49.1382263], [9.2554811, 49.1380789], [9.2555790, 49.1379334], [9.2556368, 49.1378518]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Fröbelweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1872434, 49.1360662], [9.1874476, 49.1356543], [9.1883782, 49.1358090]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Fruchtschuppenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2108418, 49.1469121], [9.2107309, 49.1468726], [9.2106190, 49.1468525], [9.2104630, 49.1468495], [9.2101460, 49.1468692], [9.2099494, 49.1468526], [9.2083606, 49.1463586], [9.2083296, 49.1463492], [9.2069366, 49.1459313]], [[9.2042804, 49.1439135], [9.2042065, 49.1439019], [9.2041402, 49.1438945]], [[9.2069366, 49.1459313], [9.2065333, 49.1457950], [9.2059150, 49.1456717], [9.2058317, 49.1456283], [9.2057283, 49.1455066], [9.2050574, 49.1444888], [9.2049833, 49.1443733], [9.2046874, 49.1439672], [9.2045350, 49.1439367], [9.2042804, 49.1439135]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Frundsbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1706154, 49.1381683], [9.1710159, 49.1382349], [9.1714302, 49.1382785], [9.1718170, 49.1383161], [9.1722069, 49.1383410], [9.1738022, 49.1384127], [9.1759187, 49.1385351], [9.1791866, 49.1387086]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Fuchsweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1511533, 49.1972111], [9.1511206, 49.1968921], [9.1511042, 49.1967316], [9.1510855, 49.1966892], [9.1510425, 49.1966478], [9.1509944, 49.1966288]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Fügerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2114963, 49.1509613], [9.2113705, 49.1509903], [9.2108808, 49.1511094]], [[9.2126453, 49.1506143], [9.2125251, 49.1506824], [9.2121845, 49.1507816], [9.2121431, 49.1508017], [9.2119616, 49.1508901], [9.2119040, 49.1509657], [9.2118701, 49.1510495], [9.2118504, 49.1512591]], [[9.2130479, 49.1505053], [9.2128907, 49.1505488], [9.2128230, 49.1505672]], [[9.2115994, 49.1509986], [9.2115636, 49.1509924], [9.2115334, 49.1509824], [9.2114963, 49.1509613], [9.2114700, 49.1509337], [9.2114571, 49.1508780], [9.2114718, 49.1508437], [9.2115083, 49.1508105], [9.2115622, 49.1507880], [9.2116084, 49.1507808], [9.2116679, 49.1507842], [9.2117322, 49.1508063], [9.2117755, 49.1508431], [9.2117906, 49.1508781], [9.2117890, 49.1509090], [9.2117615, 49.1509527], [9.2116909, 49.1509906], [9.2115994, 49.1509986]], [[9.2148596, 49.1500332], [9.2147060, 49.1500741], [9.2140182, 49.1502540], [9.2138192, 49.1503035], [9.2136605, 49.1503446], [9.2133126, 49.1504343], [9.2131353, 49.1504805], [9.2130479, 49.1505053]], [[9.2075153, 49.1513931], [9.2076034, 49.1513890], [9.2076953, 49.1513323]], [[9.2080167, 49.1510584], [9.2080414, 49.1511178], [9.2080634, 49.1511626], [9.2080942, 49.1511922]], [[9.2078993, 49.1512529], [9.2080344, 49.1512528], [9.2081345, 49.1512570], [9.2082778, 49.1512580]], [[9.2126453, 49.1506143], [9.2122066, 49.1507305]], [[9.2122066, 49.1507305], [9.2121116, 49.1507556], [9.2118811, 49.1508166], [9.2117755, 49.1508431]], [[9.2082778, 49.1512580], [9.2083758, 49.1512564], [9.2098148, 49.1511833]], [[9.2076953, 49.1513323], [9.2077964, 49.1512703], [9.2078993, 49.1512529]], [[9.2080045, 49.1513260], [9.2078844, 49.1513434], [9.2077743, 49.1513668]], [[9.2080942, 49.1511922], [9.2081239, 49.1512117], [9.2081943, 49.1512422], [9.2082778, 49.1512580]], [[9.2128230, 49.1505672], [9.2126453, 49.1506143]], [[9.2081798, 49.1513133], [9.2080578, 49.1513217], [9.2080045, 49.1513260]], [[9.2098240, 49.1512244], [9.2089979, 49.1512580], [9.2082803, 49.1513060], [9.2081798, 49.1513133]], [[9.2108808, 49.1511094], [9.2107563, 49.1511343], [9.2105409, 49.1511648], [9.2103241, 49.1511905], [9.2098240, 49.1512244]], [[9.2098148, 49.1511833], [9.2103056, 49.1511463], [9.2105072, 49.1511241], [9.2107064, 49.1510943], [9.2108961, 49.1510555], [9.2111472, 49.1509882], [9.2113258, 49.1509277], [9.2114571, 49.1508780]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Fürfelder Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1946284, 49.1441264], [9.1944331, 49.1436756], [9.1941524, 49.1430152]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Gabelsbergerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2269531, 49.1340062], [9.2267393, 49.1339490], [9.2267019, 49.1339329], [9.2266823, 49.1339173]], [[9.2266823, 49.1339173], [9.2266699, 49.1338328], [9.2266164, 49.1333598], [9.2265857, 49.1330890], [9.2265739, 49.1330610]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Gaffenberg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2477653, 49.1247495], [9.2473889, 49.1249134], [9.2470575, 49.1250787], [9.2467849, 49.1251538], [9.2462099, 49.1255582], [9.2460243, 49.1257017]], [[9.2472984, 49.1237451], [9.2472721, 49.1239626], [9.2468344, 49.1241479], [9.2460190, 49.1252825], [9.2460925, 49.1256095], [9.2466799, 49.1251533], [9.2470232, 49.1250579], [9.2479895, 49.1245461], [9.2480708, 49.1245446], [9.2480972, 49.1246395], [9.2484577, 49.1249597], [9.2486894, 49.1247799], [9.2490070, 49.1242183], [9.2487838, 49.1241452], [9.2487484, 49.1240581], [9.2490402, 49.1237323], [9.2492235, 49.1234589], [9.2490574, 49.1232436], [9.2486454, 49.1230414], [9.2477700, 49.1229852], [9.2474438, 49.1231032], [9.2472378, 49.1232548], [9.2472378, 49.1232717], [9.2472443, 49.1232884], [9.2472464, 49.1233559], [9.2472694, 49.1235233], [9.2472984, 49.1237451]], [[9.2459313, 49.1252644], [9.2458100, 49.1249633], [9.2457407, 49.1248319], [9.2456656, 49.1247319], [9.2455825, 49.1246599], [9.2454618, 49.1246020], [9.2452553, 49.1245142], [9.2451560, 49.1244703], [9.2450809, 49.1244247], [9.2450326, 49.1243773], [9.2450139, 49.1243422], [9.2450058, 49.1243053], [9.2450058, 49.1242299], [9.2450326, 49.1241281], [9.2450916, 49.1240526], [9.2451292, 49.1240245], [9.2451936, 49.1239999], [9.2452606, 49.1239859], [9.2456093, 49.1239402], [9.2460975, 49.1239016], [9.2463174, 49.1238911], [9.2464971, 49.1238595], [9.2467358, 49.1238068], [9.2469745, 49.1237156], [9.2470792, 49.1236436], [9.2471511, 49.1235461]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Gartachgaustraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1132410, 49.1778243], [9.1133745, 49.1779650], [9.1135422, 49.1780660], [9.1138036, 49.1781970]], [[9.1155566, 49.1795682], [9.1156941, 49.1798616], [9.1157482, 49.1800553], [9.1157510, 49.1801466], [9.1157336, 49.1802354], [9.1156619, 49.1804267], [9.1153393, 49.1808229], [9.1151613, 49.1810414], [9.1151559, 49.1811345], [9.1152295, 49.1812569]], [[9.1138036, 49.1781970], [9.1142159, 49.1783597], [9.1146907, 49.1785540], [9.1149141, 49.1786994], [9.1150923, 49.1788884], [9.1152390, 49.1790623], [9.1154380, 49.1793615], [9.1155566, 49.1795682]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Gartenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2253346, 49.1460644], [9.2253485, 49.1461597]], [[9.2253346, 49.1460644], [9.2252755, 49.1456802], [9.2252664, 49.1456200], [9.2252312, 49.1453878], [9.2252260, 49.1453565], [9.2252051, 49.1452518], [9.2251743, 49.1450916], [9.2250253, 49.1441605]], [[9.2258839, 49.1494523], [9.2259938, 49.1500917], [9.2260426, 49.1503898], [9.2260683, 49.1505468], [9.2260871, 49.1506212]], [[9.2250253, 49.1441605], [9.2249402, 49.1436306], [9.2249034, 49.1433954], [9.2248471, 49.1430564], [9.2248462, 49.1430156]], [[9.2259938, 49.1500917], [9.2256393, 49.1501226], [9.2255708, 49.1501460], [9.2254985, 49.1501605], [9.2254473, 49.1501693], [9.2252167, 49.1502091]], [[9.2248462, 49.1430156], [9.2248424, 49.1429849], [9.2248233, 49.1428320], [9.2248106, 49.1427300], [9.2247881, 49.1425489]], [[9.2253485, 49.1461597], [9.2254350, 49.1466458], [9.2255212, 49.1471208], [9.2255341, 49.1472080], [9.2255690, 49.1474440], [9.2256182, 49.1478085], [9.2256731, 49.1481397], [9.2256855, 49.1482171], [9.2258839, 49.1494523]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Gaswerkstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2188830, 49.1502090], [9.2194874, 49.1507235], [9.2197173, 49.1509910], [9.2198911, 49.1512705], [9.2199376, 49.1513708], [9.2199721, 49.1514452], [9.2200259, 49.1517132]], [[9.2165653, 49.1481808], [9.2167034, 49.1482489], [9.2172533, 49.1487129], [9.2179579, 49.1493144], [9.2188830, 49.1502090]], [[9.2200259, 49.1517132], [9.2199646, 49.1520228], [9.2199115, 49.1521995]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Gänsäckerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2004217, 49.1249491], [9.1997888, 49.1245934], [9.1991832, 49.1242777], [9.1985677, 49.1239746], [9.1980981, 49.1237284], [9.1979534, 49.1236496], [9.1970948, 49.1231795], [9.1966467, 49.1229386], [9.1964055, 49.1228176], [9.1962710, 49.1227024], [9.1961872, 49.1225897]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "18", + "name": "Gebwinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2022894, 49.1679547], [9.2023851, 49.1682831]], [[9.2012796, 49.1681770], [9.2016744, 49.1680793], [9.2019570, 49.1680115], [9.2022894, 49.1679547], [9.2029686, 49.1678671]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Geibelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2138045, 49.1254261], [9.2138332, 49.1253921], [9.2138720, 49.1253462], [9.2139847, 49.1252821], [9.2141242, 49.1252259], [9.2142626, 49.1251744], [9.2147702, 49.1250142], [9.2149583, 49.1249547], [9.2152760, 49.1248633], [9.2155819, 49.1247722], [9.2158107, 49.1247124], [9.2161036, 49.1246239], [9.2162082, 49.1245853], [9.2162739, 49.1245542], [9.2163611, 49.1244984], [9.2164754, 49.1244096]], [[9.2160161, 49.1239259], [9.2160795, 49.1240296], [9.2162393, 49.1244556], [9.2162739, 49.1245542]], [[9.2164754, 49.1244096], [9.2165926, 49.1243689], [9.2166272, 49.1243523], [9.2166478, 49.1243295], [9.2166587, 49.1242763], [9.2166656, 49.1242412], [9.2166733, 49.1241465], [9.2166750, 49.1241060], [9.2166683, 49.1240578], [9.2166643, 49.1240323], [9.2167367, 49.1240244]], [[9.2158107, 49.1247124], [9.2155459, 49.1240867]], [[9.2152760, 49.1248633], [9.2150880, 49.1242244]], [[9.2147702, 49.1250142], [9.2145837, 49.1243540]], [[9.2140672, 49.1244685], [9.2142626, 49.1251744]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Gellertstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2085415, 49.1256658], [9.2085839, 49.1257424], [9.2086673, 49.1258938], [9.2087223, 49.1260057], [9.2088065, 49.1261648], [9.2088920, 49.1263017], [9.2089612, 49.1264122], [9.2090194, 49.1264934], [9.2090623, 49.1265532], [9.2091254, 49.1266195], [9.2092133, 49.1267065], [9.2093190, 49.1267916], [9.2093592, 49.1268276], [9.2094599, 49.1269180], [9.2095269, 49.1269803], [9.2095966, 49.1270452], [9.2097603, 49.1271839], [9.2099601, 49.1273541], [9.2100151, 49.1274042], [9.2101170, 49.1274805], [9.2101599, 49.1275147], [9.2101867, 49.1275446], [9.2102024, 49.1275715], [9.2102182, 49.1276139]], [[9.2104658, 49.1276196], [9.2104750, 49.1276543], [9.2104938, 49.1276824], [9.2105273, 49.1277175], [9.2106722, 49.1278421], [9.2107902, 49.1279351], [9.2108653, 49.1279878], [9.2109404, 49.1280325], [9.2110235, 49.1280738], [9.2111268, 49.1281238], [9.2112475, 49.1281756], [9.2113964, 49.1282273], [9.2115640, 49.1282861], [9.2120066, 49.1284288], [9.2120652, 49.1284543], [9.2122207, 49.1285377], [9.2122993, 49.1285747], [9.2123083, 49.1285792], [9.2127616, 49.1287188], [9.2132323, 49.1288697], [9.2136146, 49.1289961], [9.2139579, 49.1291154], [9.2141081, 49.1291698], [9.2142797, 49.1292392], [9.2144045, 49.1293059], [9.2144635, 49.1293357], [9.2144863, 49.1293427], [9.2145064, 49.1293462], [9.2145528, 49.1293507]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Gemmingergasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2207161, 49.1434753], [9.2203250, 49.1435082], [9.2202749, 49.1435116]], [[9.2202749, 49.1435116], [9.2202007, 49.1435182], [9.2198119, 49.1435483], [9.2194641, 49.1435848], [9.2191106, 49.1436248]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Georg-Vogel-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2000999, 49.1503439], [9.2001843, 49.1503348], [9.2003184, 49.1503459], [9.2003890, 49.1504041]], [[9.1998994, 49.1457967], [9.2000440, 49.1457896], [9.2003416, 49.1457743]], [[9.2004369, 49.1475133], [9.2004234, 49.1469064], [9.2004009, 49.1465281], [9.2003460, 49.1458637], [9.2003416, 49.1457743]], [[9.2003416, 49.1457743], [9.2008726, 49.1457585], [9.2009814, 49.1457414], [9.2010799, 49.1456938], [9.2011204, 49.1456531], [9.2011440, 49.1455951], [9.2011076, 49.1453942], [9.2010161, 49.1448602], [9.2010070, 49.1448217]], [[9.1999774, 49.1486983], [9.2000556, 49.1487031]], [[9.2003629, 49.1489065], [9.2003180, 49.1488496], [9.2002439, 49.1488252], [9.2001569, 49.1488307], [9.2000388, 49.1488850]], [[9.2010070, 49.1448217], [9.2008382, 49.1440544]], [[9.2015845, 49.1518206], [9.2019315, 49.1518328], [9.2022536, 49.1518352], [9.2023457, 49.1518720]], [[9.2003890, 49.1504041], [9.2004367, 49.1506036], [9.2006592, 49.1514383], [9.2007327, 49.1516204], [9.2008999, 49.1517384], [9.2011548, 49.1517958], [9.2015845, 49.1518206]], [[9.2003890, 49.1504041], [9.2003626, 49.1500841], [9.2003553, 49.1497946], [9.2003485, 49.1496547], [9.2003478, 49.1495860], [9.2003445, 49.1493223], [9.2003477, 49.1492125], [9.2003524, 49.1490386], [9.2003564, 49.1489894], [9.2003629, 49.1489065]], [[9.2000556, 49.1487031], [9.2001661, 49.1487060], [9.2002955, 49.1487428], [9.2003612, 49.1488089], [9.2003629, 49.1489065]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Geranienweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1232017, 49.1837132], [9.1226906, 49.1840085]], [[9.1232944, 49.1838164], [9.1239354, 49.1835844]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Gerberstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2175909, 49.1434265], [9.2175077, 49.1433489], [9.2174058, 49.1431845], [9.2172827, 49.1429890], [9.2172321, 49.1429203], [9.2171607, 49.1428165], [9.2170723, 49.1426966], [9.2170286, 49.1426142], [9.2169989, 49.1425368], [9.2169701, 49.1424242], [9.2169553, 49.1423420], [9.2169508, 49.1422493], [9.2169493, 49.1422333]], [[9.2185533, 49.1458502], [9.2185345, 49.1457761], [9.2184872, 49.1454777], [9.2184706, 49.1454163], [9.2183876, 49.1452636], [9.2182942, 49.1451170], [9.2182257, 49.1450009], [9.2181758, 49.1448903], [9.2181120, 49.1447601], [9.2180834, 49.1447021], [9.2180158, 49.1445572], [9.2180020, 49.1445107], [9.2177526, 49.1437566], [9.2176980, 49.1436125], [9.2175909, 49.1434265]], [[9.2185533, 49.1458502], [9.2186216, 49.1461490], [9.2186441, 49.1462480]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Gerhart-Hauptmann-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1439625, 49.1897130], [9.1439028, 49.1897669], [9.1432979, 49.1901425], [9.1430006, 49.1903205], [9.1429196, 49.1903911]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Geschwister-Scholl-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2238077, 49.1451694], [9.2236242, 49.1451680], [9.2234032, 49.1451844], [9.2233390, 49.1451892], [9.2232560, 49.1452005]], [[9.2251743, 49.1450916], [9.2248333, 49.1451095], [9.2239925, 49.1451610], [9.2238077, 49.1451694]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Gildenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2069519, 49.1290409], [9.2069888, 49.1290248], [9.2070252, 49.1290144], [9.2070836, 49.1290023], [9.2075216, 49.1289210], [9.2081103, 49.1288072], [9.2088217, 49.1286673], [9.2092060, 49.1285890], [9.2092597, 49.1285759], [9.2093030, 49.1285556], [9.2093264, 49.1285297], [9.2093479, 49.1284967], [9.2093894, 49.1284425]], [[9.2054421, 49.1293894], [9.2054742, 49.1293832], [9.2055128, 49.1293739], [9.2056589, 49.1293568], [9.2062125, 49.1292687], [9.2068351, 49.1291711], [9.2069353, 49.1291542], [9.2070020, 49.1291403], [9.2070517, 49.1291274]], [[9.2049315, 49.1296389], [9.2054421, 49.1293894]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Glockengießerhof" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2220920, 49.1434504], [9.2218324, 49.1434794]], [[9.2218736, 49.1438276], [9.2218457, 49.1435918], [9.2218324, 49.1434794]], [[9.2218324, 49.1434794], [9.2216207, 49.1434934], [9.2215768, 49.1432620]], [[9.2216207, 49.1434934], [9.2213582, 49.1435235]], [[9.2218457, 49.1435918], [9.2222045, 49.1435772]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Glockenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1874920, 49.1313075], [9.1874839, 49.1314066]], [[9.1875671, 49.1301324], [9.1875539, 49.1289837], [9.1875525, 49.1289457], [9.1875513, 49.1286480], [9.1875987, 49.1283292], [9.1876862, 49.1278032]], [[9.1874920, 49.1313075], [9.1875269, 49.1308791], [9.1875513, 49.1304731]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Gmelichstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1721478, 49.1170865], [9.1715414, 49.1169729]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Goerdelerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1762253, 49.1460016], [9.1762341, 49.1463661], [9.1762429, 49.1466060], [9.1762460, 49.1469492], [9.1762477, 49.1470002], [9.1762529, 49.1471030], [9.1762608, 49.1472767], [9.1762736, 49.1475369], [9.1762776, 49.1480883], [9.1762776, 49.1481076], [9.1762685, 49.1482392], [9.1762563, 49.1484150], [9.1762231, 49.1486738], [9.1761881, 49.1489164], [9.1761544, 49.1491503], [9.1761488, 49.1491827], [9.1761737, 49.1492398], [9.1762556, 49.1492726], [9.1763174, 49.1492699]], [[9.1762460, 49.1469492], [9.1775436, 49.1469314]], [[9.1762776, 49.1481076], [9.1775710, 49.1480941]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Goethestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2316651, 49.1399973], [9.2316513, 49.1404970], [9.2316485, 49.1406003], [9.2316442, 49.1407596], [9.2316272, 49.1410720], [9.2316343, 49.1411268], [9.2316460, 49.1411724], [9.2316485, 49.1412002], [9.2316202, 49.1412578], [9.2316178, 49.1413110], [9.2315792, 49.1423882], [9.2315691, 49.1425430]], [[9.2315691, 49.1425430], [9.2315749, 49.1426336], [9.2316360, 49.1429932], [9.2317222, 49.1435103], [9.2317503, 49.1436789], [9.2317733, 49.1438237], [9.2318379, 49.1442316], [9.2318414, 49.1442536], [9.2318685, 49.1444298], [9.2319674, 49.1450730], [9.2320226, 49.1453922], [9.2321242, 49.1458934], [9.2321431, 49.1459804]], [[9.2321431, 49.1459804], [9.2321546, 49.1460520], [9.2323408, 49.1473225], [9.2323494, 49.1473449], [9.2323604, 49.1473734], [9.2324041, 49.1474188], [9.2324759, 49.1474734], [9.2325427, 49.1475185]], [[9.2319569, 49.1429395], [9.2319582, 49.1429553], [9.2319492, 49.1429660], [9.2319234, 49.1429763], [9.2318912, 49.1429798], [9.2316360, 49.1429932]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Goppeltstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2176521, 49.1547721], [9.2177283, 49.1547567], [9.2177610, 49.1547501], [9.2177984, 49.1547425], [9.2195109, 49.1543961], [9.2197374, 49.1543531], [9.2201316, 49.1542707], [9.2203515, 49.1542264], [9.2204001, 49.1542171], [9.2212238, 49.1540587], [9.2213286, 49.1540385]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Gotenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1863791, 49.1173508], [9.1851550, 49.1172773], [9.1838864, 49.1172072]], [[9.1863619, 49.1174612], [9.1868631, 49.1175032], [9.1872971, 49.1175994]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Gottfried-Keller-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2271054, 49.1538421], [9.2262438, 49.1540143], [9.2256837, 49.1541253], [9.2255728, 49.1541608], [9.2254857, 49.1542030], [9.2254043, 49.1542548], [9.2252449, 49.1543803]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Gotthold-Stettner-Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2289121, 49.1529079], [9.2285773, 49.1522705]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Gottlieb-Daimler-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2118504, 49.1512591], [9.2116849, 49.1511578], [9.2116000, 49.1511081], [9.2114946, 49.1510827]], [[9.2156671, 49.1582718], [9.2155019, 49.1582167], [9.2153361, 49.1580944], [9.2150433, 49.1578783], [9.2148817, 49.1577300], [9.2148045, 49.1576029], [9.2146550, 49.1573567], [9.2145283, 49.1570283], [9.2144567, 49.1566817], [9.2144249, 49.1556473], [9.2144167, 49.1554195], [9.2143829, 49.1553009], [9.2142825, 49.1551255], [9.2139789, 49.1546025], [9.2130401, 49.1531524], [9.2123501, 49.1520494], [9.2121252, 49.1516840], [9.2120933, 49.1516234], [9.2118607, 49.1512746], [9.2118504, 49.1512591]], [[9.2118504, 49.1512591], [9.2117354, 49.1510641], [9.2116909, 49.1509906]], [[9.2114946, 49.1510827], [9.2113722, 49.1510653], [9.2112132, 49.1510670], [9.2110591, 49.1510870], [9.2108808, 49.1511094]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Görresstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1886901, 49.1196345], [9.1887899, 49.1192373]], [[9.1894077, 49.1188935], [9.1892028, 49.1186175]], [[9.1887899, 49.1192373], [9.1887210, 49.1190145], [9.1888386, 49.1188634], [9.1889421, 49.1187446], [9.1890454, 49.1186850], [9.1892028, 49.1186175]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Götzenturmstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2178971, 49.1389860], [9.2179006, 49.1390439], [9.2178924, 49.1391904], [9.2179666, 49.1392031]], [[9.2178924, 49.1391904], [9.2174485, 49.1391471], [9.2169311, 49.1391141], [9.2166611, 49.1390962], [9.2164612, 49.1390734], [9.2160708, 49.1390530], [9.2159309, 49.1390761], [9.2157792, 49.1391867], [9.2154733, 49.1394229], [9.2151042, 49.1397047]], [[9.2179666, 49.1392031], [9.2183313, 49.1392610], [9.2185553, 49.1392989], [9.2187069, 49.1393222]], [[9.2190792, 49.1393899], [9.2187723, 49.1393333], [9.2187069, 49.1393222]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Grillparzerweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2245381, 49.1295295], [9.2251228, 49.1304879], [9.2251903, 49.1306014], [9.2251713, 49.1306410], [9.2250701, 49.1306661], [9.2245744, 49.1307678]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Grimmelshausenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2126245, 49.1269468], [9.2129525, 49.1268222], [9.2131344, 49.1267587], [9.2132983, 49.1267023], [9.2134367, 49.1266590], [9.2135871, 49.1266213], [9.2137907, 49.1265764], [9.2140282, 49.1265311], [9.2145572, 49.1264314], [9.2147478, 49.1263979], [9.2147920, 49.1263952], [9.2148385, 49.1263963], [9.2148702, 49.1263992], [9.2149014, 49.1264055], [9.2149264, 49.1264171], [9.2150355, 49.1263963], [9.2152378, 49.1263482], [9.2153893, 49.1263082], [9.2155403, 49.1262602], [9.2156765, 49.1262141], [9.2158078, 49.1261674], [9.2159205, 49.1261171]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Grimmstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2251628, 49.1560636], [9.2257201, 49.1571124], [9.2257874, 49.1570997], [9.2258649, 49.1572963]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Große Bahngasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2178336, 49.1396549], [9.2178844, 49.1396600], [9.2183317, 49.1397053], [9.2188697, 49.1397598]], [[9.2164037, 49.1395264], [9.2168691, 49.1395677], [9.2173404, 49.1396103], [9.2178336, 49.1396549]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Großgartacher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1912667, 49.1411265], [9.1914657, 49.1411268], [9.1920225, 49.1411287], [9.1927967, 49.1411267], [9.1929583, 49.1411450], [9.1931033, 49.1411833], [9.1932350, 49.1412417], [9.1933882, 49.1413364], [9.1936962, 49.1415976], [9.1938305, 49.1417420]], [[9.1710317, 49.1397942], [9.1713490, 49.1397834]], [[9.1730335, 49.1397533], [9.1736317, 49.1397865], [9.1742665, 49.1398449], [9.1746062, 49.1398691], [9.1753921, 49.1399651], [9.1756663, 49.1399900], [9.1759437, 49.1400154], [9.1760648, 49.1400292], [9.1761637, 49.1400404], [9.1767347, 49.1400956]], [[9.1937675, 49.1411657], [9.1938476, 49.1411538], [9.1939402, 49.1411469], [9.1951686, 49.1411411], [9.1959368, 49.1411318], [9.1961240, 49.1411435], [9.1962971, 49.1411744], [9.1964401, 49.1412282]], [[9.1981281, 49.1411299], [9.1981443, 49.1410890], [9.1982049, 49.1410711], [9.1982496, 49.1410816], [9.1982748, 49.1411050], [9.1982702, 49.1411437], [9.1982398, 49.1411642], [9.1981871, 49.1411694], [9.1981430, 49.1411514], [9.1981281, 49.1411299]], [[9.1879317, 49.1411654], [9.1877688, 49.1417224]], [[9.1881727, 49.1411631], [9.1879316, 49.1419370]], [[9.1767347, 49.1400956], [9.1767825, 49.1401002], [9.1775455, 49.1401815], [9.1781789, 49.1402486], [9.1788112, 49.1403156], [9.1788879, 49.1403237], [9.1800656, 49.1404379], [9.1806165, 49.1404921], [9.1808582, 49.1405148], [9.1812263, 49.1405505], [9.1813496, 49.1405625], [9.1818842, 49.1406180], [9.1819936, 49.1406293], [9.1821205, 49.1406417], [9.1823819, 49.1406644], [9.1829004, 49.1407183], [9.1835347, 49.1407879], [9.1846135, 49.1409014]], [[9.1875346, 49.1411714], [9.1879317, 49.1411654], [9.1881727, 49.1411631], [9.1887346, 49.1411559], [9.1892378, 49.1411477], [9.1900355, 49.1411276], [9.1906174, 49.1411233]], [[9.1846135, 49.1409014], [9.1851079, 49.1409577]], [[9.1966673, 49.1414291], [9.1967510, 49.1415211], [9.1968366, 49.1416093], [9.1968933, 49.1416592], [9.1970164, 49.1416976], [9.1971503, 49.1417243]], [[9.1964401, 49.1412282], [9.1965655, 49.1411875]], [[9.1678713, 49.1399273], [9.1696360, 49.1398494], [9.1704813, 49.1398186]], [[9.1911950, 49.1411259], [9.1912667, 49.1411265]], [[9.1938305, 49.1417420], [9.1941595, 49.1420757]], [[9.1704813, 49.1398186], [9.1710317, 49.1397942]], [[9.1713490, 49.1397834], [9.1721100, 49.1397600], [9.1730335, 49.1397533]], [[9.1851079, 49.1409577], [9.1867077, 49.1411232], [9.1870063, 49.1411603], [9.1871502, 49.1411703], [9.1872983, 49.1411742], [9.1875346, 49.1411714]], [[9.1906174, 49.1411233], [9.1909790, 49.1411252], [9.1911950, 49.1411259]], [[9.1965655, 49.1411875], [9.1966958, 49.1411456], [9.1970933, 49.1411288], [9.1972184, 49.1411312], [9.1975987, 49.1411366], [9.1979758, 49.1411322], [9.1981281, 49.1411299]], [[9.1964401, 49.1412282], [9.1964675, 49.1412474], [9.1966106, 49.1413520], [9.1966673, 49.1414291], [9.1967004, 49.1415470], [9.1967109, 49.1416950], [9.1967046, 49.1418238]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Gröberstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2361836, 49.1469936], [9.2351841, 49.1476353]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Grundäckerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1856177, 49.1843584], [9.1855202, 49.1842057], [9.1854923, 49.1841675], [9.1847391, 49.1831362]], [[9.1847391, 49.1831362], [9.1846949, 49.1830801], [9.1834231, 49.1815828], [9.1833594, 49.1815114], [9.1828997, 49.1809958], [9.1825151, 49.1803228], [9.1824290, 49.1800757], [9.1823476, 49.1797821], [9.1822592, 49.1793557], [9.1822445, 49.1792694], [9.1821651, 49.1791732], [9.1820131, 49.1791235]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Gruppenbacher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2258067, 49.1255718], [9.2258373, 49.1257215], [9.2258625, 49.1257841], [9.2259074, 49.1258110], [9.2259597, 49.1258145], [9.2263719, 49.1258113]], [[9.2262616, 49.1264830], [9.2266817, 49.1266073]], [[9.2260799, 49.1267239], [9.2265211, 49.1268411], [9.2265865, 49.1268327]], [[9.2258971, 49.1274171], [9.2255243, 49.1274827], [9.2253969, 49.1275051]], [[9.2263736, 49.1262652], [9.2267892, 49.1263167], [9.2268720, 49.1263081]], [[9.2263751, 49.1260024], [9.2268762, 49.1260047], [9.2269291, 49.1260215]], [[9.2261525, 49.1271242], [9.2261069, 49.1271190], [9.2260613, 49.1271207], [9.2258307, 49.1271558]], [[9.2270254, 49.1269957], [9.2271450, 49.1272901], [9.2271617, 49.1273578]], [[9.2254102, 49.1256176], [9.2256619, 49.1255779], [9.2258067, 49.1255718], [9.2259005, 49.1255735], [9.2260601, 49.1255840]], [[9.2273377, 49.1277773], [9.2273170, 49.1277112], [9.2271617, 49.1273578], [9.2270618, 49.1273436], [9.2270055, 49.1273471], [9.2263403, 49.1274682], [9.2263001, 49.1274665], [9.2262652, 49.1274577], [9.2261257, 49.1274805], [9.2260372, 49.1274910], [9.2259809, 49.1274823], [9.2259299, 49.1274577], [9.2258971, 49.1274171], [9.2258441, 49.1272383], [9.2258307, 49.1271558], [9.2258361, 49.1271137], [9.2258581, 49.1270673], [9.2260799, 49.1267239], [9.2262616, 49.1264830], [9.2263317, 49.1263709], [9.2263736, 49.1262652], [9.2263787, 49.1260764], [9.2263751, 49.1260024], [9.2263719, 49.1258113], [9.2263937, 49.1257632], [9.2264597, 49.1256884], [9.2266442, 49.1255440]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Grünewaldstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1915538, 49.1423836], [9.1915234, 49.1422406], [9.1913649, 49.1416913], [9.1913011, 49.1415129], [9.1912525, 49.1413386]], [[9.1923760, 49.1457966], [9.1927836, 49.1457448]], [[9.1918607, 49.1436857], [9.1918160, 49.1436711], [9.1917954, 49.1436499], [9.1917915, 49.1436265], [9.1918092, 49.1435987], [9.1918453, 49.1435818], [9.1918987, 49.1435812], [9.1919330, 49.1435952], [9.1919528, 49.1436181]], [[9.1918607, 49.1436857], [9.1918351, 49.1438242], [9.1918298, 49.1438749]], [[9.1915538, 49.1423836], [9.1915942, 49.1425523], [9.1916449, 49.1427767], [9.1917343, 49.1432524], [9.1917619, 49.1433457], [9.1918453, 49.1435818]], [[9.1918585, 49.1456406], [9.1921510, 49.1456408], [9.1922559, 49.1456721], [9.1922897, 49.1457334], [9.1923072, 49.1457802]], [[9.1918298, 49.1438749], [9.1918554, 49.1449569], [9.1918564, 49.1451682], [9.1918568, 49.1452583], [9.1918585, 49.1456406], [9.1917971, 49.1465437]], [[9.1927836, 49.1457448], [9.1927287, 49.1455347], [9.1926630, 49.1453107], [9.1925979, 49.1450883], [9.1925323, 49.1448645], [9.1918554, 49.1449569]], [[9.1912525, 49.1413386], [9.1912274, 49.1412531], [9.1911950, 49.1411259]], [[9.1912667, 49.1411265], [9.1912525, 49.1413386]], [[9.1913011, 49.1415129], [9.1912173, 49.1413608], [9.1911711, 49.1412814], [9.1910426, 49.1411945], [9.1909502, 49.1411643], [9.1906174, 49.1411233]], [[9.1919528, 49.1436181], [9.1919551, 49.1436395], [9.1919430, 49.1436613], [9.1919017, 49.1436831], [9.1918607, 49.1436857]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Guido-Hauck-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2349379, 49.1461636], [9.2348523, 49.1462427]], [[9.2326843, 49.1481139], [9.2323549, 49.1484220], [9.2322090, 49.1485332]], [[9.2322090, 49.1485332], [9.2316236, 49.1489182], [9.2313622, 49.1491094], [9.2313270, 49.1491811], [9.2313274, 49.1492322], [9.2313699, 49.1492728], [9.2315232, 49.1494130]], [[9.2364522, 49.1448419], [9.2364216, 49.1448885], [9.2363665, 49.1449552], [9.2361688, 49.1451291], [9.2353613, 49.1457973], [9.2351749, 49.1459467], [9.2349379, 49.1461636]], [[9.2348523, 49.1462427], [9.2348177, 49.1462748], [9.2339761, 49.1470247], [9.2330124, 49.1478692], [9.2327434, 49.1480685], [9.2326843, 49.1481139]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Gundelsheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2325370, 49.1543015], [9.2335768, 49.1540271], [9.2344384, 49.1538133], [9.2347595, 49.1537729], [9.2349929, 49.1537294], [9.2353831, 49.1536312]], [[9.2302430, 49.1541410], [9.2306308, 49.1543915], [9.2308090, 49.1544912], [9.2309327, 49.1545317], [9.2310432, 49.1545346], [9.2312001, 49.1545216], [9.2316775, 49.1544377], [9.2325370, 49.1543015]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Gustav-Binder-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2209338, 49.1426819], [9.2210068, 49.1426711], [9.2212556, 49.1426438], [9.2218093, 49.1425879], [9.2218926, 49.1425777], [9.2222275, 49.1425473], [9.2222657, 49.1425418]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Gustav-Lohmiller-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1129302, 49.1851911], [9.1129950, 49.1854773], [9.1129811, 49.1855371], [9.1129124, 49.1855741], [9.1121141, 49.1858173], [9.1111929, 49.1861218], [9.1106044, 49.1863441], [9.1107702, 49.1867853]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Gutbrodweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2452698, 49.1351156], [9.2445789, 49.1353186], [9.2445593, 49.1353631], [9.2446233, 49.1356457], [9.2449771, 49.1365984]], [[9.2449771, 49.1365984], [9.2457869, 49.1364339]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Gutenbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2304131, 49.1321751], [9.2304089, 49.1322553], [9.2304171, 49.1322942], [9.2304458, 49.1323780], [9.2306312, 49.1328971], [9.2310055, 49.1344517], [9.2311820, 49.1358376], [9.2311849, 49.1358604], [9.2311896, 49.1358882], [9.2313143, 49.1371026], [9.2314019, 49.1377375], [9.2315140, 49.1386055]], [[9.2303362, 49.1318714], [9.2303964, 49.1320719], [9.2304131, 49.1321751]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Güglinger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1830292, 49.1441002], [9.1833460, 49.1440874]], [[9.1840841, 49.1441013], [9.1842175, 49.1440992], [9.1851137, 49.1440907], [9.1852375, 49.1441541], [9.1858290, 49.1440843]], [[9.1863243, 49.1443522], [9.1859640, 49.1443997], [9.1851843, 49.1444979], [9.1851054, 49.1445079], [9.1846677, 49.1445679], [9.1845686, 49.1445829], [9.1840820, 49.1446394], [9.1839549, 49.1446476], [9.1838214, 49.1446524], [9.1835806, 49.1446568], [9.1835027, 49.1446583], [9.1833925, 49.1446603], [9.1830290, 49.1446669], [9.1824898, 49.1446749]], [[9.1840820, 49.1446394], [9.1840841, 49.1441013]], [[9.1851054, 49.1445079], [9.1851137, 49.1440907]], [[9.1830290, 49.1446669], [9.1830292, 49.1441002]], [[9.1846677, 49.1445679], [9.1846652, 49.1450720], [9.1846642, 49.1451900], [9.1846640, 49.1452156], [9.1846629, 49.1453585], [9.1846622, 49.1454356]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Güldensteinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1963924, 49.1194037], [9.1970316, 49.1193696], [9.1970999, 49.1193660], [9.1973615, 49.1193467], [9.1974902, 49.1193386], [9.1979638, 49.1192953]], [[9.1979638, 49.1192953], [9.1980492, 49.1192875], [9.1982975, 49.1192670], [9.1988407, 49.1192396], [9.1996618, 49.1191958], [9.2000954, 49.1191807], [9.2005402, 49.1191723], [9.2008196, 49.1191688], [9.2009981, 49.1191675]], [[9.2025587, 49.1201207], [9.2030156, 49.1201258], [9.2032724, 49.1201328], [9.2035659, 49.1201511], [9.2041116, 49.1201602], [9.2042080, 49.1201666], [9.2042753, 49.1201807], [9.2043606, 49.1201985], [9.2044580, 49.1202270], [9.2045182, 49.1202557], [9.2046133, 49.1202959], [9.2047192, 49.1203269], [9.2048121, 49.1203426], [9.2050416, 49.1203566], [9.2055314, 49.1203634], [9.2055525, 49.1203637], [9.2056740, 49.1203677], [9.2061173, 49.1203633], [9.2065310, 49.1203650], [9.2066044, 49.1203647]], [[9.2019496, 49.1192924], [9.2020104, 49.1193069], [9.2021023, 49.1193308], [9.2024114, 49.1193860], [9.2024985, 49.1193979], [9.2025923, 49.1194086], [9.2026498, 49.1194113], [9.2027278, 49.1194140], [9.2030084, 49.1194124], [9.2030442, 49.1194113], [9.2035908, 49.1194173], [9.2039917, 49.1194159], [9.2042117, 49.1194156], [9.2045286, 49.1194099], [9.2045939, 49.1194087], [9.2049517, 49.1194029], [9.2050407, 49.1194016], [9.2054101, 49.1193959], [9.2059281, 49.1193895]], [[9.2009981, 49.1191675], [9.2011873, 49.1191669], [9.2013121, 49.1191688], [9.2015060, 49.1191892], [9.2018760, 49.1192688], [9.2019496, 49.1192924]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Güterbahnhofstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2104630, 49.1468495], [9.2103658, 49.1462377], [9.2102816, 49.1460304], [9.2101552, 49.1459184], [9.2099824, 49.1458080], [9.2096904, 49.1456907], [9.2077209, 49.1449754]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Gymnasiumstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2252027, 49.1413978], [9.2250303, 49.1412341]], [[9.2221121, 49.1392337], [9.2220670, 49.1392004], [9.2220334, 49.1391418]], [[9.2241401, 49.1401440], [9.2241659, 49.1401419], [9.2241926, 49.1401446], [9.2242170, 49.1401519], [9.2242417, 49.1401669], [9.2242548, 49.1401823], [9.2242611, 49.1402009], [9.2242590, 49.1402190], [9.2242503, 49.1402345], [9.2242346, 49.1402488], [9.2242121, 49.1402602], [9.2241898, 49.1402661], [9.2241653, 49.1402683], [9.2241478, 49.1402673], [9.2241278, 49.1402635], [9.2240973, 49.1402504], [9.2240786, 49.1402337], [9.2240697, 49.1402166], [9.2240693, 49.1401951], [9.2240835, 49.1401709], [9.2241007, 49.1401578], [9.2241401, 49.1401440]], [[9.2252027, 49.1413978], [9.2252416, 49.1414351], [9.2252736, 49.1414640], [9.2253041, 49.1414952], [9.2253624, 49.1415581], [9.2254617, 49.1416546], [9.2255923, 49.1417814]], [[9.2226803, 49.1394991], [9.2223045, 49.1393212], [9.2221121, 49.1392337]], [[9.2246330, 49.1408189], [9.2244953, 49.1406713]], [[9.2250303, 49.1412341], [9.2246330, 49.1408189]], [[9.2244953, 49.1406713], [9.2244555, 49.1406271], [9.2241987, 49.1403505]], [[9.2255923, 49.1417814], [9.2257119, 49.1418976], [9.2258678, 49.1420468]], [[9.2241987, 49.1403505], [9.2241722, 49.1403198], [9.2241575, 49.1402947], [9.2241478, 49.1402673]], [[9.2258678, 49.1420468], [9.2259310, 49.1421073], [9.2262397, 49.1424327], [9.2262953, 49.1424937]], [[9.2262953, 49.1424937], [9.2265146, 49.1427257], [9.2265425, 49.1427536], [9.2266139, 49.1428250], [9.2266550, 49.1428733]], [[9.2266550, 49.1428733], [9.2266823, 49.1429233], [9.2266960, 49.1429679], [9.2267471, 49.1431849], [9.2268291, 49.1435137], [9.2269290, 49.1439146], [9.2269481, 49.1439551], [9.2269763, 49.1439812]], [[9.2240835, 49.1401709], [9.2239831, 49.1401178], [9.2232824, 49.1397923], [9.2232173, 49.1397621], [9.2227031, 49.1395219], [9.2226803, 49.1394991]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Haagstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1911297, 49.1305115], [9.1911606, 49.1305440], [9.1912124, 49.1305567], [9.1916422, 49.1306031], [9.1918202, 49.1306243], [9.1923439, 49.1306826], [9.1926661, 49.1307166], [9.1938396, 49.1306735], [9.1940748, 49.1306405]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Haberkornstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1937522, 49.1217705], [9.1938277, 49.1217105], [9.1946881, 49.1210267], [9.1953977, 49.1202571], [9.1956433, 49.1200027], [9.1956780, 49.1199682], [9.1957021, 49.1199560], [9.1957401, 49.1199449]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Habichtstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1498136, 49.1933935], [9.1496181, 49.1938768], [9.1494678, 49.1943054], [9.1493718, 49.1945319], [9.1491633, 49.1950428], [9.1491531, 49.1950738], [9.1490129, 49.1956419], [9.1489510, 49.1959196], [9.1489194, 49.1959928], [9.1488710, 49.1960519], [9.1486801, 49.1962300]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Habrechtstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2269232, 49.1308956], [9.2269788, 49.1308986], [9.2273596, 49.1309109], [9.2274294, 49.1309109], [9.2275018, 49.1309065], [9.2275890, 49.1308986], [9.2278760, 49.1308591], [9.2283065, 49.1307968], [9.2287772, 49.1307292], [9.2291741, 49.1306687], [9.2293231, 49.1306449], [9.2294021, 49.1306336], [9.2295912, 49.1306090], [9.2298876, 49.1305687], [9.2301397, 49.1305318], [9.2302309, 49.1305213], [9.2303007, 49.1305169], [9.2303677, 49.1305151], [9.2304522, 49.1305160], [9.2305300, 49.1305248], [9.2306400, 49.1305450], [9.2307555, 49.1305678], [9.2308912, 49.1305910]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Hafenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2085008, 49.1628507], [9.2084204, 49.1627003], [9.2083489, 49.1625536], [9.2082639, 49.1623270], [9.2082026, 49.1620941], [9.2080367, 49.1613950], [9.2078189, 49.1605112]], [[9.2061803, 49.1535715], [9.2060962, 49.1529342], [9.2060892, 49.1524484], [9.2060203, 49.1519616], [9.2059077, 49.1515802], [9.2057137, 49.1512267], [9.2052384, 49.1504080]], [[9.2048724, 49.1493036], [9.2046436, 49.1484077], [9.2044511, 49.1476326], [9.2041331, 49.1463138], [9.2037887, 49.1449015]], [[9.2050551, 49.1499784], [9.2049313, 49.1495345], [9.2048724, 49.1493036]], [[9.2037887, 49.1449015], [9.2037261, 49.1446702], [9.2035063, 49.1437919], [9.2034250, 49.1435875], [9.2033196, 49.1433774], [9.2032063, 49.1431991], [9.2030897, 49.1430276], [9.2029898, 49.1428807], [9.2028018, 49.1425892], [9.2026977, 49.1424279], [9.2026008, 49.1422575], [9.2025816, 49.1421644], [9.2025800, 49.1420467], [9.2025922, 49.1419318], [9.2026435, 49.1418159], [9.2028944, 49.1414586], [9.2032985, 49.1409153]], [[9.2052384, 49.1504080], [9.2050551, 49.1499784]], [[9.2069705, 49.1573730], [9.2069361, 49.1572302], [9.2065228, 49.1555041], [9.2062951, 49.1543159], [9.2062322, 49.1539475], [9.2061803, 49.1535715]], [[9.2078189, 49.1605112], [9.2069705, 49.1573730]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Hahnenäckerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1518796, 49.1946165], [9.1517640, 49.1948788], [9.1513270, 49.1953578], [9.1507995, 49.1959804], [9.1507747, 49.1960134], [9.1502905, 49.1965872], [9.1501150, 49.1967923], [9.1498528, 49.1970988], [9.1493858, 49.1975995], [9.1492879, 49.1977044], [9.1489729, 49.1980430], [9.1489316, 49.1980866], [9.1484044, 49.1986003], [9.1479805, 49.1990157], [9.1478900, 49.1991044], [9.1477418, 49.1992364], [9.1474206, 49.1995218], [9.1472139, 49.1996629], [9.1470877, 49.1996890], [9.1469690, 49.1996697], [9.1468151, 49.1996130], [9.1466507, 49.1995279], [9.1464081, 49.1994768], [9.1462408, 49.1995011], [9.1460496, 49.1995298]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hahnstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1619601, 49.1413211], [9.1620262, 49.1421624], [9.1620360, 49.1423725], [9.1620615, 49.1430752]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Haigernstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1905696, 49.1692115], [9.1906176, 49.1686816], [9.1907534, 49.1681264], [9.1908781, 49.1676063]], [[9.1908781, 49.1676063], [9.1909253, 49.1674269]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Halbmondstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2132813, 49.1413104], [9.2134081, 49.1412695], [9.2138362, 49.1410876], [9.2140006, 49.1410177], [9.2140496, 49.1409934], [9.2141220, 49.1409204]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Haldenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2000391, 49.1653644], [9.2003067, 49.1652702], [9.2004072, 49.1652777], [9.2012144, 49.1655934], [9.2015463, 49.1656790], [9.2014849, 49.1658770]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Haller Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2349379, 49.1461636], [9.2353186, 49.1463872], [9.2361836, 49.1469936], [9.2364339, 49.1471849]], [[9.2364339, 49.1471849], [9.2366218, 49.1474861], [9.2367092, 49.1480232], [9.2367545, 49.1483067]], [[9.2485197, 49.1492100], [9.2482335, 49.1491224], [9.2481025, 49.1490883], [9.2476498, 49.1489937], [9.2471441, 49.1489245], [9.2462502, 49.1488658]], [[9.2462502, 49.1488658], [9.2449892, 49.1487880], [9.2443424, 49.1487791], [9.2431212, 49.1488071], [9.2410310, 49.1488386], [9.2407690, 49.1488256], [9.2407055, 49.1488225], [9.2405790, 49.1488071], [9.2395180, 49.1486634], [9.2376824, 49.1483775]], [[9.2371977, 49.1483120], [9.2367545, 49.1483067]], [[9.2376824, 49.1483775], [9.2371977, 49.1483120]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Handwerkerhof" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2195109, 49.1543961], [9.2193842, 49.1540682], [9.2191608, 49.1534442], [9.2191620, 49.1534199], [9.2191873, 49.1533978], [9.2209408, 49.1531012]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hans-Baldung-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1945274, 49.1417986], [9.1944666, 49.1417953], [9.1941448, 49.1415822], [9.1940941, 49.1415362], [9.1939402, 49.1411469]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hans-Holbein-Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2036222, 49.1279459], [9.2036352, 49.1278982], [9.2036433, 49.1278753], [9.2036634, 49.1278516], [9.2037278, 49.1278122], [9.2042546, 49.1274781]], [[9.2032611, 49.1278095], [9.2033107, 49.1278464], [9.2033456, 49.1278613], [9.2033751, 49.1278762], [9.2034703, 49.1279368], [9.2034971, 49.1279482], [9.2035306, 49.1279517], [9.2036222, 49.1279459]], [[9.2036593, 49.1282373], [9.2035359, 49.1280987], [9.2036222, 49.1279459]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hans-Multscher-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1933882, 49.1413364], [9.1925430, 49.1417470], [9.1918706, 49.1420564], [9.1916088, 49.1421566], [9.1916665, 49.1422143], [9.1917778, 49.1421704], [9.1918771, 49.1422125], [9.1919294, 49.1421897], [9.1919334, 49.1421388], [9.1918706, 49.1420564]], [[9.1933882, 49.1413364], [9.1935587, 49.1412476], [9.1937675, 49.1411657]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hans-Reuter-Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1805525, 49.1516091], [9.1805041, 49.1522318], [9.1805489, 49.1528930], [9.1805820, 49.1530151]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Hans-Rießer-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2199369, 49.1632959], [9.2204633, 49.1635233], [9.2208917, 49.1636900], [9.2221467, 49.1641150], [9.2233133, 49.1644833], [9.2235556, 49.1645827], [9.2238936, 49.1647720], [9.2241106, 49.1649467], [9.2241850, 49.1650067], [9.2243942, 49.1652787], [9.2245333, 49.1655667], [9.2245699, 49.1657059], [9.2245793, 49.1659008]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hans-Sachs-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1952387, 49.1445242], [9.1961424, 49.1443885], [9.1971727, 49.1442653], [9.1976136, 49.1442148], [9.1980430, 49.1441623]], [[9.1980430, 49.1441623], [9.1983149, 49.1441326], [9.1987423, 49.1440667], [9.1991832, 49.1439936], [9.1993080, 49.1439767]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hans-Schweiner-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2364871, 49.1494818], [9.2366294, 49.1488920], [9.2367131, 49.1485505], [9.2367477, 49.1483682], [9.2367545, 49.1483067]], [[9.2337398, 49.1493667], [9.2328617, 49.1493459]], [[9.2338102, 49.1506521], [9.2338014, 49.1502410], [9.2337515, 49.1495600], [9.2337398, 49.1493667]], [[9.2367917, 49.1495112], [9.2367208, 49.1500327]], [[9.2333507, 49.1516379], [9.2334629, 49.1514620], [9.2334747, 49.1514409], [9.2334991, 49.1513957], [9.2335514, 49.1512468], [9.2335924, 49.1507719], [9.2336107, 49.1506811], [9.2336558, 49.1506502]], [[9.2337398, 49.1493667], [9.2346353, 49.1493389], [9.2353627, 49.1493163], [9.2356110, 49.1493121], [9.2357701, 49.1493217], [9.2358793, 49.1493419], [9.2363551, 49.1494682], [9.2364871, 49.1494818], [9.2367917, 49.1495112], [9.2381168, 49.1495595], [9.2395846, 49.1496130], [9.2402363, 49.1496367]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Hans-Seyfer-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2186873, 49.1579069], [9.2188531, 49.1578846], [9.2211019, 49.1575828], [9.2221560, 49.1574312], [9.2226504, 49.1573496]], [[9.2159143, 49.1583530], [9.2159755, 49.1583482], [9.2173952, 49.1581347]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hanselmannstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1862358, 49.1540232], [9.1857815, 49.1538306], [9.1856463, 49.1537800], [9.1853764, 49.1536872], [9.1851970, 49.1536255], [9.1844810, 49.1534199], [9.1837306, 49.1533133], [9.1835416, 49.1533043], [9.1831018, 49.1532834], [9.1830148, 49.1532784], [9.1829394, 49.1532586], [9.1829039, 49.1532095], [9.1828997, 49.1530645], [9.1829085, 49.1529089], [9.1829145, 49.1524733], [9.1828881, 49.1524217]], [[9.1844810, 49.1534199], [9.1848155, 49.1525898]], [[9.1837306, 49.1533133], [9.1838259, 49.1525207]], [[9.1828881, 49.1524217], [9.1829493, 49.1523542], [9.1829195, 49.1522867], [9.1828268, 49.1522876], [9.1827992, 49.1523332], [9.1828123, 49.1523917], [9.1828881, 49.1524217]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hansjakobstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2587436, 49.1347651], [9.2587527, 49.1346622], [9.2595130, 49.1340999], [9.2598748, 49.1337399], [9.2600774, 49.1334898]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Happelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2202614, 49.1320112], [9.2202030, 49.1320273], [9.2201730, 49.1320429], [9.2201085, 49.1320873], [9.2200829, 49.1321240], [9.2200689, 49.1321725], [9.2200789, 49.1322498]], [[9.2188772, 49.1319484], [9.2194599, 49.1319860], [9.2196494, 49.1320017], [9.2197706, 49.1320257], [9.2198589, 49.1320523], [9.2199205, 49.1320785], [9.2199838, 49.1321105], [9.2200400, 49.1321643], [9.2200789, 49.1322498]], [[9.2198589, 49.1320523], [9.2199602, 49.1320537], [9.2200627, 49.1320288], [9.2201597, 49.1320189], [9.2202614, 49.1320112]], [[9.2202614, 49.1320112], [9.2203423, 49.1320114], [9.2204492, 49.1320193], [9.2206759, 49.1320313], [9.2213207, 49.1320718], [9.2223225, 49.1321343], [9.2227438, 49.1321706], [9.2234568, 49.1322220], [9.2238758, 49.1322488], [9.2244049, 49.1322840], [9.2246811, 49.1322969], [9.2247355, 49.1322985], [9.2248098, 49.1322991], [9.2251317, 49.1323055], [9.2251976, 49.1323068], [9.2254012, 49.1323202]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Happenbacher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2242551, 49.1255115], [9.2247753, 49.1254188], [9.2249253, 49.1253921], [9.2251056, 49.1253609], [9.2252996, 49.1253251], [9.2254927, 49.1252882], [9.2256590, 49.1252637], [9.2258066, 49.1252514], [9.2259219, 49.1252479], [9.2260184, 49.1252602], [9.2261633, 49.1253005], [9.2263242, 49.1253637], [9.2266060, 49.1255199], [9.2266442, 49.1255440], [9.2273048, 49.1259192]], [[9.2229730, 49.1257386], [9.2231197, 49.1257157], [9.2235634, 49.1256338]], [[9.2235634, 49.1256338], [9.2238751, 49.1255763], [9.2242551, 49.1255115]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hartmannweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2225329, 49.1297647], [9.2220423, 49.1285858]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Hasengasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2196139, 49.1442679], [9.2195489, 49.1440841], [9.2195515, 49.1440619], [9.2195749, 49.1440446], [9.2196177, 49.1440264], [9.2199531, 49.1439048], [9.2202022, 49.1438226], [9.2202326, 49.1438103], [9.2202431, 49.1437940], [9.2202059, 49.1435552], [9.2202007, 49.1435182]], [[9.2195515, 49.1440619], [9.2195356, 49.1440406], [9.2195249, 49.1440132], [9.2195137, 49.1439712], [9.2194933, 49.1438193], [9.2194756, 49.1436247], [9.2194641, 49.1435848]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hauffstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2160069, 49.1292577], [9.2159780, 49.1291161], [9.2159535, 49.1290381], [9.2159025, 49.1289495], [9.2158475, 49.1288934], [9.2157872, 49.1288574], [9.2157175, 49.1288232], [9.2156598, 49.1288048], [9.2156276, 49.1287977], [9.2155646, 49.1287793], [9.2155029, 49.1287609], [9.2154581, 49.1287391], [9.2154117, 49.1287100], [9.2153875, 49.1286758], [9.2153419, 49.1286064], [9.2152776, 49.1285011], [9.2152213, 49.1284283], [9.2151341, 49.1283256], [9.2150147, 49.1281975], [9.2148809, 49.1280785], [9.2147666, 49.1279860], [9.2146942, 49.1279263], [9.2146444, 49.1278926], [9.2146164, 49.1278737], [9.2145292, 49.1278280], [9.2144448, 49.1277841], [9.2143254, 49.1277289], [9.2142181, 49.1276876], [9.2140786, 49.1276367], [9.2139184, 49.1275828], [9.2137733, 49.1275394], [9.2136530, 49.1274983], [9.2135605, 49.1274658], [9.2134534, 49.1274314], [9.2132148, 49.1273474], [9.2128918, 49.1272488], [9.2128006, 49.1272225], [9.2127603, 49.1272041], [9.2127375, 49.1271883], [9.2127228, 49.1271681], [9.2127040, 49.1271303], [9.2126245, 49.1269468], [9.2124623, 49.1265739], [9.2122443, 49.1260806], [9.2121036, 49.1257716], [9.2120187, 49.1255753], [9.2118900, 49.1252215], [9.2118870, 49.1251958], [9.2118821, 49.1251380]], [[9.2158736, 49.1286477], [9.2158339, 49.1285327], [9.2158167, 49.1284959], [9.2157765, 49.1284344], [9.2156517, 49.1282677], [9.2155740, 49.1281729], [9.2154640, 49.1280615], [9.2153218, 49.1279316], [9.2152132, 49.1278377], [9.2151032, 49.1277534], [9.2149906, 49.1276859], [9.2149823, 49.1276802], [9.2149410, 49.1276516], [9.2149208, 49.1276323], [9.2149034, 49.1276113], [9.2148927, 49.1275919], [9.2148429, 49.1274304]], [[9.2124623, 49.1265739], [9.2130943, 49.1264458]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hauptstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1909618, 49.1202485], [9.1909755, 49.1200821], [9.1908968, 49.1197570], [9.1908549, 49.1195928], [9.1908040, 49.1193938], [9.1907568, 49.1191959], [9.1907466, 49.1191435]], [[9.1907466, 49.1191435], [9.1906074, 49.1190096], [9.1905206, 49.1188914], [9.1903767, 49.1186155], [9.1902876, 49.1185336], [9.1901859, 49.1184699], [9.1900846, 49.1183929], [9.1900628, 49.1183621]], [[9.1892061, 49.1178352], [9.1891574, 49.1177231]], [[9.1891574, 49.1177231], [9.1891257, 49.1176569], [9.1890535, 49.1175013], [9.1890120, 49.1174234], [9.1889474, 49.1173049]], [[9.1893366, 49.1182089], [9.1893509, 49.1181763], [9.1892755, 49.1179975], [9.1892181, 49.1178707], [9.1892061, 49.1178352]], [[9.1900628, 49.1183621], [9.1899251, 49.1183298], [9.1894537, 49.1182498], [9.1893366, 49.1182089]], [[9.1900628, 49.1183621], [9.1900996, 49.1183058]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hausäckerweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1673033, 49.1545585], [9.1672509, 49.1544366], [9.1671750, 49.1543709], [9.1668320, 49.1540740], [9.1667515, 49.1539754], [9.1666252, 49.1538997], [9.1664840, 49.1538283], [9.1663134, 49.1537802], [9.1659002, 49.1536699]], [[9.1664840, 49.1538283], [9.1672736, 49.1538862]], [[9.1671750, 49.1543709], [9.1671911, 49.1542971], [9.1672324, 49.1541074], [9.1672576, 49.1540640]], [[9.1682213, 49.1541195], [9.1673315, 49.1540178], [9.1672913, 49.1540219], [9.1672751, 49.1540282], [9.1672576, 49.1540640]], [[9.1671911, 49.1542971], [9.1676149, 49.1544715], [9.1680682, 49.1545311]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Hausener Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1068890, 49.1844937], [9.1068048, 49.1845101], [9.1066732, 49.1845054], [9.1065614, 49.1844885], [9.1063624, 49.1844500], [9.1061755, 49.1844123]], [[9.1063046, 49.1848637], [9.1060590, 49.1848687], [9.1058302, 49.1848710]], [[9.1063624, 49.1844500], [9.1063293, 49.1846404], [9.1063046, 49.1848637], [9.1062863, 49.1849633], [9.1062587, 49.1850946], [9.1061897, 49.1851799], [9.1060010, 49.1852521], [9.1057862, 49.1853072]], [[9.1089295, 49.1838361], [9.1088368, 49.1838138], [9.1086330, 49.1838279], [9.1085150, 49.1838529], [9.1083921, 49.1838872], [9.1082446, 49.1839387], [9.1080844, 49.1840079], [9.1079259, 49.1841188], [9.1072404, 49.1843743], [9.1068890, 49.1844937]], [[9.1061755, 49.1844123], [9.1060918, 49.1843954], [9.1057223, 49.1843567], [9.1053589, 49.1843401], [9.1048760, 49.1843358], [9.1040745, 49.1843564], [9.1032942, 49.1843757]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Havannastraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1736321, 49.1143759], [9.1735960, 49.1144817], [9.1735427, 49.1146035], [9.1734709, 49.1147219], [9.1733490, 49.1148213], [9.1729395, 49.1151220], [9.1728971, 49.1152337], [9.1727697, 49.1155935], [9.1725947, 49.1160669], [9.1724947, 49.1163496]], [[9.1729452, 49.1147428], [9.1733490, 49.1148213], [9.1738235, 49.1149085]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Haydnstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2177768, 49.1271245], [9.2177439, 49.1265766], [9.2177238, 49.1262018], [9.2177184, 49.1260658], [9.2177175, 49.1259789], [9.2177150, 49.1258737]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Hämmerlinggasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2209131, 49.1421602], [9.2207127, 49.1421470], [9.2204144, 49.1421274]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Härlestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2279606, 49.1359863], [9.2278974, 49.1355164], [9.2278578, 49.1351556], [9.2278219, 49.1348654], [9.2277658, 49.1344412], [9.2277733, 49.1344284]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Hebbelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2219253, 49.1541288], [9.2231400, 49.1539127], [9.2232838, 49.1538871]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hechtstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1937936, 49.1303073], [9.1926307, 49.1303515], [9.1916942, 49.1303860], [9.1912002, 49.1304339], [9.1911349, 49.1304710], [9.1911297, 49.1305115]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Heckenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1904420, 49.1368273], [9.1901701, 49.1367578], [9.1899818, 49.1367102], [9.1899251, 49.1366961], [9.1897247, 49.1366502], [9.1896331, 49.1366270], [9.1883331, 49.1363439], [9.1882798, 49.1363295], [9.1872434, 49.1360662], [9.1862683, 49.1358128], [9.1858609, 49.1357213], [9.1857178, 49.1356930], [9.1851651, 49.1355825], [9.1847703, 49.1355096], [9.1840319, 49.1353913], [9.1834423, 49.1352935], [9.1830530, 49.1352287], [9.1829947, 49.1352199], [9.1823026, 49.1351279], [9.1820932, 49.1350771]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Hefenweiler" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2155347, 49.1432841], [9.2156059, 49.1432774]], [[9.2157904, 49.1433294], [9.2157756, 49.1433513], [9.2157432, 49.1433671], [9.2157043, 49.1433736], [9.2156676, 49.1433710], [9.2156371, 49.1433591], [9.2156142, 49.1433350], [9.2156097, 49.1433042], [9.2156059, 49.1432774], [9.2155884, 49.1431095], [9.2153498, 49.1431020]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hegelmaierstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2487706, 49.1427652], [9.2489193, 49.1429102], [9.2491519, 49.1431909], [9.2492765, 49.1433537], [9.2493496, 49.1434655], [9.2494090, 49.1435563], [9.2495002, 49.1437257], [9.2495885, 49.1438899], [9.2496500, 49.1439899], [9.2498446, 49.1442178], [9.2500668, 49.1444758], [9.2500970, 49.1445235], [9.2500693, 49.1445709], [9.2499799, 49.1446267], [9.2494038, 49.1448806]], [[9.2500970, 49.1445235], [9.2501635, 49.1445362], [9.2504826, 49.1447543], [9.2507796, 49.1449573]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Hegelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1881217, 49.1668319], [9.1880442, 49.1668664], [9.1879758, 49.1668897], [9.1873886, 49.1668473], [9.1870495, 49.1668413], [9.1867631, 49.1668591], [9.1863711, 49.1669191], [9.1859691, 49.1669965], [9.1855500, 49.1670765]], [[9.1868106, 49.1676959], [9.1867631, 49.1668591]], [[9.1859691, 49.1669965], [9.1860196, 49.1678353]], [[9.1864436, 49.1677555], [9.1864058, 49.1676581], [9.1863711, 49.1669191]], [[9.1856128, 49.1679092], [9.1855500, 49.1670765]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Heidelberger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1941595, 49.1420757], [9.1936761, 49.1421233], [9.1935041, 49.1421435], [9.1926756, 49.1422423], [9.1920571, 49.1423284], [9.1917026, 49.1423686], [9.1915538, 49.1423836], [9.1912999, 49.1424112], [9.1909284, 49.1425198]], [[9.1845080, 49.1461987], [9.1844173, 49.1462655], [9.1841735, 49.1464555], [9.1840476, 49.1465539], [9.1838933, 49.1466744], [9.1838487, 49.1467093], [9.1836120, 49.1468875], [9.1833789, 49.1470587], [9.1826374, 49.1476215], [9.1826059, 49.1476420], [9.1824116, 49.1477949], [9.1822504, 49.1479152], [9.1819983, 49.1481073], [9.1819303, 49.1481612], [9.1815765, 49.1484413], [9.1813955, 49.1485988], [9.1811651, 49.1488097], [9.1809452, 49.1490402], [9.1808037, 49.1492159], [9.1806352, 49.1494248], [9.1801048, 49.1500800], [9.1800859, 49.1501014], [9.1799215, 49.1502794], [9.1797790, 49.1504536], [9.1796120, 49.1506307]], [[9.1845080, 49.1461987], [9.1844578, 49.1461649], [9.1844394, 49.1461063], [9.1844559, 49.1460722], [9.1845149, 49.1460337], [9.1846029, 49.1460231], [9.1846735, 49.1460424], [9.1847145, 49.1460755], [9.1847283, 49.1461057], [9.1847257, 49.1461388], [9.1846904, 49.1461824], [9.1846138, 49.1462106], [9.1845544, 49.1462107], [9.1845080, 49.1461987]], [[9.1794704, 49.1488229], [9.1794069, 49.1487873], [9.1792716, 49.1487908], [9.1792266, 49.1488341], [9.1792178, 49.1488666], [9.1792093, 49.1489182], [9.1792474, 49.1489637], [9.1793430, 49.1489858], [9.1794410, 49.1489759], [9.1794952, 49.1489221], [9.1794999, 49.1488685], [9.1794704, 49.1488229]], [[9.1824116, 49.1477949], [9.1822069, 49.1476882], [9.1821281, 49.1476490], [9.1820144, 49.1475924], [9.1818335, 49.1475498], [9.1817618, 49.1475506], [9.1814886, 49.1475535], [9.1812253, 49.1475559], [9.1809381, 49.1475581], [9.1806550, 49.1475558], [9.1802803, 49.1475614], [9.1802291, 49.1475746], [9.1801830, 49.1476138], [9.1801782, 49.1476612], [9.1801967, 49.1477093], [9.1802494, 49.1477432], [9.1803116, 49.1477649], [9.1803918, 49.1477621], [9.1804714, 49.1477402], [9.1805139, 49.1477133], [9.1805418, 49.1476694], [9.1805461, 49.1476057], [9.1806550, 49.1475558]], [[9.1836120, 49.1468875], [9.1834187, 49.1467947], [9.1833061, 49.1467406], [9.1831690, 49.1466763], [9.1829537, 49.1466735], [9.1826769, 49.1466749], [9.1824440, 49.1466736], [9.1815793, 49.1466690], [9.1814401, 49.1466638], [9.1811355, 49.1466669], [9.1810874, 49.1466222], [9.1810728, 49.1465604], [9.1811311, 49.1464996], [9.1812635, 49.1464894], [9.1813612, 49.1465485], [9.1814401, 49.1466638]], [[9.1790530, 49.1512724], [9.1791135, 49.1512266], [9.1791519, 49.1512011], [9.1792466, 49.1511136], [9.1793165, 49.1510291], [9.1793678, 49.1509595]], [[9.1909284, 49.1425198], [9.1908013, 49.1425829], [9.1905680, 49.1427107], [9.1893864, 49.1432943], [9.1893271, 49.1433211], [9.1885650, 49.1437021], [9.1880547, 49.1439468], [9.1874209, 49.1442609], [9.1871506, 49.1444001], [9.1866312, 49.1446469], [9.1865673, 49.1446795], [9.1865164, 49.1447024], [9.1862801, 49.1448149], [9.1861827, 49.1448649], [9.1858944, 49.1450483], [9.1858188, 49.1451012], [9.1855933, 49.1452590], [9.1853363, 49.1454502], [9.1851763, 49.1455923], [9.1847586, 49.1459734], [9.1846735, 49.1460424]], [[9.1794704, 49.1488229], [9.1801180, 49.1488093], [9.1801887, 49.1488097], [9.1803910, 49.1488486], [9.1807003, 49.1489367], [9.1809452, 49.1490402]], [[9.1796120, 49.1506307], [9.1795577, 49.1507422], [9.1795221, 49.1508574], [9.1795238, 49.1509660], [9.1795352, 49.1510351], [9.1795515, 49.1511339], [9.1795579, 49.1511808], [9.1795665, 49.1512313]], [[9.1794559, 49.1512450], [9.1794344, 49.1511966], [9.1794116, 49.1511529], [9.1793826, 49.1510911], [9.1793657, 49.1510280], [9.1793678, 49.1509595]], [[9.1793678, 49.1509595], [9.1794436, 49.1508142], [9.1795424, 49.1507111], [9.1796120, 49.1506307]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Heidenrain" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1892060, 49.1452822], [9.1897368, 49.1452113], [9.1903955, 49.1451434], [9.1911075, 49.1450531], [9.1918554, 49.1449569]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Heilbronner Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1769402, 49.1169508], [9.1769759, 49.1168773], [9.1771192, 49.1164937], [9.1771639, 49.1163697], [9.1773035, 49.1160288]], [[9.1773035, 49.1160288], [9.1773496, 49.1158857], [9.1774590, 49.1155464], [9.1767956, 49.1154390], [9.1767712, 49.1153940], [9.1768225, 49.1152134], [9.1769099, 49.1149087], [9.1769166, 49.1147779], [9.1768642, 49.1146501], [9.1767308, 49.1144491]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Heiligengasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2173404, 49.1396103], [9.2173907, 49.1393795], [9.2169018, 49.1393358]], [[9.2174125, 49.1392786], [9.2174485, 49.1391471]], [[9.2173907, 49.1393795], [9.2174125, 49.1392786]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Heinrich-Bächler-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1503337, 49.1244535], [9.1493413, 49.1244793], [9.1492585, 49.1244681], [9.1492100, 49.1244364], [9.1492292, 49.1238085], [9.1491349, 49.1232816], [9.1496946, 49.1232303], [9.1503346, 49.1231793]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Heinrich-Heine-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2115756, 49.1274054], [9.2116044, 49.1274849], [9.2116231, 49.1275130], [9.2116526, 49.1275481], [9.2116848, 49.1275735], [9.2117304, 49.1275999], [9.2117908, 49.1276236], [9.2124854, 49.1278526], [9.2127619, 49.1279392], [9.2132753, 49.1281071], [9.2136361, 49.1282238], [9.2137045, 49.1282502], [9.2137836, 49.1282835], [9.2138989, 49.1283520], [9.2139620, 49.1283923], [9.2140218, 49.1284333], [9.2141052, 49.1285020], [9.2141765, 49.1285678], [9.2142087, 49.1286073], [9.2142409, 49.1286486], [9.2142758, 49.1287074], [9.2143120, 49.1287802], [9.2143978, 49.1289654], [9.2144649, 49.1291137], [9.2145162, 49.1292456], [9.2145528, 49.1293507], [9.2145719, 49.1294055], [9.2147500, 49.1298288], [9.2147761, 49.1298851], [9.2147855, 49.1299257], [9.2147841, 49.1299418], [9.2147818, 49.1299676], [9.2147602, 49.1300006], [9.2145599, 49.1301969], [9.2144882, 49.1302526]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Heinrich-Hertz-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2071007, 49.1233529], [9.2068201, 49.1233591], [9.2066242, 49.1233593], [9.2064861, 49.1233567], [9.2063587, 49.1233523], [9.2062581, 49.1233426], [9.2061226, 49.1233233], [9.2059751, 49.1233014], [9.2055419, 49.1232233], [9.2052818, 49.1231750], [9.2047078, 49.1230556], [9.2041294, 49.1229242]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Heinrich-Senghaas-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1386185, 49.1929568], [9.1386861, 49.1929579], [9.1389558, 49.1930442], [9.1391490, 49.1931117], [9.1393023, 49.1932247], [9.1394864, 49.1933167], [9.1395721, 49.1933434], [9.1396064, 49.1933516], [9.1396335, 49.1933480], [9.1396516, 49.1933303], [9.1397620, 49.1931105], [9.1398256, 49.1930234]], [[9.1396501, 49.1937433], [9.1396388, 49.1935895], [9.1396396, 49.1934435]], [[9.1396396, 49.1934435], [9.1396335, 49.1933480]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Heinrich-Zille-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1974888, 49.1651618], [9.1982454, 49.1651779], [9.1986246, 49.1651429], [9.1997342, 49.1649982]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Heinrichstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1926137, 49.1326552], [9.1926220, 49.1327187], [9.1927075, 49.1334627], [9.1928460, 49.1335021], [9.1929756, 49.1335058], [9.1929965, 49.1337382]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Heinrieter Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2242551, 49.1255115], [9.2245018, 49.1259849], [9.2245607, 49.1261086], [9.2246240, 49.1262416], [9.2246802, 49.1263656], [9.2247193, 49.1265851], [9.2247236, 49.1266138], [9.2247330, 49.1266766], [9.2247437, 49.1267302], [9.2247739, 49.1267819], [9.2248137, 49.1268560], [9.2248597, 49.1269417], [9.2248946, 49.1269645], [9.2249348, 49.1269733], [9.2249778, 49.1269662], [9.2250153, 49.1269522], [9.2250233, 49.1269329], [9.2250260, 49.1269101], [9.2250126, 49.1268855], [9.2249751, 49.1268592], [9.2249295, 49.1268504], [9.2248758, 49.1268504], [9.2248137, 49.1268560]], [[9.2248597, 49.1269417], [9.2249051, 49.1270182], [9.2250376, 49.1272554]], [[9.2251290, 49.1259794], [9.2251049, 49.1259970], [9.2245607, 49.1261086]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Heisenbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1473512, 49.1918341], [9.1474310, 49.1918009], [9.1477098, 49.1916849], [9.1479650, 49.1915756], [9.1482640, 49.1914355], [9.1485564, 49.1912731], [9.1486779, 49.1911924], [9.1487341, 49.1911395], [9.1488233, 49.1910410], [9.1489786, 49.1908319], [9.1490323, 49.1907359], [9.1492561, 49.1904202], [9.1494999, 49.1900843], [9.1497403, 49.1898038], [9.1499597, 49.1895764], [9.1502381, 49.1892877], [9.1504631, 49.1890834], [9.1505879, 49.1890040]], [[9.1536728, 49.1884864], [9.1537119, 49.1885942], [9.1540074, 49.1894091], [9.1540342, 49.1894210], [9.1545024, 49.1893220], [9.1548737, 49.1892486]], [[9.1492561, 49.1904202], [9.1497818, 49.1905804], [9.1498845, 49.1906179], [9.1500514, 49.1907574]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hellmuth-Hirth-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2025459, 49.1254168], [9.2030924, 49.1255677]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Helmholtzstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1767347, 49.1400956], [9.1764672, 49.1400362], [9.1758763, 49.1399044], [9.1758057, 49.1398640], [9.1758107, 49.1397863], [9.1758136, 49.1397570], [9.1758259, 49.1396327], [9.1758421, 49.1393339], [9.1759187, 49.1385351], [9.1759617, 49.1381499], [9.1760158, 49.1375950], [9.1760109, 49.1375291], [9.1760922, 49.1370961]], [[9.1758057, 49.1398640], [9.1756574, 49.1398882], [9.1752580, 49.1398675], [9.1750752, 49.1398823], [9.1746062, 49.1398691]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Herbert-Hoover-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2224100, 49.1240172], [9.2225786, 49.1240079]], [[9.2257663, 49.1234074], [9.2257016, 49.1233950], [9.2255933, 49.1233636], [9.2254096, 49.1233144], [9.2253479, 49.1232968], [9.2253077, 49.1232802], [9.2252741, 49.1232600], [9.2252285, 49.1232284], [9.2252058, 49.1232038], [9.2251682, 49.1231371], [9.2250971, 49.1229809]], [[9.2258773, 49.1237325], [9.2258455, 49.1236429], [9.2257878, 49.1234803], [9.2257663, 49.1234074], [9.2257663, 49.1233627], [9.2257771, 49.1233320], [9.2257958, 49.1233100], [9.2258173, 49.1232960], [9.2258468, 49.1232907], [9.2258857, 49.1232890], [9.2259393, 49.1232907], [9.2260144, 49.1232898], [9.2260748, 49.1232890], [9.2261284, 49.1232863], [9.2261968, 49.1232775], [9.2264007, 49.1232424], [9.2269049, 49.1231450], [9.2272939, 49.1230625], [9.2273891, 49.1230441], [9.2280435, 49.1229317], [9.2282443, 49.1229018], [9.2282822, 49.1228975], [9.2283211, 49.1228975], [9.2284056, 49.1229015]], [[9.2274439, 49.1235025], [9.2276018, 49.1234779], [9.2279204, 49.1234378], [9.2279323, 49.1234686], [9.2279395, 49.1235121], [9.2279292, 49.1235612], [9.2278934, 49.1235919], [9.2278524, 49.1236109], [9.2277856, 49.1235867], [9.2277140, 49.1235646], [9.2275801, 49.1235287]], [[9.2279204, 49.1234378], [9.2280113, 49.1234275], [9.2281615, 49.1234171], [9.2282742, 49.1234180], [9.2283195, 49.1234221], [9.2283708, 49.1234267], [9.2284861, 49.1234443], [9.2286215, 49.1234733], [9.2287476, 49.1235101], [9.2288884, 49.1235663], [9.2289957, 49.1236190], [9.2291137, 49.1236883], [9.2291295, 49.1236985], [9.2292264, 49.1237611], [9.2292920, 49.1238144], [9.2293377, 49.1238515], [9.2294262, 49.1239305], [9.2294402, 49.1239463], [9.2295080, 49.1240227], [9.2295627, 49.1240911], [9.2296140, 49.1241552], [9.2296837, 49.1242746], [9.2297025, 49.1243176], [9.2297103, 49.1243392], [9.2297320, 49.1243992], [9.2297870, 49.1245905], [9.2298157, 49.1247075], [9.2298299, 49.1247889], [9.2298285, 49.1248643], [9.2298151, 49.1249424], [9.2297829, 49.1250372], [9.2297373, 49.1251355], [9.2296891, 49.1252057], [9.2296408, 49.1252672], [9.2295751, 49.1253277], [9.2295201, 49.1253707], [9.2294718, 49.1254067], [9.2294289, 49.1254348], [9.2293779, 49.1254629], [9.2293028, 49.1254953], [9.2292028, 49.1255305], [9.2291285, 49.1255541], [9.2289823, 49.1255857], [9.2288764, 49.1256024], [9.2287750, 49.1256130], [9.2286382, 49.1256226], [9.2285403, 49.1256244], [9.2284754, 49.1256208], [9.2283801, 49.1256094], [9.2282755, 49.1255928], [9.2281508, 49.1255656], [9.2280650, 49.1255392], [9.2279751, 49.1255032], [9.2278960, 49.1254620], [9.2278196, 49.1254137], [9.2277619, 49.1253628], [9.2277150, 49.1253146], [9.2276747, 49.1252549], [9.2276519, 49.1252040], [9.2276318, 49.1251487], [9.2276251, 49.1250916], [9.2276251, 49.1250258], [9.2276399, 49.1249705], [9.2276747, 49.1248836], [9.2277096, 49.1248134], [9.2277981, 49.1246748], [9.2279134, 49.1245019], [9.2280449, 49.1243035], [9.2280757, 49.1242421], [9.2280931, 49.1241859], [9.2281052, 49.1241289], [9.2281106, 49.1240657], [9.2281079, 49.1240095], [9.2280838, 49.1239235], [9.2280529, 49.1238515], [9.2280100, 49.1237848], [9.2279571, 49.1237061], [9.2279115, 49.1236590], [9.2278524, 49.1236109]], [[9.2225786, 49.1240079], [9.2226929, 49.1240072], [9.2230046, 49.1240054]], [[9.2275801, 49.1235287], [9.2274439, 49.1235025]], [[9.2234283, 49.1240030], [9.2239654, 49.1239827]], [[9.2230046, 49.1240054], [9.2234283, 49.1240030]], [[9.2249957, 49.1238741], [9.2257416, 49.1237547], [9.2258773, 49.1237325], [9.2265805, 49.1236184], [9.2274439, 49.1235025]], [[9.2230046, 49.1240054], [9.2228381, 49.1240550], [9.2227229, 49.1241013], [9.2226390, 49.1241645], [9.2226027, 49.1242462]], [[9.2239654, 49.1239827], [9.2242505, 49.1239714], [9.2243944, 49.1239580], [9.2246082, 49.1239335], [9.2246706, 49.1239246], [9.2247249, 49.1239169], [9.2247504, 49.1239133], [9.2249957, 49.1238741]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Herbststraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2241926, 49.1401446], [9.2243033, 49.1400533], [9.2244677, 49.1398938], [9.2247484, 49.1396215], [9.2248904, 49.1394838], [9.2249819, 49.1393964], [9.2254205, 49.1389685], [9.2254320, 49.1388910], [9.2253936, 49.1385554], [9.2253700, 49.1383500], [9.2253398, 49.1380632], [9.2253373, 49.1380424], [9.2252612, 49.1373998]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Herderstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2150459, 49.1299851], [9.2151637, 49.1299675], [9.2159354, 49.1298536]], [[9.2147841, 49.1299418], [9.2149262, 49.1299429], [9.2149598, 49.1299464], [9.2149683, 49.1299486], [9.2149906, 49.1299543], [9.2150188, 49.1299701], [9.2150459, 49.1299851], [9.2152521, 49.1300991], [9.2155727, 49.1302573], [9.2157376, 49.1303387], [9.2161278, 49.1305379], [9.2161452, 49.1305432], [9.2161613, 49.1305458], [9.2161801, 49.1305441], [9.2162136, 49.1305370], [9.2165248, 49.1304879], [9.2166307, 49.1304738], [9.2167112, 49.1304651], [9.2170438, 49.1304379], [9.2171242, 49.1304308], [9.2172248, 49.1304282], [9.2173013, 49.1304265], [9.2174380, 49.1304282], [9.2175279, 49.1304247], [9.2176075, 49.1304177], [9.2176635, 49.1304133], [9.2177405, 49.1304072]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hermann-Hesse-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2580881, 49.1352055], [9.2576014, 49.1351109], [9.2574303, 49.1350671], [9.2572741, 49.1350088], [9.2571373, 49.1349334], [9.2570437, 49.1348602], [9.2568994, 49.1347072], [9.2568236, 49.1346024], [9.2567918, 49.1344853], [9.2567781, 49.1343590], [9.2568632, 49.1339624], [9.2570066, 49.1335960], [9.2572068, 49.1333416], [9.2574131, 49.1331774], [9.2576711, 49.1330090], [9.2579449, 49.1328651], [9.2583436, 49.1326946], [9.2585294, 49.1326108], [9.2585663, 49.1325801], [9.2585678, 49.1325547], [9.2585641, 49.1325111]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Hermann-Löns-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1890147, 49.1676699], [9.1889542, 49.1677423], [9.1888699, 49.1679597], [9.1888545, 49.1680371], [9.1887776, 49.1686144], [9.1887480, 49.1692370]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hermann-Wolf-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1918368, 49.1148970], [9.1919476, 49.1148950], [9.1927858, 49.1149222], [9.1931766, 49.1149281]], [[9.1893103, 49.1170473], [9.1894631, 49.1170918], [9.1895922, 49.1171738], [9.1896950, 49.1172063], [9.1898277, 49.1171836], [9.1899812, 49.1171805], [9.1901729, 49.1171552], [9.1903894, 49.1172107]], [[9.1891447, 49.1172429], [9.1891995, 49.1172892], [9.1893891, 49.1173461], [9.1895088, 49.1173797], [9.1896410, 49.1174180], [9.1898160, 49.1174592]], [[9.1896950, 49.1172063], [9.1896081, 49.1172466], [9.1895992, 49.1173029], [9.1896586, 49.1173403], [9.1897223, 49.1173489], [9.1898160, 49.1174592]], [[9.1900068, 49.1164607], [9.1901645, 49.1164030], [9.1905174, 49.1161257], [9.1907484, 49.1159259], [9.1909432, 49.1157698], [9.1912753, 49.1154865], [9.1913405, 49.1154131], [9.1915540, 49.1152018], [9.1916872, 49.1150650], [9.1918270, 49.1149512], [9.1918368, 49.1148970]], [[9.1911558, 49.1164667], [9.1906391, 49.1164624], [9.1900068, 49.1164607]], [[9.1903604, 49.1174468], [9.1902035, 49.1173868], [9.1901575, 49.1173610]], [[9.1889474, 49.1173049], [9.1890316, 49.1172973], [9.1890842, 49.1172777], [9.1891447, 49.1172429], [9.1892237, 49.1171524], [9.1893103, 49.1170473], [9.1894485, 49.1168604], [9.1894763, 49.1168228], [9.1895469, 49.1167670], [9.1896554, 49.1166907], [9.1898294, 49.1165803], [9.1900068, 49.1164607], [9.1906257, 49.1159410], [9.1908874, 49.1157344], [9.1911317, 49.1154604], [9.1913452, 49.1152599], [9.1915873, 49.1150683], [9.1917671, 49.1149219], [9.1918368, 49.1148970]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Herweghstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2204743, 49.1270628], [9.2204023, 49.1258121]], [[9.2205492, 49.1286286], [9.2205168, 49.1279769], [9.2204743, 49.1270628]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hessigheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2057681, 49.1302299], [9.2057799, 49.1302069], [9.2063249, 49.1299153], [9.2073720, 49.1293965]], [[9.2063249, 49.1299153], [9.2057578, 49.1294777], [9.2057114, 49.1294341], [9.2056832, 49.1293899], [9.2056589, 49.1293568]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hetensbacher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1501142, 49.1221903], [9.1496943, 49.1221873], [9.1494313, 49.1221855], [9.1493053, 49.1221846], [9.1489961, 49.1221842], [9.1485415, 49.1221918]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Heuchelbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1859534, 49.1313473], [9.1868671, 49.1313546], [9.1874839, 49.1314066], [9.1877663, 49.1314579], [9.1881563, 49.1315509], [9.1893962, 49.1318187], [9.1895079, 49.1318401]], [[9.1859534, 49.1313473], [9.1857922, 49.1313447], [9.1851119, 49.1313181], [9.1848822, 49.1313002]], [[9.1810174, 49.1316282], [9.1812852, 49.1315883], [9.1813460, 49.1315789], [9.1816190, 49.1315365], [9.1818396, 49.1314871], [9.1821558, 49.1314162], [9.1824504, 49.1313410], [9.1824690, 49.1313368], [9.1828624, 49.1312462], [9.1831383, 49.1311797], [9.1832802, 49.1311283], [9.1833762, 49.1310684], [9.1836329, 49.1310741], [9.1838656, 49.1310933], [9.1840962, 49.1311130]], [[9.1848822, 49.1313002], [9.1843831, 49.1311865], [9.1840962, 49.1311130]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Heuholzer Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2410035, 49.1482224], [9.2411145, 49.1482661], [9.2415523, 49.1483278], [9.2421280, 49.1484103], [9.2425787, 49.1484432]], [[9.2405477, 49.1486479], [9.2407748, 49.1486991], [9.2410513, 49.1487347], [9.2413037, 49.1487198]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Hieberstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2285994, 49.1540280], [9.2285431, 49.1540597], [9.2284444, 49.1540784], [9.2273462, 49.1542706], [9.2272748, 49.1542825]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hinter dem Fleischbeil" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1972797, 49.1559576], [9.1971188, 49.1554157]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hintertorstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1699299, 49.1580755], [9.1699323, 49.1578618], [9.1699371, 49.1576967], [9.1699267, 49.1576261], [9.1698701, 49.1574948], [9.1697558, 49.1573755], [9.1695237, 49.1572451], [9.1692021, 49.1570998], [9.1689799, 49.1570255]], [[9.1699371, 49.1576967], [9.1701678, 49.1576505], [9.1704777, 49.1575699], [9.1703827, 49.1574130]], [[9.1689799, 49.1570255], [9.1688846, 49.1570092], [9.1686489, 49.1569855], [9.1680182, 49.1568154], [9.1673664, 49.1566371], [9.1665738, 49.1564759], [9.1663948, 49.1564352]], [[9.1698701, 49.1574948], [9.1701375, 49.1573863], [9.1703223, 49.1572962], [9.1704855, 49.1572158], [9.1706316, 49.1571051]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hipfelhofer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1686489, 49.1569855], [9.1684243, 49.1572393], [9.1682680, 49.1574359], [9.1679575, 49.1576517], [9.1677355, 49.1577412], [9.1668434, 49.1581010], [9.1664680, 49.1582189], [9.1660693, 49.1583464], [9.1660099, 49.1583932]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hiplerweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2367092, 49.1480232], [9.2368545, 49.1479827], [9.2370330, 49.1479672], [9.2372642, 49.1479726], [9.2378945, 49.1480793], [9.2381699, 49.1481129], [9.2382440, 49.1481037], [9.2384487, 49.1479971]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Hirschstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2013683, 49.1689273], [9.2014542, 49.1694007], [9.2014833, 49.1696957], [9.2015616, 49.1703012], [9.2015828, 49.1705067], [9.2015994, 49.1706695], [9.2016137, 49.1708489], [9.2016381, 49.1710568], [9.2016391, 49.1710696], [9.2016800, 49.1714417], [9.2016907, 49.1715764], [9.2016857, 49.1716294]], [[9.2016381, 49.1710568], [9.2012759, 49.1710758], [9.2011441, 49.1710827]], [[9.2012759, 49.1710758], [9.2012874, 49.1711985]], [[9.2015828, 49.1705067], [9.2018281, 49.1704961], [9.2020352, 49.1704898]], [[9.2016800, 49.1714417], [9.2020753, 49.1714182]], [[9.2016137, 49.1708489], [9.2021623, 49.1708200]], [[9.2015994, 49.1706695], [9.2020502, 49.1706500]], [[9.2016391, 49.1710696], [9.2024313, 49.1711453]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hofgartenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1913373, 49.1189512], [9.1909327, 49.1180300]], [[9.1892755, 49.1179975], [9.1894336, 49.1179637], [9.1900639, 49.1178333], [9.1901579, 49.1176430], [9.1903604, 49.1174468], [9.1906445, 49.1175586], [9.1907584, 49.1176034]], [[9.1909327, 49.1180300], [9.1907584, 49.1176034], [9.1909014, 49.1174645]], [[9.1906445, 49.1175586], [9.1907128, 49.1174771], [9.1907680, 49.1174120], [9.1909648, 49.1171989], [9.1910384, 49.1170768], [9.1911262, 49.1169768]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hofmannweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1893607, 49.1314293], [9.1896726, 49.1313791], [9.1898640, 49.1313436], [9.1899091, 49.1312668], [9.1899169, 49.1311365], [9.1898233, 49.1308097], [9.1896984, 49.1303910], [9.1895903, 49.1301018]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hofstattstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1913433, 49.1291813], [9.1924201, 49.1292037]], [[9.1853706, 49.1281795], [9.1854882, 49.1282278], [9.1861284, 49.1285542], [9.1865364, 49.1287525]], [[9.1865364, 49.1287525], [9.1867596, 49.1288379], [9.1870604, 49.1288909], [9.1875525, 49.1289457]], [[9.1875539, 49.1289837], [9.1884705, 49.1290618], [9.1885649, 49.1290711], [9.1886493, 49.1290780], [9.1895861, 49.1291613], [9.1896940, 49.1291706], [9.1897847, 49.1291714], [9.1913433, 49.1291813]], [[9.1845621, 49.1280697], [9.1845839, 49.1279477], [9.1843667, 49.1279256], [9.1844407, 49.1280527], [9.1845621, 49.1280697], [9.1851575, 49.1281462], [9.1853706, 49.1281795]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hofweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1858609, 49.1507018], [9.1846248, 49.1506844], [9.1834555, 49.1506638], [9.1822760, 49.1506429], [9.1812409, 49.1505976]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hofwiesenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1900639, 49.1178333], [9.1902367, 49.1182269]], [[9.1900996, 49.1183058], [9.1902367, 49.1182269]], [[9.1909327, 49.1180300], [9.1919003, 49.1178554], [9.1926530, 49.1177271], [9.1932059, 49.1176323], [9.1933374, 49.1176114], [9.1942744, 49.1174653], [9.1943212, 49.1174602], [9.1953978, 49.1173194], [9.1958234, 49.1172412], [9.1963988, 49.1170947], [9.1968177, 49.1169698], [9.1972820, 49.1168163], [9.1978349, 49.1166186], [9.1986026, 49.1163861], [9.1987593, 49.1163486], [9.1991427, 49.1162583], [9.1994315, 49.1161943], [9.1995770, 49.1161851], [9.1997247, 49.1161951], [9.1998592, 49.1162236], [9.1999733, 49.1162622], [9.2008906, 49.1167837], [9.2016565, 49.1171992], [9.2017561, 49.1172767], [9.2018428, 49.1173593], [9.2018943, 49.1174277], [9.2019049, 49.1174712], [9.2019103, 49.1175206]], [[9.1902367, 49.1182269], [9.1903483, 49.1181655], [9.1904814, 49.1181124], [9.1909327, 49.1180300]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hohenloher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1685488, 49.1156295], [9.1685788, 49.1156649], [9.1686341, 49.1156898], [9.1687970, 49.1157211], [9.1692196, 49.1158054], [9.1695990, 49.1158845], [9.1696985, 49.1159047], [9.1698119, 49.1159278], [9.1707408, 49.1161297], [9.1712470, 49.1162228]], [[9.1712470, 49.1162228], [9.1715386, 49.1162570], [9.1724059, 49.1163413], [9.1724947, 49.1163496], [9.1726526, 49.1163651], [9.1732283, 49.1164308], [9.1749873, 49.1166972], [9.1752407, 49.1167374], [9.1754540, 49.1167713], [9.1760889, 49.1168684], [9.1766795, 49.1169702], [9.1768188, 49.1169987]], [[9.1768634, 49.1169620], [9.1769402, 49.1169508], [9.1769979, 49.1169679], [9.1770324, 49.1170027], [9.1770319, 49.1170457], [9.1770017, 49.1170773], [9.1769535, 49.1170949], [9.1768822, 49.1170919], [9.1768318, 49.1170654], [9.1768126, 49.1170305], [9.1768188, 49.1169987], [9.1768397, 49.1169754], [9.1768634, 49.1169620]], [[9.1770319, 49.1170457], [9.1771772, 49.1170875], [9.1774578, 49.1171633], [9.1786790, 49.1176229], [9.1791379, 49.1177798], [9.1792152, 49.1178091], [9.1793123, 49.1178460], [9.1798911, 49.1180566], [9.1801746, 49.1181244]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hohenstaufenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2223820, 49.1303312], [9.2226593, 49.1303259], [9.2227140, 49.1303265], [9.2229701, 49.1303294], [9.2231771, 49.1303209]], [[9.2234154, 49.1310247], [9.2234188, 49.1309413], [9.2234111, 49.1308795], [9.2233931, 49.1308217], [9.2231771, 49.1303209], [9.2230148, 49.1299278], [9.2229272, 49.1297156], [9.2225348, 49.1288046], [9.2224326, 49.1285652], [9.2216556, 49.1270549], [9.2212186, 49.1261499], [9.2211752, 49.1260599], [9.2211475, 49.1259780], [9.2211386, 49.1259099], [9.2211319, 49.1257926]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hohlstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1895079, 49.1318401], [9.1897160, 49.1318780], [9.1900312, 49.1319409], [9.1902178, 49.1319398], [9.1904814, 49.1319111], [9.1905676, 49.1319075]], [[9.1883681, 49.1324649], [9.1886485, 49.1323793], [9.1889777, 49.1322785], [9.1892394, 49.1321986], [9.1896157, 49.1320918]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hollandstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1768822, 49.1170919], [9.1768560, 49.1171836], [9.1767696, 49.1174122], [9.1767128, 49.1175829], [9.1766334, 49.1178557], [9.1766233, 49.1178867], [9.1765255, 49.1181653], [9.1763118, 49.1186426]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Holunderweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1858460, 49.1463507], [9.1859686, 49.1470905]], [[9.1863909, 49.1470399], [9.1863514, 49.1463563]], [[9.1853706, 49.1471701], [9.1859686, 49.1470905], [9.1863909, 49.1470399], [9.1868278, 49.1470173], [9.1872893, 49.1470032], [9.1876979, 49.1470096], [9.1881000, 49.1470204], [9.1883734, 49.1470338], [9.1884717, 49.1470441], [9.1888411, 49.1470679], [9.1891509, 49.1470540], [9.1892751, 49.1470792], [9.1892817, 49.1471394], [9.1892470, 49.1471867], [9.1889956, 49.1471809], [9.1889031, 49.1471417], [9.1888875, 49.1470955], [9.1888411, 49.1470679]], [[9.1889031, 49.1471417], [9.1888358, 49.1475812]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Holzstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2119866, 49.1404974], [9.2121990, 49.1404746], [9.2124348, 49.1404110], [9.2132693, 49.1401806], [9.2136558, 49.1400676]], [[9.2138199, 49.1400203], [9.2137058, 49.1400521], [9.2136558, 49.1400676]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Homburger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1753255, 49.1571845], [9.1762421, 49.1568995]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Horkheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1812417, 49.1176109], [9.1811599, 49.1175803], [9.1810811, 49.1174707], [9.1811413, 49.1173891], [9.1812445, 49.1173403], [9.1818234, 49.1172442], [9.1819058, 49.1172145], [9.1819620, 49.1171407], [9.1819079, 49.1169878], [9.1819089, 49.1168566]], [[9.1819089, 49.1168566], [9.1818461, 49.1168328], [9.1817915, 49.1167815], [9.1817775, 49.1167255], [9.1817882, 49.1166571], [9.1818352, 49.1166310], [9.1819270, 49.1166413], [9.1819971, 49.1166927], [9.1820085, 49.1167480], [9.1819932, 49.1168040], [9.1819089, 49.1168566]], [[9.1865388, 49.1080691], [9.1861641, 49.1080953], [9.1856293, 49.1080830]], [[9.1860734, 49.1189987], [9.1859672, 49.1189955], [9.1858418, 49.1190147], [9.1857629, 49.1190307], [9.1857032, 49.1190485], [9.1855132, 49.1190872]], [[9.1855132, 49.1190872], [9.1853497, 49.1191041], [9.1852899, 49.1191040], [9.1850977, 49.1190867]], [[9.1850977, 49.1190867], [9.1849168, 49.1190457], [9.1847236, 49.1189636], [9.1844966, 49.1188471], [9.1842456, 49.1187790], [9.1839324, 49.1186985], [9.1836026, 49.1186361], [9.1829156, 49.1184940], [9.1818587, 49.1182168], [9.1815833, 49.1181725], [9.1812666, 49.1181490], [9.1809879, 49.1181456], [9.1806742, 49.1181542], [9.1803760, 49.1181425], [9.1801746, 49.1181244]], [[9.1836026, 49.1186361], [9.1835172, 49.1185905], [9.1826413, 49.1183803]], [[9.1856293, 49.1080830], [9.1849130, 49.1080596]], [[9.1909618, 49.1202485], [9.1906063, 49.1201026], [9.1898756, 49.1198157], [9.1895766, 49.1197058], [9.1892912, 49.1196442], [9.1889899, 49.1196298], [9.1886901, 49.1196345], [9.1886196, 49.1196360]], [[9.1886196, 49.1196360], [9.1884982, 49.1196356]], [[9.1884982, 49.1196356], [9.1879875, 49.1196321], [9.1877959, 49.1196170], [9.1876291, 49.1195929], [9.1874695, 49.1195562], [9.1872761, 49.1194998], [9.1870944, 49.1194346], [9.1863246, 49.1190905], [9.1860734, 49.1189987]], [[9.1935244, 49.1063231], [9.1928787, 49.1064898], [9.1922638, 49.1066612], [9.1919106, 49.1067633], [9.1911568, 49.1069999], [9.1901225, 49.1073300], [9.1899983, 49.1073677], [9.1894856, 49.1074885], [9.1887283, 49.1076670], [9.1871322, 49.1079774], [9.1870101, 49.1079963], [9.1865388, 49.1080691]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hortensienweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1859005, 49.1457889], [9.1859213, 49.1454619]], [[9.1869067, 49.1457817], [9.1868375, 49.1458035], [9.1867378, 49.1458005], [9.1859005, 49.1457889], [9.1856273, 49.1457837], [9.1855578, 49.1457740], [9.1851763, 49.1455923]], [[9.1867378, 49.1458005], [9.1867546, 49.1454712]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hossäckerweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1699972, 49.1139362], [9.1696355, 49.1137743], [9.1692978, 49.1135960], [9.1685067, 49.1132213], [9.1680157, 49.1129888], [9.1670264, 49.1125203]], [[9.1670264, 49.1125203], [9.1651311, 49.1116489], [9.1649398, 49.1115300], [9.1648526, 49.1115065], [9.1645076, 49.1112686], [9.1629930, 49.1102242], [9.1629342, 49.1101106], [9.1626098, 49.1089543], [9.1624945, 49.1084181], [9.1625251, 49.1082862], [9.1625331, 49.1080798], [9.1626183, 49.1074714], [9.1626436, 49.1073704], [9.1626761, 49.1068620], [9.1627019, 49.1060442], [9.1627142, 49.1058898], [9.1627576, 49.1057357], [9.1628280, 49.1055896], [9.1630218, 49.1051610], [9.1630010, 49.1049122], [9.1628427, 49.1045193], [9.1623796, 49.1031904], [9.1623252, 49.1030280], [9.1622022, 49.1025890], [9.1621165, 49.1021234], [9.1620011, 49.1014636], [9.1619316, 49.0999581]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hölderlinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2574787, 49.1356413], [9.2568347, 49.1355661], [9.2565957, 49.1355080], [9.2563999, 49.1354358], [9.2561774, 49.1352956], [9.2559649, 49.1351497]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hörnlis" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2547100, 49.1324163], [9.2544451, 49.1324180], [9.2540143, 49.1323944], [9.2537157, 49.1323983], [9.2535210, 49.1323908], [9.2533624, 49.1323729], [9.2532615, 49.1322993], [9.2532003, 49.1321931]], [[9.2571165, 49.1284434], [9.2572290, 49.1285747], [9.2573339, 49.1286972], [9.2575733, 49.1290942], [9.2576164, 49.1293684], [9.2577123, 49.1296387]], [[9.2547100, 49.1324163], [9.2548919, 49.1324048]], [[9.2548919, 49.1324048], [9.2553389, 49.1323124], [9.2556312, 49.1323357], [9.2559780, 49.1324232], [9.2563020, 49.1324387]], [[9.2563020, 49.1324387], [9.2563154, 49.1319905], [9.2564407, 49.1317785], [9.2567440, 49.1316048]], [[9.2577123, 49.1296387], [9.2576441, 49.1298573], [9.2575544, 49.1300556], [9.2574658, 49.1304840]], [[9.2532003, 49.1321931], [9.2523121, 49.1321641], [9.2521107, 49.1321487], [9.2520151, 49.1321333], [9.2517270, 49.1321499], [9.2515416, 49.1321721], [9.2508925, 49.1323874], [9.2506629, 49.1324770], [9.2506316, 49.1325078], [9.2507352, 49.1327223], [9.2507814, 49.1328411], [9.2510237, 49.1334065], [9.2511781, 49.1338195], [9.2515799, 49.1338030], [9.2517422, 49.1338030], [9.2518339, 49.1338313], [9.2519842, 49.1338892], [9.2522567, 49.1339402]], [[9.2574658, 49.1304840], [9.2572491, 49.1308253], [9.2567440, 49.1316048]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hugo-Rümelin-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2117427, 49.1273710], [9.2112529, 49.1262591]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Humboldtstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2399087, 49.1446564], [9.2404267, 49.1448643], [9.2407018, 49.1449092], [9.2409814, 49.1449220], [9.2411137, 49.1449123], [9.2412795, 49.1448918], [9.2414602, 49.1448524], [9.2418048, 49.1447174], [9.2420533, 49.1445271], [9.2422141, 49.1443579]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hundsbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2403691, 49.1439054], [9.2403912, 49.1437055]], [[9.2403691, 49.1439054], [9.2403308, 49.1439959], [9.2402058, 49.1442635], [9.2400492, 49.1444994], [9.2399087, 49.1446564], [9.2397029, 49.1447880], [9.2390311, 49.1451281], [9.2384627, 49.1453884], [9.2380204, 49.1455635], [9.2375366, 49.1456800], [9.2370118, 49.1457261], [9.2365498, 49.1457606], [9.2356190, 49.1458480], [9.2355321, 49.1458505], [9.2354511, 49.1458358], [9.2353613, 49.1457973]], [[9.2404942, 49.1437302], [9.2403691, 49.1439054]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Huttenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1877226, 49.1395227], [9.1876991, 49.1389632], [9.1876735, 49.1385901], [9.1876493, 49.1384395], [9.1876047, 49.1382886], [9.1875235, 49.1380918], [9.1874072, 49.1379095]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Hünderstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1643901, 49.1438349], [9.1643735, 49.1430898], [9.1643751, 49.1424093], [9.1643667, 49.1421880], [9.1643710, 49.1419447], [9.1643797, 49.1413549], [9.1644107, 49.1404674], [9.1644130, 49.1402076], [9.1644106, 49.1400799]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hünefeldstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2393278, 49.1316670], [9.2401650, 49.1316771], [9.2401752, 49.1317810], [9.2401755, 49.1318633], [9.2401471, 49.1319732], [9.2401082, 49.1321305], [9.2400196, 49.1323350], [9.2398921, 49.1325867]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Hüttenäckerweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1847835, 49.1107389], [9.1869991, 49.1108384], [9.1880349, 49.1108810], [9.1887560, 49.1109156], [9.1896653, 49.1109557], [9.1944982, 49.1111701], [9.1945348, 49.1111816]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Ilsfelder Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2097975, 49.1312927], [9.2093117, 49.1302276]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Iltisweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1538299, 49.1984594], [9.1538201, 49.1981674], [9.1538282, 49.1981295], [9.1538664, 49.1980825], [9.1539497, 49.1980153], [9.1540039, 49.1979818], [9.1540567, 49.1979583], [9.1541376, 49.1979420], [9.1542079, 49.1979386]], [[9.1538801, 49.1976904], [9.1541444, 49.1978053], [9.1541632, 49.1978262], [9.1542079, 49.1979386]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Im Breitenloch" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2410798, 49.1540571], [9.2407683, 49.1536265], [9.2406756, 49.1534667], [9.2406480, 49.1533938], [9.2403042, 49.1524847], [9.2401722, 49.1521770]], [[9.2334371, 49.1517046], [9.2336463, 49.1516445], [9.2336782, 49.1516398], [9.2342647, 49.1516305], [9.2359533, 49.1516037], [9.2367467, 49.1516318], [9.2367891, 49.1516327], [9.2372564, 49.1516471], [9.2374238, 49.1516603], [9.2378274, 49.1517618], [9.2380127, 49.1518255], [9.2384958, 49.1519556], [9.2387590, 49.1519941], [9.2389586, 49.1520191], [9.2390886, 49.1520344], [9.2391947, 49.1520445], [9.2399747, 49.1521509], [9.2401722, 49.1521770], [9.2403929, 49.1522056]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Im Bruch" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1501980, 49.1197212], [9.1495582, 49.1194391], [9.1492780, 49.1193367], [9.1489793, 49.1192407]], [[9.1489793, 49.1192407], [9.1481615, 49.1190524]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Im Dachlet" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1372943, 49.1977892], [9.1372674, 49.1977672], [9.1371522, 49.1977079], [9.1369270, 49.1976146], [9.1367909, 49.1975649], [9.1366762, 49.1975475], [9.1365905, 49.1975413], [9.1364875, 49.1975403], [9.1362953, 49.1975608], [9.1357529, 49.1976431], [9.1356813, 49.1976608], [9.1356108, 49.1976919], [9.1355526, 49.1977466], [9.1351864, 49.1981929]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Im Entenseele" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1730101, 49.1077905], [9.1734450, 49.1077169], [9.1736339, 49.1076802], [9.1738404, 49.1076400], [9.1744464, 49.1075222]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Im Fleischbeil" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2014214, 49.1567231], [9.2012342, 49.1567328], [9.2010360, 49.1567620], [9.2007924, 49.1567831], [9.1995759, 49.1567883], [9.1979375, 49.1568776], [9.1977736, 49.1568850]], [[9.1977704, 49.1564709], [9.1979375, 49.1568776]], [[9.1977736, 49.1568850], [9.1975293, 49.1568911], [9.1971668, 49.1568835], [9.1963684, 49.1568057], [9.1957591, 49.1566826], [9.1954784, 49.1566052], [9.1952152, 49.1565233], [9.1949426, 49.1564132], [9.1948378, 49.1563663], [9.1945667, 49.1561985], [9.1944570, 49.1561135]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Im Gässle" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1124391, 49.1833270], [9.1123338, 49.1831492], [9.1122698, 49.1830390], [9.1122382, 49.1828917], [9.1121860, 49.1827639], [9.1119618, 49.1825338]], [[9.1139011, 49.1830586], [9.1130611, 49.1831044], [9.1124391, 49.1833270], [9.1119041, 49.1835071], [9.1115162, 49.1836262]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Im Gemmingstal" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2445087, 49.1333117], [9.2444122, 49.1333200], [9.2442973, 49.1333104], [9.2442140, 49.1332933], [9.2441403, 49.1332674], [9.2440422, 49.1332257], [9.2439777, 49.1331854], [9.2439392, 49.1331469], [9.2438546, 49.1330364]], [[9.2310720, 49.1313694], [9.2312395, 49.1313571]], [[9.2347796, 49.1311824], [9.2349476, 49.1311994], [9.2352684, 49.1312533], [9.2354406, 49.1312888], [9.2360435, 49.1314571], [9.2360856, 49.1314698], [9.2361743, 49.1314965], [9.2368776, 49.1316821], [9.2372930, 49.1318256], [9.2377064, 49.1319367], [9.2381688, 49.1320706], [9.2385545, 49.1322114], [9.2389770, 49.1323640], [9.2392090, 49.1324360], [9.2394915, 49.1325063], [9.2398921, 49.1325867], [9.2405554, 49.1327281], [9.2406729, 49.1327514], [9.2410774, 49.1328269], [9.2411093, 49.1328299], [9.2415146, 49.1328732], [9.2420810, 49.1329281], [9.2428310, 49.1329902], [9.2430587, 49.1330050], [9.2431655, 49.1330092], [9.2438546, 49.1330364]], [[9.2305347, 49.1314167], [9.2306765, 49.1313989], [9.2310720, 49.1313694]], [[9.2438546, 49.1330364], [9.2440132, 49.1330483], [9.2441317, 49.1330572], [9.2442588, 49.1330889], [9.2443715, 49.1331388], [9.2444444, 49.1332054]], [[9.2312395, 49.1313571], [9.2316862, 49.1312978], [9.2322056, 49.1312379], [9.2327804, 49.1311747], [9.2331835, 49.1311495], [9.2336806, 49.1311312], [9.2339404, 49.1311307], [9.2341954, 49.1311421], [9.2345860, 49.1311683], [9.2347796, 49.1311824]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Im Gutedel" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1782961, 49.1169234], [9.1786974, 49.1170634], [9.1791827, 49.1171872], [9.1795476, 49.1172739], [9.1797744, 49.1173135], [9.1800023, 49.1173507]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Im Haselter" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1911895, 49.1399044], [9.1910724, 49.1399103], [9.1909709, 49.1399372], [9.1908395, 49.1400232], [9.1908075, 49.1401570], [9.1907234, 49.1402272], [9.1904886, 49.1403562], [9.1903044, 49.1404382], [9.1900716, 49.1405272], [9.1897308, 49.1406378], [9.1894803, 49.1407167], [9.1891883, 49.1407894]], [[9.1813171, 49.1401803], [9.1814303, 49.1401926], [9.1815478, 49.1402053], [9.1816659, 49.1402181], [9.1824079, 49.1402985], [9.1826260, 49.1403147], [9.1826526, 49.1403082], [9.1828055, 49.1402711], [9.1830504, 49.1402908], [9.1832553, 49.1402971], [9.1834707, 49.1402645], [9.1837668, 49.1401528]], [[9.1705267, 49.1391276], [9.1720984, 49.1392750], [9.1736646, 49.1394333], [9.1758259, 49.1396327], [9.1790320, 49.1399317], [9.1794250, 49.1399699], [9.1813171, 49.1401803]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Im Hinterstahl" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1358944, 49.1983599], [9.1358773, 49.1984011], [9.1358069, 49.1984835], [9.1355733, 49.1987520]], [[9.1365466, 49.1981914], [9.1364235, 49.1982045], [9.1359343, 49.1983550], [9.1358944, 49.1983599], [9.1358506, 49.1983577], [9.1357643, 49.1983390], [9.1354753, 49.1982662], [9.1351864, 49.1981929]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Im Hospitalgrün" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2143842, 49.1460235], [9.2146921, 49.1457754], [9.2149119, 49.1455911], [9.2151012, 49.1455551], [9.2154422, 49.1453295], [9.2157654, 49.1450835]], [[9.2157654, 49.1450835], [9.2161091, 49.1448843], [9.2163215, 49.1447895], [9.2167968, 49.1446651], [9.2171840, 49.1445884], [9.2172540, 49.1445749], [9.2172926, 49.1445675], [9.2173293, 49.1445604]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Im Jockele" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1882543, 49.1302357], [9.1882046, 49.1301968], [9.1881400, 49.1301750], [9.1880133, 49.1301550], [9.1875671, 49.1301324], [9.1873908, 49.1301166], [9.1872695, 49.1301033], [9.1865058, 49.1299904], [9.1856411, 49.1298449], [9.1855277, 49.1298286], [9.1842774, 49.1296150], [9.1841310, 49.1295844]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Im Kehle" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1755290, 49.1554791], [9.1751538, 49.1556673], [9.1750248, 49.1557092], [9.1747079, 49.1557443], [9.1744320, 49.1557271], [9.1743093, 49.1556977], [9.1742240, 49.1556616], [9.1741821, 49.1556141], [9.1741849, 49.1555418]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Im Kleinfeldle" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1156619, 49.1804267], [9.1160160, 49.1804354], [9.1164298, 49.1804205], [9.1169350, 49.1803585], [9.1170651, 49.1803411], [9.1171062, 49.1803256], [9.1171235, 49.1802877], [9.1171126, 49.1797485], [9.1171926, 49.1791816]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Im Kohlpfad" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2249704, 49.1286107], [9.2251091, 49.1286243], [9.2251494, 49.1286249], [9.2252071, 49.1286196], [9.2253010, 49.1286038], [9.2254378, 49.1285757], [9.2256818, 49.1285240], [9.2259125, 49.1284766], [9.2261391, 49.1284283], [9.2263792, 49.1283800], [9.2270350, 49.1282537], [9.2275808, 49.1281457], [9.2276358, 49.1281317], [9.2276707, 49.1281185], [9.2276948, 49.1281018], [9.2277046, 49.1280861], [9.2277109, 49.1280632], [9.2277096, 49.1280351], [9.2277015, 49.1280062], [9.2276130, 49.1278201], [9.2275862, 49.1277780], [9.2275647, 49.1277552]], [[9.2246189, 49.1287460], [9.2247068, 49.1287248], [9.2248836, 49.1286580], [9.2249704, 49.1286107], [9.2250582, 49.1285389], [9.2251387, 49.1284810], [9.2252661, 49.1283906], [9.2253774, 49.1283168], [9.2255289, 49.1282247], [9.2256631, 49.1281598], [9.2257851, 49.1281089], [9.2259112, 49.1280659], [9.2260265, 49.1280369], [9.2262116, 49.1279948], [9.2264905, 49.1279360], [9.2270350, 49.1278280], [9.2273377, 49.1277773], [9.2274387, 49.1277657], [9.2275647, 49.1277552]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Im Krautgarten" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1665738, 49.1564759], [9.1664807, 49.1567178], [9.1664124, 49.1568261], [9.1660318, 49.1577089], [9.1658854, 49.1580416], [9.1658883, 49.1580842], [9.1659008, 49.1581162], [9.1659134, 49.1581472], [9.1659363, 49.1581709], [9.1659726, 49.1581971], [9.1660591, 49.1582198], [9.1661605, 49.1582256], [9.1662756, 49.1582155]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Im Kreuzgrund" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1808037, 49.1492159], [9.1810000, 49.1492814], [9.1812313, 49.1493076], [9.1816131, 49.1493286], [9.1823315, 49.1493769], [9.1824936, 49.1493882], [9.1834790, 49.1494643], [9.1843869, 49.1495155], [9.1846791, 49.1495320], [9.1853771, 49.1495713], [9.1856977, 49.1495798], [9.1858396, 49.1495823]], [[9.1858609, 49.1507018], [9.1857629, 49.1510990]], [[9.1858609, 49.1507018], [9.1885365, 49.1509571], [9.1901445, 49.1512956], [9.1902635, 49.1513254], [9.1903750, 49.1513764], [9.1905003, 49.1515784], [9.1905664, 49.1517608], [9.1905484, 49.1518392], [9.1905344, 49.1519000]], [[9.1858396, 49.1495823], [9.1858626, 49.1496358], [9.1858856, 49.1497975], [9.1858798, 49.1500060], [9.1858609, 49.1507018]], [[9.1857629, 49.1510990], [9.1857318, 49.1512997]], [[9.1857218, 49.1513640], [9.1857130, 49.1514207]], [[9.1857318, 49.1512997], [9.1857218, 49.1513640]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Im Margstall" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1695630, 49.1623586], [9.1698434, 49.1626178], [9.1698474, 49.1626676], [9.1697888, 49.1627205], [9.1692818, 49.1631206], [9.1690182, 49.1632861], [9.1687293, 49.1634297], [9.1684304, 49.1635349], [9.1678822, 49.1637139]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Im Näpfle" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1965803, 49.1764786], [9.1980637, 49.1768877]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Im Neckargarten" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2017958, 49.1567146], [9.2020234, 49.1569526], [9.2021015, 49.1570630], [9.2022163, 49.1571189], [9.2023531, 49.1571420], [9.2026093, 49.1571390]], [[9.2025636, 49.1522894], [9.2025051, 49.1521655], [9.2024473, 49.1520074], [9.2024165, 49.1519331], [9.2023457, 49.1518720]], [[9.2026093, 49.1571390], [9.2028189, 49.1571161], [9.2034069, 49.1570423], [9.2035632, 49.1570221], [9.2036420, 49.1569798], [9.2036860, 49.1569393], [9.2036726, 49.1566793], [9.2036675, 49.1566189], [9.2036067, 49.1563675], [9.2035299, 49.1560431], [9.2027779, 49.1526753], [9.2026729, 49.1524466], [9.2025636, 49.1522894]], [[9.2026093, 49.1571390], [9.2024907, 49.1571807], [9.2023933, 49.1572410], [9.2023584, 49.1572896], [9.2023469, 49.1573564], [9.2023861, 49.1574604], [9.2024492, 49.1575568], [9.2026383, 49.1578388]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Im Riedgrund" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1807597, 49.1849258], [9.1807580, 49.1848145], [9.1806598, 49.1834611], [9.1806514, 49.1833448]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Im Schlegelgrund" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1887776, 49.1686144], [9.1898276, 49.1686357], [9.1906176, 49.1686816], [9.1907890, 49.1686890], [9.1912162, 49.1687280], [9.1917144, 49.1688150], [9.1923926, 49.1689756]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Im Stahlbühl" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2313723, 49.1293838], [9.2314839, 49.1293730], [9.2315716, 49.1293579], [9.2316417, 49.1293325], [9.2319413, 49.1291995], [9.2321827, 49.1290832], [9.2326341, 49.1288612], [9.2326733, 49.1288397], [9.2328563, 49.1287496], [9.2330074, 49.1286897], [9.2331822, 49.1286297], [9.2334359, 49.1285574], [9.2336462, 49.1284927], [9.2339493, 49.1284248], [9.2342961, 49.1283507], [9.2346196, 49.1282987], [9.2355312, 49.1281312], [9.2358911, 49.1280777], [9.2365610, 49.1280133]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Im Sternberg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2535427, 49.1401970], [9.2535541, 49.1402117], [9.2536818, 49.1403385], [9.2539914, 49.1406460], [9.2540716, 49.1406952], [9.2553265, 49.1413797], [9.2572623, 49.1424483]], [[9.2553265, 49.1413797], [9.2551698, 49.1407946], [9.2548989, 49.1403145], [9.2548912, 49.1403041], [9.2546280, 49.1399467], [9.2542973, 49.1395915]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Im Viehtrieb" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1660209, 49.1632488], [9.1659887, 49.1631769], [9.1655545, 49.1626066]], [[9.1655545, 49.1626066], [9.1653971, 49.1624111], [9.1653623, 49.1623412], [9.1653417, 49.1622765]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Im Wannental" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2394456, 49.1349626], [9.2392182, 49.1349729], [9.2391808, 49.1344946]], [[9.2401766, 49.1390297], [9.2400817, 49.1386728], [9.2399704, 49.1382540], [9.2399079, 49.1380048], [9.2397758, 49.1375179], [9.2397515, 49.1373447], [9.2397380, 49.1372483], [9.2397392, 49.1370292], [9.2397594, 49.1368591], [9.2398670, 49.1366404]], [[9.2398670, 49.1366404], [9.2397976, 49.1366017], [9.2397384, 49.1365542], [9.2396952, 49.1365008], [9.2396600, 49.1364449], [9.2396353, 49.1363966], [9.2396188, 49.1363296], [9.2394873, 49.1352946], [9.2394456, 49.1349626]], [[9.2405270, 49.1399807], [9.2405041, 49.1399190], [9.2404504, 49.1397739], [9.2401766, 49.1390297]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Im Weingarten" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1519259, 49.1212432], [9.1517541, 49.1205997], [9.1516905, 49.1203304], [9.1516251, 49.1201111], [9.1515555, 49.1198872]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Imlinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2142656, 49.1663750], [9.2163514, 49.1662696]], [[9.2163514, 49.1662696], [9.2168036, 49.1662417], [9.2171575, 49.1662286], [9.2192996, 49.1661191]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "In den Hecken" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2447995, 49.1231058], [9.2443929, 49.1231682], [9.2440742, 49.1232578]], [[9.2440742, 49.1232578], [9.2438329, 49.1234836], [9.2435166, 49.1238280], [9.2433367, 49.1240886], [9.2431359, 49.1245593], [9.2431559, 49.1247381], [9.2433875, 49.1250530], [9.2435330, 49.1251414], [9.2436308, 49.1253007], [9.2437054, 49.1255484], [9.2437965, 49.1262021], [9.2437515, 49.1272261]], [[9.2460243, 49.1257017], [9.2460297, 49.1256545], [9.2460285, 49.1256083], [9.2460146, 49.1255489], [9.2459313, 49.1252644]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "In der Klinge" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1841464, 49.1846833], [9.1841177, 49.1845444], [9.1839599, 49.1832949], [9.1839444, 49.1831824]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "In der Steig" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1994437, 49.1565310], [9.1995759, 49.1567883]], [[9.1995143, 49.1591111], [9.1995833, 49.1590157], [9.1996876, 49.1588732], [9.1998519, 49.1585312]], [[9.1999261, 49.1581998], [9.1998374, 49.1580514], [9.1997676, 49.1579307], [9.1997600, 49.1578644]], [[9.1995759, 49.1567883], [9.1997435, 49.1572375], [9.1999193, 49.1577376], [9.1999526, 49.1581269], [9.1999261, 49.1581998], [9.1998519, 49.1585312]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Ina-Seidel-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1483794, 49.1911643], [9.1484377, 49.1911617], [9.1484936, 49.1911421], [9.1485690, 49.1910993], [9.1486653, 49.1910194], [9.1487316, 49.1909434], [9.1488203, 49.1908308], [9.1488332, 49.1907932], [9.1488273, 49.1907676], [9.1488031, 49.1907449], [9.1486002, 49.1906575], [9.1481050, 49.1904414], [9.1480155, 49.1904152]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Industrieplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2172782, 49.1537858], [9.2173741, 49.1538754], [9.2174335, 49.1539251], [9.2175452, 49.1540063], [9.2176578, 49.1540277], [9.2179428, 49.1539197]], [[9.2168673, 49.1547348], [9.2169200, 49.1546119], [9.2170534, 49.1544392], [9.2171410, 49.1543309], [9.2172697, 49.1541649], [9.2173066, 49.1540716], [9.2173170, 49.1540385], [9.2173050, 49.1539350], [9.2172782, 49.1537858]], [[9.2177173, 49.1542365], [9.2177293, 49.1542800], [9.2177095, 49.1543351], [9.2176549, 49.1543784], [9.2175832, 49.1544007], [9.2175263, 49.1544038], [9.2174608, 49.1543929], [9.2174269, 49.1543799], [9.2174065, 49.1543686], [9.2173835, 49.1543508], [9.2173577, 49.1543159], [9.2173495, 49.1542800], [9.2173617, 49.1542362], [9.2174062, 49.1541913], [9.2174503, 49.1541702], [9.2174935, 49.1541594], [9.2175420, 49.1541557], [9.2176188, 49.1541671], [9.2176465, 49.1541774], [9.2176695, 49.1541895], [9.2177173, 49.1542365]], [[9.2168673, 49.1547348], [9.2170642, 49.1544791], [9.2172043, 49.1543580], [9.2172832, 49.1543025], [9.2173495, 49.1542800]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Innsbrucker Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2209486, 49.1360371], [9.2213560, 49.1359946], [9.2216802, 49.1359630], [9.2219177, 49.1359403], [9.2224968, 49.1358846], [9.2227992, 49.1358556]], [[9.2165047, 49.1365129], [9.2166028, 49.1364960], [9.2173681, 49.1364076], [9.2191521, 49.1362229], [9.2209486, 49.1360371]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Isolde-Kurz-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2600774, 49.1334898], [9.2601058, 49.1333920], [9.2601026, 49.1333474], [9.2600724, 49.1332792], [9.2598526, 49.1331407], [9.2597358, 49.1330796], [9.2596235, 49.1330450]], [[9.2596235, 49.1330450], [9.2596624, 49.1329719], [9.2595787, 49.1327022], [9.2594355, 49.1323260]], [[9.2601026, 49.1333474], [9.2602501, 49.1332494], [9.2604418, 49.1329991]], [[9.2598526, 49.1331407], [9.2604220, 49.1327031]], [[9.2595787, 49.1327022], [9.2599984, 49.1324972]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Ittlinger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1842161, 49.1434890], [9.1841881, 49.1430119], [9.1841959, 49.1425520]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Jagststraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2146856, 49.1637902], [9.2149060, 49.1643721]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Jahnstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2216523, 49.1292318], [9.2210902, 49.1293063], [9.2206420, 49.1293615], [9.2201989, 49.1294161]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Jakob-Haspel-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1916712, 49.1692184], [9.1916747, 49.1696150], [9.1915743, 49.1696891], [9.1911934, 49.1697861], [9.1905772, 49.1698869], [9.1898304, 49.1699506], [9.1896475, 49.1699537], [9.1892118, 49.1699537], [9.1888129, 49.1699574], [9.1883886, 49.1699617], [9.1881303, 49.1699592], [9.1880370, 49.1699513], [9.1879873, 49.1698994], [9.1879603, 49.1697339], [9.1879546, 49.1697048], [9.1878683, 49.1692648]], [[9.1883886, 49.1699617], [9.1883989, 49.1702262], [9.1883276, 49.1702279]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Jakob-Ramm-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1696355, 49.1137743], [9.1702599, 49.1130418], [9.1700541, 49.1129564], [9.1697287, 49.1128377], [9.1695453, 49.1130392]], [[9.1706772, 49.1132276], [9.1702599, 49.1130418]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Jakobgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2208507, 49.1442386], [9.2210988, 49.1442127], [9.2212977, 49.1441832]], [[9.2212977, 49.1441832], [9.2213451, 49.1441798], [9.2219010, 49.1441482], [9.2222181, 49.1441392], [9.2222494, 49.1440960], [9.2222240, 49.1438097]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Jasminweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1425352, 49.1919964], [9.1426100, 49.1920212]], [[9.1429285, 49.1921349], [9.1432953, 49.1922657], [9.1434697, 49.1923262]], [[9.1426100, 49.1920212], [9.1429285, 49.1921349]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Jägerhaus" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2669100, 49.1327105], [9.2671075, 49.1325752], [9.2670755, 49.1325551], [9.2669651, 49.1324862], [9.2669407, 49.1325029], [9.2668428, 49.1325699], [9.2667675, 49.1326215], [9.2668660, 49.1326830], [9.2669100, 49.1327105]], [[9.2676749, 49.1321898], [9.2673035, 49.1322762], [9.2671621, 49.1323233], [9.2670896, 49.1323548]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Jägerhausstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2465805, 49.1391260], [9.2464381, 49.1391395], [9.2461230, 49.1391679], [9.2458679, 49.1391909], [9.2456846, 49.1392098], [9.2453603, 49.1392537], [9.2447894, 49.1393433], [9.2442884, 49.1394237], [9.2441086, 49.1394526]], [[9.2590103, 49.1347507], [9.2588560, 49.1347555], [9.2587436, 49.1347651], [9.2586249, 49.1348115], [9.2585531, 49.1348576], [9.2580881, 49.1352055], [9.2579931, 49.1352702], [9.2577963, 49.1354057], [9.2574787, 49.1356413], [9.2568077, 49.1360717]], [[9.2510146, 49.1391299], [9.2509965, 49.1390747], [9.2514076, 49.1387607], [9.2513183, 49.1385820], [9.2513024, 49.1385501], [9.2512910, 49.1385274]], [[9.2392099, 49.1404283], [9.2393469, 49.1404612], [9.2393945, 49.1404599], [9.2394271, 49.1404499], [9.2395443, 49.1403061], [9.2396059, 49.1402768], [9.2396915, 49.1402549], [9.2399439, 49.1402197], [9.2402956, 49.1401753], [9.2417276, 49.1399618], [9.2420333, 49.1399176], [9.2421624, 49.1398989], [9.2423083, 49.1398953], [9.2423817, 49.1398983]], [[9.2399439, 49.1402197], [9.2398909, 49.1403921], [9.2398238, 49.1405689], [9.2397822, 49.1406935], [9.2396883, 49.1408918], [9.2396226, 49.1410225], [9.2395207, 49.1411918], [9.2394329, 49.1413231], [9.2394067, 49.1413901]], [[9.2553048, 49.1371210], [9.2549265, 49.1373697], [9.2546185, 49.1375663]], [[9.2439726, 49.1394745], [9.2439344, 49.1394802], [9.2438642, 49.1394908], [9.2434691, 49.1395504], [9.2433719, 49.1395645], [9.2430627, 49.1396048]], [[9.2566029, 49.1362051], [9.2562847, 49.1360039], [9.2561858, 49.1360139]], [[9.2465805, 49.1391260], [9.2465797, 49.1390982], [9.2465912, 49.1390743], [9.2466177, 49.1390509], [9.2466590, 49.1390341], [9.2467084, 49.1390288], [9.2467543, 49.1390359], [9.2467812, 49.1390466], [9.2468158, 49.1390749], [9.2468280, 49.1391053], [9.2468205, 49.1391390], [9.2467872, 49.1391712], [9.2467470, 49.1391872], [9.2466997, 49.1391923], [9.2466525, 49.1391853], [9.2466200, 49.1391716], [9.2465972, 49.1391539], [9.2465805, 49.1391260]], [[9.2419752, 49.1397664], [9.2417917, 49.1397937], [9.2415518, 49.1398312], [9.2405270, 49.1399807]], [[9.2546185, 49.1375663], [9.2545481, 49.1376139]], [[9.2568077, 49.1360717], [9.2566029, 49.1362051], [9.2558929, 49.1367079], [9.2557505, 49.1368075], [9.2553048, 49.1371210]], [[9.2545481, 49.1376139], [9.2544995, 49.1376384], [9.2538552, 49.1379632], [9.2535591, 49.1380992], [9.2524645, 49.1386111], [9.2521247, 49.1387581], [9.2518151, 49.1388921], [9.2515297, 49.1390090], [9.2512375, 49.1390909], [9.2510146, 49.1391299], [9.2508229, 49.1391635], [9.2505060, 49.1392022], [9.2500047, 49.1392302], [9.2491303, 49.1391851], [9.2481116, 49.1391158], [9.2475597, 49.1391064], [9.2474530, 49.1391060], [9.2471589, 49.1391050], [9.2469486, 49.1391043], [9.2468280, 49.1391053]], [[9.2441086, 49.1394526], [9.2439726, 49.1394745]], [[9.2423817, 49.1398983], [9.2424416, 49.1400302]], [[9.2430627, 49.1396048], [9.2427453, 49.1396551], [9.2421512, 49.1397410], [9.2419752, 49.1397664]], [[9.2405270, 49.1399807], [9.2402446, 49.1400221], [9.2398050, 49.1400821], [9.2395632, 49.1401128], [9.2394354, 49.1401280]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Jäkleinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1833234, 49.1267704], [9.1834389, 49.1268380], [9.1841499, 49.1270178], [9.1848665, 49.1271844], [9.1850264, 49.1272190], [9.1855659, 49.1273239], [9.1858490, 49.1273854], [9.1873702, 49.1277294], [9.1876862, 49.1278032], [9.1881519, 49.1279172], [9.1883180, 49.1279508], [9.1884065, 49.1279654], [9.1885330, 49.1279856]], [[9.1893755, 49.1279151], [9.1893083, 49.1279678], [9.1892185, 49.1279986], [9.1891508, 49.1280122], [9.1890964, 49.1280231], [9.1888303, 49.1280354], [9.1886053, 49.1280209], [9.1885330, 49.1279856]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Johann-Strauß-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1487367, 49.2001858], [9.1491229, 49.1999240], [9.1492873, 49.1997949]], [[9.1504089, 49.2004469], [9.1498395, 49.2008322]], [[9.1504089, 49.2004469], [9.1504781, 49.2004034], [9.1505153, 49.2003952], [9.1505432, 49.2004084], [9.1510798, 49.2007667]], [[9.1494611, 49.1998186], [9.1494870, 49.1998480], [9.1497308, 49.2000027], [9.1500793, 49.2002325], [9.1504089, 49.2004469]], [[9.1512090, 49.1997020], [9.1507234, 49.1993934], [9.1506732, 49.1992600], [9.1506371, 49.1990821], [9.1506297, 49.1988493], [9.1506308, 49.1985569], [9.1506403, 49.1984868], [9.1506477, 49.1984329], [9.1507958, 49.1983244]], [[9.1492873, 49.1997949], [9.1493607, 49.1998142], [9.1494611, 49.1998186], [9.1496172, 49.1998112], [9.1497190, 49.1997984], [9.1498080, 49.1997733], [9.1499210, 49.1997187], [9.1499844, 49.1996495], [9.1500300, 49.1995776], [9.1500534, 49.1994985], [9.1500489, 49.1990924], [9.1500545, 49.1988904], [9.1500382, 49.1988314], [9.1499983, 49.1987804], [9.1497815, 49.1986376], [9.1496794, 49.1985870], [9.1495896, 49.1985671], [9.1494905, 49.1985626], [9.1493570, 49.1985888], [9.1485842, 49.1990836], [9.1485293, 49.1991473], [9.1485082, 49.1992091], [9.1485229, 49.1992851], [9.1485586, 49.1993421], [9.1486298, 49.1993988], [9.1489675, 49.1996054], [9.1491697, 49.1997354], [9.1492873, 49.1997949]], [[9.1505244, 49.1981406], [9.1502906, 49.1982991], [9.1502016, 49.1983547], [9.1500606, 49.1982626]], [[9.1507958, 49.1983244], [9.1505244, 49.1981406]], [[9.1502906, 49.1982991], [9.1505681, 49.1984700], [9.1506403, 49.1984868]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Johannesburger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1707408, 49.1161297], [9.1709832, 49.1155952], [9.1710582, 49.1154474], [9.1710766, 49.1154114], [9.1711928, 49.1152391], [9.1713749, 49.1150704], [9.1715053, 49.1149705], [9.1716931, 49.1148565], [9.1718938, 49.1147455], [9.1722646, 49.1145832], [9.1726655, 49.1144002], [9.1727679, 49.1143199], [9.1728419, 49.1142428]], [[9.1728419, 49.1142428], [9.1730452, 49.1139813], [9.1731790, 49.1137680], [9.1732372, 49.1136651], [9.1732997, 49.1134956], [9.1733410, 49.1133847], [9.1734748, 49.1131351], [9.1736089, 49.1128380], [9.1736479, 49.1127094]], [[9.1736479, 49.1127094], [9.1736293, 49.1125170], [9.1735652, 49.1122426], [9.1734919, 49.1119668], [9.1733937, 49.1116342], [9.1732457, 49.1111329], [9.1731269, 49.1107349]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Johannisgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2171423, 49.1442049], [9.2175173, 49.1441533], [9.2173958, 49.1438211]], [[9.2173958, 49.1438211], [9.2175004, 49.1437965]], [[9.2175004, 49.1437965], [9.2177131, 49.1437610]], [[9.2177131, 49.1437610], [9.2177526, 49.1437566]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "John-F.-Kennedy-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2175090, 49.1240433], [9.2176156, 49.1240416], [9.2177309, 49.1240398], [9.2179727, 49.1240373], [9.2185326, 49.1240302], [9.2194607, 49.1240250], [9.2195783, 49.1240240], [9.2196114, 49.1240237], [9.2211881, 49.1240364], [9.2213756, 49.1240340], [9.2215890, 49.1240314]], [[9.2196114, 49.1240237], [9.2196196, 49.1249576]], [[9.2185201, 49.1249555], [9.2185308, 49.1241667], [9.2185326, 49.1240302]], [[9.2215890, 49.1240314], [9.2222144, 49.1240233], [9.2224100, 49.1240172]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Joseph-Lanner-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1526438, 49.1993310], [9.1523867, 49.1994132], [9.1517715, 49.1995731], [9.1516270, 49.1996116], [9.1514234, 49.1996566], [9.1512090, 49.1997020], [9.1510190, 49.1997334], [9.1508162, 49.1997593], [9.1502756, 49.1998171], [9.1501707, 49.1998167], [9.1500710, 49.1997932], [9.1499210, 49.1997187]], [[9.1502756, 49.1998171], [9.1502937, 49.1998439], [9.1509946, 49.2003019]], [[9.1516270, 49.1996116], [9.1518817, 49.1997880], [9.1520690, 49.1999134], [9.1521875, 49.1999917], [9.1523401, 49.2000943], [9.1526727, 49.2003042]], [[9.1518817, 49.1997880], [9.1513435, 49.2001035]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Jörg-Metzler-Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1795514, 49.1514376], [9.1794690, 49.1518184], [9.1793996, 49.1521911], [9.1793995, 49.1522664], [9.1794321, 49.1526915], [9.1794519, 49.1529667]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Jörg-Ratgeb-Platz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2079891, 49.1204253], [9.2079253, 49.1204158], [9.2078456, 49.1204087]], [[9.2066032, 49.1204126], [9.2066873, 49.1204119], [9.2072810, 49.1204070], [9.2078456, 49.1204087]], [[9.2079901, 49.1203643], [9.2085668, 49.1203625], [9.2085936, 49.1203599], [9.2086285, 49.1203555], [9.2086714, 49.1203432], [9.2087023, 49.1203388], [9.2089651, 49.1203371]], [[9.2072810, 49.1204070], [9.2072810, 49.1199462], [9.2072850, 49.1199269], [9.2072997, 49.1199163], [9.2073225, 49.1199128], [9.2073702, 49.1199124], [9.2079827, 49.1199106]], [[9.2079827, 49.1199106], [9.2080684, 49.1198698], [9.2081203, 49.1198582], [9.2084717, 49.1198658], [9.2085193, 49.1198628], [9.2085848, 49.1198488], [9.2087421, 49.1197970]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Jörgstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2251628, 49.1560636], [9.2256644, 49.1559651], [9.2262986, 49.1558599], [9.2264670, 49.1558459], [9.2266520, 49.1558450], [9.2269918, 49.1559080], [9.2271840, 49.1559260]], [[9.2251628, 49.1560636], [9.2250842, 49.1560602], [9.2246678, 49.1561349]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kaiser-Friedrich-Platz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2119702, 49.1410489], [9.2119838, 49.1405936], [9.2119866, 49.1404974]], [[9.2115058, 49.1410041], [9.2115110, 49.1405509], [9.2120127, 49.1405534], [9.2120076, 49.1410066], [9.2115058, 49.1410041]], [[9.2119866, 49.1404974], [9.2115488, 49.1404976], [9.2114352, 49.1404819]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kaiserslauterner Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1748069, 49.1565206], [9.1753255, 49.1571845], [9.1757830, 49.1577755], [9.1758626, 49.1578706], [9.1759347, 49.1579639], [9.1759878, 49.1580325], [9.1761327, 49.1581804], [9.1762865, 49.1583109], [9.1763587, 49.1583629], [9.1763926, 49.1583873], [9.1765240, 49.1584821], [9.1767046, 49.1587121], [9.1768815, 49.1589373], [9.1772651, 49.1594980], [9.1775305, 49.1598171], [9.1776779, 49.1599444], [9.1779211, 49.1600619], [9.1782531, 49.1601562], [9.1785233, 49.1602329], [9.1789583, 49.1603565], [9.1798580, 49.1606278], [9.1799312, 49.1606924]], [[9.1789588, 49.1586591], [9.1785972, 49.1586586], [9.1782225, 49.1586828], [9.1780102, 49.1586806], [9.1778304, 49.1586699], [9.1777918, 49.1586676], [9.1775997, 49.1586448], [9.1773995, 49.1586098], [9.1769941, 49.1585309], [9.1766036, 49.1584496], [9.1765240, 49.1584821]], [[9.1759347, 49.1579639], [9.1763896, 49.1577643], [9.1767533, 49.1576047]], [[9.1763926, 49.1583873], [9.1767833, 49.1581191], [9.1768320, 49.1580638], [9.1768756, 49.1580242], [9.1768965, 49.1579620], [9.1769215, 49.1579372]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kaiserstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2161989, 49.1422998], [9.2162070, 49.1422981], [9.2163017, 49.1422858], [9.2165449, 49.1422507], [9.2167568, 49.1422174], [9.2168158, 49.1422113], [9.2168628, 49.1422157], [9.2169493, 49.1422333]], [[9.2169493, 49.1422333], [9.2170381, 49.1422207], [9.2181901, 49.1420532], [9.2185645, 49.1420126], [9.2189464, 49.1419733], [9.2190063, 49.1419664], [9.2198105, 49.1418732], [9.2199518, 49.1418564], [9.2201050, 49.1418378], [9.2202381, 49.1418192], [9.2204358, 49.1417913], [9.2206603, 49.1417598], [9.2210498, 49.1417042], [9.2212904, 49.1416729], [9.2216682, 49.1416209], [9.2217836, 49.1416097], [9.2218870, 49.1416024], [9.2219720, 49.1415961], [9.2220757, 49.1415872]], [[9.2169493, 49.1422333], [9.2168885, 49.1422771], [9.2168601, 49.1422902], [9.2168158, 49.1423043], [9.2166160, 49.1423358], [9.2164672, 49.1423551], [9.2163367, 49.1423732], [9.2162397, 49.1423864], [9.2162348, 49.1423873]], [[9.2220757, 49.1415872], [9.2221148, 49.1415839]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kalistraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2134902, 49.1482414], [9.2133054, 49.1481483], [9.2131648, 49.1480874], [9.2129649, 49.1480124], [9.2125837, 49.1478900], [9.2122844, 49.1478011], [9.2116838, 49.1476507]], [[9.2077486, 49.1517222], [9.2076837, 49.1516278], [9.2076285, 49.1515887], [9.2075917, 49.1515675]], [[9.2100733, 49.1479266], [9.2101262, 49.1478530], [9.2101929, 49.1477721], [9.2104023, 49.1476517], [9.2105039, 49.1475835], [9.2105717, 49.1475338], [9.2106107, 49.1474972]], [[9.2110126, 49.1475131], [9.2109458, 49.1475916], [9.2108845, 49.1476156], [9.2108053, 49.1476240], [9.2107607, 49.1476196], [9.2106892, 49.1475965], [9.2106423, 49.1475629], [9.2106107, 49.1474972], [9.2106226, 49.1474467], [9.2106848, 49.1473893], [9.2107492, 49.1473661], [9.2108279, 49.1473597], [9.2108965, 49.1473712], [9.2109379, 49.1473876], [9.2109769, 49.1474142], [9.2110129, 49.1474716], [9.2110126, 49.1475131]], [[9.2100733, 49.1479266], [9.2099430, 49.1480362], [9.2094387, 49.1485184], [9.2089466, 49.1490179], [9.2086188, 49.1493556], [9.2084206, 49.1496068], [9.2083047, 49.1497909], [9.2082164, 49.1499652], [9.2081485, 49.1501751], [9.2081095, 49.1503539], [9.2080686, 49.1505884]], [[9.2107607, 49.1476196], [9.2106750, 49.1476509]], [[9.2117353, 49.1475935], [9.2118178, 49.1476184], [9.2125986, 49.1478074], [9.2129600, 49.1478783], [9.2134093, 49.1479171], [9.2137207, 49.1479301]], [[9.2106750, 49.1476509], [9.2106271, 49.1476699], [9.2104499, 49.1477264], [9.2102659, 49.1478198], [9.2100733, 49.1479266]], [[9.2069478, 49.1516304], [9.2070014, 49.1515836], [9.2070470, 49.1515707], [9.2071517, 49.1515352]], [[9.2077486, 49.1517222], [9.2077735, 49.1518391], [9.2077938, 49.1519449], [9.2078513, 49.1521947], [9.2080989, 49.1528561], [9.2081236, 49.1529657], [9.2080603, 49.1531574], [9.2079885, 49.1532305], [9.2078663, 49.1533323], [9.2077670, 49.1533875], [9.2076651, 49.1534256], [9.2075330, 49.1534669], [9.2073751, 49.1534955], [9.2071695, 49.1535205], [9.2068821, 49.1535426], [9.2065094, 49.1535576], [9.2064395, 49.1535605], [9.2061803, 49.1535715]], [[9.2077743, 49.1513668], [9.2077368, 49.1514085], [9.2077192, 49.1514504], [9.2077263, 49.1515216]], [[9.2080686, 49.1505884], [9.2081018, 49.1506582], [9.2080911, 49.1507359]], [[9.2078993, 49.1512529], [9.2078269, 49.1513327], [9.2077743, 49.1513668]], [[9.2077001, 49.1512627], [9.2077494, 49.1512125], [9.2078205, 49.1511368], [9.2078616, 49.1510807], [9.2078857, 49.1510315]], [[9.2080167, 49.1510584], [9.2079799, 49.1511370]], [[9.2075917, 49.1515675], [9.2074298, 49.1515387]], [[9.2077263, 49.1515216], [9.2077462, 49.1515939], [9.2077486, 49.1517222]], [[9.2075153, 49.1513931], [9.2076751, 49.1512852], [9.2077001, 49.1512627]], [[9.2071517, 49.1515352], [9.2072507, 49.1515035], [9.2074200, 49.1514362], [9.2075153, 49.1513931]], [[9.2080911, 49.1507359], [9.2080673, 49.1508712], [9.2080449, 49.1509664], [9.2080167, 49.1510584]], [[9.2079799, 49.1511370], [9.2079606, 49.1511737], [9.2079277, 49.1512233], [9.2078993, 49.1512529]], [[9.2078857, 49.1510315], [9.2079230, 49.1509713], [9.2079464, 49.1509063], [9.2079878, 49.1507889], [9.2080124, 49.1506520], [9.2080686, 49.1505884]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kanalstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1998050, 49.1453080], [9.1994915, 49.1444145], [9.1993080, 49.1439767], [9.1988514, 49.1428426], [9.1987289, 49.1425384]], [[9.2178385, 49.1876449], [9.2179050, 49.1871505], [9.2180283, 49.1850933], [9.2179867, 49.1847333], [9.2178850, 49.1843817], [9.2177300, 49.1840467], [9.2174935, 49.1836473], [9.2173075, 49.1833248], [9.2171875, 49.1831095], [9.2171447, 49.1829851], [9.2171338, 49.1828595], [9.2171619, 49.1827454], [9.2172228, 49.1826354], [9.2173520, 49.1824852]], [[9.1983284, 49.1426105], [9.1983900, 49.1427578]], [[9.1987289, 49.1425384], [9.1983284, 49.1426105], [9.1981724, 49.1426385]], [[9.1987289, 49.1425384], [9.1987157, 49.1425055], [9.1985961, 49.1422084], [9.1985365, 49.1420568]], [[9.1984072, 49.1418463], [9.1982992, 49.1417787]], [[9.1985365, 49.1420568], [9.1984764, 49.1419200], [9.1984072, 49.1418463]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Kantweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2327198, 49.1342757], [9.2326498, 49.1338188], [9.2326066, 49.1334557], [9.2326293, 49.1333963], [9.2327408, 49.1331792]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Kapellenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1175275, 49.1806421], [9.1176641, 49.1808574], [9.1177173, 49.1809389], [9.1177816, 49.1810376], [9.1178997, 49.1811885], [9.1177766, 49.1812441], [9.1176576, 49.1812629], [9.1174117, 49.1812875], [9.1162427, 49.1814652], [9.1159689, 49.1815102], [9.1159226, 49.1817973], [9.1158871, 49.1819470], [9.1158538, 49.1820424], [9.1157775, 49.1821402], [9.1157024, 49.1821645], [9.1155776, 49.1821894], [9.1146698, 49.1823459], [9.1137479, 49.1825365]], [[9.1178997, 49.1811885], [9.1181468, 49.1810168], [9.1182289, 49.1809382], [9.1183649, 49.1808080], [9.1185001, 49.1807018], [9.1186506, 49.1806136], [9.1189182, 49.1805276], [9.1191855, 49.1804936], [9.1196893, 49.1804262], [9.1199830, 49.1803777], [9.1201770, 49.1803694], [9.1202926, 49.1805339], [9.1203951, 49.1806830], [9.1204580, 49.1807745], [9.1205107, 49.1808316], [9.1206514, 49.1809838], [9.1207084, 49.1810455], [9.1207817, 49.1811565], [9.1207965, 49.1811983], [9.1207884, 49.1812696], [9.1207419, 49.1813536], [9.1207159, 49.1814378], [9.1207259, 49.1815042], [9.1209293, 49.1819365]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kappelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1888730, 49.1301845], [9.1889557, 49.1301750], [9.1895903, 49.1301018], [9.1902324, 49.1300200], [9.1903268, 49.1300080], [9.1904184, 49.1299955], [9.1915284, 49.1298438], [9.1925402, 49.1297291], [9.1925901, 49.1297243], [9.1930678, 49.1296603]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Karl-Betz-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2372646, 49.1392272], [9.2388557, 49.1391011], [9.2389340, 49.1390688], [9.2390004, 49.1389447], [9.2390609, 49.1387648], [9.2391924, 49.1383743], [9.2392242, 49.1382911]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Karl-Döft-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1961965, 49.1181973], [9.1962289, 49.1182726]], [[9.1962289, 49.1182726], [9.1962949, 49.1187123], [9.1963034, 49.1187721], [9.1963405, 49.1190352], [9.1963551, 49.1191530], [9.1963851, 49.1193386], [9.1963924, 49.1194037], [9.1963950, 49.1195226], [9.1964025, 49.1196851]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Karl-Jäger-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2292753, 49.1315729], [9.2292714, 49.1314138], [9.2292895, 49.1312101], [9.2293016, 49.1309934], [9.2293176, 49.1307652], [9.2293231, 49.1306449], [9.2293244, 49.1306160], [9.2293297, 49.1305028], [9.2293485, 49.1301957], [9.2293646, 49.1299500], [9.2293686, 49.1298201], [9.2293686, 49.1297903], [9.2293579, 49.1297456]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Karl-Marx-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1972983, 49.1446295], [9.1972776, 49.1445671], [9.1971727, 49.1442653]], [[9.1956248, 49.1426093], [9.1949705, 49.1421451], [9.1948357, 49.1420104]], [[9.1971727, 49.1442653], [9.1970467, 49.1439437], [9.1969160, 49.1437013], [9.1967133, 49.1434650], [9.1964361, 49.1432218], [9.1963200, 49.1431387], [9.1956248, 49.1426093]], [[9.1977937, 49.1460267], [9.1977189, 49.1458354], [9.1974064, 49.1449261], [9.1973709, 49.1448272], [9.1972983, 49.1446295]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Karl-May-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1425474, 49.1919812], [9.1425352, 49.1919964], [9.1424569, 49.1920999], [9.1423352, 49.1921874], [9.1422234, 49.1922323], [9.1420700, 49.1922390], [9.1419144, 49.1922261], [9.1417581, 49.1921898], [9.1416342, 49.1921452], [9.1415338, 49.1920699], [9.1414804, 49.1919789]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Karl-Wulle-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2538462, 49.1410856], [9.2538363, 49.1411263], [9.2537959, 49.1411589], [9.2537239, 49.1411828], [9.2536431, 49.1412073], [9.2532974, 49.1412528], [9.2522017, 49.1413944], [9.2517499, 49.1414534], [9.2512903, 49.1415134], [9.2510519, 49.1415373], [9.2503698, 49.1415785], [9.2501765, 49.1415961], [9.2499430, 49.1416327], [9.2497348, 49.1416733], [9.2492837, 49.1417659], [9.2491441, 49.1418357], [9.2490778, 49.1418945], [9.2490098, 49.1420285], [9.2489857, 49.1421110], [9.2489188, 49.1423936], [9.2488724, 49.1425892], [9.2488344, 49.1426769], [9.2487706, 49.1427652], [9.2485760, 49.1428592], [9.2480665, 49.1430773]], [[9.2486154, 49.1413974], [9.2487332, 49.1413861], [9.2487772, 49.1413881], [9.2488297, 49.1413893], [9.2491314, 49.1414210], [9.2491829, 49.1414346], [9.2492088, 49.1414695], [9.2492837, 49.1417659]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Karl-Wüst-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2238025, 49.1680184], [9.2244856, 49.1680032], [9.2249558, 49.1680121]], [[9.2249030, 49.1681155], [9.2244224, 49.1681046], [9.2242497, 49.1681051], [9.2238117, 49.1681095]], [[9.2190124, 49.1689565], [9.2195039, 49.1688636], [9.2201691, 49.1687290], [9.2221884, 49.1683030], [9.2232091, 49.1680857], [9.2238025, 49.1680184]], [[9.2252980, 49.1684709], [9.2252742, 49.1683494], [9.2252153, 49.1682375], [9.2251779, 49.1682131], [9.2251466, 49.1681926], [9.2250773, 49.1681706], [9.2249785, 49.1681444], [9.2249030, 49.1681155]], [[9.2249558, 49.1680121], [9.2251876, 49.1680173], [9.2252427, 49.1680216], [9.2254185, 49.1680350]], [[9.2095251, 49.1693945], [9.2097656, 49.1694135], [9.2102970, 49.1694556], [9.2105757, 49.1694733], [9.2115737, 49.1695606], [9.2122695, 49.1696174], [9.2128163, 49.1696496], [9.2133786, 49.1696610], [9.2137179, 49.1696601], [9.2138934, 49.1696556], [9.2140635, 49.1696457]], [[9.2097936, 49.1695400], [9.2095835, 49.1695230], [9.2095414, 49.1695201]], [[9.2255849, 49.1681351], [9.2253925, 49.1681245]], [[9.2166815, 49.1693255], [9.2173899, 49.1692147]], [[9.2166955, 49.1694404], [9.2164002, 49.1694834], [9.2154974, 49.1696153], [9.2149907, 49.1696773], [9.2148776, 49.1696911], [9.2146179, 49.1697100], [9.2142225, 49.1697389], [9.2140462, 49.1697458], [9.2136744, 49.1697603], [9.2131203, 49.1697607], [9.2126338, 49.1697434], [9.2122399, 49.1697132]], [[9.2189944, 49.1690832], [9.2184723, 49.1691658], [9.2181683, 49.1692146]], [[9.2238117, 49.1681095], [9.2235888, 49.1681258], [9.2233682, 49.1681508], [9.2229861, 49.1682177], [9.2226169, 49.1682996], [9.2215171, 49.1685428], [9.2208289, 49.1686903]], [[9.2208289, 49.1686903], [9.2201557, 49.1688564]], [[9.2181683, 49.1692146], [9.2170832, 49.1693821], [9.2166955, 49.1694404]], [[9.2173899, 49.1692147], [9.2187564, 49.1690078], [9.2190124, 49.1689565]], [[9.2140635, 49.1696457], [9.2146093, 49.1696073], [9.2150526, 49.1695613]], [[9.2201557, 49.1688564], [9.2192847, 49.1690263], [9.2189944, 49.1690832]], [[9.2150526, 49.1695613], [9.2155080, 49.1695046], [9.2163772, 49.1693755], [9.2166815, 49.1693255]], [[9.2115126, 49.1696594], [9.2110528, 49.1696247]], [[9.2253925, 49.1681245], [9.2252415, 49.1681220], [9.2249030, 49.1681155]], [[9.2254185, 49.1680350], [9.2256075, 49.1680455]], [[9.2122399, 49.1697132], [9.2117583, 49.1696776], [9.2115126, 49.1696594]], [[9.2110528, 49.1696247], [9.2102463, 49.1695692], [9.2101780, 49.1695630], [9.2097936, 49.1695400]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Karlsruher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2016540, 49.1380413], [9.2019792, 49.1380011], [9.2023279, 49.1379602]], [[9.2019920, 49.1381044], [9.2016847, 49.1381243]], [[9.2077546, 49.1385821], [9.2080968, 49.1385757], [9.2082357, 49.1385603], [9.2084003, 49.1385283]], [[9.2089768, 49.1384485], [9.2085086, 49.1386064], [9.2081849, 49.1386714], [9.2080803, 49.1386864]], [[9.2076132, 49.1386999], [9.2073766, 49.1386792], [9.2068281, 49.1386307], [9.2065728, 49.1386005]], [[9.2042419, 49.1382762], [9.2040918, 49.1382504]], [[9.2080803, 49.1386864], [9.2078733, 49.1387027], [9.2077652, 49.1387083], [9.2076132, 49.1386999]], [[9.2084003, 49.1385283], [9.2087450, 49.1384104], [9.2088961, 49.1383359], [9.2091075, 49.1382318]], [[9.2063519, 49.1384860], [9.2065868, 49.1385109], [9.2068681, 49.1385342], [9.2073585, 49.1385670], [9.2076666, 49.1385787], [9.2077546, 49.1385821]], [[9.2058687, 49.1385141], [9.2049884, 49.1383858]], [[9.2023279, 49.1379602], [9.2025764, 49.1379516], [9.2027643, 49.1379495]], [[9.2040918, 49.1382504], [9.2039364, 49.1382261], [9.2036050, 49.1381734]], [[9.2065728, 49.1386005], [9.2063070, 49.1385691], [9.2058687, 49.1385141]], [[9.2049884, 49.1383858], [9.2044338, 49.1383049], [9.2042419, 49.1382762]], [[9.2027643, 49.1379495], [9.2029920, 49.1379603], [9.2032421, 49.1379879], [9.2036144, 49.1380371], [9.2039793, 49.1380933]], [[9.2039793, 49.1380933], [9.2041102, 49.1381181], [9.2042782, 49.1381438], [9.2044813, 49.1381761], [9.2063519, 49.1384860]], [[9.2036050, 49.1381734], [9.2033954, 49.1381401], [9.2029984, 49.1380927], [9.2028215, 49.1380790], [9.2025782, 49.1380722], [9.2022384, 49.1380851], [9.2019920, 49.1381044]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Karlstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2382131, 49.1420092], [9.2381821, 49.1420349], [9.2381346, 49.1420579]], [[9.2354520, 49.1422752], [9.2352950, 49.1422836], [9.2351816, 49.1422911], [9.2345538, 49.1423383], [9.2342594, 49.1423611], [9.2339675, 49.1423838], [9.2338071, 49.1423962], [9.2332147, 49.1424317], [9.2327079, 49.1424633], [9.2325967, 49.1424710], [9.2315691, 49.1425430]], [[9.2315691, 49.1425430], [9.2314352, 49.1425514]], [[9.2215768, 49.1432620], [9.2215371, 49.1432655], [9.2207455, 49.1433436]], [[9.2371416, 49.1426990], [9.2371925, 49.1426534], [9.2371979, 49.1426235], [9.2371336, 49.1422546], [9.2371185, 49.1421610]], [[9.2364174, 49.1429639], [9.2363637, 49.1429253], [9.2363181, 49.1428464], [9.2362511, 49.1426972], [9.2361947, 49.1425691], [9.2361411, 49.1424884], [9.2361036, 49.1424516], [9.2360848, 49.1424095], [9.2360562, 49.1423249], [9.2360308, 49.1422357]], [[9.2331679, 49.1419876], [9.2331853, 49.1419937], [9.2332041, 49.1420078], [9.2332175, 49.1420297], [9.2332189, 49.1420516], [9.2332159, 49.1422820], [9.2332147, 49.1424317]], [[9.2314352, 49.1425514], [9.2310096, 49.1426019]], [[9.2285935, 49.1427434], [9.2289930, 49.1426667], [9.2290027, 49.1426655]], [[9.2285935, 49.1427434], [9.2285639, 49.1427440], [9.2284098, 49.1427516], [9.2276035, 49.1428032], [9.2273148, 49.1428245]], [[9.2343521, 49.1426245], [9.2343105, 49.1426228], [9.2342931, 49.1426035], [9.2342700, 49.1424376], [9.2342594, 49.1423611]], [[9.2346123, 49.1426649], [9.2345683, 49.1424194], [9.2345538, 49.1423383]], [[9.2298120, 49.1426939], [9.2295907, 49.1427041], [9.2289812, 49.1427322], [9.2286793, 49.1427449], [9.2285935, 49.1427434]], [[9.2299672, 49.1425742], [9.2301559, 49.1425683], [9.2304401, 49.1425595], [9.2307153, 49.1425576], [9.2309975, 49.1425558], [9.2314352, 49.1425514]], [[9.2228907, 49.1431581], [9.2228197, 49.1431620]], [[9.2224029, 49.1431925], [9.2220311, 49.1432274], [9.2216355, 49.1432593], [9.2215768, 49.1432620]], [[9.2299796, 49.1426806], [9.2298120, 49.1426939]], [[9.2224029, 49.1431925], [9.2225043, 49.1431851]], [[9.2297942, 49.1425812], [9.2299672, 49.1425742]], [[9.2290027, 49.1426655], [9.2295744, 49.1425992], [9.2297942, 49.1425812]], [[9.2310096, 49.1426019], [9.2301700, 49.1426663], [9.2299796, 49.1426806]], [[9.2381346, 49.1420579], [9.2380781, 49.1420763], [9.2379758, 49.1420943]], [[9.2379758, 49.1420943], [9.2377597, 49.1421129], [9.2377011, 49.1421176], [9.2375962, 49.1421261], [9.2371185, 49.1421610], [9.2369578, 49.1421728], [9.2360308, 49.1422357], [9.2357177, 49.1422571], [9.2354520, 49.1422752]], [[9.2231701, 49.1431338], [9.2228907, 49.1431581]], [[9.2234094, 49.1431170], [9.2231701, 49.1431338]], [[9.2266550, 49.1428733], [9.2263956, 49.1428968], [9.2262387, 49.1429102], [9.2256379, 49.1429527], [9.2254573, 49.1429669], [9.2251822, 49.1429885], [9.2248462, 49.1430156], [9.2242237, 49.1430595], [9.2239219, 49.1430808], [9.2236063, 49.1431031], [9.2234094, 49.1431170]], [[9.2273148, 49.1428245], [9.2266550, 49.1428733]], [[9.2225860, 49.1431740], [9.2227281, 49.1431681]], [[9.2228197, 49.1431620], [9.2227281, 49.1431681]], [[9.2225043, 49.1431851], [9.2225860, 49.1431740]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Karmeliterstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2284098, 49.1427516], [9.2284221, 49.1428503], [9.2284713, 49.1431765], [9.2284777, 49.1432091], [9.2285093, 49.1433700], [9.2285243, 49.1434638], [9.2286079, 49.1439012], [9.2286195, 49.1439545], [9.2288428, 49.1448265], [9.2289422, 49.1451777], [9.2289821, 49.1453189], [9.2290224, 49.1454703], [9.2290403, 49.1455789], [9.2290809, 49.1458742]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kasernengasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2181205, 49.1418025], [9.2181123, 49.1417327], [9.2181320, 49.1415641]], [[9.2181848, 49.1419780], [9.2181205, 49.1418025]], [[9.2181320, 49.1415641], [9.2181289, 49.1415006]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kastanienweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1846904, 49.1461824], [9.1847654, 49.1462315], [9.1850532, 49.1464905], [9.1850652, 49.1465016], [9.1850899, 49.1465297], [9.1851384, 49.1466068], [9.1851816, 49.1466908], [9.1852521, 49.1468292], [9.1853107, 49.1469970], [9.1853706, 49.1471701], [9.1854050, 49.1474234], [9.1854212, 49.1475232], [9.1854572, 49.1479311], [9.1854587, 49.1480106], [9.1854576, 49.1481172], [9.1854732, 49.1483295], [9.1854777, 49.1483934], [9.1854873, 49.1486103], [9.1854875, 49.1489073], [9.1856504, 49.1492574], [9.1857296, 49.1493879]], [[9.1853771, 49.1495713], [9.1854120, 49.1489928], [9.1854875, 49.1489073]], [[9.1845872, 49.1470150], [9.1846782, 49.1466166], [9.1847789, 49.1465881]], [[9.1847789, 49.1465881], [9.1849607, 49.1465953], [9.1850899, 49.1465297]], [[9.1857296, 49.1493879], [9.1858396, 49.1495823]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kastellstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1984194, 49.1444312], [9.1983149, 49.1441326]], [[9.1978693, 49.1432375], [9.1977610, 49.1430146]], [[9.1971524, 49.1427570], [9.1975781, 49.1426663], [9.1975181, 49.1425393]], [[9.1971321, 49.1427245], [9.1968429, 49.1427796], [9.1967523, 49.1426249]], [[9.1975665, 49.1433962], [9.1980347, 49.1432871], [9.1981932, 49.1435561], [9.1983403, 49.1435260], [9.1984414, 49.1437305]], [[9.1973684, 49.1430945], [9.1977610, 49.1430146]], [[9.1967046, 49.1418238], [9.1967524, 49.1420955], [9.1968974, 49.1423759], [9.1971321, 49.1427245], [9.1971524, 49.1427570], [9.1973129, 49.1430099], [9.1973684, 49.1430945], [9.1975665, 49.1433962], [9.1979166, 49.1439442], [9.1980430, 49.1441623]], [[9.1988372, 49.1459498], [9.1987428, 49.1454852], [9.1985644, 49.1448763], [9.1985040, 49.1446699], [9.1984336, 49.1444716], [9.1984194, 49.1444312]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Katzensteige" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2493924, 49.1452578], [9.2492695, 49.1452812], [9.2488795, 49.1453568], [9.2485039, 49.1454453], [9.2481876, 49.1455289], [9.2479105, 49.1455888], [9.2475458, 49.1456412], [9.2473940, 49.1456503], [9.2472465, 49.1456447], [9.2471165, 49.1456219], [9.2470077, 49.1455879], [9.2469085, 49.1455554], [9.2468299, 49.1455146], [9.2467188, 49.1454541], [9.2466285, 49.1453754]], [[9.2406724, 49.1433606], [9.2414935, 49.1435774], [9.2420284, 49.1437588], [9.2426049, 49.1440641], [9.2426698, 49.1440946], [9.2428514, 49.1441583], [9.2433421, 49.1443617], [9.2437863, 49.1445255], [9.2447515, 49.1448395], [9.2461094, 49.1453025], [9.2463388, 49.1453579], [9.2464506, 49.1453748], [9.2466285, 49.1453754]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Kauffmannstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2229730, 49.1257386], [9.2228014, 49.1257604], [9.2226301, 49.1257683], [9.2221285, 49.1257914]], [[9.2196146, 49.1250074], [9.2196635, 49.1258289]], [[9.2185563, 49.1258503], [9.2185022, 49.1250165]], [[9.2211319, 49.1257926], [9.2208223, 49.1258009], [9.2204023, 49.1258121], [9.2196635, 49.1258289], [9.2195327, 49.1258296], [9.2186297, 49.1258498], [9.2185563, 49.1258503], [9.2177150, 49.1258737]], [[9.2221285, 49.1257914], [9.2211319, 49.1257926]], [[9.2177150, 49.1258737], [9.2172115, 49.1258855], [9.2170464, 49.1258860]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Kaulbachweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2051129, 49.1262357], [9.2051240, 49.1262709], [9.2052260, 49.1265915], [9.2052354, 49.1266073], [9.2052475, 49.1266169], [9.2052689, 49.1266266], [9.2052957, 49.1266310], [9.2053413, 49.1266336], [9.2056015, 49.1266099], [9.2059730, 49.1265783], [9.2062812, 49.1265469], [9.2064368, 49.1265327]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Käferflugstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2283588, 49.1557059], [9.2284134, 49.1557559], [9.2285525, 49.1558328], [9.2294482, 49.1562899]], [[9.2232838, 49.1538871], [9.2234212, 49.1538610]], [[9.2294482, 49.1562899], [9.2295998, 49.1563801], [9.2296632, 49.1564416], [9.2297139, 49.1565167], [9.2297677, 49.1566595]], [[9.2234212, 49.1538610], [9.2235490, 49.1538192], [9.2236655, 49.1538109], [9.2238263, 49.1538142], [9.2239546, 49.1538266], [9.2240353, 49.1538514], [9.2242532, 49.1539477], [9.2250523, 49.1542985], [9.2251587, 49.1543443], [9.2252449, 49.1543803], [9.2261666, 49.1547647], [9.2266479, 49.1549814], [9.2268962, 49.1550908], [9.2274056, 49.1553095], [9.2274708, 49.1553375], [9.2276094, 49.1553980], [9.2277181, 49.1554454], [9.2277408, 49.1554553], [9.2278020, 49.1554820], [9.2282929, 49.1556980], [9.2283588, 49.1557059]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Kehrhüttenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1388187, 49.1915005], [9.1386608, 49.1916106], [9.1385421, 49.1916393], [9.1383797, 49.1916401], [9.1382060, 49.1916124], [9.1378906, 49.1915588], [9.1377523, 49.1915353], [9.1375724, 49.1915037], [9.1374578, 49.1914836], [9.1373711, 49.1914738], [9.1372183, 49.1914790], [9.1371016, 49.1915053], [9.1369801, 49.1915620], [9.1368837, 49.1916342], [9.1368098, 49.1917420], [9.1366455, 49.1921338], [9.1365583, 49.1923021], [9.1365285, 49.1923825], [9.1365236, 49.1924426], [9.1365350, 49.1924943], [9.1366606, 49.1927869], [9.1368142, 49.1931289], [9.1368315, 49.1931537], [9.1368637, 49.1931851], [9.1369171, 49.1932118], [9.1373868, 49.1934010], [9.1377482, 49.1935450], [9.1378026, 49.1935667], [9.1380508, 49.1936631], [9.1381398, 49.1937004], [9.1384582, 49.1938298], [9.1384878, 49.1938433], [9.1385305, 49.1938728], [9.1385971, 49.1939385], [9.1386826, 49.1940591], [9.1388852, 49.1943514], [9.1389518, 49.1944450], [9.1389845, 49.1944977], [9.1390330, 49.1945756], [9.1390486, 49.1946255], [9.1390539, 49.1946747], [9.1390434, 49.1947439], [9.1390154, 49.1948024], [9.1389855, 49.1948398], [9.1389467, 49.1948740], [9.1388847, 49.1949242], [9.1387667, 49.1949815], [9.1386518, 49.1950202], [9.1384905, 49.1950731], [9.1384157, 49.1950939], [9.1383358, 49.1951146], [9.1382395, 49.1951318], [9.1381211, 49.1951427], [9.1380404, 49.1951434], [9.1379479, 49.1951359], [9.1377840, 49.1951106], [9.1373789, 49.1949662], [9.1373038, 49.1949372], [9.1367765, 49.1947274], [9.1362674, 49.1945123], [9.1360337, 49.1944249], [9.1358884, 49.1943872], [9.1357506, 49.1943581], [9.1356114, 49.1943418], [9.1354574, 49.1943362], [9.1352076, 49.1943334]], [[9.1380508, 49.1936631], [9.1383323, 49.1933584], [9.1383457, 49.1933026]], [[9.1373868, 49.1934010], [9.1375919, 49.1931843], [9.1376846, 49.1930807], [9.1376917, 49.1930458], [9.1376792, 49.1930116]], [[9.1373038, 49.1949372], [9.1371408, 49.1951135], [9.1371273, 49.1951384], [9.1371374, 49.1951630]], [[9.1389845, 49.1944977], [9.1392245, 49.1944208], [9.1392826, 49.1944155], [9.1393441, 49.1944221]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Keilstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1896321, 49.1370177], [9.1896331, 49.1366270]], [[9.1897609, 49.1378797], [9.1901935, 49.1378620]], [[9.1899499, 49.1399059], [9.1899034, 49.1394071], [9.1898495, 49.1388301], [9.1898121, 49.1384290], [9.1898108, 49.1384143], [9.1897914, 49.1382069], [9.1897735, 49.1380148], [9.1897609, 49.1378797], [9.1897350, 49.1376018], [9.1896844, 49.1370587], [9.1896801, 49.1370130]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Keitweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2000391, 49.1653644], [9.1997050, 49.1654720], [9.1987211, 49.1655524]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Keltenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1838209, 49.1153705], [9.1837713, 49.1156845], [9.1837446, 49.1158539], [9.1837295, 49.1159890], [9.1837127, 49.1161401], [9.1836779, 49.1164525], [9.1836544, 49.1164888], [9.1835506, 49.1165296], [9.1834468, 49.1165377], [9.1832828, 49.1165337], [9.1828987, 49.1165105]], [[9.1838209, 49.1153705], [9.1846009, 49.1154063]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kelteräckerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1730584, 49.1625701], [9.1738354, 49.1629793], [9.1739966, 49.1630642], [9.1741551, 49.1631477], [9.1745673, 49.1633648], [9.1747375, 49.1634544], [9.1752390, 49.1637361], [9.1766887, 49.1641524], [9.1772635, 49.1642905], [9.1779714, 49.1644443]], [[9.1772635, 49.1642905], [9.1769340, 49.1649395]], [[9.1745673, 49.1633648], [9.1741840, 49.1636819]], [[9.1739966, 49.1630642], [9.1736360, 49.1633519]], [[9.1741551, 49.1631477], [9.1739854, 49.1632758]], [[9.1747375, 49.1634544], [9.1744705, 49.1636620]], [[9.1738354, 49.1629793], [9.1734894, 49.1632569]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Keltergasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1449029, 49.1948301], [9.1444794, 49.1945576], [9.1440999, 49.1943132]], [[9.1434914, 49.1943185], [9.1433461, 49.1939471], [9.1433150, 49.1937715]], [[9.1435287, 49.1944170], [9.1435107, 49.1943693]], [[9.1433427, 49.1938411], [9.1436379, 49.1938618], [9.1437258, 49.1938627], [9.1438243, 49.1938575], [9.1439894, 49.1938331], [9.1440294, 49.1938331], [9.1440680, 49.1938444], [9.1440899, 49.1938615], [9.1440998, 49.1938982]], [[9.1435107, 49.1943693], [9.1434914, 49.1943185]], [[9.1429209, 49.1935149], [9.1429381, 49.1935558], [9.1429732, 49.1936245], [9.1429766, 49.1936312], [9.1429962, 49.1936365], [9.1430179, 49.1936378], [9.1431591, 49.1936088], [9.1432439, 49.1935916]], [[9.1432096, 49.1935014], [9.1431940, 49.1934578], [9.1431748, 49.1934064]], [[9.1433858, 49.1939383], [9.1433427, 49.1938411], [9.1433150, 49.1937715], [9.1432519, 49.1936129], [9.1432439, 49.1935916], [9.1432096, 49.1935014]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kelterweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1684882, 49.1156721], [9.1681360, 49.1155011], [9.1680223, 49.1154390], [9.1674377, 49.1150938], [9.1666725, 49.1146899], [9.1657823, 49.1142085]], [[9.1554149, 49.1008649], [9.1551922, 49.1009272], [9.1549618, 49.1014767], [9.1548621, 49.1020140], [9.1549079, 49.1025517], [9.1552359, 49.1035586], [9.1554354, 49.1041458], [9.1561198, 49.1051102], [9.1568930, 49.1063372], [9.1570291, 49.1065806], [9.1572184, 49.1071072], [9.1573838, 49.1074179], [9.1574917, 49.1076130], [9.1577732, 49.1079710], [9.1583768, 49.1086293], [9.1589277, 49.1092368], [9.1596992, 49.1103905], [9.1601238, 49.1108498], [9.1608161, 49.1114906], [9.1613968, 49.1117471], [9.1617706, 49.1119136], [9.1619486, 49.1120132], [9.1623867, 49.1122586], [9.1629648, 49.1125822], [9.1630386, 49.1126235], [9.1630486, 49.1126291], [9.1641112, 49.1132746], [9.1647310, 49.1136087], [9.1652609, 49.1138943], [9.1657823, 49.1142085]], [[9.1657823, 49.1142085], [9.1661672, 49.1138408]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Keplerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2260978, 49.1389339], [9.2261331, 49.1392993], [9.2261491, 49.1394728], [9.2261661, 49.1396209], [9.2262206, 49.1400958]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kernerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2339640, 49.1411449], [9.2339615, 49.1411650]], [[9.2341051, 49.1409236], [9.2340461, 49.1408527], [9.2340594, 49.1402916], [9.2340180, 49.1402068], [9.2340158, 49.1400265]], [[9.2339618, 49.1454591], [9.2343115, 49.1454384]], [[9.2342140, 49.1430316], [9.2342059, 49.1429912], [9.2341965, 49.1429798], [9.2341791, 49.1429781], [9.2339066, 49.1429964]], [[9.2339615, 49.1411650], [9.2339427, 49.1413146], [9.2338934, 49.1417056], [9.2338223, 49.1422743], [9.2338071, 49.1423962], [9.2338144, 49.1424653], [9.2338885, 49.1428941], [9.2339066, 49.1429964], [9.2339984, 49.1435160], [9.2340687, 49.1439665], [9.2342162, 49.1449119], [9.2343115, 49.1454384], [9.2343484, 49.1457112], [9.2343677, 49.1457477], [9.2344071, 49.1457994], [9.2344738, 49.1458611]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kiliansplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2192900, 49.1412306], [9.2193158, 49.1412748], [9.2193590, 49.1413495], [9.2193960, 49.1414109], [9.2192221, 49.1414238], [9.2190013, 49.1414319], [9.2188807, 49.1414343], [9.2188698, 49.1414869], [9.2188556, 49.1415292], [9.2188611, 49.1416102], [9.2188318, 49.1416112], [9.2188369, 49.1417159], [9.2188487, 49.1417568], [9.2188823, 49.1417555], [9.2189196, 49.1417518], [9.2189149, 49.1417330], [9.2189033, 49.1417324], [9.2188965, 49.1417044], [9.2189039, 49.1417044], [9.2188997, 49.1416980], [9.2188999, 49.1416895], [9.2189079, 49.1416836], [9.2189231, 49.1416819], [9.2189352, 49.1416885], [9.2189408, 49.1416884], [9.2189383, 49.1416595], [9.2189877, 49.1416568], [9.2190329, 49.1416543], [9.2190296, 49.1416430], [9.2193954, 49.1416154], [9.2193952, 49.1416064], [9.2195018, 49.1415976], [9.2195023, 49.1416012], [9.2195350, 49.1415988], [9.2195326, 49.1415914], [9.2195499, 49.1415902], [9.2195517, 49.1415946], [9.2195889, 49.1415885], [9.2195817, 49.1415500], [9.2196810, 49.1415412], [9.2196874, 49.1415553], [9.2197385, 49.1415513], [9.2197471, 49.1415827], [9.2197671, 49.1415802], [9.2197831, 49.1415634], [9.2197965, 49.1415696], [9.2197838, 49.1415819], [9.2198075, 49.1415928], [9.2198306, 49.1415817], [9.2198395, 49.1415903], [9.2198162, 49.1416028], [9.2198206, 49.1416186], [9.2198098, 49.1416303], [9.2198501, 49.1416511], [9.2198823, 49.1416408], [9.2198879, 49.1416478], [9.2198581, 49.1416592], [9.2198655, 49.1416832], [9.2198953, 49.1416907], [9.2198922, 49.1416994], [9.2198603, 49.1416922], [9.2198364, 49.1417089], [9.2198460, 49.1417429], [9.2198711, 49.1417529], [9.2198643, 49.1417598], [9.2198391, 49.1417524], [9.2198286, 49.1417645], [9.2200552, 49.1417543], [9.2201558, 49.1417469], [9.2201469, 49.1417104], [9.2201232, 49.1416355], [9.2202163, 49.1416189], [9.2199358, 49.1411397], [9.2199120, 49.1410824], [9.2198874, 49.1410202], [9.2197057, 49.1410841], [9.2194626, 49.1411538], [9.2193851, 49.1411863], [9.2192900, 49.1412306]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kilianstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2194079, 49.1412210], [9.2198194, 49.1410784], [9.2199120, 49.1410824], [9.2203585, 49.1409585]], [[9.2203585, 49.1409585], [9.2206625, 49.1408989]], [[9.2206625, 49.1408989], [9.2209300, 49.1408457], [9.2210797, 49.1408158], [9.2216095, 49.1407036], [9.2216903, 49.1406841], [9.2217431, 49.1406713]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kindsberg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2297677, 49.1566595], [9.2298178, 49.1569571], [9.2298697, 49.1571419], [9.2299255, 49.1572720], [9.2299797, 49.1574089], [9.2299964, 49.1574891], [9.2299924, 49.1575825], [9.2298466, 49.1580386], [9.2297145, 49.1585744], [9.2297235, 49.1587302], [9.2297267, 49.1588158], [9.2298111, 49.1597758], [9.2298319, 49.1600042], [9.2298542, 49.1601754], [9.2300209, 49.1603574], [9.2302125, 49.1604787], [9.2313017, 49.1611205], [9.2322108, 49.1616576], [9.2327685, 49.1619811], [9.2329969, 49.1620697], [9.2332403, 49.1621292], [9.2337967, 49.1622201], [9.2343986, 49.1622602], [9.2346471, 49.1622437], [9.2348964, 49.1622100], [9.2355527, 49.1621081], [9.2361154, 49.1620844], [9.2362583, 49.1620699]], [[9.2379330, 49.1611766], [9.2383517, 49.1611452]], [[9.2362583, 49.1620699], [9.2371175, 49.1615467], [9.2375274, 49.1613306], [9.2377010, 49.1612385], [9.2379330, 49.1611766]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kirchbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2004145, 49.1675656], [9.2003737, 49.1675120], [9.2003475, 49.1674746], [9.2002963, 49.1674167], [9.2002591, 49.1673700], [9.2002853, 49.1672901], [9.2005569, 49.1671835], [9.2007539, 49.1674731]], [[9.1998629, 49.1681463], [9.1997975, 49.1680643], [9.1995374, 49.1678067]], [[9.1999417, 49.1684265], [9.2004570, 49.1683910], [9.2005921, 49.1683675], [9.2006178, 49.1684734], [9.2006207, 49.1684856]], [[9.2000331, 49.1685579], [9.2006178, 49.1684734]], [[9.2010979, 49.1674085], [9.2010495, 49.1674343], [9.2007539, 49.1674731], [9.2005999, 49.1674965], [9.2005007, 49.1675291], [9.2004145, 49.1675656], [9.2003135, 49.1676471], [9.2002023, 49.1677615], [9.2000035, 49.1679689], [9.1998984, 49.1680750], [9.1998629, 49.1681463], [9.1998659, 49.1682351], [9.1998855, 49.1683251], [9.1999241, 49.1683994], [9.1999417, 49.1684265], [9.2000331, 49.1685579], [9.2000887, 49.1686873], [9.2001263, 49.1689523]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kirchbrunnenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2196294, 49.1414504], [9.2193850, 49.1414607], [9.2188816, 49.1414866], [9.2188698, 49.1414869], [9.2185011, 49.1414870], [9.2181289, 49.1415006], [9.2178480, 49.1414944], [9.2172465, 49.1414891], [9.2170585, 49.1414930], [9.2170081, 49.1414941]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kirchgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1677217, 49.1159930], [9.1676769, 49.1158989], [9.1676302, 49.1157991], [9.1675599, 49.1156868], [9.1674626, 49.1155969], [9.1672898, 49.1154918], [9.1671766, 49.1154416], [9.1670766, 49.1154047], [9.1667908, 49.1153262]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kirchgässle" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1594933, 49.1192162], [9.1595875, 49.1191252], [9.1596393, 49.1190261], [9.1596556, 49.1189648], [9.1596608, 49.1189027], [9.1596596, 49.1187946], [9.1597194, 49.1186900]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kirchhausener Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1636066, 49.1632016], [9.1635674, 49.1632163], [9.1635341, 49.1632919], [9.1634556, 49.1634932], [9.1634228, 49.1636856], [9.1634352, 49.1637460], [9.1634351, 49.1638102], [9.1636864, 49.1641800], [9.1637291, 49.1642008], [9.1637707, 49.1642210], [9.1641993, 49.1642182], [9.1645345, 49.1642174], [9.1653817, 49.1642064], [9.1661861, 49.1640941], [9.1663910, 49.1640599], [9.1665549, 49.1640326]], [[9.1665549, 49.1640326], [9.1667419, 49.1639933]], [[9.1634352, 49.1637460], [9.1641450, 49.1636907]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kirchhöfle" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2215272, 49.1450675], [9.2221388, 49.1450020], [9.2221114, 49.1448897], [9.2220847, 49.1447805], [9.2214811, 49.1448377]], [[9.2224469, 49.1448539], [9.2222003, 49.1448802], [9.2221114, 49.1448897]], [[9.2215140, 49.1450075], [9.2213069, 49.1450085], [9.2211244, 49.1450076], [9.2209498, 49.1450050], [9.2208466, 49.1450076]], [[9.2214811, 49.1448377], [9.2214425, 49.1448347], [9.2211927, 49.1448374]], [[9.2214811, 49.1448377], [9.2215140, 49.1450075], [9.2215272, 49.1450675]], [[9.2225014, 49.1451172], [9.2224849, 49.1450396], [9.2224469, 49.1448539], [9.2223628, 49.1444615]], [[9.2225014, 49.1451172], [9.2225184, 49.1451790]], [[9.2225184, 49.1451790], [9.2225400, 49.1452863]], [[9.2211927, 49.1448374], [9.2210285, 49.1448428], [9.2208299, 49.1448412]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kirchsteige" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1940784, 49.1325531], [9.1941304, 49.1328229], [9.1941576, 49.1329878], [9.1941758, 49.1330741], [9.1941898, 49.1331750], [9.1942058, 49.1333233], [9.1942154, 49.1334335]], [[9.1942154, 49.1334335], [9.1942401, 49.1336223]], [[9.1942401, 49.1336223], [9.1942850, 49.1337646], [9.1941155, 49.1337979], [9.1939935, 49.1337754], [9.1936185, 49.1338015], [9.1935486, 49.1337971], [9.1930033, 49.1338323], [9.1929965, 49.1337382], [9.1929756, 49.1335058], [9.1933640, 49.1334996], [9.1933807, 49.1336976], [9.1935380, 49.1336988], [9.1935341, 49.1336518], [9.1942401, 49.1336223]], [[9.1929965, 49.1337382], [9.1931327, 49.1337260], [9.1935632, 49.1337177], [9.1936064, 49.1337176], [9.1939523, 49.1336969], [9.1940882, 49.1336644], [9.1942401, 49.1336223]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kirchstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1698010, 49.1584458], [9.1695417, 49.1584045], [9.1691738, 49.1583400], [9.1689773, 49.1583664], [9.1686680, 49.1583153], [9.1684407, 49.1586416]], [[9.1691738, 49.1583400], [9.1688823, 49.1580770]], [[9.1686377, 49.1578620], [9.1687784, 49.1579735], [9.1688823, 49.1580770]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kirschengartenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2291325, 49.1597677], [9.2288885, 49.1597593], [9.2286839, 49.1597565], [9.2284826, 49.1597603], [9.2282298, 49.1597742], [9.2269059, 49.1598655], [9.2266323, 49.1598904]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kittlerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2214541, 49.1529443], [9.2224168, 49.1527171]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Klarastraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2203585, 49.1409585], [9.2204330, 49.1408127], [9.2207152, 49.1403172], [9.2207356, 49.1402825]], [[9.2207356, 49.1402825], [9.2209003, 49.1400591], [9.2209785, 49.1400228], [9.2210444, 49.1399923]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kleingartacher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1768144, 49.1416721], [9.1768141, 49.1417596], [9.1768138, 49.1418610], [9.1768132, 49.1420902], [9.1768122, 49.1424102], [9.1768112, 49.1427733], [9.1768102, 49.1431266], [9.1768090, 49.1435367], [9.1768080, 49.1438678]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kleiststraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2266865, 49.1480816], [9.2266937, 49.1481132], [9.2267132, 49.1481547], [9.2267631, 49.1482275], [9.2269453, 49.1484933], [9.2270187, 49.1485886], [9.2270955, 49.1486711], [9.2273858, 49.1489082], [9.2275208, 49.1490163], [9.2280014, 49.1493978], [9.2281010, 49.1494801], [9.2289051, 49.1501398]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Klettstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2288428, 49.1448265], [9.2293358, 49.1447909], [9.2297584, 49.1447661], [9.2298528, 49.1447606], [9.2300167, 49.1447510]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Klingenberger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1876453, 49.1269833], [9.1879313, 49.1270282], [9.1883930, 49.1270673]], [[9.1891981, 49.1274729], [9.1892574, 49.1275968], [9.1893226, 49.1277476]], [[9.1893226, 49.1277476], [9.1893363, 49.1277911], [9.1893755, 49.1279151], [9.1894176, 49.1280487], [9.1895116, 49.1283614], [9.1895786, 49.1286416], [9.1895964, 49.1287116], [9.1896078, 49.1287608], [9.1896697, 49.1290656], [9.1896940, 49.1291706], [9.1897481, 49.1293481], [9.1898199, 49.1295142], [9.1898659, 49.1295881], [9.1899300, 49.1296661], [9.1900592, 49.1297913], [9.1903268, 49.1300080], [9.1904063, 49.1300726], [9.1905353, 49.1301775], [9.1906782, 49.1303311], [9.1907580, 49.1304501], [9.1907921, 49.1305339], [9.1908106, 49.1305877], [9.1907970, 49.1306701], [9.1907766, 49.1308168], [9.1906411, 49.1315662], [9.1905910, 49.1318397]], [[9.1883930, 49.1270673], [9.1885110, 49.1270744], [9.1887303, 49.1271444], [9.1888617, 49.1272004], [9.1889770, 49.1272646], [9.1891043, 49.1273657], [9.1891981, 49.1274729]], [[9.1905910, 49.1318397], [9.1905676, 49.1319075]], [[9.1905676, 49.1319075], [9.1905754, 49.1319841], [9.1906985, 49.1323394], [9.1907370, 49.1324376], [9.1908938, 49.1327386], [9.1909986, 49.1328589], [9.1911365, 49.1330074], [9.1912433, 49.1331319], [9.1913933, 49.1333450], [9.1914518, 49.1334735], [9.1915180, 49.1337622], [9.1915397, 49.1338526], [9.1915519, 49.1339118], [9.1915689, 49.1339874], [9.1916046, 49.1341463], [9.1916095, 49.1341680], [9.1916539, 49.1343659], [9.1917479, 49.1347340], [9.1917902, 49.1349359], [9.1918646, 49.1352462], [9.1919768, 49.1357811], [9.1920874, 49.1362365], [9.1921075, 49.1363140], [9.1922218, 49.1367678], [9.1922377, 49.1368338], [9.1923691, 49.1374113], [9.1925160, 49.1380265], [9.1926685, 49.1386258], [9.1926904, 49.1387301]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Klingenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1884982, 49.1196356], [9.1884930, 49.1195371], [9.1884836, 49.1194321], [9.1883098, 49.1190375]], [[9.1880615, 49.1185833], [9.1879210, 49.1185285]], [[9.1884407, 49.1190220], [9.1884086, 49.1189524], [9.1883131, 49.1188531], [9.1882049, 49.1187593], [9.1880615, 49.1185833]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Klopstockstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2336824, 49.1484912], [9.2337482, 49.1483951], [9.2344163, 49.1478016], [9.2348358, 49.1474588]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Klostergasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2212904, 49.1416729], [9.2212830, 49.1416605], [9.2212657, 49.1415976], [9.2210797, 49.1408158]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Kneippweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2434946, 49.1353222], [9.2433933, 49.1350844]], [[9.2426762, 49.1340922], [9.2430304, 49.1343450], [9.2431467, 49.1344725], [9.2432168, 49.1346037], [9.2433852, 49.1350622], [9.2433933, 49.1350844]], [[9.2426045, 49.1352085], [9.2428888, 49.1351576], [9.2433852, 49.1350622]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Knoblochstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1695912, 49.1645477], [9.1695409, 49.1645620], [9.1695253, 49.1645903], [9.1695583, 49.1646257], [9.1695877, 49.1646308], [9.1696145, 49.1646273], [9.1696523, 49.1645929], [9.1696225, 49.1645540], [9.1695912, 49.1645477], [9.1695288, 49.1643856], [9.1695365, 49.1642362], [9.1695545, 49.1641718], [9.1696292, 49.1641048], [9.1698070, 49.1639967], [9.1699770, 49.1638936], [9.1701096, 49.1638286], [9.1701856, 49.1638102], [9.1702641, 49.1638061], [9.1703357, 49.1638116], [9.1704104, 49.1638308], [9.1706608, 49.1639077], [9.1713703, 49.1640778], [9.1716994, 49.1641529]], [[9.1706608, 49.1639077], [9.1704733, 49.1642219], [9.1703885, 49.1643946], [9.1703847, 49.1645365]], [[9.1713703, 49.1640778], [9.1712516, 49.1642828], [9.1711439, 49.1644805], [9.1711431, 49.1645956]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Knollensteige" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2365773, 49.1640535], [9.2372031, 49.1640584], [9.2375014, 49.1640577], [9.2378374, 49.1640342], [9.2382894, 49.1639874], [9.2390422, 49.1638606], [9.2392901, 49.1638020], [9.2395300, 49.1637677], [9.2398182, 49.1637483], [9.2401943, 49.1637884], [9.2405391, 49.1638611], [9.2413599, 49.1639779], [9.2418360, 49.1640372], [9.2423906, 49.1641228], [9.2424735, 49.1641399], [9.2428874, 49.1642452], [9.2432913, 49.1643234], [9.2435835, 49.1643251], [9.2438468, 49.1643414], [9.2440497, 49.1643664], [9.2444152, 49.1644465], [9.2452479, 49.1646667], [9.2455506, 49.1647425], [9.2459197, 49.1648071], [9.2463510, 49.1648774], [9.2469365, 49.1649139], [9.2473915, 49.1648933], [9.2477610, 49.1648507], [9.2482302, 49.1647954], [9.2484607, 49.1647608], [9.2487067, 49.1647163], [9.2491689, 49.1646318], [9.2494827, 49.1645850]], [[9.2365773, 49.1640535], [9.2361641, 49.1640556], [9.2357589, 49.1640396], [9.2350727, 49.1640311], [9.2347906, 49.1640261], [9.2346957, 49.1640368], [9.2345412, 49.1640827], [9.2344292, 49.1641283], [9.2343366, 49.1642027]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Knorrstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2129588, 49.1332441], [9.2141277, 49.1329184], [9.2143188, 49.1328629]], [[9.2167652, 49.1321842], [9.2171440, 49.1320574], [9.2172895, 49.1319878], [9.2174768, 49.1318576], [9.2175224, 49.1318211], [9.2175631, 49.1317941]], [[9.2180083, 49.1320446], [9.2178631, 49.1319800], [9.2177317, 49.1319291], [9.2176716, 49.1319153], [9.2176210, 49.1319159], [9.2175833, 49.1319223]], [[9.2093618, 49.1342314], [9.2094823, 49.1342428], [9.2097904, 49.1341458], [9.2101133, 49.1340293], [9.2103560, 49.1339459], [9.2109452, 49.1337612], [9.2119741, 49.1334842], [9.2128534, 49.1332727], [9.2129588, 49.1332441]], [[9.2143188, 49.1328629], [9.2152525, 49.1325994], [9.2161573, 49.1323501], [9.2167652, 49.1321842]], [[9.2175631, 49.1317941], [9.2176350, 49.1317367]], [[9.2175833, 49.1319223], [9.2174573, 49.1319527], [9.2172587, 49.1320468], [9.2171463, 49.1320864], [9.2167652, 49.1321842]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kocherstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1944331, 49.1436756], [9.1938891, 49.1437658], [9.1929240, 49.1438896]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Koepffstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2166946, 49.1549821], [9.2165248, 49.1549954], [9.2162894, 49.1550406], [9.2158155, 49.1551365], [9.2153815, 49.1552243], [9.2144167, 49.1554195]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kollwitzstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1996225, 49.1646382], [9.1991424, 49.1646903], [9.1986682, 49.1647268], [9.1980670, 49.1647361]], [[9.1980670, 49.1647361], [9.1979542, 49.1647902], [9.1974683, 49.1647978]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Kolpingstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1982104, 49.1243818], [9.1980934, 49.1243223]], [[9.1954860, 49.1227780], [9.1952055, 49.1226149], [9.1944598, 49.1221694]], [[9.1944598, 49.1221694], [9.1939462, 49.1218799], [9.1937522, 49.1217705], [9.1936270, 49.1217012], [9.1932382, 49.1214859], [9.1927754, 49.1212255], [9.1923392, 49.1209800], [9.1921781, 49.1208893], [9.1918322, 49.1206951], [9.1916425, 49.1205893], [9.1912365, 49.1203651], [9.1909618, 49.1202485]], [[9.1978321, 49.1241859], [9.1977872, 49.1241609], [9.1971571, 49.1237667], [9.1960238, 49.1230902], [9.1959865, 49.1230700], [9.1958666, 49.1230009], [9.1957414, 49.1229287], [9.1954860, 49.1227780]], [[9.2038238, 49.1265992], [9.2036805, 49.1265532], [9.2035462, 49.1265127], [9.2034225, 49.1264754], [9.2033769, 49.1264598], [9.2025574, 49.1261977], [9.2021482, 49.1260677], [9.2020934, 49.1260486], [9.2010686, 49.1257120], [9.2000999, 49.1253442], [9.1993158, 49.1249960], [9.1987080, 49.1246443]], [[9.1980934, 49.1243223], [9.1979684, 49.1242592]], [[9.1979684, 49.1242592], [9.1978321, 49.1241859]], [[9.1987080, 49.1246443], [9.1982104, 49.1243818]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Konradweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1853706, 49.1281795], [9.1852456, 49.1286792], [9.1852779, 49.1287048], [9.1853284, 49.1287281], [9.1857616, 49.1288923], [9.1858065, 49.1289117], [9.1858455, 49.1289445], [9.1858533, 49.1289842], [9.1856411, 49.1298449]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kopernikusweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1759617, 49.1381499], [9.1776091, 49.1382421], [9.1792415, 49.1382957]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Kornblumenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1406014, 49.1925108], [9.1405541, 49.1924623], [9.1404739, 49.1924179], [9.1403049, 49.1923350], [9.1401993, 49.1922730], [9.1401005, 49.1922058], [9.1399923, 49.1920985], [9.1399090, 49.1919791], [9.1397954, 49.1918754], [9.1394167, 49.1916083], [9.1390672, 49.1913930]], [[9.1390672, 49.1913930], [9.1384169, 49.1909866], [9.1383886, 49.1909398], [9.1384189, 49.1908062]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Köhlstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2389770, 49.1323640], [9.2390588, 49.1322703], [9.2391288, 49.1321712], [9.2392013, 49.1320474], [9.2392581, 49.1319233], [9.2392996, 49.1318023], [9.2393278, 49.1316670], [9.2393266, 49.1315294], [9.2393075, 49.1313970], [9.2391773, 49.1310348], [9.2390288, 49.1306490], [9.2389684, 49.1304222], [9.2389592, 49.1302288], [9.2389684, 49.1299892], [9.2389627, 49.1298408], [9.2389365, 49.1296905], [9.2388591, 49.1295286], [9.2387643, 49.1293708], [9.2385550, 49.1291394], [9.2382407, 49.1289483], [9.2377359, 49.1287631]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Kölner Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1079158, 49.1824990], [9.1081468, 49.1824654], [9.1084347, 49.1823945], [9.1086399, 49.1823338], [9.1090700, 49.1821818], [9.1098525, 49.1819240]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Königsberger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1993783, 49.1608650], [9.1994505, 49.1605090], [9.1995213, 49.1601829], [9.1999772, 49.1601182], [9.2001709, 49.1600907], [9.2012257, 49.1599813], [9.2012796, 49.1599769], [9.2019064, 49.1599951], [9.2023106, 49.1600478], [9.2025027, 49.1600970], [9.2026565, 49.1601921], [9.2026865, 49.1602351], [9.2028575, 49.1605320]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Kraemerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2389586, 49.1520191], [9.2389490, 49.1517761], [9.2389437, 49.1517436], [9.2389165, 49.1517006], [9.2389067, 49.1516740], [9.2388835, 49.1513721], [9.2388525, 49.1513566], [9.2388390, 49.1513417], [9.2388333, 49.1513218], [9.2388340, 49.1512993], [9.2388514, 49.1512800], [9.2389064, 49.1512650], [9.2389574, 49.1512642], [9.2389949, 49.1512773], [9.2390204, 49.1513001], [9.2390271, 49.1513308], [9.2390124, 49.1513554], [9.2389802, 49.1513721], [9.2389400, 49.1513800], [9.2388835, 49.1513721]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kraichgauplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1809094, 49.1458340], [9.1808828, 49.1455949], [9.1808777, 49.1455511], [9.1808614, 49.1452668], [9.1808621, 49.1451804], [9.1808642, 49.1449207]], [[9.1809402, 49.1451231], [9.1817302, 49.1451212], [9.1820949, 49.1450567], [9.1820986, 49.1455604], [9.1815270, 49.1456277], [9.1812928, 49.1456801], [9.1809482, 49.1456975], [9.1809441, 49.1455235], [9.1809402, 49.1451231]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kramstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2169493, 49.1422333], [9.2169481, 49.1422206], [9.2169339, 49.1421077], [9.2169396, 49.1420380], [9.2169504, 49.1417457], [9.2169638, 49.1416887], [9.2170081, 49.1414941]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kranenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2119183, 49.1463828], [9.2117827, 49.1463703], [9.2116699, 49.1463776], [9.2115560, 49.1463961], [9.2112858, 49.1464996], [9.2110880, 49.1466236], [9.2109588, 49.1467437], [9.2109356, 49.1467687], [9.2108418, 49.1469121]], [[9.2146843, 49.1430725], [9.2146535, 49.1432842], [9.2146413, 49.1433341], [9.2145814, 49.1435558], [9.2144806, 49.1438342], [9.2144303, 49.1439898], [9.2143308, 49.1443794], [9.2141584, 49.1449633], [9.2141016, 49.1451267], [9.2140125, 49.1452860], [9.2139139, 49.1454039], [9.2138040, 49.1455137], [9.2136941, 49.1456063], [9.2135758, 49.1456945], [9.2132346, 49.1459286], [9.2129783, 49.1461021], [9.2126179, 49.1463368], [9.2125287, 49.1463843], [9.2124481, 49.1464146], [9.2123516, 49.1464327], [9.2122405, 49.1464352]], [[9.2146884, 49.1430102], [9.2146843, 49.1430725]], [[9.2146717, 49.1426295], [9.2146775, 49.1427179], [9.2146833, 49.1428379]], [[9.2146833, 49.1428379], [9.2146884, 49.1430102]], [[9.2108418, 49.1469121], [9.2108585, 49.1469377], [9.2108519, 49.1469851], [9.2108558, 49.1472408], [9.2108727, 49.1472930], [9.2108965, 49.1473712]], [[9.2106848, 49.1473893], [9.2106788, 49.1473511], [9.2106787, 49.1472907], [9.2106896, 49.1472429], [9.2107165, 49.1471474], [9.2107502, 49.1470388], [9.2108418, 49.1469121]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Krautgartenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1916722, 49.1675490], [9.1917956, 49.1673007], [9.1920109, 49.1668579]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Kreuzäckerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2036494, 49.1236993], [9.2038387, 49.1234208], [9.2040573, 49.1230592], [9.2041294, 49.1229242], [9.2041780, 49.1228090], [9.2041928, 49.1227555], [9.2041982, 49.1227081], [9.2041834, 49.1226624], [9.2041605, 49.1226294], [9.2041217, 49.1225905], [9.2040828, 49.1225668], [9.2040305, 49.1225431], [9.2039635, 49.1225238], [9.2035893, 49.1224228], [9.2031387, 49.1222965], [9.2029147, 49.1222341], [9.2027672, 49.1221903], [9.2025633, 49.1221288], [9.2021369, 49.1219945], [9.2014583, 49.1217655], [9.2012043, 49.1216925]], [[9.2020934, 49.1260486], [9.2021673, 49.1259730], [9.2023724, 49.1256904], [9.2025459, 49.1254168], [9.2026861, 49.1252045], [9.2029197, 49.1248491], [9.2029688, 49.1247744], [9.2031366, 49.1245143], [9.2032130, 49.1243877], [9.2032212, 49.1243743], [9.2036494, 49.1236993]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kreuzenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2241859, 49.1553766], [9.2240749, 49.1553983], [9.2239987, 49.1554108], [9.2239138, 49.1554289], [9.2236470, 49.1554857], [9.2234055, 49.1555386], [9.2232432, 49.1555692], [9.2226108, 49.1556883]], [[9.2226108, 49.1556883], [9.2219253, 49.1541288]], [[9.2226108, 49.1556883], [9.2233533, 49.1574637], [9.2235201, 49.1579543], [9.2235896, 49.1581527], [9.2239277, 49.1590222], [9.2243483, 49.1602125], [9.2246617, 49.1610916], [9.2247466, 49.1611608], [9.2248515, 49.1611586], [9.2253222, 49.1611320]], [[9.2243483, 49.1602125], [9.2251168, 49.1600918]], [[9.2239277, 49.1590222], [9.2247030, 49.1589015]], [[9.2233533, 49.1574637], [9.2240657, 49.1573353]], [[9.2209876, 49.1516518], [9.2209884, 49.1517719], [9.2209885, 49.1517871], [9.2214541, 49.1529443], [9.2217961, 49.1538455], [9.2219253, 49.1541288]], [[9.2217339, 49.1509385], [9.2215323, 49.1510857]], [[9.2215323, 49.1510857], [9.2214270, 49.1511826], [9.2213114, 49.1512804], [9.2211550, 49.1514167], [9.2210448, 49.1515338], [9.2209876, 49.1516518]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Krugstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2370461, 49.1471383], [9.2375087, 49.1473825], [9.2379305, 49.1476366], [9.2384487, 49.1479971], [9.2388677, 49.1482665], [9.2390486, 49.1483742], [9.2392536, 49.1484568], [9.2394702, 49.1485173], [9.2397628, 49.1485978], [9.2400569, 49.1486527], [9.2403472, 49.1486986], [9.2404443, 49.1486902]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Krumme Steige" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2562127, 49.1378474], [9.2563922, 49.1377952], [9.2566947, 49.1376534], [9.2569243, 49.1375581], [9.2570658, 49.1375211], [9.2572216, 49.1375057], [9.2578191, 49.1375011], [9.2583861, 49.1375020], [9.2584442, 49.1375105], [9.2586912, 49.1375143], [9.2589512, 49.1375020], [9.2592127, 49.1374816]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Krumme Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1883933, 49.1428591], [9.1884059, 49.1432390], [9.1884654, 49.1434901], [9.1885024, 49.1436422], [9.1885650, 49.1437021]], [[9.1885165, 49.1424248], [9.1883933, 49.1428591]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Krummlandstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1733410, 49.1133847], [9.1743311, 49.1134997], [9.1746899, 49.1135398], [9.1752844, 49.1135990], [9.1761765, 49.1136751]], [[9.1743311, 49.1134997], [9.1742460, 49.1138952]], [[9.1746899, 49.1135398], [9.1747825, 49.1132804], [9.1748517, 49.1131845], [9.1749327, 49.1131147]], [[9.1749327, 49.1131147], [9.1749046, 49.1130975], [9.1748861, 49.1130728], [9.1748828, 49.1130476], [9.1748985, 49.1130160], [9.1749241, 49.1129971], [9.1749485, 49.1129874], [9.1749962, 49.1129813], [9.1750505, 49.1129916], [9.1750891, 49.1130170], [9.1751026, 49.1130406], [9.1750986, 49.1130772], [9.1750801, 49.1130993], [9.1750439, 49.1131187], [9.1749961, 49.1131266], [9.1749580, 49.1131228], [9.1749327, 49.1131147]], [[9.1750801, 49.1130993], [9.1753612, 49.1131204]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Kunzestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2390311, 49.1451281], [9.2388183, 49.1447933], [9.2383390, 49.1439700]], [[9.2383390, 49.1439700], [9.2380655, 49.1435001]], [[9.2380655, 49.1435001], [9.2378302, 49.1433838]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Kurt-Schumacher-Platz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2144320, 49.1426426], [9.2144027, 49.1426185], [9.2143870, 49.1425942], [9.2143813, 49.1425583], [9.2143892, 49.1425322], [9.2144086, 49.1425063], [9.2144340, 49.1424871], [9.2144696, 49.1424710], [9.2145198, 49.1424607], [9.2145663, 49.1424607], [9.2146158, 49.1424710], [9.2146471, 49.1424845], [9.2146721, 49.1425018], [9.2146916, 49.1425238], [9.2147040, 49.1425558], [9.2146948, 49.1426019], [9.2146845, 49.1426166], [9.2146717, 49.1426295], [9.2146463, 49.1426468], [9.2146040, 49.1426635], [9.2145592, 49.1426708], [9.2145248, 49.1426707], [9.2144713, 49.1426604], [9.2144320, 49.1426426]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Kurze Gasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1678645, 49.1171109], [9.1677803, 49.1171210], [9.1670782, 49.1168941]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Kurze Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2167664, 49.1381492], [9.2156334, 49.1380934]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Kübelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2403929, 49.1522056], [9.2404018, 49.1521769], [9.2403993, 49.1521290], [9.2401729, 49.1517095], [9.2400788, 49.1515986], [9.2400508, 49.1515380], [9.2395959, 49.1508840], [9.2395159, 49.1507911], [9.2394413, 49.1507357], [9.2393216, 49.1507043], [9.2392144, 49.1507048], [9.2387397, 49.1507259], [9.2382225, 49.1507533], [9.2378151, 49.1507499], [9.2367858, 49.1507230], [9.2364006, 49.1507186], [9.2358750, 49.1507045], [9.2357632, 49.1506388], [9.2347715, 49.1506483], [9.2343636, 49.1506533], [9.2341575, 49.1506534], [9.2338102, 49.1506521], [9.2337537, 49.1506521], [9.2336558, 49.1506502]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Lachmannstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2292330, 49.1514816], [9.2292422, 49.1514352], [9.2290111, 49.1505610]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Lammgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2190094, 49.1431632], [9.2190818, 49.1435078], [9.2191106, 49.1436248], [9.2191400, 49.1439577], [9.2191615, 49.1441475], [9.2191749, 49.1442862], [9.2191783, 49.1443403], [9.2191806, 49.1443806], [9.2191859, 49.1444286], [9.2192546, 49.1447520], [9.2192724, 49.1448524], [9.2193368, 49.1451403], [9.2193843, 49.1453660], [9.2194499, 49.1456451]], [[9.2194499, 49.1456451], [9.2194398, 49.1456926], [9.2194391, 49.1457248], [9.2194402, 49.1457730]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Landturmstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1961435, 49.1475047], [9.1954324, 49.1475459], [9.1951157, 49.1475662], [9.1941396, 49.1476460]], [[9.1941338, 49.1476169], [9.1933935, 49.1476850]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Landwehr" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2081856, 49.1248719], [9.2083455, 49.1248355], [9.2103371, 49.1244903], [9.2104361, 49.1234401], [9.2130421, 49.1232595], [9.2128448, 49.1214851], [9.2140429, 49.1214423], [9.2148495, 49.1214300], [9.2159604, 49.1239363], [9.2140122, 49.1244021], [9.2112656, 49.1249962], [9.2084677, 49.1255767], [9.2081856, 49.1248719]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Landwehrstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1865673, 49.1446795], [9.1866807, 49.1447439], [9.1867272, 49.1447450], [9.1867868, 49.1447464], [9.1872828, 49.1446479], [9.1873807, 49.1446265]], [[9.1873807, 49.1446265], [9.1881364, 49.1444937]], [[9.1911964, 49.1438477], [9.1912515, 49.1439287], [9.1912886, 49.1440190], [9.1913148, 49.1441304], [9.1907992, 49.1442759]], [[9.1881364, 49.1444937], [9.1882264, 49.1444825], [9.1891166, 49.1443122], [9.1893787, 49.1442676], [9.1896516, 49.1442211], [9.1900210, 49.1441584], [9.1911964, 49.1438477], [9.1918160, 49.1436711]], [[9.1919528, 49.1436181], [9.1924455, 49.1434924], [9.1927824, 49.1434029], [9.1930206, 49.1433355], [9.1938135, 49.1431111], [9.1941524, 49.1430152], [9.1946326, 49.1428814]], [[9.1982734, 49.1421100], [9.1968974, 49.1423759]], [[9.1968974, 49.1423759], [9.1959025, 49.1425471], [9.1956248, 49.1426093], [9.1953781, 49.1426863], [9.1946326, 49.1428814]], [[9.1985365, 49.1420568], [9.1982734, 49.1421100]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Langer Rain" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1573425, 49.1373277], [9.1572633, 49.1383235], [9.1571332, 49.1399597]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Latzeläckerweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1646333, 49.1064933], [9.1653038, 49.1073595], [9.1666525, 49.1080762]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Lauerweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2115560, 49.1463961], [9.2120406, 49.1457436], [9.2121213, 49.1456407], [9.2121594, 49.1455604]], [[9.2121213, 49.1456407], [9.2120403, 49.1455849], [9.2118719, 49.1455174], [9.2101471, 49.1449215], [9.2099592, 49.1448855], [9.2093454, 49.1447033], [9.2089650, 49.1445735], [9.2087685, 49.1444681], [9.2085630, 49.1443925], [9.2078460, 49.1441377], [9.2078225, 49.1440622], [9.2068092, 49.1436318], [9.2067148, 49.1435329]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Lauffener Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1865388, 49.1080691], [9.1865569, 49.1081947], [9.1866006, 49.1083533], [9.1865782, 49.1085578], [9.1864994, 49.1087208], [9.1862364, 49.1089443], [9.1857342, 49.1092675], [9.1854067, 49.1094783], [9.1850467, 49.1098467], [9.1848867, 49.1101367], [9.1848017, 49.1104483], [9.1847835, 49.1107389], [9.1847686, 49.1116928], [9.1847847, 49.1121012], [9.1847867, 49.1121533], [9.1851629, 49.1135269], [9.1852644, 49.1138405], [9.1854090, 49.1143729], [9.1856838, 49.1153849]], [[9.1864734, 49.1165989], [9.1866063, 49.1165859], [9.1867506, 49.1165895], [9.1870113, 49.1166842], [9.1876103, 49.1168768], [9.1881291, 49.1170656], [9.1885478, 49.1171856], [9.1889474, 49.1173049]], [[9.1856838, 49.1153849], [9.1857983, 49.1157550], [9.1858673, 49.1159134], [9.1860853, 49.1161647], [9.1862092, 49.1162662], [9.1863709, 49.1164185], [9.1864243, 49.1165018], [9.1864734, 49.1165989], [9.1864804, 49.1166591]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Lauterbachweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2120849, 49.1363747], [9.2119568, 49.1362249], [9.2118094, 49.1360459], [9.2117839, 49.1359968], [9.2117035, 49.1358669], [9.2116029, 49.1357353], [9.2113990, 49.1355010], [9.2112817, 49.1353820]], [[9.2123991, 49.1367314], [9.2123531, 49.1366812], [9.2121089, 49.1364028], [9.2120849, 49.1363747]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Lämlinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1663458, 49.1413608], [9.1643797, 49.1413549], [9.1619601, 49.1413211], [9.1619336, 49.1413210], [9.1611619, 49.1412999], [9.1608030, 49.1412938], [9.1595914, 49.1412723], [9.1595090, 49.1412688], [9.1592158, 49.1412579], [9.1589462, 49.1412599], [9.1585711, 49.1412617], [9.1580745, 49.1412629], [9.1574982, 49.1412661]], [[9.1662888, 49.1428992], [9.1663458, 49.1413608], [9.1663406, 49.1407761]], [[9.1589462, 49.1412599], [9.1589385, 49.1417037], [9.1587474, 49.1417051]], [[9.1585711, 49.1412617], [9.1585659, 49.1416014], [9.1581942, 49.1416039]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Länderlesstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1934337, 49.1695300], [9.1932342, 49.1694628]], [[9.1932342, 49.1694628], [9.1931167, 49.1694277], [9.1927384, 49.1693189], [9.1924426, 49.1692244], [9.1923024, 49.1692214], [9.1916712, 49.1692184], [9.1905696, 49.1692115], [9.1896280, 49.1692166], [9.1891949, 49.1692233], [9.1887918, 49.1692355], [9.1887480, 49.1692370], [9.1878683, 49.1692648], [9.1876018, 49.1692744], [9.1872267, 49.1692822], [9.1869492, 49.1692854]], [[9.1931167, 49.1694277], [9.1931580, 49.1693667], [9.1932231, 49.1693338], [9.1934887, 49.1692594]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Längelterstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1867585, 49.1384355], [9.1866607, 49.1384484], [9.1865324, 49.1384405], [9.1854282, 49.1382913]], [[9.1706867, 49.1376150], [9.1706154, 49.1381683], [9.1705782, 49.1384717], [9.1705602, 49.1386770], [9.1705362, 49.1390108], [9.1705267, 49.1391276], [9.1705260, 49.1391892]], [[9.1705260, 49.1391892], [9.1705207, 49.1392888], [9.1705203, 49.1393217], [9.1705200, 49.1394017], [9.1705433, 49.1394317], [9.1705867, 49.1394567], [9.1706517, 49.1394733], [9.1709329, 49.1394765], [9.1710401, 49.1394942], [9.1712010, 49.1395556], [9.1713001, 49.1396701], [9.1713490, 49.1397834]], [[9.1854282, 49.1382913], [9.1852586, 49.1382696], [9.1842576, 49.1381210], [9.1842009, 49.1381157], [9.1825200, 49.1379683], [9.1823538, 49.1379571], [9.1821096, 49.1379321], [9.1819600, 49.1379189], [9.1817616, 49.1379013], [9.1801398, 49.1377720], [9.1797856, 49.1377340], [9.1795126, 49.1377093], [9.1793136, 49.1376936], [9.1791438, 49.1376802], [9.1764060, 49.1375440], [9.1760109, 49.1375291], [9.1739180, 49.1374197], [9.1723162, 49.1373344], [9.1721931, 49.1373306], [9.1709215, 49.1372658], [9.1708169, 49.1372712], [9.1707745, 49.1372808], [9.1707316, 49.1373062], [9.1707163, 49.1373719], [9.1706867, 49.1376150]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Lehmhaldenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1732457, 49.1111329], [9.1719803, 49.1109584], [9.1712256, 49.1107368], [9.1710770, 49.1106931]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Leiblstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2016028, 49.1210871], [9.2014631, 49.1213181], [9.2012803, 49.1215834], [9.2012043, 49.1216925], [9.2007721, 49.1221674], [9.2004966, 49.1224668], [9.2003560, 49.1226110], [9.1998886, 49.1231170]], [[9.2019666, 49.1206642], [9.2019160, 49.1206898], [9.2018577, 49.1207248], [9.2018268, 49.1207501], [9.2018015, 49.1207787], [9.2016694, 49.1209873], [9.2016028, 49.1210871]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Leibnizstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1790320, 49.1399317], [9.1790523, 49.1396530], [9.1790589, 49.1396111], [9.1791335, 49.1390980], [9.1791559, 49.1389444], [9.1791866, 49.1387086], [9.1792334, 49.1383549], [9.1792415, 49.1382957], [9.1793136, 49.1376936]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Leinbachstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2047096, 49.1665227], [9.2045648, 49.1664831], [9.2043857, 49.1664292], [9.2040578, 49.1663096], [9.2034286, 49.1662965], [9.2029451, 49.1662392], [9.2025545, 49.1661408], [9.2022863, 49.1660642], [9.2021261, 49.1660155], [9.2017426, 49.1659239], [9.2014849, 49.1658770], [9.2014755, 49.1658751]], [[9.2003666, 49.1658050], [9.1995737, 49.1658408], [9.1987852, 49.1658869], [9.1983186, 49.1659351], [9.1974807, 49.1660326]], [[9.2022863, 49.1660642], [9.2024171, 49.1659089], [9.2030743, 49.1659128]], [[9.2014755, 49.1658751], [9.2005660, 49.1658157], [9.2004156, 49.1658064], [9.2003666, 49.1658050]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Leingartener Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1511074, 49.1196761], [9.1510579, 49.1196777], [9.1509467, 49.1196812], [9.1506753, 49.1196899], [9.1505806, 49.1196929], [9.1502259, 49.1197166], [9.1501980, 49.1197212]], [[9.1501980, 49.1197212], [9.1499429, 49.1197736], [9.1498011, 49.1198187], [9.1497429, 49.1198372], [9.1495457, 49.1199227], [9.1493864, 49.1199987]], [[9.1540593, 49.1193588], [9.1538162, 49.1194285], [9.1521833, 49.1196124], [9.1519618, 49.1196387], [9.1516213, 49.1196608], [9.1511074, 49.1196761]], [[9.1479117, 49.1207458], [9.1483397, 49.1205267], [9.1493864, 49.1199987]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Leintalstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1727168, 49.1565419], [9.1728772, 49.1563566], [9.1731124, 49.1560824]], [[9.1741640, 49.1571183], [9.1740121, 49.1570374], [9.1735330, 49.1568445]], [[9.1705245, 49.1557666], [9.1703178, 49.1560027], [9.1699790, 49.1558915], [9.1700181, 49.1558172]], [[9.1712383, 49.1560226], [9.1709025, 49.1564180]], [[9.1731124, 49.1560824], [9.1734923, 49.1562148]], [[9.1728772, 49.1563566], [9.1733630, 49.1565255]], [[9.1720339, 49.1563020], [9.1718279, 49.1565487]], [[9.1722857, 49.1563905], [9.1723697, 49.1563150], [9.1724410, 49.1562360], [9.1725251, 49.1560947], [9.1725429, 49.1560644]], [[9.1692712, 49.1552816], [9.1695102, 49.1550357]], [[9.1735330, 49.1568445], [9.1732147, 49.1567147], [9.1727168, 49.1565419], [9.1722857, 49.1563905], [9.1720339, 49.1563020], [9.1712383, 49.1560226], [9.1705245, 49.1557666], [9.1698476, 49.1555305]], [[9.1698476, 49.1555305], [9.1697867, 49.1555131], [9.1697238, 49.1554917], [9.1696030, 49.1554477], [9.1694885, 49.1553997], [9.1693623, 49.1553370], [9.1692712, 49.1552816], [9.1689482, 49.1550774], [9.1688040, 49.1550038], [9.1686467, 49.1549281], [9.1684870, 49.1548574], [9.1682502, 49.1547749], [9.1679844, 49.1546976], [9.1677419, 49.1546389], [9.1674860, 49.1545847], [9.1673033, 49.1545585], [9.1669476, 49.1545129], [9.1665706, 49.1544725], [9.1660445, 49.1544207], [9.1653112, 49.1543543]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Leisbrunnenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1672033, 49.1558790], [9.1691328, 49.1565817]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Lenaustraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2300199, 49.1345707], [9.2298742, 49.1340645], [9.2297757, 49.1337672], [9.2294508, 49.1330757], [9.2293832, 49.1329714], [9.2292783, 49.1328798], [9.2291834, 49.1328247]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Lenbachweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2080287, 49.1279901], [9.2080696, 49.1279391], [9.2082679, 49.1276755]], [[9.2082679, 49.1276755], [9.2084499, 49.1274374], [9.2084581, 49.1273980]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Lenzweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1893871, 49.1433786], [9.1894894, 49.1437007], [9.1896516, 49.1442211]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Leonhard-Frank-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1888581, 49.1672652], [9.1885829, 49.1673520], [9.1882718, 49.1674192], [9.1877069, 49.1675311], [9.1868572, 49.1676897], [9.1868106, 49.1676959], [9.1864436, 49.1677555], [9.1860196, 49.1678353], [9.1856128, 49.1679092]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Leonhardstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1926904, 49.1387301], [9.1926965, 49.1387664], [9.1926712, 49.1388588], [9.1926027, 49.1389311], [9.1922408, 49.1391854], [9.1921795, 49.1392229], [9.1920389, 49.1393159], [9.1916959, 49.1395325], [9.1915565, 49.1396111], [9.1914250, 49.1396866], [9.1913490, 49.1397300], [9.1912607, 49.1397952], [9.1911895, 49.1399044]], [[9.1937976, 49.1374809], [9.1937974, 49.1375426], [9.1937887, 49.1376009], [9.1937632, 49.1376688], [9.1937356, 49.1377127], [9.1935723, 49.1379176], [9.1935167, 49.1379909], [9.1932681, 49.1383120], [9.1929703, 49.1386387], [9.1929037, 49.1386920], [9.1927919, 49.1387397], [9.1926965, 49.1387664]], [[9.1950692, 49.1365455], [9.1950317, 49.1367633], [9.1950087, 49.1368211], [9.1949801, 49.1368928], [9.1947801, 49.1372089], [9.1947283, 49.1372721], [9.1945539, 49.1375478], [9.1944217, 49.1377070], [9.1943384, 49.1377152], [9.1942525, 49.1377722], [9.1939138, 49.1380315], [9.1937526, 49.1380712], [9.1936214, 49.1381344], [9.1932495, 49.1385004], [9.1931476, 49.1385826], [9.1929703, 49.1386387]], [[9.1911895, 49.1399044], [9.1912113, 49.1399383], [9.1912166, 49.1399991], [9.1912315, 49.1401973], [9.1912446, 49.1404436], [9.1912454, 49.1405532], [9.1912505, 49.1406395], [9.1912523, 49.1406754], [9.1912693, 49.1409706], [9.1912726, 49.1410376], [9.1912667, 49.1411265]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Lerchenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2345034, 49.1369134], [9.2344736, 49.1369265], [9.2344355, 49.1369315], [9.2338410, 49.1369672]], [[9.2230007, 49.1375387], [9.2236331, 49.1375008], [9.2239688, 49.1374836], [9.2241091, 49.1374764], [9.2252612, 49.1373998], [9.2267768, 49.1373334], [9.2269895, 49.1373233]], [[9.2272051, 49.1373153], [9.2279322, 49.1372774], [9.2290425, 49.1372195], [9.2291685, 49.1372129]], [[9.2270238, 49.1373723], [9.2270027, 49.1373545], [9.2269932, 49.1373390], [9.2269895, 49.1373233], [9.2269922, 49.1373048], [9.2270055, 49.1372835], [9.2270253, 49.1372681], [9.2270450, 49.1372589], [9.2270697, 49.1372524], [9.2271240, 49.1372522], [9.2271553, 49.1372610], [9.2271752, 49.1372716], [9.2271918, 49.1372863], [9.2272003, 49.1372992], [9.2272051, 49.1373153], [9.2272043, 49.1373305], [9.2271959, 49.1373495], [9.2271858, 49.1373611], [9.2271638, 49.1373763], [9.2271433, 49.1373845], [9.2271102, 49.1373907], [9.2270680, 49.1373886], [9.2270454, 49.1373825], [9.2270238, 49.1373723]], [[9.2239688, 49.1374836], [9.2239389, 49.1372158], [9.2239075, 49.1371003], [9.2238803, 49.1370337], [9.2238481, 49.1369915], [9.2237989, 49.1369527], [9.2237794, 49.1369343], [9.2237700, 49.1369082]], [[9.2236331, 49.1375008], [9.2235991, 49.1372265], [9.2235757, 49.1371958], [9.2235316, 49.1369366], [9.2234940, 49.1368476], [9.2234865, 49.1367954]], [[9.2338410, 49.1369672], [9.2336851, 49.1369766], [9.2330821, 49.1370060], [9.2325202, 49.1370334], [9.2324387, 49.1370374], [9.2313143, 49.1371026], [9.2303696, 49.1371513], [9.2300819, 49.1371673], [9.2294619, 49.1371901], [9.2293055, 49.1371962]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Lessingstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2240762, 49.1507714], [9.2241809, 49.1507752], [9.2250801, 49.1507481], [9.2255063, 49.1507171], [9.2258125, 49.1506755], [9.2260871, 49.1506212], [9.2262403, 49.1505968], [9.2263674, 49.1505782], [9.2264784, 49.1506886], [9.2265766, 49.1507327], [9.2266349, 49.1507426], [9.2267038, 49.1507394], [9.2271870, 49.1506676], [9.2276998, 49.1505624], [9.2281251, 49.1504501], [9.2285517, 49.1502983], [9.2289051, 49.1501398], [9.2295849, 49.1497808], [9.2298543, 49.1496299]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Letten" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2581727, 49.1385552], [9.2582349, 49.1383393], [9.2582769, 49.1381935], [9.2584216, 49.1376910], [9.2584713, 49.1375633], [9.2584442, 49.1375105]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Lichtenbergerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2095414, 49.1695201], [9.2095443, 49.1696101], [9.2095198, 49.1697903], [9.2095053, 49.1699429], [9.2095037, 49.1699782], [9.2095012, 49.1700334], [9.2095054, 49.1700804]], [[9.2098394, 49.1721112], [9.2097935, 49.1721831], [9.2097712, 49.1722622], [9.2097860, 49.1723339], [9.2098718, 49.1725309], [9.2100831, 49.1730242], [9.2100885, 49.1730410], [9.2101526, 49.1732402], [9.2102162, 49.1735558], [9.2099405, 49.1749393], [9.2098936, 49.1752205], [9.2090324, 49.1798494], [9.2088873, 49.1806295], [9.2088744, 49.1806988], [9.2087632, 49.1813002]], [[9.2095886, 49.1711857], [9.2090783, 49.1712233], [9.2088721, 49.1712385], [9.2081058, 49.1711651]], [[9.2095054, 49.1700804], [9.2095263, 49.1703863], [9.2095535, 49.1707224], [9.2095604, 49.1708130], [9.2095837, 49.1711210], [9.2095869, 49.1711632], [9.2095886, 49.1711857], [9.2096066, 49.1716199], [9.2096407, 49.1718489], [9.2097015, 49.1720102], [9.2097616, 49.1720663], [9.2098394, 49.1721112]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Liebermannstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2003666, 49.1658050], [9.2003151, 49.1657306], [9.2001622, 49.1655172], [9.2000391, 49.1653644], [9.1997342, 49.1649982], [9.1996446, 49.1647402], [9.1996332, 49.1646803], [9.1996225, 49.1646382], [9.1995842, 49.1643611], [9.1996021, 49.1640878], [9.1996899, 49.1638466], [9.1997784, 49.1637553], [9.1999098, 49.1636858], [9.2000963, 49.1636410], [9.2004896, 49.1635638], [9.2007278, 49.1634911], [9.2009011, 49.1634215]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Liebigstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2145423, 49.1302785], [9.2144542, 49.1303349], [9.2143838, 49.1303657], [9.2143118, 49.1303858], [9.2142381, 49.1304001], [9.2132325, 49.1306032], [9.2127570, 49.1306993], [9.2125472, 49.1307417], [9.2122679, 49.1307982], [9.2119411, 49.1308642], [9.2118970, 49.1308737], [9.2117711, 49.1309023], [9.2110923, 49.1310379], [9.2104448, 49.1311635], [9.2097975, 49.1312927], [9.2096894, 49.1313231], [9.2096158, 49.1313514], [9.2095793, 49.1313721], [9.2095176, 49.1314103], [9.2094488, 49.1314470], [9.2089743, 49.1316394], [9.2085799, 49.1317939], [9.2082646, 49.1319227], [9.2079025, 49.1320624], [9.2077068, 49.1321385]], [[9.2131333, 49.1303645], [9.2132325, 49.1306032]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Liederkranzstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2320226, 49.1453922], [9.2325480, 49.1453588], [9.2329959, 49.1453304], [9.2331938, 49.1453178]], [[9.2331938, 49.1453178], [9.2331345, 49.1449772]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Lilienthalstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1519843, 49.1895534], [9.1514990, 49.1896850], [9.1513973, 49.1897187], [9.1512894, 49.1897765], [9.1511763, 49.1898564], [9.1510272, 49.1899792], [9.1507970, 49.1902447], [9.1505618, 49.1905277], [9.1502607, 49.1909343], [9.1502413, 49.1909620], [9.1499362, 49.1914406], [9.1498262, 49.1915698], [9.1497115, 49.1916848], [9.1495655, 49.1917872], [9.1493577, 49.1919197], [9.1489070, 49.1921827], [9.1487359, 49.1922825], [9.1486390, 49.1923354], [9.1485873, 49.1923637], [9.1480075, 49.1925921], [9.1479841, 49.1926209], [9.1479708, 49.1926580]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Lilienweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1456608, 49.1909192], [9.1457990, 49.1907061], [9.1458267, 49.1906869], [9.1458626, 49.1906838], [9.1460364, 49.1907156]], [[9.1458267, 49.1906869], [9.1458312, 49.1906630], [9.1458221, 49.1906419], [9.1457968, 49.1906299], [9.1456750, 49.1905988]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Limesstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1938526, 49.1464339], [9.1939275, 49.1464167], [9.1946185, 49.1463606], [9.1947409, 49.1463502], [9.1949274, 49.1463232], [9.1953862, 49.1462595], [9.1957576, 49.1462022]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Lindenhof" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1845994, 49.1509679], [9.1846248, 49.1506844]], [[9.1846248, 49.1506844], [9.1846791, 49.1495320]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Lindenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1986246, 49.1651429], [9.1987211, 49.1655524], [9.1987852, 49.1658869]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Linkstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2245052, 49.1525076], [9.2264755, 49.1521630]], [[9.2264755, 49.1521630], [9.2273526, 49.1519556], [9.2276921, 49.1518817], [9.2291657, 49.1515421], [9.2292151, 49.1515123], [9.2292330, 49.1514816]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Linsenbuckel" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2158851, 49.1132106], [9.2159173, 49.1132721], [9.2154311, 49.1134119]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Lise-Meitner-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2191769, 49.1217972], [9.2192675, 49.1217948], [9.2210680, 49.1217562], [9.2211295, 49.1217549]], [[9.2191769, 49.1217972], [9.2189457, 49.1218055]], [[9.2189457, 49.1218055], [9.2186204, 49.1218171], [9.2184231, 49.1218221], [9.2182323, 49.1218269], [9.2181538, 49.1218289], [9.2180644, 49.1218311], [9.2179732, 49.1218355], [9.2179303, 49.1218408], [9.2178914, 49.1218469], [9.2178485, 49.1218627], [9.2178230, 49.1218777], [9.2177748, 49.1219268], [9.2177546, 49.1219505], [9.2177453, 49.1219838], [9.2177466, 49.1220075], [9.2177560, 49.1220374], [9.2178271, 49.1221866], [9.2179296, 49.1223956], [9.2179570, 49.1224506], [9.2180552, 49.1226483], [9.2180651, 49.1226682], [9.2181877, 49.1229080], [9.2182186, 49.1229563], [9.2182356, 49.1229741], [9.2182521, 49.1229914], [9.2182843, 49.1230186]], [[9.2182843, 49.1230186], [9.2183232, 49.1230388], [9.2183688, 49.1230616], [9.2184265, 49.1230809], [9.2185083, 49.1230923], [9.2185767, 49.1230967], [9.2187934, 49.1230915], [9.2188216, 49.1230909], [9.2189441, 49.1230879], [9.2189978, 49.1230835], [9.2190541, 49.1230730], [9.2191037, 49.1230581], [9.2191641, 49.1230335], [9.2192043, 49.1230037], [9.2192325, 49.1229651], [9.2192467, 49.1229124], [9.2192439, 49.1228448], [9.2192338, 49.1226026], [9.2192269, 49.1224990], [9.2192089, 49.1222306], [9.2192003, 49.1221023], [9.2191923, 49.1219917], [9.2191875, 49.1219267], [9.2191769, 49.1217972], [9.2191694, 49.1216223], [9.2191641, 49.1215003], [9.2191594, 49.1212925], [9.2191546, 49.1211806]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Liststraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2108696, 49.1275321], [9.2103716, 49.1264296], [9.2103372, 49.1263527], [9.2101951, 49.1260279], [9.2101538, 49.1259340], [9.2100656, 49.1257396], [9.2099426, 49.1254572], [9.2099161, 49.1253937]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Lixstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2243011, 49.1390286], [9.2242778, 49.1388292], [9.2242528, 49.1386159], [9.2242268, 49.1383939], [9.2242022, 49.1381837], [9.2242002, 49.1381683], [9.2241719, 49.1379534], [9.2241091, 49.1374764]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Lochingerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1997888, 49.1245934], [9.2004058, 49.1239044]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Lohtorstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2168769, 49.1435582], [9.2175909, 49.1434265]], [[9.2195028, 49.1430891], [9.2195765, 49.1430793], [9.2196597, 49.1430694], [9.2200755, 49.1430099], [9.2203378, 49.1429719]], [[9.2175909, 49.1434265], [9.2177324, 49.1434032], [9.2181947, 49.1433008], [9.2183949, 49.1432552], [9.2190094, 49.1431632], [9.2192481, 49.1431273], [9.2195028, 49.1430891]], [[9.2203378, 49.1429719], [9.2206611, 49.1429308]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Lortzingstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1894450, 49.1359985], [9.1895750, 49.1355924], [9.1895863, 49.1353975], [9.1895753, 49.1351682], [9.1894825, 49.1347954], [9.1893667, 49.1343324], [9.1892297, 49.1340096], [9.1890985, 49.1337575], [9.1889547, 49.1335147], [9.1888574, 49.1333821], [9.1887356, 49.1333187], [9.1886641, 49.1332873]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Lothringer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2369367, 49.1337333], [9.2367795, 49.1329840]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Louis-Hentges-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2192330, 49.1287193], [9.2193505, 49.1287048], [9.2196963, 49.1286622], [9.2198490, 49.1286427]], [[9.2183308, 49.1290287], [9.2185169, 49.1290071], [9.2187223, 49.1289833], [9.2190595, 49.1289452], [9.2192912, 49.1289267], [9.2194055, 49.1289148], [9.2196777, 49.1288864], [9.2197469, 49.1288785], [9.2198319, 49.1288688], [9.2199164, 49.1288539], [9.2199500, 49.1288434]], [[9.2184291, 49.1293340], [9.2185958, 49.1293167], [9.2189293, 49.1292822], [9.2189508, 49.1293734]], [[9.2177501, 49.1291066], [9.2180351, 49.1290795], [9.2183151, 49.1290514], [9.2183308, 49.1290287]], [[9.2185169, 49.1290071], [9.2185958, 49.1293167]], [[9.2199338, 49.1287031], [9.2199540, 49.1286863], [9.2200143, 49.1286714], [9.2200812, 49.1286652], [9.2205492, 49.1286286], [9.2208438, 49.1286187], [9.2214115, 49.1285974], [9.2220423, 49.1285858], [9.2224326, 49.1285652]], [[9.2175220, 49.1291297], [9.2177501, 49.1291066]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Löwensteiner Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2352684, 49.1312533], [9.2355404, 49.1308364], [9.2355614, 49.1308042], [9.2358141, 49.1304173], [9.2359005, 49.1303376], [9.2359189, 49.1303206], [9.2361167, 49.1301928], [9.2363453, 49.1300586], [9.2366132, 49.1299391], [9.2370116, 49.1297869], [9.2373220, 49.1296903]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Ludwig-Essinger-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1876760, 49.1321555], [9.1875295, 49.1321614], [9.1872073, 49.1320945], [9.1866338, 49.1320078], [9.1863462, 49.1319737], [9.1863139, 49.1320111], [9.1862351, 49.1320283], [9.1861641, 49.1320034], [9.1861412, 49.1319607], [9.1861599, 49.1319221], [9.1862221, 49.1318949], [9.1862975, 49.1319027], [9.1863421, 49.1319382], [9.1863462, 49.1319737]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Ludwig-Richter-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1972652, 49.1220718], [9.1980128, 49.1212587]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Ludwig-Wunderlich-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1711928, 49.1152391], [9.1716539, 49.1153387], [9.1720406, 49.1154223], [9.1727697, 49.1155935]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Ludwigsburger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1911950, 49.1411259], [9.1911807, 49.1410381], [9.1911639, 49.1407770], [9.1911632, 49.1407619], [9.1911603, 49.1406908], [9.1911578, 49.1406571], [9.1911544, 49.1405559]], [[9.1892399, 49.1277716], [9.1892184, 49.1276998], [9.1891897, 49.1276192], [9.1891267, 49.1275083]], [[9.1891267, 49.1275083], [9.1889983, 49.1273600], [9.1889142, 49.1272888], [9.1888083, 49.1272317], [9.1886967, 49.1271917], [9.1885833, 49.1271750], [9.1884550, 49.1271799]], [[9.1884550, 49.1271799], [9.1883465, 49.1272123], [9.1882466, 49.1272463], [9.1881121, 49.1273241]], [[9.1861988, 49.1264148], [9.1861428, 49.1265597], [9.1855580, 49.1264153], [9.1845585, 49.1261862], [9.1843071, 49.1261364], [9.1842404, 49.1261007], [9.1842349, 49.1260455], [9.1842745, 49.1259657]], [[9.1873702, 49.1277294], [9.1875745, 49.1273451], [9.1876847, 49.1272048]], [[9.1884065, 49.1279654], [9.1883948, 49.1279185], [9.1883552, 49.1277913], [9.1882718, 49.1276300], [9.1881308, 49.1275111], [9.1880112, 49.1274178], [9.1876847, 49.1272048], [9.1870555, 49.1269569]], [[9.1890134, 49.1279193], [9.1892750, 49.1279019], [9.1893755, 49.1279151]], [[9.1911895, 49.1399044], [9.1911870, 49.1397814], [9.1911830, 49.1394576], [9.1911745, 49.1393633], [9.1911080, 49.1387875], [9.1910645, 49.1381716], [9.1910021, 49.1375450], [9.1909561, 49.1369831], [9.1909477, 49.1369134], [9.1909460, 49.1368865], [9.1909166, 49.1366240], [9.1908477, 49.1358911], [9.1907282, 49.1354063], [9.1906891, 49.1352472], [9.1906412, 49.1350574], [9.1905058, 49.1345358], [9.1903898, 49.1339667], [9.1900721, 49.1331856], [9.1899472, 49.1328700], [9.1898318, 49.1326032], [9.1896157, 49.1320918], [9.1895917, 49.1320369], [9.1895079, 49.1318401], [9.1894674, 49.1317243], [9.1894101, 49.1315602], [9.1893607, 49.1314293], [9.1892186, 49.1310944], [9.1891593, 49.1309400], [9.1889001, 49.1302561], [9.1888730, 49.1301845], [9.1887876, 49.1298812], [9.1886991, 49.1295668], [9.1886521, 49.1294000], [9.1885874, 49.1291367], [9.1885649, 49.1290711], [9.1885385, 49.1288161], [9.1885312, 49.1286908], [9.1884783, 49.1280682], [9.1884955, 49.1280201], [9.1885330, 49.1279856], [9.1885921, 49.1279681], [9.1890134, 49.1279193], [9.1891875, 49.1278599], [9.1892240, 49.1278189], [9.1892399, 49.1277716]], [[9.1884550, 49.1271799], [9.1883416, 49.1272773], [9.1883041, 49.1273370], [9.1882966, 49.1273870], [9.1882961, 49.1274611]], [[9.1881121, 49.1273241], [9.1880593, 49.1272855]], [[9.1911544, 49.1405559], [9.1911517, 49.1404418], [9.1911468, 49.1402648], [9.1911450, 49.1399656], [9.1911601, 49.1399359], [9.1911895, 49.1399044]], [[9.1888550, 49.1277301], [9.1886992, 49.1276929], [9.1886512, 49.1276705], [9.1885446, 49.1276207], [9.1882961, 49.1274611]], [[9.1771157, 49.1243781], [9.1751568, 49.1239107], [9.1744883, 49.1237398], [9.1723066, 49.1231727], [9.1716729, 49.1230129], [9.1703561, 49.1226665]], [[9.1876453, 49.1269833], [9.1874473, 49.1268602], [9.1872589, 49.1267619], [9.1870344, 49.1266553], [9.1866175, 49.1265250], [9.1861988, 49.1264148], [9.1857162, 49.1262851], [9.1852148, 49.1261644], [9.1842745, 49.1259657], [9.1829859, 49.1257018], [9.1821733, 49.1255263], [9.1814729, 49.1253847], [9.1813228, 49.1253537], [9.1809533, 49.1252797], [9.1802848, 49.1251424], [9.1799808, 49.1250742], [9.1790180, 49.1248508], [9.1773163, 49.1244301], [9.1772874, 49.1244225], [9.1771157, 49.1243781]], [[9.1882961, 49.1274611], [9.1881121, 49.1273241]], [[9.1894084, 49.1276281], [9.1893112, 49.1276838], [9.1891699, 49.1277242], [9.1890727, 49.1277392], [9.1888550, 49.1277301]], [[9.1880593, 49.1272855], [9.1876453, 49.1269833]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Ludwigstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1946867, 49.1690682], [9.1944859, 49.1690078], [9.1939220, 49.1688626], [9.1935589, 49.1687738], [9.1931264, 49.1686612], [9.1926199, 49.1685239], [9.1918682, 49.1683243], [9.1914267, 49.1682210], [9.1907534, 49.1681264], [9.1902929, 49.1680781], [9.1900644, 49.1680445], [9.1898427, 49.1679931], [9.1895379, 49.1679146], [9.1892064, 49.1677808], [9.1890147, 49.1676699], [9.1889219, 49.1675320], [9.1888581, 49.1672652], [9.1888668, 49.1672136], [9.1889246, 49.1671196]], [[9.1918682, 49.1683243], [9.1919867, 49.1680751], [9.1917853, 49.1680326]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Luisenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2189862, 49.1355297], [9.2181657, 49.1356599], [9.2178054, 49.1357171], [9.2172292, 49.1358085], [9.2162302, 49.1359679]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Lukas-Cranach-Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2040395, 49.1273144], [9.2033314, 49.1275532]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Lutzstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1864804, 49.1166591], [9.1863791, 49.1173508], [9.1863619, 49.1174612], [9.1863489, 49.1175841], [9.1863250, 49.1177137], [9.1862739, 49.1180546], [9.1862650, 49.1181251], [9.1862398, 49.1182633], [9.1862016, 49.1185077], [9.1861688, 49.1187336], [9.1861483, 49.1188552], [9.1861313, 49.1189120], [9.1860734, 49.1189987]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Lückenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1662756, 49.1582155], [9.1665460, 49.1581322], [9.1668795, 49.1580006], [9.1669172, 49.1578951], [9.1670089, 49.1576063], [9.1670658, 49.1574519], [9.1673664, 49.1566371]], [[9.1674928, 49.1577298], [9.1670089, 49.1576063]], [[9.1670658, 49.1574519], [9.1667782, 49.1574072], [9.1667245, 49.1575476]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Maasstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1871886, 49.1534732], [9.1870854, 49.1535139], [9.1869270, 49.1535879], [9.1865748, 49.1537780], [9.1865110, 49.1538199], [9.1864043, 49.1539071], [9.1862358, 49.1540232], [9.1860283, 49.1542636], [9.1859039, 49.1544556], [9.1858674, 49.1545118], [9.1858526, 49.1545457], [9.1858250, 49.1546086], [9.1857833, 49.1546456], [9.1857088, 49.1547117]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Maienfelser Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2348393, 49.1324717], [9.2346739, 49.1319360]], [[9.2351199, 49.1331520], [9.2349031, 49.1324644]], [[9.2346739, 49.1319360], [9.2346034, 49.1317202]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Maihaldenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1667419, 49.1639933], [9.1668070, 49.1640876], [9.1669893, 49.1642826]], [[9.1670929, 49.1643997], [9.1670440, 49.1643423], [9.1669893, 49.1642826]], [[9.1667419, 49.1639933], [9.1666726, 49.1638483], [9.1666666, 49.1637866], [9.1666236, 49.1633481], [9.1665898, 49.1632404], [9.1665374, 49.1631827]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Mainhardter Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2352672, 49.1293986], [9.2352184, 49.1293921], [9.2351791, 49.1293723], [9.2346196, 49.1282987]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Mainzer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1140699, 49.1795633], [9.1140023, 49.1792857], [9.1139795, 49.1792160], [9.1135281, 49.1790417]], [[9.1123017, 49.1797629], [9.1121625, 49.1797776], [9.1121308, 49.1796493], [9.1122712, 49.1796345]], [[9.1140442, 49.1789131], [9.1143363, 49.1788818], [9.1143842, 49.1791268], [9.1144418, 49.1791573], [9.1144871, 49.1791832], [9.1145054, 49.1792505], [9.1146196, 49.1792419]], [[9.1143345, 49.1801825], [9.1143241, 49.1801138], [9.1143041, 49.1796891], [9.1142707, 49.1795470], [9.1140699, 49.1795633], [9.1140027, 49.1796129], [9.1123017, 49.1797629], [9.1122712, 49.1796345], [9.1122669, 49.1796164], [9.1122088, 49.1793211]], [[9.1143041, 49.1796891], [9.1147630, 49.1796430]], [[9.1139795, 49.1792160], [9.1144418, 49.1791573]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Mandrystraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2417956, 49.1371157], [9.2419240, 49.1371194], [9.2429835, 49.1369545], [9.2442865, 49.1367429]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Mannheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2211675, 49.1463664], [9.2209976, 49.1463738], [9.2202901, 49.1463976], [9.2201616, 49.1464034], [9.2189687, 49.1463698], [9.2186723, 49.1463646], [9.2185405, 49.1463635], [9.2182817, 49.1463607], [9.2179802, 49.1463690], [9.2176106, 49.1463989], [9.2173114, 49.1464480], [9.2169901, 49.1465076], [9.2166215, 49.1466094], [9.2165634, 49.1466281], [9.2163083, 49.1467100], [9.2158481, 49.1469401], [9.2153100, 49.1472483], [9.2144727, 49.1478058], [9.2141894, 49.1480135], [9.2141293, 49.1481033], [9.2140640, 49.1481925]], [[9.2137207, 49.1479301], [9.2140070, 49.1478785], [9.2142838, 49.1477777], [9.2143380, 49.1477482]], [[9.2170299, 49.1463511], [9.2172497, 49.1463150], [9.2175735, 49.1462635], [9.2182501, 49.1462457], [9.2186441, 49.1462480]], [[9.2143380, 49.1477482], [9.2149791, 49.1473230], [9.2157172, 49.1468570], [9.2162064, 49.1466099], [9.2164398, 49.1465217], [9.2170299, 49.1463511]], [[9.2186441, 49.1462480], [9.2194756, 49.1462922], [9.2201583, 49.1463134], [9.2203666, 49.1463106], [9.2206423, 49.1463053], [9.2207399, 49.1463040]], [[9.2172497, 49.1463150], [9.2173114, 49.1464480]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Marburger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1100677, 49.1822006], [9.1103636, 49.1821567], [9.1105807, 49.1821520]], [[9.1098651, 49.1819503], [9.1102369, 49.1819036]], [[9.1096683, 49.1814771], [9.1098525, 49.1819240], [9.1098651, 49.1819503], [9.1100677, 49.1822006]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Marderweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1547843, 49.1987242], [9.1549051, 49.1985983], [9.1549730, 49.1985360], [9.1550178, 49.1985123], [9.1550895, 49.1984994], [9.1553150, 49.1984972], [9.1553905, 49.1985098], [9.1554811, 49.1985381]], [[9.1554811, 49.1985381], [9.1555824, 49.1984836], [9.1555964, 49.1984617], [9.1556011, 49.1983618], [9.1556141, 49.1983369], [9.1556515, 49.1983201]], [[9.1561111, 49.1984868], [9.1556515, 49.1983201]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Marienburger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1963815, 49.1594105], [9.1964421, 49.1593120], [9.1965219, 49.1591821], [9.1966095, 49.1589530], [9.1960853, 49.1588398], [9.1957560, 49.1587230], [9.1956174, 49.1586738], [9.1952351, 49.1584920], [9.1950183, 49.1583797], [9.1948969, 49.1582976], [9.1947771, 49.1581971], [9.1946714, 49.1580905], [9.1946077, 49.1579608], [9.1945944, 49.1578974], [9.1945882, 49.1577574], [9.1946404, 49.1575852], [9.1947062, 49.1574877], [9.1947469, 49.1574589], [9.1949228, 49.1573779], [9.1951860, 49.1573525], [9.1953884, 49.1573515], [9.1960141, 49.1573591], [9.1963165, 49.1573996], [9.1971795, 49.1576207], [9.1972095, 49.1576289], [9.1977363, 49.1577723], [9.1977993, 49.1577894], [9.1978297, 49.1577960], [9.1985657, 49.1579548], [9.1987280, 49.1579945], [9.1987893, 49.1580128], [9.1989083, 49.1580661], [9.1989606, 49.1580895], [9.1991662, 49.1582102], [9.1993104, 49.1583508], [9.1993609, 49.1585214], [9.1993451, 49.1586954], [9.1991532, 49.1590250], [9.1990603, 49.1591844]], [[9.1940352, 49.1579659], [9.1946077, 49.1579608]], [[9.1949228, 49.1573779], [9.1948836, 49.1572987], [9.1948807, 49.1572823], [9.1948486, 49.1571018], [9.1948027, 49.1569236], [9.1947614, 49.1567751], [9.1948015, 49.1566152], [9.1949426, 49.1564132]], [[9.1977993, 49.1577894], [9.1979490, 49.1576634], [9.1980324, 49.1576335], [9.1981556, 49.1576250], [9.1986540, 49.1576634], [9.1988982, 49.1576932]], [[9.1988982, 49.1576932], [9.1989487, 49.1576913], [9.1989824, 49.1577097], [9.1989940, 49.1577399], [9.1989776, 49.1577627], [9.1989331, 49.1577773], [9.1988870, 49.1577688], [9.1988658, 49.1577519], [9.1988636, 49.1577179], [9.1988982, 49.1576932]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Markgraf-Ludwig-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2315146, 49.1284196], [9.2316837, 49.1283683], [9.2319393, 49.1282599], [9.2322190, 49.1281468], [9.2324461, 49.1280621], [9.2328031, 49.1279558], [9.2330237, 49.1278945], [9.2333356, 49.1278093], [9.2336048, 49.1277351]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Marktplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2181154, 49.1421462], [9.2181398, 49.1422812], [9.2181553, 49.1424023], [9.2181573, 49.1424503], [9.2181791, 49.1424574], [9.2182044, 49.1424613], [9.2186003, 49.1424662], [9.2185940, 49.1425885], [9.2192649, 49.1425888], [9.2192730, 49.1425446], [9.2191546, 49.1424975], [9.2191453, 49.1423888], [9.2191360, 49.1422896], [9.2191461, 49.1422898], [9.2191410, 49.1422277], [9.2191129, 49.1422295], [9.2190977, 49.1420328], [9.2190169, 49.1420296], [9.2181922, 49.1421338], [9.2181154, 49.1421462]], [[9.2190063, 49.1419664], [9.2190082, 49.1419776], [9.2190169, 49.1420296], [9.2190651, 49.1423645]], [[9.2190651, 49.1423645], [9.2190785, 49.1424581], [9.2190938, 49.1424996], [9.2191406, 49.1425234], [9.2192146, 49.1425385], [9.2192730, 49.1425446], [9.2193214, 49.1425394]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Martin-Luther-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2159986, 49.1272761], [9.2161635, 49.1279147], [9.2162383, 49.1282806], [9.2162601, 49.1283713], [9.2163061, 49.1285192], [9.2163103, 49.1285457], [9.2163034, 49.1285659], [9.2162831, 49.1285809], [9.2162583, 49.1285896], [9.2162124, 49.1285991], [9.2158736, 49.1286477], [9.2156299, 49.1286831], [9.2155787, 49.1286937], [9.2155188, 49.1287098], [9.2154581, 49.1287391]], [[9.2163034, 49.1285659], [9.2163591, 49.1285853], [9.2169999, 49.1285191]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Martin-Niemöller-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1839776, 49.1344099], [9.1840580, 49.1346120], [9.1851267, 49.1347655], [9.1852745, 49.1347431], [9.1859663, 49.1348364], [9.1861192, 49.1347769]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Massenbacher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1832942, 49.1435029], [9.1832907, 49.1431722], [9.1832975, 49.1428925], [9.1833190, 49.1426176], [9.1833324, 49.1425366], [9.1833605, 49.1424973]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Matthias-Erzberger-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1352076, 49.1943334], [9.1351929, 49.1944341], [9.1351945, 49.1944786], [9.1352027, 49.1945183], [9.1352148, 49.1945543], [9.1352386, 49.1945874], [9.1352752, 49.1946240], [9.1353460, 49.1946646], [9.1358734, 49.1948671], [9.1359709, 49.1949003], [9.1360726, 49.1949216], [9.1361828, 49.1949358], [9.1363740, 49.1949506], [9.1364816, 49.1949466], [9.1365516, 49.1949256], [9.1365984, 49.1948953], [9.1367765, 49.1947274]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Mauerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1998886, 49.1231170], [9.1992666, 49.1228695], [9.1984054, 49.1225241], [9.1981391, 49.1224190], [9.1977394, 49.1222603], [9.1975378, 49.1221802], [9.1972652, 49.1220718], [9.1964483, 49.1217550], [9.1958560, 49.1215109], [9.1955682, 49.1213931], [9.1952540, 49.1212646], [9.1946881, 49.1210267], [9.1938612, 49.1207230], [9.1935859, 49.1206272], [9.1928635, 49.1203572]], [[9.2032212, 49.1243743], [9.2028896, 49.1242640], [9.2023387, 49.1240754], [9.2015041, 49.1237598], [9.2014349, 49.1237359], [9.2005225, 49.1233668], [9.2001935, 49.1232356], [9.1998886, 49.1231170]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Maulbronner Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1925901, 49.1297243], [9.1926307, 49.1303515], [9.1926661, 49.1307166]], [[9.1924201, 49.1292037], [9.1924452, 49.1292371], [9.1924733, 49.1294653], [9.1925016, 49.1295986], [9.1925402, 49.1297291]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Mauserstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1864804, 49.1166591], [9.1861977, 49.1166411], [9.1852586, 49.1165770], [9.1851666, 49.1165730], [9.1839617, 49.1164861], [9.1836779, 49.1164525]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Maustalstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1454616, 49.1916177], [9.1452765, 49.1915186], [9.1450761, 49.1914227], [9.1438136, 49.1908069], [9.1437411, 49.1907773], [9.1436583, 49.1907644], [9.1435196, 49.1907812]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Max-Planck-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2191346, 49.1209307], [9.2192332, 49.1209442], [9.2192935, 49.1209762], [9.2193290, 49.1210197], [9.2193380, 49.1210502], [9.2193208, 49.1211067], [9.2192902, 49.1211383], [9.2192490, 49.1211617], [9.2191546, 49.1211806], [9.2190931, 49.1211771], [9.2190441, 49.1211631], [9.2189953, 49.1211349], [9.2189688, 49.1211062], [9.2189536, 49.1210677], [9.2189588, 49.1210246], [9.2189799, 49.1209915], [9.2190321, 49.1209542], [9.2190778, 49.1209381], [9.2191346, 49.1209307]], [[9.2193380, 49.1210502], [9.2194795, 49.1210424], [9.2206029, 49.1210107], [9.2212159, 49.1209946]], [[9.2017831, 49.1201118], [9.2018507, 49.1201167], [9.2022323, 49.1201170], [9.2022890, 49.1201177], [9.2025587, 49.1201207]], [[9.2027211, 49.1210214], [9.2027275, 49.1209693], [9.2027199, 49.1207149], [9.2027128, 49.1204732], [9.2027158, 49.1204483], [9.2027336, 49.1204288], [9.2027667, 49.1204183], [9.2028193, 49.1204148], [9.2028746, 49.1204154], [9.2030983, 49.1204183], [9.2032709, 49.1204206], [9.2036780, 49.1204183], [9.2037398, 49.1204201], [9.2037759, 49.1204307], [9.2038053, 49.1204493], [9.2038246, 49.1204716], [9.2038298, 49.1204983], [9.2038309, 49.1205199], [9.2038290, 49.1206341], [9.2038287, 49.1206504], [9.2038224, 49.1208911], [9.2038226, 49.1209010], [9.2038247, 49.1209966], [9.2038308, 49.1212757], [9.2038253, 49.1213412]], [[9.2065841, 49.1220486], [9.2065303, 49.1220324], [9.2064814, 49.1220034], [9.2064486, 49.1219649], [9.2064366, 49.1219261], [9.2064394, 49.1218958], [9.2064561, 49.1218615], [9.2064787, 49.1218372], [9.2064944, 49.1218253], [9.2065534, 49.1217975], [9.2066309, 49.1217844], [9.2067096, 49.1217916], [9.2067782, 49.1218176], [9.2068215, 49.1218522], [9.2068460, 49.1218972], [9.2068483, 49.1219277], [9.2068436, 49.1219489], [9.2068305, 49.1219746], [9.2068074, 49.1220002], [9.2067361, 49.1220394], [9.2066806, 49.1220518], [9.2066103, 49.1220524], [9.2065841, 49.1220486]], [[9.2054175, 49.1217745], [9.2057127, 49.1218074], [9.2063783, 49.1218365], [9.2064787, 49.1218372]], [[9.2078954, 49.1218142], [9.2073001, 49.1219250]], [[9.2068460, 49.1218972], [9.2069129, 49.1218928], [9.2078954, 49.1218142]], [[9.2073001, 49.1219250], [9.2069207, 49.1219464], [9.2068436, 49.1219489]], [[9.2054175, 49.1217745], [9.2052676, 49.1217437], [9.2050992, 49.1217002], [9.2045769, 49.1215597], [9.2038253, 49.1213412], [9.2027211, 49.1210214], [9.2025318, 49.1209675], [9.2023545, 49.1209065], [9.2022518, 49.1208599], [9.2021485, 49.1208052], [9.2020197, 49.1207170], [9.2019666, 49.1206642]], [[9.2052676, 49.1217437], [9.2052354, 49.1216649], [9.2052229, 49.1216353], [9.2052038, 49.1215642], [9.2051978, 49.1215177], [9.2052011, 49.1214013], [9.2052009, 49.1211843], [9.2051960, 49.1211390], [9.2051853, 49.1211056], [9.2051747, 49.1210885], [9.2051679, 49.1210775], [9.2051518, 49.1210494], [9.2051411, 49.1210178], [9.2051317, 49.1209801], [9.2051451, 49.1207659], [9.2051558, 49.1207466], [9.2051826, 49.1207370], [9.2052175, 49.1207352], [9.2054911, 49.1207387]], [[9.2212159, 49.1209946], [9.2218721, 49.1209109], [9.2220072, 49.1208634], [9.2220492, 49.1208290], [9.2220997, 49.1207765], [9.2221287, 49.1207423], [9.2221846, 49.1206732], [9.2222097, 49.1206171], [9.2222210, 49.1205651]], [[9.2163579, 49.1209434], [9.2161296, 49.1209503], [9.2155383, 49.1209027]], [[9.2129287, 49.1212333], [9.2126908, 49.1213131]], [[9.2073001, 49.1219250], [9.2071295, 49.1219567], [9.2070113, 49.1219871], [9.2068967, 49.1220526], [9.2068421, 49.1220915], [9.2067062, 49.1222103], [9.2066720, 49.1224867]], [[9.2019666, 49.1206642], [9.2018777, 49.1205340], [9.2017954, 49.1203640], [9.2017755, 49.1202959], [9.2017698, 49.1202539], [9.2017698, 49.1201866], [9.2017768, 49.1201470], [9.2017831, 49.1201118], [9.2017999, 49.1200360], [9.2018646, 49.1197468], [9.2019114, 49.1194966], [9.2019496, 49.1192924]], [[9.2223289, 49.1219483], [9.2222454, 49.1217434], [9.2222270, 49.1214752], [9.2221942, 49.1213062], [9.2221450, 49.1211963], [9.2220682, 49.1211354], [9.2218705, 49.1210488], [9.2212159, 49.1209946]], [[9.2064366, 49.1219261], [9.2063775, 49.1219246], [9.2061081, 49.1218959], [9.2058284, 49.1218668], [9.2056419, 49.1218290], [9.2054175, 49.1217745]], [[9.2189536, 49.1210677], [9.2187972, 49.1210723], [9.2182349, 49.1210772], [9.2177361, 49.1210550]], [[9.2122739, 49.1214056], [9.2118305, 49.1214645], [9.2114709, 49.1214971], [9.2114321, 49.1215006], [9.2102384, 49.1215865], [9.2101848, 49.1215916], [9.2094633, 49.1216583], [9.2087211, 49.1217280], [9.2081443, 49.1217885], [9.2078954, 49.1218142]], [[9.2126908, 49.1213131], [9.2124792, 49.1213656], [9.2122739, 49.1214056]], [[9.2019496, 49.1192924], [9.2019740, 49.1190362], [9.2019893, 49.1187867], [9.2019849, 49.1184100], [9.2019833, 49.1182900], [9.2019716, 49.1181613], [9.2019590, 49.1180410], [9.2019323, 49.1176453], [9.2019256, 49.1175736], [9.2019103, 49.1175206]], [[9.2177361, 49.1210550], [9.2175131, 49.1210310]], [[9.2175131, 49.1210310], [9.2171345, 49.1209865], [9.2170322, 49.1209745]], [[9.2212159, 49.1209946], [9.2217448, 49.1210051], [9.2221184, 49.1210007], [9.2222607, 49.1209985]], [[9.2222607, 49.1209985], [9.2224038, 49.1209926]], [[9.2155383, 49.1209027], [9.2150681, 49.1208684], [9.2147429, 49.1208547], [9.2144251, 49.1208539], [9.2140630, 49.1208788], [9.2139007, 49.1209055], [9.2134527, 49.1210378], [9.2134301, 49.1210450], [9.2132459, 49.1211038], [9.2131972, 49.1211249], [9.2130958, 49.1211666], [9.2129646, 49.1212207], [9.2129287, 49.1212333]], [[9.2170322, 49.1209745], [9.2169163, 49.1209608], [9.2165660, 49.1209316], [9.2163579, 49.1209434]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Max-Reger-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1546939, 49.2002454], [9.1543228, 49.2000107], [9.1542540, 49.1999649], [9.1541793, 49.1998807], [9.1541170, 49.1998082], [9.1539415, 49.1996181], [9.1538694, 49.1995069], [9.1538657, 49.1994816], [9.1538776, 49.1994324]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Max-von-Laue-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2108945, 49.1185571], [9.2108864, 49.1183210], [9.2109429, 49.1181677]], [[9.2113142, 49.1185509], [9.2113129, 49.1183490], [9.2113169, 49.1183183], [9.2113523, 49.1182231]], [[9.2114709, 49.1214971], [9.2114457, 49.1213087], [9.2114470, 49.1212657], [9.2114886, 49.1210010], [9.2115355, 49.1206671], [9.2115476, 49.1205671], [9.2115892, 49.1201540], [9.2116453, 49.1196002], [9.2116562, 49.1195340], [9.2117145, 49.1191536], [9.2117581, 49.1187836], [9.2118045, 49.1184086], [9.2118038, 49.1183753], [9.2117984, 49.1183499], [9.2117679, 49.1183119], [9.2117313, 49.1182920], [9.2116844, 49.1182762], [9.2113523, 49.1182231], [9.2113089, 49.1182165], [9.2109429, 49.1181677], [9.2105229, 49.1181106], [9.2104224, 49.1180954], [9.2103679, 49.1180825], [9.2103118, 49.1180571], [9.2102769, 49.1180321], [9.2102488, 49.1180003], [9.2102355, 49.1179959]], [[9.2104318, 49.1185623], [9.2104251, 49.1183973], [9.2104318, 49.1183517], [9.2105229, 49.1181106]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Maybachstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2288741, 49.1469277], [9.2289192, 49.1472784], [9.2289218, 49.1472986], [9.2289501, 49.1475180], [9.2289714, 49.1476833], [9.2289760, 49.1477193], [9.2290050, 49.1479417]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Meisenhalde" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1757946, 49.1008028], [9.1759167, 49.1005729]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Meisenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1478599, 49.1943251], [9.1485512, 49.1943927], [9.1487917, 49.1944200], [9.1493718, 49.1945319]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Melanchthonweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1928679, 49.1666435], [9.1931989, 49.1661850], [9.1931762, 49.1656105], [9.1931716, 49.1651540]], [[9.1931716, 49.1651540], [9.1931808, 49.1634302], [9.1931877, 49.1618544], [9.1932078, 49.1602309]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Melli-Beese-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2392977, 49.1283973], [9.2395152, 49.1290410], [9.2396141, 49.1292964], [9.2397173, 49.1297196], [9.2397514, 49.1300043], [9.2397401, 49.1301205]], [[9.2401779, 49.1313435], [9.2401538, 49.1313312], [9.2401377, 49.1312873], [9.2400894, 49.1310820], [9.2400679, 49.1309960], [9.2400465, 49.1309451], [9.2400089, 49.1309118], [9.2399578, 49.1308929], [9.2398409, 49.1308722]], [[9.2397401, 49.1301205], [9.2397331, 49.1301977], [9.2397344, 49.1303590], [9.2397619, 49.1304939], [9.2397999, 49.1306144], [9.2398600, 49.1307823], [9.2398409, 49.1308722]], [[9.2398409, 49.1308722], [9.2397867, 49.1308987], [9.2397187, 49.1309201], [9.2391773, 49.1310348]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Memeler Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2028575, 49.1605320], [9.2029617, 49.1607256], [9.2026843, 49.1608806], [9.2025000, 49.1609513], [9.2020993, 49.1610868], [9.2015794, 49.1612257], [9.2014027, 49.1612661], [9.2010333, 49.1613505], [9.2009534, 49.1613695], [9.2008264, 49.1613996]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Menzelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2003560, 49.1226110], [9.1985862, 49.1219068]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Mergenthalerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1495655, 49.1917872], [9.1493274, 49.1916302], [9.1491245, 49.1914909], [9.1486779, 49.1911924]], [[9.1493274, 49.1916302], [9.1493758, 49.1915948], [9.1494279, 49.1915401], [9.1496537, 49.1912290]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Merianstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1979465, 49.1188485], [9.1980060, 49.1188450], [9.1985483, 49.1187662], [9.1993866, 49.1186332], [9.1994518, 49.1186184], [9.1994993, 49.1185994], [9.1995182, 49.1185748], [9.1995186, 49.1185402], [9.1994920, 49.1183352], [9.1994816, 49.1183070], [9.1994451, 49.1182843], [9.1994210, 49.1182778], [9.1993922, 49.1182745], [9.1993447, 49.1182789], [9.1986998, 49.1183740], [9.1985661, 49.1184022], [9.1985203, 49.1184295], [9.1985086, 49.1184776], [9.1985155, 49.1185804], [9.1985483, 49.1187662]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Merkurstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2099781, 49.1286311], [9.2100258, 49.1285562], [9.2101254, 49.1284162], [9.2101657, 49.1283554], [9.2101177, 49.1283270], [9.2100901, 49.1283098], [9.2100459, 49.1282730], [9.2098783, 49.1281439], [9.2096436, 49.1279649], [9.2095028, 49.1278412], [9.2092024, 49.1275963], [9.2090354, 49.1274446], [9.2088165, 49.1272470], [9.2088022, 49.1272346], [9.2087303, 49.1271725], [9.2084836, 49.1269680], [9.2083213, 49.1268276], [9.2080804, 49.1266139], [9.2079659, 49.1265344], [9.2078868, 49.1264739], [9.2078014, 49.1264198], [9.2076159, 49.1263045], [9.2075159, 49.1262415], [9.2073624, 49.1261325], [9.2073128, 49.1260798], [9.2072724, 49.1260159], [9.2072405, 49.1259605]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Mertzweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2367891, 49.1516327], [9.2367858, 49.1507230]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Mettelbachstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2306067, 49.1627478], [9.2305973, 49.1627359], [9.2304009, 49.1626423], [9.2301436, 49.1625406], [9.2298332, 49.1624009], [9.2297964, 49.1623951], [9.2297223, 49.1624327], [9.2296744, 49.1624293], [9.2295962, 49.1623910], [9.2295311, 49.1623583], [9.2294825, 49.1623507], [9.2293802, 49.1623615]], [[9.2304425, 49.1628828], [9.2302721, 49.1628234], [9.2301881, 49.1627932], [9.2299476, 49.1626893], [9.2297014, 49.1625888], [9.2294311, 49.1624803], [9.2293914, 49.1624443], [9.2293775, 49.1623982], [9.2293802, 49.1623615]], [[9.2293802, 49.1623615], [9.2291054, 49.1621896], [9.2289684, 49.1621040], [9.2288322, 49.1620132], [9.2287529, 49.1619482], [9.2286523, 49.1618637], [9.2285403, 49.1617520], [9.2284165, 49.1615986], [9.2283785, 49.1615426], [9.2283061, 49.1614161], [9.2282506, 49.1612696], [9.2282212, 49.1611349], [9.2281999, 49.1609426], [9.2281971, 49.1606895], [9.2282148, 49.1602007], [9.2282302, 49.1599965], [9.2282331, 49.1598874], [9.2282298, 49.1597742]], [[9.2281999, 49.1609426], [9.2285982, 49.1609940], [9.2287657, 49.1610103], [9.2289030, 49.1610129], [9.2290327, 49.1610067], [9.2294941, 49.1609931]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Metzer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2306312, 49.1328971], [9.2313115, 49.1328628], [9.2321718, 49.1328191], [9.2336163, 49.1326254], [9.2348393, 49.1324717], [9.2349031, 49.1324644], [9.2357974, 49.1323617], [9.2360658, 49.1323355], [9.2363243, 49.1323220], [9.2365774, 49.1323181], [9.2367073, 49.1322994], [9.2367234, 49.1322959], [9.2368898, 49.1322594], [9.2370893, 49.1321464], [9.2372201, 49.1319453], [9.2372715, 49.1318687], [9.2372930, 49.1318256]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Metzgergasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2160787, 49.1406907], [9.2161248, 49.1406861], [9.2161969, 49.1406558], [9.2163005, 49.1406506], [9.2167114, 49.1406932]], [[9.2167114, 49.1406932], [9.2168748, 49.1407099]], [[9.2168748, 49.1407099], [9.2169531, 49.1407177], [9.2171053, 49.1407346], [9.2171255, 49.1407454]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Michael-Vehe-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1360007, 49.1885063], [9.1362747, 49.1884616], [9.1364921, 49.1884581], [9.1372761, 49.1886029]], [[9.1372761, 49.1886029], [9.1383665, 49.1888363], [9.1388889, 49.1889359], [9.1392840, 49.1890113], [9.1396324, 49.1890895], [9.1397632, 49.1891365], [9.1399090, 49.1892014], [9.1399963, 49.1892544], [9.1400854, 49.1893157], [9.1401825, 49.1894044], [9.1403013, 49.1895334]], [[9.1403013, 49.1895334], [9.1403969, 49.1896167], [9.1404960, 49.1897183], [9.1406794, 49.1898871], [9.1408380, 49.1900021], [9.1409268, 49.1900562], [9.1410101, 49.1900936], [9.1410930, 49.1901217], [9.1411595, 49.1901445], [9.1413023, 49.1901830], [9.1415189, 49.1902252], [9.1419509, 49.1902697], [9.1422589, 49.1902978], [9.1424247, 49.1903130], [9.1426111, 49.1903325], [9.1427743, 49.1903584], [9.1429196, 49.1903911], [9.1430071, 49.1904213], [9.1430794, 49.1904500], [9.1431715, 49.1904878], [9.1432933, 49.1905546], [9.1433954, 49.1906216], [9.1434685, 49.1906912]], [[9.1434685, 49.1906912], [9.1435196, 49.1907812], [9.1435355, 49.1908477], [9.1435400, 49.1909173], [9.1435371, 49.1912788], [9.1435320, 49.1914160], [9.1435327, 49.1914582], [9.1434926, 49.1920575], [9.1434697, 49.1923262], [9.1434579, 49.1924177]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Michelsbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1895116, 49.1283614], [9.1899661, 49.1284022], [9.1900048, 49.1284065], [9.1902041, 49.1284233], [9.1909550, 49.1284868], [9.1911556, 49.1284993]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Millerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2283302, 49.1565089], [9.2282652, 49.1565082], [9.2282305, 49.1565124], [9.2282049, 49.1565181], [9.2281465, 49.1565408], [9.2280851, 49.1565734], [9.2280329, 49.1566132], [9.2279136, 49.1567393], [9.2271676, 49.1577224], [9.2271131, 49.1577995], [9.2270581, 49.1578722], [9.2269920, 49.1579284]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Mittelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2013497, 49.1663678], [9.2012050, 49.1669584]], [[9.2012050, 49.1669584], [9.2011568, 49.1670010], [9.2011167, 49.1670559], [9.2011100, 49.1672163], [9.2010979, 49.1674085], [9.2010960, 49.1674388], [9.2010955, 49.1674524]], [[9.2013780, 49.1684693], [9.2017302, 49.1683910]], [[9.2013372, 49.1683077], [9.2016278, 49.1682553]], [[9.2014218, 49.1674475], [9.2010960, 49.1674388]], [[9.2009864, 49.1668135], [9.2009680, 49.1668630], [9.2010947, 49.1669073], [9.2012050, 49.1669584]], [[9.2013722, 49.1672210], [9.2011100, 49.1672163]], [[9.2010955, 49.1674524], [9.2011661, 49.1678801], [9.2012796, 49.1681770], [9.2013372, 49.1683077], [9.2013780, 49.1684693], [9.2013816, 49.1684819], [9.2014218, 49.1686538], [9.2014921, 49.1689175]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Mittlerer Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1964515, 49.1485404], [9.1960849, 49.1485580], [9.1943620, 49.1486685]], [[9.1943620, 49.1486685], [9.1933817, 49.1487414]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Mittnachtstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1480075, 49.1925921], [9.1478840, 49.1924376], [9.1477492, 49.1922718], [9.1475467, 49.1920356], [9.1473512, 49.1918341]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Moltkestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2221148, 49.1415839], [9.2223162, 49.1415721]], [[9.2252027, 49.1413978], [9.2254040, 49.1413899]], [[9.2339992, 49.1409599], [9.2341051, 49.1409236]], [[9.2339992, 49.1409599], [9.2336782, 49.1410491], [9.2336188, 49.1410701], [9.2335691, 49.1410888], [9.2334905, 49.1411192], [9.2334451, 49.1411359], [9.2334024, 49.1411488], [9.2333317, 49.1411592]], [[9.2223162, 49.1415721], [9.2223653, 49.1415684], [9.2224241, 49.1415640], [9.2225452, 49.1415571], [9.2228003, 49.1415427]], [[9.2228003, 49.1415427], [9.2233514, 49.1415097], [9.2239122, 49.1414708], [9.2239623, 49.1414673], [9.2252027, 49.1413978]], [[9.2332846, 49.1417165], [9.2333060, 49.1413866], [9.2332865, 49.1411611]], [[9.2311302, 49.1408582], [9.2311408, 49.1409769]], [[9.2311408, 49.1409769], [9.2311521, 49.1410733], [9.2311570, 49.1411305]], [[9.2311183, 49.1407585], [9.2311302, 49.1408582]], [[9.2254040, 49.1413899], [9.2254899, 49.1413861], [9.2258750, 49.1413691], [9.2263797, 49.1413489], [9.2265587, 49.1413405], [9.2280602, 49.1412749], [9.2281680, 49.1412555], [9.2282906, 49.1412380], [9.2288801, 49.1412123]], [[9.2254938, 49.1414761], [9.2253041, 49.1414952]], [[9.2288801, 49.1412123], [9.2292594, 49.1411963], [9.2294770, 49.1411886], [9.2296024, 49.1411834]], [[9.2307816, 49.1412905], [9.2300471, 49.1413208], [9.2299900, 49.1413218]], [[9.2313342, 49.1412689], [9.2307816, 49.1412905]], [[9.2299900, 49.1413218], [9.2298130, 49.1413285]], [[9.2296024, 49.1411834], [9.2297918, 49.1411784], [9.2300309, 49.1411718]], [[9.2341051, 49.1409236], [9.2342086, 49.1408881], [9.2343559, 49.1408143], [9.2346279, 49.1406295], [9.2349099, 49.1404406], [9.2352362, 49.1402151]], [[9.2336071, 49.1410282], [9.2337793, 49.1410025], [9.2339992, 49.1409599]], [[9.2300309, 49.1411718], [9.2301772, 49.1411641], [9.2304650, 49.1411542], [9.2311570, 49.1411305], [9.2314547, 49.1411197], [9.2314924, 49.1411183], [9.2316343, 49.1411268]], [[9.2333317, 49.1411592], [9.2332865, 49.1411611], [9.2325213, 49.1411923], [9.2318176, 49.1412252], [9.2317684, 49.1412275], [9.2317488, 49.1412315], [9.2316202, 49.1412578], [9.2313342, 49.1412689]], [[9.2316343, 49.1411268], [9.2317302, 49.1411302], [9.2318033, 49.1411328], [9.2324626, 49.1410966], [9.2325488, 49.1410934], [9.2331726, 49.1410700], [9.2333546, 49.1410577], [9.2335580, 49.1410355], [9.2336071, 49.1410282]], [[9.2298130, 49.1413285], [9.2296202, 49.1413358]], [[9.2296202, 49.1413358], [9.2294902, 49.1413407], [9.2283422, 49.1413849], [9.2282921, 49.1413867], [9.2281902, 49.1413799], [9.2281236, 49.1413697], [9.2280683, 49.1413662], [9.2254938, 49.1414761]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Moosbruggerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2210719, 49.1308642], [9.2210906, 49.1307425], [9.2211181, 49.1305660], [9.2211288, 49.1304625], [9.2211248, 49.1304098], [9.2211100, 49.1303317], [9.2210126, 49.1299513]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Mosbacher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2013230, 49.1762849], [9.2014109, 49.1762775], [9.2015227, 49.1762250]], [[9.1987401, 49.1760749], [9.1994900, 49.1761325], [9.2011490, 49.1762755], [9.2013230, 49.1762849]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Mosergasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2169638, 49.1416887], [9.2176381, 49.1417160], [9.2178120, 49.1417233], [9.2180217, 49.1417265], [9.2181123, 49.1417327], [9.2182610, 49.1417346], [9.2185854, 49.1417071]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Mozartstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2094538, 49.1399809], [9.2094700, 49.1404847], [9.2094658, 49.1406672], [9.2094657, 49.1410096], [9.2094658, 49.1410648], [9.2094645, 49.1411189], [9.2094720, 49.1420321], [9.2095197, 49.1420601], [9.2096033, 49.1420654]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Mönchseestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2267845, 49.1342622], [9.2267744, 49.1342964], [9.2267513, 49.1344235], [9.2267482, 49.1344706], [9.2268086, 49.1349093], [9.2269224, 49.1358456], [9.2269434, 49.1360402], [9.2269640, 49.1362378], [9.2270427, 49.1369934], [9.2270659, 49.1372164], [9.2270697, 49.1372524]], [[9.2274443, 49.1399956], [9.2274348, 49.1399668], [9.2273875, 49.1395959], [9.2273174, 49.1390467], [9.2272927, 49.1388638]], [[9.2271102, 49.1373907], [9.2271113, 49.1374212], [9.2271584, 49.1377977], [9.2272021, 49.1381472], [9.2272611, 49.1386196], [9.2272927, 49.1388638]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Mörikestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2365668, 49.1448190], [9.2366478, 49.1448467], [9.2369369, 49.1449366], [9.2372970, 49.1450492], [9.2375551, 49.1451516], [9.2377405, 49.1452552], [9.2378879, 49.1453764], [9.2380204, 49.1455635]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Möwenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1748606, 49.1184829], [9.1750369, 49.1179446], [9.1751871, 49.1175308], [9.1752154, 49.1174169], [9.1754540, 49.1167713]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Mundelsheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2084854, 49.1303764], [9.2076574, 49.1307071], [9.2074025, 49.1308127], [9.2071153, 49.1309404], [9.2067945, 49.1310826]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Mühläckerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1850520, 49.1179720], [9.1851550, 49.1172773], [9.1852067, 49.1169333], [9.1852586, 49.1165770]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Mühlbachstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2020153, 49.1676460], [9.2019980, 49.1676580], [9.2019749, 49.1676636], [9.2019511, 49.1676622], [9.2019343, 49.1676563], [9.2019152, 49.1676379], [9.2019209, 49.1676097], [9.2019518, 49.1675939], [9.2019851, 49.1675941], [9.2020106, 49.1676057], [9.2020221, 49.1676230], [9.2020153, 49.1676460]], [[9.2020153, 49.1676460], [9.2020661, 49.1676369], [9.2023694, 49.1675999], [9.2026601, 49.1675450]], [[9.2024371, 49.1671573], [9.2025201, 49.1671363], [9.2025801, 49.1671253], [9.2027492, 49.1670933], [9.2028221, 49.1670796]], [[9.2014745, 49.1675164], [9.2015171, 49.1674872], [9.2016772, 49.1674723], [9.2018528, 49.1674722], [9.2019053, 49.1674887], [9.2019397, 49.1675375]], [[9.2025542, 49.1673597], [9.2027999, 49.1673149], [9.2028681, 49.1674593]], [[9.2028843, 49.1677881], [9.2028408, 49.1677480], [9.2026601, 49.1675450], [9.2025757, 49.1673973], [9.2025542, 49.1673597], [9.2024371, 49.1671573], [9.2023988, 49.1671014], [9.2022514, 49.1670519], [9.2020885, 49.1670288], [9.2017793, 49.1669874], [9.2014855, 49.1669505], [9.2012050, 49.1669584]], [[9.2031875, 49.1679409], [9.2029686, 49.1678671], [9.2028843, 49.1677881]], [[9.2019397, 49.1675375], [9.2019518, 49.1675939]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Mühlbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1435285, 49.1956265], [9.1429340, 49.1958988], [9.1420269, 49.1963052], [9.1409346, 49.1968035], [9.1407993, 49.1968848], [9.1406138, 49.1971353]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Mühle" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1201770, 49.1803694], [9.1205482, 49.1802734], [9.1210136, 49.1801073], [9.1212976, 49.1799994], [9.1215920, 49.1798942], [9.1218684, 49.1798345], [9.1221796, 49.1797713], [9.1222171, 49.1797303], [9.1222081, 49.1797034], [9.1221294, 49.1794447]], [[9.1224649, 49.1803877], [9.1224893, 49.1801742], [9.1229777, 49.1802414], [9.1230280, 49.1801345], [9.1231517, 49.1800331], [9.1232792, 49.1799498], [9.1232964, 49.1799385], [9.1234599, 49.1798550], [9.1235940, 49.1797138], [9.1237764, 49.1794137], [9.1232419, 49.1795083], [9.1231035, 49.1795699], [9.1230071, 49.1795508], [9.1227995, 49.1795809], [9.1224075, 49.1797234], [9.1221524, 49.1798182], [9.1220011, 49.1799017], [9.1217736, 49.1798996], [9.1217210, 49.1800181], [9.1224649, 49.1803877]], [[9.1231322, 49.1794594], [9.1233605, 49.1797292]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Mühlgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1406138, 49.1971353], [9.1403829, 49.1970958]], [[9.1403829, 49.1970958], [9.1403234, 49.1970839], [9.1402264, 49.1970646], [9.1397759, 49.1968595], [9.1388553, 49.1964403]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Mühlrainstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1824694, 49.1848414], [9.1824555, 49.1847041], [9.1823605, 49.1833582], [9.1823533, 49.1832561]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Mühlstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1898495, 49.1388301], [9.1891578, 49.1388727]], [[9.1918087, 49.1389707], [9.1917814, 49.1387650], [9.1917699, 49.1386140]], [[9.1915797, 49.1387748], [9.1915652, 49.1386190]], [[9.1898495, 49.1388301], [9.1903674, 49.1388119], [9.1911080, 49.1387875], [9.1915797, 49.1387748], [9.1917814, 49.1387650], [9.1921007, 49.1387488], [9.1926904, 49.1387301]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Münchener Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1661861, 49.1640941], [9.1661972, 49.1637655], [9.1661568, 49.1637282], [9.1661210, 49.1636768], [9.1661007, 49.1633095], [9.1660918, 49.1632430]], [[9.1646611, 49.1639141], [9.1646642, 49.1636233]], [[9.1655492, 49.1636678], [9.1655428, 49.1637355], [9.1654761, 49.1638493], [9.1653934, 49.1639052], [9.1651283, 49.1639150], [9.1646611, 49.1639141], [9.1645320, 49.1639150], [9.1641776, 49.1639085]], [[9.1649021, 49.1636207], [9.1649045, 49.1633921]], [[9.1649045, 49.1633921], [9.1649023, 49.1632115]], [[9.1653003, 49.1636242], [9.1653009, 49.1634042]], [[9.1653009, 49.1634042], [9.1653083, 49.1632411]], [[9.1661210, 49.1636768], [9.1655492, 49.1636678], [9.1654614, 49.1636390], [9.1653003, 49.1636242], [9.1649021, 49.1636207], [9.1646642, 49.1636233], [9.1641528, 49.1636237]], [[9.1723987, 49.1600965], [9.1722147, 49.1602241], [9.1716873, 49.1607663], [9.1713192, 49.1611162], [9.1710667, 49.1612965], [9.1703970, 49.1618183], [9.1699144, 49.1621483], [9.1695630, 49.1623586], [9.1688319, 49.1626626], [9.1686493, 49.1627142], [9.1678093, 49.1629087], [9.1671039, 49.1630671], [9.1665374, 49.1631827], [9.1660918, 49.1632430], [9.1660209, 49.1632488], [9.1657967, 49.1632530], [9.1655104, 49.1632503], [9.1653512, 49.1632436], [9.1653083, 49.1632411], [9.1649321, 49.1632137], [9.1649023, 49.1632115], [9.1645017, 49.1631893], [9.1641224, 49.1631792], [9.1640826, 49.1631811], [9.1638058, 49.1631953], [9.1636066, 49.1632016]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Münzerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1930658, 49.1443611], [9.1937468, 49.1442700], [9.1941259, 49.1442172], [9.1944918, 49.1441525], [9.1946284, 49.1441264], [9.1946983, 49.1441225]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Münzingstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2247307, 49.1530425], [9.2266927, 49.1526998]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Nachtigallenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1494678, 49.1943054], [9.1498635, 49.1944344], [9.1502432, 49.1946044], [9.1504154, 49.1947114], [9.1505817, 49.1948184], [9.1513270, 49.1953578]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Narzissenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1450761, 49.1914227], [9.1445885, 49.1917192], [9.1444259, 49.1918181], [9.1443839, 49.1918353], [9.1443356, 49.1918301], [9.1441273, 49.1917280], [9.1436470, 49.1914927], [9.1435327, 49.1914582]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Nägelingasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2178336, 49.1396549], [9.2179395, 49.1393106]], [[9.2179395, 49.1393106], [9.2179666, 49.1392031]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Neckargartacher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1941595, 49.1420757], [9.1942695, 49.1421927], [9.1944049, 49.1423594], [9.1945147, 49.1426035], [9.1946326, 49.1428814]], [[9.1968471, 49.1509763], [9.1968493, 49.1510261], [9.1968489, 49.1512114], [9.1968505, 49.1512962], [9.1968537, 49.1515590], [9.1968516, 49.1516440], [9.1968597, 49.1518764], [9.1968597, 49.1520923], [9.1968542, 49.1522309]], [[9.1969410, 49.1509433], [9.1968899, 49.1509670], [9.1968471, 49.1509763], [9.1967935, 49.1509779], [9.1967417, 49.1509691], [9.1966816, 49.1509422], [9.1966447, 49.1509052], [9.1966310, 49.1508593], [9.1966421, 49.1508190], [9.1966714, 49.1507854], [9.1967267, 49.1507555], [9.1968039, 49.1507416], [9.1968854, 49.1507516], [9.1969378, 49.1507746], [9.1969760, 49.1508095], [9.1969933, 49.1508609], [9.1969812, 49.1509026], [9.1969410, 49.1509433]], [[9.1964115, 49.1481987], [9.1964005, 49.1483030], [9.1964056, 49.1484055], [9.1964515, 49.1485404]], [[9.1965452, 49.1479996], [9.1966016, 49.1480303], [9.1966327, 49.1480751], [9.1966331, 49.1481166], [9.1966167, 49.1481474], [9.1965484, 49.1481924], [9.1964740, 49.1482054], [9.1964115, 49.1481987], [9.1963397, 49.1481649], [9.1963032, 49.1481034], [9.1963289, 49.1480381], [9.1963873, 49.1480018], [9.1964637, 49.1479877], [9.1965452, 49.1479996]], [[9.1952387, 49.1445242], [9.1945678, 49.1446161]], [[9.1946326, 49.1428814], [9.1947458, 49.1431746], [9.1948180, 49.1433787], [9.1948752, 49.1435418], [9.1949856, 49.1438295], [9.1950661, 49.1440552], [9.1952387, 49.1445242]], [[9.1967356, 49.1522283], [9.1967439, 49.1520897], [9.1967407, 49.1516554], [9.1967439, 49.1516078], [9.1967373, 49.1513274], [9.1967464, 49.1510232], [9.1967417, 49.1509691]], [[9.1964515, 49.1485404], [9.1965031, 49.1487137], [9.1965987, 49.1490274], [9.1966583, 49.1492050], [9.1966956, 49.1495560], [9.1966999, 49.1495963], [9.1967444, 49.1500152], [9.1967512, 49.1500797], [9.1967731, 49.1503496], [9.1967816, 49.1504537], [9.1968022, 49.1506881], [9.1968039, 49.1507416]], [[9.1952387, 49.1445242], [9.1953287, 49.1447926], [9.1953952, 49.1449788], [9.1954600, 49.1451978], [9.1955675, 49.1455683], [9.1955769, 49.1455957], [9.1956151, 49.1457139], [9.1956436, 49.1458048], [9.1956762, 49.1459329], [9.1956965, 49.1460104], [9.1957576, 49.1462022], [9.1958402, 49.1464491], [9.1958933, 49.1465893], [9.1959787, 49.1468194], [9.1959899, 49.1468563], [9.1961268, 49.1474462], [9.1961435, 49.1475047], [9.1961508, 49.1475370], [9.1961724, 49.1476110], [9.1962209, 49.1477701], [9.1962763, 49.1478656], [9.1963873, 49.1480018]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Neckarhalde" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2053453, 49.1306621], [9.2054761, 49.1307868], [9.2057035, 49.1310214], [9.2058583, 49.1311603], [9.2060046, 49.1313011], [9.2066059, 49.1319114], [9.2072334, 49.1324756], [9.2072536, 49.1324968], [9.2073494, 49.1325942], [9.2078947, 49.1331751], [9.2082015, 49.1334136], [9.2085035, 49.1336475], [9.2087303, 49.1338231], [9.2089632, 49.1339810], [9.2092496, 49.1341903], [9.2093618, 49.1342314]], [[9.2081779, 49.1331172], [9.2082664, 49.1331997], [9.2083509, 49.1332839], [9.2084246, 49.1333849], [9.2084850, 49.1334981], [9.2085064, 49.1335700], [9.2085078, 49.1336121], [9.2085035, 49.1336475]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Neckarsulmer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2254185, 49.1680350], [9.2254422, 49.1679173], [9.2257272, 49.1667728], [9.2260560, 49.1638285], [9.2263397, 49.1608797], [9.2263225, 49.1603970], [9.2263055, 49.1601659], [9.2262874, 49.1600663]], [[9.2262874, 49.1600663], [9.2262200, 49.1597558], [9.2261027, 49.1594036], [9.2260055, 49.1591828]], [[9.2263774, 49.1597490], [9.2264562, 49.1600778], [9.2264573, 49.1601108], [9.2264942, 49.1604098], [9.2264928, 49.1609241], [9.2261949, 49.1638460], [9.2259095, 49.1666729]], [[9.2218831, 49.1509710], [9.2219047, 49.1511513], [9.2219426, 49.1514671], [9.2219476, 49.1515121], [9.2219819, 49.1518175]], [[9.2234212, 49.1538610], [9.2234873, 49.1539841], [9.2235278, 49.1540597], [9.2237133, 49.1544305]], [[9.2232838, 49.1538871], [9.2229738, 49.1534311], [9.2229514, 49.1534009], [9.2228090, 49.1532193]], [[9.2228090, 49.1532193], [9.2224168, 49.1527171], [9.2221705, 49.1524039], [9.2219944, 49.1521468], [9.2219179, 49.1519943], [9.2218705, 49.1518115]], [[9.2229041, 49.1531831], [9.2230557, 49.1533619], [9.2231010, 49.1534154]], [[9.2259095, 49.1666729], [9.2258855, 49.1668876], [9.2256534, 49.1678769], [9.2256413, 49.1679283], [9.2256075, 49.1680455]], [[9.2254071, 49.1580256], [9.2253558, 49.1579292], [9.2253072, 49.1578469], [9.2251943, 49.1576172], [9.2249623, 49.1571692], [9.2247181, 49.1566318], [9.2245844, 49.1563781], [9.2244294, 49.1560803]], [[9.2255262, 49.1578911], [9.2255795, 49.1579897], [9.2256140, 49.1580613], [9.2257332, 49.1583043], [9.2260305, 49.1588746], [9.2262517, 49.1593829], [9.2263774, 49.1597490]], [[9.2231010, 49.1534154], [9.2231563, 49.1534885]], [[9.2240749, 49.1553983], [9.2238921, 49.1550325]], [[9.2251227, 49.1571539], [9.2253656, 49.1575831]], [[9.2260055, 49.1591828], [9.2258841, 49.1589067]], [[9.2237133, 49.1544305], [9.2238380, 49.1546860]], [[9.2238921, 49.1550325], [9.2237013, 49.1546605]], [[9.2258841, 49.1589067], [9.2256527, 49.1584957]], [[9.2231563, 49.1534885], [9.2232928, 49.1536804], [9.2234212, 49.1538610]], [[9.2241859, 49.1553766], [9.2242522, 49.1555025], [9.2251227, 49.1571539]], [[9.2253656, 49.1575831], [9.2254595, 49.1577587], [9.2254855, 49.1578073], [9.2255262, 49.1578911]], [[9.2244294, 49.1560803], [9.2241551, 49.1555527], [9.2241413, 49.1555260], [9.2240749, 49.1553983]], [[9.2256527, 49.1584957], [9.2254762, 49.1581515], [9.2254501, 49.1581006], [9.2254071, 49.1580256]], [[9.2218705, 49.1518115], [9.2218075, 49.1514706], [9.2218002, 49.1514167], [9.2217636, 49.1511617], [9.2217339, 49.1509385]], [[9.2219819, 49.1518175], [9.2220264, 49.1519862], [9.2220975, 49.1521409], [9.2222452, 49.1523713], [9.2229041, 49.1531831]], [[9.2237013, 49.1546605], [9.2234012, 49.1541025], [9.2233773, 49.1540620], [9.2233486, 49.1540060], [9.2232838, 49.1538871]], [[9.2238380, 49.1546860], [9.2238928, 49.1548000], [9.2240650, 49.1551431], [9.2240914, 49.1551940], [9.2241859, 49.1553766]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Neckartalstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1978385, 49.1315569], [9.1976694, 49.1312511], [9.1975604, 49.1311860], [9.1974304, 49.1311354]], [[9.1974324, 49.1416905], [9.1980262, 49.1416881], [9.1987365, 49.1417234], [9.1987930, 49.1417252]], [[9.1859800, 49.1219717], [9.1866525, 49.1221000], [9.1873048, 49.1221449], [9.1890300, 49.1222629], [9.1898025, 49.1223472], [9.1909183, 49.1225983], [9.1916717, 49.1228350], [9.1923087, 49.1231055], [9.1928838, 49.1234256], [9.1933902, 49.1237402], [9.1938953, 49.1241320]], [[9.1827860, 49.1197810], [9.1831963, 49.1204147], [9.1836666, 49.1208597], [9.1840949, 49.1211882], [9.1845186, 49.1214454], [9.1850560, 49.1216843], [9.1855367, 49.1218529], [9.1859800, 49.1219717]], [[9.1824983, 49.1191060], [9.1827404, 49.1196880], [9.1827860, 49.1197810]], [[9.1992644, 49.1418428], [9.1987286, 49.1418077]], [[9.1992516, 49.1417505], [9.1994929, 49.1417662], [9.1996792, 49.1417809], [9.1998716, 49.1418085], [9.2000417, 49.1418469], [9.2001649, 49.1418941], [9.2002880, 49.1419569], [9.2003896, 49.1420401], [9.2004617, 49.1421367], [9.2005117, 49.1422367], [9.2005125, 49.1423328], [9.2004954, 49.1424338], [9.2004370, 49.1425415], [9.2003292, 49.1426345], [9.2002200, 49.1427068], [9.1998939, 49.1428268], [9.1997487, 49.1428832], [9.1996121, 49.1429674], [9.1994950, 49.1430817], [9.1994313, 49.1431741], [9.1994104, 49.1433105], [9.1994207, 49.1434050], [9.1996211, 49.1440462]], [[9.1987930, 49.1417252], [9.1992516, 49.1417505]], [[9.1989833, 49.1419707], [9.1991092, 49.1424037], [9.1992360, 49.1425949], [9.1993856, 49.1427080], [9.1995783, 49.1427667], [9.1997433, 49.1427817], [9.1999150, 49.1427517], [9.2000687, 49.1426975], [9.2001971, 49.1426223], [9.2002986, 49.1425372], [9.2003935, 49.1423835], [9.2003921, 49.1423002], [9.2003646, 49.1422156], [9.2003054, 49.1421139], [9.2002061, 49.1420236], [9.2000559, 49.1419520], [9.1998874, 49.1419034], [9.1996433, 49.1418677], [9.1994710, 49.1418564], [9.1992644, 49.1418428]], [[9.1986899, 49.1349512], [9.1988236, 49.1352461], [9.1989722, 49.1356965], [9.1993048, 49.1370042], [9.1994343, 49.1376526], [9.1995249, 49.1378876], [9.1995629, 49.1379517], [9.1996244, 49.1380197], [9.1996581, 49.1380418], [9.1997290, 49.1380907], [9.1998032, 49.1381185], [9.1999043, 49.1381474], [9.1999382, 49.1381521]], [[9.2003528, 49.1382436], [9.2001850, 49.1382869], [9.2001135, 49.1383169], [9.1999979, 49.1383732]], [[9.1938953, 49.1241320], [9.1939832, 49.1241992]], [[9.1822693, 49.1179250], [9.1823266, 49.1184038], [9.1824983, 49.1191060]], [[9.1999560, 49.1398111], [9.1999315, 49.1399372], [9.1998731, 49.1401286], [9.1997062, 49.1404512]], [[9.1992521, 49.1379716], [9.1991612, 49.1376123]], [[9.1988386, 49.1421387], [9.1988337, 49.1420048], [9.1988411, 49.1417861], [9.1988666, 49.1416493], [9.1989003, 49.1415058], [9.1989575, 49.1413618], [9.1990397, 49.1412037], [9.1993518, 49.1407543]], [[9.1993518, 49.1407543], [9.1996391, 49.1402903], [9.1997348, 49.1401131], [9.1997682, 49.1400046], [9.1997848, 49.1398766], [9.1997707, 49.1397496], [9.1997435, 49.1396233], [9.1996394, 49.1392339]], [[9.1989833, 49.1419707], [9.1989882, 49.1422197], [9.1990248, 49.1424814], [9.1991854, 49.1428963], [9.1996211, 49.1440462], [9.1997642, 49.1444238]], [[9.1849130, 49.1080596], [9.1848429, 49.1085909], [9.1847347, 49.1098051], [9.1845030, 49.1107573], [9.1841530, 49.1114966], [9.1831948, 49.1128781], [9.1828168, 49.1135514], [9.1825674, 49.1141288], [9.1823877, 49.1146975], [9.1822798, 49.1151860], [9.1821989, 49.1159784], [9.1821998, 49.1166089], [9.1822233, 49.1173697]], [[9.2032998, 49.1735176], [9.2033540, 49.1732921], [9.2035914, 49.1723485]], [[9.2032695, 49.1736628], [9.2032998, 49.1735176]], [[9.2015805, 49.1825875], [9.2015563, 49.1819432], [9.2015209, 49.1813817]], [[9.1999382, 49.1381521], [9.2000521, 49.1381616], [9.2002461, 49.1381824]], [[9.1999979, 49.1383732], [9.1999504, 49.1384067], [9.1998710, 49.1384757], [9.1998201, 49.1385587], [9.1997874, 49.1386497], [9.1998026, 49.1387905], [9.1999707, 49.1393026], [9.2000544, 49.1396069], [9.2000709, 49.1398187], [9.2000439, 49.1399535], [9.1999875, 49.1400809], [9.1998671, 49.1402746], [9.1997062, 49.1404512]], [[9.2017018, 49.1849588], [9.2016919, 49.1848835], [9.2016563, 49.1846108]], [[9.2047410, 49.1624525], [9.2045026, 49.1615581], [9.2039184, 49.1598864], [9.2037270, 49.1594687], [9.2034240, 49.1589518], [9.2030391, 49.1584236], [9.2022534, 49.1574623], [9.2020133, 49.1571322], [9.2019602, 49.1570677], [9.2017331, 49.1567249], [9.2014897, 49.1563576], [9.2011378, 49.1557794], [9.2008350, 49.1552083]], [[9.2033658, 49.1735860], [9.2033440, 49.1736791]], [[9.2033440, 49.1736791], [9.2031478, 49.1744648], [9.2030369, 49.1747934], [9.2029059, 49.1751260], [9.2024284, 49.1762844], [9.2023686, 49.1764378], [9.2021708, 49.1769178], [9.2019092, 49.1775961], [9.2017231, 49.1782776], [9.2015974, 49.1790083], [9.2015512, 49.1795055], [9.2015298, 49.1800215]], [[9.2037023, 49.1720870], [9.2034869, 49.1730617], [9.2033658, 49.1735860]], [[9.2017719, 49.1825880], [9.2017736, 49.1826596], [9.2017633, 49.1830488], [9.2017827, 49.1831837], [9.2017779, 49.1835717]], [[9.1997642, 49.1444238], [9.1998416, 49.1446752], [9.1999769, 49.1452577], [9.2000440, 49.1457896], [9.2001195, 49.1463657], [9.2001497, 49.1468948], [9.2001590, 49.1472461], [9.2001781, 49.1476199], [9.2000556, 49.1487031], [9.2000388, 49.1488850], [9.1999843, 49.1493911], [9.1999186, 49.1503009], [9.1999108, 49.1511755], [9.1999323, 49.1517186], [9.1999561, 49.1519703], [9.2000459, 49.1526720], [9.2001223, 49.1530900], [9.2002378, 49.1535478], [9.2004434, 49.1541343], [9.2006280, 49.1546113], [9.2006974, 49.1547568], [9.2009840, 49.1553577], [9.2012157, 49.1557855]], [[9.2018043, 49.1849517], [9.2018310, 49.1851691]], [[9.2018597, 49.1776039], [9.2021463, 49.1767081]], [[9.2015298, 49.1800215], [9.2015753, 49.1805832], [9.2017075, 49.1814292]], [[9.1997062, 49.1404512], [9.1994069, 49.1408616], [9.1991946, 49.1412029], [9.1990804, 49.1414473], [9.1989920, 49.1418913], [9.1989833, 49.1419707]], [[9.1822233, 49.1173697], [9.1822560, 49.1178190]], [[9.1822560, 49.1178190], [9.1822693, 49.1179250]], [[9.1977438, 49.1311279], [9.1976200, 49.1304264], [9.1975472, 49.1299684], [9.1974204, 49.1293340], [9.1971631, 49.1286240], [9.1968760, 49.1279970], [9.1963130, 49.1270137], [9.1957276, 49.1261621], [9.1953437, 49.1256469], [9.1950212, 49.1252556]], [[9.2042854, 49.1692552], [9.2041939, 49.1698388], [9.2039572, 49.1708011], [9.2037023, 49.1720870]], [[9.2043420, 49.1687729], [9.2044728, 49.1683517], [9.2046702, 49.1677504], [9.2048573, 49.1671758], [9.2049983, 49.1666401], [9.2051422, 49.1653614], [9.2051470, 49.1652304], [9.2051557, 49.1648858], [9.2051649, 49.1643965], [9.2050685, 49.1636494]], [[9.2042234, 49.1692482], [9.2043420, 49.1687729]], [[9.2044062, 49.1687816], [9.2042854, 49.1692552]], [[9.2035914, 49.1723485], [9.2038186, 49.1712181], [9.2042234, 49.1692482]], [[9.1998050, 49.1453080], [9.1997593, 49.1449234], [9.1996936, 49.1446323], [9.1996035, 49.1443257], [9.1994932, 49.1440187], [9.1992403, 49.1433993], [9.1989927, 49.1427569], [9.1989010, 49.1424483], [9.1988641, 49.1422971], [9.1988386, 49.1421387]], [[9.1939832, 49.1241992], [9.1941092, 49.1242310], [9.1942999, 49.1243894], [9.1946171, 49.1246883], [9.1954195, 49.1256303], [9.1958651, 49.1262532], [9.1963792, 49.1269968], [9.1966402, 49.1274333], [9.1969355, 49.1279768], [9.1972400, 49.1286038], [9.1975127, 49.1294097]], [[9.1988187, 49.1362571], [9.1981447, 49.1331541], [9.1978385, 49.1315569], [9.1977438, 49.1311279]], [[9.1975127, 49.1294097], [9.1976464, 49.1299604], [9.1977579, 49.1304240], [9.1978832, 49.1311255], [9.1978903, 49.1311602], [9.1982605, 49.1329671], [9.1986899, 49.1349512], [9.1988557, 49.1357458], [9.1989743, 49.1362522], [9.1991504, 49.1370351], [9.1992322, 49.1373360]], [[9.1950212, 49.1252556], [9.1948559, 49.1250551], [9.1944547, 49.1246620], [9.1940307, 49.1242787], [9.1939832, 49.1241992]], [[9.2017075, 49.1814292], [9.2017275, 49.1817706]], [[9.2016046, 49.1830049], [9.2015882, 49.1827571], [9.2015846, 49.1826582]], [[9.2017356, 49.1854107], [9.2017133, 49.1850644], [9.2017018, 49.1849588]], [[9.2015209, 49.1813817], [9.2014735, 49.1807608], [9.2014640, 49.1800625], [9.2014876, 49.1795416], [9.2015373, 49.1790144], [9.2016765, 49.1782401], [9.2018597, 49.1776039]], [[9.2005666, 49.1546006], [9.2003458, 49.1540905], [9.2001765, 49.1535645], [9.2000577, 49.1530618], [9.1999654, 49.1525784], [9.1998956, 49.1520235], [9.1998421, 49.1511779], [9.1998566, 49.1503577], [9.1999113, 49.1493871], [9.1999365, 49.1490166], [9.1999774, 49.1486983], [9.2000107, 49.1484601], [9.2001001, 49.1475392], [9.2000696, 49.1469720], [9.1999748, 49.1462168], [9.1998994, 49.1457967], [9.1998762, 49.1456224], [9.1998050, 49.1453080]], [[9.2012157, 49.1557855], [9.2017958, 49.1567146]], [[9.2017958, 49.1567146], [9.2021838, 49.1572750], [9.2026383, 49.1578388], [9.2032291, 49.1585728], [9.2037119, 49.1593198], [9.2039777, 49.1598764], [9.2042673, 49.1606136], [9.2046075, 49.1616834], [9.2048287, 49.1624402], [9.2050034, 49.1630422], [9.2051299, 49.1635726], [9.2051729, 49.1638768], [9.2052206, 49.1643739], [9.2052327, 49.1647719], [9.2052118, 49.1652135], [9.2051921, 49.1655294], [9.2050420, 49.1667471], [9.2049306, 49.1671614], [9.2047578, 49.1676558], [9.2044062, 49.1687816]], [[9.2050685, 49.1636494], [9.2048689, 49.1628881], [9.2047410, 49.1624525]], [[9.2008350, 49.1552083], [9.2007377, 49.1549880], [9.2005666, 49.1546006]], [[9.2021463, 49.1767081], [9.2022207, 49.1765070], [9.2022581, 49.1764193]], [[9.2022581, 49.1764193], [9.2023108, 49.1762842], [9.2024024, 49.1760599], [9.2028115, 49.1751165], [9.2030433, 49.1745189], [9.2032695, 49.1736628]], [[9.1996394, 49.1392339], [9.1992521, 49.1379716]], [[9.1991612, 49.1376123], [9.1988187, 49.1362571]], [[9.1992322, 49.1373360], [9.1993948, 49.1379347], [9.1996732, 49.1388161]], [[9.1996732, 49.1388161], [9.1998595, 49.1393529], [9.1999423, 49.1396192], [9.1999546, 49.1397160], [9.1999560, 49.1398111]], [[9.2018310, 49.1851691], [9.2018640, 49.1854108]], [[9.2016310, 49.1842358], [9.2016123, 49.1839598]], [[9.2016563, 49.1846108], [9.2016310, 49.1842358]], [[9.2017275, 49.1817706], [9.2017689, 49.1824763], [9.2017719, 49.1825880]], [[9.2016123, 49.1839598], [9.2016112, 49.1833041], [9.2016046, 49.1830049]], [[9.2019699, 49.1864905], [9.2019314, 49.1863178], [9.2017356, 49.1854107]], [[9.2017779, 49.1835717], [9.2017603, 49.1839470], [9.2017355, 49.1842816], [9.2017345, 49.1846018], [9.2017469, 49.1847658], [9.2017947, 49.1848742], [9.2018043, 49.1849517]], [[9.2018640, 49.1854108], [9.2019357, 49.1858490], [9.2020328, 49.1863070], [9.2020740, 49.1864871], [9.2021220, 49.1866669], [9.2021972, 49.1869349], [9.2022276, 49.1870311], [9.2022520, 49.1871082]], [[9.2015846, 49.1826582], [9.2015805, 49.1825875]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Neipperger Höhe" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1511113, 49.1190086], [9.1512742, 49.1190220], [9.1520404, 49.1188986]], [[9.1508868, 49.1178669], [9.1507549, 49.1176480], [9.1507483, 49.1173988]], [[9.1502259, 49.1197166], [9.1502035, 49.1196429], [9.1502166, 49.1195221], [9.1502379, 49.1194228], [9.1502761, 49.1193340], [9.1503535, 49.1192693], [9.1506208, 49.1192088], [9.1508478, 49.1191619], [9.1510390, 49.1190712], [9.1511113, 49.1190086], [9.1510038, 49.1187641], [9.1508849, 49.1184924], [9.1507673, 49.1182230], [9.1507090, 49.1180897], [9.1506892, 49.1180445], [9.1506978, 49.1179538], [9.1507253, 49.1179117], [9.1508868, 49.1178669], [9.1513424, 49.1177776], [9.1515129, 49.1177589]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Neipperger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1583235, 49.1267948], [9.1570289, 49.1266675], [9.1562128, 49.1265849], [9.1543807, 49.1264139], [9.1524121, 49.1262316], [9.1503191, 49.1260360]], [[9.1797176, 49.1297304], [9.1786645, 49.1295161], [9.1778186, 49.1293580], [9.1773701, 49.1293169], [9.1768398, 49.1293170], [9.1761027, 49.1293256], [9.1759262, 49.1293332], [9.1755136, 49.1293445], [9.1749200, 49.1293339], [9.1737912, 49.1292915], [9.1732266, 49.1292751], [9.1726724, 49.1292145], [9.1714640, 49.1290234], [9.1702845, 49.1287858], [9.1671489, 49.1281898], [9.1669911, 49.1281481]], [[9.1833762, 49.1310684], [9.1832800, 49.1310459], [9.1831918, 49.1310227], [9.1829591, 49.1309626], [9.1826742, 49.1308573], [9.1812160, 49.1301698], [9.1806742, 49.1299310], [9.1805092, 49.1298810], [9.1803468, 49.1298413], [9.1797176, 49.1297304]], [[9.1662412, 49.1279513], [9.1653082, 49.1276969], [9.1647050, 49.1275432], [9.1643591, 49.1274636], [9.1643553, 49.1274627], [9.1642711, 49.1274480], [9.1639763, 49.1273967], [9.1636230, 49.1273433], [9.1629513, 49.1272559], [9.1626348, 49.1272176], [9.1615240, 49.1270796], [9.1604170, 49.1269817], [9.1583235, 49.1267948]], [[9.1669911, 49.1281481], [9.1667550, 49.1280858], [9.1663688, 49.1279839], [9.1662412, 49.1279513]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Nelkenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1404298, 49.1912272], [9.1405242, 49.1912716], [9.1406522, 49.1913148], [9.1407847, 49.1913468], [9.1409386, 49.1913671], [9.1412554, 49.1913966], [9.1412815, 49.1913945], [9.1412925, 49.1913845], [9.1413307, 49.1911880]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Neuböllinger Hof" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1523097, 49.1806393], [9.1525228, 49.1804131], [9.1520157, 49.1802175], [9.1521577, 49.1800462], [9.1521915, 49.1799899], [9.1521408, 49.1799302], [9.1516669, 49.1797759]], [[9.1523097, 49.1806393], [9.1521359, 49.1808223], [9.1520773, 49.1808808]], [[9.1519969, 49.1809617], [9.1520773, 49.1808808]], [[9.1527604, 49.1811432], [9.1527882, 49.1811100], [9.1528253, 49.1810658], [9.1530266, 49.1808604], [9.1535454, 49.1803310]], [[9.1526591, 49.1812562], [9.1527604, 49.1811432]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Neue Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1939881, 49.1315384], [9.1936155, 49.1316609], [9.1933857, 49.1317584], [9.1929484, 49.1319686], [9.1928268, 49.1320227], [9.1927293, 49.1320589], [9.1926633, 49.1320707], [9.1925864, 49.1320680], [9.1925339, 49.1320568], [9.1924753, 49.1320133], [9.1922962, 49.1316231]], [[9.1952661, 49.1312381], [9.1951395, 49.1310927], [9.1948604, 49.1307525], [9.1945124, 49.1303249], [9.1942941, 49.1300089], [9.1938443, 49.1295482], [9.1935933, 49.1293543], [9.1933807, 49.1291338], [9.1932862, 49.1290898], [9.1932508, 49.1290397], [9.1933014, 49.1289700]], [[9.1977438, 49.1311279], [9.1974304, 49.1311354]], [[9.1944923, 49.1313702], [9.1943356, 49.1314218], [9.1939881, 49.1315384]], [[9.1953650, 49.1312278], [9.1952661, 49.1312381], [9.1948590, 49.1312884], [9.1944923, 49.1313702]], [[9.1958272, 49.1312048], [9.1958308, 49.1311716], [9.1958528, 49.1311429], [9.1958865, 49.1311230], [9.1959283, 49.1311126], [9.1959787, 49.1311119], [9.1960221, 49.1311232], [9.1960608, 49.1311479], [9.1960799, 49.1311792], [9.1960802, 49.1312081], [9.1960664, 49.1312342], [9.1960397, 49.1312563], [9.1959981, 49.1312727]], [[9.1978832, 49.1311255], [9.1977438, 49.1311279]], [[9.1958272, 49.1312048], [9.1956652, 49.1312129], [9.1953650, 49.1312278]], [[9.1974304, 49.1311354], [9.1972251, 49.1311421], [9.1961816, 49.1311759], [9.1960799, 49.1311792]], [[9.1959981, 49.1312727], [9.1959609, 49.1312777], [9.1959114, 49.1312730], [9.1958682, 49.1312562], [9.1958400, 49.1312320], [9.1958272, 49.1312048]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Neuwiesenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1632833, 49.1626232], [9.1640878, 49.1625613], [9.1644871, 49.1625068], [9.1645104, 49.1625004], [9.1648475, 49.1624076], [9.1649377, 49.1623837], [9.1653417, 49.1622765], [9.1656792, 49.1621897], [9.1664935, 49.1620145], [9.1670501, 49.1618948], [9.1673326, 49.1618300], [9.1676148, 49.1617480], [9.1684825, 49.1613527], [9.1688949, 49.1611530], [9.1693305, 49.1609595], [9.1694955, 49.1608548], [9.1696345, 49.1607316], [9.1699102, 49.1604480], [9.1705813, 49.1597557], [9.1711783, 49.1591051]], [[9.1711783, 49.1591051], [9.1713702, 49.1588643], [9.1715115, 49.1586871], [9.1715178, 49.1586714], [9.1716443, 49.1583568]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Nickelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2186899, 49.1271123], [9.2186909, 49.1270446], [9.2186854, 49.1269794], [9.2186733, 49.1267442], [9.2186505, 49.1262589], [9.2186297, 49.1258498]], [[9.2186899, 49.1271123], [9.2187001, 49.1272032], [9.2187108, 49.1272655], [9.2187331, 49.1273472], [9.2187966, 49.1275297], [9.2188503, 49.1276964], [9.2189133, 49.1278991], [9.2189991, 49.1281334], [9.2191131, 49.1284643], [9.2191587, 49.1285889], [9.2191721, 49.1286196], [9.2191882, 49.1286477], [9.2192016, 49.1286644], [9.2192204, 49.1286889], [9.2192330, 49.1287193], [9.2192699, 49.1288710], [9.2192775, 49.1288936], [9.2192912, 49.1289267]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Niederhofener Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1783456, 49.1435318], [9.1783534, 49.1431221], [9.1783500, 49.1429641], [9.1783493, 49.1428464], [9.1783397, 49.1425013], [9.1783377, 49.1422251], [9.1783370, 49.1417799]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Nordbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2234515, 49.1462732], [9.2235922, 49.1472282]], [[9.2235922, 49.1472282], [9.2236286, 49.1475611], [9.2237170, 49.1482475]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Nordheimer Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1931808, 49.1634302], [9.1936761, 49.1634240], [9.1939118, 49.1634469], [9.1940657, 49.1634923], [9.1943942, 49.1637288], [9.1950115, 49.1642308], [9.1955378, 49.1647200], [9.1959715, 49.1651783], [9.1963471, 49.1654563], [9.1966004, 49.1656014], [9.1967217, 49.1656661], [9.1970564, 49.1658560], [9.1974797, 49.1660621]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Nordstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2263674, 49.1505782], [9.2265100, 49.1505151], [9.2266470, 49.1504315], [9.2271769, 49.1500904], [9.2274173, 49.1499321], [9.2276491, 49.1497794], [9.2278821, 49.1496310], [9.2281010, 49.1494801], [9.2281730, 49.1494333], [9.2282778, 49.1493517], [9.2287966, 49.1489084], [9.2288616, 49.1488470], [9.2289183, 49.1487828], [9.2291120, 49.1485944], [9.2292628, 49.1484395], [9.2292901, 49.1484083], [9.2295208, 49.1481475], [9.2297050, 49.1479095], [9.2297874, 49.1477774], [9.2301604, 49.1471409], [9.2302111, 49.1470425], [9.2302224, 49.1470139], [9.2302296, 49.1469791], [9.2302287, 49.1469394], [9.2302104, 49.1469061], [9.2301635, 49.1468697], [9.2301409, 49.1468592]], [[9.2295052, 49.1479156], [9.2297445, 49.1475191], [9.2300682, 49.1469544], [9.2300779, 49.1468971], [9.2300782, 49.1468499]], [[9.2280014, 49.1493978], [9.2287515, 49.1487526]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Nördlinger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2355404, 49.1308364], [9.2363376, 49.1310449], [9.2370118, 49.1312213], [9.2377825, 49.1314892], [9.2380801, 49.1315791], [9.2382548, 49.1315935]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Nussäckerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1728419, 49.1142428], [9.1727106, 49.1141995], [9.1721959, 49.1140330], [9.1719493, 49.1139490]], [[9.1718224, 49.1139105], [9.1718824, 49.1138141], [9.1719669, 49.1136687], [9.1720384, 49.1135457], [9.1720736, 49.1134853], [9.1721522, 49.1133499], [9.1721836, 49.1133030]], [[9.1721959, 49.1140330], [9.1725096, 49.1135967]], [[9.1728329, 49.1126138], [9.1724285, 49.1132733]], [[9.1721836, 49.1133030], [9.1720902, 49.1132788], [9.1720418, 49.1132291], [9.1720640, 49.1131612], [9.1721568, 49.1131455], [9.1722162, 49.1131687], [9.1722313, 49.1132191], [9.1722197, 49.1132592], [9.1721836, 49.1133030]], [[9.1728419, 49.1142428], [9.1730556, 49.1142961], [9.1736321, 49.1143759], [9.1739750, 49.1144184], [9.1746699, 49.1145085], [9.1749489, 49.1145336], [9.1752124, 49.1145314], [9.1754327, 49.1145322], [9.1757025, 49.1145272], [9.1759738, 49.1145094]], [[9.1767308, 49.1144491], [9.1771471, 49.1143631], [9.1772403, 49.1143384], [9.1776028, 49.1142199]], [[9.1759738, 49.1145094], [9.1762742, 49.1144744], [9.1767308, 49.1144491]], [[9.1719493, 49.1139490], [9.1718224, 49.1139105], [9.1715615, 49.1138260], [9.1712582, 49.1137431], [9.1706704, 49.1135622], [9.1704288, 49.1134858]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Nürnberger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2419521, 49.1308868], [9.2427148, 49.1309880], [9.2430130, 49.1310147], [9.2431735, 49.1310132], [9.2433163, 49.1310091], [9.2434359, 49.1309995], [9.2442927, 49.1308778], [9.2447907, 49.1308484], [9.2452003, 49.1308763], [9.2455923, 49.1309218], [9.2456346, 49.1309267], [9.2458475, 49.1309776], [9.2458708, 49.1309933], [9.2459599, 49.1310534], [9.2460064, 49.1311341], [9.2460255, 49.1312245], [9.2459959, 49.1314005], [9.2459766, 49.1314458], [9.2458846, 49.1315538], [9.2457636, 49.1316363], [9.2455767, 49.1317045], [9.2453560, 49.1317587], [9.2448627, 49.1318346], [9.2447959, 49.1317935], [9.2447207, 49.1317597], [9.2445876, 49.1317500], [9.2444231, 49.1317533], [9.2436137, 49.1318140], [9.2435046, 49.1318464], [9.2433877, 49.1319135], [9.2432834, 49.1320274], [9.2432473, 49.1320670], [9.2430795, 49.1323536], [9.2430579, 49.1323906], [9.2429539, 49.1326176], [9.2429385, 49.1326642], [9.2428310, 49.1329902]], [[9.2424015, 49.1316331], [9.2423881, 49.1317893], [9.2424122, 49.1318420], [9.2424605, 49.1318929], [9.2425356, 49.1319368], [9.2426268, 49.1319684], [9.2427153, 49.1319842], [9.2432834, 49.1320274]], [[9.2423425, 49.1325948], [9.2429385, 49.1326642]], [[9.2424270, 49.1323228], [9.2430795, 49.1323536]], [[9.2454590, 49.1312172], [9.2455127, 49.1311329], [9.2455461, 49.1310477]], [[9.2455461, 49.1310477], [9.2455923, 49.1309218]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Obere Kanalstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1667452, 49.1172743], [9.1665557, 49.1172206], [9.1660550, 49.1170787], [9.1653822, 49.1168429], [9.1650200, 49.1166957], [9.1649532, 49.1166685], [9.1646938, 49.1164854], [9.1642739, 49.1162640], [9.1638490, 49.1160668]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Obere Neckarstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2163017, 49.1422858], [9.2162440, 49.1422465]], [[9.2147000, 49.1397440], [9.2147803, 49.1398358], [9.2149517, 49.1400816], [9.2151671, 49.1404203], [9.2153839, 49.1408000], [9.2157748, 49.1414328], [9.2158416, 49.1415362], [9.2162440, 49.1422465]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Obereisesheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2030539, 49.1720689], [9.2031703, 49.1720527], [9.2032543, 49.1720348], [9.2033420, 49.1720041], [9.2034212, 49.1719574], [9.2034842, 49.1718901], [9.2035138, 49.1717825], [9.2035370, 49.1716603], [9.2035854, 49.1713888], [9.2037183, 49.1706145], [9.2038583, 49.1701411]], [[9.2040345, 49.1689927], [9.2040696, 49.1689140], [9.2041995, 49.1685726], [9.2044363, 49.1680275]], [[9.2038952, 49.1698601], [9.2039073, 49.1697861], [9.2039162, 49.1695782], [9.2039563, 49.1693101], [9.2040075, 49.1690717], [9.2040345, 49.1689927]], [[9.2044363, 49.1680275], [9.2045054, 49.1677761], [9.2045035, 49.1677206], [9.2044925, 49.1676792], [9.2044798, 49.1676402], [9.2044571, 49.1675995], [9.2044038, 49.1675514]], [[9.2038583, 49.1701411], [9.2038952, 49.1698601]], [[9.2044038, 49.1675514], [9.2043197, 49.1675126], [9.2042337, 49.1674882]], [[9.2039073, 49.1697861], [9.2039684, 49.1695452], [9.2040226, 49.1692955], [9.2040549, 49.1692231], [9.2041040, 49.1691648], [9.2041783, 49.1691104], [9.2042455, 49.1690647]], [[9.2042455, 49.1690647], [9.2043978, 49.1690181]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Ochsenbrunnenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1745248, 49.1795303], [9.1758333, 49.1806769], [9.1769541, 49.1816585], [9.1770175, 49.1817964], [9.1770176, 49.1819302], [9.1769958, 49.1831478], [9.1769905, 49.1832934], [9.1769852, 49.1834245], [9.1769336, 49.1847022], [9.1769347, 49.1848345]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Ohmstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2062085, 49.1786257], [9.2063578, 49.1779541], [9.2063915, 49.1778024], [9.2064829, 49.1773295], [9.2066691, 49.1763656], [9.2067605, 49.1758927], [9.2069344, 49.1749925], [9.2070939, 49.1741669], [9.2071821, 49.1737107], [9.2072982, 49.1731097], [9.2073038, 49.1730806], [9.2073795, 49.1726891], [9.2073816, 49.1726779], [9.2073831, 49.1726705], [9.2074600, 49.1722723], [9.2075965, 49.1715832], [9.2077253, 49.1709330], [9.2077934, 49.1707331], [9.2078016, 49.1707055], [9.2078260, 49.1706573], [9.2078962, 49.1705189]], [[9.2078962, 49.1705189], [9.2079340, 49.1704906], [9.2081314, 49.1703233], [9.2083889, 49.1701886], [9.2087738, 49.1700629], [9.2091013, 49.1699939], [9.2094179, 49.1699510], [9.2095053, 49.1699429]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Olgastraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2083282, 49.1350117], [9.2081685, 49.1351601], [9.2078632, 49.1354067], [9.2076353, 49.1355748], [9.2068912, 49.1359038], [9.2068467, 49.1359733], [9.2068456, 49.1360314], [9.2068449, 49.1360718], [9.2068667, 49.1361117], [9.2070756, 49.1363281], [9.2074039, 49.1366344], [9.2074543, 49.1366792], [9.2083065, 49.1374939], [9.2086008, 49.1377494], [9.2086649, 49.1378107]], [[9.2114315, 49.1426850], [9.2114222, 49.1422703]], [[9.2114096, 49.1410434], [9.2114091, 49.1412059], [9.2114222, 49.1422703]], [[9.2114352, 49.1404819], [9.2113842, 49.1405585], [9.2114096, 49.1410434]], [[9.2091075, 49.1382318], [9.2092157, 49.1383443]], [[9.2086649, 49.1378107], [9.2088429, 49.1379775], [9.2090185, 49.1381462], [9.2091075, 49.1382318]], [[9.2092157, 49.1383443], [9.2093009, 49.1384241], [9.2095250, 49.1386367], [9.2097167, 49.1388186], [9.2099729, 49.1390521], [9.2102546, 49.1393128], [9.2105515, 49.1396069], [9.2109388, 49.1399688], [9.2114352, 49.1404819]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Orffstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1524976, 49.1990653], [9.1523779, 49.1990666], [9.1522556, 49.1990634], [9.1521019, 49.1990513], [9.1520083, 49.1990333], [9.1517623, 49.1988966], [9.1515457, 49.1987427], [9.1514971, 49.1986984], [9.1514647, 49.1986542], [9.1514537, 49.1986151], [9.1514220, 49.1984013], [9.1514119, 49.1983692], [9.1513927, 49.1983272]], [[9.1509323, 49.1990219], [9.1512222, 49.1988077], [9.1514647, 49.1986542]], [[9.1507958, 49.1983244], [9.1513011, 49.1979879]], [[9.1513927, 49.1983272], [9.1513878, 49.1982837], [9.1514067, 49.1982524], [9.1515214, 49.1981563], [9.1515297, 49.1981408], [9.1515224, 49.1981235], [9.1513011, 49.1979879], [9.1510209, 49.1977889], [9.1509548, 49.1977477]], [[9.1521019, 49.1990513], [9.1516426, 49.1993368]], [[9.1505244, 49.1981406], [9.1510209, 49.1977889]], [[9.1512222, 49.1988077], [9.1507425, 49.1985017], [9.1506403, 49.1984868]], [[9.1514119, 49.1983692], [9.1518413, 49.1983645], [9.1518740, 49.1983712], [9.1518945, 49.1983839], [9.1519149, 49.1984066], [9.1519211, 49.1984313], [9.1519231, 49.1985229]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Orthstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2336824, 49.1484912], [9.2336382, 49.1485498]], [[9.2342974, 49.1486060], [9.2340234, 49.1486377], [9.2337661, 49.1486686], [9.2337153, 49.1486772], [9.2335337, 49.1487077]], [[9.2332500, 49.1487727], [9.2334618, 49.1486541], [9.2335098, 49.1486045], [9.2335607, 49.1485714], [9.2336382, 49.1485498]], [[9.2332500, 49.1487727], [9.2328657, 49.1489200], [9.2326261, 49.1490060], [9.2321249, 49.1491821], [9.2316219, 49.1493729], [9.2315232, 49.1494130], [9.2303058, 49.1499588]], [[9.2335337, 49.1487077], [9.2332500, 49.1487727]], [[9.2336382, 49.1485498], [9.2336463, 49.1486081], [9.2336436, 49.1486316], [9.2335337, 49.1487077]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Oststraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2289601, 49.1347056], [9.2290121, 49.1349783], [9.2290353, 49.1351519], [9.2290811, 49.1354452], [9.2291400, 49.1359270], [9.2293055, 49.1371962], [9.2293781, 49.1376666]], [[9.2287328, 49.1343957], [9.2286602, 49.1342496]], [[9.2285372, 49.1337741], [9.2286285, 49.1339086], [9.2287328, 49.1340909], [9.2288452, 49.1343389], [9.2289153, 49.1345336], [9.2289601, 49.1347056]], [[9.2300740, 49.1453237], [9.2300167, 49.1447510]], [[9.2297744, 49.1410340], [9.2297918, 49.1411784], [9.2297994, 49.1412411], [9.2298038, 49.1412691], [9.2298130, 49.1413285]], [[9.2301689, 49.1458333], [9.2301384, 49.1457318], [9.2301352, 49.1457151], [9.2301121, 49.1455959], [9.2300740, 49.1453237]], [[9.2283246, 49.1335154], [9.2285180, 49.1337507], [9.2285372, 49.1337741]], [[9.2300499, 49.1350518], [9.2292023, 49.1351378], [9.2290353, 49.1351519]], [[9.2304013, 49.1351343], [9.2304335, 49.1353238], [9.2304200, 49.1353466], [9.2303932, 49.1353624], [9.2303503, 49.1353729], [9.2290811, 49.1354452]], [[9.2299895, 49.1379139], [9.2299895, 49.1378850], [9.2299841, 49.1378788], [9.2299734, 49.1378780], [9.2298487, 49.1378863], [9.2294164, 49.1379151]], [[9.2293364, 49.1387026], [9.2293242, 49.1385944], [9.2291685, 49.1372129], [9.2290121, 49.1359361], [9.2289854, 49.1357221], [9.2289154, 49.1351612], [9.2289054, 49.1350626], [9.2288684, 49.1348268], [9.2288626, 49.1347962], [9.2288212, 49.1346436]], [[9.2303100, 49.1377560], [9.2301732, 49.1377648], [9.2301236, 49.1377832], [9.2298339, 49.1378016], [9.2298487, 49.1378863]], [[9.2282540, 49.1334337], [9.2283246, 49.1335154]], [[9.2298120, 49.1426939], [9.2297942, 49.1425812]], [[9.2299672, 49.1425742], [9.2299796, 49.1426806]], [[9.2299796, 49.1426806], [9.2299884, 49.1427545]], [[9.2296393, 49.1414776], [9.2296202, 49.1413358], [9.2296120, 49.1412753], [9.2296090, 49.1412497], [9.2296024, 49.1411834], [9.2295834, 49.1410704], [9.2295810, 49.1410425]], [[9.2298840, 49.1418790], [9.2299140, 49.1421301]], [[9.2303341, 49.1456881], [9.2303820, 49.1458258]], [[9.2296689, 49.1401087], [9.2296730, 49.1401640]], [[9.2297319, 49.1421372], [9.2297098, 49.1419797]], [[9.2296730, 49.1401640], [9.2297101, 49.1404669]], [[9.2297098, 49.1419797], [9.2296393, 49.1414776]], [[9.2301506, 49.1440832], [9.2301714, 49.1442438], [9.2302226, 49.1448288]], [[9.2297101, 49.1404669], [9.2297744, 49.1410340]], [[9.2297942, 49.1425812], [9.2297771, 49.1424592]], [[9.2299140, 49.1421301], [9.2299517, 49.1424452]], [[9.2302226, 49.1448288], [9.2302556, 49.1451801], [9.2302952, 49.1454640], [9.2303341, 49.1456881]], [[9.2299190, 49.1435881], [9.2298560, 49.1430881], [9.2298314, 49.1428443], [9.2298229, 49.1427603]], [[9.2298349, 49.1414689], [9.2298840, 49.1418790]], [[9.2295810, 49.1410425], [9.2295634, 49.1408434], [9.2294999, 49.1401015], [9.2294832, 49.1399564], [9.2294677, 49.1397929], [9.2293593, 49.1388933], [9.2293460, 49.1387827], [9.2293364, 49.1387026]], [[9.2294164, 49.1379151], [9.2294374, 49.1380882]], [[9.2287631, 49.1344642], [9.2287328, 49.1343957]], [[9.2293781, 49.1376666], [9.2294164, 49.1379151]], [[9.2294374, 49.1380882], [9.2294972, 49.1385810], [9.2295108, 49.1386929]], [[9.2288212, 49.1346436], [9.2287926, 49.1345384], [9.2287631, 49.1344642]], [[9.2295108, 49.1386929], [9.2295213, 49.1387785], [9.2295337, 49.1388852], [9.2295795, 49.1392783], [9.2296386, 49.1398660], [9.2296473, 49.1399522], [9.2296689, 49.1401087]], [[9.2298130, 49.1413285], [9.2298349, 49.1414689]], [[9.2299517, 49.1424452], [9.2299672, 49.1425742]], [[9.2298229, 49.1427603], [9.2298120, 49.1426939]], [[9.2297771, 49.1424592], [9.2297319, 49.1421372]], [[9.2300167, 49.1447510], [9.2299528, 49.1438861], [9.2299475, 49.1438138], [9.2299190, 49.1435881]], [[9.2299884, 49.1427545], [9.2300914, 49.1435633], [9.2301193, 49.1437863], [9.2301278, 49.1438785], [9.2301326, 49.1439446], [9.2301506, 49.1440832]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Otto-Hahn-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1505879, 49.1890040], [9.1504840, 49.1889613], [9.1501201, 49.1888835], [9.1496936, 49.1888183], [9.1492509, 49.1887268]], [[9.1492451, 49.1895397], [9.1493004, 49.1894813], [9.1496208, 49.1889466], [9.1496936, 49.1888183]], [[9.1496315, 49.1896381], [9.1492451, 49.1895397], [9.1486668, 49.1894048], [9.1485612, 49.1894076], [9.1484528, 49.1894094]], [[9.1487197, 49.1903072], [9.1488030, 49.1901616], [9.1491764, 49.1895844], [9.1492451, 49.1895397]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Otto-Kirchheimer-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1881257, 49.1334956], [9.1880227, 49.1333862], [9.1879499, 49.1331665], [9.1878179, 49.1329710], [9.1876141, 49.1327884], [9.1874906, 49.1327126]], [[9.1874906, 49.1327126], [9.1872501, 49.1326147]], [[9.1872501, 49.1326147], [9.1868250, 49.1325178], [9.1857830, 49.1323755], [9.1855025, 49.1323419]], [[9.1853504, 49.1328224], [9.1855025, 49.1323419]], [[9.1872601, 49.1333190], [9.1879499, 49.1331665]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Otto-Wels-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1362674, 49.1945123], [9.1364956, 49.1942742], [9.1365655, 49.1942170], [9.1366302, 49.1941918], [9.1367125, 49.1941785], [9.1367841, 49.1941808], [9.1368555, 49.1941958], [9.1372012, 49.1943388], [9.1372505, 49.1943626], [9.1373030, 49.1943951], [9.1373442, 49.1944336], [9.1374984, 49.1946269], [9.1375273, 49.1946834], [9.1375477, 49.1947581], [9.1375286, 49.1948089], [9.1373789, 49.1949662]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Ödenburger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1766297, 49.1596649], [9.1770065, 49.1602140], [9.1771000, 49.1603023], [9.1772127, 49.1603928], [9.1777867, 49.1606952], [9.1779451, 49.1607788], [9.1780390, 49.1608142], [9.1786565, 49.1609422], [9.1795634, 49.1611443]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Palmstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1935589, 49.1687738], [9.1935107, 49.1679838], [9.1936702, 49.1677328]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Panoramastraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1503582, 49.1932291], [9.1503176, 49.1932434], [9.1501607, 49.1932987], [9.1499473, 49.1933581], [9.1498136, 49.1933935], [9.1495366, 49.1934472], [9.1491132, 49.1935222], [9.1488462, 49.1935725], [9.1483025, 49.1936612], [9.1476607, 49.1937636], [9.1473362, 49.1938241], [9.1467282, 49.1939177], [9.1464830, 49.1939610], [9.1461931, 49.1940253], [9.1458871, 49.1941719], [9.1452441, 49.1946025], [9.1449686, 49.1947814], [9.1449029, 49.1948301], [9.1448678, 49.1948561], [9.1447488, 49.1949422], [9.1446254, 49.1950314], [9.1444120, 49.1951562], [9.1441634, 49.1952802], [9.1435285, 49.1956265]], [[9.1495366, 49.1934472], [9.1493736, 49.1930147]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Panoramaweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2366788, 49.1610740], [9.2367659, 49.1611320], [9.2367699, 49.1612616], [9.2366304, 49.1613612], [9.2362019, 49.1614290], [9.2350120, 49.1615745], [9.2345596, 49.1616303], [9.2343924, 49.1616244], [9.2341717, 49.1615815], [9.2339354, 49.1615000], [9.2337159, 49.1613984], [9.2328627, 49.1610167], [9.2326040, 49.1608955], [9.2325436, 49.1608479], [9.2324841, 49.1607715], [9.2324360, 49.1606413], [9.2324070, 49.1603686], [9.2323871, 49.1599979], [9.2323911, 49.1598365], [9.2324132, 49.1594578], [9.2324402, 49.1593457], [9.2324796, 49.1592332], [9.2325430, 49.1591240], [9.2326165, 49.1590325], [9.2327839, 49.1589084], [9.2331524, 49.1587057], [9.2334275, 49.1585609], [9.2335892, 49.1584744]], [[9.1674594, 49.1623210], [9.1675066, 49.1622979], [9.1677097, 49.1622447], [9.1679096, 49.1621781], [9.1684524, 49.1619820], [9.1688076, 49.1618391], [9.1690758, 49.1617329], [9.1695514, 49.1614382], [9.1700024, 49.1611296], [9.1703591, 49.1608706]], [[9.2353281, 49.1579220], [9.2354676, 49.1578608], [9.2357566, 49.1577042], [9.2360765, 49.1575617], [9.2372167, 49.1570904], [9.2378660, 49.1568181], [9.2383360, 49.1565982], [9.2388151, 49.1563484], [9.2392859, 49.1561088], [9.2397247, 49.1559383], [9.2402373, 49.1557981], [9.2411967, 49.1555739], [9.2429093, 49.1551773], [9.2441500, 49.1549090], [9.2447215, 49.1548492], [9.2449755, 49.1548172], [9.2452040, 49.1547674], [9.2453866, 49.1546721], [9.2455018, 49.1545913], [9.2455724, 49.1545028], [9.2456175, 49.1544361], [9.2456589, 49.1541446], [9.2456330, 49.1535491], [9.2455982, 49.1534317], [9.2455401, 49.1533242], [9.2452766, 49.1529855], [9.2449871, 49.1526903], [9.2448683, 49.1525234], [9.2448256, 49.1523467], [9.2448834, 49.1520662], [9.2450065, 49.1519049]], [[9.1674594, 49.1623210], [9.1673103, 49.1623189], [9.1667101, 49.1624040], [9.1661087, 49.1624986], [9.1655545, 49.1626066]], [[9.1655545, 49.1626066], [9.1654890, 49.1626212], [9.1653544, 49.1626241], [9.1653462, 49.1630014]], [[9.1703591, 49.1608706], [9.1705556, 49.1606875]], [[9.2335892, 49.1584744], [9.2338221, 49.1584413], [9.2340486, 49.1584001], [9.2341435, 49.1583845], [9.2342770, 49.1583574], [9.2344476, 49.1583039], [9.2346740, 49.1582162], [9.2348926, 49.1581127], [9.2350988, 49.1580096], [9.2353281, 49.1579220]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Pappelweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1771471, 49.1143631], [9.1770809, 49.1142440], [9.1770015, 49.1139768], [9.1769734, 49.1139118], [9.1769180, 49.1138794], [9.1761932, 49.1137745]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Paracelsusstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2425796, 49.1341268], [9.2426107, 49.1343307], [9.2425803, 49.1345430], [9.2424757, 49.1346833], [9.2423300, 49.1347711], [9.2420079, 49.1348718], [9.2419373, 49.1348892], [9.2415020, 49.1349966], [9.2411740, 49.1350678], [9.2409926, 49.1351010]], [[9.2405614, 49.1350859], [9.2406030, 49.1351079], [9.2406137, 49.1351237], [9.2406271, 49.1351377], [9.2406473, 49.1351394], [9.2406701, 49.1351316], [9.2409926, 49.1351010]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Parkstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1922048, 49.1186862], [9.1920706, 49.1183015], [9.1920335, 49.1182044], [9.1919003, 49.1178554], [9.1917809, 49.1176481], [9.1917364, 49.1175042], [9.1916945, 49.1174037], [9.1916768, 49.1173508], [9.1916075, 49.1172003], [9.1915437, 49.1171161], [9.1914478, 49.1170567], [9.1913372, 49.1170183], [9.1912153, 49.1169840], [9.1911262, 49.1169768], [9.1908768, 49.1169704]], [[9.1908768, 49.1169704], [9.1904537, 49.1169645]], [[9.1904537, 49.1169645], [9.1902412, 49.1169688], [9.1900231, 49.1169566], [9.1898164, 49.1169329], [9.1894763, 49.1168228]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Parkweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2212510, 49.1378167], [9.2220820, 49.1378570], [9.2223579, 49.1378616], [9.2229462, 49.1378528]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Pater-Kolbe-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1217242, 49.1837086], [9.1210673, 49.1839298], [9.1210189, 49.1839485], [9.1201818, 49.1842230], [9.1196268, 49.1843963], [9.1187531, 49.1846544], [9.1184481, 49.1847511]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Paul-Gerhardt-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1190754, 49.1854851], [9.1187698, 49.1851409], [9.1184481, 49.1847511], [9.1182630, 49.1845535]], [[9.1182630, 49.1845535], [9.1180678, 49.1840469], [9.1177500, 49.1833004]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Paul-Göbel-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2309221, 49.1469212], [9.2307264, 49.1466502]], [[9.2304130, 49.1459086], [9.2304611, 49.1460074], [9.2306866, 49.1463705], [9.2309445, 49.1467764], [9.2310292, 49.1469059], [9.2311345, 49.1470567], [9.2312582, 49.1471990], [9.2314159, 49.1473414]], [[9.2303820, 49.1458258], [9.2304130, 49.1459086]], [[9.2309221, 49.1469212], [9.2306140, 49.1466131], [9.2303989, 49.1464103], [9.2301852, 49.1462269], [9.2300472, 49.1461416], [9.2299082, 49.1460735], [9.2297806, 49.1460219], [9.2295640, 49.1459615]], [[9.2356855, 49.1483979], [9.2352622, 49.1484584]], [[9.2321930, 49.1478048], [9.2323444, 49.1478781], [9.2324035, 49.1479067]], [[9.2323346, 49.1479555], [9.2322804, 49.1479312], [9.2321286, 49.1478633]], [[9.2349921, 49.1484940], [9.2345133, 49.1485845], [9.2342974, 49.1486060]], [[9.2325953, 49.1479983], [9.2327434, 49.1480685], [9.2328929, 49.1481436]], [[9.2321286, 49.1478633], [9.2319529, 49.1477736], [9.2318143, 49.1477029], [9.2316538, 49.1476137]], [[9.2367545, 49.1483067], [9.2364723, 49.1483143], [9.2360840, 49.1483481], [9.2356855, 49.1483979]], [[9.2336382, 49.1485498], [9.2335337, 49.1485190], [9.2334532, 49.1484898], [9.2333782, 49.1484625], [9.2328996, 49.1482225], [9.2326843, 49.1481139]], [[9.2302167, 49.1459373], [9.2301689, 49.1458333]], [[9.2307264, 49.1466502], [9.2305636, 49.1464247], [9.2302882, 49.1460536], [9.2302167, 49.1459373]], [[9.2314159, 49.1473414], [9.2315477, 49.1474417], [9.2316924, 49.1475434], [9.2318695, 49.1476465], [9.2319604, 49.1476943], [9.2320086, 49.1477172], [9.2321930, 49.1478048]], [[9.2316538, 49.1476137], [9.2315071, 49.1475123], [9.2313353, 49.1473791], [9.2311800, 49.1472301], [9.2310491, 49.1470825], [9.2309221, 49.1469212]], [[9.2352622, 49.1484584], [9.2349921, 49.1484940]], [[9.2326843, 49.1481139], [9.2325402, 49.1480463]], [[9.2342974, 49.1486060], [9.2340607, 49.1486139], [9.2338309, 49.1485969], [9.2337683, 49.1485816], [9.2336382, 49.1485498]], [[9.2336824, 49.1484912], [9.2338651, 49.1485285], [9.2340876, 49.1485466], [9.2342950, 49.1485538], [9.2345175, 49.1485430], [9.2349921, 49.1484940]], [[9.2328929, 49.1481436], [9.2331284, 49.1482619], [9.2334103, 49.1483974], [9.2335005, 49.1484320], [9.2335707, 49.1484589], [9.2336824, 49.1484912]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Paul-Weitbrecht-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1966583, 49.1720783], [9.1965693, 49.1725286], [9.1963963, 49.1726541]], [[9.1943919, 49.1727606], [9.1943975, 49.1727280], [9.1944454, 49.1723845], [9.1944743, 49.1723385], [9.1945071, 49.1722825], [9.1945633, 49.1720040]], [[9.1957201, 49.1719929], [9.1956615, 49.1723568], [9.1956071, 49.1726505], [9.1955958, 49.1727070], [9.1955752, 49.1727464], [9.1955353, 49.1727785], [9.1955027, 49.1727850], [9.1953958, 49.1727790], [9.1949570, 49.1727529], [9.1945162, 49.1727325], [9.1943975, 49.1727280]], [[9.1940269, 49.1727544], [9.1943919, 49.1727606]], [[9.1963807, 49.1726989], [9.1963418, 49.1727144], [9.1963117, 49.1727151], [9.1962758, 49.1727040], [9.1962522, 49.1726794], [9.1962531, 49.1726525], [9.1962688, 49.1726344], [9.1962988, 49.1726212], [9.1963464, 49.1726204], [9.1963742, 49.1726307], [9.1963963, 49.1726541], [9.1963935, 49.1726853], [9.1963807, 49.1726989]], [[9.1953958, 49.1727790], [9.1954053, 49.1726995], [9.1954154, 49.1726747], [9.1954355, 49.1726568], [9.1954870, 49.1726447], [9.1956071, 49.1726505]], [[9.1962758, 49.1727040], [9.1961707, 49.1726926], [9.1957774, 49.1726640], [9.1956071, 49.1726505]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Paulinenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2217339, 49.1509385], [9.2217086, 49.1508119], [9.2216824, 49.1504893], [9.2215985, 49.1499037], [9.2215853, 49.1497726], [9.2215760, 49.1497083]], [[9.2223416, 49.1463112], [9.2217362, 49.1463740], [9.2216069, 49.1463846], [9.2215661, 49.1463878], [9.2214335, 49.1464144], [9.2213416, 49.1464597], [9.2212751, 49.1465470], [9.2212559, 49.1466252], [9.2212668, 49.1467322], [9.2213480, 49.1473687], [9.2214103, 49.1478207], [9.2214211, 49.1480097], [9.2214365, 49.1481956], [9.2214828, 49.1483759], [9.2215915, 49.1485487], [9.2216296, 49.1486641]], [[9.2217470, 49.1497766], [9.2217581, 49.1498645], [9.2217666, 49.1499217], [9.2218123, 49.1504114], [9.2218589, 49.1508092], [9.2218682, 49.1508803], [9.2218831, 49.1509710]], [[9.2216296, 49.1486641], [9.2217470, 49.1497766]], [[9.2214828, 49.1483759], [9.2214760, 49.1484138], [9.2214558, 49.1484435], [9.2214336, 49.1485000], [9.2214220, 49.1485388], [9.2214185, 49.1486189], [9.2214518, 49.1488428], [9.2215063, 49.1492530], [9.2215215, 49.1493917], [9.2215078, 49.1494670], [9.2214836, 49.1495453], [9.2214548, 49.1495889], [9.2214089, 49.1496349]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Pestalozzistraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2258839, 49.1494523], [9.2263843, 49.1493671], [9.2268455, 49.1492865], [9.2269174, 49.1492685], [9.2271081, 49.1492038], [9.2274049, 49.1490756], [9.2275208, 49.1490163]], [[9.2258839, 49.1494523], [9.2251536, 49.1495563], [9.2249564, 49.1495811], [9.2246783, 49.1496225], [9.2244332, 49.1496582], [9.2239144, 49.1497320], [9.2235168, 49.1497688], [9.2234107, 49.1497765], [9.2231221, 49.1497973], [9.2227807, 49.1498120], [9.2225898, 49.1498181], [9.2224139, 49.1498237], [9.2222056, 49.1498177], [9.2219738, 49.1497988], [9.2217470, 49.1497766]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Pfaffenhofener Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1808642, 49.1449207], [9.1808644, 49.1448997], [9.1808665, 49.1446312], [9.1808683, 49.1444058], [9.1808667, 49.1443428], [9.1808583, 49.1438557], [9.1808766, 49.1438005], [9.1809325, 49.1437680], [9.1810932, 49.1437392], [9.1824030, 49.1437431]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Pfaffenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1584441, 49.1806529], [9.1605064, 49.1815866], [9.1611083, 49.1818592], [9.1616674, 49.1821123], [9.1622317, 49.1822999]], [[9.1622317, 49.1822999], [9.1624674, 49.1823110], [9.1625161, 49.1823109], [9.1642311, 49.1823072], [9.1656544, 49.1823042], [9.1660549, 49.1823256], [9.1664339, 49.1823729], [9.1667948, 49.1824316], [9.1670200, 49.1824526], [9.1672293, 49.1824595], [9.1676091, 49.1824532], [9.1678489, 49.1824477], [9.1679199, 49.1824466], [9.1679958, 49.1824454], [9.1682380, 49.1824449], [9.1685774, 49.1824443], [9.1689975, 49.1824721], [9.1694163, 49.1825240], [9.1709942, 49.1827188], [9.1723290, 49.1828835], [9.1739521, 49.1830764], [9.1751036, 49.1832132], [9.1759268, 49.1832719], [9.1767639, 49.1832888], [9.1769905, 49.1832934], [9.1772436, 49.1832958], [9.1788996, 49.1833116], [9.1790108, 49.1833127], [9.1792689, 49.1833129], [9.1806514, 49.1833448], [9.1808464, 49.1833346], [9.1821584, 49.1832663], [9.1823533, 49.1832561], [9.1825211, 49.1832455], [9.1836518, 49.1831983], [9.1839444, 49.1831824]], [[9.1839444, 49.1831824], [9.1845085, 49.1831465], [9.1847391, 49.1831362]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Pfalzstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2283086, 49.1530211], [9.2279902, 49.1524034], [9.2276921, 49.1518817], [9.2272612, 49.1510705]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Pfarrgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1951925, 49.1338697], [9.1950687, 49.1337887], [9.1949304, 49.1336596], [9.1948039, 49.1335010], [9.1947271, 49.1334089], [9.1946183, 49.1330609], [9.1945829, 49.1330431], [9.1941758, 49.1330741]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Pfizerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2313115, 49.1328628], [9.2316874, 49.1343788]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Pforzheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1044805, 49.1823617], [9.1043782, 49.1823118], [9.1041703, 49.1822929], [9.1031225, 49.1825711], [9.1030544, 49.1826485], [9.1031435, 49.1829800], [9.1031919, 49.1829884], [9.1032365, 49.1829961], [9.1039113, 49.1828228], [9.1040664, 49.1828497]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Pfützäckerweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1804413, 49.0897793], [9.1802958, 49.0897032], [9.1794131, 49.0894073], [9.1792946, 49.0893768], [9.1792315, 49.0893605], [9.1789987, 49.0893773], [9.1788708, 49.0894093], [9.1787446, 49.0894685], [9.1786841, 49.0895169], [9.1783488, 49.0897855], [9.1777775, 49.0901955], [9.1771719, 49.0904718], [9.1765425, 49.0907702], [9.1754512, 49.0912203], [9.1743908, 49.0916920], [9.1743407, 49.0917264], [9.1742145, 49.0918130], [9.1739809, 49.0919089], [9.1737003, 49.0920446], [9.1735261, 49.0921466], [9.1733814, 49.0922520], [9.1730231, 49.0924655], [9.1724459, 49.0927252], [9.1722023, 49.0928432], [9.1718791, 49.0929997], [9.1715775, 49.0931753], [9.1710514, 49.0934818], [9.1696832, 49.0942703], [9.1690319, 49.0946638], [9.1686038, 49.0949243], [9.1683817, 49.0950749], [9.1681905, 49.0952395], [9.1679142, 49.0956393], [9.1676485, 49.0959734], [9.1675743, 49.0963111], [9.1674549, 49.0966098], [9.1674638, 49.0968559], [9.1674832, 49.0976560], [9.1675088, 49.0983976], [9.1675088, 49.0989361], [9.1675021, 49.0990911], [9.1674773, 49.0992317], [9.1673220, 49.1001726], [9.1670993, 49.1011231], [9.1668899, 49.1018051], [9.1668654, 49.1019856], [9.1668323, 49.1022299], [9.1667906, 49.1025988], [9.1667516, 49.1029461], [9.1667036, 49.1035446], [9.1667007, 49.1035791], [9.1666594, 49.1040798], [9.1666977, 49.1044055], [9.1668048, 49.1049367], [9.1671312, 49.1058320], [9.1674099, 49.1062766], [9.1681919, 49.1071662], [9.1685670, 49.1073613], [9.1691189, 49.1076381], [9.1694004, 49.1077215], [9.1698128, 49.1078340], [9.1700889, 49.1079093], [9.1703428, 49.1079785], [9.1709619, 49.1081455], [9.1715790, 49.1083120], [9.1728688, 49.1086724]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Philipp-Hagner-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1965693, 49.1703960], [9.1965626, 49.1700131]], [[9.1984112, 49.1700244], [9.1965626, 49.1700131]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Pilgramstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2077461, 49.1242425], [9.2075965, 49.1242879], [9.2075147, 49.1242993], [9.2069595, 49.1243335], [9.2067704, 49.1243405], [9.2065893, 49.1243397], [9.2063935, 49.1243282], [9.2061736, 49.1243124], [9.2059979, 49.1242984], [9.2057176, 49.1242633], [9.2055755, 49.1242378], [9.2054011, 49.1241975], [9.2051865, 49.1241404], [9.2036494, 49.1236993]], [[9.2036494, 49.1236993], [9.2022388, 49.1231706], [9.2019894, 49.1230671], [9.2004966, 49.1224668]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Pirolweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1771192, 49.1164937], [9.1782066, 49.1166706], [9.1782961, 49.1169234]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Platanenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1827034, 49.1481627], [9.1829569, 49.1481635], [9.1837106, 49.1482142], [9.1845933, 49.1482731], [9.1854732, 49.1483295]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Platenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2229789, 49.1269076], [9.2235720, 49.1279137], [9.2241809, 49.1289264], [9.2241862, 49.1289554], [9.2241561, 49.1289777], [9.2237092, 49.1290703]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Port-Talbot-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2079794, 49.1210156], [9.2079418, 49.1209848], [9.2079338, 49.1209682], [9.2079311, 49.1209418], [9.2079319, 49.1208672], [9.2079338, 49.1206768], [9.2079392, 49.1206417], [9.2079579, 49.1206127], [9.2079794, 49.1205758], [9.2079888, 49.1205425], [9.2079891, 49.1204253], [9.2079901, 49.1203643], [9.2079928, 49.1202028], [9.2079901, 49.1200009], [9.2079827, 49.1199106]], [[9.2081443, 49.1217885], [9.2081445, 49.1217154], [9.2081395, 49.1214332], [9.2081353, 49.1211617], [9.2081323, 49.1210512], [9.2081309, 49.1210240], [9.2081122, 49.1210059], [9.2080827, 49.1209994], [9.2080438, 49.1209994], [9.2079955, 49.1210029], [9.2079794, 49.1210156], [9.2079646, 49.1210389], [9.2079687, 49.1210564], [9.2079834, 49.1210757], [9.2081079, 49.1211458], [9.2081353, 49.1211617]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Poststraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1120586, 49.1842563], [9.1120896, 49.1842798], [9.1121367, 49.1842898], [9.1122784, 49.1842649], [9.1123821, 49.1842836]], [[9.1108199, 49.1829625], [9.1109695, 49.1831584], [9.1111551, 49.1833994], [9.1115162, 49.1836262], [9.1117445, 49.1838673], [9.1119383, 49.1841055], [9.1120586, 49.1842563]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Primelweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1227987, 49.1832428], [9.1235001, 49.1829968]], [[9.1227518, 49.1831750], [9.1223017, 49.1834146]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Quellenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1869204, 49.1182907], [9.1865350, 49.1181483], [9.1862650, 49.1181251]], [[9.1862739, 49.1180546], [9.1854343, 49.1179990], [9.1850520, 49.1179720], [9.1837798, 49.1178044]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Querschulgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2217730, 49.1420035], [9.2217894, 49.1420441], [9.2218195, 49.1421697], [9.2218574, 49.1424103]], [[9.2219836, 49.1430031], [9.2220311, 49.1432274]], [[9.2218574, 49.1424103], [9.2218926, 49.1425777], [9.2219375, 49.1427761], [9.2219836, 49.1430031]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Querstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1918388, 49.1316967], [9.1917797, 49.1313699], [9.1917366, 49.1310197], [9.1918202, 49.1306243]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Raabeweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2261666, 49.1547647], [9.2260030, 49.1549282], [9.2262986, 49.1558599], [9.2263606, 49.1560238], [9.2263689, 49.1561889], [9.2263758, 49.1565391], [9.2263613, 49.1566756], [9.2263295, 49.1567022], [9.2261431, 49.1567404]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Raffeltersteige" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2359047, 49.1544209], [9.2355422, 49.1538800], [9.2353831, 49.1536312]], [[9.2355422, 49.1538800], [9.2362906, 49.1538752], [9.2365431, 49.1538933], [9.2366239, 49.1538593]], [[9.2352278, 49.1526052], [9.2353561, 49.1526280], [9.2355819, 49.1526615], [9.2369297, 49.1528607], [9.2372877, 49.1529373], [9.2375631, 49.1530115], [9.2376277, 49.1530354], [9.2376771, 49.1530752], [9.2377540, 49.1531766], [9.2378479, 49.1532373], [9.2379822, 49.1532896], [9.2381738, 49.1533261], [9.2394173, 49.1535740], [9.2395516, 49.1535930], [9.2397138, 49.1536014], [9.2398857, 49.1535968], [9.2400136, 49.1535843], [9.2401969, 49.1535466], [9.2406480, 49.1533938]], [[9.2342625, 49.1521890], [9.2343707, 49.1521744], [9.2344682, 49.1521735], [9.2345970, 49.1521975], [9.2350184, 49.1522928], [9.2351076, 49.1523335], [9.2351655, 49.1523835], [9.2352094, 49.1524584], [9.2352221, 49.1525259], [9.2352278, 49.1526052], [9.2352306, 49.1528653], [9.2352532, 49.1531585], [9.2352760, 49.1533036], [9.2353043, 49.1534285], [9.2353524, 49.1535636], [9.2353831, 49.1536312]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Raidweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1957820, 49.1199436], [9.1957401, 49.1199449]], [[9.1977484, 49.1203364], [9.1982220, 49.1204247], [9.1986930, 49.1205123], [9.1992323, 49.1206093], [9.1996736, 49.1206919], [9.1999707, 49.1207530], [9.2004212, 49.1208466], [9.2008356, 49.1209315], [9.2016028, 49.1210871]], [[9.1964025, 49.1196851], [9.1964393, 49.1200524], [9.1964346, 49.1201000]], [[9.1957820, 49.1199436], [9.1958229, 49.1199470], [9.1960260, 49.1200059], [9.1961657, 49.1200400], [9.1963000, 49.1200695], [9.1964346, 49.1201000], [9.1965176, 49.1201170], [9.1967521, 49.1201596], [9.1976013, 49.1203124], [9.1977484, 49.1203364]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Raiffeisenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1537781, 49.1189510], [9.1542963, 49.1188627], [9.1549954, 49.1187538], [9.1551836, 49.1187247], [9.1554342, 49.1187438], [9.1554324, 49.1187654], [9.1553999, 49.1191546], [9.1553895, 49.1192287], [9.1554159, 49.1192585], [9.1554626, 49.1192789]], [[9.1542963, 49.1188627], [9.1540986, 49.1183615], [9.1539929, 49.1181631]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Rainlesstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1999193, 49.1577376], [9.2010231, 49.1577172], [9.2018014, 49.1577299], [9.2019329, 49.1578028]], [[9.2019329, 49.1578028], [9.2019509, 49.1581486], [9.2019326, 49.1584903], [9.2019338, 49.1585259]], [[9.2019338, 49.1585259], [9.2019928, 49.1587750]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Rampachertal" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2467144, 49.1405965], [9.2468185, 49.1407757], [9.2469550, 49.1409871], [9.2471165, 49.1412396], [9.2472976, 49.1415308], [9.2473966, 49.1417364], [9.2474638, 49.1418955], [9.2475633, 49.1422278], [9.2476174, 49.1423741], [9.2477106, 49.1426260], [9.2477609, 49.1427363], [9.2478266, 49.1428229], [9.2479520, 49.1429712], [9.2480665, 49.1430773], [9.2481761, 49.1432187], [9.2482936, 49.1434181], [9.2484445, 49.1436730], [9.2484650, 49.1437148], [9.2486073, 49.1439750], [9.2486241, 49.1440057], [9.2487719, 49.1442683], [9.2487873, 49.1442957], [9.2488046, 49.1443264], [9.2489522, 49.1445375], [9.2489699, 49.1445587], [9.2489920, 49.1445852], [9.2490323, 49.1446242], [9.2491308, 49.1446933], [9.2493180, 49.1448218], [9.2494038, 49.1448806], [9.2494879, 49.1449545], [9.2495165, 49.1449889], [9.2495346, 49.1450256], [9.2495401, 49.1450655], [9.2495441, 49.1450989], [9.2495258, 49.1451310]], [[9.2517546, 49.1453454], [9.2515758, 49.1453489], [9.2513010, 49.1453752], [9.2511905, 49.1453825], [9.2509633, 49.1453979], [9.2507882, 49.1454097], [9.2506319, 49.1454292], [9.2505182, 49.1454434], [9.2502015, 49.1454616], [9.2501085, 49.1454555], [9.2496213, 49.1453340]], [[9.2471165, 49.1412396], [9.2475716, 49.1412947], [9.2477615, 49.1413176], [9.2478965, 49.1413307]], [[9.2482936, 49.1434181], [9.2478521, 49.1435241], [9.2477926, 49.1435307], [9.2477497, 49.1435184], [9.2477014, 49.1434693]], [[9.2495258, 49.1451310], [9.2495904, 49.1451607], [9.2496299, 49.1451843], [9.2496559, 49.1452141], [9.2496757, 49.1452557], [9.2496632, 49.1452900], [9.2496551, 49.1453216], [9.2496213, 49.1453340], [9.2495726, 49.1453371], [9.2495244, 49.1453307], [9.2494757, 49.1453156], [9.2494328, 49.1452864], [9.2493924, 49.1452578]], [[9.2493924, 49.1452578], [9.2494530, 49.1452240], [9.2494986, 49.1451789], [9.2495258, 49.1451310]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Rappengasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1421089, 49.1944093], [9.1416793, 49.1946561], [9.1415798, 49.1946815], [9.1412570, 49.1947922]], [[9.1412570, 49.1947922], [9.1410696, 49.1949049], [9.1409817, 49.1949767], [9.1409137, 49.1950392], [9.1408738, 49.1950602], [9.1404537, 49.1951626], [9.1403751, 49.1951805], [9.1403056, 49.1951769], [9.1401871, 49.1951464]], [[9.1415798, 49.1946815], [9.1415676, 49.1946500], [9.1415755, 49.1945992], [9.1416368, 49.1945459], [9.1416757, 49.1944873], [9.1416679, 49.1944405], [9.1416274, 49.1943732], [9.1415440, 49.1942953], [9.1415017, 49.1942537]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Rathausgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2183949, 49.1432552], [9.2183465, 49.1431493], [9.2182520, 49.1428992], [9.2182204, 49.1428114]], [[9.2182204, 49.1428114], [9.2181832, 49.1426902], [9.2181791, 49.1424574], [9.2181846, 49.1423921], [9.2181900, 49.1423031], [9.2181922, 49.1421338], [9.2181908, 49.1420727], [9.2181901, 49.1420532], [9.2181927, 49.1420417], [9.2181848, 49.1419780]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Rathausstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1943356, 49.1314218], [9.1944237, 49.1315516], [9.1944434, 49.1315982], [9.1944503, 49.1316446], [9.1944149, 49.1319152], [9.1944800, 49.1322123], [9.1945591, 49.1325295]], [[9.1945591, 49.1325295], [9.1947551, 49.1325574], [9.1949042, 49.1325821]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Rathenauplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2177018, 49.1318108], [9.2177263, 49.1317273], [9.2177503, 49.1317023], [9.2177773, 49.1316788], [9.2178941, 49.1315863], [9.2179537, 49.1315302], [9.2179859, 49.1314799], [9.2179967, 49.1314793], [9.2180636, 49.1313555], [9.2180881, 49.1313650], [9.2181229, 49.1314499], [9.2181383, 49.1314782], [9.2181804, 49.1315428], [9.2182362, 49.1316119], [9.2182898, 49.1316726], [9.2183388, 49.1317181], [9.2183856, 49.1317551], [9.2184444, 49.1317961], [9.2185877, 49.1318891], [9.2183911, 49.1319492], [9.2183439, 49.1319711], [9.2182894, 49.1320093], [9.2182289, 49.1320759], [9.2182224, 49.1320736], [9.2182134, 49.1320759], [9.2181018, 49.1320758], [9.2180417, 49.1320082], [9.2179902, 49.1319672], [9.2179379, 49.1319385], [9.2178666, 49.1319023], [9.2177031, 49.1318200], [9.2177001, 49.1318161], [9.2177018, 49.1318108]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Rauchstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2239546, 49.1538266], [9.2239911, 49.1537897], [9.2240503, 49.1537617], [9.2241816, 49.1537347], [9.2244731, 49.1536788], [9.2249530, 49.1535887], [9.2252842, 49.1535294], [9.2255462, 49.1534824], [9.2258006, 49.1534368], [9.2260585, 49.1533906], [9.2263114, 49.1533464], [9.2265642, 49.1532984], [9.2268956, 49.1532371], [9.2270248, 49.1532164], [9.2275028, 49.1531472], [9.2280134, 49.1530690], [9.2281307, 49.1530497], [9.2283086, 49.1530211], [9.2286621, 49.1529571], [9.2289121, 49.1529079], [9.2292307, 49.1528434], [9.2298466, 49.1527257], [9.2302545, 49.1526411], [9.2304438, 49.1526054], [9.2313585, 49.1524352], [9.2314262, 49.1524154], [9.2314756, 49.1523960]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Reiherweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1905003, 49.1515784], [9.1908326, 49.1515962], [9.1915555, 49.1516849], [9.1921345, 49.1517584]], [[9.1921345, 49.1517584], [9.1922797, 49.1519022], [9.1924506, 49.1519202], [9.1925156, 49.1517973], [9.1921345, 49.1517584]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Reinbotstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1492163, 49.1177319], [9.1493013, 49.1180181], [9.1494102, 49.1180194], [9.1497195, 49.1179658], [9.1505330, 49.1181175], [9.1507090, 49.1180897]], [[9.1494102, 49.1180194], [9.1493877, 49.1181421], [9.1492695, 49.1181290], [9.1493013, 49.1180181]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Reinerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1601063, 49.1430629], [9.1619906, 49.1430738], [9.1620615, 49.1430752], [9.1626345, 49.1430788], [9.1631028, 49.1430818], [9.1635506, 49.1430860], [9.1643735, 49.1430898], [9.1645700, 49.1430663], [9.1651054, 49.1430397], [9.1655369, 49.1429744], [9.1662888, 49.1428992], [9.1671890, 49.1428840]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Reinhold-Fyrnys-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1858609, 49.1357213], [9.1859704, 49.1354848], [9.1860057, 49.1354680], [9.1861918, 49.1350085]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Reisacher Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2411283, 49.1481279], [9.2404451, 49.1479676], [9.2400479, 49.1478760], [9.2395120, 49.1476968]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Renzweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1845839, 49.1279477], [9.1846545, 49.1275961], [9.1848665, 49.1271844]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Rethelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1990083, 49.1214517], [9.1998544, 49.1218067], [9.2007721, 49.1221674]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Reutlinger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2444444, 49.1332054], [9.2445244, 49.1331829], [9.2446561, 49.1331457], [9.2448116, 49.1331316], [9.2449495, 49.1331049], [9.2450676, 49.1330719], [9.2452032, 49.1330236], [9.2453068, 49.1329694], [9.2453670, 49.1329005], [9.2454032, 49.1328390], [9.2454199, 49.1327685], [9.2454196, 49.1327073], [9.2453991, 49.1326364], [9.2453669, 49.1325519], [9.2453225, 49.1324650], [9.2452337, 49.1323116], [9.2451388, 49.1321425], [9.2451125, 49.1321038], [9.2449475, 49.1319377], [9.2448627, 49.1318346]], [[9.2453068, 49.1329694], [9.2453760, 49.1330113], [9.2454867, 49.1330509], [9.2456074, 49.1330780], [9.2457181, 49.1330854], [9.2458083, 49.1330829], [9.2458885, 49.1330765], [9.2460514, 49.1330496], [9.2462056, 49.1330197], [9.2463232, 49.1329881], [9.2464288, 49.1329480], [9.2465421, 49.1328960], [9.2466333, 49.1328303]], [[9.2454199, 49.1327685], [9.2458014, 49.1327394], [9.2459541, 49.1327153], [9.2461989, 49.1326510], [9.2463282, 49.1326092], [9.2464208, 49.1325776], [9.2464905, 49.1325332]], [[9.2453225, 49.1324650], [9.2456071, 49.1324308], [9.2457739, 49.1324042], [9.2458981, 49.1323710], [9.2460043, 49.1323356], [9.2461998, 49.1322696], [9.2462644, 49.1322450]], [[9.2451388, 49.1321425], [9.2453699, 49.1321196], [9.2454739, 49.1321081], [9.2456095, 49.1320841], [9.2457288, 49.1320553], [9.2458442, 49.1320248], [9.2459527, 49.1319916], [9.2460291, 49.1319585], [9.2461040, 49.1319094]], [[9.2464905, 49.1325332], [9.2466636, 49.1323713], [9.2467007, 49.1323365]], [[9.2461040, 49.1319094], [9.2462447, 49.1317752], [9.2462810, 49.1317406]], [[9.2466333, 49.1328303], [9.2467556, 49.1327205], [9.2468902, 49.1326142]], [[9.2462644, 49.1322450], [9.2463149, 49.1322118], [9.2464579, 49.1320836], [9.2465005, 49.1320454]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Reußweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2359533, 49.1516037], [9.2358750, 49.1507045]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Richard-Becker-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2443130, 49.1399441], [9.2444072, 49.1400810], [9.2444585, 49.1401587], [9.2444870, 49.1402005], [9.2444956, 49.1402131], [9.2445227, 49.1402529], [9.2447020, 49.1405160], [9.2448958, 49.1408004], [9.2449349, 49.1408580], [9.2450195, 49.1409840]], [[9.2441086, 49.1394526], [9.2441480, 49.1395583], [9.2442816, 49.1398582], [9.2443130, 49.1399441]], [[9.2443130, 49.1399441], [9.2442649, 49.1398793], [9.2440361, 49.1395746], [9.2439726, 49.1394745]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Richard-Wagner-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2235720, 49.1279137], [9.2231570, 49.1280071]], [[9.2221285, 49.1257914], [9.2221346, 49.1259412], [9.2221413, 49.1259798], [9.2221561, 49.1260263], [9.2221893, 49.1260874], [9.2222695, 49.1262431], [9.2223944, 49.1264835], [9.2224219, 49.1265440], [9.2225006, 49.1266937], [9.2226345, 49.1269639], [9.2231570, 49.1280071], [9.2234609, 49.1285922], [9.2237092, 49.1290703], [9.2239686, 49.1295887], [9.2245744, 49.1307678], [9.2246060, 49.1309119], [9.2246298, 49.1311046]], [[9.2252825, 49.1308705], [9.2246060, 49.1309119]], [[9.2223944, 49.1264835], [9.2231468, 49.1263149]], [[9.2225006, 49.1266937], [9.2232874, 49.1265103]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Rieckherstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1938612, 49.1207230], [9.1940728, 49.1204736], [9.1941937, 49.1203333], [9.1943243, 49.1201852], [9.1945437, 49.1199338]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Riedstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2460871, 49.1495366], [9.2450199, 49.1493421], [9.2446026, 49.1492706], [9.2444288, 49.1492341], [9.2438563, 49.1491304], [9.2436185, 49.1490889], [9.2433513, 49.1490388], [9.2432343, 49.1490239], [9.2431355, 49.1490153], [9.2425947, 49.1490310], [9.2418471, 49.1490438], [9.2415870, 49.1490208], [9.2414068, 49.1489893], [9.2412400, 49.1489523], [9.2411455, 49.1489130], [9.2410310, 49.1488386]], [[9.2446026, 49.1492706], [9.2445554, 49.1498748]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Riedweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1726228, 49.1584105], [9.1731086, 49.1585634], [9.1733952, 49.1586534], [9.1735060, 49.1586878], [9.1735947, 49.1587545], [9.1736439, 49.1588444], [9.1736266, 49.1589114], [9.1736153, 49.1589553], [9.1735615, 49.1590645], [9.1735070, 49.1591953], [9.1734577, 49.1593135], [9.1734401, 49.1594428], [9.1734464, 49.1595010], [9.1734540, 49.1595716], [9.1735299, 49.1597226], [9.1735587, 49.1597625], [9.1736374, 49.1598716], [9.1739360, 49.1602824], [9.1741730, 49.1607178], [9.1745119, 49.1609818], [9.1748540, 49.1612409], [9.1754507, 49.1616375], [9.1759687, 49.1619709], [9.1763756, 49.1622291]], [[9.1731183, 49.1612161], [9.1732101, 49.1611559], [9.1737037, 49.1608993], [9.1741730, 49.1607178]], [[9.1730441, 49.1588785], [9.1732150, 49.1589304], [9.1733952, 49.1586534]], [[9.1734577, 49.1593135], [9.1726771, 49.1593127], [9.1726407, 49.1593470]], [[9.1763756, 49.1622291], [9.1764562, 49.1622697], [9.1765132, 49.1622920], [9.1767058, 49.1623673], [9.1767463, 49.1623831], [9.1769553, 49.1624603], [9.1769765, 49.1624681], [9.1774424, 49.1626028], [9.1779539, 49.1627388], [9.1779920, 49.1627489]], [[9.1735070, 49.1591953], [9.1741199, 49.1592618]], [[9.1734464, 49.1595010], [9.1729723, 49.1595211], [9.1729822, 49.1596446]], [[9.1736266, 49.1589114], [9.1739696, 49.1589916]], [[9.1735587, 49.1597625], [9.1740160, 49.1596705], [9.1739308, 49.1594314]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Riegrafstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1876930, 49.1372874], [9.1876080, 49.1372507], [9.1868836, 49.1371093], [9.1861616, 49.1369765], [9.1860585, 49.1369567], [9.1848597, 49.1367262], [9.1849927, 49.1364740]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Rieslingstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2313105, 49.1295148], [9.2314541, 49.1295379], [9.2315410, 49.1295558], [9.2317369, 49.1296361], [9.2317576, 49.1296446], [9.2319060, 49.1297078], [9.2322125, 49.1298418], [9.2322638, 49.1298642], [9.2324340, 49.1299422], [9.2327667, 49.1300983], [9.2330114, 49.1302176], [9.2332683, 49.1303438], [9.2333402, 49.1303742], [9.2335633, 49.1304733], [9.2345197, 49.1309019], [9.2346184, 49.1309541], [9.2346948, 49.1310101], [9.2347317, 49.1310567], [9.2347550, 49.1310950], [9.2347796, 49.1311824]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Rilkestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1392840, 49.1890113], [9.1390464, 49.1900056], [9.1390278, 49.1900998], [9.1389644, 49.1904206], [9.1389532, 49.1904725]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Ringstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1419509, 49.1902697], [9.1418966, 49.1905851], [9.1418905, 49.1906810], [9.1419386, 49.1907464], [9.1421103, 49.1908851], [9.1422442, 49.1910241], [9.1422901, 49.1911049], [9.1423247, 49.1911872], [9.1423471, 49.1912767], [9.1423491, 49.1913681], [9.1423186, 49.1914619], [9.1422705, 49.1915554], [9.1422051, 49.1916466], [9.1421354, 49.1917108], [9.1420352, 49.1917817], [9.1419483, 49.1918275], [9.1418324, 49.1918877], [9.1416998, 49.1919339], [9.1414804, 49.1919789], [9.1413498, 49.1919972], [9.1412079, 49.1919991], [9.1410640, 49.1919874], [9.1409498, 49.1919677], [9.1407365, 49.1919194], [9.1405488, 49.1918375], [9.1404414, 49.1917770], [9.1403233, 49.1916894], [9.1402849, 49.1916334], [9.1402555, 49.1915531], [9.1402539, 49.1914774], [9.1402702, 49.1914134], [9.1403084, 49.1913565], [9.1404298, 49.1912272], [9.1406378, 49.1910382], [9.1406473, 49.1910296], [9.1407685, 49.1909155], [9.1408400, 49.1908506], [9.1408934, 49.1908089], [9.1409764, 49.1907673], [9.1410887, 49.1907271], [9.1412912, 49.1906921], [9.1415275, 49.1906831], [9.1417723, 49.1906773], [9.1418905, 49.1906810]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Robert-Bosch-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2081707, 49.1257444], [9.2081456, 49.1256812], [9.2081428, 49.1256696], [9.2081277, 49.1256062], [9.2081140, 49.1254815], [9.2080548, 49.1248802], [9.2080465, 49.1248246], [9.2079964, 49.1246699], [9.2079583, 49.1245795], [9.2079219, 49.1245075], [9.2078740, 49.1244154], [9.2078039, 49.1243177], [9.2077461, 49.1242425], [9.2077080, 49.1241943], [9.2075846, 49.1240487], [9.2074381, 49.1238445], [9.2072506, 49.1235809], [9.2071007, 49.1233529], [9.2070133, 49.1232319], [9.2068983, 49.1230681], [9.2068479, 49.1229965], [9.2068111, 49.1229142], [9.2067678, 49.1227948], [9.2067312, 49.1226850], [9.2067034, 49.1225846], [9.2066720, 49.1224867]], [[9.2066309, 49.1217844], [9.2066239, 49.1217161], [9.2066143, 49.1215858], [9.2065877, 49.1210116], [9.2066032, 49.1204126], [9.2066044, 49.1203647], [9.2066083, 49.1202327], [9.2065989, 49.1200773], [9.2065330, 49.1199509], [9.2061964, 49.1196522], [9.2060788, 49.1195619], [9.2060065, 49.1195064], [9.2059281, 49.1193895]], [[9.2067361, 49.1220394], [9.2067238, 49.1220756], [9.2067062, 49.1222103]], [[9.2079677, 49.1187402], [9.2079825, 49.1184565]], [[9.2059281, 49.1193895], [9.2059314, 49.1193466], [9.2059368, 49.1189218], [9.2059435, 49.1188630], [9.2059609, 49.1188050], [9.2059931, 49.1187524], [9.2060362, 49.1187031], [9.2060521, 49.1186892], [9.2061339, 49.1186383], [9.2066208, 49.1184425], [9.2066985, 49.1184153], [9.2067763, 49.1183907], [9.2068585, 49.1183719], [9.2069297, 49.1183689], [9.2070236, 49.1183628], [9.2071040, 49.1183601], [9.2071652, 49.1183598], [9.2080160, 49.1183628], [9.2088349, 49.1183680], [9.2095341, 49.1183628], [9.2096106, 49.1183610], [9.2096790, 49.1183566], [9.2097272, 49.1183470], [9.2097872, 49.1183274], [9.2098187, 49.1183110], [9.2098895, 49.1182741], [9.2099794, 49.1182175], [9.2101805, 49.1180828], [9.2102154, 49.1180389], [9.2102355, 49.1179959], [9.2102409, 49.1179213], [9.2102373, 49.1175473], [9.2102333, 49.1172399], [9.2102348, 49.1171686], [9.2102320, 49.1170694], [9.2102226, 49.1168740], [9.2102110, 49.1167516]], [[9.2066720, 49.1224867], [9.2066014, 49.1220775], [9.2066103, 49.1220524]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Robert-Koch-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2435090, 49.1340550], [9.2436040, 49.1340162], [9.2438035, 49.1338010], [9.2438375, 49.1337494], [9.2438439, 49.1337125], [9.2438388, 49.1336679], [9.2438059, 49.1336231], [9.2437479, 49.1335898], [9.2435304, 49.1335476], [9.2429357, 49.1334729]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Robert-Mayer-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2404942, 49.1437302], [9.2415402, 49.1440222], [9.2419493, 49.1442007], [9.2422141, 49.1443579], [9.2425454, 49.1445890], [9.2426652, 49.1447024], [9.2427500, 49.1448156], [9.2428254, 49.1449197], [9.2428571, 49.1450251], [9.2428866, 49.1451044], [9.2428870, 49.1451983], [9.2428573, 49.1453257], [9.2428089, 49.1453941], [9.2427225, 49.1454441], [9.2426421, 49.1454686], [9.2425514, 49.1454742], [9.2423544, 49.1454539], [9.2419879, 49.1453714], [9.2415899, 49.1453613], [9.2413108, 49.1454094], [9.2410425, 49.1454816], [9.2398945, 49.1457806], [9.2396668, 49.1458537], [9.2394526, 49.1459420], [9.2386298, 49.1462854], [9.2379798, 49.1465100], [9.2376118, 49.1467030], [9.2371611, 49.1470020], [9.2370461, 49.1471383]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Robert-Stolz-Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1842774, 49.1296150], [9.1843401, 49.1293703], [9.1843561, 49.1292844], [9.1844013, 49.1290411]], [[9.1844013, 49.1290411], [9.1843440, 49.1289793], [9.1840544, 49.1284891], [9.1840656, 49.1284339], [9.1841046, 49.1283845], [9.1840903, 49.1283086], [9.1838287, 49.1278387], [9.1838474, 49.1278031], [9.1840085, 49.1277663], [9.1838398, 49.1274611], [9.1837463, 49.1274023], [9.1834389, 49.1268380]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Rolandstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2016857, 49.1716294], [9.2010264, 49.1716470], [9.2006605, 49.1716655], [9.2006349, 49.1713298], [9.2006130, 49.1710784], [9.2005938, 49.1708464], [9.2005683, 49.1706076], [9.2005460, 49.1703521]], [[9.2005738, 49.1719748], [9.2006083, 49.1719118], [9.2006209, 49.1718793], [9.2006133, 49.1718358], [9.2006041, 49.1717576], [9.2006319, 49.1716959], [9.2006605, 49.1716655]], [[9.2005938, 49.1708464], [9.2010982, 49.1708261]], [[9.2006130, 49.1710784], [9.2010935, 49.1710491], [9.2010788, 49.1708776]], [[9.2005683, 49.1706076], [9.2009297, 49.1705940], [9.2009364, 49.1706448]], [[9.2010264, 49.1716470], [9.2010078, 49.1713985]], [[9.2006349, 49.1713298], [9.2009822, 49.1713120], [9.2010234, 49.1712386]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Rollwagstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2147000, 49.1397440], [9.2144898, 49.1398246]], [[9.2191560, 49.1389197], [9.2193266, 49.1386425], [9.2193898, 49.1385364]], [[9.2157425, 49.1389310], [9.2149260, 49.1395965]], [[9.2158389, 49.1389163], [9.2158334, 49.1389275], [9.2158221, 49.1389371], [9.2158101, 49.1389424], [9.2157924, 49.1389459], [9.2157740, 49.1389452], [9.2157635, 49.1389427], [9.2157529, 49.1389390], [9.2157425, 49.1389310], [9.2157349, 49.1389200], [9.2157332, 49.1389110], [9.2157405, 49.1388937], [9.2157525, 49.1388846], [9.2157774, 49.1388771], [9.2157958, 49.1388771], [9.2158081, 49.1388796], [9.2158234, 49.1388864], [9.2158344, 49.1388965], [9.2158393, 49.1389081], [9.2158389, 49.1389163]], [[9.2149260, 49.1395965], [9.2147000, 49.1397440]], [[9.2191560, 49.1389197], [9.2191255, 49.1389423], [9.2190387, 49.1389956], [9.2188898, 49.1390303], [9.2187322, 49.1390300]], [[9.2187322, 49.1390300], [9.2178971, 49.1389860], [9.2173357, 49.1389607], [9.2166883, 49.1389435], [9.2166648, 49.1389431], [9.2159600, 49.1389117], [9.2158389, 49.1389163]], [[9.2197599, 49.1387043], [9.2194597, 49.1387189], [9.2193630, 49.1387375], [9.2192950, 49.1387818], [9.2191560, 49.1389197]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Rombachstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1871250, 49.1343922], [9.1876681, 49.1351220], [9.1877830, 49.1351400], [9.1884855, 49.1352487], [9.1885695, 49.1352436], [9.1885926, 49.1352179], [9.1887797, 49.1346923]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Roseggerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2277733, 49.1344284], [9.2278093, 49.1344211], [9.2281116, 49.1344037], [9.2287328, 49.1343957]], [[9.2267482, 49.1344706], [9.2272083, 49.1344480], [9.2272954, 49.1344117], [9.2277245, 49.1343961], [9.2277733, 49.1344284]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Rosenau" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2146681, 49.1365781], [9.2151763, 49.1364328], [9.2153671, 49.1363843]], [[9.2153671, 49.1363843], [9.2153988, 49.1364304], [9.2155734, 49.1367085], [9.2165047, 49.1365129]], [[9.2154288, 49.1368732], [9.2153972, 49.1368181], [9.2151763, 49.1364328], [9.2149564, 49.1360492]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Rosenbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2157774, 49.1388771], [9.2157484, 49.1386510], [9.2157367, 49.1385600], [9.2157164, 49.1384769], [9.2156334, 49.1380934], [9.2151251, 49.1373171], [9.2146681, 49.1365781], [9.2145547, 49.1363914]], [[9.2143189, 49.1360152], [9.2142721, 49.1359113]], [[9.2145547, 49.1363914], [9.2143724, 49.1360912], [9.2143189, 49.1360152]], [[9.2142721, 49.1359113], [9.2142111, 49.1357982], [9.2141243, 49.1356143], [9.2139505, 49.1352456], [9.2138568, 49.1350471], [9.2137080, 49.1347404], [9.2130095, 49.1333542], [9.2129886, 49.1333087], [9.2129588, 49.1332441]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Rosengartstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2448992, 49.1437701], [9.2447893, 49.1436943], [9.2444344, 49.1432834], [9.2444076, 49.1432259], [9.2444126, 49.1431973], [9.2444159, 49.1431782], [9.2444634, 49.1431332], [9.2448038, 49.1430269], [9.2451292, 49.1429314], [9.2452415, 49.1429088], [9.2453767, 49.1428817], [9.2458041, 49.1428302], [9.2458953, 49.1428058], [9.2459555, 49.1427699], [9.2459575, 49.1427192], [9.2459610, 49.1426420], [9.2458875, 49.1424095], [9.2458045, 49.1422331]], [[9.2459555, 49.1427699], [9.2462476, 49.1433391], [9.2462663, 49.1434115], [9.2462395, 49.1434466]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Rosengasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2181832, 49.1426902], [9.2180442, 49.1427238], [9.2172321, 49.1429203]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Rosenheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1674594, 49.1623210], [9.1674569, 49.1623466], [9.1678093, 49.1629087], [9.1678192, 49.1629946], [9.1678822, 49.1637139], [9.1679056, 49.1639912]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Rosenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1974786, 49.1660932], [9.1968734, 49.1661672], [9.1965487, 49.1662064], [9.1960959, 49.1662313], [9.1957996, 49.1662363], [9.1954998, 49.1662342], [9.1952016, 49.1662173], [9.1948831, 49.1661739], [9.1945380, 49.1661076], [9.1944961, 49.1660648]], [[9.1960959, 49.1662313], [9.1960849, 49.1659434]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Rosenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1410930, 49.1901217], [9.1412262, 49.1898730], [9.1412743, 49.1898176], [9.1413087, 49.1897867], [9.1413631, 49.1897541], [9.1414177, 49.1897278], [9.1414782, 49.1897055], [9.1415648, 49.1896931], [9.1416621, 49.1896895], [9.1417899, 49.1896931], [9.1424364, 49.1897466], [9.1424704, 49.1897564], [9.1425081, 49.1897760], [9.1425531, 49.1898205]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Rothenburger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2366132, 49.1299391], [9.2366885, 49.1299913], [9.2367372, 49.1300579], [9.2367805, 49.1301417], [9.2368466, 49.1304078], [9.2369067, 49.1307297], [9.2369698, 49.1309495], [9.2370394, 49.1311496], [9.2370361, 49.1311871], [9.2370118, 49.1312213]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Roßkampffstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2094749, 49.1421274], [9.2096033, 49.1420654], [9.2114091, 49.1412059]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Römerhof" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1783669, 49.1185193], [9.1784184, 49.1181779], [9.1783792, 49.1181423], [9.1773891, 49.1179846], [9.1766334, 49.1178557]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Römerpfad" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1791379, 49.1177798], [9.1792887, 49.1175948]], [[9.1792887, 49.1175948], [9.1793007, 49.1175431], [9.1795476, 49.1172739]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Römerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1974964, 49.1655731], [9.1973352, 49.1655024], [9.1972717, 49.1654357], [9.1972575, 49.1653405], [9.1973013, 49.1652676], [9.1973436, 49.1651854], [9.1973445, 49.1651170], [9.1972938, 49.1648632], [9.1972479, 49.1646337], [9.1972378, 49.1641970], [9.1972566, 49.1638688], [9.1972670, 49.1635975], [9.1966978, 49.1634741], [9.1961099, 49.1633525]], [[9.1975004, 49.1677788], [9.1975386, 49.1678683]], [[9.1975386, 49.1678683], [9.1975568, 49.1679111], [9.1976861, 49.1681626], [9.1977253, 49.1682898]], [[9.1944570, 49.1561135], [9.1943465, 49.1561953], [9.1940438, 49.1564881], [9.1940083, 49.1565342], [9.1939495, 49.1566166], [9.1937311, 49.1569416], [9.1936499, 49.1571974], [9.1936384, 49.1574590], [9.1936907, 49.1576943], [9.1937267, 49.1578119], [9.1937843, 49.1579127], [9.1938233, 49.1579738], [9.1940643, 49.1582599], [9.1943099, 49.1584479], [9.1945763, 49.1586039], [9.1951225, 49.1588461], [9.1953044, 49.1589306], [9.1963815, 49.1594105], [9.1967471, 49.1595911], [9.1969016, 49.1596713], [9.1971214, 49.1597977], [9.1972127, 49.1598565], [9.1973562, 49.1599699], [9.1974923, 49.1600903], [9.1976072, 49.1602149], [9.1978036, 49.1604610], [9.1979584, 49.1607078], [9.1980172, 49.1608512]], [[9.1974786, 49.1660932], [9.1974777, 49.1662215], [9.1974772, 49.1662475], [9.1974678, 49.1667572], [9.1974614, 49.1671162], [9.1974559, 49.1673741]], [[9.1974614, 49.1671162], [9.1969461, 49.1671125]], [[9.1974559, 49.1673741], [9.1974535, 49.1674994], [9.1974632, 49.1676217], [9.1974880, 49.1677458]], [[9.1974880, 49.1677458], [9.1975004, 49.1677788]], [[9.1967259, 49.1524181], [9.1967276, 49.1523359], [9.1967356, 49.1522283]], [[9.1978870, 49.1620757], [9.1977709, 49.1625483], [9.1977256, 49.1627415], [9.1975940, 49.1632303], [9.1974542, 49.1639277], [9.1974384, 49.1641993], [9.1974683, 49.1647978], [9.1974888, 49.1651618], [9.1974964, 49.1655731], [9.1974807, 49.1660326]], [[9.1944570, 49.1561135], [9.1946434, 49.1560037], [9.1947289, 49.1559555], [9.1951786, 49.1557345], [9.1952105, 49.1557197], [9.1955132, 49.1555793], [9.1959242, 49.1553591], [9.1961959, 49.1551494], [9.1963042, 49.1550113], [9.1964067, 49.1548736], [9.1964947, 49.1546316], [9.1965363, 49.1544465], [9.1966082, 49.1539632], [9.1966763, 49.1534039]], [[9.1974807, 49.1660326], [9.1974797, 49.1660621], [9.1974786, 49.1660932]], [[9.1980172, 49.1608512], [9.1980817, 49.1611376], [9.1980709, 49.1613932], [9.1980034, 49.1616509], [9.1978870, 49.1620757]], [[9.1967993, 49.1526322], [9.1967247, 49.1532738], [9.1966763, 49.1534039]], [[9.1968542, 49.1522309], [9.1968427, 49.1523415], [9.1968284, 49.1524227], [9.1967993, 49.1526322]], [[9.1966763, 49.1534039], [9.1966305, 49.1532451], [9.1967058, 49.1526919], [9.1967107, 49.1526358], [9.1967259, 49.1524181]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Römerweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1710404, 49.1626583], [9.1713995, 49.1627504], [9.1719215, 49.1628837], [9.1725802, 49.1630519]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Röntgenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2409983, 49.1351999], [9.2411490, 49.1355894], [9.2412919, 49.1359552]], [[9.2412919, 49.1359552], [9.2417203, 49.1370482], [9.2417956, 49.1371157]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Rötelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2186812, 49.1707903], [9.2192850, 49.1708307]], [[9.2206691, 49.1709294], [9.2208102, 49.1708793], [9.2208703, 49.1708456], [9.2209132, 49.1707951], [9.2210076, 49.1706100]], [[9.2187642, 49.1703598], [9.2187935, 49.1705972], [9.2188112, 49.1706597], [9.2188501, 49.1707211], [9.2189599, 49.1707720], [9.2192850, 49.1708307]], [[9.2193368, 49.1708342], [9.2190921, 49.1708512], [9.2189018, 49.1708547], [9.2188239, 49.1708646], [9.2187797, 49.1708935], [9.2187080, 49.1709525], [9.2186135, 49.1711211]], [[9.2192850, 49.1708307], [9.2193368, 49.1708342], [9.2200234, 49.1708802], [9.2202750, 49.1708970], [9.2204668, 49.1709110], [9.2206691, 49.1709294], [9.2208587, 49.1709495]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Rudolf-Harbig-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1170040, 49.1847096], [9.1165460, 49.1836558]], [[9.1165460, 49.1836558], [9.1162265, 49.1829485]], [[9.1162265, 49.1829485], [9.1167410, 49.1828508], [9.1176131, 49.1826960], [9.1179167, 49.1826705], [9.1181146, 49.1826475], [9.1183310, 49.1826013], [9.1184127, 49.1825680], [9.1184875, 49.1825492], [9.1188238, 49.1824797], [9.1192555, 49.1823954]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Rundstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2243191, 49.1520024], [9.2262938, 49.1516633]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Rückertstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2240762, 49.1507714], [9.2240478, 49.1507584], [9.2240300, 49.1507330], [9.2240077, 49.1505392], [9.2239144, 49.1497320]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Rühlingshäuser Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1543063, 49.1212298], [9.1536801, 49.1212464], [9.1535964, 49.1212467], [9.1526492, 49.1212458], [9.1524327, 49.1212457]], [[9.1527127, 49.1220624], [9.1527839, 49.1221197], [9.1528850, 49.1221658], [9.1530929, 49.1221933], [9.1537187, 49.1222236], [9.1545431, 49.1222802]], [[9.1545853, 49.1224335], [9.1545431, 49.1222802], [9.1543063, 49.1212298]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Saarbrückener Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1788388, 49.1530951], [9.1788526, 49.1522727]], [[9.1788526, 49.1522727], [9.1793995, 49.1522664]], [[9.1736983, 49.1575226], [9.1735804, 49.1576194]], [[9.1735804, 49.1576194], [9.1728665, 49.1582590], [9.1726228, 49.1584105], [9.1725083, 49.1584793], [9.1724393, 49.1585298]], [[9.1757673, 49.1556558], [9.1752919, 49.1560738], [9.1749355, 49.1563965], [9.1749074, 49.1564236], [9.1748069, 49.1565206]], [[9.1764087, 49.1548875], [9.1762868, 49.1550679], [9.1762144, 49.1551750], [9.1760949, 49.1553324], [9.1759761, 49.1554680], [9.1757673, 49.1556558]], [[9.1748069, 49.1565206], [9.1742952, 49.1569929], [9.1741640, 49.1571183], [9.1740382, 49.1572263], [9.1739481, 49.1573067], [9.1738882, 49.1573611], [9.1737416, 49.1574865], [9.1736983, 49.1575226]], [[9.1749074, 49.1564236], [9.1751310, 49.1565183], [9.1752290, 49.1565017], [9.1753032, 49.1564993], [9.1753395, 49.1565112], [9.1754327, 49.1566259]], [[9.1786025, 49.1515022], [9.1784196, 49.1516360], [9.1782470, 49.1517993], [9.1781582, 49.1519197], [9.1780953, 49.1520473], [9.1780254, 49.1522325], [9.1778982, 49.1526091], [9.1778242, 49.1527862], [9.1777315, 49.1529721], [9.1770753, 49.1539332], [9.1764388, 49.1548446], [9.1764087, 49.1548875]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Saarlandstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1786025, 49.1515022], [9.1786593, 49.1514518], [9.1787421, 49.1513901], [9.1788481, 49.1513413], [9.1790530, 49.1512724]], [[9.2018832, 49.1521311], [9.2015580, 49.1521912], [9.2013301, 49.1522148], [9.2010012, 49.1522995]], [[9.2002076, 49.1525314], [9.1997647, 49.1525610]], [[9.1996559, 49.1519179], [9.1998015, 49.1518946], [9.2000431, 49.1518850], [9.2002265, 49.1518976]], [[9.2002265, 49.1518976], [9.2003750, 49.1519307]], [[9.2020677, 49.1521180], [9.2018832, 49.1521311]], [[9.1857218, 49.1513640], [9.1866753, 49.1514240], [9.1876061, 49.1514956]], [[9.1876061, 49.1514956], [9.1883582, 49.1515684], [9.1889245, 49.1516294], [9.1894706, 49.1517030], [9.1905484, 49.1518392], [9.1908833, 49.1518848], [9.1911085, 49.1519098], [9.1924577, 49.1520320], [9.1930030, 49.1520634], [9.1942053, 49.1521323], [9.1947857, 49.1521625], [9.1954903, 49.1521836]], [[9.2004310, 49.1524849], [9.2002076, 49.1525314]], [[9.1995020, 49.1525507], [9.1993546, 49.1525267], [9.1990222, 49.1524634]], [[9.1994192, 49.1519637], [9.1996559, 49.1519179]], [[9.1997647, 49.1525610], [9.1995020, 49.1525507]], [[9.1967356, 49.1522283], [9.1968542, 49.1522309]], [[9.1973187, 49.1522371], [9.1979443, 49.1522476], [9.1982055, 49.1522557], [9.1985898, 49.1522047], [9.1988041, 49.1521427]], [[9.1794344, 49.1511966], [9.1795579, 49.1511808]], [[9.1857130, 49.1514207], [9.1854355, 49.1514053], [9.1850356, 49.1513846], [9.1831753, 49.1513011], [9.1818841, 49.1512576], [9.1816870, 49.1512521], [9.1807602, 49.1512285], [9.1803917, 49.1512193], [9.1799767, 49.1512145], [9.1796911, 49.1512199], [9.1795665, 49.1512313]], [[9.1875955, 49.1515570], [9.1866524, 49.1514793], [9.1857130, 49.1514207]], [[9.1977772, 49.1523622], [9.1969832, 49.1523431], [9.1968427, 49.1523415], [9.1967276, 49.1523359]], [[9.1790530, 49.1512724], [9.1792540, 49.1512232], [9.1794344, 49.1511966]], [[9.1795665, 49.1512313], [9.1794559, 49.1512450], [9.1792375, 49.1512763], [9.1790049, 49.1513365], [9.1787581, 49.1514385], [9.1786025, 49.1515022]], [[9.1967276, 49.1523359], [9.1965597, 49.1523287], [9.1963418, 49.1523128], [9.1961133, 49.1523022], [9.1951395, 49.1522437], [9.1944177, 49.1522033], [9.1932995, 49.1521463], [9.1926511, 49.1521029], [9.1919889, 49.1520549], [9.1916740, 49.1520238], [9.1911348, 49.1519664], [9.1906660, 49.1519165], [9.1905344, 49.1519000], [9.1899272, 49.1518263], [9.1895264, 49.1517659], [9.1889506, 49.1516915], [9.1886459, 49.1516551], [9.1879858, 49.1515937], [9.1876810, 49.1515651], [9.1875955, 49.1515570]], [[9.2010012, 49.1522995], [9.2008361, 49.1523463], [9.2006261, 49.1524333], [9.2004310, 49.1524849]], [[9.1990222, 49.1524634], [9.1988806, 49.1524364], [9.1987508, 49.1524126], [9.1982967, 49.1523751]], [[9.2003750, 49.1519307], [9.2005371, 49.1519610], [9.2006901, 49.1519906], [9.2008412, 49.1520190], [9.2013160, 49.1520860], [9.2018832, 49.1521311]], [[9.1982967, 49.1523751], [9.1977772, 49.1523622]], [[9.1968542, 49.1522309], [9.1970277, 49.1522323], [9.1973187, 49.1522371]], [[9.1954903, 49.1521836], [9.1965649, 49.1522216], [9.1967356, 49.1522283]], [[9.1988041, 49.1521427], [9.1991884, 49.1520237], [9.1992816, 49.1519930], [9.1994192, 49.1519637]], [[9.1795579, 49.1511808], [9.1796898, 49.1511666], [9.1799423, 49.1511569], [9.1806380, 49.1511661], [9.1818867, 49.1511976], [9.1819404, 49.1511989], [9.1833534, 49.1512481], [9.1847221, 49.1513082], [9.1854436, 49.1513490], [9.1857218, 49.1513640]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Sachsenäckerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1980172, 49.1608512], [9.1982728, 49.1608462], [9.1987908, 49.1608535], [9.1988188, 49.1608541], [9.1991238, 49.1608591], [9.1993783, 49.1608650], [9.1995387, 49.1608734], [9.1997568, 49.1608880], [9.1998871, 49.1609003], [9.2000977, 49.1609378], [9.2003044, 49.1609928], [9.2004319, 49.1610396], [9.2005821, 49.1611048], [9.2006662, 49.1611580], [9.2007293, 49.1612339], [9.2007922, 49.1613389], [9.2008264, 49.1613996], [9.2009187, 49.1616445], [9.2009403, 49.1617192], [9.2009964, 49.1619111], [9.2010566, 49.1621449], [9.2010634, 49.1621782]], [[9.2010634, 49.1621782], [9.2013861, 49.1621118]], [[9.2009964, 49.1619111], [9.2012863, 49.1618535]], [[9.2009187, 49.1616445], [9.2011702, 49.1615940]], [[9.2011140, 49.1625754], [9.2003838, 49.1626123]], [[9.2002477, 49.1617999], [9.2002040, 49.1618050]], [[9.2005033, 49.1617698], [9.2004342, 49.1617780]], [[9.2004342, 49.1617780], [9.2002477, 49.1617999]], [[9.2009403, 49.1617192], [9.2007469, 49.1617412], [9.2005033, 49.1617698]], [[9.1998743, 49.1622449], [9.2009660, 49.1621551], [9.2010566, 49.1621449]], [[9.2000763, 49.1614473], [9.2001349, 49.1614397]], [[9.2001349, 49.1614397], [9.2006453, 49.1613640], [9.2007922, 49.1613389]], [[9.1997341, 49.1614794], [9.1999548, 49.1614430], [9.1999609, 49.1614643], [9.2000763, 49.1614473]], [[9.2002040, 49.1618050], [9.1997553, 49.1618660]], [[9.1999355, 49.1625964], [9.2000183, 49.1626102], [9.2003544, 49.1626097], [9.2003838, 49.1626123]], [[9.2010634, 49.1621782], [9.2010827, 49.1623351], [9.2011045, 49.1624945], [9.2011140, 49.1625754], [9.2011159, 49.1625933], [9.2011253, 49.1626842], [9.2011407, 49.1628790], [9.2011033, 49.1631396], [9.2010963, 49.1631670], [9.2010333, 49.1633118], [9.2009796, 49.1633756], [9.2009011, 49.1634215]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Salzburger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1927824, 49.1434029], [9.1929240, 49.1438896], [9.1930658, 49.1443611]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Salzgrund" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2138242, 49.1663654], [9.2137255, 49.1663848], [9.2135475, 49.1664156], [9.2132855, 49.1664993], [9.2132562, 49.1665087], [9.2129826, 49.1666161], [9.2127459, 49.1667090], [9.2116914, 49.1671229], [9.2107542, 49.1675656], [9.2111026, 49.1680299], [9.2112762, 49.1682669]], [[9.2127459, 49.1667090], [9.2118696, 49.1664897], [9.2115239, 49.1663949], [9.2107923, 49.1661943]], [[9.2115239, 49.1663949], [9.2119934, 49.1656682], [9.2120400, 49.1655954], [9.2129367, 49.1643234], [9.2130503, 49.1641305], [9.2124911, 49.1639482], [9.2124674, 49.1639217], [9.2124163, 49.1638151], [9.2124815, 49.1637195], [9.2131144, 49.1630051], [9.2131414, 49.1629479], [9.2130890, 49.1628980], [9.2130255, 49.1628833], [9.2129489, 49.1628844], [9.2126282, 49.1629136], [9.2114273, 49.1629770], [9.2113494, 49.1629438]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Salzgrundstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2142656, 49.1663750], [9.2139126, 49.1663880], [9.2138242, 49.1663654], [9.2137666, 49.1663139], [9.2137456, 49.1662424], [9.2138041, 49.1653046], [9.2138311, 49.1647705], [9.2138396, 49.1646037], [9.2138563, 49.1642739], [9.2138949, 49.1638830]], [[9.2149802, 49.1621774], [9.2150479, 49.1621564], [9.2151162, 49.1621407], [9.2152476, 49.1621223]], [[9.2138311, 49.1647705], [9.2144846, 49.1647136], [9.2145076, 49.1642508], [9.2138563, 49.1642739]], [[9.2146179, 49.1697100], [9.2146093, 49.1696073], [9.2144616, 49.1681752], [9.2144437, 49.1678411], [9.2142656, 49.1663750]], [[9.2138949, 49.1638830], [9.2138953, 49.1638577], [9.2139230, 49.1637239], [9.2140871, 49.1633566], [9.2141842, 49.1631566], [9.2142792, 49.1630152], [9.2146149, 49.1625924], [9.2146874, 49.1625064], [9.2148260, 49.1623259], [9.2149031, 49.1622258], [9.2149802, 49.1621774]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Salzstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2166955, 49.1694404], [9.2166815, 49.1693255]], [[9.2166955, 49.1694404], [9.2167135, 49.1695757], [9.2167603, 49.1699509], [9.2167696, 49.1700257], [9.2168201, 49.1705829], [9.2161622, 49.1706238]], [[9.2176465, 49.1541774], [9.2177170, 49.1541160], [9.2179428, 49.1539197]], [[9.2158542, 49.1582204], [9.2159177, 49.1580117], [9.2166297, 49.1551020], [9.2166946, 49.1549821], [9.2168511, 49.1547606], [9.2168673, 49.1547348]], [[9.2158542, 49.1582204], [9.2158923, 49.1582368], [9.2159330, 49.1582826], [9.2159305, 49.1583305], [9.2159143, 49.1583530], [9.2158875, 49.1583729], [9.2158429, 49.1583896], [9.2158010, 49.1583945], [9.2157351, 49.1583849], [9.2156748, 49.1583465], [9.2156586, 49.1583092], [9.2156671, 49.1582718], [9.2157265, 49.1582252], [9.2157881, 49.1582127], [9.2158542, 49.1582204]], [[9.2174106, 49.1548458], [9.2171750, 49.1548903], [9.2168757, 49.1549468], [9.2166946, 49.1549821]], [[9.2166815, 49.1693255], [9.2166702, 49.1692007], [9.2163745, 49.1664704], [9.2163514, 49.1662696]], [[9.2173835, 49.1543508], [9.2172518, 49.1544058], [9.2171983, 49.1544387], [9.2168673, 49.1547348]], [[9.2179428, 49.1539197], [9.2181741, 49.1537211], [9.2189883, 49.1530452], [9.2196053, 49.1525216], [9.2197784, 49.1523586], [9.2199115, 49.1521995]], [[9.2163514, 49.1662696], [9.2163223, 49.1659744], [9.2162217, 49.1650850], [9.2161450, 49.1647950], [9.2157577, 49.1636637], [9.2157146, 49.1635376], [9.2157056, 49.1634953], [9.2152476, 49.1621223], [9.2151920, 49.1619479], [9.2151459, 49.1616194], [9.2151400, 49.1614429], [9.2151829, 49.1611904], [9.2152138, 49.1610582], [9.2152773, 49.1608143], [9.2153216, 49.1606268], [9.2154935, 49.1598406], [9.2155892, 49.1594435], [9.2156476, 49.1592008], [9.2157322, 49.1588498], [9.2158010, 49.1583945]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Sandbergsteige" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2410774, 49.1328269], [9.2411863, 49.1326967], [9.2412507, 49.1325931], [9.2412566, 49.1325810], [9.2412990, 49.1324931], [9.2413526, 49.1323825], [9.2413848, 49.1322667], [9.2414332, 49.1321061], [9.2414989, 49.1316452], [9.2415516, 49.1315053], [9.2416254, 49.1313569], [9.2417650, 49.1311447], [9.2418922, 49.1309693], [9.2419521, 49.1308868]], [[9.2419521, 49.1308868], [9.2420304, 49.1304695], [9.2421626, 49.1300598]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Sandgrubenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1739750, 49.1144184], [9.1740413, 49.1141830]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Sankt-Alban-Gassen" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1105829, 49.1844097], [9.1109386, 49.1842118], [9.1110375, 49.1841287], [9.1113007, 49.1840168], [9.1117445, 49.1838673]], [[9.1109386, 49.1842118], [9.1110521, 49.1843667], [9.1112940, 49.1846297]], [[9.1111551, 49.1833994], [9.1108441, 49.1834589], [9.1106970, 49.1835128]], [[9.1100263, 49.1833007], [9.1104784, 49.1835603], [9.1108049, 49.1837646], [9.1108767, 49.1838629], [9.1109996, 49.1840529], [9.1110375, 49.1841287]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schaeuffelenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2215760, 49.1497083], [9.2215481, 49.1496960], [9.2214940, 49.1496722], [9.2214089, 49.1496349], [9.2212578, 49.1495684], [9.2209667, 49.1494299], [9.2208914, 49.1493976], [9.2199794, 49.1489619], [9.2196973, 49.1487948], [9.2195423, 49.1486765], [9.2193808, 49.1485058], [9.2193097, 49.1484160], [9.2192387, 49.1482762], [9.2191662, 49.1480864], [9.2190402, 49.1475164], [9.2189154, 49.1470371], [9.2186926, 49.1464654], [9.2186723, 49.1463646]], [[9.2217470, 49.1497766], [9.2215760, 49.1497083]], [[9.2186723, 49.1463646], [9.2186441, 49.1462480]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schafberg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1830530, 49.1352287], [9.1830898, 49.1351405], [9.1832404, 49.1350385], [9.1833657, 49.1350289], [9.1834948, 49.1350430], [9.1853238, 49.1353509], [9.1859704, 49.1354848]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schafhausstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1694498, 49.1561445], [9.1695742, 49.1560220]], [[9.1695742, 49.1560220], [9.1695859, 49.1560067], [9.1697175, 49.1557572], [9.1698103, 49.1555800], [9.1698476, 49.1555305]], [[9.1689799, 49.1570255], [9.1690816, 49.1567304], [9.1690939, 49.1566946], [9.1691328, 49.1565817], [9.1692704, 49.1563373], [9.1694498, 49.1561445]], [[9.1680767, 49.1585847], [9.1682409, 49.1581537], [9.1683657, 49.1579262], [9.1684290, 49.1578077], [9.1686505, 49.1574305], [9.1688846, 49.1570092]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schäfergasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2204106, 49.1447453], [9.2204286, 49.1450481], [9.2204340, 49.1452478], [9.2204258, 49.1452650], [9.2203990, 49.1452807], [9.2203464, 49.1452891], [9.2197415, 49.1453357], [9.2193843, 49.1453660], [9.2185683, 49.1454626], [9.2184872, 49.1454777]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Scheidemannstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1999526, 49.1581269], [9.2019509, 49.1581486]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schellengasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2209096, 49.1446109], [9.2211571, 49.1446054]], [[9.2211571, 49.1446054], [9.2217588, 49.1445412], [9.2221344, 49.1444899], [9.2222768, 49.1444728], [9.2223628, 49.1444615], [9.2227694, 49.1444086], [9.2228362, 49.1443996], [9.2229287, 49.1443856]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schellingstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2238976, 49.1342283], [9.2238842, 49.1341626]], [[9.2238976, 49.1342283], [9.2239879, 49.1347068], [9.2240147, 49.1348482], [9.2241060, 49.1353320], [9.2241580, 49.1355831], [9.2241763, 49.1356253], [9.2242131, 49.1356589]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Scherweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2268086, 49.1349093], [9.2278219, 49.1348654], [9.2284667, 49.1348280]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schickhardtstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2289608, 49.1551975], [9.2295874, 49.1554838]], [[9.2294949, 49.1546845], [9.2301876, 49.1550199]], [[9.2283588, 49.1557059], [9.2284261, 49.1556960], [9.2284786, 49.1556677], [9.2286263, 49.1555161], [9.2287225, 49.1554239], [9.2289608, 49.1551975], [9.2292046, 49.1549629], [9.2294949, 49.1546845], [9.2296775, 49.1545285], [9.2298657, 49.1543911], [9.2300933, 49.1542234], [9.2301960, 49.1541658], [9.2302430, 49.1541410], [9.2303672, 49.1540791], [9.2306263, 49.1539512], [9.2309318, 49.1538198], [9.2313504, 49.1536514], [9.2317964, 49.1534750], [9.2320043, 49.1533992], [9.2321752, 49.1533173], [9.2324646, 49.1531560], [9.2327198, 49.1530077], [9.2329467, 49.1528851], [9.2331209, 49.1528082], [9.2332646, 49.1527541], [9.2334909, 49.1526890], [9.2336969, 49.1526387], [9.2339526, 49.1525958], [9.2340714, 49.1525602], [9.2341452, 49.1525264], [9.2342099, 49.1524803], [9.2342595, 49.1524181], [9.2342855, 49.1523666], [9.2342987, 49.1523095], [9.2342975, 49.1522625], [9.2342884, 49.1522276], [9.2342625, 49.1521890]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schießhausstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2063261, 49.1400349], [9.2063263, 49.1398522], [9.2063214, 49.1392708]], [[9.2063263, 49.1398522], [9.2066495, 49.1398477]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schillerberg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1412613, 49.1943764], [9.1413502, 49.1942759], [9.1413540, 49.1942286], [9.1413236, 49.1941851], [9.1407300, 49.1938507], [9.1406784, 49.1937923], [9.1406738, 49.1937378], [9.1408431, 49.1935256], [9.1409647, 49.1933732]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schillerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2376288, 49.1432762], [9.2378302, 49.1433838]], [[9.2261061, 49.1440666], [9.2264798, 49.1440322], [9.2268635, 49.1439938], [9.2269763, 49.1439812]], [[9.2376288, 49.1432762], [9.2375837, 49.1432676], [9.2375461, 49.1432604], [9.2374898, 49.1432545], [9.2373998, 49.1432590], [9.2373136, 49.1432688]], [[9.2230437, 49.1443787], [9.2231227, 49.1443683], [9.2231880, 49.1443602], [9.2232452, 49.1443531]], [[9.2269763, 49.1439812], [9.2270059, 49.1439964], [9.2270611, 49.1440014], [9.2280557, 49.1439359], [9.2286079, 49.1439012], [9.2299475, 49.1438138]], [[9.2333685, 49.1435627], [9.2333275, 49.1434676], [9.2333041, 49.1433134], [9.2335353, 49.1432965], [9.2335032, 49.1430939], [9.2335260, 49.1430772], [9.2335099, 49.1429807], [9.2335944, 49.1429149], [9.2338885, 49.1428941]], [[9.2373136, 49.1432688], [9.2364542, 49.1433432], [9.2363488, 49.1433500], [9.2356474, 49.1433941], [9.2339984, 49.1435160], [9.2333685, 49.1435627], [9.2328188, 49.1436034], [9.2317503, 49.1436789], [9.2305637, 49.1437607], [9.2303628, 49.1437736], [9.2301193, 49.1437863]], [[9.2232452, 49.1443531], [9.2236940, 49.1443036], [9.2240493, 49.1442644], [9.2250253, 49.1441605], [9.2254732, 49.1441216], [9.2257531, 49.1440973], [9.2261061, 49.1440666]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schirrmannstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2568077, 49.1360717], [9.2570197, 49.1360801]], [[9.2576036, 49.1362405], [9.2577163, 49.1363459], [9.2578663, 49.1365632], [9.2580340, 49.1368001], [9.2581992, 49.1370859], [9.2583194, 49.1373123], [9.2583861, 49.1375020]], [[9.2570197, 49.1360801], [9.2572555, 49.1361142], [9.2574737, 49.1361799], [9.2576036, 49.1362405]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schlegelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2145719, 49.1294055], [9.2160069, 49.1292577], [9.2161139, 49.1292497], [9.2166059, 49.1291959], [9.2173711, 49.1291261], [9.2174525, 49.1291187]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schleifweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1696161, 49.1537190], [9.1689705, 49.1537406], [9.1681876, 49.1537094]], [[9.1681876, 49.1537094], [9.1682149, 49.1540510], [9.1682213, 49.1541195]], [[9.1681876, 49.1537094], [9.1678812, 49.1537019]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schleusenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1667452, 49.1172743], [9.1669535, 49.1170344], [9.1670782, 49.1168941], [9.1671331, 49.1168362], [9.1672683, 49.1167006], [9.1673526, 49.1166212], [9.1679130, 49.1161383], [9.1679553, 49.1160900], [9.1680895, 49.1159931], [9.1682293, 49.1158888], [9.1684882, 49.1156721], [9.1685488, 49.1156295]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schlizstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2538462, 49.1410856], [9.2538215, 49.1410437], [9.2537563, 49.1409953], [9.2530476, 49.1406197], [9.2528321, 49.1405290], [9.2525484, 49.1404511], [9.2523799, 49.1404196], [9.2520920, 49.1403894], [9.2517265, 49.1404231], [9.2516715, 49.1404318], [9.2510745, 49.1405269], [9.2509944, 49.1405397], [9.2506866, 49.1405736], [9.2504332, 49.1405822], [9.2502433, 49.1405887], [9.2498329, 49.1405870], [9.2495589, 49.1405714], [9.2495337, 49.1405648], [9.2488636, 49.1404909], [9.2488436, 49.1404887], [9.2486546, 49.1404711], [9.2484629, 49.1404640], [9.2480952, 49.1404642], [9.2479696, 49.1404707], [9.2476828, 49.1404855], [9.2473509, 49.1405182], [9.2469635, 49.1405592], [9.2467144, 49.1405965]], [[9.2450195, 49.1409840], [9.2448536, 49.1410354], [9.2447754, 49.1410639], [9.2446889, 49.1410955], [9.2434873, 49.1415366], [9.2431896, 49.1416607], [9.2428345, 49.1418291], [9.2425587, 49.1419907], [9.2423446, 49.1421252], [9.2419579, 49.1423927], [9.2412228, 49.1429263], [9.2408094, 49.1432302], [9.2407385, 49.1432931], [9.2406724, 49.1433606]], [[9.2467144, 49.1405965], [9.2457805, 49.1407709], [9.2454303, 49.1408542], [9.2452987, 49.1408958], [9.2450195, 49.1409840]], [[9.2406724, 49.1433606], [9.2406631, 49.1434024], [9.2406260, 49.1434796], [9.2405818, 49.1435636], [9.2404942, 49.1437302]], [[9.2403912, 49.1437055], [9.2404219, 49.1436181], [9.2404558, 49.1435556], [9.2404982, 49.1434982], [9.2406081, 49.1433972], [9.2406352, 49.1433814], [9.2406724, 49.1433606]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schlossgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1679553, 49.1160900], [9.1677217, 49.1159930], [9.1673923, 49.1159207], [9.1671290, 49.1158498], [9.1666078, 49.1157634]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Schlossplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1103698, 49.1846634], [9.1106840, 49.1845164], [9.1107654, 49.1845952]], [[9.1104859, 49.1847065], [9.1107654, 49.1845952], [9.1107879, 49.1845857], [9.1106433, 49.1844362], [9.1106222, 49.1844456], [9.1103643, 49.1845753], [9.1104859, 49.1847065]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schlossweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1565516, 49.1190487], [9.1565053, 49.1190595], [9.1557378, 49.1192394], [9.1555529, 49.1192702], [9.1555051, 49.1192770], [9.1554626, 49.1192789], [9.1548598, 49.1193009], [9.1547896, 49.1193039], [9.1547236, 49.1192974], [9.1546581, 49.1192838], [9.1545835, 49.1192731], [9.1545215, 49.1192755], [9.1544706, 49.1192963], [9.1543875, 49.1193641], [9.1543621, 49.1194108]], [[9.1565516, 49.1190487], [9.1571419, 49.1188828], [9.1574803, 49.1187604], [9.1577336, 49.1186782], [9.1581358, 49.1184419]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Schloßstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1058708, 49.1864025], [9.1051485, 49.1865127], [9.1048133, 49.1865755], [9.1046071, 49.1866362], [9.1044191, 49.1867150]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schluchterner Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1851674, 49.1434162], [9.1850942, 49.1430125], [9.1850287, 49.1425519], [9.1850627, 49.1420532]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schlüsseläckerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1496795, 49.1208016], [9.1504132, 49.1207335], [9.1517541, 49.1205997]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schlüsselgarnweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1963851, 49.1193386], [9.1954815, 49.1193859], [9.1950567, 49.1194026], [9.1949230, 49.1194079], [9.1948520, 49.1193811], [9.1947228, 49.1193358], [9.1939780, 49.1190786]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schmidbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2251445, 49.1294421], [9.2250473, 49.1294633], [9.2249518, 49.1294757], [9.2245381, 49.1295295], [9.2239686, 49.1295887], [9.2229272, 49.1297156], [9.2225329, 49.1297647], [9.2225138, 49.1297671], [9.2222106, 49.1298040], [9.2218286, 49.1298538], [9.2213025, 49.1299155], [9.2210126, 49.1299513], [9.2203687, 49.1300292], [9.2195539, 49.1301257], [9.2193094, 49.1301550], [9.2192878, 49.1301576], [9.2186804, 49.1302295], [9.2185196, 49.1302486], [9.2178820, 49.1303333], [9.2178378, 49.1303424], [9.2177337, 49.1303664]], [[9.2222106, 49.1298040], [9.2223304, 49.1302659], [9.2223549, 49.1303095], [9.2223820, 49.1303312]], [[9.2227140, 49.1305607], [9.2227461, 49.1305607], [9.2227582, 49.1305669], [9.2227649, 49.1305801], [9.2227730, 49.1307468], [9.2227703, 49.1308135], [9.2227422, 49.1309785]], [[9.2186804, 49.1302295], [9.2186692, 49.1301913], [9.2186679, 49.1301606], [9.2186934, 49.1301220], [9.2187135, 49.1300930], [9.2187188, 49.1300728], [9.2187068, 49.1299394], [9.2186022, 49.1295358], [9.2186048, 49.1295261], [9.2186183, 49.1295217], [9.2187188, 49.1295121], [9.2187240, 49.1295337]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schmollerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2234154, 49.1310247], [9.2227422, 49.1309785], [9.2219802, 49.1309261], [9.2210719, 49.1308642], [9.2195398, 49.1307561], [9.2194234, 49.1307483], [9.2190221, 49.1307288], [9.2189009, 49.1307250], [9.2187682, 49.1307253], [9.2185683, 49.1307270], [9.2184214, 49.1307300], [9.2182271, 49.1307427], [9.2180053, 49.1307650], [9.2178585, 49.1307935]], [[9.2264341, 49.1311709], [9.2263232, 49.1312068]], [[9.2263232, 49.1312068], [9.2262118, 49.1312001], [9.2260772, 49.1311920], [9.2259920, 49.1311868], [9.2246298, 49.1311046], [9.2234154, 49.1310247]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schnepfbrunnenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1697623, 49.1585164], [9.1696629, 49.1587301]], [[9.1697623, 49.1585164], [9.1698010, 49.1584458], [9.1698858, 49.1582592], [9.1699299, 49.1580755]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schoettlestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2107699, 49.1348658], [9.2107914, 49.1348342], [9.2107421, 49.1347090], [9.2108025, 49.1346880], [9.2109153, 49.1346515], [9.2110133, 49.1346162], [9.2113231, 49.1345026], [9.2114881, 49.1344453]], [[9.2106565, 49.1352758], [9.2107352, 49.1353010], [9.2107655, 49.1353289], [9.2108921, 49.1354694], [9.2109136, 49.1354896], [9.2109391, 49.1354984], [9.2109646, 49.1354984], [9.2110202, 49.1354825], [9.2111386, 49.1354374], [9.2112817, 49.1353820], [9.2117752, 49.1352096]], [[9.2112817, 49.1353820], [9.2111724, 49.1352229], [9.2111576, 49.1352000], [9.2110423, 49.1349666], [9.2110235, 49.1349377], [9.2108774, 49.1347666], [9.2108025, 49.1346880]], [[9.2138568, 49.1350471], [9.2137267, 49.1350738], [9.2133840, 49.1351430], [9.2132312, 49.1351772], [9.2131292, 49.1352027], [9.2130018, 49.1352439], [9.2128998, 49.1352814], [9.2128395, 49.1353024], [9.2127175, 49.1353475], [9.2125217, 49.1354150], [9.2124103, 49.1354527], [9.2123217, 49.1354684], [9.2122280, 49.1354767], [9.2121609, 49.1354685], [9.2121165, 49.1354624], [9.2120845, 49.1354563], [9.2120406, 49.1354457], [9.2120005, 49.1354316], [9.2119600, 49.1354137], [9.2119124, 49.1353789], [9.2117752, 49.1352096], [9.2117009, 49.1350904], [9.2116072, 49.1349532], [9.2115842, 49.1349114], [9.2115483, 49.1348099], [9.2115386, 49.1346894], [9.2115400, 49.1346165], [9.2115368, 49.1345735], [9.2115249, 49.1345368], [9.2114881, 49.1344453], [9.2114206, 49.1343305], [9.2113643, 49.1342664], [9.2111819, 49.1340453], [9.2110424, 49.1338854], [9.2109955, 49.1338252], [9.2109452, 49.1337612]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schollenhaldenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1874535, 49.1422140], [9.1873721, 49.1422740], [9.1872582, 49.1422871], [9.1868919, 49.1422495], [9.1859686, 49.1421614], [9.1850627, 49.1420532], [9.1844390, 49.1419622], [9.1838644, 49.1419055], [9.1834937, 49.1418699], [9.1828833, 49.1418082], [9.1825051, 49.1417690], [9.1823461, 49.1417540], [9.1821259, 49.1417356], [9.1814606, 49.1416995], [9.1811762, 49.1416868], [9.1808973, 49.1416668], [9.1796272, 49.1415333], [9.1795168, 49.1415249], [9.1792923, 49.1415048], [9.1775332, 49.1413204], [9.1774140, 49.1413393], [9.1773530, 49.1413818], [9.1773076, 49.1415415], [9.1773083, 49.1416994]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schongauerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2014795, 49.1647708], [9.2023248, 49.1649123], [9.2025820, 49.1649603], [9.2027111, 49.1651092], [9.2028941, 49.1651735], [9.2032668, 49.1652555], [9.2034597, 49.1652746], [9.2038291, 49.1652753], [9.2039329, 49.1652297], [9.2040385, 49.1650854], [9.2041048, 49.1649313], [9.2041190, 49.1648127], [9.2041014, 49.1647217], [9.2039144, 49.1646606], [9.2037879, 49.1646359], [9.2035693, 49.1646180], [9.2033680, 49.1645993], [9.2032054, 49.1645868], [9.2029260, 49.1646040], [9.2025820, 49.1649603]], [[9.2039144, 49.1646606], [9.2040195, 49.1642113]], [[9.2032668, 49.1652555], [9.2037879, 49.1646359]], [[9.2028941, 49.1651735], [9.2033680, 49.1645993]], [[9.2040385, 49.1650854], [9.2043968, 49.1652076], [9.2044681, 49.1650510], [9.2044765, 49.1649981]], [[9.2035693, 49.1646180], [9.2036343, 49.1641635]], [[9.2032054, 49.1645868], [9.2032660, 49.1641430]], [[9.2047053, 49.1656297], [9.2045868, 49.1656346], [9.2044102, 49.1656371], [9.2043122, 49.1656284]], [[9.2043122, 49.1656284], [9.2040983, 49.1656107], [9.2037865, 49.1655811], [9.2035129, 49.1655432], [9.2034597, 49.1652746]], [[9.2035129, 49.1655432], [9.2032913, 49.1655364]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schozacher Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2110923, 49.1310379], [9.2108543, 49.1305118], [9.2105999, 49.1299767]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schönbeinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2229739, 49.1695963], [9.2226119, 49.1696508], [9.2221872, 49.1697148], [9.2216510, 49.1697900], [9.2214740, 49.1698346], [9.2213699, 49.1699056], [9.2212642, 49.1700404], [9.2210437, 49.1705191], [9.2210076, 49.1706100], [9.2209962, 49.1708607]], [[9.2229739, 49.1695963], [9.2230323, 49.1695064], [9.2231282, 49.1694586], [9.2232089, 49.1694396], [9.2232892, 49.1694357], [9.2233450, 49.1694497], [9.2233750, 49.1694858], [9.2233722, 49.1695270], [9.2233290, 49.1695780], [9.2232249, 49.1696027], [9.2229739, 49.1695963]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schöntaler Gasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2162512, 49.1399040], [9.2162942, 49.1397552], [9.2163115, 49.1396089], [9.2163450, 49.1395281], [9.2164037, 49.1395264]], [[9.2164037, 49.1395264], [9.2164231, 49.1393738], [9.2164452, 49.1392001]], [[9.2164452, 49.1392001], [9.2164612, 49.1390734]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schubartstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2355562, 49.1428440], [9.2351597, 49.1428669], [9.2351252, 49.1426528]], [[9.2354884, 49.1447987], [9.2357761, 49.1445399], [9.2358026, 49.1445074], [9.2358106, 49.1444868], [9.2358159, 49.1444639], [9.2358131, 49.1444364], [9.2357400, 49.1439300], [9.2357387, 49.1439226], [9.2356474, 49.1433941], [9.2355562, 49.1428440], [9.2355218, 49.1426527], [9.2354758, 49.1423642]], [[9.2358131, 49.1444364], [9.2358715, 49.1444326], [9.2359306, 49.1444265], [9.2360043, 49.1444054], [9.2360955, 49.1443528], [9.2362095, 49.1442510], [9.2363047, 49.1441615], [9.2363906, 49.1440712], [9.2364147, 49.1440124], [9.2364214, 49.1439440]], [[9.2345023, 49.1429175], [9.2351597, 49.1428669]], [[9.2354758, 49.1423642], [9.2354520, 49.1422752]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schuchmannstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1915397, 49.1338526], [9.1923986, 49.1337842], [9.1929965, 49.1337382]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schulberg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1432939, 49.1933615], [9.1432781, 49.1933027], [9.1432654, 49.1931292], [9.1432594, 49.1930992], [9.1432429, 49.1930673], [9.1432159, 49.1930487], [9.1431759, 49.1930298], [9.1429786, 49.1929577]], [[9.1429336, 49.1929435], [9.1428720, 49.1929971], [9.1428468, 49.1930518], [9.1429075, 49.1932494]], [[9.1429075, 49.1932494], [9.1429466, 49.1933703]], [[9.1423737, 49.1926754], [9.1425054, 49.1927922]], [[9.1429075, 49.1932494], [9.1425256, 49.1933082], [9.1423915, 49.1933223]], [[9.1425054, 49.1927922], [9.1426119, 49.1928367], [9.1427928, 49.1929002]], [[9.1429786, 49.1929577], [9.1429336, 49.1929435], [9.1427928, 49.1929002]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Schulbrunnenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1158754, 49.1798446], [9.1158603, 49.1795645], [9.1158561, 49.1793417], [9.1158952, 49.1792985]], [[9.1158952, 49.1792985], [9.1159866, 49.1792768], [9.1167955, 49.1791939], [9.1170656, 49.1791659], [9.1171926, 49.1791816], [9.1174872, 49.1791808]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schulgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2218574, 49.1424103], [9.2212110, 49.1424553], [9.2210613, 49.1424663], [9.2209658, 49.1424683], [9.2209345, 49.1424397], [9.2209207, 49.1423879], [9.2209035, 49.1421887], [9.2209131, 49.1421602], [9.2209449, 49.1420492], [9.2210073, 49.1420159], [9.2211401, 49.1420058], [9.2211610, 49.1420066], [9.2216118, 49.1420086], [9.2217730, 49.1420035]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schulstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1752919, 49.1560738], [9.1762421, 49.1568995], [9.1763757, 49.1570402], [9.1763921, 49.1570575]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Schultheiß-Hammer-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1137479, 49.1825365], [9.1139011, 49.1830586], [9.1140730, 49.1835922], [9.1141578, 49.1840315]], [[9.1135065, 49.1820001], [9.1135747, 49.1821068], [9.1137479, 49.1825365]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Schultheiß-Pfau-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2028618, 49.1697463], [9.2014833, 49.1696957]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Schumannstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1551300, 49.1995942], [9.1551365, 49.1995345], [9.1551163, 49.1994581], [9.1548970, 49.1989170], [9.1548577, 49.1988156], [9.1548231, 49.1987611], [9.1547843, 49.1987242], [9.1547267, 49.1986984], [9.1539321, 49.1984791], [9.1538299, 49.1984594], [9.1537527, 49.1984556], [9.1532961, 49.1984874], [9.1527795, 49.1985288]], [[9.1532961, 49.1984874], [9.1532908, 49.1989064]], [[9.1541043, 49.1990223], [9.1544967, 49.1989680], [9.1548970, 49.1989170]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schutzbarstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1985677, 49.1239746], [9.1991058, 49.1233862]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schüblerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2280134, 49.1530690], [9.2281184, 49.1532808], [9.2282910, 49.1535157], [9.2286120, 49.1539182], [9.2286185, 49.1539718], [9.2285994, 49.1540280]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schützenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2080859, 49.1392689], [9.2078885, 49.1392679], [9.2063214, 49.1392708], [9.2057080, 49.1392711], [9.2056373, 49.1392447]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schwabenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1887899, 49.1192373], [9.1894162, 49.1192532], [9.1897304, 49.1192291]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schwabstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2303178, 49.1319088], [9.2302536, 49.1318840], [9.2301735, 49.1318786], [9.2300787, 49.1318887], [9.2291384, 49.1319779], [9.2289840, 49.1319942], [9.2289241, 49.1320005], [9.2284883, 49.1320333], [9.2282506, 49.1320439], [9.2280668, 49.1320439], [9.2279959, 49.1320439]], [[9.2290092, 49.1323781], [9.2290051, 49.1323632]], [[9.2279959, 49.1320439], [9.2279658, 49.1320552], [9.2279537, 49.1320727], [9.2279470, 49.1321034], [9.2279564, 49.1321420], [9.2280478, 49.1323279], [9.2280618, 49.1323546]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schwaigerner Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1828794, 49.1424578], [9.1831051, 49.1424481], [9.1833083, 49.1424551], [9.1833605, 49.1424973], [9.1834110, 49.1424894], [9.1834670, 49.1424844], [9.1841959, 49.1425520], [9.1850287, 49.1425519]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Schwalbenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1914758, 49.1500089], [9.1915892, 49.1505663], [9.1916416, 49.1511626]], [[9.1916416, 49.1511626], [9.1915555, 49.1516849]], [[9.1916416, 49.1511626], [9.1911797, 49.1511618]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schweinsbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2310720, 49.1313694], [9.2311097, 49.1313157], [9.2311602, 49.1312745], [9.2312249, 49.1312323], [9.2312940, 49.1312007], [9.2316241, 49.1310813], [9.2321972, 49.1308473], [9.2328671, 49.1305726], [9.2332134, 49.1304298], [9.2333402, 49.1303742], [9.2335787, 49.1303100], [9.2340777, 49.1301871], [9.2346389, 49.1300431], [9.2349728, 49.1299505], [9.2351581, 49.1298947], [9.2353731, 49.1298172], [9.2356873, 49.1297226], [9.2360140, 49.1295816], [9.2367287, 49.1292523], [9.2370347, 49.1290814], [9.2373089, 49.1289333], [9.2375244, 49.1288452], [9.2377359, 49.1287631], [9.2379715, 49.1286908], [9.2389827, 49.1284354], [9.2392977, 49.1283973]], [[9.2389827, 49.1284354], [9.2389187, 49.1283532], [9.2388199, 49.1282359], [9.2384580, 49.1284203], [9.2382576, 49.1284731], [9.2380644, 49.1284950], [9.2377974, 49.1284137], [9.2375352, 49.1284459], [9.2374807, 49.1284180]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Schwibbogengasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2204667, 49.1441231], [9.2204848, 49.1441091], [9.2205106, 49.1440969], [9.2205386, 49.1440880], [9.2205942, 49.1440845], [9.2208142, 49.1440613]], [[9.2191783, 49.1443403], [9.2192395, 49.1443236], [9.2193211, 49.1443107], [9.2196139, 49.1442679], [9.2196492, 49.1442627], [9.2204667, 49.1441231]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Schwindstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2065295, 49.1267731], [9.2074673, 49.1270870], [9.2078680, 49.1272181], [9.2083052, 49.1273594], [9.2083910, 49.1273910], [9.2084232, 49.1273980], [9.2084581, 49.1273980], [9.2084849, 49.1273910], [9.2088022, 49.1272346]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Seeligstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1603692, 49.1437816], [9.1601063, 49.1430629], [9.1597610, 49.1422678], [9.1596581, 49.1419788], [9.1596019, 49.1416092], [9.1595914, 49.1412723]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Seestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1922962, 49.1316231], [9.1928383, 49.1315488], [9.1936010, 49.1314789], [9.1937619, 49.1315260], [9.1939881, 49.1315384]], [[9.1936010, 49.1314789], [9.1935692, 49.1313013], [9.1935133, 49.1311359]], [[9.1934214, 49.1311481], [9.1935133, 49.1311359], [9.1937025, 49.1311083]], [[9.1905910, 49.1318397], [9.1906764, 49.1318463], [9.1916501, 49.1317221], [9.1918388, 49.1316967], [9.1920184, 49.1316687], [9.1922962, 49.1316231]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Semmelweisstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2470540, 49.1367655], [9.2471925, 49.1367300], [9.2478304, 49.1365571], [9.2478915, 49.1365405]], [[9.2470540, 49.1367655], [9.2469672, 49.1366274], [9.2468793, 49.1364864], [9.2467895, 49.1363785], [9.2465789, 49.1361477], [9.2463456, 49.1359161], [9.2461900, 49.1357792], [9.2461136, 49.1357248], [9.2459660, 49.1356537], [9.2458762, 49.1356230], [9.2457756, 49.1356116], [9.2456804, 49.1356046], [9.2454492, 49.1356144]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Sepp-Herberger-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1131309, 49.1866246], [9.1129982, 49.1862109], [9.1133725, 49.1861310], [9.1140988, 49.1859759]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Sichererstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2318143, 49.1477029], [9.2317319, 49.1477615], [9.2316365, 49.1477923], [9.2315173, 49.1478070], [9.2307925, 49.1478527], [9.2304272, 49.1478727], [9.2297050, 49.1479095], [9.2295052, 49.1479156], [9.2290050, 49.1479417], [9.2279152, 49.1480043], [9.2277128, 49.1480176], [9.2274952, 49.1480306], [9.2273589, 49.1480387], [9.2272315, 49.1480462], [9.2271061, 49.1480543], [9.2268539, 49.1480707], [9.2266865, 49.1480816], [9.2266622, 49.1480821], [9.2263651, 49.1480986], [9.2261904, 49.1481081], [9.2256731, 49.1481397], [9.2247685, 49.1481908], [9.2243613, 49.1482132], [9.2237170, 49.1482475], [9.2235662, 49.1482568], [9.2226625, 49.1483076], [9.2214828, 49.1483759]], [[9.2193097, 49.1484160], [9.2192251, 49.1484298], [9.2189537, 49.1484600], [9.2185522, 49.1483892], [9.2184223, 49.1483664], [9.2183233, 49.1483339], [9.2182616, 49.1482689], [9.2180581, 49.1478514], [9.2180048, 49.1477365]], [[9.2214828, 49.1483759], [9.2208348, 49.1484165], [9.2205187, 49.1484347], [9.2194863, 49.1484965], [9.2193808, 49.1485058]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Sickingenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1867585, 49.1384355], [9.1868009, 49.1384899], [9.1868327, 49.1385560], [9.1868532, 49.1386440], [9.1868626, 49.1388764], [9.1868476, 49.1390757], [9.1868761, 49.1393552], [9.1868975, 49.1394254], [9.1869692, 49.1394545], [9.1877226, 49.1395227], [9.1879803, 49.1395688], [9.1882309, 49.1396290], [9.1885625, 49.1397086], [9.1886628, 49.1397084]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Siebenbürgenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1736181, 49.1153698], [9.1734225, 49.1159065], [9.1734280, 49.1159660]], [[9.1744059, 49.1155166], [9.1742269, 49.1160646]], [[9.1752006, 49.1156126], [9.1750069, 49.1162085]], [[9.1750526, 49.1155496], [9.1752347, 49.1149540]], [[9.1728971, 49.1152337], [9.1736181, 49.1153698], [9.1741957, 49.1154758], [9.1744059, 49.1155166], [9.1750594, 49.1156293]], [[9.1760230, 49.1156600], [9.1758963, 49.1159949], [9.1757875, 49.1162822]], [[9.1751624, 49.1155357], [9.1759231, 49.1156456], [9.1760230, 49.1156600], [9.1764378, 49.1157164], [9.1765145, 49.1157091], [9.1766017, 49.1156652], [9.1766788, 49.1155005], [9.1767956, 49.1154390]], [[9.1751624, 49.1155357], [9.1751893, 49.1155502], [9.1752038, 49.1155666], [9.1752094, 49.1155907], [9.1752006, 49.1156126], [9.1751787, 49.1156312], [9.1751447, 49.1156431], [9.1751098, 49.1156449], [9.1750862, 49.1156408], [9.1750594, 49.1156293], [9.1750378, 49.1156083], [9.1750319, 49.1155905], [9.1750353, 49.1155707], [9.1750526, 49.1155496], [9.1750807, 49.1155351], [9.1751141, 49.1155291], [9.1751414, 49.1155305], [9.1751624, 49.1155357]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Siebeneichgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2207356, 49.1402825], [9.2202234, 49.1401576], [9.2194476, 49.1398962], [9.2193610, 49.1398917], [9.2192749, 49.1399107]], [[9.2193368, 49.1397305], [9.2192701, 49.1398718], [9.2192749, 49.1399107]], [[9.2192749, 49.1399107], [9.2192284, 49.1400819], [9.2192254, 49.1401737], [9.2192266, 49.1402980]], [[9.2192266, 49.1402980], [9.2192653, 49.1404224], [9.2193193, 49.1405136]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Siebenmorgenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1502799, 49.1227453], [9.1502734, 49.1227185], [9.1501142, 49.1221903], [9.1500575, 49.1220197], [9.1500306, 49.1219390], [9.1499695, 49.1217661], [9.1498884, 49.1215366], [9.1498511, 49.1214117], [9.1497828, 49.1212377], [9.1497280, 49.1210205], [9.1496795, 49.1208016], [9.1496498, 49.1207091], [9.1496196, 49.1206149], [9.1495161, 49.1202918], [9.1493864, 49.1199987]], [[9.1503191, 49.1260360], [9.1503333, 49.1250287]], [[9.1503407, 49.1241270], [9.1503394, 49.1239758]], [[9.1503394, 49.1239758], [9.1503403, 49.1238050], [9.1503346, 49.1231793], [9.1503260, 49.1229738], [9.1502799, 49.1227453]], [[9.1503333, 49.1250287], [9.1503362, 49.1247427], [9.1503337, 49.1244535], [9.1503407, 49.1241270]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Siebennussbaumstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2394354, 49.1401280], [9.2394062, 49.1401838], [9.2393913, 49.1402140], [9.2393432, 49.1402847], [9.2393225, 49.1403179], [9.2392904, 49.1403516], [9.2392379, 49.1403973], [9.2392099, 49.1404283]], [[9.2392099, 49.1404283], [9.2391034, 49.1405936], [9.2390318, 49.1407123], [9.2383063, 49.1418792], [9.2382131, 49.1420092]], [[9.2392099, 49.1404283], [9.2392206, 49.1403859], [9.2392243, 49.1403246], [9.2392184, 49.1402770], [9.2392189, 49.1402255], [9.2392182, 49.1402156], [9.2392175, 49.1401883], [9.2392202, 49.1401340]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Siechenhausweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2218123, 49.1504114], [9.2219139, 49.1504345], [9.2221669, 49.1504699], [9.2225386, 49.1505162], [9.2230598, 49.1505791], [9.2234235, 49.1505601], [9.2239380, 49.1505417], [9.2240077, 49.1505392]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Siedlungsstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1760850, 49.1597841], [9.1761673, 49.1597902], [9.1766297, 49.1596649], [9.1772651, 49.1594980], [9.1774712, 49.1594736], [9.1776164, 49.1594181], [9.1777389, 49.1593282], [9.1778546, 49.1592091], [9.1782921, 49.1593012], [9.1787616, 49.1594023]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Siedlungsweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1970564, 49.1658560], [9.1965259, 49.1659143], [9.1960849, 49.1659434], [9.1958578, 49.1659443], [9.1950248, 49.1659293], [9.1946681, 49.1658826], [9.1945686, 49.1658902]], [[9.1945686, 49.1658902], [9.1942665, 49.1658521], [9.1937694, 49.1657493], [9.1931762, 49.1656105]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Siegfried-Gumbel-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2367467, 49.1516318], [9.2367442, 49.1519730]], [[9.2374238, 49.1516603], [9.2373542, 49.1519369], [9.2373217, 49.1521487], [9.2372962, 49.1524716], [9.2372792, 49.1524947], [9.2372425, 49.1525067], [9.2371689, 49.1525058], [9.2366712, 49.1524601], [9.2360317, 49.1523726], [9.2359801, 49.1523573], [9.2359506, 49.1523334], [9.2359383, 49.1522998], [9.2359393, 49.1522371], [9.2359543, 49.1519061], [9.2359584, 49.1517421], [9.2359533, 49.1516037]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Silcherplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2269531, 49.1340062], [9.2268893, 49.1340904], [9.2268336, 49.1341720], [9.2267845, 49.1342622]], [[9.2267845, 49.1342622], [9.2267869, 49.1341770], [9.2267740, 49.1341209], [9.2267507, 49.1340831], [9.2266764, 49.1340146]], [[9.2275504, 49.1339616], [9.2274095, 49.1339806], [9.2272452, 49.1339969], [9.2269531, 49.1340062]], [[9.2281893, 49.1336366], [9.2280800, 49.1337345], [9.2279932, 49.1338002], [9.2279504, 49.1338205], [9.2277966, 49.1338934], [9.2276808, 49.1339294], [9.2275504, 49.1339616]], [[9.2271450, 49.1338981], [9.2273727, 49.1338750], [9.2275000, 49.1338559], [9.2276348, 49.1338236], [9.2278219, 49.1337484], [9.2278583, 49.1337277], [9.2279410, 49.1336786], [9.2281136, 49.1335436]], [[9.2281136, 49.1335436], [9.2282540, 49.1334337]], [[9.2286602, 49.1342496], [9.2283524, 49.1340725], [9.2282171, 49.1340171], [9.2281022, 49.1339877], [9.2280154, 49.1339765], [9.2277984, 49.1339669], [9.2275504, 49.1339616]], [[9.2266823, 49.1339173], [9.2271450, 49.1338981]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Silcherstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2303362, 49.1318714], [9.2303484, 49.1318496], [9.2304066, 49.1317345], [9.2304238, 49.1316870], [9.2304789, 49.1315670], [9.2305347, 49.1314167]], [[9.2301687, 49.1321159], [9.2303178, 49.1319088], [9.2303362, 49.1318714]], [[9.2311509, 49.1315707], [9.2308438, 49.1316111], [9.2307928, 49.1316190], [9.2307204, 49.1316383], [9.2305930, 49.1316822], [9.2305688, 49.1316883], [9.2305340, 49.1316927], [9.2305072, 49.1316918], [9.2304238, 49.1316870]], [[9.2288434, 49.1330497], [9.2289344, 49.1329947], [9.2290469, 49.1329178]], [[9.2282540, 49.1334337], [9.2283910, 49.1333265], [9.2284915, 49.1332604], [9.2286881, 49.1331286], [9.2288434, 49.1330497]], [[9.2288434, 49.1330497], [9.2287516, 49.1331563], [9.2285150, 49.1333481], [9.2284771, 49.1333788], [9.2284533, 49.1334001], [9.2283246, 49.1335154]], [[9.2290469, 49.1329178], [9.2291834, 49.1328247], [9.2296050, 49.1325280], [9.2297553, 49.1324193]], [[9.2297553, 49.1324193], [9.2301365, 49.1321430], [9.2301687, 49.1321159]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Sinsheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1757178, 49.1459981], [9.1762253, 49.1460016], [9.1764560, 49.1460048], [9.1766264, 49.1460071], [9.1774700, 49.1460177], [9.1779131, 49.1460245], [9.1780761, 49.1460267], [9.1789159, 49.1460281], [9.1792888, 49.1460179], [9.1796418, 49.1459977], [9.1798793, 49.1459777]], [[9.1809094, 49.1458340], [9.1809685, 49.1458217], [9.1813319, 49.1457393], [9.1814108, 49.1457250], [9.1814907, 49.1457087], [9.1815554, 49.1456962], [9.1817091, 49.1456748], [9.1819564, 49.1456435], [9.1820551, 49.1456305], [9.1823190, 49.1456059], [9.1825621, 49.1455906], [9.1827166, 49.1455904], [9.1830462, 49.1456130], [9.1832483, 49.1456385], [9.1834057, 49.1456758], [9.1836474, 49.1457507], [9.1838437, 49.1458223], [9.1843626, 49.1460298], [9.1844559, 49.1460722]], [[9.1798793, 49.1459777], [9.1800095, 49.1459671], [9.1800639, 49.1459581], [9.1809094, 49.1458340]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Slubicestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2081395, 49.1214332], [9.2071192, 49.1214312]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Solothurner Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2219177, 49.1359403], [9.2216118, 49.1343770]], [[9.2215812, 49.1341765], [9.2215879, 49.1342127]], [[9.2216118, 49.1343770], [9.2215916, 49.1343115]], [[9.2214415, 49.1331014], [9.2214502, 49.1333094], [9.2214494, 49.1335240], [9.2214590, 49.1335988], [9.2215082, 49.1338266], [9.2215759, 49.1341414], [9.2215812, 49.1341765]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Sommerau" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1933523, 49.1180258], [9.1944575, 49.1178819], [9.1951323, 49.1177825], [9.1955616, 49.1177196], [9.1955796, 49.1177198]], [[9.1997345, 49.1175199], [9.1996473, 49.1172826], [9.1995870, 49.1171477], [9.1995027, 49.1169775]], [[9.1957702, 49.1181941], [9.1955796, 49.1177198]], [[9.1955796, 49.1177198], [9.1961597, 49.1175812], [9.1971533, 49.1173422], [9.1975664, 49.1172532], [9.1976639, 49.1172322], [9.1980716, 49.1171546], [9.1982622, 49.1171201], [9.1984426, 49.1170809], [9.1986613, 49.1170317], [9.1987923, 49.1170055], [9.1989224, 49.1169875], [9.1991825, 49.1169585], [9.1993964, 49.1169395], [9.1994287, 49.1169434], [9.1994589, 49.1169498], [9.1994873, 49.1169631], [9.1995027, 49.1169775], [9.1996288, 49.1169572], [9.1997520, 49.1169412], [9.1999004, 49.1169234], [9.2001306, 49.1169076], [9.2003055, 49.1169039], [9.2005749, 49.1169057], [9.2006552, 49.1169028], [9.2007088, 49.1168935], [9.2007553, 49.1168734], [9.2008033, 49.1168381], [9.2008906, 49.1167837]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Sommerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1930206, 49.1433355], [9.1926756, 49.1422423], [9.1925430, 49.1417470]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Sonnenbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1874209, 49.1442609], [9.1872941, 49.1440806], [9.1872354, 49.1439878], [9.1871931, 49.1438785], [9.1870599, 49.1434830], [9.1869764, 49.1432387], [9.1869225, 49.1430758], [9.1868787, 49.1429379], [9.1868338, 49.1428023], [9.1868570, 49.1424625], [9.1868919, 49.1422495]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Sonnengasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2207782, 49.1438046], [9.2210636, 49.1438098], [9.2211028, 49.1438093]], [[9.2211028, 49.1438093], [9.2218736, 49.1438276], [9.2222240, 49.1438097], [9.2225785, 49.1437900], [9.2226563, 49.1437824], [9.2227334, 49.1437778]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Sonnenhalde" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1516905, 49.1203304], [9.1521399, 49.1204357], [9.1525374, 49.1205527], [9.1528976, 49.1206168], [9.1532378, 49.1206550], [9.1534279, 49.1206733], [9.1536503, 49.1206607], [9.1538296, 49.1206404], [9.1540218, 49.1206240], [9.1541666, 49.1206108], [9.1543384, 49.1205952]], [[9.1534279, 49.1206733], [9.1535964, 49.1212467]], [[9.1549332, 49.1206906], [9.1550980, 49.1208447], [9.1553492, 49.1211324], [9.1554669, 49.1213224], [9.1555287, 49.1214087], [9.1555697, 49.1214788], [9.1557573, 49.1216204], [9.1559300, 49.1217128]], [[9.1543384, 49.1205952], [9.1544103, 49.1205952], [9.1546899, 49.1206033], [9.1549332, 49.1206906]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Sontheimer Landwehr" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2170464, 49.1258860], [9.2169183, 49.1258790], [9.2164469, 49.1258516], [9.2160343, 49.1258161]], [[9.2120392, 49.1251411], [9.2120541, 49.1251047], [9.2120616, 49.1250864], [9.2121019, 49.1250600], [9.2126678, 49.1249740], [9.2129883, 49.1249152], [9.2129897, 49.1249021], [9.2130017, 49.1248880], [9.2132726, 49.1248362], [9.2136508, 49.1247801]], [[9.2160343, 49.1258161], [9.2158119, 49.1257851], [9.2155526, 49.1257513], [9.2152870, 49.1257057], [9.2150307, 49.1256592], [9.2147002, 49.1255993], [9.2140008, 49.1254641], [9.2138045, 49.1254261], [9.2133794, 49.1253467], [9.2131804, 49.1253068], [9.2130018, 49.1252655], [9.2128131, 49.1252300], [9.2127408, 49.1252191], [9.2126269, 49.1252019], [9.2124749, 49.1251819], [9.2122879, 49.1251602], [9.2121063, 49.1251457], [9.2120392, 49.1251411], [9.2118821, 49.1251380], [9.2117442, 49.1251366], [9.2116050, 49.1251358], [9.2114051, 49.1251460], [9.2112268, 49.1251600], [9.2110925, 49.1251746], [9.2108292, 49.1252113], [9.2105466, 49.1252617], [9.2099161, 49.1253937], [9.2088779, 49.1256123], [9.2088000, 49.1256226], [9.2086874, 49.1256375], [9.2085415, 49.1256658], [9.2084056, 49.1256955], [9.2081707, 49.1257444], [9.2080168, 49.1257762], [9.2076024, 49.1258727], [9.2074026, 49.1259183], [9.2072405, 49.1259605], [9.2070862, 49.1259934], [9.2070225, 49.1260080], [9.2068407, 49.1260368], [9.2067374, 49.1260500], [9.2065175, 49.1260746], [9.2062409, 49.1261021], [9.2054956, 49.1261878], [9.2051129, 49.1262357], [9.2050382, 49.1262457], [9.2049494, 49.1262582], [9.2045637, 49.1263136], [9.2043570, 49.1263484], [9.2041934, 49.1263923], [9.2040741, 49.1264326], [9.2040083, 49.1264721], [9.2039895, 49.1264852], [9.2039292, 49.1265274], [9.2039184, 49.1265346], [9.2038238, 49.1265992]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Sontheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2168921, 49.1314328], [9.2174520, 49.1316650], [9.2176350, 49.1317367]], [[9.2166927, 49.1313317], [9.2165000, 49.1312348], [9.2162152, 49.1310931], [9.2145423, 49.1302785], [9.2144882, 49.1302526], [9.2142357, 49.1301178], [9.2140013, 49.1300004], [9.2137473, 49.1298866], [9.2136998, 49.1298690], [9.2134751, 49.1297913], [9.2130177, 49.1296455], [9.2114774, 49.1291193], [9.2113723, 49.1290855]], [[9.2168921, 49.1314328], [9.2168689, 49.1314198], [9.2166927, 49.1313317]], [[9.2089717, 49.1279403], [9.2089757, 49.1279711], [9.2089676, 49.1279895], [9.2089422, 49.1280193], [9.2088081, 49.1281846], [9.2087655, 49.1282398]], [[9.2103503, 49.1291531], [9.2103825, 49.1292163], [9.2104026, 49.1292304], [9.2104348, 49.1292339], [9.2104737, 49.1292277], [9.2109790, 49.1291254], [9.2110910, 49.1291061]], [[9.2072146, 49.1278945], [9.2072527, 49.1278584]], [[9.2062232, 49.1276089], [9.2062722, 49.1275568]], [[9.2067043, 49.1277247], [9.2066938, 49.1277401], [9.2067367, 49.1277875], [9.2065101, 49.1278849], [9.2064792, 49.1279621]], [[9.2076526, 49.1279893], [9.2076679, 49.1279694]], [[9.2058254, 49.1278517], [9.2059119, 49.1278059], [9.2059092, 49.1277866], [9.2062137, 49.1276190], [9.2062232, 49.1276089]], [[9.2057824, 49.1274069], [9.2057443, 49.1274426], [9.2057564, 49.1274733], [9.2055243, 49.1276172], [9.2055257, 49.1276638]], [[9.2058156, 49.1273758], [9.2057824, 49.1274069]], [[9.2062722, 49.1275568], [9.2063098, 49.1275169]], [[9.2076241, 49.1280261], [9.2076526, 49.1279893]], [[9.2072527, 49.1278584], [9.2072740, 49.1278381]], [[9.2058366, 49.1273561], [9.2058156, 49.1273758]], [[9.2069258, 49.1281675], [9.2071954, 49.1279990], [9.2072007, 49.1279077], [9.2072146, 49.1278945]], [[9.2067470, 49.1276625], [9.2067307, 49.1276864]], [[9.2067307, 49.1276864], [9.2067043, 49.1277247]], [[9.2181303, 49.1318746], [9.2183075, 49.1319006], [9.2185073, 49.1319211], [9.2186671, 49.1319334], [9.2188772, 49.1319484]], [[9.2110407, 49.1289733], [9.2109566, 49.1289438], [9.2099781, 49.1286311], [9.2093894, 49.1284425], [9.2089759, 49.1283109], [9.2087655, 49.1282398], [9.2080287, 49.1279901], [9.2061136, 49.1273539], [9.2055160, 49.1271589], [9.2051128, 49.1270303], [9.2041625, 49.1267078], [9.2038781, 49.1266166], [9.2038238, 49.1265992]], [[9.2113723, 49.1290855], [9.2112557, 49.1290479], [9.2110407, 49.1289733]], [[9.2176350, 49.1317367], [9.2179141, 49.1318256], [9.2180327, 49.1318525], [9.2181303, 49.1318746]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Spechtweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1208506, 49.1849579], [9.1205775, 49.1846358]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Spemannstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2124750, 49.1170110], [9.2124809, 49.1166521]], [[9.2112041, 49.1177895], [9.2112103, 49.1175832], [9.2112610, 49.1175510]], [[9.2129420, 49.1170109], [9.2127448, 49.1170118], [9.2124750, 49.1170110], [9.2114543, 49.1170101], [9.2113859, 49.1170119], [9.2113336, 49.1170198], [9.2112907, 49.1170347], [9.2112599, 49.1170566], [9.2112430, 49.1170738], [9.2112357, 49.1170812], [9.2112290, 49.1171128], [9.2112250, 49.1171470], [9.2112250, 49.1174876], [9.2112371, 49.1175315], [9.2112610, 49.1175510], [9.2112961, 49.1175745], [9.2113430, 49.1175894], [9.2113940, 49.1175938], [9.2116019, 49.1175947], [9.2129669, 49.1175905]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Sperberweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1874512, 49.1501125], [9.1875605, 49.1495274]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Sperlingsberg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1413799, 49.1927310], [9.1413464, 49.1927636], [9.1412951, 49.1927834], [9.1412132, 49.1928009], [9.1411091, 49.1928222], [9.1408838, 49.1928597], [9.1402468, 49.1929647], [9.1400999, 49.1930087]], [[9.1400999, 49.1930087], [9.1400140, 49.1930479], [9.1399549, 49.1930824]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Spethstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1979534, 49.1236496], [9.1984483, 49.1231088]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Speyerer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1724393, 49.1585298], [9.1722989, 49.1586669]], [[9.1727916, 49.1611742], [9.1726789, 49.1612433], [9.1722328, 49.1615598], [9.1718892, 49.1617762], [9.1713452, 49.1621218], [9.1708269, 49.1624682], [9.1698998, 49.1632889], [9.1695289, 49.1635286], [9.1693346, 49.1636394], [9.1691176, 49.1637294], [9.1689667, 49.1637874], [9.1685996, 49.1639072]], [[9.1727916, 49.1611742], [9.1727702, 49.1611430], [9.1727756, 49.1610990], [9.1727974, 49.1610741], [9.1728263, 49.1610574], [9.1728668, 49.1610463], [9.1728969, 49.1610450], [9.1729325, 49.1610481], [9.1729647, 49.1610582], [9.1729898, 49.1610726], [9.1730074, 49.1610897], [9.1730208, 49.1611228], [9.1730153, 49.1611513], [9.1730043, 49.1611693], [9.1729772, 49.1611894], [9.1729444, 49.1612028], [9.1729042, 49.1612093], [9.1728634, 49.1612070], [9.1728234, 49.1611951], [9.1727916, 49.1611742]], [[9.1722989, 49.1586669], [9.1722112, 49.1587630], [9.1721080, 49.1588986], [9.1720566, 49.1589815], [9.1720471, 49.1590632], [9.1720562, 49.1591918], [9.1721077, 49.1594668], [9.1721723, 49.1596720], [9.1722748, 49.1598714], [9.1723557, 49.1600180], [9.1723987, 49.1600965], [9.1724496, 49.1601682], [9.1726124, 49.1604581], [9.1726984, 49.1606231], [9.1728851, 49.1609716], [9.1728969, 49.1610450]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Spitzwegstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1954860, 49.1227780], [9.1955535, 49.1227048], [9.1957631, 49.1224877], [9.1958322, 49.1224084], [9.1959022, 49.1223374], [9.1960423, 49.1221920], [9.1960675, 49.1221649], [9.1963812, 49.1218228], [9.1964483, 49.1217550], [9.1966011, 49.1215887], [9.1969518, 49.1212020], [9.1969951, 49.1211562], [9.1971813, 49.1209593], [9.1974456, 49.1206780], [9.1977484, 49.1203364]], [[9.1979638, 49.1192953], [9.1979625, 49.1192284], [9.1979465, 49.1188485], [9.1979403, 49.1188046], [9.1979301, 49.1187327], [9.1978912, 49.1184724], [9.1978845, 49.1184231], [9.1978775, 49.1183994], [9.1977365, 49.1179224], [9.1977225, 49.1178574]], [[9.1977484, 49.1203364], [9.1978358, 49.1201887], [9.1979000, 49.1200302], [9.1979411, 49.1199217], [9.1979519, 49.1198791], [9.1979563, 49.1198460], [9.1979515, 49.1193904], [9.1979638, 49.1192953]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Sporerweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1988387, 49.1199303], [9.1988430, 49.1198855], [9.1988510, 49.1198018], [9.1988533, 49.1197095], [9.1988532, 49.1195353], [9.1988475, 49.1193663], [9.1988407, 49.1192396]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "St.-Martin-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1932059, 49.1176323], [9.1933159, 49.1179280], [9.1933252, 49.1179530], [9.1933523, 49.1180258]], [[9.1933523, 49.1180258], [9.1935059, 49.1184501]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Staadäckerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1752154, 49.1174169], [9.1729843, 49.1170741], [9.1725727, 49.1170100], [9.1721919, 49.1169512]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Staehlenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2006873, 49.1246118], [9.2016726, 49.1249219], [9.2026861, 49.1252045]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Staffelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1466649, 49.1951134], [9.1462522, 49.1946797]], [[9.1459215, 49.1948587], [9.1459843, 49.1948085], [9.1460847, 49.1947539], [9.1462522, 49.1946797]], [[9.1462522, 49.1946797], [9.1464402, 49.1945950], [9.1468298, 49.1944645], [9.1472885, 49.1943716]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Staffelweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1713192, 49.1611162], [9.1719709, 49.1614121]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Starenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1858798, 49.1500060], [9.1874512, 49.1501125], [9.1885842, 49.1502083], [9.1891169, 49.1502751], [9.1897047, 49.1503604], [9.1907934, 49.1505571], [9.1915892, 49.1505663]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Starnberger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1665374, 49.1631827], [9.1664821, 49.1631235], [9.1662576, 49.1627413], [9.1661361, 49.1626198]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Stauchenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1674733, 49.1585481], [9.1677807, 49.1585860], [9.1679442, 49.1585968], [9.1680767, 49.1585847]], [[9.1711783, 49.1591051], [9.1707127, 49.1589837]], [[9.1696629, 49.1587301], [9.1694998, 49.1587161], [9.1693608, 49.1587474], [9.1689299, 49.1587657], [9.1687046, 49.1587411], [9.1685714, 49.1587139], [9.1684181, 49.1586740], [9.1680767, 49.1585847]], [[9.1707127, 49.1589837], [9.1705435, 49.1589496]], [[9.1705435, 49.1589496], [9.1702556, 49.1588851]], [[9.1674733, 49.1585481], [9.1671371, 49.1585171], [9.1667647, 49.1584737], [9.1664086, 49.1584157], [9.1660693, 49.1583464]], [[9.1720471, 49.1590632], [9.1717193, 49.1591329], [9.1714584, 49.1591804], [9.1711783, 49.1591051]], [[9.1696629, 49.1587301], [9.1702556, 49.1588851]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Staudingerweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2102320, 49.1170694], [9.2103719, 49.1170726], [9.2107715, 49.1170717], [9.2111564, 49.1170734], [9.2112430, 49.1170738]], [[9.2102348, 49.1171686], [9.2107726, 49.1171727]], [[9.2107782, 49.1176993], [9.2107726, 49.1171727], [9.2107715, 49.1170717]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Staufenberger Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2240693, 49.1183632], [9.2244433, 49.1179016], [9.2247752, 49.1174348], [9.2251587, 49.1169979], [9.2256989, 49.1163875]], [[9.2249589, 49.1205909], [9.2252574, 49.1196251]], [[9.2224038, 49.1209926], [9.2225857, 49.1209643], [9.2228025, 49.1209444]], [[9.2249204, 49.1183522], [9.2248461, 49.1184605], [9.2239052, 49.1198379], [9.2231515, 49.1209242], [9.2230893, 49.1209318], [9.2230161, 49.1209419], [9.2229496, 49.1209394], [9.2228807, 49.1209390], [9.2228025, 49.1209444]], [[9.2228025, 49.1209444], [9.2227850, 49.1208567], [9.2227350, 49.1207790], [9.2226775, 49.1207239], [9.2226107, 49.1206523], [9.2225959, 49.1206295], [9.2225879, 49.1205988], [9.2225879, 49.1205760], [9.2225946, 49.1205461], [9.2226617, 49.1203653], [9.2226979, 49.1202688], [9.2227247, 49.1201801], [9.2227569, 49.1200950], [9.2228011, 49.1199993], [9.2229017, 49.1198168], [9.2229929, 49.1196658], [9.2231284, 49.1194543], [9.2232356, 49.1193068], [9.2233429, 49.1191725], [9.2235307, 49.1189610], [9.2236454, 49.1188325], [9.2236983, 49.1187732], [9.2239451, 49.1184993], [9.2240693, 49.1183632]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Staufenbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2019103, 49.1175206], [9.2020470, 49.1175184], [9.2023723, 49.1174965], [9.2026846, 49.1174643], [9.2029987, 49.1174307], [9.2046745, 49.1171677], [9.2049397, 49.1171344], [9.2054625, 49.1170970], [9.2058183, 49.1170639], [9.2067916, 49.1169905], [9.2078183, 49.1169404], [9.2079417, 49.1169305], [9.2085724, 49.1168822], [9.2089872, 49.1168609], [9.2094151, 49.1168292], [9.2102110, 49.1167516]], [[9.2019103, 49.1175206], [9.2013409, 49.1175159], [9.2007642, 49.1175003], [9.2003032, 49.1174956], [9.1999413, 49.1175004], [9.1997345, 49.1175199], [9.1995162, 49.1175470], [9.1992614, 49.1175798], [9.1989372, 49.1176372], [9.1984886, 49.1177149], [9.1981813, 49.1177707], [9.1978942, 49.1178278], [9.1977225, 49.1178574]], [[9.2146785, 49.1161437], [9.2145384, 49.1161700], [9.2142672, 49.1162257], [9.2140080, 49.1162548], [9.2138131, 49.1162669]], [[9.2102110, 49.1167516], [9.2104013, 49.1167303], [9.2106803, 49.1166545], [9.2128864, 49.1163924], [9.2129293, 49.1163874], [9.2138131, 49.1162669]], [[9.2138131, 49.1162669], [9.2144645, 49.1161027], [9.2146328, 49.1160601]], [[9.2148637, 49.1165764], [9.2147810, 49.1164868], [9.2146969, 49.1163635], [9.2145989, 49.1162736], [9.2145438, 49.1162526], [9.2144405, 49.1162310], [9.2142672, 49.1162257]], [[9.1977225, 49.1178574], [9.1970849, 49.1179671], [9.1962403, 49.1181175], [9.1957702, 49.1181941], [9.1945890, 49.1183382], [9.1941876, 49.1183794], [9.1935059, 49.1184501], [9.1933551, 49.1184718], [9.1930131, 49.1185303], [9.1928832, 49.1185536], [9.1928079, 49.1185667], [9.1927450, 49.1185775], [9.1925407, 49.1186184], [9.1925143, 49.1186239], [9.1922048, 49.1186862], [9.1918505, 49.1187888], [9.1914570, 49.1189170], [9.1913373, 49.1189512], [9.1911627, 49.1190011], [9.1910172, 49.1190416], [9.1908120, 49.1191024], [9.1907466, 49.1191435]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Stäffelesweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1908938, 49.1327386], [9.1903273, 49.1328114]], [[9.1903273, 49.1328114], [9.1899472, 49.1328700], [9.1895219, 49.1329411], [9.1894272, 49.1329597], [9.1893300, 49.1329590], [9.1892835, 49.1329394], [9.1892169, 49.1329038]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Stedinger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1949532, 49.1326073], [9.1950962, 49.1325913], [9.1952208, 49.1325897]], [[9.1962171, 49.1326393], [9.1964582, 49.1326669], [9.1966041, 49.1327567], [9.1968635, 49.1329326], [9.1969225, 49.1329710]], [[9.1952208, 49.1325897], [9.1962171, 49.1326393]], [[9.1926137, 49.1326552], [9.1929796, 49.1326094], [9.1931898, 49.1325794]], [[9.1931898, 49.1325794], [9.1933678, 49.1325680], [9.1935618, 49.1325580], [9.1940784, 49.1325531]], [[9.1925051, 49.1327454], [9.1926220, 49.1327187]], [[9.1940784, 49.1325531], [9.1945591, 49.1325295]], [[9.1912433, 49.1331319], [9.1915528, 49.1329924], [9.1916918, 49.1329510], [9.1925051, 49.1327454]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Stefan-Zweig-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1478644, 49.1908371], [9.1479177, 49.1907621], [9.1479769, 49.1906098], [9.1479994, 49.1905027], [9.1480155, 49.1904152], [9.1480043, 49.1903030], [9.1479550, 49.1901078]], [[9.1476788, 49.1900405], [9.1479550, 49.1901078], [9.1482994, 49.1901992], [9.1487197, 49.1903072], [9.1490910, 49.1904060]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Steinäckerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1957576, 49.1462022], [9.1968242, 49.1460949], [9.1969324, 49.1460847], [9.1977937, 49.1460267], [9.1988372, 49.1459498]], [[9.1988372, 49.1459498], [9.1995298, 49.1458940]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Steinbrünnleswiesen" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1183390, 49.1817070], [9.1182482, 49.1814728], [9.1180960, 49.1812064], [9.1183648, 49.1810331], [9.1184912, 49.1810211], [9.1184691, 49.1807845], [9.1186750, 49.1806459], [9.1188847, 49.1805734], [9.1193252, 49.1805108], [9.1199244, 49.1804265], [9.1200204, 49.1804459], [9.1200531, 49.1810321], [9.1202624, 49.1814740], [9.1196991, 49.1815821], [9.1196473, 49.1814936], [9.1193350, 49.1815223], [9.1188508, 49.1816172], [9.1183390, 49.1817070]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Steinhaldestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1749355, 49.1563965], [9.1745880, 49.1562636], [9.1742669, 49.1561723], [9.1736908, 49.1560189], [9.1734130, 49.1559370], [9.1732343, 49.1558983], [9.1728877, 49.1558480], [9.1724739, 49.1557278], [9.1722145, 49.1556538], [9.1717053, 49.1555085], [9.1709198, 49.1552943], [9.1700775, 49.1550695], [9.1699267, 49.1553052], [9.1697867, 49.1555131]], [[9.1736908, 49.1560189], [9.1739018, 49.1557214], [9.1739192, 49.1556853]], [[9.1699267, 49.1553052], [9.1708787, 49.1555602], [9.1709527, 49.1554953]], [[9.1722145, 49.1556538], [9.1724279, 49.1553506], [9.1728151, 49.1554200]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Steinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2211946, 49.1370764], [9.2213399, 49.1370639]], [[9.2213399, 49.1370639], [9.2214103, 49.1370532], [9.2215321, 49.1370159], [9.2223015, 49.1366120], [9.2228484, 49.1363510]], [[9.2267513, 49.1344235], [9.2266756, 49.1344288], [9.2265922, 49.1344551], [9.2263308, 49.1345866], [9.2261280, 49.1346832], [9.2258974, 49.1347929], [9.2254924, 49.1350004], [9.2254625, 49.1350158], [9.2250223, 49.1352417], [9.2248661, 49.1353195], [9.2242131, 49.1356589], [9.2234875, 49.1360174], [9.2234410, 49.1360408], [9.2228484, 49.1363510]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Steinweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1796292, 49.1165461], [9.1797955, 49.1168377], [9.1800023, 49.1173507], [9.1801321, 49.1178039], [9.1801543, 49.1178668], [9.1801772, 49.1180579], [9.1801746, 49.1181244]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Stephanstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2192912, 49.1289267], [9.2193983, 49.1294156], [9.2195539, 49.1301257]], [[9.2187309, 49.1297850], [9.2186853, 49.1295990], [9.2186799, 49.1295656], [9.2186960, 49.1295428], [9.2187240, 49.1295337], [9.2187390, 49.1295288], [9.2188006, 49.1295218], [9.2190474, 49.1294937], [9.2190876, 49.1294849], [9.2191037, 49.1294586], [9.2191225, 49.1294445], [9.2191601, 49.1294375], [9.2193983, 49.1294156]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Sternenfelser Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2090471, 49.1308539], [9.2086994, 49.1309916], [9.2084272, 49.1310961], [9.2081831, 49.1311891], [9.2079189, 49.1312970], [9.2077647, 49.1313611], [9.2075917, 49.1314453], [9.2074562, 49.1315111], [9.2073530, 49.1315678], [9.2073096, 49.1315908], [9.2072869, 49.1315947], [9.2072587, 49.1315918]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Stettener Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1798533, 49.1419724], [9.1798192, 49.1420587], [9.1798175, 49.1425107], [9.1798225, 49.1426552], [9.1798294, 49.1429108], [9.1798307, 49.1429583], [9.1798305, 49.1433652], [9.1798305, 49.1434330], [9.1798212, 49.1434792], [9.1797799, 49.1435134], [9.1797123, 49.1435378], [9.1796349, 49.1435469], [9.1793507, 49.1435468], [9.1783456, 49.1435318], [9.1778273, 49.1435352], [9.1778183, 49.1435349], [9.1768090, 49.1435367]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Stettenfelser Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2104448, 49.1311635], [9.2099552, 49.1300990]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Stettiner Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2007871, 49.1636635], [9.2010357, 49.1636610], [9.2014630, 49.1637175], [9.2019934, 49.1637751], [9.2020930, 49.1635682], [9.2021043, 49.1635060], [9.2021246, 49.1634162], [9.2021416, 49.1632794], [9.2021439, 49.1631377], [9.2021464, 49.1629985], [9.2021049, 49.1628570], [9.2019496, 49.1628155], [9.2011407, 49.1628790]], [[9.2010357, 49.1636610], [9.2009796, 49.1633756]], [[9.2009796, 49.1633756], [9.2021246, 49.1634162]], [[9.2011033, 49.1631396], [9.2021439, 49.1631377]], [[9.2021416, 49.1632794], [9.2024773, 49.1632736]], [[9.2021534, 49.1627757], [9.2024878, 49.1626888]], [[9.2021049, 49.1628570], [9.2021534, 49.1627757]], [[9.2024210, 49.1635700], [9.2020930, 49.1635682]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Steubenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2265306, 49.1460113], [9.2264138, 49.1454853], [9.2263935, 49.1454057]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Stielerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2266479, 49.1549814], [9.2271562, 49.1544827], [9.2272705, 49.1543545], [9.2272806, 49.1543218], [9.2272748, 49.1542825], [9.2272471, 49.1542136], [9.2271054, 49.1538421], [9.2270834, 49.1537794], [9.2268956, 49.1532371], [9.2268343, 49.1530663], [9.2266927, 49.1526998], [9.2264755, 49.1521630], [9.2262938, 49.1516633], [9.2261452, 49.1512752]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Stockgartenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1908938, 49.1327386], [9.1910187, 49.1327115], [9.1912764, 49.1326513], [9.1913479, 49.1325453], [9.1914139, 49.1325010], [9.1915318, 49.1324781]], [[9.1915318, 49.1324781], [9.1925809, 49.1324158]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Stockheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1840962, 49.1311130], [9.1843737, 49.1309632], [9.1847271, 49.1308861], [9.1849361, 49.1308494], [9.1852036, 49.1308259], [9.1852643, 49.1308227], [9.1859782, 49.1307850], [9.1867958, 49.1306278], [9.1872513, 49.1305349], [9.1875513, 49.1304731], [9.1881416, 49.1303400], [9.1882141, 49.1302970], [9.1882543, 49.1302357], [9.1883606, 49.1302016], [9.1884686, 49.1301827], [9.1885576, 49.1301784], [9.1887669, 49.1301825], [9.1888730, 49.1301845]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Stockportstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2071652, 49.1183598], [9.2071632, 49.1184563], [9.2071590, 49.1186559], [9.2071671, 49.1190729], [9.2071805, 49.1191185], [9.2072368, 49.1192019]], [[9.2073696, 49.1191141], [9.2073756, 49.1191309], [9.2073748, 49.1193570], [9.2073730, 49.1193827], [9.2073702, 49.1199124]], [[9.2074192, 49.1193823], [9.2073730, 49.1193827]], [[9.2071805, 49.1191185], [9.2073696, 49.1191141], [9.2078604, 49.1191054], [9.2087729, 49.1191065]], [[9.2075104, 49.1193816], [9.2074192, 49.1193823]], [[9.2075211, 49.1187551], [9.2075573, 49.1187516], [9.2075721, 49.1187367], [9.2075748, 49.1187148], [9.2075815, 49.1184556]], [[9.2082440, 49.1193757], [9.2075104, 49.1193816]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Stolzestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2225436, 49.1306204], [9.2224109, 49.1306239], [9.2219705, 49.1306331]], [[9.2219802, 49.1309261], [9.2219761, 49.1308041], [9.2219705, 49.1306331], [9.2219555, 49.1303447], [9.2219488, 49.1302894], [9.2219354, 49.1302332], [9.2218286, 49.1298538], [9.2217932, 49.1297304], [9.2216886, 49.1293688], [9.2216523, 49.1292318], [9.2216081, 49.1290854], [9.2215505, 49.1289318], [9.2214848, 49.1287589], [9.2214445, 49.1286571], [9.2214115, 49.1285974], [9.2213963, 49.1284790], [9.2213413, 49.1274470], [9.2213289, 49.1270584]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Stormweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2087223, 49.1260057], [9.2090299, 49.1259356], [9.2092358, 49.1258929], [9.2094433, 49.1258496], [9.2096802, 49.1257991], [9.2097739, 49.1257819], [9.2100656, 49.1257396]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Straßburger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1076169, 49.1816574], [9.1079158, 49.1824990], [9.1079266, 49.1825230], [9.1080895, 49.1828317], [9.1081579, 49.1829291], [9.1082807, 49.1831041]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Stresemannstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1763174, 49.1492699], [9.1765711, 49.1492661], [9.1774356, 49.1492531], [9.1779217, 49.1492524], [9.1780070, 49.1492370], [9.1780135, 49.1491022], [9.1780624, 49.1485970], [9.1780842, 49.1484082], [9.1781074, 49.1482280], [9.1781178, 49.1481235], [9.1781170, 49.1480882], [9.1781068, 49.1477513], [9.1781056, 49.1475059], [9.1781040, 49.1472496], [9.1781007, 49.1470371], [9.1780990, 49.1469289], [9.1780842, 49.1465946], [9.1780773, 49.1463487], [9.1780761, 49.1460267]], [[9.1780990, 49.1469289], [9.1794167, 49.1469092], [9.1799347, 49.1469007]], [[9.1781170, 49.1480882], [9.1794160, 49.1480684]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Strombergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1911556, 49.1284993], [9.1911362, 49.1284405], [9.1911084, 49.1283978], [9.1910464, 49.1283685], [9.1906901, 49.1281999], [9.1901141, 49.1279185]], [[9.1909550, 49.1284868], [9.1909661, 49.1284095], [9.1910004, 49.1283775], [9.1910464, 49.1283685]], [[9.1911556, 49.1284993], [9.1913433, 49.1291813]], [[9.1913433, 49.1291813], [9.1915284, 49.1298438], [9.1916942, 49.1303860]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Sturzstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1884059, 49.1432390], [9.1875686, 49.1433970], [9.1870599, 49.1434830], [9.1861427, 49.1436363]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Stuttgarter Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2225786, 49.1240079], [9.2225872, 49.1240933], [9.2226027, 49.1242462], [9.2226715, 49.1249244], [9.2226974, 49.1250270]], [[9.2224100, 49.1240172], [9.2224064, 49.1238724], [9.2223505, 49.1222588], [9.2223371, 49.1220664]], [[9.2228014, 49.1257604], [9.2227339, 49.1256164], [9.2226204, 49.1253741], [9.2225557, 49.1251511], [9.2225078, 49.1248792], [9.2224219, 49.1241211], [9.2224100, 49.1240172]], [[9.2229730, 49.1257386], [9.2230534, 49.1258871], [9.2234178, 49.1265601], [9.2235533, 49.1268075], [9.2235985, 49.1268876], [9.2241074, 49.1277261], [9.2241674, 49.1278225], [9.2247068, 49.1287248], [9.2247586, 49.1288180], [9.2250847, 49.1293407], [9.2251445, 49.1294421], [9.2255667, 49.1300844]], [[9.2264341, 49.1311709], [9.2265475, 49.1312962], [9.2266201, 49.1313817], [9.2266927, 49.1314661], [9.2267221, 49.1315003], [9.2267696, 49.1315554], [9.2268275, 49.1316088], [9.2268976, 49.1316991]], [[9.2271109, 49.1319727], [9.2271683, 49.1320482], [9.2274124, 49.1323587], [9.2274812, 49.1324516]], [[9.2267594, 49.1317492], [9.2266823, 49.1316574]], [[9.2286602, 49.1342496], [9.2284530, 49.1339449], [9.2283393, 49.1338113], [9.2281893, 49.1336366]], [[9.2281893, 49.1336366], [9.2281136, 49.1335436], [9.2279797, 49.1333668], [9.2276057, 49.1328735], [9.2274122, 49.1326024], [9.2270507, 49.1320989]], [[9.2224038, 49.1209926], [9.2224126, 49.1211492], [9.2224320, 49.1214927], [9.2224372, 49.1217459], [9.2224680, 49.1225806], [9.2224837, 49.1228543], [9.2225014, 49.1231644], [9.2225223, 49.1233933]], [[9.2224941, 49.1186701], [9.2224392, 49.1191114]], [[9.2263232, 49.1312068], [9.2261795, 49.1310444], [9.2259647, 49.1308017], [9.2259102, 49.1307305], [9.2257992, 49.1305855], [9.2255177, 49.1301824], [9.2251083, 49.1295565], [9.2250473, 49.1294633], [9.2249886, 49.1293669], [9.2248791, 49.1291873], [9.2248123, 49.1290776], [9.2246189, 49.1287460], [9.2234768, 49.1268192], [9.2233645, 49.1266426], [9.2232874, 49.1265103], [9.2231980, 49.1263861]], [[9.2277924, 49.1328510], [9.2281515, 49.1333051], [9.2282540, 49.1334337]], [[9.2274812, 49.1324516], [9.2275497, 49.1325441], [9.2277924, 49.1328510]], [[9.2266823, 49.1316574], [9.2265709, 49.1315193]], [[9.2270507, 49.1320989], [9.2269824, 49.1320128]], [[9.2255667, 49.1300844], [9.2260045, 49.1306460]], [[9.2265709, 49.1315193], [9.2263898, 49.1312908], [9.2263232, 49.1312068]], [[9.2260045, 49.1306460], [9.2262927, 49.1310073], [9.2264341, 49.1311709]], [[9.2231980, 49.1263861], [9.2231468, 49.1263149], [9.2228926, 49.1259069], [9.2228014, 49.1257604]], [[9.2226974, 49.1250270], [9.2227298, 49.1251553], [9.2228022, 49.1253681], [9.2229014, 49.1256045], [9.2229730, 49.1257386]], [[9.2223371, 49.1220664], [9.2223289, 49.1219483]], [[9.2224392, 49.1191114], [9.2223646, 49.1195489]], [[9.2223289, 49.1219483], [9.2223136, 49.1217354]], [[9.2223646, 49.1195489], [9.2223466, 49.1198841], [9.2223397, 49.1202773]], [[9.2225223, 49.1233933], [9.2225657, 49.1238674], [9.2225786, 49.1240079]], [[9.2223136, 49.1217354], [9.2222717, 49.1211516], [9.2222607, 49.1209985]], [[9.2223397, 49.1202773], [9.2223826, 49.1207211], [9.2223899, 49.1207923], [9.2224038, 49.1209926]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Sudetenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1989233, 49.1629022], [9.1985974, 49.1629265], [9.1984342, 49.1629377], [9.1982479, 49.1629606], [9.1981490, 49.1629919], [9.1981106, 49.1630314], [9.1980925, 49.1631139], [9.1981286, 49.1632197], [9.1983577, 49.1635542], [9.1984524, 49.1636870]], [[9.1990875, 49.1631895], [9.1988897, 49.1633967], [9.1987389, 49.1634986], [9.1984524, 49.1636870], [9.1983140, 49.1637679]], [[9.1987389, 49.1634986], [9.1986225, 49.1633459], [9.1984732, 49.1630077], [9.1984342, 49.1629377]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Südstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2143189, 49.1360152], [9.2141054, 49.1361106], [9.2138547, 49.1362129], [9.2136835, 49.1362812], [9.2124261, 49.1368149], [9.2120296, 49.1369840], [9.2119728, 49.1370086]], [[9.2187271, 49.1344144], [9.2189223, 49.1343857], [9.2190002, 49.1343777], [9.2192743, 49.1343537]], [[9.2283246, 49.1335154], [9.2281893, 49.1336366]], [[9.2238842, 49.1341626], [9.2234548, 49.1341921]], [[9.2187467, 49.1345108], [9.2185268, 49.1345472], [9.2184820, 49.1345543], [9.2183000, 49.1345942], [9.2180843, 49.1346719], [9.2158716, 49.1354581], [9.2156097, 49.1355510]], [[9.2205478, 49.1342767], [9.2207017, 49.1342672], [9.2213014, 49.1342303]], [[9.2269531, 49.1340062], [9.2266764, 49.1340146], [9.2261310, 49.1340322], [9.2257942, 49.1340473], [9.2254050, 49.1340713], [9.2250998, 49.1340875], [9.2246513, 49.1341135], [9.2241846, 49.1341434]], [[9.2091075, 49.1382318], [9.2093385, 49.1381297], [9.2106208, 49.1375633]], [[9.2106699, 49.1376207], [9.2105306, 49.1376810], [9.2100618, 49.1379171]], [[9.2119424, 49.1369598], [9.2119847, 49.1369394], [9.2123991, 49.1367314], [9.2127759, 49.1365625]], [[9.2142721, 49.1359113], [9.2145258, 49.1358214], [9.2152214, 49.1355752], [9.2155907, 49.1354396], [9.2157335, 49.1353955], [9.2158893, 49.1353466], [9.2164508, 49.1351640], [9.2175041, 49.1347858]], [[9.2225897, 49.1341538], [9.2228412, 49.1341395], [9.2241761, 49.1340634], [9.2246375, 49.1340375], [9.2250630, 49.1340111], [9.2253532, 49.1339925], [9.2257071, 49.1339702], [9.2260298, 49.1339528], [9.2260796, 49.1339487], [9.2264196, 49.1339308], [9.2266823, 49.1339173]], [[9.2241846, 49.1341434], [9.2238842, 49.1341626]], [[9.2213014, 49.1342303], [9.2215879, 49.1342127]], [[9.2156097, 49.1355510], [9.2152737, 49.1356702]], [[9.2152737, 49.1356702], [9.2145698, 49.1359199], [9.2143189, 49.1360152]], [[9.2225996, 49.1342510], [9.2223275, 49.1342673], [9.2219509, 49.1342899]], [[9.2219509, 49.1342899], [9.2215916, 49.1343115], [9.2212521, 49.1343365]], [[9.2234548, 49.1341921], [9.2228588, 49.1342331], [9.2225996, 49.1342510]], [[9.2212521, 49.1343365], [9.2207181, 49.1343759], [9.2205678, 49.1343872]], [[9.2205678, 49.1343872], [9.2202587, 49.1344091], [9.2200527, 49.1344243]], [[9.2175041, 49.1347858], [9.2182808, 49.1345069], [9.2185042, 49.1344538], [9.2187271, 49.1344144]], [[9.2215879, 49.1342127], [9.2220370, 49.1341858], [9.2223181, 49.1341695], [9.2225897, 49.1341538]], [[9.2192743, 49.1343537], [9.2196925, 49.1343251], [9.2202448, 49.1342954], [9.2205478, 49.1342767]], [[9.2127759, 49.1365625], [9.2137680, 49.1361177], [9.2140179, 49.1360105], [9.2142721, 49.1359113]], [[9.2200527, 49.1344243], [9.2190189, 49.1344793], [9.2189165, 49.1344876], [9.2187467, 49.1345108]], [[9.2100618, 49.1379171], [9.2097736, 49.1380622], [9.2094385, 49.1382317], [9.2092157, 49.1383443]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Sülmermühlstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2194402, 49.1457730], [9.2194845, 49.1459778], [9.2195027, 49.1459986], [9.2195287, 49.1460115], [9.2195560, 49.1460188], [9.2195916, 49.1460206], [9.2200898, 49.1459761], [9.2202851, 49.1459589], [9.2205571, 49.1459368]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Sülmerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2209598, 49.1455302], [9.2209250, 49.1454642], [9.2208821, 49.1452473], [9.2208670, 49.1451475], [9.2208466, 49.1450076], [9.2208299, 49.1448412], [9.2208316, 49.1448088], [9.2208458, 49.1447750], [9.2208705, 49.1447304], [9.2208864, 49.1446979], [9.2209067, 49.1446654], [9.2209096, 49.1446109], [9.2208507, 49.1442386], [9.2208142, 49.1440613]], [[9.2208142, 49.1440613], [9.2207782, 49.1438046], [9.2207161, 49.1434753], [9.2207455, 49.1433436]], [[9.2207455, 49.1433436], [9.2207100, 49.1431429], [9.2206611, 49.1429308]], [[9.2206611, 49.1429308], [9.2206437, 49.1428609], [9.2206091, 49.1427212], [9.2205971, 49.1426729], [9.2204948, 49.1423543], [9.2204144, 49.1421274], [9.2203502, 49.1419062], [9.2202426, 49.1418289], [9.2202381, 49.1418192]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Synagogenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2212646, 49.1400506], [9.2213188, 49.1400236], [9.2217833, 49.1397924], [9.2218930, 49.1397331], [9.2219278, 49.1397082], [9.2223045, 49.1393212]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Szillaweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1782518, 49.1156476], [9.1779351, 49.1149677], [9.1779029, 49.1149162], [9.1778353, 49.1148905], [9.1769166, 49.1147779]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Tabakstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1741957, 49.1154758], [9.1746699, 49.1145085]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Talheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1685488, 49.1156295], [9.1685415, 49.1156050], [9.1685523, 49.1155771], [9.1687511, 49.1153385], [9.1688857, 49.1151671], [9.1690024, 49.1150332], [9.1690565, 49.1149711], [9.1692002, 49.1148059], [9.1693877, 49.1145903], [9.1695097, 49.1144554], [9.1699131, 49.1140173], [9.1699972, 49.1139362], [9.1700952, 49.1138369], [9.1704288, 49.1134858]], [[9.1741634, 49.1050191], [9.1742103, 49.1047630]], [[9.1713296, 49.1123663], [9.1714819, 49.1120719], [9.1716941, 49.1116620], [9.1719803, 49.1109584], [9.1720960, 49.1106777], [9.1722220, 49.1103722], [9.1723122, 49.1101533], [9.1725320, 49.1096177]], [[9.1704288, 49.1134858], [9.1706772, 49.1132276], [9.1709293, 49.1129598], [9.1711400, 49.1126719], [9.1712098, 49.1125595], [9.1713296, 49.1123663]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Talstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1958020, 49.1685889], [9.1957943, 49.1685109], [9.1957382, 49.1683720], [9.1956164, 49.1682185], [9.1953913, 49.1680247], [9.1950253, 49.1677731]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Talweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1446612, 49.1929513], [9.1450019, 49.1932873], [9.1451335, 49.1934171], [9.1454150, 49.1936948], [9.1455291, 49.1938174], [9.1455441, 49.1938336]], [[9.1455441, 49.1938336], [9.1456021, 49.1938899]], [[9.1456021, 49.1938899], [9.1458871, 49.1941719]], [[9.1451335, 49.1934171], [9.1446233, 49.1936510], [9.1445385, 49.1936803]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Tannenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1843869, 49.1495155], [9.1845484, 49.1485815], [9.1845933, 49.1482731]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Tatschenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1790201, 49.1849972], [9.1790107, 49.1849055], [9.1790108, 49.1834281], [9.1790108, 49.1833127]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Taubenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1216266, 49.1847234], [9.1213127, 49.1843925]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Taxisstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1724059, 49.1163413], [9.1721919, 49.1169512], [9.1721478, 49.1170865], [9.1720051, 49.1174748]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Teichäckerweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1537187, 49.1222236], [9.1538314, 49.1221137], [9.1538577, 49.1220805], [9.1538614, 49.1220342], [9.1536801, 49.1212464]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Teichstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1931826, 49.1379545], [9.1930832, 49.1376010]], [[9.1897914, 49.1382069], [9.1910645, 49.1381716], [9.1918694, 49.1380933], [9.1919361, 49.1380873], [9.1925160, 49.1380265], [9.1931826, 49.1379545], [9.1935723, 49.1379176]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Teutonenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1779025, 49.1651265], [9.1780339, 49.1655896], [9.1780958, 49.1656474], [9.1781839, 49.1656835], [9.1783055, 49.1657024], [9.1784313, 49.1657087], [9.1785749, 49.1657044], [9.1787301, 49.1656798], [9.1791215, 49.1655242], [9.1793746, 49.1654235], [9.1794802, 49.1653898], [9.1795909, 49.1653813], [9.1797056, 49.1653973], [9.1802553, 49.1654978], [9.1808979, 49.1656355], [9.1809415, 49.1656384], [9.1809985, 49.1656315], [9.1810525, 49.1656145], [9.1810943, 49.1655911], [9.1811271, 49.1655650], [9.1811761, 49.1655100], [9.1812988, 49.1653044], [9.1813207, 49.1652435], [9.1813182, 49.1651823], [9.1812840, 49.1651204], [9.1812165, 49.1650693], [9.1791016, 49.1646226], [9.1790465, 49.1646117]], [[9.1802553, 49.1654978], [9.1800305, 49.1659458]], [[9.1809415, 49.1656384], [9.1807233, 49.1660978]], [[9.1812165, 49.1650693], [9.1813273, 49.1648720], [9.1817041, 49.1649480]], [[9.1780958, 49.1656474], [9.1779114, 49.1657595], [9.1777537, 49.1658257], [9.1776311, 49.1658548]], [[9.1791215, 49.1655242], [9.1791593, 49.1655860], [9.1791582, 49.1656078], [9.1791453, 49.1656360], [9.1789539, 49.1659820]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Theodor-Heuss-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1602746, 49.1192055], [9.1601499, 49.1191952], [9.1600851, 49.1191896], [9.1598609, 49.1191880], [9.1596405, 49.1192001]], [[9.1596405, 49.1192001], [9.1594933, 49.1192162], [9.1591497, 49.1192702], [9.1581916, 49.1194951], [9.1579909, 49.1195355], [9.1577406, 49.1195806], [9.1575776, 49.1195948], [9.1574467, 49.1196009], [9.1574081, 49.1195999], [9.1569861, 49.1195795], [9.1557393, 49.1194963], [9.1556487, 49.1194903], [9.1552114, 49.1194667], [9.1547756, 49.1194409], [9.1543621, 49.1194108], [9.1541682, 49.1193889], [9.1540593, 49.1193588]], [[9.1540593, 49.1193588], [9.1539470, 49.1192639], [9.1538617, 49.1191541], [9.1537781, 49.1189510], [9.1534200, 49.1181053], [9.1532614, 49.1178501], [9.1530462, 49.1176298], [9.1528991, 49.1175215]], [[9.1703561, 49.1226665], [9.1699641, 49.1225649], [9.1699272, 49.1225551], [9.1695660, 49.1224547], [9.1692553, 49.1223569], [9.1684364, 49.1220955], [9.1678470, 49.1219072], [9.1657782, 49.1212438], [9.1656510, 49.1212003], [9.1653194, 49.1210831], [9.1644766, 49.1207906], [9.1639874, 49.1206177], [9.1635505, 49.1204473], [9.1632883, 49.1203369], [9.1629326, 49.1201621], [9.1625859, 49.1200013], [9.1622272, 49.1198577], [9.1618560, 49.1197183], [9.1614011, 49.1195160], [9.1609891, 49.1193700], [9.1606458, 49.1192745], [9.1602746, 49.1192055]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Theodor-Körner-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1940528, 49.1692695], [9.1939787, 49.1691425], [9.1939259, 49.1691044], [9.1932589, 49.1689263]], [[9.1957443, 49.1686614], [9.1957107, 49.1687012], [9.1956415, 49.1687450], [9.1955176, 49.1687932], [9.1953181, 49.1688545], [9.1946867, 49.1690682], [9.1940528, 49.1692695], [9.1937858, 49.1693540], [9.1936385, 49.1694058], [9.1934337, 49.1695300]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Theodor-Zimmermann-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1857090, 49.1333497], [9.1872744, 49.1335772]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Theophil-Wurm-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2143746, 49.1274861], [9.2142957, 49.1272319], [9.2142395, 49.1270689], [9.2141973, 49.1269545], [9.2141579, 49.1268533], [9.2140282, 49.1265311]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Theresienstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2055573, 49.1337913], [9.2054701, 49.1340391], [9.2050536, 49.1354737], [9.2044548, 49.1375525], [9.2043465, 49.1378782], [9.2043024, 49.1380557], [9.2042782, 49.1381438]], [[9.2050536, 49.1354737], [9.2047815, 49.1354558]], [[9.2042132, 49.1375182], [9.2044548, 49.1375525]], [[9.2041102, 49.1381181], [9.2041253, 49.1380235], [9.2041281, 49.1379226], [9.2041411, 49.1378501], [9.2041554, 49.1377600], [9.2042132, 49.1375182], [9.2046916, 49.1357822], [9.2047815, 49.1354558], [9.2051972, 49.1339756], [9.2052708, 49.1337230]], [[9.2040745, 49.1385289], [9.2040572, 49.1383518], [9.2040918, 49.1382504]], [[9.2042782, 49.1381438], [9.2042419, 49.1382762], [9.2041906, 49.1383734], [9.2040745, 49.1385289]], [[9.2032985, 49.1409153], [9.2033707, 49.1408054], [9.2034122, 49.1407341], [9.2034960, 49.1404712], [9.2036293, 49.1400455], [9.2037958, 49.1395133], [9.2039106, 49.1390822], [9.2039701, 49.1389058]], [[9.2040918, 49.1382504], [9.2041102, 49.1381181]], [[9.2039701, 49.1389058], [9.2040175, 49.1387399], [9.2040687, 49.1385604], [9.2040745, 49.1385289]], [[9.2040175, 49.1387399], [9.2039352, 49.1386291], [9.2039538, 49.1384410], [9.2038972, 49.1383274]], [[9.2038972, 49.1383274], [9.2038012, 49.1382610], [9.2036673, 49.1382266], [9.2036050, 49.1381734]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Thomas-Mann-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1471729, 49.1905096], [9.1466906, 49.1902935], [9.1465273, 49.1902550], [9.1447521, 49.1898799], [9.1439625, 49.1897130], [9.1434683, 49.1896146], [9.1429040, 49.1894967], [9.1428491, 49.1894848], [9.1427382, 49.1894707], [9.1415559, 49.1893785], [9.1413778, 49.1893646], [9.1409639, 49.1893300], [9.1408609, 49.1893184], [9.1402880, 49.1892054], [9.1402582, 49.1891980], [9.1401886, 49.1891868], [9.1401212, 49.1891849], [9.1399090, 49.1892014]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Thomastraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2005402, 49.1191723], [9.2005455, 49.1192404], [9.2005494, 49.1193402], [9.2005511, 49.1194371], [9.2005679, 49.1196361], [9.2006109, 49.1199316], [9.2006137, 49.1199802], [9.2006148, 49.1200004], [9.2006183, 49.1200101], [9.2006282, 49.1200381], [9.2006832, 49.1201075]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Thomaswert" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2112200, 49.1598437], [9.2114295, 49.1598216], [9.2114820, 49.1598160], [9.2116123, 49.1598365], [9.2117486, 49.1598873], [9.2118185, 49.1599786], [9.2118531, 49.1600860], [9.2118563, 49.1601769], [9.2121965, 49.1602703]], [[9.2078189, 49.1605112], [9.2079470, 49.1604932], [9.2080222, 49.1604826], [9.2086161, 49.1604334], [9.2092123, 49.1603639], [9.2106173, 49.1600195], [9.2107282, 49.1599923], [9.2110850, 49.1599049], [9.2112200, 49.1598437]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Tilsiter Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1963020, 49.1577754], [9.1969375, 49.1577887]], [[9.1945944, 49.1578974], [9.1954401, 49.1578641]], [[9.1954384, 49.1579393], [9.1956975, 49.1577768], [9.1959978, 49.1577766], [9.1961707, 49.1577759], [9.1963020, 49.1577754], [9.1963055, 49.1576848], [9.1963119, 49.1575187], [9.1963165, 49.1573996]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Tischbeinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1994468, 49.1209821], [9.1998128, 49.1211300], [9.1999013, 49.1211669], [9.1999764, 49.1211932], [9.2000569, 49.1212213], [9.2001816, 49.1212573], [9.2007100, 49.1214100], [9.2010754, 49.1215214], [9.2012803, 49.1215834]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Titotstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2218296, 49.1405469], [9.2218826, 49.1405391], [9.2220290, 49.1405176], [9.2240786, 49.1402337]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Tölzer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1671039, 49.1630671], [9.1668410, 49.1626408], [9.1668009, 49.1625884], [9.1667293, 49.1625452]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Trappensee" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2528924, 49.1387355], [9.2528598, 49.1389055], [9.2528510, 49.1390558], [9.2529435, 49.1392239], [9.2530372, 49.1392624], [9.2531877, 49.1393254], [9.2535189, 49.1393032], [9.2538585, 49.1392754], [9.2539944, 49.1391810], [9.2541133, 49.1390310], [9.2541161, 49.1390228], [9.2541517, 49.1389187], [9.2541243, 49.1388727], [9.2541287, 49.1388160], [9.2542075, 49.1388038], [9.2542935, 49.1387381], [9.2543898, 49.1386581], [9.2544133, 49.1385751], [9.2543787, 49.1385478], [9.2542555, 49.1384883], [9.2540652, 49.1384630], [9.2540545, 49.1384616], [9.2539245, 49.1384636], [9.2538010, 49.1384952], [9.2537493, 49.1385177], [9.2537287, 49.1385594], [9.2536717, 49.1385725], [9.2536029, 49.1385721], [9.2535595, 49.1385852], [9.2535539, 49.1386361], [9.2535620, 49.1386670], [9.2536863, 49.1387334], [9.2536208, 49.1388421], [9.2528924, 49.1387355]], [[9.2542647, 49.1392606], [9.2541576, 49.1393838], [9.2541112, 49.1394333], [9.2542311, 49.1395384], [9.2542973, 49.1395915]], [[9.2533153, 49.1385580], [9.2532710, 49.1385159], [9.2532353, 49.1385137], [9.2532165, 49.1384941], [9.2532187, 49.1384685], [9.2531798, 49.1384343], [9.2533635, 49.1383509], [9.2533716, 49.1383575], [9.2533875, 49.1383501], [9.2535739, 49.1382641], [9.2535687, 49.1382579], [9.2536935, 49.1382009], [9.2538209, 49.1383167], [9.2536921, 49.1383825], [9.2536653, 49.1383570], [9.2536049, 49.1383860], [9.2535969, 49.1383799], [9.2534655, 49.1384386], [9.2534977, 49.1384702], [9.2533153, 49.1385580]], [[9.2525056, 49.1386584], [9.2525733, 49.1386643], [9.2527983, 49.1386813], [9.2534686, 49.1387713], [9.2535704, 49.1387868]], [[9.2520920, 49.1403894], [9.2521915, 49.1403715], [9.2522558, 49.1403522], [9.2523148, 49.1403294], [9.2523698, 49.1403153], [9.2524048, 49.1403084], [9.2524887, 49.1402954], [9.2525902, 49.1402858], [9.2526716, 49.1402768], [9.2529253, 49.1402454], [9.2531469, 49.1402241], [9.2534082, 49.1402121], [9.2534800, 49.1402067], [9.2535427, 49.1401970], [9.2535714, 49.1401925], [9.2536546, 49.1401697], [9.2537136, 49.1401521], [9.2538289, 49.1401039], [9.2539241, 49.1400556], [9.2539858, 49.1400162], [9.2540653, 49.1399410], [9.2541588, 49.1398337], [9.2541998, 49.1397723], [9.2542460, 49.1396810], [9.2542973, 49.1395915]], [[9.2549856, 49.1385880], [9.2550713, 49.1386194]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Traubenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2365340, 49.1288250], [9.2360495, 49.1290985], [9.2353539, 49.1293799], [9.2352672, 49.1293986], [9.2351943, 49.1294278], [9.2351688, 49.1294471], [9.2350977, 49.1294787], [9.2350199, 49.1295059]], [[9.2330114, 49.1302176], [9.2331795, 49.1300764], [9.2333126, 49.1300214], [9.2333940, 49.1299621]], [[9.2346228, 49.1296650], [9.2341567, 49.1298218], [9.2334670, 49.1299676], [9.2334274, 49.1299718], [9.2333940, 49.1299621]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Traunsteiner Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1703591, 49.1608706], [9.1710667, 49.1612965]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Trautenhof" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2182847, 49.1436157], [9.2186897, 49.1435623], [9.2190818, 49.1435078]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Tränkgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1605490, 49.1186686], [9.1604027, 49.1188453], [9.1603352, 49.1189908], [9.1602746, 49.1192055]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Trollingerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2261744, 49.1290413], [9.2262479, 49.1290824], [9.2262759, 49.1291058], [9.2262907, 49.1291295], [9.2262932, 49.1291621], [9.2262572, 49.1295217], [9.2262545, 49.1295683], [9.2262612, 49.1296042], [9.2262746, 49.1296279], [9.2262947, 49.1296402], [9.2263242, 49.1296464], [9.2264127, 49.1296481]], [[9.2270136, 49.1301062], [9.2270029, 49.1301606], [9.2269627, 49.1305134], [9.2269615, 49.1305250], [9.2269305, 49.1308293], [9.2269232, 49.1308956], [9.2268891, 49.1312988]], [[9.2268891, 49.1312988], [9.2268888, 49.1313233], [9.2269009, 49.1313444], [9.2269196, 49.1313637], [9.2269384, 49.1313856], [9.2269451, 49.1314137], [9.2269424, 49.1314672]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Truchseßweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1875987, 49.1283292], [9.1869327, 49.1282846], [9.1866735, 49.1282190], [9.1854538, 49.1278434]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Tscherningstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2285525, 49.1558328], [9.2285084, 49.1558837], [9.2284315, 49.1560080], [9.2283808, 49.1561294], [9.2283575, 49.1562626], [9.2283326, 49.1564454], [9.2283302, 49.1565089], [9.2283289, 49.1565283], [9.2282908, 49.1571549], [9.2282816, 49.1573943], [9.2282769, 49.1575731], [9.2282665, 49.1578868], [9.2282528, 49.1585396], [9.2282298, 49.1597742]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Tulpenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1945686, 49.1658902], [9.1944961, 49.1660648]], [[9.1941950, 49.1665158], [9.1944961, 49.1660648]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Tulpenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2104332, 49.1233148], [9.2104323, 49.1233726], [9.2103454, 49.1244404]], [[9.1230300, 49.1835262], [9.1237393, 49.1832940]], [[9.1229651, 49.1834531], [9.1224935, 49.1837081]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Turmstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2187151, 49.1457130], [9.2194499, 49.1456451]], [[9.2204799, 49.1456550], [9.2204532, 49.1456683], [9.2204158, 49.1456747], [9.2201190, 49.1457027], [9.2198620, 49.1457293], [9.2194402, 49.1457730], [9.2192892, 49.1457847], [9.2189847, 49.1458100], [9.2185533, 49.1458502]], [[9.2209250, 49.1454642], [9.2207372, 49.1454878], [9.2204995, 49.1455150], [9.2204845, 49.1455187], [9.2204587, 49.1455338], [9.2204466, 49.1455496]], [[9.2194499, 49.1456451], [9.2204170, 49.1455485], [9.2204466, 49.1455496], [9.2204677, 49.1455597], [9.2204803, 49.1455799], [9.2204898, 49.1456422], [9.2204799, 49.1456550]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Turnerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1836329, 49.1310741], [9.1836730, 49.1308429], [9.1837613, 49.1305612], [9.1838824, 49.1301041]], [[9.1839359, 49.1300962], [9.1841310, 49.1295844]], [[9.1838824, 49.1301041], [9.1839359, 49.1300962], [9.1853352, 49.1302334], [9.1853833, 49.1302483], [9.1854041, 49.1302689], [9.1854146, 49.1302947], [9.1854085, 49.1303623], [9.1853623, 49.1304557], [9.1852932, 49.1305477], [9.1852100, 49.1306091], [9.1851222, 49.1306297], [9.1849722, 49.1306369], [9.1848318, 49.1306290], [9.1845386, 49.1305961], [9.1837613, 49.1305612]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Uhdestraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1935386, 49.1196279], [9.1936400, 49.1196496], [9.1937312, 49.1196736], [9.1942797, 49.1198409], [9.1945437, 49.1199338], [9.1949940, 49.1201008], [9.1953977, 49.1202571], [9.1960243, 49.1205149], [9.1970595, 49.1209226], [9.1971813, 49.1209593], [9.1974783, 49.1210495], [9.1977558, 49.1211552], [9.1980128, 49.1212587], [9.1982452, 49.1213509], [9.1988681, 49.1215952]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Uhlandplatz" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2225284, 49.1393542], [9.2222227, 49.1392201], [9.2222226, 49.1391983], [9.2222577, 49.1391888], [9.2225940, 49.1391729], [9.2226318, 49.1391841], [9.2226438, 49.1392284], [9.2226226, 49.1393464], [9.2226025, 49.1393651], [9.2225664, 49.1393658], [9.2225284, 49.1393542]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Uhlandstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2223722, 49.1325030], [9.2223876, 49.1326281]], [[9.2225897, 49.1341538], [9.2225996, 49.1342510]], [[9.2226803, 49.1394991], [9.2226790, 49.1394780], [9.2227209, 49.1391848], [9.2227436, 49.1391128]], [[9.2225996, 49.1342510], [9.2226103, 49.1343373], [9.2226344, 49.1345313], [9.2227079, 49.1351769], [9.2227992, 49.1358556], [9.2228484, 49.1363510], [9.2230007, 49.1375387], [9.2229979, 49.1375929], [9.2229778, 49.1377155], [9.2229462, 49.1378528], [9.2229420, 49.1378806], [9.2229115, 49.1380967], [9.2228751, 49.1383247], [9.2228439, 49.1385160], [9.2227619, 49.1390490], [9.2227436, 49.1391128]], [[9.2234410, 49.1360408], [9.2234161, 49.1360223], [9.2233708, 49.1360045], [9.2228619, 49.1358617], [9.2227992, 49.1358556]], [[9.2225897, 49.1341538], [9.2225828, 49.1340823], [9.2225437, 49.1337530], [9.2224726, 49.1331245], [9.2224449, 49.1330682], [9.2224424, 49.1330269], [9.2224172, 49.1328806], [9.2223940, 49.1327131], [9.2223876, 49.1326281]], [[9.2223225, 49.1321343], [9.2223590, 49.1323663], [9.2223690, 49.1324749], [9.2223722, 49.1325030]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Ulmenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1816131, 49.1493286], [9.1816458, 49.1491203], [9.1817968, 49.1487269]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Ulrich-Fischer-Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1853706, 49.1281795], [9.1854538, 49.1278434], [9.1855659, 49.1273239]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Ulrich-Stechele-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2401766, 49.1390297], [9.2402695, 49.1390457], [9.2409642, 49.1391751], [9.2413400, 49.1392315], [9.2416101, 49.1392454], [9.2420468, 49.1392431], [9.2426049, 49.1392040], [9.2432046, 49.1391046], [9.2432699, 49.1390926]], [[9.2432699, 49.1390926], [9.2431544, 49.1387841]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Ulrichstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1965626, 49.1700131], [9.1965453, 49.1699786]], [[9.1965332, 49.1697659], [9.1965157, 49.1694766]], [[9.1964936, 49.1694769], [9.1964453, 49.1690250]], [[9.1964424, 49.1687982], [9.1964453, 49.1690250]], [[9.1965453, 49.1699786], [9.1965332, 49.1697659]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Untere Kanalstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1763118, 49.1186426], [9.1748606, 49.1184829], [9.1739508, 49.1183944], [9.1734018, 49.1183320], [9.1727891, 49.1182674], [9.1716510, 49.1180819], [9.1707519, 49.1179349], [9.1697288, 49.1177708], [9.1689103, 49.1176586], [9.1684436, 49.1176134], [9.1679597, 49.1175263], [9.1667452, 49.1172743]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Untere Neckarstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2175825, 49.1451588], [9.2174852, 49.1449487], [9.2173490, 49.1445979], [9.2173293, 49.1445604], [9.2171423, 49.1442049], [9.2168769, 49.1435582], [9.2165995, 49.1429310], [9.2163367, 49.1423732], [9.2163243, 49.1423415], [9.2163159, 49.1423192], [9.2163017, 49.1422858]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Unterlandstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1506855, 49.1926859], [9.1508246, 49.1925916], [9.1511577, 49.1922939], [9.1513766, 49.1920360], [9.1515623, 49.1917601], [9.1518972, 49.1911697], [9.1520909, 49.1909100], [9.1523177, 49.1906995], [9.1525531, 49.1905037], [9.1527996, 49.1903743], [9.1530654, 49.1902581], [9.1534941, 49.1901142], [9.1539335, 49.1899949], [9.1544704, 49.1898800], [9.1550355, 49.1897921]], [[9.1446102, 49.1929720], [9.1442751, 49.1930982], [9.1441484, 49.1931385], [9.1438044, 49.1932231], [9.1436831, 49.1932529]], [[9.1501274, 49.1928887], [9.1499470, 49.1929125], [9.1497751, 49.1929183], [9.1497550, 49.1929175], [9.1495996, 49.1929109], [9.1494657, 49.1928986], [9.1493250, 49.1928820], [9.1492422, 49.1928694]], [[9.1436831, 49.1932529], [9.1434375, 49.1933180], [9.1432939, 49.1933615], [9.1432207, 49.1933874], [9.1431748, 49.1934064], [9.1431366, 49.1934251], [9.1430630, 49.1934745], [9.1430314, 49.1934892], [9.1429209, 49.1935149], [9.1426405, 49.1935680], [9.1426171, 49.1935728], [9.1423957, 49.1936230], [9.1421566, 49.1936877], [9.1419457, 49.1937444], [9.1418795, 49.1937661]], [[9.1506855, 49.1926859], [9.1504106, 49.1928076], [9.1501274, 49.1928887]], [[9.1492422, 49.1928694], [9.1491044, 49.1928450], [9.1488349, 49.1928007], [9.1486389, 49.1927685], [9.1479708, 49.1926580], [9.1478987, 49.1926478], [9.1475667, 49.1925969], [9.1475367, 49.1925918], [9.1473806, 49.1925685], [9.1472152, 49.1925462], [9.1469591, 49.1925210], [9.1467961, 49.1925109], [9.1466573, 49.1925067], [9.1465755, 49.1925074], [9.1464840, 49.1925081], [9.1460177, 49.1925420], [9.1456962, 49.1925987], [9.1455314, 49.1926308], [9.1453440, 49.1926809], [9.1451829, 49.1927345], [9.1449925, 49.1928148], [9.1449117, 49.1928488], [9.1448810, 49.1928618], [9.1447387, 49.1929197], [9.1446612, 49.1929513], [9.1446102, 49.1929720]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Urbanstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2205478, 49.1342767], [9.2205678, 49.1343872], [9.2205866, 49.1344909], [9.2206495, 49.1347639], [9.2206922, 49.1349492], [9.2207540, 49.1352099], [9.2207771, 49.1353079], [9.2207867, 49.1353494], [9.2208497, 49.1356158]], [[9.2202953, 49.1330895], [9.2203246, 49.1332279]], [[9.2209486, 49.1360371], [9.2210873, 49.1366335], [9.2211946, 49.1370764]], [[9.2200789, 49.1322498], [9.2201147, 49.1323754], [9.2201649, 49.1325936]], [[9.2203246, 49.1332279], [9.2204437, 49.1337994]], [[9.2208497, 49.1356158], [9.2208863, 49.1357739], [9.2209486, 49.1360371]], [[9.2204437, 49.1337994], [9.2205193, 49.1341475], [9.2205255, 49.1341754], [9.2205478, 49.1342767]], [[9.2201649, 49.1325936], [9.2202003, 49.1327473], [9.2202842, 49.1330495], [9.2202953, 49.1330895]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Veilchenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1226031, 49.1829438], [9.1232263, 49.1827312]], [[9.1225503, 49.1828801], [9.1221341, 49.1830891]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Verdistraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1501751, 49.2010572], [9.1502600, 49.2010157], [9.1505125, 49.2009226], [9.1506048, 49.2008915], [9.1508489, 49.2008282], [9.1510798, 49.2007667], [9.1512016, 49.2007379], [9.1515444, 49.2006570], [9.1516254, 49.2006321], [9.1518306, 49.2005656], [9.1518797, 49.2005513], [9.1519967, 49.2005121], [9.1522280, 49.2004390], [9.1525870, 49.2003265], [9.1526727, 49.2003042], [9.1531030, 49.2002033], [9.1533776, 49.2001520], [9.1538821, 49.2000766], [9.1542409, 49.2000230], [9.1543228, 49.2000107], [9.1544229, 49.1999811], [9.1550753, 49.1996848], [9.1551059, 49.1996515], [9.1551300, 49.1995942]], [[9.1516439, 49.2003116], [9.1516643, 49.2002997], [9.1521875, 49.1999917]], [[9.1518797, 49.2005513], [9.1524839, 49.2009566]], [[9.1551300, 49.1995942], [9.1551932, 49.1995982], [9.1552864, 49.1995811], [9.1559291, 49.1992726], [9.1559875, 49.1992372], [9.1561373, 49.1990734]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Victoria-Wolff-Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2137084, 49.1373079], [9.2136950, 49.1375151], [9.2142818, 49.1383475]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Viehweide" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1959981, 49.1312727], [9.1960597, 49.1314176], [9.1960854, 49.1314719], [9.1961976, 49.1316869], [9.1963619, 49.1319964], [9.1965301, 49.1322600], [9.1967189, 49.1324831], [9.1968103, 49.1325564], [9.1968473, 49.1325861], [9.1969999, 49.1326790], [9.1971508, 49.1327438]], [[9.1971508, 49.1327438], [9.1971897, 49.1327543], [9.1973486, 49.1327892], [9.1976237, 49.1328284], [9.1978603, 49.1328386]], [[9.1931594, 49.1257169], [9.1932614, 49.1258562], [9.1934569, 49.1261834]], [[9.1940920, 49.1273040], [9.1940941, 49.1273717], [9.1940826, 49.1274328], [9.1940265, 49.1274804], [9.1939505, 49.1275064], [9.1938513, 49.1275289], [9.1925546, 49.1278173], [9.1925062, 49.1278308], [9.1924455, 49.1278625], [9.1924198, 49.1279048], [9.1924162, 49.1279673], [9.1925411, 49.1282420], [9.1927216, 49.1286173], [9.1927733, 49.1286869], [9.1928946, 49.1287845], [9.1930738, 49.1288787], [9.1933014, 49.1289700], [9.1933796, 49.1290106], [9.1937246, 49.1292773], [9.1939929, 49.1295223], [9.1940746, 49.1295656], [9.1941354, 49.1295711], [9.1948663, 49.1294289], [9.1949729, 49.1294289], [9.1950617, 49.1294583], [9.1951175, 49.1295206], [9.1952344, 49.1297643], [9.1954515, 49.1302057], [9.1955295, 49.1303589], [9.1956016, 49.1305060], [9.1956828, 49.1306594], [9.1957620, 49.1308063], [9.1959283, 49.1311126]], [[9.1934569, 49.1261834], [9.1929869, 49.1257652]], [[9.1934569, 49.1261834], [9.1935171, 49.1262853], [9.1936216, 49.1264621], [9.1937056, 49.1266098], [9.1937892, 49.1267697], [9.1938765, 49.1269248], [9.1939665, 49.1270838], [9.1940554, 49.1272375], [9.1940920, 49.1273040]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Viktor-Scheffel-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2256644, 49.1559651], [9.2254728, 49.1555250], [9.2253225, 49.1551146], [9.2251180, 49.1545678], [9.2251101, 49.1545220], [9.2251191, 49.1544961], [9.2251440, 49.1544613], [9.2252449, 49.1543803]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Villmatstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2298543, 49.1496299], [9.2301550, 49.1494226], [9.2309946, 49.1487878], [9.2311390, 49.1486727], [9.2314583, 49.1484405], [9.2318299, 49.1481227], [9.2320408, 49.1479396], [9.2321286, 49.1478633]], [[9.2340932, 49.1461331], [9.2341640, 49.1461175], [9.2342206, 49.1460890], [9.2342974, 49.1460211], [9.2343182, 49.1460022], [9.2344552, 49.1458780], [9.2344738, 49.1458611], [9.2346293, 49.1457303], [9.2349581, 49.1453606], [9.2353130, 49.1449796], [9.2354884, 49.1447987]], [[9.2321286, 49.1478633], [9.2321930, 49.1478048]], [[9.2321930, 49.1478048], [9.2323016, 49.1477159], [9.2325427, 49.1475185], [9.2340645, 49.1462680], [9.2340814, 49.1462418], [9.2340938, 49.1462065], [9.2340932, 49.1461331]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Virchowstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2433599, 49.1354597], [9.2435132, 49.1356156], [9.2437420, 49.1358730], [9.2438396, 49.1359829], [9.2439862, 49.1361886], [9.2441281, 49.1364048], [9.2442865, 49.1367429], [9.2443151, 49.1368205], [9.2443292, 49.1369135], [9.2443408, 49.1370023], [9.2443407, 49.1370918], [9.2443273, 49.1371804], [9.2442978, 49.1372541], [9.2442388, 49.1373489]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Vogelsangstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1961424, 49.1443885], [9.1957552, 49.1433958]], [[9.1961424, 49.1443885], [9.1962419, 49.1446708], [9.1962965, 49.1448257]], [[9.1956629, 49.1434096], [9.1953781, 49.1426863]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Von-Klug-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1441246, 49.1925658], [9.1447049, 49.1921543], [9.1449686, 49.1919688], [9.1451152, 49.1918656], [9.1454616, 49.1916177], [9.1458858, 49.1913487], [9.1459648, 49.1912979], [9.1461515, 49.1911685], [9.1471337, 49.1905418], [9.1471729, 49.1905096], [9.1471904, 49.1904665], [9.1472116, 49.1903645], [9.1472481, 49.1899650]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Von-Witzleben-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2403831, 49.1363058], [9.2404914, 49.1365031], [9.2405286, 49.1366123], [9.2406045, 49.1371523], [9.2406725, 49.1373313], [9.2407740, 49.1374169], [9.2409243, 49.1375095], [9.2412470, 49.1376339], [9.2416171, 49.1377161], [9.2418862, 49.1377409], [9.2419702, 49.1377435], [9.2421766, 49.1377294], [9.2427569, 49.1376289], [9.2438438, 49.1374481], [9.2441365, 49.1373909], [9.2442388, 49.1373489]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Wacholderweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1893787, 49.1442676], [9.1897368, 49.1452113]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Wachtelweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1202614, 49.1851317], [9.1199879, 49.1848717]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Wacksstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2083065, 49.1374939], [9.2073785, 49.1378614], [9.2070011, 49.1380494], [9.2068747, 49.1380261], [9.2061163, 49.1379322], [9.2053508, 49.1378270]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Wagenburgstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1713296, 49.1123663], [9.1718603, 49.1124529], [9.1728329, 49.1126138], [9.1730645, 49.1126514], [9.1732796, 49.1126782], [9.1734163, 49.1126912], [9.1736479, 49.1127094]], [[9.1718603, 49.1124529], [9.1721572, 49.1121559], [9.1725142, 49.1118430], [9.1726549, 49.1117089]], [[9.1732796, 49.1126782], [9.1729975, 49.1131411]], [[9.1726549, 49.1117089], [9.1726294, 49.1116567], [9.1725880, 49.1116202], [9.1725728, 49.1115969], [9.1725703, 49.1115684], [9.1725804, 49.1115425], [9.1726015, 49.1115195], [9.1726728, 49.1115069], [9.1727384, 49.1115198], [9.1727721, 49.1115519], [9.1727836, 49.1115882], [9.1727756, 49.1116263], [9.1727316, 49.1116617], [9.1726549, 49.1117089]], [[9.1736479, 49.1127094], [9.1738862, 49.1127235], [9.1741423, 49.1127142], [9.1745476, 49.1126971], [9.1751757, 49.1126286], [9.1760009, 49.1125238]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Waiblingerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2348589, 49.1315549], [9.2346034, 49.1317202], [9.2345233, 49.1317451], [9.2344236, 49.1317651], [9.2317015, 49.1321341], [9.2316290, 49.1321522], [9.2315729, 49.1322021]], [[9.2365774, 49.1323181], [9.2362730, 49.1320704], [9.2360844, 49.1319409], [9.2357249, 49.1317449], [9.2355903, 49.1316813], [9.2353673, 49.1316151], [9.2348589, 49.1315549]], [[9.2315729, 49.1322021], [9.2315057, 49.1321760], [9.2314092, 49.1321507], [9.2312958, 49.1321394], [9.2309626, 49.1321537], [9.2304131, 49.1321751]], [[9.2304131, 49.1321751], [9.2303502, 49.1321788], [9.2302698, 49.1321660], [9.2302057, 49.1321450], [9.2301687, 49.1321159]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Walheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2062689, 49.1306427], [9.2074886, 49.1300836], [9.2078422, 49.1299301], [9.2079355, 49.1298855]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Wannenäckerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1933375, 49.1855390], [9.1931797, 49.1853918]], [[9.1622317, 49.1822999], [9.1622624, 49.1821627], [9.1622703, 49.1820141], [9.1622773, 49.1814578], [9.1622720, 49.1799485]], [[9.1841464, 49.1846833], [9.1838210, 49.1847330], [9.1835036, 49.1847658], [9.1829394, 49.1848062], [9.1827209, 49.1848244], [9.1824694, 49.1848414], [9.1822905, 49.1848522], [9.1820580, 49.1848634], [9.1809941, 49.1849145], [9.1807597, 49.1849258], [9.1805550, 49.1849325], [9.1800074, 49.1849562], [9.1798798, 49.1849584], [9.1790201, 49.1849972], [9.1785896, 49.1850003], [9.1782133, 49.1849750], [9.1778520, 49.1849508], [9.1771223, 49.1848584], [9.1769347, 49.1848345]], [[9.1679799, 49.1840683], [9.1677483, 49.1840654], [9.1663280, 49.1840793], [9.1649102, 49.1840891], [9.1637267, 49.1840966], [9.1628099, 49.1841085], [9.1618782, 49.1841179], [9.1617196, 49.1841078], [9.1615762, 49.1840852], [9.1614465, 49.1840461], [9.1613296, 49.1839891], [9.1612051, 49.1839097], [9.1611350, 49.1838091], [9.1610913, 49.1836844], [9.1611078, 49.1835470], [9.1611668, 49.1834367], [9.1618998, 49.1827217], [9.1621953, 49.1824234], [9.1622259, 49.1823854], [9.1622317, 49.1822999]], [[9.1700063, 49.1841361], [9.1693705, 49.1841366], [9.1689058, 49.1841331], [9.1686465, 49.1841179]], [[9.1870146, 49.1841956], [9.1865920, 49.1842119], [9.1860829, 49.1842711], [9.1856177, 49.1843584]], [[9.1937659, 49.1861031], [9.1936900, 49.1860006], [9.1934222, 49.1856271], [9.1933375, 49.1855390]], [[9.1931797, 49.1853918], [9.1928848, 49.1851977], [9.1927507, 49.1851357], [9.1926086, 49.1850879], [9.1923295, 49.1850081], [9.1922693, 49.1849948], [9.1921187, 49.1849616], [9.1918944, 49.1849268], [9.1907012, 49.1848697], [9.1902878, 49.1848139], [9.1900544, 49.1847702], [9.1898068, 49.1847026], [9.1891484, 49.1845105], [9.1889900, 49.1844631], [9.1884503, 49.1843354], [9.1879101, 49.1842461], [9.1874632, 49.1842108], [9.1870146, 49.1841956]], [[9.1847763, 49.1845428], [9.1842923, 49.1846526], [9.1841464, 49.1846833]], [[9.1856177, 49.1843584], [9.1852499, 49.1844459], [9.1847763, 49.1845428]], [[9.1686465, 49.1841179], [9.1684791, 49.1841020], [9.1684004, 49.1840954], [9.1683316, 49.1840896], [9.1681655, 49.1840752], [9.1679799, 49.1840683]], [[9.1769347, 49.1848345], [9.1767214, 49.1848084], [9.1760089, 49.1847197], [9.1746426, 49.1845497], [9.1744982, 49.1845310], [9.1733350, 49.1843947], [9.1732561, 49.1843857], [9.1728797, 49.1843422], [9.1718345, 49.1842181], [9.1713534, 49.1841624], [9.1708748, 49.1841395], [9.1700063, 49.1841361]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Wartberg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2366266, 49.1587478], [9.2365695, 49.1587290]], [[9.2361037, 49.1589220], [9.2360932, 49.1589804], [9.2361345, 49.1590221], [9.2362111, 49.1590444], [9.2362756, 49.1590470], [9.2363241, 49.1590304], [9.2363487, 49.1590108], [9.2364612, 49.1589107], [9.2365659, 49.1588068], [9.2366266, 49.1587478]], [[9.2365695, 49.1587290], [9.2365334, 49.1587257], [9.2364556, 49.1587282], [9.2364169, 49.1587362], [9.2363525, 49.1587583], [9.2362787, 49.1588041]], [[9.2366266, 49.1587478], [9.2367029, 49.1587045]], [[9.2362787, 49.1588041], [9.2361618, 49.1588735], [9.2361037, 49.1589220]], [[9.2367029, 49.1587045], [9.2367289, 49.1586909], [9.2370416, 49.1584667], [9.2372811, 49.1582950], [9.2373723, 49.1582323], [9.2375458, 49.1581183], [9.2377083, 49.1580280], [9.2379801, 49.1579118], [9.2382583, 49.1578211], [9.2388736, 49.1576484], [9.2392885, 49.1575122], [9.2394961, 49.1574560], [9.2397671, 49.1573846], [9.2402093, 49.1573071], [9.2404156, 49.1573013], [9.2406980, 49.1573091], [9.2409552, 49.1573698], [9.2414333, 49.1575183]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Wartbergsteige" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2320043, 49.1533992], [9.2323259, 49.1539838], [9.2325370, 49.1543015], [9.2330101, 49.1550697]], [[9.2330101, 49.1550697], [9.2330318, 49.1551222], [9.2331515, 49.1553787], [9.2333166, 49.1556106], [9.2336434, 49.1558331], [9.2339523, 49.1560127], [9.2341498, 49.1561081], [9.2340744, 49.1561861], [9.2339339, 49.1562630], [9.2337836, 49.1563380], [9.2337094, 49.1563773], [9.2336342, 49.1564231]], [[9.2342141, 49.1561945], [9.2342942, 49.1562456]], [[9.2342942, 49.1562456], [9.2351578, 49.1568494]], [[9.2342694, 49.1547918], [9.2337248, 49.1549244], [9.2330629, 49.1550713], [9.2330101, 49.1550697]], [[9.2323259, 49.1539838], [9.2319507, 49.1540801], [9.2314043, 49.1541738], [9.2313751, 49.1541714], [9.2313580, 49.1541591], [9.2313346, 49.1541202]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Wartbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2307113, 49.1502192], [9.2304626, 49.1500688], [9.2303058, 49.1499588], [9.2301357, 49.1498336], [9.2300972, 49.1498052], [9.2300001, 49.1497316]], [[9.2314944, 49.1524267], [9.2314756, 49.1523960], [9.2312693, 49.1518953], [9.2311023, 49.1514439], [9.2309865, 49.1511625], [9.2308565, 49.1508647], [9.2306999, 49.1504724], [9.2306779, 49.1503703], [9.2307113, 49.1502192]], [[9.2300001, 49.1497316], [9.2299732, 49.1497129], [9.2298543, 49.1496299], [9.2295248, 49.1493700]], [[9.2316251, 49.1526035], [9.2316011, 49.1525711], [9.2314944, 49.1524267]], [[9.2274341, 49.1460796], [9.2274237, 49.1460314]], [[9.2295248, 49.1493700], [9.2291897, 49.1491057], [9.2291580, 49.1490807], [9.2288616, 49.1488470], [9.2287515, 49.1487526], [9.2284227, 49.1484852], [9.2280450, 49.1481816], [9.2279939, 49.1481405], [9.2279562, 49.1481014], [9.2279251, 49.1480474], [9.2279152, 49.1480043], [9.2278827, 49.1478784], [9.2278307, 49.1476644], [9.2277678, 49.1473968], [9.2277558, 49.1473463], [9.2277226, 49.1472048], [9.2276737, 49.1469994], [9.2276213, 49.1468033], [9.2275633, 49.1465951], [9.2275486, 49.1465396], [9.2275119, 49.1464017], [9.2275100, 49.1463937], [9.2274341, 49.1460796]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Weberstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1950115, 49.1642308], [9.1950877, 49.1641638], [9.1951935, 49.1641456], [9.1954549, 49.1641985], [9.1955353, 49.1641876], [9.1956076, 49.1640817], [9.1961099, 49.1633525], [9.1961751, 49.1632562]], [[9.1955353, 49.1641876], [9.1955281, 49.1642427], [9.1954755, 49.1643458]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Weidenbäumle" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1877578, 49.1640938], [9.1878095, 49.1640238], [9.1874942, 49.1639158], [9.1873715, 49.1639061]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Weidenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1786526, 49.1162080], [9.1784514, 49.1157687], [9.1783924, 49.1156903], [9.1783299, 49.1156584], [9.1782518, 49.1156476], [9.1774590, 49.1155464]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Weigandtweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1816063, 49.1522178], [9.1816481, 49.1530217]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Weinbergstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1998519, 49.1585312], [9.2018917, 49.1585399], [9.2019338, 49.1585259]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Weingartspfädle" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1845585, 49.1261862], [9.1844299, 49.1264492]], [[9.1844299, 49.1264492], [9.1846224, 49.1264870], [9.1850048, 49.1265688], [9.1850961, 49.1265548], [9.1854420, 49.1266215]], [[9.1844299, 49.1264492], [9.1843601, 49.1265681], [9.1842616, 49.1267789], [9.1841499, 49.1270178]], [[9.1846224, 49.1264870], [9.1845543, 49.1266261], [9.1843702, 49.1265907], [9.1843601, 49.1265681], [9.1834189, 49.1263523], [9.1828097, 49.1262105], [9.1828812, 49.1266652]], [[9.1860053, 49.1269237], [9.1860373, 49.1269487], [9.1858490, 49.1273854]], [[9.1860053, 49.1269237], [9.1853676, 49.1267800], [9.1852298, 49.1267620], [9.1849830, 49.1267031]], [[9.1852298, 49.1267620], [9.1850264, 49.1272190]], [[9.1854420, 49.1266215], [9.1853676, 49.1267800]], [[9.1842616, 49.1267789], [9.1844732, 49.1268209]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Weinsberger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2340932, 49.1461331], [9.2340277, 49.1461367], [9.2339652, 49.1461323], [9.2328764, 49.1460415], [9.2321431, 49.1459804]], [[9.2207399, 49.1463040], [9.2209791, 49.1462892], [9.2227645, 49.1461792]], [[9.2295640, 49.1459615], [9.2294445, 49.1459476], [9.2293311, 49.1459416], [9.2291373, 49.1459436], [9.2286849, 49.1459622], [9.2280489, 49.1459883], [9.2274237, 49.1460314]], [[9.2313554, 49.1459031], [9.2312185, 49.1458984], [9.2308995, 49.1458988], [9.2305363, 49.1458915], [9.2304130, 49.1459086]], [[9.2303820, 49.1458258], [9.2305239, 49.1458135], [9.2306505, 49.1458243], [9.2308712, 49.1458426], [9.2312258, 49.1458918], [9.2313554, 49.1459031]], [[9.2304130, 49.1459086], [9.2302167, 49.1459373], [9.2301146, 49.1459710], [9.2300546, 49.1459856], [9.2300160, 49.1459895], [9.2299194, 49.1459957], [9.2298286, 49.1459932], [9.2295640, 49.1459615]], [[9.2223416, 49.1463112], [9.2216019, 49.1463457], [9.2213261, 49.1463585], [9.2212346, 49.1463628], [9.2212035, 49.1463645], [9.2211675, 49.1463664]], [[9.2291437, 49.1458694], [9.2300059, 49.1458364], [9.2301689, 49.1458333]], [[9.2321431, 49.1459804], [9.2320023, 49.1459665], [9.2313554, 49.1459031]], [[9.2237718, 49.1461521], [9.2239347, 49.1461430], [9.2253346, 49.1460644]], [[9.2236280, 49.1462678], [9.2234515, 49.1462732], [9.2231046, 49.1462836]], [[9.2253485, 49.1461597], [9.2248514, 49.1461895], [9.2238062, 49.1462600], [9.2236280, 49.1462678]], [[9.2253346, 49.1460644], [9.2260490, 49.1460337], [9.2265306, 49.1460113], [9.2271019, 49.1459786]], [[9.2227645, 49.1461792], [9.2230418, 49.1461684], [9.2231271, 49.1461651], [9.2232236, 49.1461613], [9.2233745, 49.1461612], [9.2234077, 49.1461604], [9.2237718, 49.1461521]], [[9.2231046, 49.1462836], [9.2223416, 49.1463112]], [[9.2328514, 49.1463697], [9.2328420, 49.1463600], [9.2328340, 49.1463416], [9.2328313, 49.1463126], [9.2328366, 49.1462504], [9.2328764, 49.1460415]], [[9.2274237, 49.1460314], [9.2271147, 49.1460552]], [[9.2271147, 49.1460552], [9.2267743, 49.1460792], [9.2265447, 49.1460948], [9.2263371, 49.1461082], [9.2260365, 49.1461228], [9.2257179, 49.1461405], [9.2253485, 49.1461597]], [[9.2271019, 49.1459786], [9.2272057, 49.1459728]], [[9.2272057, 49.1459728], [9.2274077, 49.1459589], [9.2280414, 49.1459291]], [[9.2301689, 49.1458333], [9.2303820, 49.1458258]], [[9.2280414, 49.1459291], [9.2288529, 49.1458881], [9.2290809, 49.1458742], [9.2291437, 49.1458694]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Weipertstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2148596, 49.1500332], [9.2156059, 49.1510981]], [[9.2148596, 49.1500332], [9.2146529, 49.1498999], [9.2141722, 49.1491757], [9.2137026, 49.1484325], [9.2135483, 49.1482877]], [[9.2156059, 49.1510981], [9.2156824, 49.1512299], [9.2157370, 49.1513153], [9.2163172, 49.1522646]], [[9.2140640, 49.1481925], [9.2140829, 49.1483343], [9.2140779, 49.1483692], [9.2140780, 49.1485598], [9.2140821, 49.1485945], [9.2141041, 49.1487084], [9.2141609, 49.1488749], [9.2143297, 49.1491491], [9.2147988, 49.1498662], [9.2148596, 49.1500332]], [[9.2163172, 49.1522646], [9.2172367, 49.1537236], [9.2172782, 49.1537858]], [[9.2172782, 49.1537858], [9.2173593, 49.1539165], [9.2174429, 49.1540631], [9.2174935, 49.1541594]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Weirachstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1375909, 49.1905545], [9.1378389, 49.1907808], [9.1381422, 49.1910283], [9.1384676, 49.1912640], [9.1388187, 49.1915005], [9.1390259, 49.1916253], [9.1392269, 49.1917463], [9.1393168, 49.1918009]], [[9.1434579, 49.1924177], [9.1436418, 49.1924377], [9.1438258, 49.1924690], [9.1439528, 49.1925023], [9.1440445, 49.1925338], [9.1441246, 49.1925658], [9.1441973, 49.1926106], [9.1442231, 49.1926279], [9.1444784, 49.1928425], [9.1445575, 49.1929143], [9.1446102, 49.1929720]], [[9.1427693, 49.1925359], [9.1428497, 49.1925080], [9.1429723, 49.1924651], [9.1430900, 49.1924374], [9.1431688, 49.1924249], [9.1433139, 49.1924149], [9.1434579, 49.1924177]], [[9.1393168, 49.1918009], [9.1395453, 49.1919496], [9.1396046, 49.1919882], [9.1400318, 49.1922627], [9.1401663, 49.1923416], [9.1403049, 49.1924096], [9.1404414, 49.1924607], [9.1406014, 49.1925108], [9.1406225, 49.1925173], [9.1407952, 49.1925684], [9.1409039, 49.1925961], [9.1410897, 49.1926448], [9.1413799, 49.1927310], [9.1414807, 49.1927553], [9.1415678, 49.1927634], [9.1416563, 49.1927643], [9.1417773, 49.1927594], [9.1418944, 49.1927525], [9.1420890, 49.1927354], [9.1422314, 49.1927145], [9.1423737, 49.1926754], [9.1427693, 49.1925359]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Weißbaumstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1471328, 49.1917598], [9.1482809, 49.1912571], [9.1483194, 49.1912332], [9.1483593, 49.1911976], [9.1483794, 49.1911643], [9.1483727, 49.1911311], [9.1483491, 49.1910991], [9.1483168, 49.1910685], [9.1482594, 49.1910293], [9.1478644, 49.1908371], [9.1471729, 49.1905096]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Welschstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1860832, 49.1520071], [9.1859835, 49.1523468], [9.1858905, 49.1526638]], [[9.1851970, 49.1536255], [9.1854035, 49.1533167], [9.1854535, 49.1532419], [9.1855702, 49.1530316], [9.1857191, 49.1527135], [9.1858905, 49.1526638], [9.1865033, 49.1527687], [9.1866669, 49.1527967], [9.1872677, 49.1528995]], [[9.1865033, 49.1527687], [9.1865817, 49.1524944]], [[9.1859835, 49.1523468], [9.1865817, 49.1524944], [9.1866837, 49.1525210], [9.1869106, 49.1525504]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Wendelinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1212423, 49.1825327], [9.1217242, 49.1837086], [9.1219872, 49.1841366], [9.1223081, 49.1845377]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Werderstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2172790, 49.1335793], [9.2173066, 49.1336946], [9.2173269, 49.1337815], [9.2173840, 49.1340298], [9.2173961, 49.1340851], [9.2174028, 49.1341018], [9.2174157, 49.1341167], [9.2174268, 49.1341224], [9.2174443, 49.1341257], [9.2174595, 49.1341278], [9.2174984, 49.1341252], [9.2176741, 49.1340848], [9.2177393, 49.1340696], [9.2177607, 49.1340646], [9.2180657, 49.1339936], [9.2181469, 49.1339726], [9.2181904, 49.1339549], [9.2182634, 49.1339127]], [[9.2203783, 49.1330888], [9.2202953, 49.1330895]], [[9.2202953, 49.1330895], [9.2200760, 49.1330900], [9.2198836, 49.1330988], [9.2197654, 49.1331008], [9.2193252, 49.1331084], [9.2192263, 49.1331101], [9.2184047, 49.1331229], [9.2183514, 49.1331389], [9.2182012, 49.1332012], [9.2180121, 49.1332828], [9.2178981, 49.1333328], [9.2177586, 49.1333890], [9.2175025, 49.1334916], [9.2172790, 49.1335793], [9.2171900, 49.1336101], [9.2170411, 49.1336540], [9.2169904, 49.1336681], [9.2168842, 49.1336978], [9.2165302, 49.1337961], [9.2162807, 49.1338628], [9.2159009, 49.1339577], [9.2156155, 49.1340445], [9.2153781, 49.1341155], [9.2153178, 49.1341296], [9.2152883, 49.1341340], [9.2152588, 49.1341340], [9.2152239, 49.1341313], [9.2151931, 49.1341243], [9.2151662, 49.1341146], [9.2151435, 49.1340971], [9.2151260, 49.1340822], [9.2150979, 49.1340409], [9.2149128, 49.1337479], [9.2146110, 49.1332793], [9.2143955, 49.1329662], [9.2143188, 49.1328629]], [[9.2248832, 49.1330579], [9.2249245, 49.1330588], [9.2255528, 49.1330487], [9.2256922, 49.1330363], [9.2258623, 49.1330325], [9.2260782, 49.1330501], [9.2265346, 49.1330482], [9.2265739, 49.1330610]], [[9.2248832, 49.1330579], [9.2247044, 49.1330405], [9.2244775, 49.1330365], [9.2240123, 49.1330477], [9.2239734, 49.1330478], [9.2238217, 49.1330470], [9.2237685, 49.1330482], [9.2237444, 49.1330526], [9.2236771, 49.1330734], [9.2236482, 49.1330772], [9.2233333, 49.1330855], [9.2232970, 49.1330860], [9.2231797, 49.1330658], [9.2231412, 49.1330621], [9.2229985, 49.1330622], [9.2227323, 49.1330639], [9.2224449, 49.1330682], [9.2221897, 49.1330778], [9.2221212, 49.1330866], [9.2220766, 49.1330903], [9.2219006, 49.1330927], [9.2214415, 49.1331014], [9.2212420, 49.1331004], [9.2207477, 49.1330966], [9.2207010, 49.1330967], [9.2206627, 49.1330974], [9.2206305, 49.1330972], [9.2205388, 49.1330854], [9.2204606, 49.1330893], [9.2203783, 49.1330888]], [[9.2182634, 49.1339127], [9.2182857, 49.1339023], [9.2183071, 49.1338935], [9.2183380, 49.1338900], [9.2185795, 49.1338655]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Wertheimer Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1038623, 49.1834321], [9.1030524, 49.1835573]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Weststraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2089768, 49.1384485], [9.2088004, 49.1385557], [9.2084539, 49.1387163], [9.2082952, 49.1388248], [9.2082501, 49.1388632], [9.2081831, 49.1389126]], [[9.2092157, 49.1383443], [9.2090081, 49.1384348], [9.2089768, 49.1384485]], [[9.2081477, 49.1397115], [9.2081482, 49.1397836], [9.2081467, 49.1399471], [9.2081486, 49.1399913], [9.2081559, 49.1404753]], [[9.2080367, 49.1388892], [9.2080512, 49.1388013], [9.2080803, 49.1386864]], [[9.2081477, 49.1397115], [9.2081106, 49.1394459]], [[9.2081567, 49.1392742], [9.2081477, 49.1397115]], [[9.2081831, 49.1389126], [9.2081624, 49.1390928], [9.2081567, 49.1392742]], [[9.2081106, 49.1394459], [9.2080859, 49.1392689], [9.2080638, 49.1390872], [9.2080367, 49.1388892]], [[9.2080803, 49.1386864], [9.2081381, 49.1387972], [9.2081695, 49.1388683], [9.2081831, 49.1389126]], [[9.2080803, 49.1386864], [9.2081215, 49.1386362], [9.2081766, 49.1385986], [9.2082421, 49.1385719], [9.2084003, 49.1385283]], [[9.2080367, 49.1388892], [9.2080041, 49.1388344], [9.2079421, 49.1387837], [9.2078161, 49.1387432], [9.2077654, 49.1387366], [9.2076132, 49.1386999]], [[9.2063519, 49.1384860], [9.2066558, 49.1385295], [9.2069855, 49.1385670], [9.2071640, 49.1385801], [9.2077599, 49.1386118], [9.2078821, 49.1386176], [9.2080199, 49.1386585], [9.2080803, 49.1386864]], [[9.2081559, 49.1404753], [9.2081616, 49.1410874]], [[9.2081802, 49.1417590], [9.2081804, 49.1418714]], [[9.2081616, 49.1410874], [9.2081750, 49.1415126]], [[9.2081750, 49.1415126], [9.2081802, 49.1417590]], [[9.2081804, 49.1418714], [9.2081961, 49.1420946], [9.2082269, 49.1421817], [9.2082652, 49.1422404]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Widmannstal" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1844220, 49.1637147], [9.1843851, 49.1638438]], [[9.1843851, 49.1638438], [9.1842517, 49.1639447], [9.1841096, 49.1640803], [9.1839069, 49.1644626], [9.1837094, 49.1649123]], [[9.1869247, 49.1645380], [9.1873390, 49.1639682], [9.1873715, 49.1639061], [9.1871672, 49.1638196], [9.1867993, 49.1637099], [9.1862525, 49.1635782], [9.1860623, 49.1635210], [9.1858939, 49.1634549], [9.1856932, 49.1633729], [9.1855704, 49.1633264], [9.1854399, 49.1633033], [9.1852366, 49.1632947], [9.1851905, 49.1632927]], [[9.1845676, 49.1630896], [9.1843490, 49.1633130]], [[9.1870092, 49.1637816], [9.1868313, 49.1640536], [9.1862585, 49.1638533], [9.1860634, 49.1639603], [9.1864297, 49.1642777], [9.1869571, 49.1645258], [9.1872666, 49.1641288], [9.1874469, 49.1641799], [9.1875337, 49.1640743], [9.1881609, 49.1642753], [9.1882210, 49.1642116], [9.1883547, 49.1640240], [9.1874367, 49.1637217], [9.1875112, 49.1633771], [9.1864776, 49.1631007], [9.1859583, 49.1629743], [9.1856021, 49.1632527], [9.1853612, 49.1632851], [9.1852286, 49.1633771], [9.1846476, 49.1631790], [9.1846425, 49.1630876], [9.1846489, 49.1630424], [9.1848229, 49.1628322], [9.1849429, 49.1626811], [9.1842315, 49.1624420], [9.1837867, 49.1622813], [9.1834888, 49.1625867], [9.1845023, 49.1629780], [9.1844352, 49.1630761], [9.1840428, 49.1634990], [9.1844769, 49.1636601], [9.1849785, 49.1638370], [9.1852386, 49.1635644], [9.1854073, 49.1634428], [9.1854673, 49.1634006], [9.1853355, 49.1633270], [9.1854069, 49.1633161], [9.1854917, 49.1633336], [9.1856326, 49.1633727], [9.1858215, 49.1634520], [9.1860435, 49.1635361], [9.1862751, 49.1636024], [9.1870092, 49.1637816]], [[9.1842952, 49.1633799], [9.1842765, 49.1634277], [9.1842809, 49.1634901], [9.1844306, 49.1636713], [9.1844220, 49.1637147]], [[9.1843490, 49.1633130], [9.1842952, 49.1633799]], [[9.1831932, 49.1626245], [9.1833188, 49.1626445], [9.1834334, 49.1626748], [9.1843554, 49.1629940]], [[9.1877812, 49.1648819], [9.1872844, 49.1647097], [9.1869247, 49.1645380], [9.1864013, 49.1642883], [9.1860888, 49.1640043], [9.1857877, 49.1637075], [9.1855252, 49.1634765], [9.1853655, 49.1633788], [9.1851905, 49.1632927], [9.1849787, 49.1632339], [9.1845676, 49.1630896], [9.1844602, 49.1630284], [9.1843554, 49.1629940]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Widmannstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1974880, 49.1677458], [9.1970562, 49.1677426], [9.1965471, 49.1674494], [9.1963579, 49.1673474], [9.1959148, 49.1672443], [9.1957469, 49.1672297], [9.1952001, 49.1672735], [9.1950952, 49.1672814], [9.1949329, 49.1672860], [9.1947509, 49.1672829], [9.1945676, 49.1672431], [9.1939009, 49.1670297], [9.1928679, 49.1666435], [9.1924696, 49.1664935], [9.1920661, 49.1663167], [9.1915479, 49.1660589], [9.1909201, 49.1658749], [9.1906023, 49.1657731], [9.1877812, 49.1648819]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Wielandweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2147500, 49.1298288], [9.2149388, 49.1297986], [9.2150202, 49.1297810], [9.2151212, 49.1297632], [9.2153988, 49.1297293], [9.2158822, 49.1296797], [9.2160563, 49.1296595], [9.2162209, 49.1296404]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Wieselweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1523151, 49.1977115], [9.1526692, 49.1974662], [9.1528231, 49.1973693], [9.1528881, 49.1973438], [9.1529960, 49.1973393], [9.1531119, 49.1973675], [9.1532428, 49.1974304], [9.1532924, 49.1974610], [9.1533142, 49.1974869], [9.1533257, 49.1975378]], [[9.1533257, 49.1975378], [9.1534422, 49.1975320], [9.1535314, 49.1975424], [9.1538801, 49.1976904]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Wiesenweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1378078, 49.1983930], [9.1375090, 49.1982818], [9.1370758, 49.1981213]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Wildecker Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2355312, 49.1281312], [9.2358240, 49.1287023], [9.2360495, 49.1290985]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Wilhelm-Blos-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2426698, 49.1440946], [9.2427181, 49.1440566], [9.2427259, 49.1440449], [9.2427353, 49.1440326], [9.2427327, 49.1440194], [9.2427233, 49.1440115], [9.2427085, 49.1440010], [9.2426562, 49.1439729], [9.2425342, 49.1439010], [9.2423978, 49.1438210], [9.2422780, 49.1437554], [9.2421855, 49.1436975], [9.2421385, 49.1436650], [9.2421131, 49.1436343], [9.2421010, 49.1436133], [9.2420903, 49.1435843], [9.2420862, 49.1435580], [9.2420876, 49.1435290], [9.2420956, 49.1434974], [9.2421117, 49.1434729], [9.2422713, 49.1433455], [9.2424685, 49.1431939], [9.2425664, 49.1431413], [9.2426200, 49.1431255], [9.2428843, 49.1430616], [9.2431511, 49.1429974], [9.2431846, 49.1429877], [9.2432369, 49.1429614], [9.2434957, 49.1428015], [9.2435363, 49.1427805], [9.2438002, 49.1426228], [9.2438780, 49.1425807], [9.2440295, 49.1425166], [9.2441918, 49.1424464], [9.2442977, 49.1424105], [9.2446491, 49.1423254], [9.2449951, 49.1422534], [9.2452258, 49.1422280], [9.2454070, 49.1422180], [9.2458045, 49.1422331]], [[9.2458045, 49.1422331], [9.2460140, 49.1422482], [9.2462166, 49.1422790], [9.2463867, 49.1423352], [9.2465367, 49.1423975], [9.2466238, 49.1424474], [9.2470657, 49.1427971], [9.2471418, 49.1428438], [9.2472326, 49.1428795], [9.2473501, 49.1429030], [9.2474743, 49.1429080], [9.2475423, 49.1429065], [9.2476336, 49.1428924], [9.2478266, 49.1428229]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Wilhelm-Busch-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2351841, 49.1476353], [9.2354475, 49.1478456], [9.2355457, 49.1479767], [9.2356058, 49.1481184], [9.2356855, 49.1483979]], [[9.2339761, 49.1470247], [9.2348358, 49.1474588], [9.2351841, 49.1476353]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Wilhelm-Flinspach-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1372474, 49.1988450], [9.1367761, 49.1986027], [9.1366857, 49.1985528], [9.1366368, 49.1985113], [9.1366126, 49.1984626], [9.1365915, 49.1983812], [9.1365466, 49.1981914], [9.1365199, 49.1978868], [9.1364875, 49.1975403], [9.1364851, 49.1974040], [9.1364983, 49.1972810], [9.1365479, 49.1971533], [9.1366167, 49.1970544], [9.1367763, 49.1968725], [9.1369446, 49.1966839], [9.1370583, 49.1965348], [9.1371050, 49.1964452], [9.1371197, 49.1964117], [9.1371171, 49.1963800], [9.1371024, 49.1963095], [9.1370299, 49.1961292], [9.1370119, 49.1960816], [9.1369575, 49.1959372], [9.1369545, 49.1959165], [9.1369419, 49.1958310], [9.1369512, 49.1957165], [9.1369632, 49.1956543], [9.1369937, 49.1954969]], [[9.1371197, 49.1964117], [9.1372701, 49.1964392], [9.1373898, 49.1964599], [9.1374429, 49.1964856], [9.1374490, 49.1965601], [9.1373931, 49.1966452]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Wilhelm-Leuschner-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1987286, 49.1418077], [9.1986305, 49.1417996], [9.1982992, 49.1417787], [9.1978698, 49.1417563], [9.1977195, 49.1417612], [9.1974759, 49.1417713], [9.1969693, 49.1418191], [9.1967046, 49.1418238]], [[9.1941595, 49.1420757], [9.1948357, 49.1420104]], [[9.1967046, 49.1418238], [9.1968888, 49.1417735], [9.1971503, 49.1417243], [9.1974324, 49.1416905], [9.1976400, 49.1416615], [9.1979845, 49.1416050], [9.1981750, 49.1415629], [9.1983682, 49.1415029], [9.1985196, 49.1414195], [9.1986514, 49.1413386], [9.1988019, 49.1412446], [9.1989315, 49.1411448], [9.1990848, 49.1410081], [9.1993518, 49.1407543]], [[9.1948357, 49.1420104], [9.1954020, 49.1419639]], [[9.1938305, 49.1417420], [9.1941872, 49.1418775], [9.1944061, 49.1419286], [9.1945940, 49.1419475], [9.1947803, 49.1419583], [9.1950364, 49.1419607], [9.1954020, 49.1419639]], [[9.1954020, 49.1419639], [9.1957942, 49.1419432], [9.1961310, 49.1419065], [9.1963214, 49.1418841], [9.1967046, 49.1418238]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Wilhelm-Schäffer-Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1928813, 49.1709813], [9.1935708, 49.1710344], [9.1938128, 49.1710523], [9.1938959, 49.1710520], [9.1940006, 49.1710356], [9.1944864, 49.1708341], [9.1950253, 49.1708567], [9.1955662, 49.1708955], [9.1961433, 49.1709344], [9.1964707, 49.1709611], [9.1966923, 49.1709792], [9.1972097, 49.1710214]], [[9.1977186, 49.1717853], [9.1977314, 49.1716476], [9.1977463, 49.1714462], [9.1977695, 49.1712788]], [[9.1951185, 49.1703661], [9.1950253, 49.1708567]], [[9.1945633, 49.1720040], [9.1947100, 49.1715124], [9.1948871, 49.1714482], [9.1949445, 49.1713637], [9.1950253, 49.1708567]], [[9.1957201, 49.1719929], [9.1957849, 49.1716684], [9.1958988, 49.1716180], [9.1960089, 49.1716194], [9.1961433, 49.1709344]], [[9.1965661, 49.1717061], [9.1966184, 49.1713678], [9.1966923, 49.1709792]], [[9.1962115, 49.1704676], [9.1961433, 49.1709344]], [[9.1970849, 49.1717575], [9.1965661, 49.1717061], [9.1961782, 49.1716743]], [[9.1952642, 49.1719838], [9.1953580, 49.1713931], [9.1954952, 49.1713000], [9.1955662, 49.1708955]], [[9.1964707, 49.1709611], [9.1965025, 49.1708619], [9.1966707, 49.1707840], [9.1967647, 49.1707758], [9.1968086, 49.1707836]], [[9.1965025, 49.1708619], [9.1965069, 49.1708397]], [[9.1972097, 49.1710214], [9.1977860, 49.1710630]], [[9.1977695, 49.1712788], [9.1977860, 49.1710630]], [[9.1977860, 49.1710630], [9.1977974, 49.1709158], [9.1978183, 49.1705061]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Wilhelmstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2183047, 49.1327165], [9.2182661, 49.1325072], [9.2181526, 49.1320100], [9.2181303, 49.1318746]], [[9.2193898, 49.1385364], [9.2193399, 49.1384664], [9.2193171, 49.1384270], [9.2193174, 49.1383275], [9.2193289, 49.1381956], [9.2194334, 49.1374402], [9.2194279, 49.1373793], [9.2193561, 49.1370603], [9.2193354, 49.1369719], [9.2192818, 49.1367433]], [[9.2192818, 49.1367433], [9.2191521, 49.1362229]], [[9.2187467, 49.1345108], [9.2187271, 49.1344144], [9.2187048, 49.1343272], [9.2186493, 49.1341226], [9.2186297, 49.1340502], [9.2185795, 49.1338655], [9.2185161, 49.1336081], [9.2184047, 49.1331229], [9.2183047, 49.1327165]], [[9.2182661, 49.1325072], [9.2181847, 49.1324004], [9.2181666, 49.1323282], [9.2181254, 49.1321869]], [[9.2175631, 49.1317941], [9.2173068, 49.1316637], [9.2170063, 49.1315022], [9.2168921, 49.1314328]], [[9.2191750, 49.1326684], [9.2186165, 49.1326773]], [[9.2186165, 49.1326773], [9.2184172, 49.1326848]], [[9.2184172, 49.1326848], [9.2183636, 49.1326868], [9.2183234, 49.1326956], [9.2183047, 49.1327165]], [[9.2195251, 49.1386304], [9.2194503, 49.1385882], [9.2193898, 49.1385364]], [[9.2181254, 49.1321869], [9.2180607, 49.1320918], [9.2180233, 49.1320553], [9.2180083, 49.1320446]], [[9.2180083, 49.1320446], [9.2179082, 49.1319772], [9.2178218, 49.1319254], [9.2175631, 49.1317941]], [[9.2191521, 49.1362229], [9.2190062, 49.1356098], [9.2189862, 49.1355297], [9.2189478, 49.1353551], [9.2188895, 49.1351077]], [[9.2188895, 49.1351077], [9.2188479, 49.1349313], [9.2188363, 49.1348823], [9.2187818, 49.1346512], [9.2187467, 49.1345108]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Wimpfener Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2023686, 49.1764378], [9.2022581, 49.1764193]], [[9.2015227, 49.1762250], [9.2016079, 49.1761206], [9.2018746, 49.1757624], [9.2019356, 49.1755872], [9.2019737, 49.1752367], [9.2021185, 49.1744595], [9.2023928, 49.1734918], [9.2028423, 49.1724100], [9.2028892, 49.1723059], [9.2029712, 49.1721602], [9.2030539, 49.1720689]], [[9.2030539, 49.1720689], [9.2030826, 49.1719847], [9.2030654, 49.1717838], [9.2030270, 49.1715558], [9.2030208, 49.1715036], [9.2029966, 49.1713351], [9.2028448, 49.1702423], [9.2028342, 49.1701344], [9.2028618, 49.1697463], [9.2028772, 49.1695727], [9.2028842, 49.1695051], [9.2029021, 49.1693091], [9.2029141, 49.1691551], [9.2029418, 49.1689127]], [[9.2004324, 49.1834446], [9.2004680, 49.1831930], [9.2005142, 49.1829521]], [[9.2008517, 49.1827704], [9.2007114, 49.1828618], [9.2006435, 49.1829339], [9.2005687, 49.1830187], [9.2005179, 49.1831732], [9.2004324, 49.1834446]], [[9.2005142, 49.1829521], [9.2006402, 49.1828139]], [[9.2006378, 49.1823160], [9.2006533, 49.1824190], [9.2007024, 49.1824997], [9.2007672, 49.1826000], [9.2008440, 49.1826864]], [[9.2016046, 49.1830049], [9.2015055, 49.1828283], [9.2014149, 49.1827572], [9.2013194, 49.1827190], [9.2011182, 49.1826966]], [[9.2015805, 49.1825875], [9.2017719, 49.1825880]], [[9.2014269, 49.1783298], [9.2013847, 49.1785171], [9.2013341, 49.1787460], [9.2010890, 49.1799739], [9.2009501, 49.1806700], [9.2007157, 49.1819381], [9.2006378, 49.1823160]], [[9.2015448, 49.1772351], [9.2015646, 49.1773582], [9.2015721, 49.1774455], [9.2015595, 49.1775592], [9.2014269, 49.1783298]], [[9.2028448, 49.1702423], [9.2032698, 49.1702284], [9.2035350, 49.1702196]], [[9.2013807, 49.1767736], [9.2013564, 49.1766533], [9.2013748, 49.1765755], [9.2014371, 49.1764579], [9.2015476, 49.1763663], [9.2016333, 49.1763254], [9.2017275, 49.1762978], [9.2019031, 49.1762774], [9.2020547, 49.1762834], [9.2021861, 49.1762992], [9.2023108, 49.1762842]], [[9.1990621, 49.1844638], [9.1987759, 49.1845405], [9.1985210, 49.1846076]], [[9.2022581, 49.1764193], [9.2020608, 49.1763886], [9.2019442, 49.1763816], [9.2018730, 49.1763773], [9.2017793, 49.1763882], [9.2016633, 49.1764139], [9.2015882, 49.1764387], [9.2015216, 49.1764831], [9.2014617, 49.1765509], [9.2014240, 49.1766170], [9.2014066, 49.1766849], [9.2013807, 49.1767736]], [[9.2013807, 49.1767736], [9.2014161, 49.1768872], [9.2015448, 49.1772351]], [[9.2021463, 49.1767081], [9.2021432, 49.1766132], [9.2021241, 49.1765292], [9.2020561, 49.1764533], [9.2019442, 49.1763816]], [[9.2004324, 49.1834446], [9.2003746, 49.1837931], [9.2003143, 49.1839328], [9.2002156, 49.1840498], [9.2001541, 49.1841070], [9.2000824, 49.1841579], [9.1999728, 49.1842178], [9.1998072, 49.1842848], [9.1996743, 49.1843234], [9.1995685, 49.1843498], [9.1990621, 49.1844638]], [[9.2005142, 49.1829521], [9.2005510, 49.1827620], [9.2006378, 49.1823160]], [[9.2008440, 49.1826864], [9.2008583, 49.1827248], [9.2008517, 49.1827704]], [[9.2006402, 49.1828139], [9.2008440, 49.1826864], [9.2010665, 49.1826139], [9.2013874, 49.1825869], [9.2015805, 49.1825875]], [[9.2017736, 49.1826596], [9.2015846, 49.1826582], [9.2012788, 49.1826689], [9.2011182, 49.1826966], [9.2009990, 49.1827236], [9.2008517, 49.1827704]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Wimpfener Weg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1068890, 49.1844937], [9.1069508, 49.1845769], [9.1070291, 49.1846813]], [[9.1110859, 49.1874321], [9.1102151, 49.1871929]], [[9.1221877, 49.1921011], [9.1217151, 49.1917402], [9.1213763, 49.1914899], [9.1210413, 49.1912628], [9.1205871, 49.1909872], [9.1195904, 49.1903825], [9.1195571, 49.1903674], [9.1194618, 49.1903241], [9.1192856, 49.1902441], [9.1188785, 49.1900827], [9.1186054, 49.1900100], [9.1178427, 49.1899392], [9.1170645, 49.1898806], [9.1168476, 49.1898508], [9.1167229, 49.1898094], [9.1158545, 49.1893943], [9.1149850, 49.1889976], [9.1142927, 49.1886662], [9.1140312, 49.1885511], [9.1135681, 49.1883471], [9.1120414, 49.1876751], [9.1115923, 49.1875609], [9.1110859, 49.1874321]], [[9.1084516, 49.1859921], [9.1085693, 49.1860882], [9.1089367, 49.1866343], [9.1090427, 49.1868127], [9.1091728, 49.1869472], [9.1093679, 49.1870510], [9.1095896, 49.1871260], [9.1100477, 49.1871750], [9.1102151, 49.1871929]], [[9.1100477, 49.1871750], [9.1099758, 49.1869820], [9.1097539, 49.1866697]], [[9.1070291, 49.1846813], [9.1072042, 49.1849181], [9.1073508, 49.1851140], [9.1075025, 49.1852686], [9.1078314, 49.1855072], [9.1081689, 49.1857871], [9.1083043, 49.1859161], [9.1084516, 49.1859921]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Windgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2189464, 49.1419733], [9.2189426, 49.1419586], [9.2189219, 49.1418816], [9.2188823, 49.1417555], [9.2188801, 49.1416775], [9.2188816, 49.1414866]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Winzerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2313105, 49.1295148], [9.2312344, 49.1295009], [9.2311787, 49.1294965], [9.2311206, 49.1294992], [9.2309609, 49.1295184], [9.2308464, 49.1295344], [9.2303530, 49.1296043], [9.2300527, 49.1296469], [9.2294504, 49.1297324], [9.2293579, 49.1297456], [9.2289783, 49.1297999], [9.2285935, 49.1298535], [9.2282946, 49.1298966], [9.2281737, 49.1299140], [9.2275152, 49.1300176], [9.2270646, 49.1300807], [9.2270391, 49.1300851], [9.2270136, 49.1301062]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Wittumhalde" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1501142, 49.1221903], [9.1505459, 49.1221769], [9.1506751, 49.1221725], [9.1511644, 49.1221580], [9.1516373, 49.1221329], [9.1521075, 49.1221256], [9.1524108, 49.1221090], [9.1525894, 49.1220919], [9.1527127, 49.1220624], [9.1528019, 49.1220020], [9.1529145, 49.1219109], [9.1529967, 49.1218184], [9.1530374, 49.1216978], [9.1530157, 49.1215781], [9.1529540, 49.1214721], [9.1529011, 49.1214139], [9.1528226, 49.1213588], [9.1526742, 49.1212916], [9.1524327, 49.1212457], [9.1521704, 49.1212447], [9.1519259, 49.1212432], [9.1517069, 49.1212425], [9.1512354, 49.1212380], [9.1506015, 49.1212401], [9.1497828, 49.1212377]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Wittumweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1114118, 49.1827266], [9.1112811, 49.1825000], [9.1112223, 49.1822957], [9.1111795, 49.1820862], [9.1112477, 49.1818800], [9.1113172, 49.1816092], [9.1112697, 49.1814089], [9.1111863, 49.1812410], [9.1110999, 49.1811878]], [[9.1102785, 49.1800308], [9.1099855, 49.1801561], [9.1097637, 49.1802422]], [[9.1104242, 49.1803513], [9.1101726, 49.1804140], [9.1100601, 49.1804079]], [[9.1103223, 49.1800758], [9.1107409, 49.1799639], [9.1109107, 49.1799169], [9.1110895, 49.1799057]], [[9.1110895, 49.1799057], [9.1111180, 49.1800539], [9.1113730, 49.1800329], [9.1113190, 49.1797527], [9.1110641, 49.1797737], [9.1110895, 49.1799057]], [[9.1110999, 49.1811878], [9.1106896, 49.1808017], [9.1105235, 49.1806027], [9.1104242, 49.1803513], [9.1103223, 49.1800758], [9.1102785, 49.1800308], [9.1101187, 49.1798977], [9.1098277, 49.1796768]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Wohlgelegen" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2112200, 49.1598437], [9.2112626, 49.1597773], [9.2112198, 49.1596882], [9.2111292, 49.1595333], [9.2110350, 49.1591840], [9.2109449, 49.1588832], [9.2105531, 49.1572632], [9.2105031, 49.1571600], [9.2104089, 49.1570758], [9.2102961, 49.1570349], [9.2100960, 49.1570225], [9.2086249, 49.1571871], [9.2083383, 49.1572194], [9.2074880, 49.1573085], [9.2071443, 49.1573452], [9.2070714, 49.1573551], [9.2069705, 49.1573730]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Wolfganggasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2173490, 49.1445979], [9.2176459, 49.1445588], [9.2180020, 49.1445107]], [[9.2180020, 49.1445107], [9.2184627, 49.1444536], [9.2187913, 49.1444058], [9.2190478, 49.1443762], [9.2191172, 49.1443642], [9.2191783, 49.1443403]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Wollhausstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2380132, 49.1383062], [9.2380675, 49.1383282], [9.2385907, 49.1383052], [9.2386294, 49.1382985]], [[9.2219954, 49.1391421], [9.2212556, 49.1391831], [9.2210955, 49.1391890]], [[9.2211144, 49.1390083], [9.2211497, 49.1390561], [9.2211887, 49.1390851], [9.2212601, 49.1391164]], [[9.2338661, 49.1384768], [9.2344243, 49.1384478], [9.2346954, 49.1384329], [9.2351263, 49.1384137], [9.2356524, 49.1383902], [9.2360319, 49.1383732], [9.2365738, 49.1383490], [9.2371146, 49.1383330]], [[9.2272927, 49.1388638], [9.2280919, 49.1388133], [9.2282616, 49.1388056], [9.2285813, 49.1387912]], [[9.2355806, 49.1392432], [9.2355832, 49.1392248], [9.2355993, 49.1392142], [9.2357147, 49.1392081], [9.2357455, 49.1392064], [9.2357576, 49.1391949], [9.2357656, 49.1391739], [9.2357522, 49.1390651], [9.2357361, 49.1390186], [9.2357281, 49.1389519], [9.2357087, 49.1388008], [9.2356744, 49.1385334], [9.2356524, 49.1383902]], [[9.2304855, 49.1386842], [9.2304678, 49.1385322], [9.2304924, 49.1380947], [9.2305031, 49.1380684], [9.2304923, 49.1380491], [9.2304575, 49.1380403]], [[9.2295213, 49.1387785], [9.2293460, 49.1387827], [9.2291784, 49.1387847], [9.2291545, 49.1387850], [9.2285813, 49.1387912]], [[9.2295108, 49.1386929], [9.2296824, 49.1386926], [9.2301650, 49.1386918], [9.2304744, 49.1386853]], [[9.2285813, 49.1387912], [9.2289367, 49.1387553], [9.2291739, 49.1387169], [9.2292685, 49.1387085], [9.2293364, 49.1387026]], [[9.2304744, 49.1386853], [9.2304855, 49.1386842], [9.2314095, 49.1386147], [9.2315140, 49.1386055], [9.2320681, 49.1385752], [9.2327523, 49.1385377], [9.2331841, 49.1385170], [9.2333852, 49.1385051], [9.2338661, 49.1384768]], [[9.2293364, 49.1387026], [9.2295108, 49.1386929]], [[9.2219954, 49.1391421], [9.2220334, 49.1391418], [9.2225800, 49.1391178], [9.2227436, 49.1391128], [9.2233674, 49.1390832], [9.2243011, 49.1390286], [9.2254205, 49.1389685], [9.2260978, 49.1389339], [9.2262441, 49.1389251], [9.2264279, 49.1389141], [9.2267434, 49.1388953], [9.2268080, 49.1388914], [9.2269465, 49.1388831], [9.2271488, 49.1388706], [9.2272927, 49.1388638]], [[9.2212601, 49.1391164], [9.2214381, 49.1391196], [9.2219954, 49.1391421]], [[9.2304744, 49.1386853], [9.2303764, 49.1387050], [9.2302003, 49.1387300], [9.2299057, 49.1387595], [9.2296821, 49.1387744], [9.2295213, 49.1387785]], [[9.2380132, 49.1383062], [9.2371146, 49.1383330]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "10", + "name": "Wormser Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1045849, 49.1822985], [9.1043943, 49.1820061]], [[9.1038900, 49.1836589], [9.1035175, 49.1837078], [9.1034636, 49.1837310], [9.1034423, 49.1837764], [9.1035601, 49.1841103]], [[9.1140796, 49.1801782], [9.1141496, 49.1804105], [9.1144870, 49.1808862]], [[9.1151539, 49.1802201], [9.1151790, 49.1806038]], [[9.1133519, 49.1807505], [9.1137112, 49.1812702]], [[9.1040745, 49.1843564], [9.1039718, 49.1840055], [9.1038900, 49.1836589], [9.1038841, 49.1836338], [9.1038623, 49.1834321], [9.1039353, 49.1830759], [9.1040664, 49.1828497], [9.1042638, 49.1825977], [9.1044805, 49.1823617], [9.1045849, 49.1822985], [9.1048893, 49.1821143], [9.1051818, 49.1819753], [9.1054849, 49.1818558], [9.1061239, 49.1817109], [9.1068814, 49.1816766], [9.1076169, 49.1816574], [9.1080847, 49.1816447], [9.1084974, 49.1816210], [9.1089333, 49.1815757], [9.1096683, 49.1814771], [9.1102083, 49.1813713], [9.1110999, 49.1811878], [9.1117852, 49.1810463], [9.1122910, 49.1809417], [9.1133519, 49.1807505], [9.1134072, 49.1807035], [9.1134237, 49.1806604], [9.1134323, 49.1806378], [9.1133253, 49.1802008], [9.1140796, 49.1801782], [9.1143345, 49.1801825], [9.1150308, 49.1802177], [9.1151539, 49.1802201], [9.1155916, 49.1802315], [9.1157336, 49.1802354]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Wunnensteinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2253774, 49.1283168], [9.2252998, 49.1282527], [9.2252715, 49.1282177], [9.2252433, 49.1281633], [9.2252192, 49.1281141], [9.2251896, 49.1280299], [9.2250824, 49.1276850]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Würzburger Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1730043, 49.1611693], [9.1731183, 49.1612161]], [[9.1735469, 49.1615007], [9.1739057, 49.1617742], [9.1742735, 49.1620190], [9.1749607, 49.1624165], [9.1751240, 49.1625126], [9.1752161, 49.1625674], [9.1753593, 49.1626528], [9.1755197, 49.1627451], [9.1756828, 49.1628417], [9.1760958, 49.1630704], [9.1764908, 49.1632809], [9.1768531, 49.1634165], [9.1773948, 49.1635644], [9.1776464, 49.1636209], [9.1781179, 49.1637233], [9.1784042, 49.1637852], [9.1785083, 49.1638077], [9.1786726, 49.1638468], [9.1791462, 49.1639541], [9.1794487, 49.1640217]], [[9.1794487, 49.1640217], [9.1796525, 49.1640652], [9.1798322, 49.1641026]], [[9.1798322, 49.1641026], [9.1801095, 49.1641704], [9.1806173, 49.1642945], [9.1807271, 49.1643213], [9.1808141, 49.1643397], [9.1813731, 49.1644699], [9.1820074, 49.1646049]], [[9.1731183, 49.1612161], [9.1732811, 49.1613037], [9.1733043, 49.1613162], [9.1735469, 49.1615007]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Wüstenroter Straße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2326341, 49.1288612], [9.2327840, 49.1289739], [9.2328790, 49.1290860], [9.2330054, 49.1292577], [9.2330972, 49.1294100], [9.2333423, 49.1299092], [9.2333552, 49.1299342], [9.2333673, 49.1299497], [9.2333940, 49.1299621]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Zabergäustraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1930678, 49.1296603], [9.1931237, 49.1296572], [9.1931669, 49.1296616], [9.1931934, 49.1296730], [9.1934263, 49.1298979], [9.1937936, 49.1303073], [9.1940748, 49.1306405], [9.1942337, 49.1309588], [9.1944923, 49.1313702]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Zehentgasse" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2175825, 49.1451588], [9.2182257, 49.1450009], [9.2185236, 49.1449500], [9.2187934, 49.1449119], [9.2191227, 49.1448710], [9.2192724, 49.1448524], [9.2200426, 49.1447743], [9.2204106, 49.1447453]], [[9.2204106, 49.1447453], [9.2204627, 49.1447425], [9.2208705, 49.1447304]], [[9.2200426, 49.1447743], [9.2200258, 49.1446783], [9.2203446, 49.1446508], [9.2203728, 49.1446562], [9.2204030, 49.1446795], [9.2204075, 49.1447027], [9.2204106, 49.1447453]], [[9.2181758, 49.1448903], [9.2186321, 49.1448235], [9.2189982, 49.1447752], [9.2190277, 49.1447787], [9.2190572, 49.1447875], [9.2191227, 49.1448710]], [[9.2192546, 49.1447520], [9.2196795, 49.1447090], [9.2200258, 49.1446783]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Zeisigstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1459919, 49.1954203], [9.1463026, 49.1952685], [9.1466649, 49.1951134], [9.1469779, 49.1949976], [9.1471022, 49.1949619], [9.1472601, 49.1949335], [9.1474365, 49.1949156], [9.1475498, 49.1949125], [9.1477191, 49.1949152], [9.1480841, 49.1949317], [9.1483576, 49.1949559], [9.1487557, 49.1950124], [9.1491531, 49.1950738]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Zellerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1917343, 49.1432524], [9.1909381, 49.1433419], [9.1902208, 49.1434123], [9.1897998, 49.1434219], [9.1895188, 49.1434082], [9.1893871, 49.1433786], [9.1893271, 49.1433211]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Zeppelinstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2090623, 49.1265532], [9.2092286, 49.1265198], [9.2103372, 49.1263527]], [[9.2103716, 49.1264296], [9.2112529, 49.1262591], [9.2122443, 49.1260806], [9.2128244, 49.1259742], [9.2133308, 49.1258786], [9.2137009, 49.1258025], [9.2137757, 49.1257891], [9.2138324, 49.1257835], [9.2138910, 49.1257831], [9.2139996, 49.1257815]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Ziegeleistraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1418795, 49.1937661], [9.1418285, 49.1937093], [9.1417787, 49.1936757], [9.1416593, 49.1936192], [9.1411242, 49.1934297], [9.1409647, 49.1933732], [9.1409037, 49.1933544], [9.1404650, 49.1932191], [9.1399549, 49.1930824], [9.1398783, 49.1930531], [9.1398256, 49.1930234], [9.1397366, 49.1929692], [9.1393832, 49.1927533], [9.1393267, 49.1927297], [9.1389621, 49.1925918], [9.1386788, 49.1924907], [9.1380983, 49.1922921], [9.1379931, 49.1922653], [9.1378118, 49.1922279], [9.1376212, 49.1921951], [9.1374082, 49.1921691], [9.1372458, 49.1921506], [9.1368403, 49.1921305], [9.1367252, 49.1921288], [9.1366455, 49.1921338]], [[9.1366455, 49.1921338], [9.1365475, 49.1921440], [9.1363858, 49.1921489], [9.1361301, 49.1921514], [9.1359872, 49.1921423], [9.1358769, 49.1921301], [9.1357492, 49.1921069]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Ziegeleiweg" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1891593, 49.1309400], [9.1887067, 49.1309183], [9.1875269, 49.1308791]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14-18", + "name": "Zieglerstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2271769, 49.1500904], [9.2268783, 49.1498864], [9.2268453, 49.1498433], [9.2267770, 49.1496830], [9.2267652, 49.1496537]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Ziemssenstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1878201, 49.1428376], [9.1883933, 49.1428591]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Zückwolfstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1997840, 49.1703864], [9.1998247, 49.1703846], [9.2002591, 49.1703650], [9.2005460, 49.1703521], [9.2005937, 49.1703500], [9.2008443, 49.1703387], [9.2009108, 49.1703357]], [[9.2009108, 49.1703357], [9.2009689, 49.1703322], [9.2015616, 49.1703012]], [[9.2005871, 49.1701409], [9.2003401, 49.1701420]], [[9.2009689, 49.1703322], [9.2009872, 49.1705139]], [[9.2015616, 49.1703012], [9.2018084, 49.1702927], [9.2025978, 49.1702586], [9.2028342, 49.1701344]], [[9.2005937, 49.1703500], [9.2005871, 49.1701409], [9.2005877, 49.1700444]], [[9.2002591, 49.1703650], [9.2002557, 49.1700542], [9.1999859, 49.1700581]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Zügelstraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.2195975, 49.1270847], [9.2195327, 49.1258296]], [[9.2199338, 49.1287031], [9.2198775, 49.1286688], [9.2198490, 49.1286427], [9.2198332, 49.1286176], [9.2197823, 49.1284309], [9.2197421, 49.1282537], [9.2196750, 49.1279737], [9.2196522, 49.1278824], [9.2196375, 49.1278096], [9.2196214, 49.1276394], [9.2196069, 49.1273390], [9.2195975, 49.1270847]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "14", + "name": "Zweite Hohl" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1452685, 49.1219320], [9.1452809, 49.1227257], [9.1452828, 49.1247233], [9.1452763, 49.1254749], [9.1452723, 49.1259291], [9.1451755, 49.1269987], [9.1449072, 49.1298334], [9.1448027, 49.1310467], [9.1446490, 49.1326128]], [[9.1450370, 49.1210709], [9.1450166, 49.1216593], [9.1450885, 49.1219969]]] + } + } +, { + "type": "Feature", + "properties": { + "haertegrad": "9", + "name": "Zwirnereistraße" + }, + "geometry": { + "type": "MultiLineString", + "coordinates": +[[[9.1935859, 49.1195235], [9.1926703, 49.1191796], [9.1926420, 49.1191749], [9.1926181, 49.1191749], [9.1925839, 49.1191800], [9.1925345, 49.1191795], [9.1924774, 49.1191657], [9.1920318, 49.1189988], [9.1919881, 49.1189802], [9.1919541, 49.1189575], [9.1919249, 49.1189187], [9.1918505, 49.1187888]], [[9.1925839, 49.1191800], [9.1923757, 49.1194338], [9.1922647, 49.1195687], [9.1922513, 49.1195850], [9.1918937, 49.1199937]], [[9.1917662, 49.1194065], [9.1922513, 49.1195850]], [[9.1928635, 49.1203572], [9.1925171, 49.1202297], [9.1918937, 49.1199937], [9.1915585, 49.1198673], [9.1914949, 49.1198393], [9.1914532, 49.1198175], [9.1914145, 49.1197863]]] + } + } + ]} \ No newline at end of file diff --git a/node-backend/mongo-setup.js b/node-backend/mongo-setup.js new file mode 100644 index 0000000..659e326 --- /dev/null +++ b/node-backend/mongo-setup.js @@ -0,0 +1,22 @@ +var GeoJSON = require('mongoose-geojson-schema'); +var mongoose = require('mongoose'); + +exports.setupInstance = function() { + mongoose.connect('mongodb://localhost/tapwater'); + + var Location = mongoose.model('Location', new mongoose.Schema({ + name: String, + zone: String, + geometry: GeoJSON.Geometry + })); + var Zone = mongoose.model('Zone', { + name: String, + calcium: Number, + kalium: Number + }); + + return { + location: Location, + zone: Zone + }; +}; diff --git a/node-backend/zones.json b/node-backend/zones.json new file mode 100644 index 0000000..3894dd0 --- /dev/null +++ b/node-backend/zones.json @@ -0,0 +1,1862 @@ +{ + "Heilbronn 14-18": { + "natrium": "6-12", + "kalium": "1-3", + "calcium": "80-92", + "magnesium": "14-20", + "chlorid": "20-25", + "nitrat": "18-22", + "sulfat": "37-57", + "hardness": "14-18", + "year": "2013", + "description": "" + }, + "Heilbronn 14": { + "natrium": 7, + "kalium": 2, + "calcium": 70, + "magnesium": 17, + "chlorid": 16, + "nitrat": 13, + "sulfat": 35, + "hardness": 14, + "year": "2013", + "description": "" + }, + "Heilbronn 10": { + "natrium": "6-7", + "kalium": "1-2", + "calcium": "55-60", + "magnesium": "11-12", + "chlorid": "9-10", + "nitrat": "8-9", + "sulfat": "91-92", + "hardness": 10, + "year": "2013", + "description": "" + }, + "Heilbronn 9": { + "natrium": "5-6", + "kalium": "1-2", + "calcium": "48-52", + "magnesium": "7-9", + "chlorid": "8-9", + "nitrat": "5-7", + "sulfat": 32, + "hardness": 9, + "year": "2013", + "description": "" + }, + "Abstatt Happenbach": { + "natrium": 8, + "kalium": 2.3, + "calcium": 79, + "magnesium": 18, + "chlorid": 9, + "nitrat": 8.3, + "sulfat": 84, + "hardness": 15.3, + "year": "2014", + "description": "Hochbehälter Unterheinriet, Mischwasser aus Bodenseewasser und Quellwasser der Heumahdenquelle" + }, + "Abstatt Gewerbegebiet Abstatt": { + "natrium": 8, + "kalium": 2.3, + "calcium": 79, + "magnesium": 18, + "chlorid": 9, + "nitrat": 8.3, + "sulfat": 84, + "hardness": 15.3, + "year": "2014", + "description": "Hochbehälter Unterheinriet, Mischwasser aus Bodenseewasser und Quellwasser der Heumahdenquelle" + }, + "Abstatt Kernstadt Zone 1": { + "natrium": 6.8, + "kalium": 1.7, + "calcium": 83, + "magnesium": 17, + "chlorid": 17, + "nitrat": 13, + "sulfat": 68, + "hardness": 15.5, + "year": "2014", + "description": "Haupthochbehälter Stettenfels,Mischwasser aus Bodenseewasser und Pumpwerk Auenstein." + }, + "Abstatt Kernstadt Zone 2": { + "natrium": 8, + "kalium": 2.3, + "calcium": 79, + "magnesium": 18, + "chlorid": 9, + "nitrat": 8.3, + "sulfat": 84, + "hardness": 15.3, + "year": "2014", + "description": "Hochbehälter Unterheinriet, Mischwasser aus Bodenseewasser und Quellwasser der Heumahdenquelle" + }, + "Abstatt Kernstadt Zone 3": { + "natrium": "6.8-8", + "kalium": "1.7-2.3", + "calcium": "79-83", + "magnesium": "17-18", + "chlorid": "9-17", + "nitrat": "8.3-13", + "sulfat": "68-84", + "hardness": "15.5-15.3", + "year": "2014", + "description": "Ein Teil der Staßen hat Wasser vom Haupthochbehälter Stettenfels,Mischwasser aus Bodenseewasser und PW Auenstein,\nder andere Teil hat Wasser vom HB Unterheinriet/Happenbach, Mischwasser aus Bodenseewasser und Heumahdenqelle." + }, + "Abstatt Vohenlohe": { + "natrium": 6.8, + "kalium": 1.7, + "calcium": 83, + "magnesium": 17, + "chlorid": 17, + "nitrat": 13, + "sulfat": 68, + "hardness": 15.5, + "year": "2014", + "description": "Haupthochbehälter Stettenfels, Mischwasser aus Bodenseewasser und Pumpwerk Auenstein." + }, + "Bad Friedrichshall Duttenberg": { + "natrium": 14.9, + "kalium": 2.1, + "calcium": 68.4, + "magnesium": 14.3, + "chlorid": 27.9, + "nitrat": 10, + "sulfat": 53.2, + "hardness": 12.9, + "year": "2013", + "description": "Mischwasser, 50 % Bodenseewasser, 50 % Eigenwasser" + }, + "Bad Friedrichshall Hagenbach": { + "natrium": 7.8, + "kalium": 1.3, + "calcium": 87.8, + "magnesium": 15.9, + "chlorid": 22, + "nitrat": 20.7, + "sulfat": 45.3, + "hardness": 16, + "year": "2013", + "description": "Mischwasser, 50 % Bodenseewasser, 50 % Eigenwasser" + }, + "Bad Friedrichshall Jagstfeld": { + "natrium": 7.8, + "kalium": 1.3, + "calcium": 87.8, + "magnesium": 15.9, + "chlorid": 22, + "nitrat": 20.7, + "sulfat": 45.3, + "hardness": 16, + "year": "2013", + "description": "Mischwasser, 50 % Bodenseewasser, 50 % Eigenwasser" + }, + "Bad Friedrichshall Kochendorf Nord": { + "natrium": 7.8, + "kalium": 1.3, + "calcium": 87.8, + "magnesium": 15.9, + "chlorid": 22, + "nitrat": 20.7, + "sulfat": 45.3, + "hardness": 16, + "year": "2013", + "description": "Mischwasser" + }, + "Bad Friedrichshall Kochendorf Süd": { + "natrium": 6, + "kalium": 1.2, + "calcium": 91.8, + "magnesium": 20.2, + "chlorid": 26.4, + "nitrat": 37.3, + "sulfat": 45.4, + "hardness": 17.4, + "year": "2013", + "description": "Mischwasser" + }, + "Bad Friedrichshall Plattenwald": { + "natrium": 5.7, + "kalium": 1.4, + "calcium": 64.7, + "magnesium": 12.4, + "chlorid": 14.6, + "nitrat": 16.1, + "sulfat": 37.9, + "hardness": 11.9, + "year": "2013", + "description": "Mischwasser, 50 % Bodenseewasser, 50 % Eigenwasser" + }, + "Bad Friedrichshall Untergriesheim": { + "natrium": 6.6, + "kalium": 1.3, + "calcium": 81.7, + "magnesium": 14.8, + "chlorid": 20, + "nitrat": 20.4, + "sulfat": 40.1, + "hardness": 14.9, + "year": "2013", + "description": "Mischwasser, 50 % Bodenseewasser, 50 % Eigenwasser" + }, + "Bad Rappenau Babstadt": { + "natrium": 16.1, + "kalium": 2.2, + "calcium": 68.8, + "magnesium": 14.1, + "chlorid": 30.7, + "nitrat": 13.9, + "sulfat": 48.5, + "hardness": 12.9, + "year": "2014", + "description": "Mischwasser" + }, + "Bad Rappenau Bonfeld": { + "natrium": 16.1, + "kalium": 2.2, + "calcium": 68.8, + "magnesium": 14.1, + "chlorid": 30.7, + "nitrat": 13.9, + "sulfat": 48.5, + "hardness": 12.9, + "year": "2014", + "description": "Mischwasser" + }, + "Bad Rappenau Fürfeld": { + "natrium": 16.1, + "kalium": 2.2, + "calcium": 68.8, + "magnesium": 14.1, + "chlorid": 30.7, + "nitrat": 13.9, + "sulfat": 48.5, + "hardness": 12.9, + "year": "2014", + "description": "Mischwasser" + }, + "Bad Rappenau Grombach": { + "natrium": 16.1, + "kalium": 2.2, + "calcium": 68.8, + "magnesium": 14.1, + "chlorid": 30.7, + "nitrat": 13.9, + "sulfat": 48.5, + "hardness": 12.9, + "year": "2014", + "description": "Mischwasser" + }, + "Bad Rappenau Heinsheim": { + "natrium": 16.1, + "kalium": 2.2, + "calcium": 68.8, + "magnesium": 14.1, + "chlorid": 30.7, + "nitrat": 13.9, + "sulfat": 48.5, + "hardness": 12.9, + "year": "2014", + "description": "Mischwasser" + }, + "Bad Rappenau Kernstadt": { + "natrium": 16.1, + "kalium": 2.2, + "calcium": 68.8, + "magnesium": 14.1, + "chlorid": 30.7, + "nitrat": 13.9, + "sulfat": 48.5, + "hardness": 12.9, + "year": "2014", + "description": "Mischwasser" + }, + "Bad Rappenau Obergimpern": { + "natrium": 17.9, + "kalium": 2.5, + "calcium": 67.2, + "magnesium": 11.8, + "chlorid": 30.5, + "nitrat": 14.4, + "sulfat": 47.9, + "hardness": 12.1, + "year": "2014", + "description": "Mischwasser" + }, + "Bad Rappenau Treschklingen": { + "natrium": 16.1, + "kalium": 2.2, + "calcium": 68.8, + "magnesium": 14.1, + "chlorid": 30.7, + "nitrat": 13.9, + "sulfat": 48.5, + "hardness": 12.9, + "year": "2014", + "description": "Mischwasser" + }, + "Bad Rappenau Wollenberg": { + "natrium": 17.9, + "kalium": 2.5, + "calcium": 67.2, + "magnesium": 11.8, + "chlorid": 30.5, + "nitrat": 14.4, + "sulfat": 47.9, + "hardness": 12.1, + "year": "2014", + "description": "Mischwasser" + }, + "Bad Wimpfen": { + "natrium": 5.6, + "kalium": 2.2, + "calcium": 74.3, + "magnesium": 15.4, + "chlorid": 13.8, + "nitrat": 12.3, + "sulfat": 35.1, + "hardness": 13.7, + "year": "2013", + "description": "Mischwasser" + }, + "Beilstein Hochbehälter Rad (Beilstein West)": { + "natrium": 9, + "kalium": 1.7, + "calcium": 94.9, + "magnesium": 21, + "chlorid": 27.6, + "nitrat": 27.1, + "sulfat": 23.5, + "hardness": 18.1, + "year": "2013", + "description": "Mischwasser" + }, + "Beilstein Hochbehälter Langhans (Beilstein Ost)": { + "natrium": 7.4, + "kalium": 1.5, + "calcium": 81.9, + "magnesium": 38.1, + "chlorid": 14.6, + "nitrat": 21.5, + "sulfat": 34.9, + "hardness": 20.2, + "year": "2013", + "description": "Eigenwasser" + }, + "Beilstein Billensbach": { + "natrium": 4.4, + "kalium": 1.1, + "calcium": 70.2, + "magnesium": 35.4, + "chlorid": 5.7, + "nitrat": 25.8, + "sulfat": 16.1, + "hardness": 18, + "year": "2013", + "description": "" + }, + "Beilstein Maad": { + "natrium": 4.4, + "kalium": 1.1, + "calcium": 70.2, + "magnesium": 35.4, + "chlorid": 5.7, + "nitrat": 25.8, + "sulfat": 16.1, + "hardness": 18, + "year": "2013", + "description": "" + }, + "Beilstein Kaisersbach": { + "natrium": 6.1, + "kalium": 1.2, + "calcium": 65.3, + "magnesium": 34.1, + "chlorid": 6.5, + "nitrat": 18.3, + "sulfat": 18.1, + "hardness": 17, + "year": "2013", + "description": "" + }, + "Beilstein Etzlenswenden": { + "natrium": 6.3, + "kalium": 1.7, + "calcium": 65.1, + "magnesium": 34, + "chlorid": 6.6, + "nitrat": 18.1, + "sulfat": 18.2, + "hardness": 16.9, + "year": "2013", + "description": "" + }, + "Beilstein Farnersberg": { + "natrium": 6.3, + "kalium": 1.7, + "calcium": 65.1, + "magnesium": 34, + "chlorid": 6.6, + "nitrat": 18.1, + "sulfat": 18.2, + "hardness": 16.9, + "year": "2013", + "description": "" + }, + "Beilstein Stocksberg": { + "natrium": 17, + "kalium": 1.3, + "calcium": 57, + "magnesium": 28.9, + "chlorid": 33.1, + "nitrat": 8.5, + "sulfat": 13.4, + "hardness": 14.6, + "year": "2013", + "description": "" + }, + "Beilstein Klingen": { + "natrium": 4.3, + "kalium": 0.82, + "calcium": 65.6, + "magnesium": 33.8, + "chlorid": 4.8, + "nitrat": 20.1, + "sulfat": 18.7, + "hardness": 17, + "year": "2013", + "description": "" + }, + "Brackenheim Botenheim": { + "natrium": 12.4, + "kalium": 1.8, + "calcium": 102, + "magnesium": 24.9, + "chlorid": 25.7, + "nitrat": 25.6, + "sulfat": 105, + "hardness": 13.21, + "year": "2012", + "description": "Hochbehälter Muckenloch, Mischwasser" + }, + "Brackenheim": { + "natrium": 12.4, + "kalium": 1.8, + "calcium": 102, + "magnesium": 24.9, + "chlorid": 25.7, + "nitrat": 25.6, + "sulfat": 105, + "hardness": 13.21, + "year": "2012", + "description": "Hochbehälter Muckenloch, Mischwasser" + }, + "Brackenheim Dürrenzimmern": { + "natrium": 12.4, + "kalium": 1.8, + "calcium": 102, + "magnesium": 24.9, + "chlorid": 25.7, + "nitrat": 25.6, + "sulfat": 105, + "hardness": 13.21, + "year": "2012", + "description": "Hochbehälter Muckenloch, Mischwasser" + }, + "Brackenheim Hausen": { + "natrium": 12.4, + "kalium": 1.8, + "calcium": 102, + "magnesium": 24.9, + "chlorid": 25.7, + "nitrat": 25.6, + "sulfat": 105, + "hardness": 13.21, + "year": "2012", + "description": "Hochbehälter Muckenloch, Mischwasser" + }, + "Brackenheim Meimsheim": { + "natrium": 12.4, + "kalium": 1.8, + "calcium": 102, + "magnesium": 24.9, + "chlorid": 25.7, + "nitrat": 25.6, + "sulfat": 105, + "hardness": 13.21, + "year": "2012", + "description": "Hochbehälter Muckenloch, Mischwasser" + }, + "Brackenheim Neipperg": { + "natrium": 5.4, + "kalium": 1.4, + "calcium": 50, + "magnesium": 8, + "chlorid": 7.2, + "nitrat": 4.3, + "sulfat": 33, + "hardness": 9, + "year": "2013", + "description": "Reines Bodenseewasser" + }, + "Brackenheim Stocksberg Haberschlacht": { + "natrium": 5.4, + "kalium": 1.4, + "calcium": 50, + "magnesium": 8, + "chlorid": 7.2, + "nitrat": 4.3, + "sulfat": 33, + "hardness": 9, + "year": "2013", + "description": "Reines Bodenseewasser" + }, + "Brackenheim Stocksberg Stockheim": { + "natrium": 5.4, + "kalium": 1.4, + "calcium": 50, + "magnesium": 8, + "chlorid": 7.2, + "nitrat": 4.3, + "sulfat": 33, + "hardness": 9, + "year": "2013", + "description": "Reines Bodenseewasser" + }, + "Cleebronn": { + "natrium": 12.2, + "kalium": 2.1, + "calcium": 120.3, + "magnesium": 36.7, + "chlorid": 11.4, + "nitrat": 7.9, + "sulfat": 247, + "hardness": 25.3, + "year": "2012", + "description": "Mischwasser" + }, + "Eberstadt": { + "natrium": 13, + "kalium": "2-3", + "calcium": "100-120", + "magnesium": "34-37", + "chlorid": 29, + "nitrat": "19-20", + "sulfat": "137-145", + "hardness": "23-25", + "year": "2013", + "description": "Mischwasser, 50 % Bodenseewasser, 50 % Eigenwasser" + }, + "Ellhofen": { + "natrium": 7.3, + "kalium": 2, + "calcium": 75.6, + "magnesium": 18.8, + "chlorid": 12.8, + "nitrat": 11.3, + "sulfat": 73.1, + "hardness": 14.9, + "year": "2013", + "description": "Mischwasser, 80 % NOW (Zweckverband Wasserversorgung Nordostwürttemberg), 20 % Eigenwasser" + }, + "Eppingen Adelshofen": { + "natrium": 6.8, + "kalium": 1.6, + "calcium": 106, + "magnesium": 22.8, + "chlorid": 30.5, + "nitrat": 29.9, + "sulfat": 45.7, + "hardness": 20.1, + "year": "2014", + "description": "Mischwasser" + }, + "Eppingen Elsenz": { + "natrium": 6.8, + "kalium": 1.6, + "calcium": 106, + "magnesium": 22.8, + "chlorid": 30.5, + "nitrat": 29.9, + "sulfat": 45.7, + "hardness": 20.1, + "year": "2014", + "description": "Mischwasser" + }, + "Eppingen Kernstadt": { + "natrium": 6.8, + "kalium": 1.6, + "calcium": 106, + "magnesium": 22.8, + "chlorid": 30.5, + "nitrat": 29.9, + "sulfat": 45.7, + "hardness": 20.1, + "year": "2014", + "description": "Mischwasser" + }, + "Eppingen Kleingartach": { + "natrium": 6.8, + "kalium": 1.6, + "calcium": 106, + "magnesium": 22.8, + "chlorid": 30.5, + "nitrat": 29.9, + "sulfat": 45.7, + "hardness": 20.1, + "year": "2014", + "description": "Mischwasser" + }, + "Eppingen Mühlbach": { + "natrium": 5.91, + "kalium": 1.48, + "calcium": 90.8, + "magnesium": 25.1, + "chlorid": 22.2, + "nitrat": 27.4, + "sulfat": 41.8, + "hardness": 18.5, + "year": "2014", + "description": "Mischwasser" + }, + "Eppingen Richen": { + "natrium": 6.8, + "kalium": 1.6, + "calcium": 106, + "magnesium": 22.8, + "chlorid": 30.5, + "nitrat": 29.9, + "sulfat": 45.7, + "hardness": 20.1, + "year": "2014", + "description": "Mischwasser" + }, + "Eppingen Rohrbach": { + "natrium": 6.8, + "kalium": 1.6, + "calcium": 106, + "magnesium": 22.8, + "chlorid": 30.5, + "nitrat": 29.9, + "sulfat": 45.7, + "hardness": 20.1, + "year": "2014", + "description": "Mischwasser" + }, + "Erlenbach": { + "natrium": 7.1, + "kalium": 1.7, + "calcium": 87.4, + "magnesium": 21, + "chlorid": 11.3, + "nitrat": 9.7, + "sulfat": 121, + "hardness": 17.1, + "year": "2012", + "description": "Mischwasser, 80 % NOW (Zweckverband Wasserversorgung Nordostwürttemberg), 20 % Eigenwasser" + }, + "Flein": { + "natrium": 5.2, + "kalium": 1.4, + "calcium": 48, + "magnesium": 8, + "chlorid": 7, + "nitrat": 4.2, + "sulfat": 34, + "hardness": 9, + "year": "2012", + "description": "Reines Bodenseewasser" + }, + "Gemmingen": { + "natrium": 16.1, + "kalium": 2.2, + "calcium": 68.8, + "magnesium": 14.1, + "chlorid": 30.7, + "nitrat": 13.9, + "sulfat": 48.5, + "hardness": 12.9, + "year": "2014", + "description": "Mischwasser" + }, + "Gochsen": { + "natrium": 12, + "kalium": 1.4, + "calcium": 105, + "magnesium": 31, + "chlorid": 46, + "nitrat": 22, + "sulfat": 34, + "hardness": 22, + "year": "2013", + "description": "Eigenwasser" + }, + "Güglingen": { + "natrium": 7, + "kalium": 1.5, + "calcium": 80.7, + "magnesium": 21.7, + "chlorid": 17, + "nitrat": 17.5, + "sulfat": 55.3, + "hardness": 16.3, + "year": "2013", + "description": "Mischwasser, 60 % Eigenwasser, 40 % Bodenseewasser" + }, + "Gundelsheim Bachenau": { + "natrium": "", + "kalium": "", + "calcium": 48, + "magnesium": 8, + "chlorid": "", + "nitrat": 4.5, + "sulfat": 34, + "hardness": 9, + "year": "2013", + "description": "Reines Bodenseewasser" + }, + "Gundelsheim Böttingen": { + "natrium": 7, + "kalium": 1.9, + "calcium": 63, + "magnesium": 6.9, + "chlorid": 14, + "nitrat": 19, + "sulfat": 7.4, + "hardness": 10, + "year": "2013", + "description": "Eigenwasser" + }, + "Gundelsheim": { + "natrium": 6.9, + "kalium": 2.2, + "calcium": 60, + "magnesium": 9.8, + "chlorid": 13, + "nitrat": 16, + "sulfat": 7.5, + "hardness": 11, + "year": "2013", + "description": "Eigenwasser" + }, + "Gundelsheim Höchstberg": { + "natrium": 17, + "kalium": 1.1, + "calcium": 56, + "magnesium": 4, + "chlorid": 28, + "nitrat": 8.1, + "sulfat": 4.6, + "hardness": 9, + "year": "2013", + "description": "Eigenwasser" + }, + "Gundelsheim Obergriesh": { + "natrium": "", + "kalium": "", + "calcium": 48, + "magnesium": 8, + "chlorid": "", + "nitrat": 4.5, + "sulfat": 34, + "hardness": 9, + "year": "2013", + "description": "Reines Bodenseewasser" + }, + "Gundelsheim Tiefenbach": { + "natrium": "", + "kalium": "", + "calcium": 48, + "magnesium": 8, + "chlorid": "", + "nitrat": 4.5, + "sulfat": 34, + "hardness": 9, + "year": "2013", + "description": "Reines Bodenseewasser" + }, + "Haßmersheim": { + "natrium": 23.7, + "kalium": 2.9, + "calcium": 71.6, + "magnesium": 12.5, + "chlorid": 39.2, + "nitrat": 19.9, + "sulfat": 55.7, + "hardness": 12.9, + "year": "2014", + "description": "Mischwasser" + }, + "Haßmersheim Hochhausen": { + "natrium": 5.2, + "kalium": 1.4, + "calcium": 48, + "magnesium": 8, + "chlorid": 7, + "nitrat": 4.2, + "sulfat": 35, + "hardness": 9, + "year": "2014", + "description": "Mischwasser" + }, + "Haßmersheim Neckarmühlbach": { + "natrium": 23.7, + "kalium": 2.9, + "calcium": 71.6, + "magnesium": 12.5, + "chlorid": 39.2, + "nitrat": 19.9, + "sulfat": 55.7, + "hardness": 12.9, + "year": "2014", + "description": "Mischwasser" + }, + "Hüffenhardt": { + "natrium": 17.9, + "kalium": 2.5, + "calcium": 67.2, + "magnesium": 11.8, + "chlorid": 30.5, + "nitrat": 14.4, + "sulfat": 47.9, + "hardness": 12.1, + "year": "2014", + "description": "Mischwasser" + }, + "Ilsfeld Abstetterhof": { + "natrium": 6.8, + "kalium": 1.7, + "calcium": 83, + "magnesium": 17, + "chlorid": 17, + "nitrat": 13, + "sulfat": 68, + "hardness": 15.5, + "year": "2014", + "description": "Haupthochbehälter Stettenfels, Mischwasser aus Bodenseewasser und Pumpwerk Auenstein" + }, + "Ilsfeld Auenstein": { + "natrium": 6.8, + "kalium": 1.7, + "calcium": 83, + "magnesium": 17, + "chlorid": 17, + "nitrat": 13, + "sulfat": 68, + "hardness": 15.5, + "year": "2014", + "description": "Haupthochbehälter Stettenfels, Mischwasser aus Bodenseewasser und Pumpwerk Auenstein" + }, + "Ilsfeld Helfenberg": { + "natrium": 6.8, + "kalium": 1.7, + "calcium": 83, + "magnesium": 17, + "chlorid": 17, + "nitrat": 13, + "sulfat": 68, + "hardness": 15.5, + "year": "2014", + "description": "Haupthochbehälter Stettenfels, Mischwasser aus Bodenseewasser und Pumpwerk Auenstein" + }, + "Ilsfeld": { + "natrium": 7.9, + "kalium": 2.5, + "calcium": 92.5, + "magnesium": 22.7, + "chlorid": 28.6, + "nitrat": 21.3, + "sulfat": 67.4, + "hardness": 18.1, + "year": "2014", + "description": "Mischwasser, 60% Bodenseewasser, 40% Eigenwasser" + }, + "Ilsfeld Raststätten Wunnenstein": { + "natrium": 6.8, + "kalium": 1.7, + "calcium": 83, + "magnesium": 17, + "chlorid": 17, + "nitrat": 13, + "sulfat": 68, + "hardness": 15.5, + "year": "2014", + "description": "Haupthochbehälter Stettenfels, Mischwasser aus Bodenseewasser und Pumpwerk Auenstein" + }, + "Ilsfeld Schozach": { + "natrium": 6.1, + "kalium": 1.6, + "calcium": 54.2, + "magnesium": 8.9, + "chlorid": 7.3, + "nitrat": 4.1, + "sulfat": 33.7, + "hardness": 9.6, + "year": "2014", + "description": "Reines Bodenseewasser" + }, + "Ilsfeld Wüstenhausen": { + "natrium": 6.8, + "kalium": 1.7, + "calcium": 83, + "magnesium": 17, + "chlorid": 17, + "nitrat": 13, + "sulfat": 68, + "hardness": 15.5, + "year": "2014", + "description": "Haupthochbehälter Stettenfels, Mischwasser aus Bodenseewasser und Pumpwerk Auenstein" + }, + "Ittlingen": { + "natrium": 6.8, + "kalium": 1.6, + "calcium": 106, + "magnesium": 22.8, + "chlorid": 30.5, + "nitrat": 29.9, + "sulfat": 45.7, + "hardness": 20.1, + "year": "2014", + "description": "Mischwasser" + }, + "Jagsthausen": { + "natrium": 11, + "kalium": 1.5, + "calcium": 146, + "magnesium": 25, + "chlorid": 25, + "nitrat": 30.6, + "sulfat": 165, + "hardness": 26.2, + "year": "2013", + "description": "100 % Eigenwasser.\n\nDie Wasserversorgung der Gemeinde Jagsthausen ist eine vollkommene Eigenwasserversorgung - ohne Beimischung von Fremdwasser. “Wir haben hier ordentliches Wasser, das zwar hart ist, weil es aus der Muschelkalkschicht kommt. Aber wir sehen keinen Anlass für eine Beimischung von Fremdwasser, wie es andere Kommunen tun”, sagt Bürgermeister Roland Halter. Beschwerden aus der Gemeinde gäbe es keine, viele Einwohner hätten eine Enthärtungsanlage, so der Hinweis des Bürgermeisters. Eine Anbindung an Bodenseewasser sei im Fall von Jagsthausen mit hohen Investitionskosten verbunden und derzeit kein Thema." + }, + "Kirchardt": { + "natrium": 6.8, + "kalium": 1.6, + "calcium": 106, + "magnesium": 22.8, + "chlorid": 30.5, + "nitrat": 29.9, + "sulfat": 45.7, + "hardness": 20.1, + "year": "2014", + "description": "Mischwasser" + }, + "Kochersteinsfeld Hochzone": { + "natrium": 8.6, + "kalium": 1.1, + "calcium": 95, + "magnesium": 23, + "chlorid": 19, + "nitrat": 16, + "sulfat": 27, + "hardness": 19, + "year": "2013", + "description": "Eigenwasser" + }, + "Kochersteinsfeld Niederzone": { + "natrium": 15, + "kalium": 1.3, + "calcium": 120, + "magnesium": 27, + "chlorid": 57, + "nitrat": 30, + "sulfat": 33, + "hardness": 23, + "year": "2013", + "description": "Eigenwasser" + }, + "Lampoldshausen Hochzone": { + "natrium": 9.1, + "kalium": 1.5, + "calcium": 106, + "magnesium": 25, + "chlorid": 21, + "nitrat": 17, + "sulfat": 27, + "hardness": 21, + "year": "2013", + "description": "Eigenwasser" + }, + "Lampoldshausen Niederzone": { + "natrium": 8.6, + "kalium": 1.1, + "calcium": 95, + "magnesium": 23, + "chlorid": 19, + "nitrat": 16, + "sulfat": 27, + "hardness": 19, + "year": "2013", + "description": "Eigenwasser" + }, + "Langenbrettach Brettach": { + "natrium": 20, + "kalium": 2, + "calcium": 104, + "magnesium": 23.7, + "chlorid": 38.9, + "nitrat": 20.8, + "sulfat": 45.4, + "hardness": 20.01, + "year": "2013", + "description": "50% Eigenwasser, 50% Bodenseewasser" + }, + "Langenbrettach Langenbeutingen": { + "natrium": 17, + "kalium": 2, + "calcium": 108, + "magnesium": 26.3, + "chlorid": 37.6, + "nitrat": 22.6, + "sulfat": 54.9, + "hardness": 21.2, + "year": "2013", + "description": "50% Eigenwasser, 50% Bodenseewasser" + }, + "Lauffen am Neckar": { + "natrium": 5.2, + "kalium": 1.4, + "calcium": 48, + "magnesium": 8, + "chlorid": 7.1, + "nitrat": 4.5, + "sulfat": 35, + "hardness": 9, + "year": "2013", + "description": "Bodenseewasser" + }, + "Lehrensteinsfeld": { + "natrium": "", + "kalium": "", + "calcium": "", + "magnesium": "", + "chlorid": "", + "nitrat": "", + "sulfat": "", + "hardness": 9, + "year": "", + "description": "" + }, + "Leingarten": { + "natrium": 13, + "kalium": 6.5, + "calcium": 128, + "magnesium": 33, + "chlorid": 45, + "nitrat": 27, + "sulfat": 93, + "hardness": 25, + "year": "2013", + "description": "Mischwasser, 74% Eigenwasser, 26% Bodensee" + }, + "Löwenstein Hirrweiler": { + "natrium": "", + "kalium": "", + "calcium": 65, + "magnesium": 31, + "chlorid": "", + "nitrat": 6.8, + "sulfat": 18, + "hardness": 16, + "year": "k. A.", + "description": "" + }, + "Löwenstein Hößlinsülz": { + "natrium": "", + "kalium": "", + "calcium": 48, + "magnesium": 7.7, + "chlorid": "", + "nitrat": 4.8, + "sulfat": 36, + "hardness": 9, + "year": "k. A.", + "description": "100 % Bodenseewasser" + }, + "Löwenstein Kernstadt": { + "natrium": "", + "kalium": "", + "calcium": 59, + "magnesium": 25, + "chlorid": "", + "nitrat": 8, + "sulfat": 21, + "hardness": 14, + "year": "k. A.", + "description": "Mischwasser, 60 % Eigenwasser, 40 % Bodenseewasser" + }, + "Löwenstein Reißach": { + "natrium": "", + "kalium": "", + "calcium": 61, + "magnesium": 24, + "chlorid": "", + "nitrat": 8, + "sulfat": 30, + "hardness": 14, + "year": "k. A.", + "description": "Mischwasser" + }, + "Löwenstein Rittelhof": { + "natrium": "", + "kalium": "", + "calcium": 48, + "magnesium": 7.7, + "chlorid": "", + "nitrat": 4.8, + "sulfat": 36, + "hardness": 9, + "year": "k. A.", + "description": "100 % Bodenseewasser" + }, + "Löwenstein Seemühle": { + "natrium": "", + "kalium": "", + "calcium": 48, + "magnesium": 7.7, + "chlorid": "", + "nitrat": 4.8, + "sulfat": 36, + "hardness": 9, + "year": "k. A.", + "description": "100 % Bodenseewasser" + }, + "Massenbachhausen": { + "natrium": 5.78, + "kalium": 0.87, + "calcium": 126.1, + "magnesium": 32.3, + "chlorid": 45.8, + "nitrat": 34.2, + "sulfat": 47.8, + "hardness": 24, + "year": "", + "description": "Eigenwasser" + }, + "Möckmühl Bittelbronn": { + "natrium": 5.2, + "kalium": 1.4, + "calcium": 48, + "magnesium": 8, + "chlorid": 7.1, + "nitrat": 4.5, + "sulfat": 35, + "hardness": 9, + "year": "2013", + "description": "Reines Bodenseewasser" + }, + "Möckmühl Korb": { + "natrium": 12, + "kalium": 1.7, + "calcium": 113, + "magnesium": 15, + "chlorid": 26, + "nitrat": 11, + "sulfat": 95, + "hardness": "17-18", + "year": "2013", + "description": "Mischwasser" + }, + "Möckmühl": { + "natrium": 12, + "kalium": 1.7, + "calcium": 113, + "magnesium": 15, + "chlorid": 26, + "nitrat": 11, + "sulfat": 95, + "hardness": "17-18", + "year": "2013", + "description": "Mischwasser" + }, + "Möckmühl Ruchsen": { + "natrium": 12, + "kalium": 1.7, + "calcium": 113, + "magnesium": 15, + "chlorid": 26, + "nitrat": 11, + "sulfat": 95, + "hardness": "17-18", + "year": "2013", + "description": "Mischwasser" + }, + "Möckmühl Siegelbach": { + "natrium": 5.2, + "kalium": 1.4, + "calcium": 48, + "magnesium": 8, + "chlorid": 7.1, + "nitrat": 4.5, + "sulfat": 35, + "hardness": 9, + "year": "2013", + "description": "Reines Bodenseewasser" + }, + "Möckmühl Züttlingen": { + "natrium": 12, + "kalium": 1.7, + "calcium": 113, + "magnesium": 15, + "chlorid": 26, + "nitrat": 11, + "sulfat": 95, + "hardness": "17-18", + "year": "2013", + "description": "Mischwasser" + }, + "Neckarbischofsheim Helmhof": { + "natrium": 17.9, + "kalium": 2.5, + "calcium": 67.2, + "magnesium": 11.8, + "chlorid": 30.5, + "nitrat": 14.4, + "sulfat": 47.9, + "hardness": 12.1, + "year": "2014", + "description": "Mischwasser" + }, + "Neckarbischofsheim Kernstadt": { + "natrium": 7.1, + "kalium": 1.1, + "calcium": 65.3, + "magnesium": 15.7, + "chlorid": 15.4, + "nitrat": 17.4, + "sulfat": 16.3, + "hardness": 12.7, + "year": "2014", + "description": "Mischwasser" + }, + "Neckarbischofsheim Untergimpern": { + "natrium": 17.9, + "kalium": 2.5, + "calcium": 67.2, + "magnesium": 11.8, + "chlorid": 30.5, + "nitrat": 14.4, + "sulfat": 47.9, + "hardness": 12.1, + "year": "2014", + "description": "Mischwasser" + }, + "Neckarsulm Amorbach": { + "natrium": 7.1, + "kalium": 1.5, + "calcium": 83.1, + "magnesium": 19.6, + "chlorid": "", + "nitrat": 10.8, + "sulfat": 80.3, + "hardness": 16.1, + "year": "2013", + "description": "Mischwasser, 70 % Bodenseewasser, 30 % Eigenwasser" + }, + "Neckarsulm Dahenfeld": { + "natrium": 6.3, + "kalium": 1.5, + "calcium": 62.9, + "magnesium": 12.1, + "chlorid": "", + "nitrat": 6.2, + "sulfat": 47.4, + "hardness": 11.6, + "year": "2013", + "description": "" + }, + "Neckarsulm Kernstadt Zone 1": { + "natrium": 6.7, + "kalium": 1.3, + "calcium": 68.7, + "magnesium": 14.2, + "chlorid": "", + "nitrat": 7, + "sulfat": 53, + "hardness": 12.9, + "year": "2013", + "description": "" + }, + "Neckarsulm Kernstadt Zone 2": { + "natrium": 7.1, + "kalium": 1.5, + "calcium": 83.1, + "magnesium": 19.6, + "chlorid": "", + "nitrat": 10.8, + "sulfat": 80.3, + "hardness": 16.1, + "year": "2013", + "description": "" + }, + "Neckarsulm Obereisesheim": { + "natrium": 23, + "kalium": 3, + "calcium": 100, + "magnesium": 17, + "chlorid": "", + "nitrat": 8.2, + "sulfat": 94.3, + "hardness": 17.9, + "year": "2013", + "description": "" + }, + "Neckarwestheim": { + "natrium": 5.2, + "kalium": 1.4, + "calcium": 48, + "magnesium": 8, + "chlorid": 7, + "nitrat": 4.2, + "sulfat": 34, + "hardness": 9, + "year": "2012", + "description": "Reines Bodenseewasser" + }, + "Neudenau Herbolzheim": { + "natrium": 8.8, + "kalium": 1.9, + "calcium": 77, + "magnesium": 15, + "chlorid": 16, + "nitrat": 16, + "sulfat": 59, + "hardness": 14, + "year": "2013", + "description": "" + }, + "Neudenau Kreßbach": { + "natrium": 30, + "kalium": 2.3, + "calcium": 95, + "magnesium": 16, + "chlorid": 37, + "nitrat": 20, + "sulfat": 93, + "hardness": 17, + "year": "2013", + "description": "" + }, + "Neudenau": { + "natrium": 8.8, + "kalium": 1.9, + "calcium": 77, + "magnesium": 15, + "chlorid": 16, + "nitrat": 16, + "sulfat": 59, + "hardness": 14, + "year": "2013", + "description": "" + }, + "Neudenau Reichertshausen": { + "natrium": 5.4, + "kalium": 1.4, + "calcium": 50, + "magnesium": 8, + "chlorid": 7.2, + "nitrat": 4.3, + "sulfat": 33, + "hardness": 9, + "year": "2013", + "description": "" + }, + "Neudenau Siglingen": { + "natrium": 30, + "kalium": 2.3, + "calcium": 95, + "magnesium": 16, + "chlorid": 37, + "nitrat": 20, + "sulfat": 93, + "hardness": 17, + "year": "2013", + "description": "" + }, + "Neuenstadt am Kocher": { + "natrium": 6.89, + "kalium": 2.2, + "calcium": 101, + "magnesium": 27.7, + "chlorid": "", + "nitrat": 20.7, + "sulfat": 47.9, + "hardness": 20.5, + "year": "2012", + "description": "75% Eigenwasser, 25% Bodenseewasser" + }, + "Neuenstadt am Kocher Stein": { + "natrium": 7, + "kalium": 1.8, + "calcium": 98, + "magnesium": 12, + "chlorid": "", + "nitrat": 16, + "sulfat": 74, + "hardness": 16.5, + "year": "2012", + "description": "55% Eigenwasser, 45% Bodenseewasser" + }, + "Nordheim": { + "natrium": 7, + "kalium": 2, + "calcium": 70, + "magnesium": 17, + "chlorid": 16, + "nitrat": 13, + "sulfat": 35, + "hardness": 14, + "year": "", + "description": "Mischwasser" + }, + "Obersulm Affaltrach": { + "natrium": 6.1, + "kalium": 1.7, + "calcium": 53.2, + "magnesium": 8.8, + "chlorid": 7.7, + "nitrat": 5.1, + "sulfat": 34.6, + "hardness": 9.4, + "year": "", + "description": "Reines Bodenseewasser" + }, + "Obersulm Eichelberg": { + "natrium": 6.1, + "kalium": 1.6, + "calcium": 61.8, + "magnesium": 23.8, + "chlorid": 6, + "nitrat": 7.3, + "sulfat": 28.5, + "hardness": 11.9, + "year": "", + "description": "Mischwasser, 50 % Eigenwasser, 50 % Bodenseewasser" + }, + "Obersulm Eschenau": { + "natrium": 6.1, + "kalium": 1.7, + "calcium": 53.2, + "magnesium": 8.8, + "chlorid": 7.7, + "nitrat": 5.1, + "sulfat": 34.6, + "hardness": 9.4, + "year": "", + "description": "Reines Bodenseewasser" + }, + "Obersulm Sülzbach": { + "natrium": 6.1, + "kalium": 1.7, + "calcium": 53.2, + "magnesium": 8.8, + "chlorid": 7.7, + "nitrat": 5.1, + "sulfat": 34.6, + "hardness": 9.4, + "year": "", + "description": "Reines Bodenseewasser" + }, + "Obersulm Weiler": { + "natrium": 6.1, + "kalium": 1.6, + "calcium": 61.8, + "magnesium": 23.8, + "chlorid": 6, + "nitrat": 7.3, + "sulfat": 28.5, + "hardness": 11.9, + "year": "", + "description": "Mischwasser, 50 % Eigenwasser, 50 % Bodenseewasser" + }, + "Obersulm Willsbach": { + "natrium": 6.1, + "kalium": 1.7, + "calcium": 53.2, + "magnesium": 8.8, + "chlorid": 7.7, + "nitrat": 5.1, + "sulfat": 34.6, + "hardness": 9.4, + "year": "", + "description": "Reines Bodenseewasser" + }, + "Oedheim Hochzone": { + "natrium": 8.2, + "kalium": 1.09, + "calcium": 99, + "magnesium": 19.8, + "chlorid": 19.4, + "nitrat": 17.3, + "sulfat": 49.5, + "hardness": 18.4, + "year": "2013", + "description": "" + }, + "Oedheim Niederzone (bis Kocherbrücke)": { + "natrium": 8.2, + "kalium": 1.09, + "calcium": 99, + "magnesium": 19.8, + "chlorid": 19.4, + "nitrat": 17.3, + "sulfat": 49.5, + "hardness": 18.4, + "year": "2013", + "description": "" + }, + "Oedheim Neudorf und Säukiesweg": { + "natrium": 7.8, + "kalium": 1.26, + "calcium": 87.8, + "magnesium": 15.9, + "chlorid": 22, + "nitrat": 20.7, + "sulfat": 45.3, + "hardness": 16, + "year": "2013", + "description": "" + }, + "Oedheim Degmarn": { + "natrium": 5.6, + "kalium": 1.3, + "calcium": 74.2, + "magnesium": 17.3, + "chlorid": 17.4, + "nitrat": 20.8, + "sulfat": 34.6, + "hardness": 14.4, + "year": "2013", + "description": "" + }, + "Oedheim Falkenstein": { + "natrium": 7.8, + "kalium": 1.26, + "calcium": 87.8, + "magnesium": 15.9, + "chlorid": 22, + "nitrat": 20.7, + "sulfat": 45.3, + "hardness": 16, + "year": "2013", + "description": "" + }, + "Offenau": { + "natrium": 16.1, + "kalium": 2.2, + "calcium": 68.8, + "magnesium": 14.1, + "chlorid": 30.7, + "nitrat": 13.9, + "sulfat": 48.5, + "hardness": 12.9, + "year": "2014", + "description": "Mischwasser" + }, + "Pfaffenhofen Hochbehälter Ost": { + "natrium": 3.6, + "kalium": 0.8, + "calcium": 67, + "magnesium": 26, + "chlorid": 6.9, + "nitrat": 5.8, + "sulfat": 35, + "hardness": 15.7, + "year": "2012", + "description": "Eigene Tiefbrunnen" + }, + "Pfaffenhofen Hochbehälter Tegernbach": { + "natrium": 4.1, + "kalium": 0.8, + "calcium": 57, + "magnesium": 23, + "chlorid": 2.4, + "nitrat": 0.2, + "sulfat": 20, + "hardness": 13.2, + "year": "2012", + "description": "Eigene Tiefbrunnen" + }, + "Pfaffenhofen Hochbehälter West": { + "natrium": 3.8, + "kalium": 0.7, + "calcium": 62, + "magnesium": 24, + "chlorid": 9, + "nitrat": 11, + "sulfat": 27, + "hardness": 17.7, + "year": "2012", + "description": "Eigene Tiefbrunnen" + }, + "Roigheim": { + "natrium": 5.4, + "kalium": 1.2, + "calcium": 69.7, + "magnesium": 5.2, + "chlorid": 14.6, + "nitrat": 21.5, + "sulfat": 27.4, + "hardness": 10.9, + "year": "2013", + "description": "Eigene Quellen" + }, + "Schwaigern Massenbach": { + "natrium": 5.78, + "kalium": 0.87, + "calcium": 126.1, + "magnesium": 32.3, + "chlorid": 45.8, + "nitrat": 34.2, + "sulfat": 47.8, + "hardness": 24, + "year": "", + "description": "Eigenwasser" + }, + "Schwaigern Niederhofen": { + "natrium": 7.5, + "kalium": 2.1, + "calcium": 110, + "magnesium": 26.5, + "chlorid": 24.4, + "nitrat": 19, + "sulfat": 86.2, + "hardness": 21.56, + "year": "", + "description": "Mischwasser, 40% Bodenseewasser, 60% Eigenwasser" + }, + "Schwaigern": { + "natrium": 7.5, + "kalium": 2.1, + "calcium": 110, + "magnesium": 26.5, + "chlorid": 24.4, + "nitrat": 19, + "sulfat": 86.2, + "hardness": 21.56, + "year": "", + "description": "Mischwasser, 40% Bodenseewasser, 60% Eigenwasser" + }, + "Schwaigern Stetten": { + "natrium": 7.5, + "kalium": 2.1, + "calcium": 110, + "magnesium": 26.5, + "chlorid": 24.4, + "nitrat": 19, + "sulfat": 86.2, + "hardness": 21.56, + "year": "", + "description": "Mischwasser, 40% Bodenseewasser, 60% Eigenwasser" + }, + "Siegelsbach": { + "natrium": 17.9, + "kalium": 2.5, + "calcium": 67.2, + "magnesium": 11.8, + "chlorid": 30.5, + "nitrat": 14.4, + "sulfat": 47.9, + "hardness": 12.1, + "year": "2014", + "description": "Mischwasser" + }, + "Talheim": { + "natrium": 5.2, + "kalium": 1.4, + "calcium": 48, + "magnesium": 8, + "chlorid": 7, + "nitrat": 4.2, + "sulfat": 34, + "hardness": 9, + "year": "2012", + "description": "Reines Bodenseewasser" + }, + "Untereisesheim": { + "natrium": 5.9, + "kalium": 1.4, + "calcium": 84, + "magnesium": 17, + "chlorid": 15, + "nitrat": 18, + "sulfat": 35, + "hardness": 15, + "year": "2013", + "description": "Reines Bodenseewasser" + }, + "Untergruppenbach Donnbronn": { + "natrium": 6.7, + "kalium": 2.5, + "calcium": 52, + "magnesium": 8.3, + "chlorid": 8.7, + "nitrat": 6.4, + "sulfat": 36, + "hardness": 9.2, + "year": "2014", + "description": "Hochbehälter Egelsee, Reines Bodenseewasser" + }, + "Untergruppenbach Obergruppenbach": { + "natrium": 6.8, + "kalium": 1.7, + "calcium": 83, + "magnesium": 17, + "chlorid": 17, + "nitrat": 13, + "sulfat": 68, + "hardness": 15.5, + "year": "2014", + "description": "Haupthochbehälter Stettenfels, Mischwasser aus Bodenseewasser und Pumpwerk Auenstein." + }, + "Untergruppenbach Oberheinriet": { + "natrium": 8, + "kalium": 2.3, + "calcium": 79, + "magnesium": 18, + "chlorid": 9, + "nitrat": 8.3, + "sulfat": 84, + "hardness": 15.3, + "year": "2014", + "description": "Hochbehälter Unterheinriet, Mischwasser aus Bodenseewasser und Quellwasser der Heumahdenquelle" + }, + "Untergruppenbach": { + "natrium": 6.8, + "kalium": 1.7, + "calcium": 83, + "magnesium": 17, + "chlorid": 17, + "nitrat": 13, + "sulfat": 68, + "hardness": 15.5, + "year": "2014", + "description": "Haupthochbehälter Stettenfels, Mischwasser aus Bodenseewasser und Pumpwerk Auenstein." + }, + "Untergruppenbach Unterheinriet": { + "natrium": 8, + "kalium": 2.3, + "calcium": 79, + "magnesium": 18, + "chlorid": 9, + "nitrat": 8.3, + "sulfat": 84, + "hardness": 15.3, + "year": "2014", + "description": "Hochbehälter Unterheinriet, Mischwasser aus Bodenseewasser und Quellwasser der Heumahdenquelle" + }, + "Untergruppenbach Vorhof": { + "natrium": 9.3, + "kalium": 2.4, + "calcium": 76, + "magnesium": 16, + "chlorid": 8.6, + "nitrat": 13, + "sulfat": 23, + "hardness": 14.4, + "year": "2014", + "description": "Hochbehälter Vorhof,Quellwasser aus der Heumahdenquelle, enthärtet durch Nanofiltration" + }, + "Weinsberg Grantschen": { + "natrium": "5-6", + "kalium": "1-2", + "calcium": "48-52", + "magnesium": "7-9", + "chlorid": "8-9", + "nitrat": "5-7", + "sulfat": 32, + "hardness": "8.5-9", + "year": "2013", + "description": "Reines Bodenseewasser" + }, + "Weinsberg": { + "natrium": "5-6", + "kalium": "1-2", + "calcium": "48-52", + "magnesium": "7-9", + "chlorid": "8-9", + "nitrat": "5-7", + "sulfat": 32, + "hardness": "8.5-9", + "year": "2010", + "description": "Reines Bodenseewasser" + }, + "Wüstenrot": { + "natrium": "", + "kalium": "", + "calcium": "", + "magnesium": "", + "chlorid": "", + "nitrat": "", + "sulfat": "", + "hardness": "15-17", + "year": "", + "description": "" + }, + "Zaberfeld Leonbronn": { + "natrium": 12.9, + "kalium": 2.88, + "calcium": 96.8, + "magnesium": 37.5, + "chlorid": 46.4, + "nitrat": 29.8, + "sulfat": 44.2, + "hardness": 22.2, + "year": "2013", + "description": "Eigenwasser" + }, + "Zaberfeld Michelbach": { + "natrium": 5.2, + "kalium": 1.4, + "calcium": 48, + "magnesium": 8, + "chlorid": 7, + "nitrat": 4.2, + "sulfat": 34, + "hardness": 9, + "year": "2012", + "description": "Reines Bodenseewasser" + }, + "Zaberfeld Ochsenburg": { + "natrium": 12.9, + "kalium": 2.88, + "calcium": 96.8, + "magnesium": 37.5, + "chlorid": 46.4, + "nitrat": 29.8, + "sulfat": 44.2, + "hardness": 22.2, + "year": "2013", + "description": "Eigenwasser" + }, + "Zaberfeld Zone 1": { + "natrium": 11.9, + "kalium": 2.62, + "calcium": 87.9, + "magnesium": 32.5, + "chlorid": 41, + "nitrat": 25.7, + "sulfat": 44.3, + "hardness": 19.8, + "year": "2013", + "description": "Mischwasser, 95 % Eigenwasser, 5 % Bodenseewasser" + }, + "Zaberfeld Zone 2": { + "natrium": 5, + "kalium": 1.4, + "calcium": 48, + "magnesium": 8, + "chlorid": 7, + "nitrat": 4, + "sulfat": 34, + "hardness": 9.3, + "year": "2012", + "description": "Mischwasser, 95 % Bodenseewasser, 5 % Eigenwasser" + } +} \ No newline at end of file