Commit 7abcb82b authored by Pithon Kabiro's avatar Pithon Kabiro
Browse files

Initial commit

parent 6d04656e
Showing with 2049 additions and 0 deletions
+2049 -0
"""
@author: Andrés Lalama
"""
from locale import atof, setlocale, LC_NUMERIC
import time
from typing import List
import pandas as pd
import math
import array as arr
import sys
import getopt
import json
import subprocess
import time
import os
import platform
from datetime import datetime
class Segment(object):
def __init__(self,
id: int,
neighbors=None,
demand=float,
length=None,
totalDistance=None,
isInGrid=False, geometry=None):
self.id = id
self.neighbors: List[int] = neighbors
self.length = length
self.totalDistance = totalDistance
self.demand = demand
self.isInGrid = isInGrid
self.hasUnusedSegments = True
self.geometry = geometry
class HeatGrid:
def __init__(self, id: int, targetDemand: float = None, segments=[]):
self.id = id
self.c1 = 368
self.c2 = 2602.5
self.a = 0.0725
# use 'self.targetDemand = targetDemand' in order to use the maximal possible energy demand
self.targetDemand = targetDemand
#self.targetDemand = 33518557
#self.segmentsFile = "ise_files\\stat_lines_with_industry_v2102.csv"
self.segmentsFile = "ise_files\\Rainau_stat_lines_with_industry.csv"
self.accumulatedDemand = 0
self.segments = segments
self.availableSegments = []
self.availableSegmentsCount = 0
self.investmentCost = 0
self.totalLength = 0
self.komMod = []
self.lookAhead = 2
self.givenGrid = []
def importFromFile(self) -> bool:
if self.segmentsFile.endswith(".csv"):
segmentData = pd.read_csv(self.segmentsFile, sep=";")
elif self.segmentsFile.endswith(".excel"):
print("found excel")
segmentData = pd.read_excel(self.segmentsFile)
rightArguments = segmentData
# setting german locale because of excel files
setlocale(LC_NUMERIC, 'German_Germany.1252')
for index, row in rightArguments.iterrows():
length = row['Length']
totalDistance = row['Total Distance']
demand = row['Total Yearly Heat+DHW demand']
if isinstance(length, float) is False:
length = atof(length)
if isinstance(totalDistance, float) is False:
totalDistance = atof(totalDistance)
else:
totalDistance = 0
if isinstance(demand, float) is False:
demand = atof(demand)
else:
# setting demand to 0 if it the cell is empty
demand = 0
# converting string to array of int IDs
neighborsString = row['neighbor']
neighborsString = neighborsString.replace(' ', '')
neighborsString = neighborsString.replace('[', '')
neighborsString = neighborsString.replace(']', '')
neighbors = [int(s)
for s in neighborsString.split(',') if s.isdigit()]
geometry = row['geometry']
id = row['ID']
try:
segId = int(id)
except ValueError:
segId = int(id[:-2])
newSegment = Segment(id=segId,
neighbors=neighbors,
length=length, totalDistance=totalDistance, demand=demand, geometry=geometry)
self.availableSegments.append(newSegment)
fileNameOnly = ""
if "\\" in self.segmentsFile:
fileNameOnly = self.segmentsFile.split("\\")
elif "/" in self.segmentsFile:
fileNameOnly = self.segmentsFile.split("/")
self.segmentsFile = fileNameOnly[-1]
self.availableSegmentsCount = len(self.availableSegments)
print('Available Segments :', self.availableSegmentsCount)
self.populateNeighbor()
return True
def importKomModFromFile(self, path: str) -> bool:
if path.endswith(".csv"):
segmentData = pd.read_csv(path, sep=";")
elif path.endswith(".excel"):
print("found excel")
segmentData = pd.read_excel(path)
# setting german locale because of excel files
setlocale(LC_NUMERIC, 'German_Germany.1252')
for index, row in segmentData.iterrows():
cost = row['specificGridCost(kWh)']
demand = row['totalDemandMean(kWh)']
grid.komMod.append([cost, demand])
print('KomMod Calculations :', len(grid.komMod))
return True
def addSegment(self, segment: Segment) -> bool:
"""
addSegments adds a segment to the grid
:param segment: the segment to be added to the grid
:return: true if the segment was added, false if not
"""
if segment.isInGrid:
return False
segment.isInGrid = True
self.segments.append(segment)
self.accumulatedDemand += segment.demand
self.totalLength += (segment.length + segment.totalDistance)
#print('Added Segment:', segment.id)
return True
def addSegmentById(self, id: int) -> bool:
"""
addSegmentById adds a segment to the grid by a given ID
This method is used when the user provides an existing grid.
:param id: the id of the segment to be added to the grid
:return: true if the segment was added, false if not
"""
for segment in self.availableSegments:
if segment.id == int(id):
#print(f'YES segment ID: ', segment.id)
segment.isInGrid = True
self.segments.append(segment)
self.accumulatedDemand += segment.demand
self.totalLength += (segment.length + segment.totalDistance)
# print(
# f'Adding segment ID: {segment.id:4} - Accumulated demand: {self.accumulatedDemand:13.3f} - Total Length: {self.totalLength:.2f} - Count: {len(self.segments)}')
return True
return False
def isDemandMet(self) -> bool:
"""
isDemandMet checks wether the grid already has met the heating demand
:return: true if the demand was met, false if not
"""
return (self.accumulatedDemand >= self.targetDemand or math.isclose(self.accumulatedDemand, self.targetDemand, rel_tol=1e-5))
def calculateGrid(self):
"""
calculateGrid Runs the algorithm to calculate the grid
"""
highestDemand = self.findHighestDemandNeighbor()
if highestDemand != None:
self.addSegment(highestDemand)
else:
# Looking for unused segments which are not connected to the grid
stillAvailableSegments = filter(
lambda segment: not segment.isInGrid, self.availableSegments)
startNewGrid = max(stillAvailableSegments,
key=lambda segment: segment.demand)
if startNewGrid != None:
self.addSegment(startNewGrid)
else:
printError()
return
if self.isDemandMet():
# if met we are finished
printResults(self)
else:
# continue looking for next best segment
self.calculateGrid()
def calcGridCost(self):
"""
calcGridCost Runs the algorithm to calculate the grid
"""
q_s = (self.accumulatedDemand/(10**6))*3600
d_a = 0.0486 * math.log(q_s/self.totalLength) + 0.0007
self.investmentCost = self.a * \
(self.c1 + self.c2 * d_a) * self.totalLength
def populateNeighbor(self):
"""
populateNeighbor Fills a dictionary with segment objects.
The segments are normally delivered as ID strings.
Key = Segment
Values = List of segments neighboring the key segment
"""
for segment in self.availableSegments:
for neighborId in segment.neighbors:
for neighbor in self.availableSegments:
if (neighbor.id == neighborId):
if segment in segNeighborDic:
segNeighborDic[segment].append(neighbor)
else:
segNeighborDic[segment] = [neighbor]
def findHighestDemandNeighbor(self) -> Segment:
"""
findHighestDemandNeighbor Checks for the neighbor with the highest demand which is not yet part of the grid
:return: true if the demand was met, false if not
"""
# if the grid has no segments
# look for a segment with the highest demant
# and select it as the starting point
if len(self.segments) == 0:
highestDemand = max(self.availableSegments,
key=lambda segment: segment.demand)
return highestDemand
score = -1
bestNeighborObject = None
allCombinations = []
# iterate through all segments of the grid
for gridSegment in self.segments:
combinations = findPossibilities(
[], gridSegment, self.lookAhead, self)
bestValue = getBestNeighbor(combinations)
if len(bestValue) > 0:
allCombinations.append(bestValue)
for comb in allCombinations:
# print('all combinations', comb)
if comb[1] > score:
score = comb[1]
bestNeighborObject = comb[0]
return bestNeighborObject
def findPossibilities(visitedSegments: List[Segment], startingSegment: Segment, lookAhead: int, grid: HeatGrid) -> List[Segment]:
#print('lookAhead', lookAhead, startingSegment.id, )
"""
findPossibilities Calculates all possible combinations of segments which can be added to the grid starting com a given segment.
It takes into account how many neighbors to take into account depending of the lookAhead value.
:param visitedSegments: A list of "visited" segments to ignore when looking for further possibilities
:param startingSegment: The "root" segment from where to start looking. It is already part of the grid
:param lookAhead: is the number of further connected segments to also take into consideration
:param grid: The heat grid
:return: A list of all possibilities as an List[List[Segment]]
"""
visited = ""
for segment in visitedSegments:
visited = visited + str(segment.id) + ","
allCombinationsList = []
if not startingSegment.hasUnusedSegments:
return allCombinationsList
if lookAhead == 0:
allCombinationsList.append([startingSegment])
return allCombinationsList
hasNeighbors = filter(lambda segment: not segment.isInGrid,
segNeighborDic[startingSegment])
neighborList = list(hasNeighbors)
if len(neighborList) == 0:
startingSegment.hasUnusedSegments = False
# add starting segment to the visited segments
newVisitedSegments = [] + visitedSegments
newVisitedSegments.append(startingSegment)
segmentsNeighbors = filter(
lambda segment: not segment in visitedSegments, neighborList)
currentNotInGrid = list(segmentsNeighbors)
for nextNeighborSeg in currentNotInGrid:
combinations = findPossibilities(
newVisitedSegments, nextNeighborSeg, lookAhead-1, grid)
for combination in combinations:
arrayForCombiList = []
for i in range(len(combination)):
if i == 0:
arrayForCombiList.append(startingSegment)
arrayForCombiList.append(combination[i])
allCombinationsList.append(arrayForCombiList)
return allCombinationsList
def getBestNeighbor(combinations) -> List[any]:
"""
getBestNeighbor Calculates the best combination out of a combinations list.
The method gives each combination a score by diving the sum of all demands by the sum of all lengths (Σ Q_n / Σ L_n )
The combination with the highest score is chosen as the best one.
:param tempGridSegments: A list of "visited" segments to ignore when looking for further possibilities
:param neighborSeg: The "root" segment from where to start looking.
:param grid: The heat grid
:return: An array containing the first segment of the best combination and its combination score.
"""
score = 0
# saves a combination which have the same score as best
areBest = []
bestNeighbor: Segment
# combinations are List of List of Segments
# combinations[0] = combination[0] = [2 ,3 ,4]
# combination[1] = [2 ,3, 7]
# combination[2] = [2 ,3 ,9]
# combinations[1] = combination[0] = [2 ,5 ,4]
# combination[1] = [2 ,5 ,8]
#print('============')
for combination in combinations:
segString = ""
aggDemand = 0
aggLength = 0
for i in range(len(combination)):
if i ==0 :
continue
seg = combination[i]
aggDemand += seg.demand
aggLength += seg.length
segString += str(seg.id) + ", "
if (aggDemand/aggLength) > score:
score = (aggDemand/aggLength)
areBest = []
areBest.append(combination)
elif (aggDemand/aggLength) == score:
areBest.append(combination)
#print('Combi: ', segString, 'current Score:', score, ' my value: ',str(aggDemand/aggLength) )
#print('============')
# check if there are many combinations with the same best score
# if it is only one segment choose that one as best
if len(areBest) == 1:
bestNeighbor = areBest[0][1]
# if there are more than one best segment choose the one with
# the shortest length (which should be cheaper to build)
elif len(areBest) > 1:
for i in range(len(areBest)):
if (i == 0):
bestNeighbor = areBest[i][1]
else:
if (areBest[i][1].demand/areBest[i][1].length) > (bestNeighbor.demand/bestNeighbor.length):
bestNeighbor = areBest[i][1]
# check if a bestNeighbor was found
try:
bestNeighbor
except NameError:
return []
else:
return [bestNeighbor, score]
def serialize(obj):
if isinstance(obj, Segment):
serial = obj.__dict__
return serial
return obj.__dict__
segNeighborDic: dict = {}
grid = HeatGrid(1)
def gridCost(grid, total_demand_kWh, total_length_m):
q_s = (total_demand_kWh/(10**6))*3600
d_a = 0.0486 * math.log(q_s/total_length_m) + 0.0007
gridInvCostEur = grid.a*(grid.c1 + grid.c2 * d_a) * total_length_m
return gridInvCostEur
# prints all segments of the grid
def exportResult():
for segment in grid.segments:
print(segment.id)
# prints help on how to use the script to the command line
def printHelp():
print('')
print('| Option | Fullname | Description')
print('| ------ | --------- | -------------------------------')
print('| -t | target | The target of accumulated demand')
print('| -s | segments | The input file containing the street segments')
print('| -k | kommod | The KomMod file cotaining a list of grids and cost')
print('| -r | rabbitmq | send ')
print('| -g | grid | The IDs to set as existing grid, separated by comma')
print('')
print('example: disaggregation.py -t <target> -i <inputfile> -o <outputfile> -r <rabbitMQServer>')
def printError():
print('---->>>> No segment found : STOPPING <<<<-----')
print('==================================')
print(' Error Results')
print('==================================')
print("Could not find any other possible neighbor")
print("The target demand could not be matched")
def printResults(grid):
print('==================================')
print(' Results')
print('==================================')
dem = format(grid.accumulatedDemand, '.2f')
print(f'Accumulated demand (kWh) : {dem}')
grid.calcGridCost()
print(f'Investment cost (EUR) : {round(grid.investmentCost,3)}')
print(f'Total grid length (m) : {round(grid.totalLength,3)}')
print('-----------------------------------')
print(f'Please Open the the result file in the result Report')
def main(argv):
try:
opts, args = getopt.getopt(
argv, "ht:s:g:k:o:r:", ["target=", "segments=", "grid=", "kommod=", "outfile=", "rabbitmq=", "gui="])
except getopt.GetoptError:
print('Did not recognize all of the user arguments. Use \'-h\' for help.')
sys.exit(2)
print('==================================')
print(' ENsource Disaggregation')
print('==================================')
grid.givenGridAvailable = False
for opt, arg in opts:
if opt == '-h':
printHelp()
sys.exit()
elif opt in ("-t", "--target"):
target = arg
grid.targetDemand = float(target)
print('Target (kWh) :', target)
elif opt in ("-c1", "--c1"):
grid.c1 = arg
print('Target (kWh) :', target)
elif opt in ("-s", "--segments"):
grid.segmentsFile = arg
print('Segments file :', grid.segmentsFile)
elif opt in ("-g", "--grid"):
givenGridIds = arg
grid.givenGridAvailable = True
print('Grid IDs :', givenGridIds)
elif opt in ("-k", "--kommod"):
komModFile = arg
grid.importKomModFromFile(komModFile)
elif opt in ("-r", "--rabbitmq"):
inputfile = arg
grid.importFromFile()
if grid.givenGridAvailable:
grid.givenGridStr = "True"
for id in givenGridIds.split(","):
grid.addSegmentById(id)
else:
grid.givenGridStr = "False"
givenGridIds = "N/A"
print('==================================')
print(' Running Algorithm')
print('==================================')
maxPossibleDemand = sum(seg.demand for seg in grid.availableSegments)
if grid.targetDemand is None:
grid.targetDemand = maxPossibleDemand
print(f'No target demand provided.')
print(f'Using max possible demand: {round(maxPossibleDemand,3)}')
if grid.targetDemand > maxPossibleDemand:
print(f'---------->> ERROR <<-------------')
print(f'Target demand : {target}')
print(f'Max possible demand : {round(maxPossibleDemand,3)}')
print('The target demand is higher than given segments allow')
print('==================================')
return
start = time.time()
grid.calculateGrid()
end = time.time()
print('Runtime: ',end - start )
d = datetime.now()
folderName = f'result_{d.year}{d.month}{d.day}{d.hour}{d.minute}{d.second}'
filepathHtml = f'{folderName}.html'
# create folder for files
os.mkdir(folderName)
# write html file
resultFileHtml = open(folderName+f'/{folderName}.html', 'w')
wholeGrid = json.dumps(grid.availableSegments,
default=serialize, indent=2)
# write csv file
resultFileCsv = open(folderName+f'/{folderName}.csv', 'w')
# write headers
headers = 'Segment ID;Demand (kWh);Length (m);Total Distance (m);Acc. Demand (kWh);Total Grid Length(m);Acc. Grid Cost (EUR);Spec. Grid Cost (EUR/kWh)'
resultFileCsv.write(headers)
accDemand = 0
totalGridLength = 0
accCost = 0
for seg in grid.segments:
accDemand += seg.demand
totalGridLength += (seg.length + seg.totalDistance)
accCost = gridCost(grid, accDemand, totalGridLength)
specCost = accCost / accDemand
resultFileCsv.write("\n")
resultFileCsv.write(
f'{seg.id};{seg.demand};{seg.length};{seg.totalDistance};{accDemand};{totalGridLength};{accCost};{specCost}')
resultFileCsv.close()
# write json file
# delete attributes to avoid cycles in the data
delattr(grid, 'availableSegments')
delattr(grid, 'komMod')
jsonResultGrid = json.dumps(grid, default=serialize, indent=2)
resultFileJson = open(folderName+f'/{folderName}.json', 'w')
resultReport = """<html>
<head>
<meta charset=\"UTF-8\">
<style>
h1 {
text-align: center;
color: #002C55;
}
h2 {
text-align: left;
font-size: 25px;
font-weight: \"bold\";
color: #002C55;
}
h1 span {
color: #549925;
}
table {
border-collapse: collapse;
border: 1px solid #DFDCDC;
border-spacing: 0;
}
th {
background-color: #549925;
color: white;
text-align: left;
padding: 8px;
}
td {
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #e7f4d9;
}
table th,
table td {
border-top: 1px #efe9e3;
border-right: 0px #efe9e3;
border-bottom: 0px #efe9e3;
border-left: 1px #efe9e3;
}
input[type=\"file\"] {
z-index: -1;
position: absolute;
visibility: hidden;
}
.button {
float: left;
padding: 12px 18px;
margin-right: 10px;
cursor: pointer;
border-radius: 3px;
background-color: #549925;
font-size: 14px;
font-weight: bold;
color: #fff;
}
.button2 {
float: left;
padding: 6px 9px;
cursor: pointer;
margin-top: 20px;
margin-left: 15px;
border-radius: 5px;
background-color: #549925;
font-size: 12px;
font-weight: bold;
color: #fff;
width: 30px;
}
</style>
</head>
<body>
<h1><span>EN</span>source Disaggregation Report</h1>
<h2 style=\"float:left; width: 100%;\">Run Results</h2>
<table style=\"float:left; width: 49%; margin-right: 10;\">
<tr>
<th>Target Demand (kWh)</th>
<td id=\"target-demand\">N/A</td>
</tr>
<tr>
<th>Results File</th>
<td id=\"file-name\">N/A</td>
</tr>
<tr>
<th>Segments File</th>
<td id=\"segments-file-name\">"""+grid.segmentsFile+"""</td>
</tr>
<tr>
<th>Available Segments</th>
<td id=\"available-segments\">N/A</td>
</tr>
<tr>
<th>Grid provided</th>
<td id=\"grid-provided\">"""+grid.givenGridStr+"""</td>
</tr>
</table>
<table style=\"float:left;width: 49%;\">
<tr>
<th>Accumulated demand (kWh)</th>
<td id=\"accumulated-demand\">N/A</td>
</tr>
<tr>
<th>Investment cost (EUR)</th>
<td id=\"investment-cost\">N/A</td>
</tr>
<tr>
<th>Total grid length (m)</th>
<td id=\"total-length\">N/A</td>
</tr>
<tr>
<th>Used segments</th>
<td id=\"used-segments\">N/A</td>
</tr>
<tr>
<th>Grid provided IDs</th>
<td id=\"grid-provided-ids\">"""+givenGridIds+"""</td>
</tr>
</table>
<h2 id=\"calculate-grid-title\" style=\"float:left;\">Calculated Grid</h2>
<button class=\"button2\" id=\"toggle-table\" onclick=\"toggleItem('result-table','toggle-table')\">-</button>
<table id=\"result-table\" border=1 style=\"width: 99%;\">
<tr>
<th> Segment ID </th>
<th> Demand (kWh)</th>
<th> Length (m)</th>
<th> Acc. Demand (kWh)</th>
<th> Acc. Length (m)</th>
<th> Acc. Grid Cost (EUR)</th>
</table>
<h2 id=\"calculate-grid-title\" style=\"float:left;\">Grid Visualization</h2>
<button class=\"button2\" id=\"toggle-vis\" onclick=\"toggleItem('canvas-wrapper','toggle-vis')\">-</button>
<div id=\"canvas-wrapper\" style=\"width: 100%;float: left\">
<button class=\"button2\" style=\"width: 100px; margin-left:0px\" onclick=\"toggleResult()\">Toggle Result</button>
<canvas id=\"grid-canvas\" width=\"1280\" height=\"720\"></canvas>
</div>
</body>
<script>
const c1 = """+str(grid.c1)+""";
const c2 = """+str(grid.c2)+""";
const a = """+str(grid.a)+""";
function readSingleFile(e) {
var file = e.target.files[0];
if (!file) {
return;
}
var reader = new FileReader();
reader.onload = function (e) {
var contents = e.target.result;
console.log(contents)
setFileName(file);
displayTable(JSON.parse(contents));
drawGrid(JSON.parse(contents))
};
reader.readAsText(file);
}
function setFileName(file) {
const element = document.getElementById('file-name');
element.textContent = file;
}
function rescaleX(x, minMax) {
return ((1270 - 10) * (x - minMax[0]) / (minMax[1] - minMax[0])) + 10
}
function rescaleY(x, minMaY) {
return ((10 - 710) * (x - minMaY[0]) / (minMaY[1] - minMaY[0])) + 710
}
const minMaxX = [Number.POSITIVE_INFINITY, 0];
const minMaxY = [Number.POSITIVE_INFINITY, 0];
function drawBaseGrid(grid) {
const canvas = document.getElementById('grid-canvas');
var ctx = canvas.getContext(\"2d\");
ctx.lineWidth = 1;
ctx.strokeStyle = \"black\";
for (var segment in grid) {
const onlyCoords = grid[segment].geometry.substring(12, grid[segment].geometry.length - 1);
const lines = onlyCoords.split(\",\")
for (var i = 0; i < lines.length; i++) {
lines[i] = lines[i].trim();
const xyCoords = lines[i].split(\" \")
// check x
// check minimal
if (xyCoords[0] < minMaxX[0]) {
minMaxX[0] = xyCoords[0]
}
// check maximal
if (xyCoords[0] > minMaxX[1]) {
minMaxX[1] = xyCoords[0]
}
// check y
// check minimal
if (xyCoords[1] < minMaxY[0]) {
minMaxY[0] = xyCoords[1]
}
// check maximal
if (xyCoords[1] > minMaxY[1]) {
minMaxY[1] = xyCoords[1]
}
}
}
for (var segment in grid) {
const onlyCoords = grid[segment].geometry.substring(12, grid[segment].geometry.length - 1);
const lines = onlyCoords.split(\",\")
for (var i = 0; i < lines.length; i++) {
lines[i] = lines[i].trim();
const xyCoords = lines[i].split(\" \")
// console.log(xyCoords)
// if (i === 0)
// ctx.moveTo(xyCoords[0].substring(3), xyCoords[1].substring(3))
// else
// ctx.lineTo(xyCoords[0].substring(3), xyCoords[1].substring(3))
if (i === 0)
ctx.moveTo(rescaleX(xyCoords[0], minMaxX), rescaleY(
xyCoords[1], minMaxY))
else
ctx.lineTo(rescaleX(xyCoords[0], minMaxX), rescaleY(
xyCoords[1], minMaxY))
}
ctx.stroke();
}
}
function drawGrid(grid) {
const canvas = document.getElementById('grid-canvas');
var ctx = canvas.getContext(\"2d\");
for (var segment in grid.segments) {
const onlyCoords = grid.segments[segment].geometry.substring(12, grid.segments[segment].geometry.length - 1);
const lines = onlyCoords.split(\",\")
ctx.beginPath();
ctx.lineWidth = 5;
ctx.strokeStyle = \"red\";
for (var i = 0; i < lines.length; i++) {
lines[i] = lines[i].trim();
const xyCoords = lines[i].split(\" \")
if (i === 0)
ctx.moveTo(rescaleX(xyCoords[0], minMaxX), rescaleY(
xyCoords[1], minMaxY))
else
ctx.lineTo(rescaleX(xyCoords[0], minMaxX), rescaleY(
xyCoords[1], minMaxY))
}
ctx.stroke();
}
}
function toggleItem(item, source) {
const x = document.getElementById(item);
const btn = document.getElementById(source);
if (x.style.visibility === \"collapse\") {
x.style.visibility = \"visible\";
btn.textContent = \"-\";
} else {
x.style.visibility = \"collapse\";
btn.textContent = \"+\";
}
}
function displayTable(grid) {
const table = document.getElementById('result-table');
table.children = null;
//element.texContent = JSON.stringify(result);
const tblBody = document.createElement(\"tbody\");
let accDemand = 0;
let accLength = 0;
// creating all cells
const target = document.getElementById('target-demand');
target.textContent = grid.targetDemand;
const availSegments = document.getElementById('available-segments');
availSegments.textContent = grid.availableSegmentsCount;
const accumulatedDemand = document.getElementById('accumulated-demand');
accumulatedDemand.textContent = grid.accumulatedDemand;
const investmentCost = document.getElementById('investment-cost');
investmentCost.textContent = grid.investmentCost.toFixed(3);
const totalLength = document.getElementById('total-length');
totalLength.textContent = grid.totalLength;
const calcGridTitle = document.getElementById('used-segments');
calcGridTitle.textContent = `${grid.segments.length}`;
for (var segment in grid.segments) {
var row = document.createElement(\"tr\");
const id = document.createElement(\"td\");
let cellText = document.createTextNode(grid.segments[segment].id);
id.appendChild(cellText);
const demand = document.createElement(\"td\");
cellText = document.createTextNode(grid.segments[segment].demand);
demand.appendChild(cellText);
const length = document.createElement(\"td\");
cellText = document.createTextNode(grid.segments[segment].length);
length.appendChild(cellText);
var accDemandCell = document.createElement(\"td\");
cellText = document.createTextNode(accDemand += grid.segments[segment].demand);
accDemandCell.appendChild(cellText);
var accLengthCell = document.createElement(\"td\");
cellText = document.createTextNode((accLength += grid.segments[segment].length).toFixed(3));
accLengthCell.appendChild(cellText);
var accCostCell = document.createElement(\"td\");
cellText = document.createTextNode(
(gridCost(accDemand,accLength)).toFixed(3));
accCostCell.appendChild(cellText);
row.appendChild(id);
row.appendChild(demand);
row.appendChild(length);
row.appendChild(accDemandCell);
row.appendChild(accLengthCell);
row.appendChild(accCostCell);
// add the row to the end of the table body
tblBody.appendChild(row);
}
// put the <tbody> in the <table>
if (table.children[1]) table.children[1].replaceWith(tblBody);
else table.appendChild(tblBody);
}
function gridCost(total_demand_kWh, total_length_m){
const q_s = (total_demand_kWh/(10**6))*3600;
const d_a = 0.0486 * Math.log(q_s / total_length_m) + 0.0007;
grid_investment_cost_EUR = a*(c1 + c2 * d_a) * total_length_m;
return grid_investment_cost_EUR;
}
function init() {
setFileName(\""""+f'{folderName}.json'+"""\");
displayTable(grid);
drawBaseGrid(wholeGrid);
drawGrid(grid)
};
// clear the canvas
var resultVisible = true;
function toggleResult(){
const canvas = document.getElementById('grid-canvas');
var ctx = canvas.getContext(\"2d\");
ctx.clearRect(0,0,canvas.width,canvas.height);
drawBaseGrid(wholeGrid);
if(resultVisible){
resultVisible = false;
}else {
drawGrid(grid);
resultVisible = true;
}
}
const grid = """+jsonResultGrid+""";
const wholeGrid = """+wholeGrid+""";
window.onload = init();
</script>
</html>"""
resultFileHtml.write(resultReport)
resultFileHtml.close()
resultFileJson.write(jsonResultGrid)
resultFileJson.close()
# open results file
# if platform.system() == 'Darwin': # macOS
# subprocess.call(('open', filepathHtml))
# elif platform.system() == 'Windows': # Windows
# os.startfile(folderName+f'/{filepathHtml}')
# else: # linux variants
# subprocess.call(('xdg-open', filepathHtml))
if __name__ == "__main__":
main(sys.argv[1:])
This source diff could not be displayed because it is too large. You can view the blob instead.
ID;GMLId;Stat PrimaryUsageZoneType;Stat Class year of construction;Building Count;Total Yearly Heat+DHW demand;January Heating Demand;February Heating Demand;March Heating Demand;April Heating Demand;May Heating Demand;June Heating Demand;July Heating Demand;August Heating Demand;September Heating Demand;October Heating Demand;November Heating Demand;December Heating Demand;Total Distance;Length;geometry;neighbor
2,0;['DEBW522AA00010257', 'DEBW522AA0001023f', 'DEBW522AA00010246'];Counter({'industry': 3});Counter({'1949-1971': 2, 'Before 1948': 1});3,0;130663,0;10869,0;5337,0;1482,0;89,0;0,0;0,0;0,0;0,0;1,0;175,0;3403,0;10395,0;69,2;90,432;LINESTRING (3515713.202190543 5406580.919840121, 3515751.271364365 5406587.2317913, 3515750.405629841 5406592.044603925, 3515747.496397197 5406594.605316176, 3515704.931784209 5406587.980561495);[1, 3]
3,0;['DEBW522AA0001024d', 'DEBW522AA00010240'];Counter({'industry': 2});Counter({'1949-1971': 2});2,0;34815,0;3559,0;1886,0;566,0;30,0;0,0;0,0;0,0;0,0;0,0;78,0;1308,0;3390,0;24,5;73,813;LINESTRING (3515722.473055241 5406641.720122796, 3515699.517532451 5406637.797046502, 3515706.381566862 5406600.261809849, 3515704.931784209 5406587.980561495);[1, 2]
4,0;['DEBW522AA000070ae', 'DEBW522AA000070ab', 'DEBW522AA000070a9', 'DEBW522AA00039a84', 'DEBW522AA00039a8f', 'DEBW522AA00039a8d', 'DEBW522AA00039a90', 'DEBW522AA0003186f'];Counter({'industry': 4, 'office and administration': 2, 'hall': 1, 'residential': 1});Counter({'1949-1971': 5, '1972-1990': 3});8,0;1267399,0;47110,0;28677,0;16163,0;5081,0;600,0;20,0;2,0;4,0;1096,0;7915,0;21762,0;43451,0;458,2;56,44;LINESTRING (3514826.391888335 5405785.941880889, 3514842.53068116 5405793.346336181, 3514880.195381166 5405802.164512036);[490, 301]
5,0;['DEBW522AA0001d64d', 'DEBW522AA0000d186', 'DEBW522AA0000d188', 'DEBW522AA000313c1', 'DEBW522AA000313c0', 'DEBW522AA000313bf', 'DEBW522AA00037cee', 'DEBW522AA00038ba9', 'DEBW522AA00038baa'];Counter({'residential': 4, 'non-heated': 3, 'hall': 1, 'industry': 1});Counter({'1991-2010': 6, '1949-1971': 3});9,0;132063,0;23532,0;16419,0;10038,0;2258,0;115,0;1,0;0,0;0,0;334,0;4922,0;14748,0;23037,0;159,4;34,668;LINESTRING (3515188.16009401 5405850.40681292, 3515209.098484951 5405851.619994108, 3515220.083760808 5405843.442715064);[460, 511]
11,0;['DEBW522AA00010ef9', 'DEBW522AA00003f9c', 'DEBW522AA0000901d', 'DEBW522AA00036dfa', 'DEBW522AA0000c070', 'DEBW522AA0000c06f'];Counter({'residential': 3, 'industry': 1, 'office and administration': 1, 'non-heated': 1});Counter({'1972-1990': 3, '1991-2010': 2, '1949-1971': 1});6,0;371263,0;60813,0;42644,0;26576,0;5774,0;220,0;2,0;0,0;0,0;675,0;12590,0;37768,0;59477,0;136,2;104,968;LINESTRING (3515025.806910051 5406301.490186008, 3515014.82855067 5406291.007439521, 3514948.813689839 5406232.470324177, 3514947.640825185 5406231.444105566);[9, 10, 432, 441, 155]
13,0;['DEBW522AA0000d0ab', 'DEBW522AA0000d0ac', 'DEBW522AA000155d8', 'DEBW522AA00038d35', 'DEBW522AA00009db2'];Counter({'residential': 3, 'non-heated': 1, 'industry': 1});Counter({'1949-1971': 2, '1972-1990': 2, '1991-2010': 1});5,0;184068,0;24845,0;16198,0;8834,0;1525,0;38,0;0,0;0,0;0,0;169,0;4021,0;13874,0;24129,0;81,5;66,893;LINESTRING (3515022.125555146 5406076.053991904, 3515014.429684629 5406118.414147634, 3515012.998976727 5406125.894509782, 3515009.238978568 5406141.675761685);[14, 15, 25, 26]
14,0;['DEBW522AA00014afd', 'DEBW522AA00014afc', 'DEBW522AA0000c2ff'];Counter({'residential': 2, 'non-heated': 1});Counter({'1949-1971': 3});3,0;68878,0;11905,0;8715,0;5670,0;1316,0;47,0;0,0;0,0;0,0;170,0;2801,0;7733,0;11591,0;46,3;78,838;LINESTRING (3514961.322999262 5406203.36756228, 3514972.008697826 5406191.407984387, 3514997.079789333 5406163.328526517, 3515003.448224085 5406155.772377886, 3515006.240148332 5406150.319603419, 3515009.238978568 5406141.675761685);[13, 15, 56, 57]
15,0;['DEBW522AA0003526c', 'DEBW522AA0003d266', 'DEBW522AA0001c3af', 'DEBW522AA00029bb1', 'DEBW522AA00029bb2', 'DEBW522AA00007a05', 'DEBW522AA0001db43', 'DEBW522AA00019e18', 'DEBW522AA0002112a', 'DEBW522AA00024f16', 'DEBW522AA00024f14', 'DEBW522AA00008a23', 'DEBW522AA0001c5aa', 'DEBW522AA0004312e', 'DEBW522AA0004312f'];Counter({'non-heated': 7, 'residential': 7, 'retail': 1});Counter({'1949-1971': 13, '1991-2010': 1, '1972-1990': 1});15,0;471515,0;64940,0;46225,0;29841,0;7499,0;457,0;8,0;1,0;1,0;1109,0;14436,0;40986,0;63299,0;282,8;121,342;LINESTRING (3514917.339547697 5406062.607997756, 3515003.509555631 5406138.290908156, 3515009.238978568 5406141.675761685);[13, 14, 19, 20, 21]
16,0;['DEBW522AA0003cd85', 'DEBW522AA0001aa83', 'DEBW522AA0001aa89', 'DEBW522AA00034853', 'DEBW522AA0003cd8e', 'DEBW522AA00026208'];Counter({'residential': 3, 'non-heated': 2, 'sport location': 1});Counter({'1991-2010': 2, '1972-1990': 2, 'Before 1948': 1, 'After 2011': 1});6,0;504605,0;57835,0;43906,0;31915,0;12752,0;2037,0;41,0;0,0;1,0;2695,0;14890,0;36622,0;55220,0;229,1;61,063;LINESTRING (3515614.68912088 5406016.339304105, 3515635.254947175 5406024.447843212, 3515671.490837116 5406038.74986131);[111, 17, 18, 473]
17,0;['DEBW522AA0000eb39', 'DEBW522AA00031de5', 'DEBW522AA0004105f', 'DEBW522AA00023ccf', 'DEBW522AA000312f3', 'DEBW522AA000321f8', 'DEBW522AA0002550f', 'DEBW522AA00030bdb', 'DEBW522AA000031ea', 'DEBW522AA000440f0', 'DEBW522AA0001eeff', 'DEBW522AA0003a8bb', 'DEBW522AA0003ed24', 'DEBW522AA0003ed1f', 'DEBW522AA0000addd', 'DEBW522AA00038cd6', 'DEBW522AA0004358a', 'DEBW522AA0000f962'];Counter({'residential': 17, 'industry': 1});Counter({'1972-1990': 12, '1991-2010': 6});18,0;512397,0;93294,0;65118,0;38852,0;7271,0;233,0;0,0;0,0;0,0;929,0;19357,0;59344,0;91645,0;250,2;149,642;LINESTRING (3515614.68912088 5406016.339304105, 3515642.430953041 5405943.542952149, 3515645.686362054 5405932.865086762, 3515667.2352708 5405915.243329079, 3515697.236486564 5405902.13800032);[232, 16, 18, 470]
18,0;['DEBW522AA0001aa81', 'DEBW522AA0001aa82', 'DEBW522AA0001aa84', 'DEBW522AA0001aa86', 'DEBW522AA0001aa87', 'DEBW522AA0001aa88'];Counter({'industry': 3, 'non-heated': 2, 'hall': 1});Counter({'1972-1990': 5, '1991-2010': 1});6,0;14512,0;2161,0;1354,0;732,0;221,0;40,0;2,0;0,0;0,0;70,0;331,0;1106,0;2112,0;400,5;32,294;LINESTRING (3515584.758640428 5406004.212547085, 3515607.826690361 5406013.562317178, 3515614.68912088 5406016.339304105);[103, 108, 16, 17]
19,0;['DEBW522AA00039a7f', 'DEBW522AA00039a8c', 'DEBW522AA0002afc9', 'DEBW522AA0003368f', 'DEBW522AA00040edc', 'DEBW522AA0003e540', 'DEBW522AA0003e53f', 'DEBW522AA00039923', 'DEBW522AA00039924', 'DEBW522AA0000aa94', 'DEBW522AA0000ee7e', 'DEBW522AA0000ee7b'];Counter({'residential': 5, 'industry': 3, 'retail': 2, 'non-heated': 1, 'office and administration': 1});Counter({'1972-1990': 8, '1949-1971': 3, 'After 2011': 1});12,0;1444254,0;218014,0;166234,0;123731,0;50071,0;7206,0;265,0;29,0;56,0;11352,0;62284,0;141688,0;209055,0;358,0;124,995;LINESTRING (3514822.873143579 5405980.754837738, 3514917.339547697 5406062.607997756);[236, 237, 15, 20, 21]
20,0;['DEBW522AA0003cada', 'DEBW522AA0003419d', 'DEBW522AA0002c6fb', 'DEBW522AA0001cd29', 'DEBW522AA00022dc5', 'DEBW522AA0001c28f', 'DEBW522AA0001c5a9'];Counter({'residential': 6, 'hall': 1});Counter({'1972-1990': 3, 'After 2011': 2, '1949-1971': 2});7,0;276311,0;45967,0;32823,0;20691,0;4491,0;241,0;6,0;1,0;2,0;675,0;9712,0;28887,0;44834,0;145,1;93,81;LINESTRING (3514853.871593671 5406131.688023483, 3514917.339547697 5406062.607997756);[355, 15, 19, 21, 247]
21,0;['DEBW522AA000106a7', 'DEBW522AA0002f5c3', 'DEBW522AA00023630', 'DEBW522AA00023631', 'DEBW522AA00023632', 'DEBW522AA000101f8', 'DEBW522AA000101f7', 'DEBW522AA0003c398', 'DEBW522AA0003c399', 'DEBW522AA0002c798', 'DEBW522AA0002c795', 'DEBW522AA00039a81', 'DEBW522AA000395e8', 'DEBW522AA000395e9', 'DEBW522AA00019e17', 'DEBW522AA0000ec54', 'DEBW522AA0000ec53', 'DEBW522AA0002695c', 'DEBW522AA0002695d', 'DEBW522AA0002f46d', 'DEBW522AA1a08a54', 'DEBW522AA00017289', 'DEBW522AA0000ee7d', 'DEBW522AA0000ee7c'];Counter({'residential': 11, 'non-heated': 8, 'industry': 4, 'office and administration': 1});Counter({'1949-1971': 12, '1972-1990': 8, '1991-2010': 4});24,0;828882,0;95262,0;63513,0;36912,0;8055,0;469,0;9,0;1,0;2,0;1177,0;17433,0;54230,0;92160,0;558,2;119,314;LINESTRING (3514997.275421795 5405974.233846446, 3514923.862730978 5406057.654397848, 3514919.945797974 5406060.657686618, 3514917.339547697 5406062.607997756);[19, 20, 15]
24,0;['DEBW522AA00000252'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;262747,0;7102,0;3084,0;508,0;10,0;0,0;0,0;0,0;0,0;0,0;14,0;1057,0;6035,0;26,5;316,158;LINESTRING (3514296.738901568 5405869.553342881, 3514313.520750825 5405884.30863691, 3514335.324528452 5405903.491675422, 3514364.826398122 5405929.333481825, 3514406.61094616 5405967.662015857, 3514477.119853685 5406030.674731157, 3514532.187042753 5406080.537177456);[408, 297, 22, 23]
25,0;['DEBW522AA0002190e', 'DEBW522AA000106a6', 'DEBW522AA000106a8', 'DEBW522AA0002f5c2', 'DEBW522AA00040198', 'DEBW522AA0001b05b', 'DEBW522AA0001b05c', 'DEBW522AA0001f2fa', 'DEBW522AA0001f2fb', 'DEBW522AA0003250d', 'DEBW522AA0003b61c', 'DEBW522AA000142a9', 'DEBW522AA00017c1b', 'DEBW522AA00017c1a', 'DEBW522AA00017c1c', 'DEBW522AA0000bf6c', 'DEBW522AA0002f76f', 'DEBW522AA00033a9e', 'DEBW522AA00033a9d', 'DEBW522AA0000692b', 'DEBW522AA0000692a', 'DEBW522AA0001320c', 'DEBW522AA00011037', 'DEBW522AA00011c5c', 'DEBW522AA0000aca8', 'DEBW522AA0001b9a5', 'DEBW522AA0001f2f9', 'DEBW522AA00043188', 'DEBW522AA00005781', 'DEBW522AA00043130', 'DEBW522AA00037a76'];Counter({'residential': 22, 'non-heated': 5, 'office and administration': 2, 'hall': 1, 'event location': 1});Counter({'1949-1971': 22, '1972-1990': 8, 'Before 1948': 1});31,0;640755,0;118614,0;86464,0;58425,0;18266,0;2266,0;56,0;1,0;6,0;4296,0;30985,0;77832,0;115659,0;575,3;146,173;LINESTRING (3515046.867818346 5405932.230365084, 3515046.79240299 5405946.686980613, 3515046.537372301 5405948.63240776, 3515038.852356448 5405984.053279512, 3515023.520589124 5406068.184315084, 3515022.125555146 5406076.053991904);[423, 426, 13, 26]
26,0;['DEBW522AA000240ec'];Counter({'non-heated': 1});Counter({'1949-1971': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;71,7;107,449;LINESTRING (3515088.786214976 5406157.201933219, 3515052.266904094 5406105.782260896, 3515038.437484118 5406084.249048973, 3515035.815340288 5406081.139375404, 3515029.336445342 5406077.741369826, 3515022.125555146 5406076.053991904);[13, 25, 315, 316]
27,0;['DEBW522AA000079df', 'DEBW522AA0001eec1', 'DEBW522AA00000719'];Counter({'residential': 3});Counter({'1991-2010': 1, '1949-1971': 1, '1972-1990': 1});3,0;236021,0;37390,0;26737,0;16737,0;3682,0;132,0;0,0;0,0;0,0;413,0;7900,0;23629,0;36553,0;52,2;57,325;LINESTRING (3514795.694418974 5406198.347279594, 3514757.624804061 5406241.206161473);[459, 502, 28, 29]
28,0;['DEBW522AA0001c894', 'DEBW522AA000359d8', 'DEBW522AA00013193', 'DEBW522AA000079e5', 'DEBW522AA0002f552'];Counter({'industry': 3, 'residential': 1, 'retail': 1});Counter({'1972-1990': 4, '1991-2010': 1});5,0;770997,0;69250,0;50270,0;33817,0;10345,0;820,0;21,0;2,0;5,0;1908,0;16351,0;43278,0;66801,0;119,8;125,032;LINESTRING (3514850.871616725 5406324.50072945, 3514757.624804061 5406241.206161473);[48, 49, 27, 29]
29,0;['DEBW522AA000243c2', 'DEBW522AA000243c5', 'DEBW522AA0003408e', 'DEBW522AA00035f4d', 'DEBW522AA00019a46', 'DEBW522AA0004172d', 'DEBW522AA000001d7', 'DEBW522AA000001d6', 'DEBW522AA000037e9'];Counter({'industry': 4, 'non-heated': 2, 'office and administration': 2, 'residential': 1});Counter({'1972-1990': 6, '1949-1971': 2, '1991-2010': 1});9,0;357271,0;56262,0;39756,0;26109,0;8193,0;890,0;30,0;2,0;6,0;1697,0;13040,0;34147,0;54505,0;247,0;125,267;LINESTRING (3514663.875035145 5406158.123152041, 3514757.624804061 5406241.206161473);[365, 339, 27, 28]
32,0;['DEBW522AA0000a2b5', 'DEBW522AA00038ea5', 'DEBW522AA0003106b', 'DEBW522AA0002972c', 'DEBW522AA00044893'];Counter({'industry': 5});Counter({'1972-1990': 5});5,0;55387,0;4670,0;2392,0;714,0;36,0;0,0;0,0;0,0;0,0;0,0;74,0;1468,0;4416,0;115,8;392,022;LINESTRING (3514564.153351705 5406110.189679203, 3514577.977414111 5406123.125451857, 3514608.73717794 5406153.186546071, 3514639.681335203 5406185.672589982, 3514668.696213469 5406216.830416844, 3514714.832159097 5406266.927159407, 3514735.782882936 5406288.111264168, 3514759.184147857 5406310.558516793, 3514789.613583561 5406336.949947802, 3514817.517930122 5406359.542750912, 3514827.893241022 5406367.543617194, 3514846.232005219 5406381.470596642);[435, 23, 439, 31]
33,0;['DEBW522AA00043f98', 'DEBW522AA00043f97', 'DEBW522AA00043f99', 'DEBW522AA00043f94', 'DEBW522AA00043fb4'];Counter({'industry': 4, 'residential': 1});Counter({'1972-1990': 5});5,0;281699,0;7370,0;3401,0;994,0;122,0;5,0;0,0;0,0;0,0;15,0;264,0;1934,0;6606,0;72,1;100,627;LINESTRING (3515362.313169219 5406251.478860505, 3515363.279457645 5406258.165006119, 3515364.450017042 5406262.69430691, 3515367.003518294 5406266.626876224, 3515371.526622663 5406270.375784733, 3515378.806070553 5406273.731898737, 3515388.264613932 5406275.525980783, 3515398.891721705 5406279.881028687, 3515405.584420588 5406282.84634709, 3515413.454119044 5406287.972306654, 3515421.322705178 5406293.498617351, 3515428.204239881 5406297.254046774, 3515432.728896232 5406300.413615681, 3515439.409949786 5406307.604785812);[34, 35]
34,0;['DEBW522AA00043f96', 'DEBW522AA00043f95'];Counter({'industry': 2});Counter({'1972-1990': 2});2,0;44840,0;2413,0;1175,0;266,0;9,0;0,0;0,0;0,0;0,0;0,0;19,0;601,0;2161,0;26,9;89,004;LINESTRING (3515353.646169524 5406298.829084514, 3515366.102647986 5406303.222432288, 3515371.334265413 5406303.114417423, 3515375.885928305 5406301.781276141, 3515386.249120027 5406297.850702282, 3515409.57721001 5406297.781194999, 3515439.409949786 5406307.604785812);[33, 35]
35,0;['DEBW522AA0003bbd6', 'DEBW522AA00023111', 'DEBW522AA0003efcd'];Counter({'residential': 2, 'office and administration': 1});Counter({'1991-2010': 1, '1949-1971': 1, '1972-1990': 1});3,0;210776,0;37327,0;26891,0;17946,0;5386,0;556,0;18,0;2,0;4,0;1033,0;8883,0;23767,0;36406,0;50,2;97,241;LINESTRING (3515429.996943924 5406393.663797638, 3515433.426752055 5406380.773276335, 3515442.765986735 5406345.67996005, 3515446.718715868 5406335.026133685, 3515453.547644797 5406317.796802861, 3515450.186575403 5406313.661800682, 3515439.409949786 5406307.604785812);[33, 34, 39, 212]
37,0;['DEBW522AA00007d40', 'DEBW522AA00027367', 'DEBW522AA00027368'];Counter({'residential': 3});Counter({'1991-2010': 3});3,0;180586,0;30898,0;21838,0;13593,0;2768,0;81,0;0,0;0,0;0,0;285,0;6345,0;19387,0;30197,0;46,2;64,079;LINESTRING (3514576.474580911 5405883.627769752, 3514624.574112192 5405925.966621464);[36, 38, 429, 430]
39,0;['DEBW522AA0002558e', 'DEBW522AA00007231', 'DEBW522AA000322d2', 'DEBW522AA000276eb', 'DEBW522AA0001cdeb', 'DEBW522AA000273b9', 'DEBW522AA0002707d'];Counter({'residential': 7});Counter({'1991-2010': 7});7,0;520813,0;87659,0;61951,0;38755,0;8083,0;225,0;0,0;0,0;0,0;775,0;17776,0;54837,0;85612,0;166,5;112,883;LINESTRING (3515429.996943924 5406393.663797638, 3515425.966296384 5406392.574025787, 3515392.935579163 5406383.609149291, 3515359.320499773 5406376.044071367, 3515320.479804602 5406366.374262393);[35, 212]
41,0;['DEBW522AA00002e62'];Counter({'retail': 1});Counter({'After 2011': 1});1,0;92537,0;8315,0;6126,0;4231,0;1347,0;122,0;3,0;0,0;1,0;254,0;2075,0;5298,0;8051,0;23,7;48,269;LINESTRING (3514260.197495556 5405681.199568271, 3514267.272422692 5405678.837709985, 3514277.397022221 5405667.72056045, 3514287.086878274 5405657.091631301, 3514288.413245499 5405655.638202079, 3514291.815741734 5405646.850444937);[40, 42, 115, 116]
44,0;['DEBW522AA0001ed75', 'DEBW522AA0002aaf7', 'DEBW522AA00039117', 'DEBW522AA0003911b', 'DEBW522AA0002ae09', 'DEBW522AA0003584e', 'DEBW522AA00015d19', 'DEBW522AA0003e504', 'DEBW522AA00027957'];Counter({'residential': 8, 'industry': 1});Counter({'Before 1948': 3, '1972-1990': 3, '1991-2010': 2, '1949-1971': 1});9,0;361032,0;64742,0;44887,0;27353,0;5500,0;204,0;0,0;0,0;0,0;675,0;13017,0;40233,0;63639,0;156,6;48,535;LINESTRING (3514819.248458503 5405722.224108888, 3514832.651808484 5405761.092685186, 3514834.253034097 5405766.912997812, 3514834.61691521 5405768.248433192);[43, 45, 46, 47]
45,0;['DEBW522AA0000e3f9'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;54257,0;10217,0;6993,0;4287,0;947,0;43,0;0,0;0,0;0,0;122,0;2037,0;6340,0;10126,0;10,2;48,603;LINESTRING (3514834.61691521 5405768.248433192, 3514849.819084032 5405765.830925838, 3514882.612656015 5405760.590898708);[456, 43, 44, 46, 47, 309]
46,0;['DEBW522AA0003aa39', 'DEBW522AA00039cf8', 'DEBW522AA00039cf7', 'DEBW522AA00039118', 'DEBW522AA0003911a', 'DEBW522AA0004451a', 'DEBW522AA00c26c71', 'DEBW522AA00c26c82', 'DEBW522AA00c26c97', 'DEBW522AA0002a09e', 'DEBW522AA0002a09d', 'DEBW522AA0001f97f', 'DEBW522AA00000b82', 'DEBW522AA00000b81', 'DEBW522AA00000b83', 'DEBW522AA000379e1', 'DEBW522AA0003dd47', 'DEBW522AA0002f099', 'DEBW522AA0002f098', 'DEBW522AA00003ec9', 'DEBW522AA0003581a', 'DEBW522AA00003eff', 'DEBW522AA00003efe', 'DEBW522AA0001115f', 'DEBW522AA00039116', 'DEBW522AA00005335', 'DEBW522AA0003abdd', 'DEBW522AA00028b0c', 'DEBW522AA00028b17', 'DEBW522AA00032423', 'DEBW522AA0003abd6', 'DEBW522AA0003abd7', 'DEBW522AA0003abd8'];Counter({'residential': 25, 'hall': 2, 'office and administration': 2, 'retail': 2, 'industry': 1, 'non-heated': 1});Counter({'1972-1990': 10, 'Before 1948': 8, '1949-1971': 7, '1991-2010': 6, 'After 2011': 2});33,0;1748896,0;273721,0;195097,0;128611,0;34485,0;2444,0;58,0;4,0;10,0;5345,0;61181,0;172649,0;267793,0;705,8;231,292;LINESTRING (3514603.664662758 5405780.643550822, 3514637.822147984 5405779.186646245, 3514762.722129587 5405771.573228004, 3514834.61691521 5405768.248433192);[481, 482, 43, 44, 45, 47]
47,0;['DEBW522AA000070b2', 'DEBW522AA0000e926', 'DEBW522AA0000e925', 'DEBW522AA0003045f', 'DEBW522AA0003045e', 'DEBW522AA00030461', 'DEBW522AA00030460', 'DEBW522AA0001976f', 'DEBW522AA00019770', 'DEBW522AA0001110a', 'DEBW522AA00011109'];Counter({'residential': 5, 'retail': 3, 'non-heated': 2, 'industry': 1});Counter({'1972-1990': 5, '1991-2010': 3, '1949-1971': 2, 'After 2011': 1});11,0;293757,0;37970,0;27480,0;18646,0;5187,0;271,0;3,0;0,0;0,0;591,0;8174,0;23526,0;36940,0;195,8;141,114;LINESTRING (3514975.285683783 5405760.903817356, 3514967.235283654 5405762.505981048, 3514962.177215944 5405763.482247083, 3514907.454644277 5405766.828689796, 3514891.242696479 5405767.630874296, 3514869.231029325 5405769.22956263, 3514862.471303766 5405769.044871578, 3514845.954099158 5405768.578628801, 3514834.61691521 5405768.248433192);[43, 44, 45, 46, 302, 308, 309, 59]
48,0;['DEBW522AA00032cb0', 'DEBW522AA0001c2b9', 'DEBW522AA00035790', 'DEBW522AA0000901f', 'DEBW522AA0000901e', 'DEBW522AA0000901c', 'DEBW522AA000079e3', 'DEBW522AA0000da18', 'DEBW522AA000086ea', 'DEBW522AA0001a3cd'];Counter({'residential': 7, 'industry': 2, 'non-heated': 1});Counter({'1972-1990': 7, '1949-1971': 3});10,0;425175,0;68655,0;49284,0;30752,0;6003,0;155,0;0,0;0,0;0,0;564,0;13935,0;43041,0;66835,0;241,9;133,408;LINESTRING (3514939.128985028 5406224.459951276, 3514936.394560507 5406227.666544381, 3514926.379419805 5406238.949612973, 3514850.871616725 5406324.50072945);[9, 299, 49, 28]
49,0;['DEBW522AA0000c51e', 'DEBW522AA000015ad', 'DEBW522AA000015ac', 'DEBW522AA000015ab', 'DEBW522AA0003232a', 'DEBW522AA0003e2a1'];Counter({'residential': 4, 'non-heated': 2});Counter({'1972-1990': 5, '1991-2010': 1});6,0;254406,0;42636,0;29750,0;18288,0;3631,0;98,0;0,0;0,0;0,0;322,0;8187,0;26209,0;41665,0;156,4;112,243;LINESTRING (3514935.56705453 5406398.154787432, 3514931.527762873 5406394.752257105, 3514927.320455016 5406390.982302365, 3514850.871616725 5406324.50072945);[48, 432, 433, 52, 28]
50,0;['DEBW522AA0003213a', 'DEBW522AA0000be71', 'DEBW522AA0001cb2f', 'DEBW522AA000312b3', 'DEBW522AA000300c0', 'DEBW522AA00014611'];Counter({'residential': 4, 'non-heated': 2});Counter({'1949-1971': 4, '1972-1990': 2});6,0;65825,0;11928,0;8293,0;5318,0;1400,0;65,0;0,0;0,0;0,0;177,0;2533,0;7443,0;11752,0;196,0;16,261;LINESTRING (3515456.866988848 5405957.530672511, 3515472.720984155 5405961.144034788);[178, 220]
53,0;['DEBW522AA0000c7ed', 'DEBW522AA0000c7f2'];Counter({'office and administration': 1, 'non-heated': 1});Counter({'1972-1990': 2});2,0;213759,0;36061,0;27639,0;20851,0;8650,0;1266,0;45,0;5,0;10,0;1979,0;10702,0;23699,0;34653,0;95,4;47,241;LINESTRING (3514961.42144247 5406401.114943019, 3514952.893760887 5406411.245381026, 3514949.527696982 5406417.163722376, 3514947.512244598 5406423.5638463, 3514946.927639638 5406427.899339121, 3514947.275665782 5406435.173161222, 3514948.868977267 5406443.851496942);[146, 52, 54]
54,0;['DEBW522AA0001257d', 'DEBW522AA0001257b', 'DEBW522AA0001257c', 'DEBW522AA00005391', 'DEBW522AA00005390', 'DEBW522AA00c53577', 'DEBW522AA00026aba', 'DEBW522AA00012398'];Counter({'residential': 6, 'non-heated': 1, 'retail': 1});Counter({'1949-1971': 4, '1972-1990': 2, 'After 2011': 1, '1991-2010': 1});8,0;315328,0;47451,0;33392,0;20703,0;4428,0;189,0;1,0;0,0;0,0;589,0;10049,0;29826,0;46400,0;154,4;116,558;LINESTRING (3515037.136144073 5406312.630010982, 3515032.968007976 5406318.946498203, 3515013.992557627 5406342.693917224, 3514961.42144247 5406401.114943019);[52, 53, 155, 156, 157]
57,0;['DEBW522AA0003d333', 'DEBW522AA0003d334', 'DEBW522AA0003acc8', 'DEBW522AA0003663a', 'DEBW522AA0001e9cc'];Counter({'residential': 4, 'industry': 1});Counter({'1949-1971': 3, '1972-1990': 1, '1991-2010': 1});5,0;162845,0;24734,0;17616,0;10935,0;2186,0;60,0;0,0;0,0;0,0;230,0;4999,0;15459,0;24097,0;43,1;33,707;LINESTRING (3514951.135347951 5406180.009357519, 3514944.105090051 5406187.808459093, 3514946.502004812 5406189.961116684, 3514953.949218576 5406196.675552847, 3514961.322999262 5406203.36756228);[56, 14]
59,0;['DEBW522AA00043691'];Counter({'health care': 1});Counter({'After 2011': 1});1,0;2759181,0;230982,0;182475,0;147639,0;76176,0;20861,0;2128,0;384,0;640,0;26336,0;82599,0;157474,0;221436,0;30,6;78,004;LINESTRING (3514975.285683783 5405760.903817356, 3514990.124236654 5405759.853558706, 3514994.666291007 5405759.498695983, 3515020.22736676 5405757.821021833, 3515053.150702737 5405756.341111489);[302, 47, 308, 309, 58, 60]
60,0;['DEBW522A00c5be06', 'DEBW522AA0004369a', 'DEBW522AA00043693', 'DEBW522AA00043692', 'DEBW522AA00c5be06', 'DEBW522AA0000f09c', 'DEBW522AA00016a88', 'DEBW522AA0002a31d', 'DEBW522AA00015fba'];Counter({'residential': 5, 'health care': 2, 'industry': 1, 'non-heated': 1});Counter({'After 2011': 4, '1949-1971': 3, 'Before 1948': 1, '1991-2010': 1});9,0;3693181,0;316081,0;250810,0;204165,0;108189,0;33371,0;3989,0;793,0;1237,0;39143,0;114273,0;215978,0;302572,0;178,1;132,512;LINESTRING (3515185.471875038 5405749.290799064, 3515162.005735685 5405750.661993497, 3515140.332826993 5405751.926911352, 3515111.348759566 5405753.127764744, 3515096.356721641 5405753.854791625, 3515081.577422752 5405754.715877128, 3515053.150702737 5405756.341111489);[450, 170, 58, 59]
62,0;['DEBW522AA00012ca7', 'DEBW522AA000039ef', 'DEBW522AA00011cfb', 'DEBW522AA00c63a59', 'DEBW522AA00018da5', 'DEBW522AA00038a6a', 'DEBW522AA0000714e', 'DEBW522AA00019636', 'DEBW522AA0001aa6e', 'DEBW522AA0001149c', 'DEBW522AA0001149d', 'DEBW522AA00034123', 'DEBW522AA00034168', 'DEBW522AA000406fa', 'DEBW522AA0002711e', 'DEBW522AA0002711f', 'DEBW522AA0003559c', 'DEBW522AA0003b827', 'DEBW522AA0002707f'];Counter({'residential': 16, 'non-heated': 3});Counter({'1949-1971': 12, '1972-1990': 4, 'Before 1948': 2, '1991-2010': 1});19,0;305296,0;56248,0;38883,0;23831,0;5291,0;237,0;0,0;0,0;0,0;676,0;11595,0;35104,0;55454,0;194,4;141,653;LINESTRING (3515468.770747404 5405668.905214368, 3515444.234425551 5405661.131124736, 3515424.410768668 5405652.435944889, 3515407.575106456 5405644.716522655, 3515381.411876319 5405624.516508738, 3515369.229219173 5405616.176065964, 3515364.093246358 5405616.006331922, 3515360.753514816 5405617.33167651, 3515344.588483964 5405627.685296311);[515, 395, 61, 63]
63,0;['DEBW522AA00027650', 'DEBW522AA00011e47', 'DEBW522AA00016fed', 'DEBW522AA00014484', 'DEBW522AA0000cfc7'];Counter({'residential': 5});Counter({'1991-2010': 5});5,0;226633,0;41154,0;28501,0;17339,0;3481,0;117,0;0,0;0,0;0,0;427,0;8501,0;25924,0;40316,0;70,7;116,196;LINESTRING (3515396.219352714 5405731.615346164, 3515393.860753442 5405726.193137707, 3515381.934844375 5405699.293039461, 3515364.695160828 5405661.969528695, 3515344.588483964 5405627.685296311);[397, 401, 402, 61, 62]
64,0;['DEBW522AA00041b18'];Counter({'office and administration': 1});Counter({'After 2011': 1});1,0;229248,0;38024,0;29260,0;22334,0;9530,0;1415,0;54,0;6,0;11,0;2261,0;11493,0;24993,0;36454,0;11,4;7,891;LINESTRING (3514335.469820226 5405687.874361098, 3514330.098288732 5405693.654505358);[217, 346]
65,0;['DEBW522AA0001d1e5', 'DEBW522AA000283b3', 'DEBW522AA000344f4', 'DEBW522AA000130ac', 'DEBW522AA000310ad', 'DEBW522AA000310ac', 'DEBW522AA000131c7', 'DEBW522AA0001023a'];Counter({'residential': 8});Counter({'1991-2010': 3, '1949-1971': 2, '1972-1990': 2, 'After 2011': 1});8,0;254523,0;47913,0;32997,0;19503,0;3794,0;139,0;0,0;0,0;0,0;486,0;9657,0;30221,0;47184,0;92,5;78,131;LINESTRING (3515640.803185635 5405622.619212484, 3515658.335013743 5405546.480613328);[66, 67, 68, 457, 202]
66,0;['DEBW522AA00033291', 'DEBW522AA0001ab53', 'DEBW522AA00c43037'];Counter({'residential': 3});Counter({'1972-1990': 1, '1949-1971': 1, 'After 2011': 1});3,0;69110,0;11753,0;8270,0;5394,0;1432,0;59,0;0,0;0,0;0,0;146,0;2414,0;7262,0;11552,0;52,2;56,245;LINESTRING (3515695.42961555 5405635.971729876, 3515661.193935483 5405628.136240252, 3515640.803185635 5405622.619212484);[65, 67, 68, 458, 412]
67,0;['DEBW522AA00024130', 'DEBW522AA0000ab7e', 'DEBW522AA0001b313', 'DEBW522AA0001b314', 'DEBW522AA0001b315', 'DEBW522AA0003632e', 'DEBW522AA0001117f', 'DEBW522AA00011180', 'DEBW522AA0000df9f', 'DEBW522AA0000df9e', 'DEBW522AA0000df9d'];Counter({'residential': 9, 'non-heated': 1, 'retail': 1});Counter({'1949-1971': 6, 'After 2011': 4, '1972-1990': 1});11,0;121878,0;22043,0;14992,0;9131,0;2104,0;97,0;1,0;0,0;0,0;235,0;4171,0;13371,0;21775,0;193,1;43,757;LINESTRING (3515599.261639399 5405610.0375031, 3515602.898488133 5405612.883361451, 3515634.393337695 5405620.755348682, 3515640.803185635 5405622.619212484);[65, 66, 68]
68,0;['DEBW522AA00016be1', 'DEBW522AA00016be0', 'DEBW522AA0001e4b7', 'DEBW522AA0003d755', 'DEBW522AA0001acb8', 'DEBW522AA0000c725', 'DEBW522AA00009bd5', 'DEBW522AA00043b1f', 'DEBW522AA0000b6a9', 'DEBW522AA0000b6aa', 'DEBW522AA0000f781', 'DEBW522AA0000f780', 'DEBW522AA0000f77f', 'DEBW522AA000307a2', 'DEBW522AA0001b308', 'DEBW522AA0001b30b', 'DEBW522AA000135a3', 'DEBW522AA0001631b', 'DEBW522AA0001ba96', 'DEBW522AA000250ba', 'DEBW522AA0002bc99', 'DEBW522AA0001117e', 'DEBW522AA0000e1a4', 'DEBW522AA0001fb55', 'DEBW522AA0001a3e2', 'DEBW522AA0001a3e1', 'DEBW522AA0001a3e3', 'DEBW522AA0000874a'];Counter({'residential': 25, 'office and administration': 1, 'retail': 1, 'non-heated': 1});Counter({'1949-1971': 15, '1972-1990': 9, '1991-2010': 3, 'After 2011': 1});28,0;280114,0;46192,0;32204,0;19950,0;4638,0;246,0;2,0;0,0;0,0;657,0;9824,0;29155,0;45289,0;407,4;101,403;LINESTRING (3515626.915501251 5405722.922017627, 3515631.282637412 5405671.845988045, 3515638.091395732 5405635.934178662, 3515638.732709312 5405632.566412807, 3515640.803185635 5405622.619212484);[65, 66, 67, 357, 135, 428]
69,0;['DEBW522AA00038d5c', 'DEBW522AA011e9c5d', 'DEBW522AA0001425b', 'DEBW522AA0001425f', 'DEBW522AA00014262', 'DEBW522AA00014260'];Counter({'residential': 4, 'non-heated': 1, 'education': 1});Counter({'1949-1971': 3, '1972-1990': 2, 'After 2011': 1});6,0;36590,0;6149,0;4418,0;2928,0;901,0;78,0;2,0;0,0;1,0;162,0;1461,0;3922,0;6016,0;142,9;150,052;LINESTRING (3515884.808218144 5406145.895846482, 3515880.84291098 5406150.255046811, 3515838.848613421 5406195.642146505, 3515795.705303303 5406242.271841736, 3515791.587860221 5406253.759009006, 3515790.908169879 5406260.318277166);[70, 71]
73,0;['DEBW522AA000169d1'];Counter({'hall': 1});Counter({'1991-2010': 1});1,0;95579,0;17770,0;14111,0;11873,0;6701,0;2331,0;239,0;32,0;79,0;3496,0;8372,0;13220,0;17356,0;17,5;45,052;LINESTRING (3515731.291557201 5406315.331630948, 3515721.186474347 5406305.706226168, 3515713.226506815 5406298.81139735, 3515706.080117115 5406297.879518819, 3515699.167247629 5406292.255391194, 3515695.758689475 5406289.398981838);[72, 74, 81, 82]
74,0;['DEBW522AA00002d83'];Counter({'retail': 1});Counter({'1991-2010': 1});1,0;207141,0;19726,0;14861,0;10736,0;3918,0;463,0;15,0;1,0;3,0;836,0;5443,0;12844,0;19090,0;12,4;72,343;LINESTRING (3515758.239997768 5406284.458417303, 3515746.201151438 5406275.327972292, 3515739.122263039 5406271.27134056, 3515733.902684477 5406269.688707857, 3515728.288747098 5406269.873157883, 3515715.655501677 5406276.22104808, 3515695.758689475 5406289.398981838);[70, 72, 73, 81]
76,0;['DEBW522AA00000121', 'DEBW522AA000054a5', 'DEBW522AA0000df8b', 'DEBW522AA0000df8c'];Counter({'residential': 4});Counter({'1972-1990': 2, '1949-1971': 2});4,0;91502,0;17755,0;12234,0;7491,0;1666,0;77,0;0,0;0,0;0,0;228,0;3641,0;11087,0;17518,0;90,0;182,653;LINESTRING (3515582.686355866 5406632.623103159, 3515563.983947938 5406639.543894229, 3515547.42400902 5406647.504897657, 3515526.135413103 5406651.827546419, 3515517.221810976 5406652.481274171, 3515470.98720307 5406658.014146963, 3515415.696082221 5406665.457531305, 3515404.850515882 5406668.708367087);[328, 201, 75, 77]
83,0;['DEBW522AA0003a0c7', 'DEBW522AA0003a0c6', 'DEBW522AA00025790'];Counter({'education': 2, 'residential': 1});Counter({'1991-2010': 1, '1949-1971': 1, 'Before 1948': 1});3,0;271465,0;40735,0;29844,0;20720,0;6802,0;703,0;26,0;4,0;8,0;1468,0;11239,0;26790,0;39839,0;84,0;191,717;LINESTRING (3514893.361465982 5405586.281374415, 3514908.028046446 5405580.971242392, 3514911.720643292 5405579.557599423, 3515044.379888118 5405527.266138525, 3515055.583381825 5405522.81453105, 3515060.599832279 5405518.257396898, 3515062.978891029 5405513.448543883, 3515064.528483836 5405508.303849726);[303, 305, 84, 85, 89, 447]
91,0;['DEBW522AA00020dc5'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;2447,0;450,0;321,0;200,0;40,0;1,0;0,0;0,0;0,0;6,0;103,0;296,0;442,0;11,6;124,207;LINESTRING (3514636.416704105 5405977.619393225, 3514628.35464863 5405975.38539688, 3514607.403509479 5405956.581525347, 3514541.673093522 5405898.539333067);[99, 98]
92,0;['DEBW522AA0000ef35', 'DEBW522AA00012534'];Counter({'residential': 2});Counter({'After 2011': 2});2,0;109089,0;18136,0;12661,0;7611,0;1311,0;28,0;0,0;0,0;0,0;103,0;3292,0;11203,0;17735,0;27,5;59,219;LINESTRING (3515473.422718264 5405585.902536273, 3515486.544132475 5405528.155907955);[265, 382]
94,0;['DEBW522AA0001a0c2', 'DEBW522AA0000b89b', 'DEBW522AA0000b89a', 'DEBW522AA00033327', 'DEBW522AA00033328', 'DEBW522AA00033329', 'DEBW522AA0003332f', 'DEBW522AA0003332b', 'DEBW522AA0003332a'];Counter({'industry': 4, 'non-heated': 3, 'residential': 1, 'office and administration': 1});Counter({'1972-1990': 4, '1949-1971': 3, '1991-2010': 1, 'Before 1948': 1});9,0;105751,0;10700,0;6673,0;3372,0;613,0;23,0;0,0;0,0;0,0;74,0;1439,0;5242,0;10269,0;187,5;51,018;LINESTRING (3514693.717918797 5405987.64404433, 3514698.198786912 5405982.506912666, 3514703.939904808 5405975.927400618, 3514689.006313603 5405962.966178531, 3514683.265200144 5405969.545705759, 3514678.688524719 5405974.793805263);[96, 93, 95]
95,0;['DEBW522AA00023b4d', 'DEBW522AA000299a9'];Counter({'residential': 2});Counter({'1991-2010': 2});2,0;124196,0;22129,0;15220,0;9062,0;1678,0;54,0;0,0;0,0;0,0;183,0;4260,0;13671,0;21735,0;23,5;45,456;LINESTRING (3514644.629083261 5405944.690376286, 3514678.688524719 5405974.793805263);[430, 438, 93, 94]
96,0;['DEBW522AA0004370e', 'DEBW522AA0001a0cb', 'DEBW522AA000217ec', 'DEBW522AA00008c1d', 'DEBW522AA000303f7', 'DEBW522AA0003cf50', 'DEBW522AA0003cf4f', 'DEBW522AA00e68b84'];Counter({'residential': 7, 'non-heated': 1});Counter({'1972-1990': 4, 'After 2011': 3, '1991-2010': 1});8,0;266282,0;45778,0;31747,0;19037,0;3671,0;120,0;0,0;0,0;0,0;391,0;8840,0;28279,0;44922,0;119,1;92,514;LINESTRING (3514693.717918797 5405987.64404433, 3514717.893898357 5406009.41477399, 3514730.084393853 5406020.411653595, 3514751.012635791 5406039.293773972, 3514762.433337968 5406049.588104979);[237, 246, 247, 93, 94]
97,0;['DEBW522AA0000d908', 'DEBW522AA00038d2c', 'DEBW522AA00038d2d'];Counter({'office and administration': 2, 'residential': 1});Counter({'After 2011': 1, '1991-2010': 1, '1972-1990': 1});3,0;863777,0;147299,0;112503,0;83208,0;32280,0;4001,0;134,0;13,0;30,0;7287,0;42837,0;96958,0;141572,0;58,0;57,676;LINESTRING (3515052.667366845 5406299.304597401, 3515055.190990341 5406292.516651222, 3515059.44354359 5406282.130254463, 3515067.696574819 5406259.477407618, 3515063.966548293 5406244.843771158);[443, 191]
100,0;['DEBW522AA0001e976', 'DEBW522AA0000c9c6', 'DEBW522AA0003d6bf', 'DEBW522AA000100ba', 'DEBW522AA00004a7d', 'DEBW522AA00004a7c', 'DEBW522AA00010293', 'DEBW522AA00023594'];Counter({'residential': 8});Counter({'1991-2010': 6, '1972-1990': 2});8,0;363471,0;64473,0;45669,0;29110,0;6902,0;260,0;0,0;0,0;0,0;863,0;14339,0;41126,0;63015,0;93,4;209,236;LINESTRING (3515662.345119382 5406578.687114656, 3515678.666816344 5406545.637607379, 3515681.021676037 5406539.005155438, 3515682.721143349 5406511.842162727, 3515684.190162864 5406488.281617119, 3515691.592534237 5406381.610830741, 3515695.203974566 5406374.937413829);[101, 102, 327, 523]
102,0;['DEBW522AA0002b083'];Counter({'residential': 1});Counter({'Before 1948': 1});1,0;3102,0;688,0;442,0;252,0;61,0;4,0;0,0;0,0;0,0;8,0;116,0;403,0;688,0;8,6;32,661;LINESTRING (3515702.047708188 5406355.295243268, 3515705.56910277 5406357.195597167, 3515707.75828424 5406359.937396673, 3515707.995150714 5406361.939774803, 3515707.665378961 5406369.523131294, 3515706.098044818 5406372.999510037, 3515702.873596851 5406375.270227036, 3515698.867998983 5406375.748339111, 3515695.203974566 5406374.937413829);[100, 101, 203, 204]
103,0;['DEBW522AA0001aa85', 'DEBW522AA000300bf', 'DEBW522AA00022db9', 'DEBW522AA00022df5', 'DEBW522AA00014610'];Counter({'residential': 3, 'industry': 1, 'non-heated': 1});Counter({'Before 1948': 3, '1972-1990': 1, '1991-2010': 1});5,0;91253,0;16380,0;11401,0;6840,0;1361,0;47,0;0,0;0,0;0,0;183,0;3389,0;10328,0;16029,0;182,9;76,947;LINESTRING (3515522.309102675 5405964.62812954, 3515527.015775783 5405971.135585733, 3515528.221437315 5405976.232168507, 3515530.174561142 5405979.395827301, 3515584.758640428 5406004.212547085);[104, 18, 108]
104,0;['DEBW522AA0002f731', 'DEBW522AA000217d7', 'DEBW522AA00006a0a', 'DEBW522AA0000e031', 'DEBW522AA0000f79e', 'DEBW522AA0002c277', 'DEBW522AA000233c8', 'DEBW522AA0000e111', 'DEBW522AA0001056b', 'DEBW522AA0001908d', 'DEBW522AA0001abe9', 'DEBW522AA0002bcfb', 'DEBW522AA0000c7de', 'DEBW522AA0003dd79', 'DEBW522AA0001284a'];Counter({'residential': 15});Counter({'1972-1990': 13, '1991-2010': 2});15,0;552447,0;99155,0;69846,0;42215,0;8093,0;257,0;0,0;0,0;0,0;945,0;20405,0;62765,0;97510,0;234,3;194,715;LINESTRING (3515669.114017849 5405836.959303507, 3515657.130259837 5405849.870311704, 3515529.626649355 5405959.621824807, 3515522.309102675 5405964.62812954);[230, 231, 232, 103]
107,0;['DEBW522AA00002f4e', 'DEBW522AA00038b0e', 'DEBW522AA0004286f', 'DEBW522AA000217ab', 'DEBW522AA000039fd', 'DEBW522AA0000f9c9', 'DEBW522AA0002f5f8', 'DEBW522AA000004c1', 'DEBW522AA0002108b', 'DEBW522AA0001ecaa', 'DEBW522AA0000976b', 'DEBW522AA0000ef56', 'DEBW522AA00041629', 'DEBW522AA0002a8b5', 'DEBW522AA0000b887', 'DEBW522AA0004383e', 'DEBW522AA0000f2b9', 'DEBW522AA000160b1', 'DEBW522AA0000f2c0', 'DEBW522AA0001fd8a', 'DEBW522AA0002e3a2', 'DEBW522AA000423bb', 'DEBW522AA0002069e', 'DEBW522AA00041d8c', 'DEBW522AA0000191c', 'DEBW522AA0002126c', 'DEBW522AA0002126b', 'DEBW522AA00007882', 'DEBW522AA00033a5f', 'DEBW522AA0001a409', 'DEBW522AA000392d8', 'DEBW522AA0003c164', 'DEBW522AA0000f2bd', 'DEBW522AA00022bdd', 'DEBW522AA000010e4', 'DEBW522AA000010e3', 'DEBW522AA000263c8', 'DEBW522AA000247aa', 'DEBW522AA00022dcd', 'DEBW522AA00033b5f', 'DEBW522AA0000c010', 'DEBW522AA0000c011', 'DEBW522AA0000c012', 'DEBW522AA0000db38', 'DEBW522AA0001374b', 'DEBW522AA00043553'];Counter({'residential': 36, 'non-heated': 4, 'industry': 2, 'education': 2, 'hall': 1, 'retail': 1});Counter({'1991-2010': 17, '1949-1971': 15, '1972-1990': 12, 'Before 1948': 1, 'After 2011': 1});46,0;6589457,0;845930,0;621860,0;445777,0;185087,0;69765,0;25071,0;9346,0;14597,0;86177,0;264596,0;559278,0;821692,0;19161,5;870,792;LINESTRING (3514802.380496057 5406365.897214849, 3514780.172837212 5406347.923411776, 3514746.658988317 5406318.176625247, 3514725.405315425 5406297.703404465, 3514704.022549228 5406275.962176087, 3514658.874540561 5406227.380504929, 3514598.995752822 5406163.959359402, 3514570.259910037 5406135.449332728, 3514536.732598314 5406104.302591837, 3514467.313458014 5406041.013899757, 3514395.542697032 5405977.241872224, 3514358.479076213 5405943.251401274, 3514325.729788731 5405914.409902075, 3514300.86378336 5405891.61602695, 3514271.566342666 5405866.097578824, 3514238.04966036 5405832.361579932, 3514209.753112886 5405797.260023536, 3514195.125183406 5405776.093888322, 3514182.482906845 5405757.134684574);[105, 106, 437, 510]
108,0;['DEBW522AA00038352', 'DEBW522AA00029ed7', 'DEBW522AA0001ce28', 'DEBW522AA0000478d', 'DEBW522AA000263f2'];Counter({'residential': 5});Counter({'1972-1990': 5});5,0;141600,0;24917,0;17694,0;10881,0;2098,0;58,0;0,0;0,0;0,0;243,0;5329,0;15981,0;24364,0;49,8;71,276;LINESTRING (3515612.443643246 5405938.533098143, 3515584.758640428 5406004.212547085);[18, 103]
109,0;['DEBW522AA00015868', 'DEBW522AA00009132'];Counter({'sport location': 1, 'industry': 1});Counter({'1972-1990': 2});2,0;891358,0;86331,0;67893,0;52845,0;25123,0;4961,0;133,0;1,0;5,0;5994,0;24640,0;54612,0;81237,0;34,3;61,306;LINESTRING (3514390.055493898 5405784.162715342, 3514383.783876217 5405791.375064248, 3514420.253537329 5405828.088718545);[248, 249]
110,0;['DEBW522AA00c14303', 'DEBW522A00c14303', 'DEBW522A00c142f4', 'DEBW522AA000087bf', 'DEBW522AA0000fb90', 'DEBW522AA0003cd89', 'DEBW522AA0003cd86', 'DEBW522AA0003cd88', 'DEBW522AA0003cd87', 'DEBW522AA00026c6d', 'DEBW522AA00000611', 'DEBW522AA0001c08f', 'DEBW522AA0003c7ed', 'DEBW522AA000402de', 'DEBW522AA0003cd8a', 'DEBW522AA00026687', 'DEBW522AA0002d401', 'DEBW522AA00026686', 'DEBW522AA00026684', 'DEBW522AA0003c1d6'];Counter({'residential': 8, 'education': 6, 'non-heated': 2, 'hall': 2, 'sport location': 2});Counter({'1991-2010': 8, 'After 2011': 6, '1972-1990': 5, '1949-1971': 1});20,0;1524871,0;208088,0;154867,0;109033,0;36961,0;3967,0;103,0;13,0;25,0;7771,0;56774,0;136330,0;201560,0;487,9;213,578;LINESTRING (3515729.831058337 5406062.610988989, 3515781.262660725 5406084.3292743, 3515822.878746471 5405982.85930431, 3515825.372927189 5405976.471963209, 3515822.093859443 5405935.383092874);[229, 111, 112, 496]
111,0;['DEBW522AA0003cd84', 'DEBW522AA0000c2a7', 'DEBW522AA0003501f', 'DEBW522AA0003cd8d', 'DEBW522AA00017788'];Counter({'residential': 2, 'office and administration': 1, 'education': 1, 'industry': 1});Counter({'1972-1990': 2, 'After 2011': 1, '1991-2010': 1, '1949-1971': 1});5,0;285257,0;44597,0;32842,0;23055,0;8029,0;1021,0;49,0;7,0;15,0;1850,0;12365,0;29420,0;43498,0;161,4;63,031;LINESTRING (3515671.490837116 5406038.74986131, 3515689.03919287 5406045.927169722, 3515729.831058337 5406062.610988989);[110, 16, 112, 473]
112,0;['DEBW522AA000404cc', 'DEBW522AA000230d5', 'DEBW522AA00013d78', 'DEBW522AA00001d57', 'DEBW522AA0003e5c9', 'DEBW522AA0000e84d', 'DEBW522AA00019260', 'DEBW522AA000170c2', 'DEBW522AA0001ce26', 'DEBW522AA00016f81', 'DEBW522AA00017d3f', 'DEBW522AA0000f8fb', 'DEBW522AA00012c77', 'DEBW522AA00027114'];Counter({'residential': 14});Counter({'Before 1948': 7, '1972-1990': 5, '1949-1971': 2});14,0;403772,0;69553,0;49444,0;30479,0;5718,0;138,0;0,0;0,0;0,0;604,0;14547,0;44457,0;67916,0;182,6;128,971;LINESTRING (3515765.271995329 5405940.961597498, 3515765.479979464 5405979.472946215, 3515729.831058337 5406062.610988989);[234, 110, 111, 496, 474]
113,0;['DEBW522AA00000256', 'DEBW522AA0000024f', 'DEBW522AA0000024d', 'DEBW522AA012a1516', 'DEBW522AA000220f9'];Counter({'industry': 2, 'residential': 2, 'office and administration': 1});Counter({'1972-1990': 3, '1949-1971': 1, '1991-2010': 1});5,0;206233,0;31817,0;21398,0;12778,0;3185,0;225,0;4,0;0,0;1,0;457,0;6012,0;18704,0;31159,0;95,3;145,053;LINESTRING (3514353.246206732 5405868.852199149, 3514393.526883352 5405903.562586721, 3514406.202684733 5405888.938084989, 3514365.914632536 5405854.227588239, 3514353.246206732 5405868.852199149);[114]
114,0;['DEBW522AA0000025e', 'DEBW522AA0000024e', 'DEBW522AA0000024c'];Counter({'industry': 2, 'office and administration': 1});Counter({'1972-1990': 2, '1991-2010': 1});3,0;264937,0;32403,0;22055,0;13466,0;4219,0;445,0;15,0;1,0;3,0;975,0;6537,0;17792,0;30997,0;49,1;160,035;LINESTRING (3514436.539300913 5405921.543748296, 3514411.31303393 5405950.648397875, 3514337.482678108 5405887.027540914, 3514353.246206732 5405868.852199149);[113, 285, 286]
115,0;['DEBW522AA00016546'];Counter({'non-heated': 1});Counter({'After 2011': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;18,4;24,75;LINESTRING (3514278.127818298 5405698.259630052, 3514260.197495556 5405681.199568271);[41, 116]
116,0;['DEBW522AA00c14284'];Counter({'residential': 1});Counter({'After 2011': 1});1,0;6640,0;1525,0;1034,0;624,0;156,0;6,0;0,0;0,0;0,0;16,0;285,0;923,0;1489,0;26,4;35,989;LINESTRING (3514237.098497971 5405708.797986632, 3514260.197495556 5405681.199568271);[41, 115, 126, 127]
119,0;['DEBW522AA0001310b', 'DEBW522AA0001310c', 'DEBW522AA00013107', 'DEBW522AA0000a65f'];Counter({'industry': 2, 'residential': 1, 'education': 1});Counter({'1949-1971': 3, '1972-1990': 1});4,0;64694,0;9341,0;6604,0;4122,0;890,0;29,0;0,0;0,0;0,0;107,0;1955,0;5819,0;9076,0;30,9;36,694;LINESTRING (3514486.653925898 5405740.907005315, 3514493.929850455 5405737.54509559, 3514508.633350224 5405723.315277637, 3514514.541275737 5405717.603412643);[123, 261]
120,0;['DEBW522AA00c5d56f'];Counter({'residential': 1});Counter({'Before 1948': 1});1,0;45571,0;9125,0;6254,0;3789,0;877,0;51,0;0,0;0,0;0,0;139,0;1932,0;5705,0;9006,0;12,1;33,573;LINESTRING (3514701.354558892 5406012.062671794, 3514676.453047046 5405989.545036934);[394, 374, 121, 122]
121,0;['DEBW522AA00c5d55e', 'DEBW522AA0000d606', 'DEBW522AA000323b7', 'DEBW522AA000323b8'];Counter({'industry': 2, 'residential': 1, 'retail': 1});Counter({'1949-1971': 2, '1991-2010': 2});4,0;101842,0;7640,0;4160,0;1716,0;392,0;36,0;1,0;0,0;0,0;79,0;619,0;2865,0;7264,0;81,3;75,961;LINESTRING (3514696.657398238 5406066.241200648, 3514672.494973361 5406044.971023588, 3514698.274042505 5406015.568731543, 3514701.354558892 5406012.062671794);[120, 122]
122,0;['DEBW522AA0002ad44', 'DEBW522AA0000d605', 'DEBW522AA0000d607'];Counter({'retail': 2, 'industry': 1});Counter({'1991-2010': 3});3,0;1239670,0;90948,0;68826,0;49236,0;16973,0;1392,0;29,0;3,0;5,0;2544,0;21779,0;57220,0;86993,0;30,9;70,173;LINESTRING (3514752.90632679 5406059.67173536, 3514701.354558892 5406012.062671794);[366, 246, 503, 120, 121]
124,0;['DEBW522AA0000a66a', 'DEBW522AA0001188c', 'DEBW522AA0001ca87'];Counter({'residential': 2, 'non-heated': 1});Counter({'1949-1971': 2, '1972-1990': 1});3,0;79539,0;14581,0;10004,0;5866,0;1087,0;36,0;0,0;0,0;0,0;127,0;2801,0;8989,0;14391,0;35,8;52,667;LINESTRING (3514490.755811263 5405748.824340257, 3514486.84255094 5405753.262500118, 3514476.392514777 5405765.101275532, 3514483.958626356 5405771.737537843, 3514494.327608879 5405759.987532347, 3514497.783946033 5405756.070868142);[370, 123, 125]
126,0;['DEBW522AA00016547'];Counter({'retail': 1});Counter({'After 2011': 1});1,0;527796,0;41853,0;32470,0;24325,0;9573,0;1078,0;28,0;3,0;6,0;1844,0;11693,0;27334,0;39943,0;26,6;22,997;LINESTRING (3514253.421745569 5405724.997612189, 3514237.098497971 5405708.797986632);[116, 127]
129,0;['DEBW522AA00c60dcf', 'DEBW522AA00016cd1', 'DEBW522AA0000b3e4', 'DEBW522AA0000b3e6'];Counter({'residential': 3, 'non-heated': 1});Counter({'1972-1990': 3, '1949-1971': 1});4,0;166260,0;28089,0;19378,0;11803,0;2476,0;91,0;0,0;0,0;0,0;269,0;5395,0;17272,0;27739,0;75,7;78,86;LINESTRING (3514567.787602732 5405787.834446876, 3514537.223783528 5405789.1342636, 3514523.984042359 5405791.435363539, 3514511.656382998 5405796.229868807, 3514502.810103017 5405801.645017849, 3514500.137776056 5405803.58423127, 3514497.583562803 5405805.312458845, 3514493.462116262 5405807.859571713);[128, 130, 398, 281, 154]
131,0;['DEBW522AA0000605f', 'DEBW522AA0000605c'];Counter({'non-heated': 1, 'residential': 1});Counter({'1949-1971': 1, 'After 2011': 1});2,0;973162,0;108062,0;81763,0;57369,0;16069,0;324,0;1,0;0,0;0,0;845,0;21396,0;66417,0;102700,0;18,9;63,025;LINESTRING (3514238.638309937 5405791.394712596, 3514239.477015549 5405782.277930503, 3514211.333102586 5405753.559990998, 3514201.348558642 5405744.237919726);[298, 132, 127]
132,0;['DEBW522AA0000605d'];Counter({'retail': 1});Counter({'After 2011': 1});1,0;2230377,0;170574,0;129987,0;95154,0;35325,0;3589,0;88,0;8,0;17,0;6052,0;43917,0;108698,0;163094,0;27,6;52,196;LINESTRING (3514161.650004175 5405710.875996925, 3514180.959097662 5405723.246320897, 3514201.348558642 5405744.237919726);[131, 421, 163, 127]
134,0;['DEBW522AA000302c6', 'DEBW522AA00017b68', 'DEBW522AA00023b45', 'DEBW522AA0000fca8'];Counter({'residential': 4});Counter({'Before 1948': 3, '1949-1971': 1});4,0;25235,0;4616,0;3285,0;1984,0;372,0;12,0;0,0;0,0;0,0;48,0;990,0;2983,0;4533,0;53,2;50,388;LINESTRING (3515775.261879639 5405735.168932869, 3515781.715048588 5405732.006554903, 3515788.52239926 5405728.322509911, 3515795.163095959 5405723.803957173, 3515804.725642493 5405715.023307851, 3515814.609128112 5405704.486518217);[133, 135, 392, 314]
135,0;['DEBW522AA0001d1c9', 'DEBW522AA0001a219', 'DEBW522AA0002c20d', 'DEBW522AA0002a855', 'DEBW522AA0002bf14', 'DEBW522AA00027e11', 'DEBW522AA00013ee2', 'DEBW522AA00043613', 'DEBW522AA00028219', 'DEBW522AA00021154', 'DEBW522AA00004a0e', 'DEBW522AA000391fe', 'DEBW522AA00030907', 'DEBW522AA0003354a', 'DEBW522AA00031b53', 'DEBW522AA00001910', 'DEBW522AA0001adba', 'DEBW522AA000391a2', 'DEBW522AA0002bd35', 'DEBW522AA0000653e', 'DEBW522AA0003eab8', 'DEBW522AA0003014e', 'DEBW522AA0001f624', 'DEBW522AA0002f89c', 'DEBW522AA00041402', 'DEBW522AA00033ea3', 'DEBW522AA00026e38', 'DEBW522AA0003a92a', 'DEBW522AA00026193', 'DEBW522AA000099c6'];Counter({'residential': 30});Counter({'Before 1948': 15, '1972-1990': 9, '1949-1971': 5, '1991-2010': 1});30,0;210861,0;39017,0;26914,0;15860,0;2980,0;101,0;0,0;0,0;0,0;390,0;7906,0;24774,0;38359,0;679,6;150,516;LINESTRING (3515626.915501251 5405722.922017627, 3515646.662904753 5405724.489381747, 3515663.392325158 5405727.938908584, 3515702.703001646 5405736.466956321, 3515721.196567915 5405739.676933322, 3515735.279819872 5405740.772818378, 3515751.366874208 5405740.039451918, 3515765.1439428 5405737.642675052, 3515775.261879639 5405735.168932869);[68, 357, 133, 134, 428]
137,0;['DEBW522AA0001585f'];Counter({'education': 1});Counter({'After 2011': 1});1,0;570277,0;76812,0;56543,0;39347,0;12231,0;1008,0;34,0;5,0;10,0;2538,0;21195,0;50571,0;74821,0;29,4;78,83;LINESTRING (3514519.164949497 5405853.598306382, 3514492.78781728 5405830.01011014, 3514489.774894718 5405827.255548043, 3514460.457842839 5405800.990978721);[227, 136, 138, 281]
140,0;['DEBW522AA000355d5', 'DEBW522AA00004950', 'DEBW522AA00023cdb', 'DEBW522AA00008c75', 'DEBW522AA00002c41', 'DEBW522AA00026d56', 'DEBW522AA0001d7fe', 'DEBW522AA00017193', 'DEBW522AA00036439', 'DEBW522AA000384f9', 'DEBW522AA00038cfe', 'DEBW522AA0000fd43'];Counter({'residential': 12});Counter({'1972-1990': 12});12,0;351846,0;65035,0;44744,0;27424,0;6285,0;285,0;0,0;0,0;0,0;773,0;13146,0;40448,0;64174,0;436,8;209,724;LINESTRING (3515316.217529558 5405565.387993678, 3515312.229868192 5405564.476355607, 3515299.906992147 5405561.67375485, 3515270.568093161 5405555.155109008, 3515127.113706687 5405522.383863632, 3515128.049744482 5405515.880819255, 3515129.367609127 5405506.754336191);[8, 139, 12, 498]
141,0;['DEBW522AA000070ac', 'DEBW522AA000070ad', 'DEBW522AA00022ec5', 'DEBW522AA00029395', 'DEBW522AA00042be9', 'DEBW522AA00000a95', 'DEBW522AA00039a7d', 'DEBW522AA00039a80', 'DEBW522AA000443ef', 'DEBW522AA000349f2'];Counter({'residential': 6, 'industry': 3, 'hall': 1});Counter({'1972-1990': 7, '1949-1971': 2, '1991-2010': 1});10,0;429822,0;67564,0;46976,0;30690,0;9391,0;953,0;27,0;3,0;7,0;2387,0;17343,0;42814,0;66540,0;344,7;38,413;LINESTRING (3514771.577792884 5405849.440864366, 3514809.867207733 5405852.52196862);[301, 300]
142,0;['DEBW522AA00004540', 'DEBW522AA00029425', 'DEBW522AA00029423', 'DEBW522AA000328d9', 'DEBW522AA0001c32d', 'DEBW522AA0003d9dd', 'DEBW522AA0001f1a5', 'DEBW522AA0001d045', 'DEBW522AA0000208e', 'DEBW522AA0000208f', 'DEBW522AA00007b81', 'DEBW522AA00007b80', 'DEBW522AA0001c5f7', 'DEBW522AA0001c5f8', 'DEBW522AA00017f3a', 'DEBW522AA00017f3b', 'DEBW522AA0001c1e8', 'DEBW522AA0000ae64'];Counter({'residential': 12, 'non-heated': 6});Counter({'1949-1971': 10, '1991-2010': 5, '1972-1990': 2, 'After 2011': 1});18,0;539072,0;95101,0;65845,0;40786,0;9090,0;336,0;0,0;0,0;0,0;959,0;18566,0;58546,0;93599,0;309,4;145,405;LINESTRING (3514428.206203833 5405609.500005567, 3514283.040379922 5405601.166891429);[143, 144, 145, 151, 152]
143,0;['DEBW522AA0000038e', 'DEBW522AA0000780c', 'DEBW522AA0000b4c8', 'DEBW522AA0000b4c7'];Counter({'residential': 4});Counter({'1949-1971': 3, '1991-2010': 1});4,0;212670,0;38546,0;26936,0;16341,0;3282,0;121,0;0,0;0,0;0,0;399,0;7862,0;24282,0;37958,0;54,1;93,211;LINESTRING (3514348.660230373 5405534.988426626, 3514289.691164659 5405595.145301084, 3514283.040379922 5405601.166891429);[144, 145, 142]
145,0;['DEBW522AA000332d8'];Counter({'residential': 1});Counter({'After 2011': 1});1,0;78566,0;14292,0;9790,0;5751,0;1075,0;36,0;0,0;0,0;0,0;121,0;2720,0;8844,0;14102,0;16,5;47,059;LINESTRING (3514246.624331413 5405571.360193623, 3514283.040379922 5405601.166891429);[387, 142, 143, 144, 147, 372]
150,0;['DEBW522AA00013bd7', 'DEBW522AA00006bef', 'DEBW522AA0000a605', 'DEBW522AA0000a604', 'DEBW522AA000014cd', 'DEBW522AA000014cf', 'DEBW522AA000014ce', 'DEBW522AA00027ec2', 'DEBW522A0140870c'];Counter({'residential': 3, 'non-heated': 2, 'education': 2, 'office and administration': 1, 'hall': 1});Counter({'After 2011': 4, '1949-1971': 3, '1991-2010': 1, '1972-1990': 1});9,0;180296,0;29454,0;21049,0;13768,0;3928,0;385,0;14,0;2,0;4,0;867,0;7127,0;18762,0;28751,0;85,3;79,7;LINESTRING (3514637.349195167 5406071.057322857, 3514659.139318202 5406046.848915403, 3514627.41255375 5406018.375283062, 3514624.069818315 5406015.364014128);[148, 149]
153,0;['DEBW522AA00037719'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;68643,0;11878,0;8201,0;4860,0;890,0;26,0;0,0;0,0;0,0;81,0;2156,0;7245,0;11712,0;8,5;24,473;LINESTRING (3514563.209698252 5405838.955201179, 3514546.930790977 5405857.228705967);[38, 207, 154, 414]
154,0;['DEBW522AA00016cd0', 'DEBW522AA0003b46a', 'DEBW522AA0000f936'];Counter({'residential': 3});Counter({'1972-1990': 3});3,0;167670,0;29601,0;20749,0;12723,0;2532,0;84,0;0,0;0,0;0,0;289,0;6058,0;18611,0;29033,0;37,5;72,791;LINESTRING (3514493.462116262 5405807.859571713, 3514505.591926698 5405819.934498074, 3514546.930790977 5405857.228705967);[129, 38, 281, 398, 153]
156,0;['DEBW522AA00041501', 'DEBW522AA00006b63', 'DEBW522AA00014fc6'];Counter({'residential': 3});Counter({'Before 1948': 1, '1949-1971': 1, 'After 2011': 1});3,0;168355,0;29640,0;20941,0;13100,0;2835,0;110,0;1,0;0,0;0,0;359,0;6337,0;18710,0;29034,0;33,8;59,089;LINESTRING (3515080.775498763 5406352.436529479, 3515051.469830224 5406326.724875933, 3515048.128221055 5406323.44645784, 3515037.136144073 5406312.630010982);[262, 54, 189, 155, 157]
158,0;['DEBW522AA000102ed', 'DEBW522AA0001870f', 'DEBW522AA0000be1a', 'DEBW522AA0000be18', 'DEBW522AA0000532d', 'DEBW522AA0000532c', 'DEBW522AA0003dd82', 'DEBW522AA0003dd81', 'DEBW522AA0003dd80'];Counter({'residential': 5, 'non-heated': 2, 'retail': 1, 'industry': 1});Counter({'1991-2010': 3, '1949-1971': 3, '1972-1990': 2, 'Before 1948': 1});9,0;354795,0;53442,0;37204,0;22933,0;4925,0;193,0;1,0;0,0;0,0;564,0;10683,0;32825,0;52248,0;151,9;91,618;LINESTRING (3514707.054458801 5405875.10484296, 3514638.693865081 5405814.107670459);[160, 236, 300, 438, 159]
159,0;['DEBW522AA0002d0ec', 'DEBW522AA00031991'];Counter({'residential': 2});Counter({'Before 1948': 1, '1972-1990': 1});2,0;94255,0;16330,0;11231,0;6892,0;1425,0;49,0;0,0;0,0;0,0;144,0;3140,0;9961,0;16044,0;28,3;55,066;LINESTRING (3514638.693865081 5405814.107670459, 3514621.465251814 5405804.688135815, 3514591.010628369 5405786.582457589);[160, 130, 313, 158]
160,0;['DEBW522AA0003b8a7', 'DEBW522AA000074b0', 'DEBW522AA0002b26d', 'DEBW522AA00039a5a', 'DEBW522AA0002bcb5'];Counter({'residential': 5});Counter({'1949-1971': 2, '1972-1990': 2, 'After 2011': 1});5,0;249029,0;45454,0;31481,0;18730,0;3540,0;121,0;0,0;0,0;0,0;426,0;9034,0;28395,0;44722,0;63,5;68,642;LINESTRING (3514592.915421868 5405865.254684937, 3514638.693865081 5405814.107670459);[414, 36, 158, 159]
165,0;['DEBW522AA0000cad5', 'DEBW522AA0000cad4', 'DEBW522AA0000cad3', 'DEBW522AA0003cf9b', 'DEBW522AA0003cf99', 'DEBW522AA0003cf97'];Counter({'event location': 3, 'residential': 2, 'non-heated': 1});Counter({'1949-1971': 6});6,0;560719,0;110146,0;85983,0;68522,0;33718,0;8320,0;511,0;44,0;105,0;12912,0;42700,0;77685,0;106890,0;53,6;83,899;LINESTRING (3514428.443606128 5405565.640903681, 3514450.620502662 5405614.406176382, 3514454.319942746 5405615.994816438, 3514459.668894219 5405616.219866321, 3514466.15510229 5405614.257086621, 3514468.637855172 5405611.772458899, 3514470.378640699 5405609.208077709, 3514477.461812035 5405606.568490339);[185, 186]
167,0;['DEBW522AA0001c421'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;6279,0;1448,0;995,0;614,0;162,0;4,0;0,0;0,0;0,0;11,0;255,0;863,0;1422,0;20,9;28,562;LINESTRING (3515923.810095958 5406301.217086923, 3515933.856558274 5406305.482542462, 3515938.331229406 5406310.621854848, 3515945.125648725 5406319.059466491);[166, 168, 375, 379]
171,0;['DEBW522AA0003df81', 'DEBW522AA0003df83', 'DEBW522AA0003df82', 'DEBW522AA0003df7f', 'DEBW522AA00c50eb4', 'DEBW522AA0001350b', 'DEBW522AA0000f09b', 'DEBW522AA00c50e9f', 'DEBW522AA00036335'];Counter({'residential': 6, 'non-heated': 1, 'industry': 1, 'hall': 1});Counter({'1972-1990': 5, '1991-2010': 2, '1949-1971': 1, 'Before 1948': 1});9,0;571002,0;95156,0;67556,0;43536,0;10005,0;335,0;3,0;0,0;0,0;1000,0;19681,0;59422,0;92933,0;225,2;94,516;LINESTRING (3515143.46544511 5405710.121798154, 3515159.963275033 5405709.654733467, 3515170.140942969 5405714.920015307, 3515191.629287139 5405719.470800852, 3515199.999027885 5405722.106781987, 3515207.669322747 5405727.96586445, 3515209.176628908 5405733.052070472, 3515198.62462831 5405741.252783716, 3515198.735946449 5405743.566175216, 3515198.815317998 5405746.824733616, 3515198.927717774 5405748.737785493);[170, 172, 173]
173,0;['DEBW522AA00023672', 'DEBW522AA00023674', 'DEBW522AA0003e266', 'DEBW522AA0003c23d', 'DEBW522AA00022950', 'DEBW522AA0002294e'];Counter({'residential': 5, 'retail': 1});Counter({'1972-1990': 5, '1949-1971': 1});6,0;197082,0;35005,0;24077,0;14762,0;3107,0;130,0;1,0;0,0;0,0;371,0;6862,0;21614,0;34494,0;98,4;94,131;LINESTRING (3515292.413918784 5405744.632145028, 3515281.720012272 5405745.526063481, 3515252.041211864 5405748.181101277, 3515238.570063266 5405748.956358203, 3515215.265504993 5405750.350008809, 3515204.263997135 5405750.876261579, 3515198.927717774 5405748.737785493);[322, 420, 170, 171, 172, 177]
178,0;['DEBW522AA00002b12', 'DEBW522AA000279ac', 'DEBW522AA00007610', 'DEBW522AA00041fe2', 'DEBW522AA00032dcc', 'DEBW522AA00011c7b', 'DEBW522AA00004273', 'DEBW522AA00027112', 'DEBW522AA0002ef18', 'DEBW522AA000153b8', 'DEBW522AA000068e9'];Counter({'residential': 11});Counter({'1972-1990': 7, '1991-2010': 2, '1949-1971': 2});11,0;223298,0;39824,0;27609,0;17301,0;4142,0;164,0;0,0;0,0;0,0;470,0;8009,0;24676,0;39238,0;256,3;98,213;LINESTRING (3515456.866988848 5405957.530672511, 3515360.724162043 5405937.472271624);[50, 180, 179, 220]
181,0;['DEBW522AA0002247c', 'DEBW522AA00022480'];Counter({'residential': 2});Counter({'1972-1990': 2});2,0;15492,0;3481,0;2358,0;1402,0;345,0;16,0;0,0;0,0;0,0;40,0;647,0;2110,0;3436,0;324,9;333,509;LINESTRING (3515753.758020547 5406633.222644592, 3515765.2528511 5406615.99565147, 3515777.333295169 5406594.322067842, 3515783.203635839 5406583.818427951, 3515807.091834878 5406540.904303031, 3515828.226818514 5406505.255424742, 3515864.061393369 5406446.995368256, 3515904.150482028 5406383.643211219, 3515926.572156345 5406348.09843582);[168]
184,0;['DEBW522AA00016b04', 'DEBW522AA00016b05', 'DEBW522AA00016b06', 'DEBW522AA00016b07', 'DEBW522AA00016b01', 'DEBW522AA00016b02', 'DEBW522AA00016b03', 'DEBW522AA0000c2b2', 'DEBW522AA0000c2b3', 'DEBW522AA0000c2b0', 'DEBW522AA0000c2b1', 'DEBW522AA0000c2b5', 'DEBW522AA0000c2ae', 'DEBW522AA0000c2af', 'DEBW522AA0000c2ad'];Counter({'industry': 15});Counter({'1972-1990': 6, '1991-2010': 5, '1949-1971': 4});15,0;1074116,0;29440,0;13059,0;2755,0;137,0;0,0;0,0;0,0;0,0;0,0;257,0;5876,0;25660,0;461,3;274,674;LINESTRING (3515914.988801219 5405832.924167667, 3515911.584998152 5405846.503943577, 3515893.027940965 5405920.514856334, 3515907.251146852 5405960.27803125, 3515992.569924077 5405982.383449986, 3516008.549064632 5405996.096230236, 3516040.407058767 5406004.505347908);[183]
186,0;['DEBW522AA0000cad6', 'DEBW522AA0003cf98'];Counter({'residential': 1, 'industry': 1});Counter({'1949-1971': 2});2,0;10028,0;1994,0;1336,0;762,0;161,0;9,0;0,0;0,0;0,0;24,0;366,0;1197,0;1975,0;10,8;67,718;LINESTRING (3514473.289361209 5405591.756203254, 3514461.903523852 5405567.328263244, 3514451.822040846 5405555.72577162, 3514441.69189007 5405560.203584225, 3514428.443606128 5405565.640903681);[185, 165]
188,0;['DEBW522AA0001b99d', 'DEBW522AA000333da', 'DEBW522AA00016d18', 'DEBW522AA00016d19', 'DEBW522AA00016072', 'DEBW522AA0002ba3c', 'DEBW522AA0002ba3b', 'DEBW522AA0002fbd7', 'DEBW522AA00018026', 'DEBW522AA0001936a'];Counter({'residential': 5, 'non-heated': 2, 'restaurant': 1, 'health care': 1, 'hall': 1});Counter({'1949-1971': 7, '1991-2010': 2, '1972-1990': 1});10,0;275196,0;39568,0;28047,0;17851,0;4632,0;411,0;12,0;1,0;2,0;729,0;8322,0;24693,0;38647,0;235,4;200,73;LINESTRING (3515319.83009553 5406470.00573475, 3515315.90523235 5406465.157553782, 3515313.115074609 5406461.813755128, 3515278.644349188 5406420.473443388, 3515261.419770638 5406399.820079431, 3515250.033176438 5406385.677067333, 3515236.498455271 5406372.517989415, 3515228.448739122 5406366.023951851, 3515219.609148249 5406360.895624592, 3515204.095171191 5406354.170113809, 3515178.776841838 5406345.839017881, 3515170.549810522 5406345.116196047);[462, 211, 189, 190, 191]
189,0;['DEBW522AA00036642', 'DEBW522AA0003a794', 'DEBW522AA0002bb3a', 'DEBW522AA00008a7b', 'DEBW522AA00027d11', 'DEBW522AA000064f2', 'DEBW522AA00037f6a'];Counter({'residential': 7});Counter({'1991-2010': 3, 'Before 1948': 2, '1949-1971': 1, '1972-1990': 1});7,0;260157,0;46186,0;32267,0;19939,0;4226,0;166,0;1,0;0,0;0,0;503,0;9540,0;28863,0;45297,0;154,7;118,9;LINESTRING (3515170.549810522 5406345.116196047, 3515166.113657514 5406352.688493329, 3515145.467630537 5406377.287249528, 3515138.054710512 5406382.571814239, 3515132.201159997 5406384.479914901, 3515124.596000033 5406384.75969275, 3515118.369640483 5406383.230527277, 3515112.845206942 5406380.23533281, 3515108.945038691 5406377.044340343, 3515080.775498763 5406352.436529479);[262, 156, 188, 190, 191]
191,0;['DEBW522AA0003433d', 'DEBW522AA000115ff', 'DEBW522AA00010995', 'DEBW522AA00010994', 'DEBW522AA0002ee6e'];Counter({'residential': 4, 'hall': 1});Counter({'Before 1948': 2, '1949-1971': 2, '1991-2010': 1});5,0;167498,0;30231,0;21246,0;13455,0;3214,0;157,0;1,0;0,0;0,0;425,0;6557,0;19068,0;29707,0;63,2;126,761;LINESTRING (3515052.667366845 5406299.304597401, 3515063.662886625 5406303.348616839, 3515076.192515761 5406307.941685589, 3515163.091778412 5406339.858241878, 3515170.549810522 5406345.116196047);[97, 443, 188, 189, 190]
192,0;['DEBW522AA0002f237'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;56804,0;11126,0;7364,0;4105,0;737,0;31,0;0,0;0,0;0,0;98,0;2007,0;6762,0;11013,0;8,2;15,262;LINESTRING (3514196.103233215 5405606.885065685, 3514206.331228721 5405595.55675833);[193, 486]
197,0;['DEBW522AA007a9017', 'DEBW522AA0003f3a7'];Counter({'residential': 2});Counter({'After 2011': 2});2,0;120945,0;22020,0;15328,0;9037,0;1644,0;51,0;0,0;0,0;0,0;190,0;4355,0;13730,0;21633,0;44,0;80,771;LINESTRING (3514232.952402223 5405590.397412704, 3514229.202445204 5405594.224530868, 3514225.297702493 5405598.240310273, 3514223.168554098 5405600.41456291, 3514216.626890542 5405606.903573789, 3514186.895567987 5405639.055998933, 3514177.713847826 5405649.308281202);[384, 385, 194, 196, 349]
198,0;['DEBW522AA0000c2ac'];Counter({'industry': 1});Counter({'Before 1948': 1});1,0;97220,0;6914,0;2917,0;425,0;4,0;0,0;0,0;0,0;0,0;0,0;15,0;1486,0;6538,0;67,4;57,518;LINESTRING (3515785.730631321 5405801.432830905, 3515790.965946314 5405792.328623287, 3515794.600634321 5405782.786215771, 3515793.553460652 5405771.039882572, 3515789.734495775 5405762.466260386, 3515787.213446962 5405757.466011275, 3515784.874377596 5405753.077909474, 3515782.388375025 5405748.678275315);[228, 133, 199, 200, 229]
200,0;['DEBW522AA0001987e'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;61174,0;11522,0;7980,0;4603,0;809,0;27,0;0,0;0,0;0,0;105,0;2280,0;7285,0;11367,0;82,5;92,348;LINESTRING (3515848.750875685 5405685.444115918, 3515827.993874496 5405708.371948937, 3515809.013271023 5405729.403228806, 3515792.793676355 5405743.302886813, 3515787.325088874 5405746.490259865, 3515782.388375025 5405748.678275315);[133, 198, 199, 407]
204,0;['DEBW522AA012c25b5'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;344,0;65,0;45,0;27,0;5,0;0,0;0,0;0,0;0,0;1,0;14,0;42,0;63,0;7,2;16,847;LINESTRING (3515690.986549996 5406364.438864949, 3515691.733780239 5406359.959333176, 3515693.246977991 5406357.450295194, 3515695.874815648 5406355.711696436, 3515699.072448484 5406355.153479494, 3515702.047708188 5406355.295243268);[101, 102, 203, 206]
205,0;['DEBW522AA0001351b', 'DEBW522AA0001351c'];Counter({'hall': 2});Counter({'1972-1990': 2});2,0;10638,0;2416,0;1725,0;1182,0;372,0;37,0;1,0;0,0;0,0;101,0;745,0;1655,0;2404,0;22,7;6,744;LINESTRING (3515244.992795076 5405721.661519114, 3515244.897306943 5405718.93670642, 3515244.753878631 5405714.92177095);[501, 499, 500]
206,0;['DEBW522AA012c25a1', 'DEBW522AA00023d08'];Counter({'residential': 2});Counter({'1991-2010': 2});2,0;132207,0;22193,0;15880,0;10368,0;2524,0;91,0;0,0;0,0;0,0;274,0;4919,0;14006,0;21639,0;30,0;30,97;LINESTRING (3515663.936943507 5406350.140068986, 3515681.977797277 5406362.156216939, 3515690.986549996 5406364.438864949);[101, 204, 306, 307]
207,0;['DEBW522AA000270cc', 'DEBW522AA000270cd', 'DEBW522AA000270cf', 'DEBW522AA0002d0ed', 'DEBW522AA00c60dbe', 'DEBW522AA00016cd2'];Counter({'non-heated': 4, 'retail': 1, 'residential': 1});Counter({'1991-2010': 3, '1972-1990': 2, 'Before 1948': 1});6,0;236169,0;21780,0;15690,0;10369,0;2950,0;230,0;6,0;1,0;1,0;505,0;4955,0;13648,0;21143,0;72,7;30,966;LINESTRING (3514563.209698252 5405838.955201179, 3514583.807202523 5405815.833236878);[153, 414]
208,0;['DEBW522AA00020324', 'DEBW522AA00022a4c', 'DEBW522AA00022a4d', 'DEBW522AA00001b66', 'DEBW522AA00001b67', 'DEBW522AA00001b68', 'DEBW522AA00001b69'];Counter({'residential': 5, 'office and administration': 1, 'hall': 1});Counter({'1991-2010': 4, '1949-1971': 2, 'Before 1948': 1});7,0;3371031,0;531751,0;433792,0;379448,0;241761,0;129272,0;60198,0;37903,0;46220,0;141717,0;258225,0;395036,0;513939,0;259,8;312,033;LINESTRING (3515837.643534136 5406279.143652192, 3515839.430001304 5406273.555005966, 3515847.304248847 5406253.471093028, 3515852.738076237 5406238.996228185, 3515862.088290688 5406211.443430619, 3515872.237779562 5406192.300112983, 3515901.843029992 5406144.787496743, 3515905.45078252 5406139.559888774, 3515911.68817101 5406134.617747244, 3516032.154966877 5406048.50840727);[329, 183, 71]
209,0;['DEBW522AA000346e5', 'DEBW522AA000346e4', 'DEBW522AA0000f5ec', 'DEBW522AA00039cda', 'DEBW522AA00013c80', 'DEBW522AA0002ef3c', 'DEBW522AA0002ef3d', 'DEBW522AA0003fc19', 'DEBW522AA000049ab', 'DEBW522AA00003b36', 'DEBW522AA00007332', 'DEBW522AA00014a41', 'DEBW522AA000216e1', 'DEBW522AA000216de', 'DEBW522AA000216df', 'DEBW522AA000277c1', 'DEBW522AA000277c2'];Counter({'residential': 15, 'hall': 1, 'non-heated': 1});Counter({'1949-1971': 10, '1972-1990': 3, 'Before 1948': 2, '1991-2010': 2});17,0;277753,0;54309,0;37123,0;22480,0;5244,0;282,0;0,0;0,0;0,0;733,0;10984,0;33757,0;53711,0;277,4;73,943;LINESTRING (3515480.140282648 5406500.993623404, 3515408.21506832 5406483.836894202);[238, 239, 240, 210, 211, 212]
210,0;['DEBW522AA00010f9c', 'DEBW522AA00031132'];Counter({'residential': 2});Counter({'1991-2010': 2});2,0;45400,0;8856,0;5958,0;3527,0;780,0;40,0;0,0;0,0;0,0;109,0;1742,0;5442,0;8774,0;24,1;36,599;LINESTRING (3515400.343912555 5406519.579295299, 3515408.21506832 5406483.836894202);[359, 360, 209, 211, 212]
211,0;['DEBW522AA0002ab9c', 'DEBW522AA0001fca0', 'DEBW522AA0003b629', 'DEBW522AA00028346', 'DEBW522AA0000c358', 'DEBW522AA000051b2'];Counter({'residential': 6});Counter({'1991-2010': 5, '1949-1971': 1});6,0;305377,0;52482,0;37012,0;24015,0;6268,0;298,0;1,0;0,0;0,0;688,0;11058,0;32578,0;51481,0;87,5;91,547;LINESTRING (3515319.83009553 5406470.00573475, 3515329.077846146 5406465.460378719, 3515358.528574749 5406472.302170489, 3515408.21506832 5406483.836894202);[462, 209, 210, 212, 188]
212,0;['DEBW522AA00042afa', 'DEBW522AA00042afb', 'DEBW522AA00009fe0', 'DEBW522AA0003533e', 'DEBW522AA00036399', 'DEBW522AA00002d2c', 'DEBW522AA0003639a', 'DEBW522AA00003c55', 'DEBW522AA0003983f', 'DEBW522AA0002af84', 'DEBW522AA000247ec', 'DEBW522AA0001cf24', 'DEBW522AA00006e1e', 'DEBW522AA00006e1c', 'DEBW522AA00006e1d', 'DEBW522AA00039c95'];Counter({'residential': 13, 'non-heated': 2, 'hall': 1});Counter({'1949-1971': 8, '1991-2010': 4, 'Before 1948': 3, '1972-1990': 1});16,0;262937,0;47702,0;33289,0;20542,0;4578,0;210,0;1,0;0,0;0,0;601,0;9970,0;30000,0;46826,0;322,6;92,767;LINESTRING (3515429.996943924 5406393.663797638, 3515415.715155298 5406452.163642145, 3515408.21506832 5406483.836894202);[35, 39, 209, 210, 211]
213,0;['DEBW522AA000124f5', 'DEBW522AA0001d044', 'DEBW522AA0001d047'];Counter({'residential': 2, 'retail': 1});Counter({'1972-1990': 2, '1991-2010': 1});3,0;319617,0;35204,0;25451,0;17099,0;4938,0;358,0;8,0;1,0;2,0;800,0;8083,0;22140,0;34174,0;37,2;22,192;LINESTRING (3514338.711455605 5405670.145245355, 3514340.09633486 5405668.80318374, 3514353.508785709 5405653.613294042);[337, 377]
220,0;['DEBW522AA0001f48b', 'DEBW522AA0002a57c', 'DEBW522AA0000ec46', 'DEBW522AA0003e21f'];Counter({'residential': 3, 'office and administration': 1});Counter({'1972-1990': 4});4,0;198092,0;35979,0;25602,0;16797,0;4919,0;456,0;13,0;1,0;3,0;907,0;8319,0;22823,0;35202,0;54,4;60,291;LINESTRING (3515456.866988848 5405957.530672511, 3515461.970935973 5405934.491643699, 3515453.919138311 5405923.271013454, 3515431.461416581 5405918.883360896);[178, 50]
222,0;['DEBW522AA0135497d', 'DEBW522AA0001b622', 'DEBW522AA0001b627', 'DEBW522AA0002c32e', 'DEBW522AA0002f096', 'DEBW522AA0002f094', 'DEBW522AA0003584f', 'DEBW522AA0001f0ce', 'DEBW522AA000327e4'];Counter({'residential': 7, 'non-heated': 2});Counter({'1972-1990': 5, 'Before 1948': 2, '1949-1971': 2});9,0;290455,0;51939,0;36042,0;21559,0;3988,0;123,0;0,0;0,0;0,0;440,0;10201,0;32301,0;51051,0;206,1;55,1;LINESTRING (3514788.910048097 5405640.418741201, 3514807.026067229 5405692.455348196);[446, 447]
229,0;['DEBW522AA00035e19', 'DEBW522AA0001828d', 'DEBW522AA0003e30f', 'DEBW522AA0003c529', 'DEBW522AA00020acd', 'DEBW522AA00036f34', 'DEBW522AA00004282', 'DEBW522AA00015c97'];Counter({'residential': 8});Counter({'1991-2010': 8});8,0;229589,0;42616,0;29978,0;18742,0;4128,0;165,0;0,0;0,0;0,0;609,0;9728,0;27453,0;41600,0;94,4;139,497;LINESTRING (3515822.093859443 5405935.383092874, 3515815.488832381 5405885.499560766, 3515788.471767433 5405809.169374337, 3515785.730631321 5405801.432830905);[228, 198, 110, 496]
230,0;['DEBW522AA00023e40', 'DEBW522AA18228c0', 'DEBW522AA00c4ee47'];Counter({'education': 1, 'hall': 1, 'residential': 1});Counter({'1972-1990': 2, '1949-1971': 1});3,0;589970,0;89051,0;65243,0;44176,0;12978,0;932,0;17,0;1,0;3,0;2305,0;23030,0;57915,0;87092,0;79,9;109,035;LINESTRING (3515631.25218048 5405735.678324363, 3515636.060400624 5405758.544601351, 3515642.824648612 5405783.518128638, 3515658.489209744 5405820.993814003, 3515669.114017849 5405836.959303507);[356, 199, 104, 232, 231, 344]
231,0;['DEBW522AA0003cc24', 'DEBW522AA0003fc99', 'DEBW522AA18228cf'];Counter({'non-heated': 1, 'residential': 1, 'education': 1});Counter({'1972-1990': 2, '1949-1971': 1});3,0;161456,0;25080,0;18128,0;12206,0;3460,0;299,0;12,0;2,0;4,0;741,0;6602,0;16383,0;24674,0;51,9;58,218;LINESTRING (3515724.793040689 5405819.977969482, 3515675.461534639 5405834.73064202, 3515669.114017849 5405836.959303507);[228, 230, 104, 232, 233, 234]
232,0;['DEBW522AA0002f389', 'DEBW522AA0000b6f6', 'DEBW522AA0004423a', 'DEBW522AA0003b397', 'DEBW522AA00029119', 'DEBW522AA00019093', 'DEBW522AA0001c1b1'];Counter({'residential': 7});Counter({'1972-1990': 7});7,0;198233,0;36156,0;24877,0;14797,0;2716,0;80,0;0,0;0,0;0,0;332,0;7351,0;22788,0;35395,0;90,5;70,987;LINESTRING (3515697.236486564 5405902.13800032, 3515669.114017849 5405836.959303507);[230, 231, 104, 17, 470]
234,0;['DEBW522AA00023e8a', 'DEBW522AA0003a22d', 'DEBW522AA0001e13c', 'DEBW522AA000221db', 'DEBW522AA00042bf4', 'DEBW522AA0002e46e', 'DEBW522AA00024388', 'DEBW522AA00024b86', 'DEBW522AA000298ef', 'DEBW522AA00025607', 'DEBW522AA00026931', 'DEBW522AA0002af5f', 'DEBW522AA000416dc', 'DEBW522AA0000967d'];Counter({'residential': 14});Counter({'1949-1971': 14});14,0;410416,0;71433,0;49817,0;30208,0;5503,0;134,0;0,0;0,0;0,0;588,0;14571,0;45113,0;69631,0;187,1;128,526;LINESTRING (3515724.793040689 5405819.977969482, 3515757.617671085 5405898.248001459, 3515763.152651296 5405915.878615957, 3515765.271995329 5405940.961597498);[228, 231, 233, 112, 496, 474]
235,0;['DEBW522AA0002331a', 'DEBW522AA000366cf', 'DEBW522AA00031124', 'DEBW522AA00031122', 'DEBW522AA0002f8c2', 'DEBW522AA00021f10'];Counter({'residential': 6});Counter({'1972-1990': 4, '1991-2010': 1, '1949-1971': 1});6,0;162091,0;31597,0;21477,0;12608,0;2661,0;132,0;0,0;0,0;0,0;372,0;6254,0;19707,0;31292,0;159,0;62,77;LINESTRING (3515830.897703512 5405566.94793475, 3515859.829750657 5405576.782321868, 3515870.930221458 5405546.543309642);[254, 255]
236,0;['DEBW522AA000119c4', 'DEBW522AA000119c6', 'DEBW522AA000119c7', 'DEBW522AA0003e0c7', 'DEBW522AA0003e0c6', 'DEBW522AA00042370', 'DEBW522AA000158f8', 'DEBW522AA000158f7', 'DEBW522AA000158e6', 'DEBW522AA00031eeb', 'DEBW522AA0000249a', 'DEBW522AA00039a7e', 'DEBW522AA00039a7c', 'DEBW522AA00039a88', 'DEBW522AA00039a89', 'DEBW522AA00039a86', 'DEBW522AA00039a87', 'DEBW522AA00039a85', 'DEBW522AA00039a8a', 'DEBW522AA00039a8e', 'DEBW522AA00039a8b', 'DEBW522AA00039a91', 'DEBW522AA00042c5b', 'DEBW522AA00042c5a', 'DEBW522AA00c5d585', 'DEBW522AA000402ed', 'DEBW522AA00033ef5', 'DEBW522AA0004141e', 'DEBW522AA0002e5cc', 'DEBW522AA0002f4d0'];Counter({'residential': 16, 'industry': 10, 'non-heated': 2, 'office and administration': 2});Counter({'1972-1990': 11, 'Before 1948': 8, '1991-2010': 6, '1949-1971': 4, 'After 2011': 1});30,0;2302486,0;332817,0;242150,0;169302,0;61002,0;8347,0;294,0;22,0;49,0;14219,0;87575,0;209537,0;321086,0;955,1;156,767;LINESTRING (3514707.054458801 5405875.10484296, 3514822.873143579 5405980.754837738);[237, 300, 19, 438, 158]
237,0;['DEBW522AA00042772', 'DEBW522AA000408b2', 'DEBW522AA000408b1', 'DEBW522AA000408b4', 'DEBW522AA000408b3', 'DEBW522AA0001e20b', 'DEBW522AA000231c8', 'DEBW522AA00001f9d', 'DEBW522AA0000c904'];Counter({'retail': 4, 'residential': 4, 'industry': 1});Counter({'1972-1990': 8, '1949-1971': 1});9,0;520927,0;70524,0;50536,0;32193,0;7643,0;455,0;9,0;0,0;2,0;1148,0;15490,0;44457,0;68659,0;163,4;91,607;LINESTRING (3514762.433337968 5406049.588104979, 3514766.780648781 5406044.951105056, 3514768.446472398 5406042.953769874, 3514772.315407249 5406038.615773967, 3514822.873143579 5405980.754837738);[96, 236, 19, 246, 247]
238,0;['DEBW522AA0002ccff', 'DEBW522AA0002ccfe', 'DEBW522AA0002fb8a', 'DEBW522AA00013682', 'DEBW522AA00032324', 'DEBW522AA000447d5', 'DEBW522AA0001e44a'];Counter({'residential': 7});Counter({'1949-1971': 4, '1972-1990': 3});7,0;251421,0;46131,0;31766,0;19529,0;4478,0;203,0;0,0;0,0;0,0;539,0;9254,0;28552,0;45488,0;95,2;80,171;LINESTRING (3515558.457065435 5406518.135618098, 3515480.140282648 5406500.993623404);[239, 240, 209, 241, 242]
239,0;['DEBW522AA000049ac', 'DEBW522AA00013e7a', 'DEBW522AA00013e79', 'DEBW522AA0002910b'];Counter({'residential': 2, 'non-heated': 1, 'industry': 1});Counter({'1949-1971': 4});4,0;70584,0;12246,0;8486,0;5171,0;1161,0;47,0;0,0;0,0;0,0;125,0;2375,0;7513,0;12039,0;64,8;35,506;LINESTRING (3515488.456776671 5406466.475831361, 3515480.140282648 5406500.993623404);[489, 238, 240, 209, 509]
240,0;['DEBW522AA0003a0b9', 'DEBW522AA00026a81', 'DEBW522AA0002a8c5', 'DEBW522AA00036e02', 'DEBW522AA00030c31', 'DEBW522AA00022113', 'DEBW522AA00012029', 'DEBW522AA0002cd00', 'DEBW522AA00006d6d', 'DEBW522AA0003fec8', 'DEBW522AA00007c7e'];Counter({'residential': 11});Counter({'1949-1971': 9, '1972-1990': 2});11,0;324674,0;63417,0;43302,0;26183,0;6023,0;311,0;1,0;0,0;0,0;862,0;12987,0;39585,0;62624,0;158,6;91,451;LINESTRING (3515431.319296695 5406559.698617866, 3515467.046629191 5406554.814831385, 3515480.140282648 5406500.993623404);[209, 238, 239]
241,0;['DEBW522AA0000699b'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;38542,0;7691,0;5226,0;3044,0;626,0;30,0;0,0;0,0;0,0;93,0;1545,0;4835,0;7602,0;16,2;35,434;LINESTRING (3515567.287758925 5406483.819535716, 3515558.457065435 5406518.135618098);[488, 489, 238, 242]
242,0;['DEBW522AA00c3388b', 'DEBW522AA000145d5', 'DEBW522AA000145d4', 'DEBW522AA0001b3c5', 'DEBW522AA000398ab', 'DEBW522AA000043e6', 'DEBW522AA000043e5', 'DEBW522AA000043e7', 'DEBW522AA0003d419', 'DEBW522AA0003d41a', 'DEBW522AA00039f96', 'DEBW522AA00012cff', 'DEBW522AA0003442b', 'DEBW522AA00005fed', 'DEBW522AA0001ac07', 'DEBW522AA0001ac08', 'DEBW522AA00012eaa', 'DEBW522AA00013cf7', 'DEBW522AA0002e99d', 'DEBW522AA00012f47', 'DEBW522AA000254d1', 'DEBW522AA0002ed48', 'DEBW522AA0002ed38', 'DEBW522AA00040989', 'DEBW522AA00032915', 'DEBW522AA00022e7c', 'DEBW522AA00024c09', 'DEBW522AA000101b5', 'DEBW522AA000105df', 'DEBW522AA00022e7b', 'DEBW522AA00020c28'];Counter({'residential': 31});Counter({'1949-1971': 17, '1972-1990': 6, '1991-2010': 4, 'Before 1948': 3, 'After 2011': 1});31,0;848001,0;159894,0;111993,0;69814,0;16135,0;641,0;1,0;0,0;0,0;1944,0;32915,0;99673,0;157055,0;442,3;225,286;LINESTRING (3515383.978865559 5406630.807611369, 3515394.445204179 5406629.234912972, 3515453.259176019 5406599.192737154, 3515493.424402265 5406583.445340277, 3515506.633891491 5406578.266208709, 3515539.461646108 5406569.805153941, 3515546.49539335 5406566.188166168, 3515558.457065435 5406518.135618098);[483, 238, 241, 478]
243,0;['DEBW522AA00030adc', 'DEBW522AA00001ff3', 'DEBW522AA00013bd6', 'DEBW522AA000343f8', 'DEBW522AA000343f6', 'DEBW522AA00029d75', 'DEBW522AA00029d76', 'DEBW522AA000298c6', 'DEBW522AA000298c5', 'DEBW522AA000298c4', 'DEBW522AA00027ec1'];Counter({'residential': 5, 'non-heated': 4, 'office and administration': 2});Counter({'1949-1971': 7, '1972-1990': 4});11,0;91348,0;15955,0;11409,0;7479,0;2092,0;175,0;4,0;0,0;1,0;364,0;3611,0;10048,0;15540,0;84,3;39,03;LINESTRING (3514608.905746836 5406068.481165659, 3514638.531523807 5406093.89105025);[323, 324, 244, 245]
244,0;['DEBW522AA00006791', 'DEBW522AA00033051', 'DEBW522AA0003525a', 'DEBW522AA00012699', 'DEBW522AA00013bd8', 'DEBW522AA0002ca7a', 'DEBW522AA00020eac', 'DEBW522AA0002cb45', 'DEBW522AA0002cb44', 'DEBW522AA000130bc', 'DEBW522AA00011184', 'DEBW522AA0001118a', 'DEBW522AA0003a3e4', 'DEBW522AA0003a3e3', 'DEBW522AA0003a3e5'];Counter({'residential': 11, 'non-heated': 3, 'industry': 1});Counter({'1949-1971': 11, 'After 2011': 2, 'Before 1948': 1, '1972-1990': 1});15,0;149559,0;23632,0;16300,0;9856,0;1977,0;61,0;0,0;0,0;0,0;215,0;4596,0;14289,0;23046,0;154,8;61,476;LINESTRING (3514685.194695521 5406133.913616211, 3514638.531523807 5406093.89105025);[365, 366, 243, 245]
245,0;['DEBW522AA00001ff2', 'DEBW522AA0000f64b', 'DEBW522AA0002cb43'];Counter({'residential': 3});Counter({'1949-1971': 2, '1972-1990': 1});3,0;47087,0;8625,0;6060,0;3778,0;840,0;35,0;0,0;0,0;0,0;111,0;1874,0;5473,0;8477,0;25,1;31,315;LINESTRING (3514617.896942046 5406117.446427171, 3514638.531523807 5406093.89105025);[339, 243, 244, 340]
247,0;['DEBW522AA0000d3f4', 'DEBW522AA0002204c', 'DEBW522AA000120ab', 'DEBW522AA000120a9', 'DEBW522AA000377e4', 'DEBW522AA00024091', 'DEBW522AA00024090', 'DEBW522AA0002408f'];Counter({'residential': 6, 'retail': 1, 'industry': 1});Counter({'1972-1990': 5, '1991-2010': 2, '1949-1971': 1});8,0;391820,0;53462,0;38337,0;24851,0;5992,0;304,0;5,0;0,0;1,0;807,0;11777,0;33736,0;52010,0;134,7;123,088;LINESTRING (3514762.433337968 5406049.588104979, 3514775.82846434 5406060.666095059, 3514848.951815422 5406124.947038906, 3514853.871593671 5406131.688023483);[96, 355, 237, 20, 246]
250,0;['DEBW522AA0002c934', 'DEBW522AA0002c935'];Counter({'office and administration': 2});Counter({'1972-1990': 1, '1949-1971': 1});2,0;126996,0;21845,0;16055,0;11455,0;3952,0;394,0;11,0;1,0;2,0;695,0;5348,0;13708,0;21191,0;50,5;17,437;LINESTRING (3515354.579466866 5405757.846173813, 3515372.003605343 5405757.170974317);[253, 215]
251,0;['DEBW522AA0000a607'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;8794,0;1716,0;1235,0;778,0;175,0;9,0;0,0;0,0;0,0;29,0;404,0;1140,0;1677,0;12,3;39,66;LINESTRING (3514590.921946091 5406053.054616258, 3514598.468233257 5406044.477970876, 3514617.127667008 5406023.286079448);[324, 252, 149, 444]
252,0;['DEBW522AA00020dc1', 'DEBW522AA00020dc3', 'DEBW522AA00020dbf', 'DEBW522AA00020dbb', 'DEBW522AA00020dbd'];Counter({'office and administration': 3, 'non-heated': 1, 'industry': 1});Counter({'1972-1990': 4, 'After 2011': 1});5,0;674169,0;115240,0;87163,0;64149,0;24886,0;3129,0;110,0;11,0;23,0;5520,0;32858,0;75076,0;110991,0;52,5;169,565;LINESTRING (3514492.457683074 5405909.666274259, 3514562.067026075 5405970.965159616, 3514563.069181328 5405975.538333183, 3514577.445293757 5405988.230876978, 3514604.94254351 5406012.967819115, 3514617.127667008 5406023.286079448);[251, 149]
258,0;['DEBW522AA00027795', 'DEBW522AA000303cb', 'DEBW522AA00006859', 'DEBW522AA000266cd', 'DEBW522AA00038baf', 'DEBW522AA00038bae', 'DEBW522AA00034603'];Counter({'residential': 7});Counter({'1991-2010': 4, 'After 2011': 1, '1972-1990': 1, '1949-1971': 1});7,0;277371,0;50797,0;35249,0;21562,0;4646,0;180,0;0,0;0,0;0,0;590,0;10462,0;31981,0;49879,0;98,3;115,85;LINESTRING (3515267.798464726 5405920.326752629, 3515283.849380651 5405805.594369132);[321, 259, 260, 322]
259,0;['DEBW522AA00038b24', 'DEBW522AA00018a70', 'DEBW522AA0003200e', 'DEBW522AA00043989'];Counter({'residential': 4});Counter({'1972-1990': 3, '1949-1971': 1});4,0;117316,0;21813,0;15155,0;9277,0;1921,0;73,0;0,0;0,0;0,0;258,0;4636,0;13942,0;21448,0;77,2;84,391;LINESTRING (3515183.507521228 5405916.217243531, 3515267.798464726 5405920.326752629);[258, 260, 453, 424]
261,0;['DEBW522AA00000178', 'DEBW522AA00000177', 'DEBW522AA0002bdc0', 'DEBW522AA00035f5e', 'DEBW522AA00003b25', 'DEBW522AA00042c77', 'DEBW522AA00042c76', 'DEBW522AA0002fb32', 'DEBW522AA0001df36', 'DEBW522AA0001df35', 'DEBW522AA0001df38', 'DEBW522AA0001df37', 'DEBW522AA00018b9f', 'DEBW522AA00018b9e', 'DEBW522AA0003a7b5', 'DEBW522AA0003a7b4', 'DEBW522AA000152d1', 'DEBW522AA0001205c', 'DEBW522AA0001205d', 'DEBW522AA0003efb0'];Counter({'residential': 13, 'non-heated': 7});Counter({'1949-1971': 16, 'After 2011': 2, '1991-2010': 1, '1972-1990': 1});20,0;427087,0;69308,0;49051,0;30587,0;5847,0;128,0;0,0;0,0;0,0;551,0;14137,0;43576,0;67390,0;363,4;115,175;LINESTRING (3514440.543682368 5405635.364882839, 3514486.653925898 5405740.907005315);[461, 119, 152, 123]
262,0;['DEBW522AA00022b15', 'DEBW522AA00042767', 'DEBW522AA0003cd5d', 'DEBW522AA000414ff', 'DEBW522AA0003dadd', 'DEBW522AA0003f9f7', 'DEBW522AA00022263'];Counter({'residential': 6, 'office and administration': 1});Counter({'1991-2010': 5, '1972-1990': 2});7,0;368265,0;64023,0;44501,0;27364,0;5746,0;224,0;2,0;0,0;0,0;649,0;12745,0;39520,0;62746,0;204,9;45,886;LINESTRING (3515050.324609252 5406386.762122462, 3515080.775498763 5406352.436529479);[156, 189]
263,0;['DEBW522AA0000a661', 'DEBW522AA0000a662', 'DEBW522AA0000a65d', 'DEBW522AA0000a65e'];Counter({'hall': 2, 'education': 2});Counter({'1972-1990': 3, 'After 2011': 1});4,0;498497,0;67640,0;51636,0;39258,0;17220,0;5516,0;2249,0;1324,0;1751,0;7146,0;23260,0;46350,0;65676,0;52,9;31,791;LINESTRING (3514549.806677297 5405779.425160783, 3514552.502519904 5405771.247363555, 3514556.990497821 5405752.020312288, 3514554.476166081 5405749.678470128);[275, 276]
264,0;['DEBW522AA000328db', 'DEBW522AA000328dc', 'DEBW522AA00040185', 'DEBW522AA0001661e', 'DEBW522AA000084aa', 'DEBW522AA00040a56', 'DEBW522AA0000fc27', 'DEBW522AA000290c7'];Counter({'residential': 7, 'hall': 1});Counter({'After 2011': 4, '1949-1971': 2, '1972-1990': 1, 'Before 1948': 1});8,0;193847,0;32090,0;22222,0;13555,0;2761,0;90,0;0,0;0,0;0,0;279,0;6060,0;19703,0;31472,0;162,3;53,057;LINESTRING (3515568.603745155 5405607.706106232, 3515565.673590224 5405607.052991773, 3515541.923946694 5405601.738313421, 3515516.867591943 5405595.941940511);[265, 266, 363, 364]
265,0;['DEBW522AA00031322'];Counter({'residential': 1});Counter({'After 2011': 1});1,0;29222,0;5461,0;3783,0;2292,0;515,0;25,0;0,0;0,0;0,0;62,0;1091,0;3413,0;5404,0;16,4;44,59;LINESTRING (3515473.422718264 5405585.902536273, 3515481.654993377 5405587.782356584, 3515516.867591943 5405595.941940511);[264, 266, 92, 382]
266,0;['DEBW522AA0002fdf2', 'DEBW522AA0003aa50', 'DEBW522AA0003aa51', 'DEBW522AA0001661f', 'DEBW522AA00008cc2', 'DEBW522AA00003380', 'DEBW522AA00031f85'];Counter({'residential': 5, 'non-heated': 2});Counter({'1972-1990': 4, 'Before 1948': 2, '1949-1971': 1});7,0;316898,0;45223,0;32294,0;20732,0;4795,0;157,0;1,0;0,0;0,0;496,0;9435,0;28406,0;44093,0;118,2;91,638;LINESTRING (3515457.863507188 5405624.370444243, 3515507.234415471 5405635.760556808, 3515514.099998226 5405608.278195349, 3515516.867591943 5405595.941940511);[264, 265]
267,0;['DEBW522AA00005336'];Counter({'retail': 1});Counter({'1949-1971': 1});1,0;49269,0;4767,0;3631,0;2722,0;1104,0;153,0;6,0;1,0;1,0;257,0;1410,0;3155,0;4603,0;40,3;4,47;LINESTRING (3514594.188750635 5405762.470081883, 3514594.185652582 5405757.999584151);[268, 269]
269,0;['DEBW522AA0000e0b5'];Counter({'retail': 1});Counter({'1991-2010': 1});1,0;55262,0;5164,0;3798,0;2693,0;934,0;100,0;3,0;0,0;1,0;178,0;1306,0;3288,0;5017,0;8,4;32,264;LINESTRING (3514565.529286161 5405768.923537663, 3514567.835917803 5405763.502653109, 3514594.188750635 5405762.470081883);[291, 519, 267, 268]
271,0;['DEBW522AA00043f93'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;97708,0;3553,0;1451,0;228,0;4,0;0,0;0,0;0,0;0,0;0,0;9,0;621,0;3155,0;22,7;148,379;LINESTRING (3515367.464505464 5406167.84351874, 3515375.268305575 5406164.89566046, 3515383.110977474 5406150.426940472, 3515385.925560858 5406144.885450525, 3515396.33972357 5406117.07902935, 3515404.317775889 5406096.149621407, 3515411.244420493 5406078.175429916, 3515415.664774195 5406055.123360353, 3515411.816664909 5406032.916016641);[270, 272, 273, 274]
277,0;['DEBW522AA00042aaf', 'DEBW522AA00042aae', 'DEBW522AA00042aab'];Counter({'industry': 3});Counter({'1972-1990': 3});3,0;234747,0;6592,0;2735,0;525,0;20,0;0,0;0,0;0,0;0,0;0,0;45,0;1234,0;5818,0;48,1;13,459;LINESTRING (3515362.066711101 5406091.563438775, 3515348.78069614 5406089.414205826);[270, 279]
278,0;['DEBW522AA00042aad', 'DEBW522AA00042aac'];Counter({'industry': 2});Counter({'1972-1990': 2});2,0;7960,0;897,0;489,0;161,0;10,0;0,0;0,0;0,0;0,0;0,0;23,0;347,0;869,0;39,1;25,027;LINESTRING (3515308.060961828 5406110.676969388, 3515332.864757949 5406114.014073427);[280, 279]
282,0;['DEBW522A01405f86', 'DEBW522AA0003da5a'];Counter({'residential': 2});Counter({'1972-1990': 1, '1991-2010': 1});2,0;470955,0;84712,0;61964,0;41956,0;11689,0;585,0;6,0;0,0;1,0;1900,0;22061,0;55864,0;82508,0;44,8;14,211;LINESTRING (3515319.908892091 5406195.670918106, 3515321.514590015 5406186.133791142, 3515325.137026492 5406183.396874175);[280, 274]
283,0;['DEBW522A01405f95', 'DEBW522AA00043f9b', 'DEBW522AA00043f9a'];Counter({'industry': 2, 'residential': 1});Counter({'1972-1990': 3});3,0;88433,0;12152,0;7747,0;4339,0;1050,0;52,0;0,0;0,0;0,0;128,0;1982,0;6820,0;11924,0;43,4;23,864;LINESTRING (3515356.53827061 5406227.19784144, 3515379.429363208 5406220.454630063);[273, 284]
284,0;['DEBW522AA00043f92', 'DEBW522AA00043f91'];Counter({'industry': 2});Counter({'1972-1990': 2});2,0;275750,0;8153,0;3208,0;464,0;8,0;0,0;0,0;0,0;0,0;0,0;16,0;1237,0;7040,0;17,6;19,655;LINESTRING (3515383.947158388 5406239.583375218, 3515379.429363208 5406220.454630063);[273, 283]
285,0;['DEBW522AA00000251', 'DEBW522AA00015860'];Counter({'non-heated': 2});Counter({'1949-1971': 1, '1991-2010': 1});2,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;47,9;174,897;LINESTRING (3514436.539300913 5405921.543748296, 3514445.049661078 5405912.357740359, 3514545.107238602 5405999.801500726, 3514551.745080918 5406010.071901026, 3514550.576324972 5406027.29472316);[288, 289, 114, 469, 286]
287,0;['DEBW522AA00026a80', 'DEBW522AA00006eb2', 'DEBW522AA00006eb3', 'DEBW522AA000388cf'];Counter({'residential': 4});Counter({'1972-1990': 2, '1949-1971': 1, '1991-2010': 1});4,0;29793,0;6248,0;4121,0;2377,0;517,0;28,0;0,0;0,0;0,0;71,0;1115,0;3719,0;6223,0;56,5;29,753;LINESTRING (3515388.457673769 5406572.781238854, 3515405.346096827 5406573.639336978, 3515414.475705456 5406582.672103923);[463, 478]
289,0;['DEBW522AA00000253', 'DEBW522AA00000250'];Counter({'industry': 1, 'retail': 1});Counter({'1972-1990': 2});2,0;114884,0;9981,0;6864,0;4240,0;1087,0;79,0;2,0;0,0;0,0;172,0;1929,0;5869,0;9698,0;24,3;106,934;LINESTRING (3514550.576324972 5406027.29472316, 3514528.780898435 5406045.175901084, 3514492.195345426 5406014.344027798, 3514512.652395053 5405991.188075854);[288, 469, 285, 286]
296,0;['DEBW522AA0003a0c5', 'DEBW522AA0003a0c9', 'DEBW522AA0003a0c8', 'DEBW522AA00015796', 'DEBW522AA00029514', 'DEBW522AA0001f0a8', 'DEBW522AA0004242b', 'DEBW522AA00000370', 'DEBW522AA00032b8b', 'DEBW522AA00036f92', 'DEBW522AA0003f1d3', 'DEBW522AA000171c4', 'DEBW522AA0002f8e1'];Counter({'residential': 10, 'education': 2, 'sport location': 1});Counter({'1972-1990': 10, 'After 2011': 2, '1991-2010': 1});13,0;1478668,0;200923,0;148967,0;104200,0;36400,0;5133,0;129,0;4,0;14,0;7840,0;51446,0;128849,0;194387,0;272,4;204,84;LINESTRING (3514965.225464276 5405741.838507627, 3514984.75727126 5405733.349916393, 3514988.752449496 5405734.172376744, 3514991.910390531 5405737.58371185, 3515025.152803648 5405734.981304362, 3515022.821309006 5405730.282167235, 3515016.837169188 5405725.817922828, 3515010.147148334 5405724.27652369, 3515001.108077823 5405724.608246946, 3514995.822624609 5405725.417066358, 3514993.712962859 5405722.942658443, 3514965.55930736 5405666.074586106, 3514963.809450396 5405660.921077891, 3514964.527653445 5405656.118881145, 3514970.298255797 5405652.508927297, 3514992.278270618 5405643.67102418);[302, 303]
297,0;['DEBW522AA0003c2ea'];Counter({'hall': 1});Counter({'1991-2010': 1});1,0;7767,0;1668,0;1259,0;925,0;356,0;51,0;1,0;0,0;0,0;101,0;582,0;1178,0;1646,0;12,4;74,486;LINESTRING (3514244.379295503 5405816.653062719, 3514267.087398445 5405841.620844748, 3514296.738901568 5405869.553342881);[162, 408, 298, 24]
299,0;['DEBW522AA0002239a', 'DEBW522AA000394b5', 'DEBW522AA000394b4', 'DEBW522AA000394b3', 'DEBW522AA00014413', 'DEBW522AA00014412', 'DEBW522AA0002d86d', 'DEBW522AA0002d86c', 'DEBW522AA0003204e', 'DEBW522AA0001a3ce'];Counter({'residential': 6, 'non-heated': 3, 'industry': 1});Counter({'1949-1971': 5, '1972-1990': 3, 'Before 1948': 1, '1991-2010': 1});10,0;234245,0;39166,0;27310,0;16650,0;3303,0;111,0;0,0;0,0;0,0;365,0;7767,0;24257,0;38362,0;162,2;124,712;LINESTRING (3514939.128985028 5406224.459951276, 3514929.672111099 5406216.416838861, 3514853.632210616 5406147.211790623, 3514851.072187136 5406145.592532394, 3514845.614678308 5406142.152956539);[9, 48, 502, 503]
300,0;['DEBW522AA0003defb', 'DEBW522AA0003defa', 'DEBW522AA0003defd', 'DEBW522AA0003defc', 'DEBW522AA0003defe', 'DEBW522AA00012f7d', 'DEBW522AA00012f7c', 'DEBW522AA00012787'];Counter({'retail': 3, 'residential': 3, 'non-heated': 2});Counter({'1972-1990': 3, '1991-2010': 3, '1949-1971': 2});8,0;690528,0;69253,0;50462,0;33683,0;9334,0;667,0;15,0;1,0;3,0;1459,0;15761,0;43574,0;67363,0;156,8;69,834;LINESTRING (3514707.054458801 5405875.10484296, 3514709.477781509 5405872.864819332, 3514712.819095845 5405870.816250655, 3514751.194216202 5405855.181167428, 3514771.577792884 5405849.440864366);[236, 301, 141, 438, 158]
301,0;['DEBW522AA0003aa53', 'DEBW522AA0000673b', 'DEBW522AA00008fb1', 'DEBW522AA0002cd99', 'DEBW522AA00026dab', 'DEBW522AA00029506', 'DEBW522AA00029507', 'DEBW522AA0002734c', 'DEBW522AA0000e95c', 'DEBW522AA00025f87'];Counter({'residential': 9, 'non-heated': 1});Counter({'1972-1990': 5, '1991-2010': 2, '1949-1971': 2, 'After 2011': 1});10,0;443473,0;79601,0;55759,0;34158,0;7036,0;245,0;0,0;0,0;0,0;831,0;16384,0;50059,0;78200,0;161,5;83,885;LINESTRING (3514826.391888335 5405785.941880889, 3514771.577792884 5405849.440864366);[4, 490, 300, 141]
303,0;['DEBW522AA00026328', 'DEBW522AA0001da97', 'DEBW522AA0004459c', 'DEBW522AA0002d43a', 'DEBW522AA00028479', 'DEBW522AA0001b61e', 'DEBW522AA0002a8b9', 'DEBW522AA0003f1d2', 'DEBW522AA00042f26', 'DEBW522AA00043d42', 'DEBW522AA00028ecc', 'DEBW522AA00028eca'];Counter({'residential': 5, 'retail': 4, 'education': 2, 'industry': 1});Counter({'1949-1971': 5, '1972-1990': 3, '1991-2010': 3, 'After 2011': 1});12,0;630055,0;96862,0;70670,0;47783,0;14288,0;1293,0;40,0;5,0;11,0;2739,0;24479,0;62794,0;94498,0;233,9;171,384;LINESTRING (3514893.361465982 5405586.281374415, 3514898.174272396 5405597.503717011, 3514901.371793753 5405605.441197478, 3514922.091575849 5405647.8768657, 3514948.558529748 5405706.44168344, 3514965.225464276 5405741.838507627);[296, 302, 305, 83, 89, 447]
304,0;['DEBW522AA0002f733', 'DEBW522AA0002d7ff', 'DEBW522AA00029b24', 'DEBW522AA00029b22', 'DEBW522AA00029b23', 'DEBW522AA0000c1e6', 'DEBW522AA00041d2c', 'DEBW522AA00041d2d', 'DEBW522AA007a7c90', 'DEBW522AA0003852b', 'DEBW522AA000406bc', 'DEBW522AA000406bb', 'DEBW522AA0000cf41', 'DEBW522AA0000cf40', 'DEBW522AA0000cf42', 'DEBW522AA0000d39a', 'DEBW522AA0002d801', 'DEBW522AA0002d800', 'DEBW522AA0000d398'];Counter({'residential': 19});Counter({'1972-1990': 7, 'Before 1948': 6, '1991-2010': 4, '1949-1971': 2});19,0;313998,0;61069,0;42100,0;25232,0;5331,0;230,0;1,0;0,0;0,0;717,0;12404,0;38196,0;60260,0;335,7;199,767;LINESTRING (3514625.449910227 5405555.185152514, 3514637.162553858 5405569.538999182, 3514645.292733899 5405576.877545215, 3514656.993011659 5405584.659116467, 3514665.472701025 5405587.572597408, 3514676.664955958 5405590.081711167, 3514686.358244374 5405589.740051752, 3514695.807358726 5405587.229249923, 3514750.010169329 5405561.326749771, 3514777.17319834 5405543.171408244, 3514784.402838989 5405535.216937668, 3514791.074573816 5405524.258440999);[409, 305]
305,0;['DEBW522AA0000dc4e', 'DEBW522AA000243b1', 'DEBW522AA000243b2', 'DEBW522AA0001e64a'];Counter({'residential': 4});Counter({'1949-1971': 2, 'Before 1948': 1, '1991-2010': 1});4,0;132097,0;26198,0;18118,0;11279,0;2880,0;196,0;2,0;0,0;0,0;446,0;5616,0;16372,0;25898,0;66,5;119,622;LINESTRING (3514893.361465982 5405586.281374415, 3514880.258353594 5405578.362145286, 3514791.074573816 5405524.258440999);[303, 304, 83, 89, 447]
306,0;['DEBW522AA00018377', 'DEBW522AA00026802', 'DEBW522AA0003d383', 'DEBW522AA0003d381', 'DEBW522AA000113eb', 'DEBW522AA00019354', 'DEBW522AA00019353', 'DEBW522AA00019356', 'DEBW522AA00019355', 'DEBW522AA0001dc6d', 'DEBW522AA0001dc6c', 'DEBW522AA00009ded', 'DEBW522AA0001e484'];Counter({'residential': 12, 'industry': 1});Counter({'1991-2010': 10, '1949-1971': 3});13,0;306878,0;50359,0;34756,0;21648,0;5226,0;255,0;1,0;0,0;0,0;712,0;10581,0;31177,0;49438,0;137,8;201,748;LINESTRING (3515632.083326957 5406515.081685537, 3515633.704967572 5406492.044222738, 3515633.594619336 5406489.452805425, 3515632.919008372 5406473.481679711, 3515631.581818815 5406441.773002357, 3515629.61040551 5406395.049694203, 3515630.046300652 5406386.254478612, 3515631.85257223 5406370.812932267, 3515635.930604063 5406354.855039665, 3515640.108783542 5406342.522758447, 3515644.768446625 5406339.355230427, 3515652.621038114 5406342.602092284, 3515663.936943507 5406350.140068986);[206, 307, 310, 311]
307,0;['DEBW522AA000130f8', 'DEBW522AA000130f6'];Counter({'office and administration': 1, 'residential': 1});Counter({'1972-1990': 2});2,0;299863,0;47653,0;35134,0;23937,0;6628,0;232,0;1,0;0,0;0,0;717,0;11103,0;30474,0;45835,0;20,4;108,547;LINESTRING (3515657.556093261 5406456.891575973, 3515656.83213477 5406363.320464242, 3515663.936943507 5406350.140068986);[306, 206]
308,0;['DEBW522AA000070b0', 'DEBW522AA000070af', 'DEBW522AA00001823', 'DEBW522AA00043698', 'DEBW522AA00043695', 'DEBW522AA00e68ba4', 'DEBW522AA00039a82', 'DEBW522AA0002df90'];Counter({'industry': 3, 'residential': 3, 'health care': 1, 'non-heated': 1});Counter({'1991-2010': 5, '1949-1971': 2, '1972-1990': 1});8,0;3738441,0;313643,0;244707,0;192494,0;95561,0;26793,0;2975,0;595,0;949,0;33318,0;105983,0;210278,0;300068,0;280,2;143,241;LINESTRING (3515039.179746283 5405889.095107296, 3515037.191685732 5405885.141963896, 3515035.342874974 5405881.322641365, 3515001.256373588 5405812.272532699, 3514982.648702819 5405774.601812719, 3514981.13519004 5405771.77313877, 3514979.621616493 5405768.96670634, 3514975.885260409 5405762.017477686, 3514975.285683783 5405760.903817356);[485, 426, 302, 47, 309, 59]
309,0;['DEBW522AA00028ecd'];Counter({'sport location': 1});Counter({'1972-1990': 1});1,0;1537861,0;175599,0;137006,0;105418,0;47457,0;7924,0;70,0;0,0;0,0;10429,0;49457,0;112514,0;166637,0;29,7;94,269;LINESTRING (3514882.612656015 5405760.590898708, 3514900.87223303 5405757.9592152, 3514914.132369161 5405756.370780035, 3514927.096585126 5405755.537792667, 3514945.161221626 5405754.384778768, 3514951.319340818 5405754.223229609, 3514957.469875795 5405754.150632039, 3514971.27840182 5405759.113839883, 3514975.285683783 5405760.903817356);[456, 45, 302, 47, 308, 59]
310,0;['DEBW522AA000113ea', 'DEBW522AA000371e9', 'DEBW522AA000371e8', 'DEBW522AA000371ea'];Counter({'residential': 4});Counter({'1991-2010': 4});4,0;117798,0;22853,0;15227,0;8959,0;1960,0;105,0;1,0;0,0;0,0;262,0;4212,0;13818,0;22703,0;74,6;30,067;LINESTRING (3515632.083326957 5406515.081685537, 3515637.078801614 5406523.20254038, 3515636.625643371 5406532.920722816, 3515625.880000938 5406531.800996045);[312, 306, 311]
311,0;['DEBW522AA0003d1c0', 'DEBW522AA00027553'];Counter({'residential': 2});Counter({'1991-2010': 2});2,0;52461,0;10055,0;7004,0;4312,0;981,0;46,0;0,0;0,0;0,0;147,0;2199,0;6422,0;9884,0;22,0;17,833;LINESTRING (3515632.083326957 5406515.081685537, 3515628.152564587 5406525.679843034, 3515625.880000938 5406531.800996045);[312, 306, 310]
312,0;['DEBW522AA000319e6', 'DEBW522AA00007aa4', 'DEBW522AA00007aa3', 'DEBW522AA00023925'];Counter({'residential': 4});Counter({'After 2011': 2, 'Before 1948': 1, '1949-1971': 1});4,0;67474,0;12906,0;8792,0;5210,0;1071,0;46,0;0,0;0,0;0,0;138,0;2519,0;8004,0;12747,0;23,4;36,274;LINESTRING (3515616.34182866 5406566.793382431, 3515618.727296585 5406557.04720882, 3515625.880000938 5406531.800996045);[310, 311, 317, 318]
314,0;['DEBW522AA0000d919', 'DEBW522AA00005957', 'DEBW522AA0000f6a5', 'DEBW522AA00020a0d'];Counter({'residential': 4});Counter({'Before 1948': 3, '1949-1971': 1});4,0;54091,0;9962,0;6897,0;4121,0;772,0;23,0;0,0;0,0;0,0;97,0;2059,0;6327,0;9772,0;52,1;17,813;LINESTRING (3515814.609128112 5405704.486518217, 3515804.709327894 5405697.296973361, 3515800.199429926 5405694.014822666);[392, 134]
316,0;['DEBW522AA0000d907', 'DEBW522AA00006a43', 'DEBW522AA000313e1', 'DEBW522AA000313e0', 'DEBW522AA000313df', 'DEBW522AA000313de'];Counter({'education': 3, 'residential': 1, 'restaurant': 1, 'non-heated': 1});Counter({'1972-1990': 2, '1991-2010': 2, 'After 2011': 1, 'Before 1948': 1});6,0;1292575,0;191852,0;139462,0;92022,0;22425,0;1046,0;13,0;1,0;4,0;2598,0;42096,0;121574,0;186454,0;163,8;163,282;LINESTRING (3515182.952629347 5406290.480650766, 3515142.362313046 5406228.985195806, 3515130.434770267 5406213.573224051, 3515121.340755267 5406201.838713113, 3515114.127526282 5406192.889435019, 3515105.760991921 5406181.101303999, 3515088.786214976 5406157.201933219);[26, 315]
317,0;['DEBW522AA00043da1', 'DEBW522AA00043da0', 'DEBW522AA00035f83', 'DEBW522AA000032d8', 'DEBW522AA00039be9', 'DEBW522AA00027035', 'DEBW522AA00027036'];Counter({'residential': 7});Counter({'1972-1990': 3, '1949-1971': 3, '1991-2010': 1});7,0;96164,0;20195,0;13464,0;7711,0;1682,0;84,0;0,0;0,0;0,0;214,0;3661,0;12265,0;20041,0;58,6;32,236;LINESTRING (3515605.053817234 5406596.987926122, 3515616.34182866 5406566.793382431);[312, 318]
318,0;['DEBW522AA0002e7af'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;40506,0;7413,0;5190,0;3145,0;614,0;21,0;0,0;0,0;0,0;78,0;1547,0;4722,0;7280,0;9,1;46,912;LINESTRING (3515658.360895023 5406587.372351769, 3515639.664150294 5406576.321942022, 3515616.34182866 5406566.793382431);[327, 328, 312, 317]
320,0;['DEBW522AA00038d36', 'DEBW522AA00038d37', 'DEBW522AA00038d32', 'DEBW522AA00038d31', 'DEBW522AA00038d34', 'DEBW522AA00038d33'];Counter({'office and administration': 4, 'industry': 2});Counter({'1972-1990': 5, '1991-2010': 1});6,0;1503602,0;244221,0;188475,0;143372,0;62395,0;10033,0;410,0;44,0;88,0;15345,0;74170,0;160355,0;234127,0;149,3;33,95;LINESTRING (3515054.014724684 5406191.215642706, 3515059.265066087 5406178.663397113, 3515075.594397409 5406166.530094707);[315, 319]
322,0;['DEBW522AA00023673', 'DEBW522AA00035f8d', 'DEBW522AA00004dc4', 'DEBW522AA00004dc6'];Counter({'non-heated': 2, 'residential': 2});Counter({'1949-1971': 2, '1991-2010': 1, '1972-1990': 1});4,0;71494,0;14199,0;9545,0;5597,0;1235,0;61,0;0,0;0,0;0,0;177,0;2765,0;8796,0;14041,0;75,7;61,563;LINESTRING (3515283.849380651 5405805.594369132, 3515290.402528067 5405757.415393594, 3515290.813381255 5405754.947732166, 3515291.426864499 5405750.92373427, 3515292.413918784 5405744.632145028);[321, 258, 420, 173, 177]
323,0;['DEBW522AA00033941', 'DEBW522AA00033940', 'DEBW522AA0000a606'];Counter({'non-heated': 1, 'office and administration': 1, 'industry': 1});Counter({'1949-1971': 2, '1972-1990': 1});3,0;106481,0;19376,0;14298,0;9842,0;3177,0;321,0;10,0;1,0;2,0;694,0;5137,0;12578,0;18781,0;27,1;27,086;LINESTRING (3514626.769426803 5406048.121284146, 3514608.905746836 5406068.481165659);[243, 324]
324,0;['DEBW522AA000343f7'];Counter({'office and administration': 1});Counter({'1972-1990': 1});1,0;12710,0;2317,0;1720,0;1244,0;466,0;61,0;2,0;0,0;0,0;110,0;659,0;1515,0;2247,0;13,3;23,713;LINESTRING (3514590.921946091 5406053.054616258, 3514594.566910479 5406055.68854921, 3514608.905746836 5406068.481165659);[323, 243, 251, 444]
328,0;['DEBW522AA00009446', 'DEBW522AA00043d9f', 'DEBW522AA00043d9e', 'DEBW522AA0003b6d7'];Counter({'residential': 4});Counter({'1972-1990': 3, 'Before 1948': 1});4,0;152456,0;30663,0;21470,0;13337,0;3293,0;200,0;1,0;0,0;0,0;548,0;6872,0;19629,0;30197,0;51,0;103,387;LINESTRING (3515582.686355866 5406632.623103159, 3515601.002796752 5406632.429293614, 3515623.111455801 5406634.447978874, 3515630.953012627 5406633.591264505, 3515637.340585479 5406629.839144747, 3515640.539185787 5406626.233840385, 3515656.84557549 5406590.670959663, 3515658.360895023 5406587.372351769);[327, 201, 76, 318]
331,0;['DEBW522AA0000dbfe', 'DEBW522AA00014c14', 'DEBW522AA00014c13'];Counter({'residential': 2, 'hall': 1});Counter({'1972-1990': 2, 'Before 1948': 1});3,0;68236,0;12567,0;8766,0;5306,0;1051,0;39,0;0,0;0,0;0,0;136,0;2631,0;7940,0;12358,0;36,0;92,237;LINESTRING (3515491.257535909 5405943.190808632, 3515459.994621565 5405872.922383602, 3515453.721180295 5405858.937611531);[514, 330, 332, 336]
333,0;['DEBW522AA000204f2'];Counter({'restaurant': 1});Counter({'1991-2010': 1});1,0;503485,0;41807,0;32174,0;23960,0;9789,0;986,0;0,0;0,0;0,0;1603,0;11188,0;26743,0;39858,0;17,4;24,071;LINESTRING (3515455.444275433 5405830.862756741, 3515460.093251386 5405831.698473586, 3515464.273680141 5405834.579100848, 3515466.98660821 5405839.368439914, 3515467.763521115 5405848.100274443);[332, 334, 367, 378]
334,0;['DEBW522AA00021575', 'DEBW522AA00021574'];Counter({'office and administration': 2});Counter({'1991-2010': 1, '1972-1990': 1});2,0;110404,0;20358,0;15056,0;10531,0;3556,0;383,0;12,0;1,0;2,0;803,0;5571,0;13322,0;19768,0;23,4;58,733;LINESTRING (3515501.092060358 5405894.075855519, 3515494.891808507 5405888.242661731, 3515480.174963205 5405855.841054445, 3515473.801147385 5405851.642139386, 3515467.763521115 5405848.100274443);[512, 513, 332, 333]
335,0;['DEBW522AA00009131'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;151051,0;5039,0;1980,0;316,0;6,0;0,0;0,0;0,0;0,0;0,0;12,0;808,0;4474,0;6,8;28,478;LINESTRING (3514394.634446763 5405743.517456993, 3514391.262237215 5405743.297529714, 3514387.902306009 5405744.022888496, 3514379.465266431 5405753.209169317, 3514373.312190766 5405760.032611331);[226, 341, 219, 223]
337,0;['DEBW522AA00018ee9', 'DEBW522AA000280d0'];Counter({'residential': 2});Counter({'1991-2010': 1, '1972-1990': 1});2,0;110367,0;19956,0;13732,0;8389,0;1791,0;74,0;0,0;0,0;0,0;211,0;3999,0;12300,0;19645,0;19,8;44,326;LINESTRING (3514305.926235767 5405640.314056317, 3514338.711455605 5405670.145245355);[338, 213, 377]
338,0;['DEBW522AA0001c5f6'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;70846,0;10500,0;7549,0;4764,0;988,0;30,0;0,0;0,0;0,0;108,0;2235,0;6667,0;10219,0;12,0;10,159;LINESTRING (3514298.411681713 5405633.477998094, 3514305.926235767 5405640.314056317);[337, 347]
342,0;['DEBW522AA00034b30'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;96813,0;16838,0;11683,0;7232,0;1449,0;43,0;0,0;0,0;0,0;144,0;3253,0;10387,0;16560,0;12,5;41,462;LINESTRING (3515442.168831953 5405739.014331596, 3515400.798812654 5405741.769909744);[344, 390, 401, 343, 216]
343,0;['DEBW522AA00009674'];Counter({'residential': 1});Counter({'Before 1948': 1});1,0;89935,0;17242,0;12179,0;7811,0;1999,0;113,0;1,0;0,0;0,0;324,0;4057,0;11136,0;16934,0;8,4;47,954;LINESTRING (3515450.485258151 5405785.076601749, 3515447.05887513 5405777.84989181, 3515443.859313138 5405773.648618912, 3515442.168831953 5405739.014331596);[358, 342, 344, 350]
347,0;['DEBW522AA000328d8'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;103140,0;17172,0;12171,0;7825,0;1766,0;52,0;0,0;0,0;0,0;169,0;3558,0;10721,0;16759,0;9,0;32,364;LINESTRING (3514273.516905318 5405612.797104975, 3514298.411681713 5405633.477998094);[144, 386, 338]
349,0;['DEBW522AA0001b4e3', 'DEBW522AA0001b4e4'];Counter({'retail': 2});Counter({'1991-2010': 2});2,0;375461,0;31084,0;23094,0;16243,0;5463,0;517,0;14,0;1,0;2,0;949,0;7653,0;19612,0;29944,0;46,5;77,295;LINESTRING (3514288.700764039 5405643.695391214, 3514278.605523037 5405631.637231149, 3514269.45924323 5405622.050275335, 3514260.997969942 5405614.711436934, 3514244.346509208 5405600.323622037, 3514232.952402223 5405590.397412704);[384, 385, 197, 40]
350,0;['DEBW522AA00024414'];Counter({'education': 1});Counter({'1972-1990': 1});1,0;279451,0;40204,0;29733,0;20462,0;6273,0;581,0;25,0;4,0;9,0;1424,0;11355,0;26707,0;39482,0;15,0;86,821;LINESTRING (3515450.485258151 5405785.076601749, 3515530.48106291 5405751.334741416);[352, 358, 343, 351]
352,0;['DEBW522AA00c5b996', 'DEBW522AA00024415'];Counter({'residential': 1, 'education': 1});Counter({'After 2011': 1, '1991-2010': 1});2,0;55677,0;8143,0;5955,0;4073,0;1228,0;115,0;5,0;1,0;2,0;285,0;2268,0;5399,0;7968,0;74,8;139,155;LINESTRING (3515464.116038264 5405817.085914092, 3515488.13075721 5405805.886861764, 3515554.25265916 5405775.054081032, 3515545.676149089 5405754.268126653, 3515542.247936147 5405750.399783623, 3515537.716350203 5405749.608806071, 3515530.951889757 5405751.135871493, 3515530.48106291 5405751.334741416);[358, 367, 350, 351]
353,0;['DEBW522AA00003409', 'DEBW522AA0000f4cf', 'DEBW522AA0003111e', 'DEBW522AA00031123', 'DEBW522AA0003a08a'];Counter({'residential': 5});Counter({'1972-1990': 3, '1991-2010': 2});5,0;246142,0;45868,0;32347,0;20905,0;5581,0;316,0;2,0;0,0;0,0;907,0;10642,0;29192,0;45094,0;120,7;170,46;LINESTRING (3516024.329180032 5405576.815380782, 3515867.128800713 5405510.902073364);[290, 393, 348]
354,0;['DEBW522AA00ee030d', 'DEBW522AA00ee02e0', 'DEBW522AA00ee02ef', 'DEBW522AA1992073', 'DEBW522AA013a3db7', 'DEBW522AA013a3da6', 'DEBW522AA0003709b', 'DEBW522AA0002fbd9', 'DEBW522AA013a3d95'];Counter({'residential': 4, 'sport location': 2, 'non-heated': 1, 'industry': 1, 'health care': 1});Counter({'1972-1990': 4, 'After 2011': 3, 'Before 1948': 1, '1949-1971': 1});9,0;104975,0;15850,0;11079,0;7157,0;2356,0;320,0;13,0;1,0;2,0;500,0;3474,0;9724,0;15558,0;334,7;110,272;LINESTRING (3515230.505304283 5406594.124976994, 3515222.435576959 5406586.997013348, 3515191.299109521 5406570.654347842, 3515163.458734726 5406555.25488684, 3515156.433463406 5406553.089644628, 3515151.326851989 5406547.793565092, 3515148.941501348 5406544.161803343, 3515147.381946855 5406539.442446482, 3515147.778227876 5406536.885767745, 3515149.072701222 5406533.642031396, 3515150.576613823 5406531.744457658);[472, 475]
355,0;['DEBW522AA00c524a2', 'DEBW522AA0002865b', 'DEBW522AA00025113', 'DEBW522AA0002cde4', 'DEBW522AA0000c200', 'DEBW522AA0000c201', 'DEBW522AA0003e27c', 'DEBW522AA0001bf4e', 'DEBW522AA0002162d', 'DEBW522AA00036c84', 'DEBW522AA0003dcad'];Counter({'residential': 8, 'hotel': 1, 'non-heated': 1, 'retail': 1});Counter({'1949-1971': 6, '1972-1990': 3, 'After 2011': 2});11,0;491252,0;67193,0;47482,0;30088,0;6826,0;329,0;5,0;0,0;1,0;856,0;14105,0;41907,0;65654,0;199,8;127,91;LINESTRING (3514853.871593671 5406131.688023483, 3514880.122846772 5406154.532532405, 3514936.324535852 5406204.23518553, 3514941.286962161 5406208.685511798, 3514949.78241438 5406216.314622181);[10, 427, 20, 247, 56]
358,0;['DEBW522AA0001cecb'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;85253,0;16300,0;11445,0;7075,0;1584,0;75,0;1,0;0,0;0,0;242,0;3645,0;10421,0;16030,0;12,1;34,818;LINESTRING (3515464.116038264 5405817.085914092, 3515457.849359838 5405800.621256856, 3515450.485258151 5405785.076601749);[352, 367, 343, 350]
359,0;['DEBW522AA00010f9e', 'DEBW522AA00010f9d', 'DEBW522AA0001bc50', 'DEBW522AA0001bc51', 'DEBW522AA0001bc52', 'DEBW522AA0001bc53'];Counter({'residential': 6});Counter({'1972-1990': 4, '1991-2010': 2});6,0;57195,0;11359,0;7877,0;4797,0;1074,0;47,0;0,0;0,0;0,0;146,0;2351,0;7122,0;11179,0;50,2;15,773;LINESTRING (3515400.343912555 5406519.579295299, 3515385.005929698 5406515.900816206);[360, 210]
360,0;['DEBW522AA00e6ee9c', 'DEBW522AA0003fec7'];Counter({'residential': 2});Counter({'After 2011': 1, '1991-2010': 1});2,0;68216,0;13476,0;9147,0;5539,0;1337,0;79,0;0,0;0,0;0,0;190,0;2705,0;8319,0;13363,0;31,3;35,042;LINESTRING (3515386.895135459 5406550.435586321, 3515395.284937739 5406542.574037955, 3515400.343912555 5406519.579295299);[359, 462, 463, 210]
363,0;['DEBW522AA0002d466', 'DEBW522AA0000ace5', 'DEBW522AA00008788', 'DEBW522AA00008786', 'DEBW522AA00005dd1'];Counter({'residential': 5});Counter({'1972-1990': 2, '1991-2010': 2, '1949-1971': 1});5,0;119670,0;23107,0;15761,0;9218,0;1817,0;71,0;0,0;0,0;0,0;246,0;4594,0;14483,0;22804,0;74,2;57,951;LINESTRING (3515582.251225978 5405551.384593337, 3515568.603745155 5405607.706106232);[264, 364, 434, 415]
364,0;['DEBW522AA0003c9d1', 'DEBW522AA00029d8d', 'DEBW522AA000403bc'];Counter({'residential': 3});Counter({'1972-1990': 2, 'Before 1948': 1});3,0;32322,0;6262,0;4292,0;2564,0;542,0;25,0;0,0;0,0;0,0;80,0;1311,0;3949,0;6163,0;71,1;16,833;LINESTRING (3515585.024227978 5405611.410314488, 3515568.603745155 5405607.706106232);[264, 363]
365,0;['DEBW522AA0002ca79'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;22165,0;3312,0;2415,0;1597,0;404,0;21,0;0,0;0,0;0,0;71,0;834,0;2183,0;3222,0;10,7;32,259;LINESTRING (3514663.875035145 5406158.123152041, 3514685.194695521 5406133.913616211);[366, 339, 244, 29]
366,0;['DEBW522AA000243c3', 'DEBW522AA0003bfed', 'DEBW522AA0002ad43', 'DEBW522AA000133f8', 'DEBW522AA000094a9'];Counter({'residential': 3, 'industry': 2});Counter({'1972-1990': 3, '1991-2010': 2});5,0;318054,0;40892,0;29161,0;18656,0;4461,0;119,0;0,0;0,0;0,0;421,0;8286,0;24773,0;39363,0;127,5;100,484;LINESTRING (3514752.90632679 5406059.67173536, 3514750.253744946 5406062.500531998, 3514747.984320797 5406064.918872255, 3514743.416000471 5406069.788840084, 3514685.194695521 5406133.913616211);[365, 244, 246, 503, 122]
368,0;['DEBW522AA00038446'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;86735,0;15383,0;10775,0;6451,0;1185,0;35,0;0,0;0,0;0,0;128,0;3044,0;9616,0;15142,0;22,2;97,97;LINESTRING (3514411.701161606 5405572.537215658, 3514384.003990265 5405509.846084734, 3514381.950703298 5405505.303620026, 3514379.939883016 5405501.395139784, 3514371.27086244 5405483.313091471);[185, 369, 151]
370,0;['DEBW522AA0000a660'];Counter({'retail': 1});Counter({'1991-2010': 1});1,0;80023,0;7776,0;5966,0;4391,0;1636,0;194,0;6,0;1,0;2,0;373,0;2287,0;5215,0;7490,0;17,2;33,748;LINESTRING (3514507.091053123 5405782.839975984, 3514510.392704498 5405779.067488246, 3514511.856787074 5405775.512669832, 3514511.565043178 5405771.819870525, 3514510.038145236 5405768.390777165, 3514506.412667801 5405763.810843346, 3514497.783946033 5405756.070868142);[371, 276, 124, 125]
377,0;['DEBW522AA0001c1f9'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;177180,0;29246,0;20679,0;12797,0;2353,0;48,0;0,0;0,0;0,0;207,0;5780,0;18233,0;28475,0;14,3;43,41;LINESTRING (3514338.711455605 5405670.145245355, 3514353.007210601 5405683.159492891, 3514370.836616475 5405699.341066713);[399, 400, 337, 213]
378,0;['DEBW522AA0001cec9'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;4069,0;828,0;581,0;357,0;86,0;5,0;0,0;0,0;0,0;14,0;181,0;525,0;821,0;6,7;13,075;LINESTRING (3515443.569604036 5405836.334817416, 3515455.444275433 5405830.862756741);[390, 330, 333, 367]
382,0;['DEBW522AA0003183a', 'DEBW522AA0001a5cc', 'DEBW522AA0001082f', 'DEBW522AA0003f589', 'DEBW522AA00031022'];Counter({'residential': 5});Counter({'Before 1948': 2, '1949-1971': 2, 'After 2011': 1});5,0;205907,0;35268,0;24798,0;15944,0;4030,0;187,0;1,0;0,0;0,0;449,0;7287,0;21890,0;34624,0;90,2;73,707;LINESTRING (3515473.422718264 5405585.902536273, 3515465.711490789 5405584.268815982, 3515429.668300667 5405576.140635988, 3515401.61648614 5405569.291217297);[265, 92, 383]
383,0;['DEBW522AA00001420', 'DEBW522AA00032d29', 'DEBW522AA00021134'];Counter({'residential': 3});Counter({'Before 1948': 3});3,0;105361,0;18123,0;12994,0;8815,0;2631,0;148,0;1,0;0,0;0,0;329,0;4180,0;11429,0;17772,0;60,8;69,581;LINESTRING (3515333.893481765 5405553.425924376, 3515337.184212313 5405553.913091873, 3515340.44554914 5405554.400181064, 3515358.202053889 5405558.719003624, 3515377.691569922 5405563.465208779, 3515401.61648614 5405569.291217297);[487, 382]
388,0;['DEBW522AA00011c49'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;43690,0;8522,0;5765,0;3333,0;653,0;30,0;0,0;0,0;0,0;91,0;1652,0;5254,0;8422,0;10,5;120,716;LINESTRING (3514147.121686662 5405503.806941249, 3514213.560772178 5405561.112250945, 3514224.045868847 5405570.213194147, 3514228.709382376 5405574.172814935, 3514238.57151737 5405582.604972045);[384, 386, 387, 373]
390,0;['DEBW522AA00008226'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;475891,0;85335,0;61682,0;40732,0;10368,0;471,0;4,0;0,0;0,0;1548,0;21019,0;55435,0;83281,0;19,6;103,799;LINESTRING (3515400.798812654 5405741.769909744, 3515403.722831924 5405747.327118914, 3515443.569604036 5405836.334817416);[330, 401, 342, 216, 378]
393,0;['DEBW522AA00021c85', 'DEBW522AA000102e8', 'DEBW522AA000102e7', 'DEBW522AA000102e9', 'DEBW522AA00020a1d', 'DEBW522AA0002cb0b', 'DEBW522AA0002cb0a', 'DEBW522AA0001a594', 'DEBW522AA000301c5', 'DEBW522AA0003111f', 'DEBW522AA00031125', 'DEBW522AA00031126', 'DEBW522AA00031121', 'DEBW522AA00031120', 'DEBW522AA0001987a', 'DEBW522AA0001987c', 'DEBW522AA00019879'];Counter({'residential': 16, 'retail': 1});Counter({'1949-1971': 9, '1972-1990': 6, '1991-2010': 2});17,0;330587,0;55740,0;39193,0;25130,0;6160,0;273,0;2,0;0,0;0,0;734,0;11609,0;34503,0;54844,0;480,0;212,404;LINESTRING (3515839.08608109 5405675.697427834, 3515850.792761623 5405664.910067659, 3515867.958443282 5405651.79169369, 3515887.204145669 5405641.136913346, 3515903.852633597 5405634.266982128, 3515940.68623995 5405622.416688041, 3515963.621737569 5405614.096852105, 3515982.455572227 5405606.265868798, 3515997.830149863 5405597.824583332, 3516013.448657858 5405586.314740527, 3516024.329180032 5405576.815380782);[353, 294, 392, 407]
395,0;['DEBW522AA0001b92d', 'DEBW522AA00018da3', 'DEBW522AA0003ef59', 'DEBW522AA0002c1b4', 'DEBW522AA00027a65', 'DEBW522AA0003e337', 'DEBW522AA0000739d', 'DEBW522AA0000d655', 'DEBW522AA00020f71', 'DEBW522AA00000fe3', 'DEBW522AA00032862'];Counter({'residential': 9, 'non-heated': 2});Counter({'1949-1971': 9, '1972-1990': 2});11,0;49664,0;9488,0;6452,0;3649,0;605,0;20,0;0,0;0,0;0,0;82,0;1846,0;6033,0;9309,0;102,2;59,108;LINESTRING (3515468.770747404 5405668.905214368, 3515470.49235997 5405708.19913602, 3515471.048031242 5405722.568519111, 3515471.216896027 5405727.962489392);[515, 396, 397, 62]
396,0;['DEBW522AA00eff6e7'];Counter({'residential': 1});Counter({'After 2011': 1});1,0;1983,0;446,0;304,0;175,0;41,0;2,0;0,0;0,0;0,0;5,0;79,0;276,0;440,0;11,5;118,354;LINESTRING (3515471.216896027 5405727.962489392, 3515500.622287504 5405725.941734687, 3515529.945582453 5405724.387973959, 3515559.240763563 5405722.378343109, 3515589.371180661 5405721.260833351);[480, 395, 428, 397]
397,0;['DEBW522AA00c66f6a', 'DEBW522AA00c66f82', 'DEBW522AA00f4e41c'];Counter({'residential': 3});Counter({'1991-2010': 1, 'Before 1948': 1, '1972-1990': 1});3,0;129926,0;23105,0;16111,0;9975,0;1996,0;59,0;0,0;0,0;0,0;216,0;4646,0;14450,0;22665,0;35,9;75,086;LINESTRING (3515396.219352714 5405731.615346164, 3515471.216896027 5405727.962489392);[395, 396, 401, 402, 63]
399,0;['DEBW522AA0003aa12', 'DEBW522AA0002e863', 'DEBW522AA0002e862', 'DEBW522AA0000dc92', 'DEBW522AA0000dc91', 'DEBW522AA0000dc93', 'DEBW522AA000435bc', 'DEBW522AA0001da5c', 'DEBW522AA0001da5b', 'DEBW522AA000095ee', 'DEBW522AA0000358d', 'DEBW522AA00c33797'];Counter({'residential': 8, 'hall': 1, 'industry': 1, 'office and administration': 1, 'retail': 1});Counter({'1972-1990': 5, '1991-2010': 3, 'Before 1948': 2, 'After 2011': 1, '1949-1971': 1});12,0;548435,0;88391,0;61962,0;38197,0;8324,0;404,0;6,0;0,0;1,0;1189,0;18429,0;55316,0;86545,0;221,6;127,593;LINESTRING (3514370.836616475 5405699.341066713, 3514375.609656938 5405703.490142319, 3514404.31502262 5405727.940030039, 3514405.451409076 5405728.943798175, 3514409.710974914 5405732.724606874, 3514435.00964155 5405755.964894711, 3514447.515581363 5405767.595834247, 3514449.677959372 5405769.658707863, 3514459.853065628 5405778.992835781, 3514466.166590262 5405784.1023267);[398, 400, 371, 377]
400,0;['DEBW522AA000435bd', 'DEBW522AA0002ca3b', 'DEBW522AA0002ca3a', 'DEBW522AA0003a7b6', 'DEBW522AA000152d2'];Counter({'non-heated': 2, 'office and administration': 1, 'retail': 1, 'residential': 1});Counter({'1949-1971': 5});5,0;69886,0;9285,0;6770,0;4610,0;1358,0;100,0;2,0;0,0;0,0;207,0;2220,0;5906,0;9019,0;114,2;42,168;LINESTRING (3514370.836616475 5405699.341066713, 3514375.367858168 5405694.593029588, 3514398.774255692 5405667.763289039);[377, 399]
402,0;['DEBW522AA00021302'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;114241,0;20097,0;13988,0;8853,0;1923,0;69,0;0,0;0,0;0,0;201,0;3979,0;12399,0;19794,0;10,7;87,227;LINESTRING (3515309.187822383 5405737.193638287, 3515317.405819584 5405736.159574827, 3515396.219352714 5405731.615346164);[491, 492, 397, 174, 401, 63]
403,0;['DEBW522AA0003c2ec', 'DEBW522AA0003c2ee'];Counter({'office and administration': 1, 'industry': 1});Counter({'1972-1990': 2});2,0;266573,0;47078,0;35248,0;25329,0;9163,0;1062,0;36,0;4,0;8,0;2040,0;13144,0;30677,0;45475,0;15,4;35,075;LINESTRING (3514311.333229995 5405799.697391428, 3514338.552672066 5405821.81895364);[404, 405]
405,0;['DEBW522AA00009135', 'DEBW522AA00009134'];Counter({'office and administration': 2});Counter({'1972-1990': 2});2,0;136109,0;23506,0;18063,0;13397,0;5239,0;681,0;24,0;2,0;5,0;1238,0;7030,0;15631,0;22613,0;22,3;36,128;LINESTRING (3514348.902576098 5405788.583594451, 3514348.667362902 5405800.137317386, 3514341.716969578 5405808.460042384, 3514338.552672066 5405821.81895364);[528, 403, 404, 341]
406,0;['DEBW522AA0003c2e9'];Counter({'office and administration': 1});Counter({'1991-2010': 1});1,0;475408,0;82800,0;62477,0;45545,0;17001,0;2028,0;68,0;7,0;15,0;3791,0;23601,0;54281,0;79844,0;0,9;36,535;LINESTRING (3514318.793556168 5405845.066278456, 3514290.820815701 5405821.563939213);[408, 404]
409,0;['DEBW522AA0000d399'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;1477,0;356,0;209,0;109,0;24,0;1,0;0,0;0,0;0,0;2,0;45,0;185,0;362,0;25,4;42,534;LINESTRING (3514625.449910227 5405555.185152514, 3514658.220662013 5405528.069492072);[304]
410,0;['DEBW522AA000078f8', 'DEBW522AA000274a7', 'DEBW522AA0003050e', 'DEBW522AA00018382', 'DEBW522AA00017c42', 'DEBW522AA0004082a', 'DEBW522AA00011aed', 'DEBW522AA00012731'];Counter({'residential': 8});Counter({'1972-1990': 8});8,0;221339,0;38996,0;27849,0;17340,0;3408,0;92,0;0,0;0,0;0,0;406,0;8663,0;25282,0;38043,0;97,6;77,732;LINESTRING (3515766.463383651 5405568.423729443, 3515750.289873896 5405644.454601263);[454, 455, 411, 412]
411,0;['DEBW522AA00028cd9', 'DEBW522AA00036f74', 'DEBW522AA1490654', 'DEBW522AA00006116'];Counter({'residential': 4});Counter({'1972-1990': 2, 'After 2011': 1, '1949-1971': 1});4,0;130266,0;23423,0;16196,0;9827,0;1999,0;64,0;0,0;0,0;0,0;231,0;4682,0;14677,0;23003,0;67,0;55,985;LINESTRING (3515806.265848874 5405645.468085664, 3515750.289873896 5405644.454601263);[295, 410, 412, 413]
412,0;['DEBW522AA0002c41c', 'DEBW522AA0002c41b', 'DEBW522AA1481ce4', 'DEBW522AA00c4ee72', 'DEBW522AA00010522', 'DEBW522AA0001abe5'];Counter({'residential': 6});Counter({'After 2011': 5, '1972-1990': 1});6,0;118408,0;20365,0;14246,0;9070,0;2203,0;80,0;0,0;0,0;0,0;222,0;4073,0;12607,0;20022,0;132,4;55,557;LINESTRING (3515695.42961555 5405635.971729876, 3515723.146738122 5405641.387127873, 3515735.921266034 5405642.835211029, 3515750.289873896 5405644.454601263);[66, 458, 410, 411]
413,0;['DEBW522AA0003df29', 'DEBW522AA0003f4f1', 'DEBW522AA0002206b', 'DEBW522AA0001fe8c', 'DEBW522AA000387b6'];Counter({'residential': 5});Counter({'1972-1990': 4, '1949-1971': 1});5,0;231492,0;40530,0;28530,0;17293,0;3185,0;82,0;0,0;0,0;0,0;346,0;8270,0;25783,0;39677,0;78,3;71,39;LINESTRING (3515826.856909357 5405577.11192791, 3515806.265848874 5405645.468085664);[454, 295, 411, 254]
414,0;['DEBW522AA000172e9', 'DEBW522AA0002cdd0'];Counter({'residential': 2});Counter({'1991-2010': 1, '1972-1990': 1});2,0;159043,0;29472,0;20273,0;12155,0;2401,0;92,0;0,0;0,0;0,0;311,0;5970,0;18356,0;28985,0;19,8;39,675;LINESTRING (3514563.209698252 5405838.955201179, 3514592.915421868 5405865.254684937);[160, 36, 207, 153]
418,0;['DEBW522AA0001ef70', 'DEBW522AA00015533', 'DEBW522AA0002c933', 'DEBW522AA0002c951'];Counter({'residential': 2, 'office and administration': 1, 'non-heated': 1});Counter({'1972-1990': 4});4,0;288212,0;49424,0;35975,0;24305,0;7729,0;728,0;21,0;2,0;5,0;1449,0;11768,0;31392,0;47838,0;106,9;31,683;LINESTRING (3515339.044006719 5405815.019379455, 3515336.737139462 5405831.037909881, 3515334.527657441 5405846.378348929);[417, 419]
419,0;['DEBW522AA0000e3a5', 'DEBW522AA00039e8f', 'DEBW522AA0003998d', 'DEBW522AA00037370', 'DEBW522AA0000883f', 'DEBW522AA0000e26e', 'DEBW522AA0000fd7b', 'DEBW522AA00019464'];Counter({'residential': 7, 'office and administration': 1});Counter({'1972-1990': 6, '1991-2010': 2});8,0;397559,0;70337,0;48868,0;29608,0;6192,0;311,0;6,0;1,0;1,0;833,0;13996,0;44061,0;68802,0;158,8;162,125;LINESTRING (3515433.913813406 5405898.116755901, 3515412.730366805 5405905.965374995, 3515397.759845368 5405904.334077618, 3515355.568265891 5405896.267358539, 3515323.107410255 5405890.08463247, 3515320.801821405 5405889.47783117, 3515322.428722157 5405872.189686866, 3515332.329363113 5405854.924114522, 3515334.527657441 5405846.378348929);[417, 418]
422,0;['DEBW522AA00019463'];Counter({'office and administration': 1});Counter({'1972-1990': 1});1,0;159486,0;28190,0;21142,0;15353,0;5741,0;662,0;22,0;2,0;5,0;1289,0;7946,0;18486,0;27240,0;19,7;84,915;LINESTRING (3515294.091764727 5405838.29464748, 3515282.488523881 5405922.412885381);[417, 260, 325, 180]
423,0;['DEBW522AA00017c1d'];Counter({'office and administration': 1});Counter({'1949-1971': 1});1,0;12855,0;2612,0;1839,0;1230,0;393,0;45,0;1,0;0,0;0,0;90,0;660,0;1661,0;2549,0;52,6;35,431;LINESTRING (3515075.288291754 5405913.412594087, 3515072.88686944 5405918.399314125, 3515069.667056025 5405921.682384108, 3515064.743658167 5405924.549425079, 3515054.860704195 5405930.072131149, 3515046.867818346 5405932.230365084);[424, 425, 426, 25]
424,0;['DEBW522AA00017c18', 'DEBW522AA00024515', 'DEBW522AA000278fd', 'DEBW522AA0002f378', 'DEBW522AA00c56efe', 'DEBW522AA00043c79', 'DEBW522AA00043c78', 'DEBW522AA000156d2', 'DEBW522AA00020f19', 'DEBW522AA00020f1a', 'DEBW522AA000175dd', 'DEBW522AA00023bf1', 'DEBW522AA00023bf2'];Counter({'residential': 9, 'non-heated': 2, 'education': 1, 'office and administration': 1});Counter({'1949-1971': 5, '1991-2010': 3, '1972-1990': 3, 'After 2011': 1, 'Before 1948': 1});13,0;432719,0;77331,0;54667,0;35037,0;8661,0;465,0;8,0;1,0;2,0;1263,0;17150,0;49206,0;76010,0;323,3;108,259;LINESTRING (3515183.507521228 5405916.217243531, 3515091.813326122 5405913.534797779, 3515085.957055403 5405913.541313061, 3515075.288291754 5405913.412594087);[259, 453, 423, 425]
427,0;['DEBW522AA00038d38', 'DEBW522AA00038d39', 'DEBW522AA00038d30', 'DEBW522AA00038d2e', 'DEBW522AA00038d2f'];Counter({'office and administration': 3, 'industry': 2});Counter({'1972-1990': 5});5,0;157212,0;14216,0;8962,0;4964,0;1329,0;115,0;3,0;0,0;0,0;232,0;2251,0;7101,0;13588,0;137,8;122,531;LINESTRING (3514949.78241438 5406216.314622181, 3514962.448164831 5406227.847071206, 3514977.350996661 5406240.820074008, 3515009.126807165 5406269.051193259, 3515028.346592866 5406283.181293242, 3515036.310186401 5406289.040933546, 3515039.745018558 5406293.187003332, 3515041.042699135 5406296.982613756);[355, 10, 56, 441, 443, 157]
428,0;['DEBW522AA0002f657', 'DEBW522AA0002f659'];Counter({'residential': 2});Counter({'1972-1990': 2});2,0;11550,0;2195,0;1554,0;986,0;233,0;10,0;0,0;0,0;0,0;37,0;512,0;1428,0;2148,0;17,5;37,583;LINESTRING (3515589.371180661 5405721.260833351, 3515607.423849894 5405721.86698271, 3515626.915501251 5405722.922017627);[480, 68, 357, 135, 396]
429,0;['DEBW522AA00027369', 'DEBW522AA0002736a', 'DEBW522AA00020bfe', 'DEBW522AA0000be19', 'DEBW522AA000037fb'];Counter({'residential': 4, 'office and administration': 1});Counter({'1991-2010': 3, '1972-1990': 1, '1949-1971': 1});5,0;282065,0;46808,0;34680,0;23986,0;7305,0;646,0;22,0;2,0;4,0;1313,0;11754,0;30218,0;45309,0;102,9;34,521;LINESTRING (3514647.515142546 5405900.170917576, 3514624.574112192 5405925.966621464);[37, 430]
431,0;['DEBW522AA0000a368'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;17168,0;3277,0;2229,0;1283,0;248,0;11,0;0,0;0,0;0,0;31,0;620,0;2021,0;3250,0;11,3;22,84;LINESTRING (3514585.837718039 5406058.579489457, 3514570.833241705 5406075.799776652);[340, 469, 444, 30]
432,0;['DEBW522AA00014758', 'DEBW522AA0002eea0', 'DEBW522AA0002eea1', 'DEBW522AA000278d8', 'DEBW522AA00042305', 'DEBW522AA00038af9', 'DEBW522AA00038afb', 'DEBW522AA00038afa', 'DEBW522AA00036f17', 'DEBW522AA00036df9', 'DEBW522AA00036dfc', 'DEBW522AA00007901', 'DEBW522AA00007902', 'DEBW522AA0002ee9f'];Counter({'residential': 8, 'non-heated': 3, 'industry': 1, 'office and administration': 1, 'hall': 1});Counter({'1949-1971': 9, '1991-2010': 4, '1972-1990': 1});14,0;454762,0;73930,0;53101,0;34169,0;8341,0;517,0;11,0;1,0;2,0;1251,0;16650,0;47001,0;72158,0;344,3;132,24;LINESTRING (3514935.56705453 5406398.154787432, 3515016.360994619 5406311.451261884, 3515018.674579242 5406309.01090625, 3515022.248119266 5406305.239444077, 3515025.806910051 5406301.490186008);[11, 49, 433, 52, 441, 155]
438,0;['DEBW522AA0000012b', 'DEBW522AA000376af', 'DEBW522AA0001c3ed', 'DEBW522AA000209ed', 'DEBW522AA00037fc9', 'DEBW522AA0002f4d1'];Counter({'residential': 5, 'office and administration': 1});Counter({'1991-2010': 3, '1972-1990': 2, '1949-1971': 1});6,0;447699,0;74470,0;53810,0;34536,0;8227,0;467,0;9,0;1,0;2,0;1148,0;16390,0;47297,0;72511,0;85,5;93,485;LINESTRING (3514707.054458801 5405875.10484296, 3514648.299570068 5405940.362898918, 3514644.629083261 5405944.690376286);[236, 300, 430, 158, 95]
445,0;['DEBW522AA0001025d', 'DEBW522AA0001025e', 'DEBW522AA0001024c', 'DEBW522AA00010253', 'DEBW522AA00010256', 'DEBW522AA00010258', 'DEBW522AA00010251', 'DEBW522AA00010243'];Counter({'industry': 8});Counter({'1949-1971': 3, '1972-1990': 3, 'Before 1948': 2});8,0;236054,0;13971,0;6483,0;1445,0;51,0;0,0;0,0;0,0;0,0;0,0;127,0;3666,0;13016,0;107,9;325,884;LINESTRING (3515761.645173796 5406448.3862603, 3515753.903003692 5406492.335572865, 3515756.03055812 5406496.066956894, 3515783.735597543 5406499.013868266, 3515794.296372768 5406497.953731479, 3515801.029678021 5406494.14716696, 3515806.121127011 5406488.957029825, 3515810.952974027 5406476.804641963, 3515836.110992915 5406408.483543999, 3515840.805742027 5406398.098978782, 3515845.480826008 5406394.698127236, 3515854.121496545 5406394.589061611, 3515862.493427627 5406393.3783065, 3515869.63797112 5406389.706433361, 3515881.599187942 5406379.342437046, 3515909.479279585 5406318.013134123, 3515916.919738391 5406308.481579606);[440, 391, 507, 376, 379]
446,0;['DEBW522AA0003bd42', 'DEBW522AA0003bd3f', 'DEBW522AA0000bda4', 'DEBW522AA0000bda5', 'DEBW522AA0003ed7b', 'DEBW522AA0003ed7c', 'DEBW522AA0003ed7a', 'DEBW522AA00014039', 'DEBW522AA00014038', 'DEBW522AA00005c65', 'DEBW522AA00005c64', 'DEBW522AA00005c61', 'DEBW522AA00043f65', 'DEBW522AA0000d558', 'DEBW522AA0000d555', 'DEBW522AA00043f66', 'DEBW522AA000335e9', 'DEBW522AA0003bf87', 'DEBW522AA0003bf86', 'DEBW522AA000335ec', 'DEBW522AA000335ed', 'DEBW522AA000335ea', 'DEBW522AA0000cad7', 'DEBW522AA000001ed', 'DEBW522AA000001ec', 'DEBW522AA000001eb', 'DEBW522AA00041a93', 'DEBW522AA00016a20', 'DEBW522AA0000ea8a', 'DEBW522AA0001646f', 'DEBW522AA00016471', 'DEBW522AA0000ea85', 'DEBW522AA0000ea86', 'DEBW522AA0000ea88', 'DEBW522AA00029a43', 'DEBW522AA00029a42', 'DEBW522AA0003113c', 'DEBW522AA00000808', 'DEBW522AA00000809'];Counter({'residential': 22, 'non-heated': 15, 'office and administration': 1, 'education': 1});Counter({'1949-1971': 14, '1972-1990': 8, '1991-2010': 8, 'Before 1948': 7, 'After 2011': 2});39,0;742299,0;130366,0;92581,0;59454,0;14628,0;757,0;12,0;1,0;3,0;2076,0;29215,0;82862,0;127738,0;678,8;418,718;LINESTRING (3514455.802207332 5405470.952434553, 3514467.319829365 5405484.226719558, 3514483.655051005 5405510.046374356, 3514502.952637449 5405543.980650864, 3514515.76439078 5405562.529550162, 3514530.476704835 5405579.226249713, 3514546.357645154 5405595.792565777, 3514575.85498992 5405620.801411014, 3514601.984165096 5405638.250761936, 3514615.12903503 5405644.334545314, 3514629.420912778 5405650.143329789, 3514652.17702439 5405656.28558851, 3514674.761546578 5405660.581469095, 3514699.551353058 5405661.736072954, 3514722.189758916 5405659.459999389, 3514745.250555449 5405655.839530407, 3514767.78413355 5405648.725895958, 3514788.910048097 5405640.418741201);[222, 221, 447]
447,0;['DEBW522AA000061a1', 'DEBW522AA0001871c', 'DEBW522AA0001871d', 'DEBW522AA00020511', 'DEBW522AA0003914c', 'DEBW522AA0003914b', 'DEBW522AA00013abe', 'DEBW522AA0001b620', 'DEBW522AA00006af5', 'DEBW522AA0000766a', 'DEBW522AA0001f964', 'DEBW522AA00028313', 'DEBW522AA00028312', 'DEBW522AA0001eeb5', 'DEBW522AA0001eeb6', 'DEBW522AA0001eeb7', 'DEBW522AA00036717', 'DEBW522AA00036718', 'DEBW522AA00000dfc', 'DEBW522AA00000dfd', 'DEBW522AA00042d21', 'DEBW522AA00042d20'];Counter({'residential': 15, 'non-heated': 6, 'hall': 1});Counter({'1949-1971': 9, '1972-1990': 5, '1991-2010': 4, 'Before 1948': 4});22,0;534756,0;89221,0;63846,0;40234,0;8870,0;339,0;2,0;0,0;0,0;1069,0;19288,0;56405,0;87603,0;404,4;117,725;LINESTRING (3514893.361465982 5405586.281374415, 3514886.213810928 5405590.988701104, 3514878.824264446 5405595.472984062, 3514874.130062601 5405597.740285518, 3514788.910048097 5405640.418741201);[446, 303, 305, 83, 89, 222]
448,0;['DEBW522AA00034b24', 'DEBW522AA00034b26', 'DEBW522AA00019593', 'DEBW522AA00028ff2', 'DEBW522AA000173c3', 'DEBW522AA000173c4', 'DEBW522AA000173c5', 'DEBW522AA000173c1', 'DEBW522AA00004df3'];Counter({'residential': 5, 'retail': 1, 'hall': 1, 'industry': 1, 'office and administration': 1});Counter({'1949-1971': 5, '1991-2010': 4});9,0;199457,0;32986,0;22844,0;13818,0;2860,0;134,0;2,0;0,0;0,0;396,0;6646,0;20418,0;32313,0;169,6;59,397;LINESTRING (3515185.698907411 5405850.266713313, 3515141.445965654 5405810.646821492);[449, 450, 453, 460]
449,0;['DEBW522AA0003fbf6', 'DEBW522AA00043694', 'DEBW522AA00028ff1', 'DEBW522AA00039193', 'DEBW522AA00016158', 'DEBW522AA00000673', 'DEBW522AA00000672', 'DEBW522AA0001106f', 'DEBW522AA00043c7b', 'DEBW522AA0002604e', 'DEBW522AA0003fb67', 'DEBW522AA0003fb6c'];Counter({'residential': 9, 'industry': 1, 'health care': 1, 'office and administration': 1});Counter({'1949-1971': 8, '1991-2010': 2, '1972-1990': 2});12,0;6695387,0;558752,0;445783,0;363559,0;194140,0;60581,0;7496,0;1567,0;2421,0;71428,0;204544,0;383387,0;533887,0;288,9;109,393;LINESTRING (3515069.112760466 5405892.711660342, 3515073.534938952 5405887.696997384, 3515141.445965654 5405810.646821492);[448, 450, 485, 425]
450,0;['DEBW522AA0002415b', 'DEBW522AA00010aab', 'DEBW522AA0002e938', 'DEBW522AA0002092d'];Counter({'residential': 4});Counter({'1972-1990': 2, 'After 2011': 1, '1949-1971': 1});4,0;181355,0;31501,0;22140,0;13595,0;2729,0;82,0;0,0;0,0;0,0;281,0;6353,0;19711,0;30876,0;53,2;77,618;LINESTRING (3515185.471875038 5405749.290799064, 3515185.53056122 5405752.048873149, 3515184.936135898 5405757.207237724, 3515184.77066643 5405758.619110213, 3515181.66243474 5405766.784372608, 3515141.445965654 5405810.646821492);[448, 449, 170, 60]
451,0;['DEBW522AA00010242'];Counter({'non-heated': 1});Counter({'Before 1948': 1});1,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;7,5;28,583;LINESTRING (3515738.087750313 5406336.368682922, 3515757.697259928 5406315.572452732);[464, 465, 452]
452,0;['DEBW522AA0001025c', 'DEBW522AA0001025b', 'DEBW522AA0001024f', 'DEBW522AA0001024a', 'DEBW522AA00010247'];Counter({'hall': 4, 'industry': 1});Counter({'Before 1948': 5});5,0;100966,0;18509,0;13435,0;9397,0;3337,0;389,0;14,0;1,0;4,0;1059,0;6215,0;12571,0;18217,0;37,4;116,257;LINESTRING (3515757.697259928 5406315.572452732, 3515783.342382105 5406288.376635983, 3515797.167907831 5406294.409526564, 3515783.659795179 5406327.110727422, 3515757.697259928 5406315.572452732);[451]
453,0;['DEBW522AA000061ff', 'DEBW522AA00019187', 'DEBW522AA000007ae', 'DEBW522AA0003208e'];Counter({'residential': 4});Counter({'1972-1990': 2, '1991-2010': 2});4,0;171665,0;30945,0;21506,0;12909,0;2357,0;65,0;0,0;0,0;0,0;288,0;6359,0;19754,0;30308,0;42,1;65,987;LINESTRING (3515185.698907411 5405850.266713313, 3515183.507521228 5405916.217243531);[448, 259, 424, 460]
454,0;['DEBW522AA0002ab87', 'DEBW522AA1490663', 'DEBW522AA0001ca2c'];Counter({'residential': 3});Counter({'After 2011': 1, 'Before 1948': 1, '1972-1990': 1});3,0;46988,0;8873,0;5901,0;3314,0;601,0;21,0;0,0;0,0;0,0;71,0;1578,0;5390,0;8803,0;25,6;61,015;LINESTRING (3515766.463383651 5405568.423729443, 3515826.856909357 5405577.11192791);[455, 410, 413, 254]
455,0;['DEBW522AA00023251', 'DEBW522AA0001b979', 'DEBW522AA1481cd3'];Counter({'residential': 3});Counter({'After 2011': 2, 'Before 1948': 1});3,0;59556,0;11380,0;7635,0;4349,0;818,0;32,0;0,0;0,0;0,0;102,0;2122,0;6993,0;11272,0;31,0;54,032;LINESTRING (3515713.123902108 5405559.800388932, 3515766.463383651 5405568.423729443);[454, 457, 458, 410]
456,0;['DEBW522AA0000e3ef', 'DEBW522AA000133b5', 'DEBW522AA00028ecb'];Counter({'residential': 2, 'industry': 1});Counter({'1972-1990': 3});3,0;149100,0;24970,0;18094,0;12144,0;3372,0;144,0;0,0;0,0;0,0;369,0;5673,0;15882,0;24362,0;96,0;35,565;LINESTRING (3514881.14152559 5405725.056610139, 3514882.612656015 5405760.590898708);[309, 45]
457,0;['DEBW522AA0001c8e3', 'DEBW522AA00c43024'];Counter({'residential': 2});Counter({'After 2011': 2});2,0;28684,0;5263,0;3548,0;2011,0;345,0;10,0;0,0;0,0;0,0;37,0;948,0;3230,0;5201,0;21,1;56,39;LINESTRING (3515713.123902108 5405559.800388932, 3515678.366764009 5405551.707564839, 3515675.679024006 5405551.077310605, 3515666.669263995 5405548.683488132, 3515658.335013743 5405546.480613328);[65, 455, 202, 458]
458,0;['DEBW522AA0002c438', 'DEBW522AA000019fe', 'DEBW522AA00022976', 'DEBW522AA0003dc96', 'DEBW522AA0002576c', 'DEBW522AA0001bb8c', 'DEBW522AA00007476', 'DEBW522AA00027084'];Counter({'residential': 8});Counter({'After 2011': 8});8,0;223290,0;39388,0;27625,0;16449,0;2902,0;84,0;0,0;0,0;0,0;355,0;7925,0;25068,0;38515,0;97,2;78,199;LINESTRING (3515713.123902108 5405559.800388932, 3515695.42961555 5405635.971729876);[66, 455, 457, 412]
459,0;['DEBW522AA0003085b', 'DEBW522AA0003085d'];Counter({'hall': 1, 'retail': 1});Counter({'1972-1990': 1, '1991-2010': 1});2,0;287797,0;24521,0;18388,0;13172,0;4593,0;423,0;10,0;1,0;2,0;847,0;6348,0;15760,0;23548,0;47,3;83,616;LINESTRING (3514795.694418974 5406198.347279594, 3514800.387096466 5406202.040567054, 3514809.816429609 5406209.460631747, 3514824.59742562 5406196.332782527, 3514858.792701987 5406226.915878023);[27, 502]
461,0;['DEBW522AA00031654', 'DEBW522AA00011b96', 'DEBW522AA00011b95', 'DEBW522AA0002fb31', 'DEBW522AA00036e04', 'DEBW522AA0003dd2c', 'DEBW522AA0000e152', 'DEBW522AA0001fe92', 'DEBW522AA0001fe93', 'DEBW522AA00020f49', 'DEBW522AA00020f4a', 'DEBW522AA00020f4b', 'DEBW522AA00020f4d', 'DEBW522AA000332e8', 'DEBW522AA000332eb'];Counter({'residential': 10, 'non-heated': 3, 'education': 2});Counter({'1949-1971': 7, '1991-2010': 4, '1972-1990': 3, 'Before 1948': 1});15,0;377634,0;69919,0;48729,0;29983,0;6704,0;370,0;6,0;1,0;1,0;1034,0;15000,0;44074,0;68833,0;234,3;107,698;LINESTRING (3514531.875589932 5405657.830394492, 3514489.581670253 5405622.691255017, 3514479.860727502 5405619.530189191, 3514471.735757708 5405621.533215827, 3514445.737323568 5405633.109622791, 3514440.543682368 5405635.364882839);[152, 261]
462,0;['DEBW522AA0000b287', 'DEBW522AA0000b288', 'DEBW522AA0000b286', 'DEBW522AA0000b289', 'DEBW522AA0000b28a', 'DEBW522AA00ee42a3', 'DEBW522AA00ee42b7', 'DEBW522AA000440f6', 'DEBW522AA0000bb2e', 'DEBW522AA0002fbd8', 'DEBW522AA00035c03', 'DEBW522AA00035c04', 'DEBW522AA00002d95', 'DEBW522AA0002787a', 'DEBW522AA0002787b', 'DEBW522AA00019369'];Counter({'residential': 15, 'non-heated': 1});Counter({'1949-1971': 7, 'Before 1948': 5, '1991-2010': 3, '1972-1990': 1});16,0;339100,0;64582,0;44642,0;26787,0;5528,0;215,0;0,0;0,0;0,0;687,0;13051,0;40319,0;63580,0;338,3;104,845;LINESTRING (3515319.83009553 5406470.00573475, 3515379.075005906 5406543.430407261, 3515386.895135459 5406550.435586321);[360, 463, 211, 188]
463,0;['DEBW522AA00ee4355'];Counter({'residential': 1});Counter({'1949-1971': 1});1,0;50237,0;9292,0;6425,0;3906,0;804,0;30,0;0,0;0,0;0,0;102,0;1908,0;5875,0;9156,0;16,9;22,437;LINESTRING (3515388.457673769 5406572.781238854, 3515387.521986431 5406565.683705176, 3515387.090237601 5406562.368570807, 3515387.002657198 5406556.785768033, 3515386.895135459 5406550.435586321);[360, 462, 478, 287]
465,0;['DEBW522AA00010249'];Counter({'industry': 1});Counter({'Before 1948': 1});1,0;17639,0;1212,0;606,0;145,0;5,0;0,0;0,0;0,0;0,0;0,0;11,0;348,0;1113,0;14,1;111,535;LINESTRING (3515721.979135434 5406397.976420492, 3515745.787308451 5406402.113264583, 3515767.065850825 5406351.996607206, 3515738.087750313 5406336.368682922);[451, 495, 464, 477]
469,0;['DEBW522AA00000254'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;1273,0;207,0;124,0;54,0;6,0;0,0;0,0;0,0;0,0;0,0;12,0;95,0;202,0;10,1;47,15;LINESTRING (3514585.837718039 5406058.579489457, 3514565.225145208 5406039.620962572, 3514550.576324972 5406027.29472316);[288, 289, 431, 444, 285]
470,0;['DEBW522AA00024d1a', 'DEBW522AA00003104', 'DEBW522AA00003101', 'DEBW522AA00031d4f'];Counter({'residential': 3, 'non-heated': 1});Counter({'1972-1990': 2, '1949-1971': 1, 'Before 1948': 1});4,0;66033,0;12162,0;8408,0;4987,0;897,0;27,0;0,0;0,0;0,0;114,0;2507,0;7740,0;11921,0;78,7;40,738;LINESTRING (3515708.98775191 5405940.88177821, 3515704.436730197 5405918.171837428, 3515697.236486564 5405902.13800032);[232, 17, 473, 474]
473,0;['DEBW522AA000008fd', 'DEBW522AA00032150', 'DEBW522AA0002cf31', 'DEBW522AA0004383c', 'DEBW522AA0002c5cb', 'DEBW522AA000072ef', 'DEBW522AA0000a62c', 'DEBW522AA00023019', 'DEBW522AA000134e4', 'DEBW522AA00013f46', 'DEBW522AA0002393f'];Counter({'residential': 10, 'retail': 1});Counter({'1972-1990': 9, 'After 2011': 1, '1949-1971': 1});11,0;368809,0;62154,0;43671,0;26620,0;5439,0;228,0;2,0;0,0;1,0;699,0;12881,0;39463,0;60967,0;160,1;105,286;LINESTRING (3515671.490837116 5406038.74986131, 3515705.143948907 5405962.24489388, 3515708.98775191 5405940.88177821);[111, 16, 470, 474]
474,0;['DEBW522AA00024d1e', 'DEBW522AA000420a2', 'DEBW522AA000029ee', 'DEBW522AA0003ec4b'];Counter({'residential': 4});Counter({'Before 1948': 3, '1949-1971': 1});4,0;122868,0;20038,0;14158,0;9259,0;2348,0;96,0;0,0;0,0;0,0;268,0;4217,0;12500,0;19728,0;50,4;56,284;LINESTRING (3515765.271995329 5405940.961597498, 3515708.98775191 5405940.88177821);[234, 112, 496, 470, 473]
475,0;['DEBW522AA00ee431b', 'DEBW522AA00ee4309', 'DEBW522AA00ee4369', 'DEBW522AA00ee432d', 'DEBW522AA00ee42f5'];Counter({'residential': 5});Counter({'Before 1948': 4, '1972-1990': 1});5,0;240070,0;43556,0;30805,0;19507,0;4516,0;204,0;1,0;0,0;0,0;607,0;9630,0;27709,0;42756,0;180,6;90,229;LINESTRING (3515230.505304283 5406594.124976994, 3515251.391596428 5406605.39125202, 3515256.79751914 5406608.630918171, 3515271.212051743 5406616.821517658, 3515300.217157851 5406635.961228138, 3515308.081922204 5406640.052811109);[354, 471, 472, 479]
478,0;['DEBW522AA00ee4341', 'DEBW522AA00ee438f', 'DEBW522AA00ee437d', 'DEBW522AA00006eb4', 'DEBW522AA00006eb1', 'DEBW522AA00026d9b'];Counter({'residential': 6});Counter({'1972-1990': 5, '1949-1971': 1});6,0;161027,0;30876,0;21069,0;12504,0;2555,0;109,0;0,0;0,0;0,0;344,0;6137,0;19296,0;30499,0;148,3;58,287;LINESTRING (3515383.978865559 5406630.807611369, 3515385.578528358 5406623.472367406, 3515387.25595414 5406601.146708833, 3515388.457673769 5406572.781238854);[483, 463, 242, 287]
479,0;['DEBW522AA00ee42dd', 'DEBW522AA00ee42cb'];Counter({'residential': 2});Counter({'1949-1971': 1, '1972-1990': 1});2,0;192835,0;33865,0;24170,0;15521,0;3538,0;123,0;1,0;0,0;0,0;422,0;7544,0;21570,0;33148,0;54,8;70,096;LINESTRING (3515308.081922204 5406640.052811109, 3515326.135387028 5406647.374940437, 3515348.789661398 5406656.767017289, 3515358.866219823 5406658.006710594, 3515363.965049811 5406657.976171967, 3515368.513596231 5406657.67723691, 3515374.637378042 5406656.281673072);[483, 466, 471, 475]
480,0;['DEBW522AA0000d948', 'DEBW522AA0002505c', 'DEBW522AA0001e4b8', 'DEBW522AA0000ccd9', 'DEBW522AA0002bde8', 'DEBW522AA0002f658', 'DEBW522AA00031690', 'DEBW522AA0000bac0', 'DEBW522AA0000bac1', 'DEBW522AA0001b309', 'DEBW522AA0001eb8b', 'DEBW522AA000135a4', 'DEBW522AA00007831', 'DEBW522AA00025e5d', 'DEBW522AA00024f06', 'DEBW522AA0003a563', 'DEBW522AA0003efb2', 'DEBW522AA0003685d'];Counter({'residential': 13, 'non-heated': 5});Counter({'1949-1971': 8, 'Before 1948': 4, '1972-1990': 4, '1991-2010': 2});18,0;113051,0;21564,0;14777,0;8878,0;1869,0;82,0;0,0;0,0;0,0;259,0;4416,0;13622,0;21273,0;246,1;73,34;LINESTRING (3515556.839210123 5405676.754869055, 3515589.490612512 5405680.826552763, 3515589.497955515 5405715.28940644, 3515589.371180661 5405721.260833351);[521, 522, 428, 396]
485,0;['DEBW522AA00043699'];Counter({'health care': 1});Counter({'1991-2010': 1});1,0;11411,0;1537,0;1131,0;762,0;256,0;30,0;0,0;0,0;0,0;61,0;409,0;1016,0;1488,0;16,3;32,398;LINESTRING (3515039.179746283 5405889.095107296, 3515047.050365392 5405885.969040181, 3515054.486691482 5405885.877751986, 3515060.038810776 5405886.960209988, 3515065.271217139 5405889.443015471, 3515069.112760466 5405892.711660342);[449, 425, 426, 308]
487,0;['DEBW522AA0003ee1f', 'DEBW522AA00015f17'];Counter({'residential': 2});Counter({'1991-2010': 1, 'After 2011': 1});2,0;116890,0;20724,0;14551,0;9020,0;1944,0;72,0;0,0;0,0;0,0;218,0;4323,0;13072,0;20325,0;28,8;66,892;LINESTRING (3515333.893481765 5405553.425924376, 3515331.87203636 5405567.143260155, 3515330.913725098 5405573.646211389, 3515324.439446667 5405619.645700944);[493, 383, 61]
489,0;['DEBW522AA00023e70', 'DEBW522AA00032325', 'DEBW522AA00029102', 'DEBW522AA0002910c'];Counter({'residential': 2, 'non-heated': 2});Counter({'1949-1971': 3, '1991-2010': 1});4,0;321815,0;61268,0;43572,0;28316,0;7563,0;457,0;5,0;0,0;0,0;1217,0;14613,0;39490,0;60206,0;67,5;80,716;LINESTRING (3515488.456776671 5406466.475831361, 3515547.176215438 5406479.393422415, 3515567.287758925 5406483.819535716);[488, 239, 241, 509]
490,0;['DEBW522AA0003aa54'];Counter({'residential': 1});Counter({'Before 1948': 1});1,0;369,0;83,0;51,0;28,0;6,0;0,0;0,0;0,0;0,0;1,0;13,0;47,0;83,0;8,3;18,346;LINESTRING (3514834.89065505 5405770.328712435, 3514834.732520819 5405774.565252643, 3514826.391888335 5405785.941880889);[43, 4, 301]
492,0;['DEBW522AA00033a4e'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;91160,0;17128,0;11835,0;7173,0;1490,0;58,0;1,0;0,0;0,0;199,0;3544,0;10826,0;16845,0;13,5;24,702;LINESTRING (3515312.289295467 5405712.692225428, 3515310.918522709 5405724.965663166, 3515310.227092147 5405730.624178768, 3515309.187822383 5405737.193638287);[491, 493, 174, 402]
493,0;['DEBW522AA0003bf0c', 'DEBW522AA00011ba5', 'DEBW522AA000335be', 'DEBW522AA00022a58', 'DEBW522AA0000e20b'];Counter({'residential': 5});Counter({'1991-2010': 5});5,0;221190,0;38304,0;26992,0;16489,0;3046,0;69,0;0,0;0,0;0,0;320,0;7889,0;24368,0;37365,0;64,0;93,836;LINESTRING (3515324.439446667 5405619.645700944, 3515318.780776209 5405663.000714981, 3515312.289295467 5405712.692225428);[492, 61, 487]
496,0;['DEBW522AA00023e8b', 'DEBW522AA0003c7ee', 'DEBW522AA00020ace', 'DEBW522AA00020acf'];Counter({'industry': 2, 'retail': 1, 'non-heated': 1});Counter({'1949-1971': 3, 'Before 1948': 1});4,0;14712,0;1735,0;1149,0;666,0;172,0;17,0;1,0;0,0;0,0;30,0;266,0;942,0;1688,0;35,7;57,095;LINESTRING (3515822.093859443 5405935.383092874, 3515765.271995329 5405940.961597498);[229, 234, 110, 112, 474]
497,0;['DEBW522AA0000e70b'];Counter({'residential': 1});Counter({'1972-1990': 1});1,0;8206,0;1591,0;1073,0;623,0;136,0;6,0;0,0;0,0;0,0;16,0;288,0;978,0;1585,0;26,0;47,614;LINESTRING (3515364.609890358 5405975.593303612, 3515374.267190742 5405982.81477088, 3515391.335374746 5405993.815325933, 3515399.739123091 5406005.314847745, 3515400.33206356 5406006.128279264);[494, 272, 179, 182]
498,0;['DEBW522AA00013ad2', 'DEBW522AA00027f53', 'DEBW522AA0001c96e', 'DEBW522AA00017911', 'DEBW522AA00017d39', 'DEBW522AA00c2466b', 'DEBW522AA00c2467c', 'DEBW522AA00025e54', 'DEBW522AA00016abc'];Counter({'residential': 8, 'hall': 1});Counter({'After 2011': 6, '1972-1990': 2, '1991-2010': 1});9,0;161657,0;29729,0;20715,0;12593,0;2618,0;110,0;1,0;0,0;0,0;348,0;6249,0;18885,0;29225,0;183,2;144,63;LINESTRING (3515296.075738596 5405708.600157613, 3515304.399185197 5405644.523527974, 3515315.451017881 5405571.624575219, 3515316.217529558 5405565.387993678);[140, 12, 516]
501,0;['DEBW522AA0001351d', 'DEBW522AA000351a0'];Counter({'hall': 1, 'industry': 1});Counter({'1972-1990': 1, '1949-1971': 1});2,0;4119,0;701,0;420,0;202,0;35,0;2,0;0,0;0,0;0,0;5,0;75,0;352,0;686,0;24,9;49,662;LINESTRING (3515294.61125974 5405720.217226977, 3515288.006158874 5405719.898995453, 3515275.652568663 5405720.41030908, 3515244.992795076 5405721.661519114);[516, 205, 175, 499, 500]
502,0;['DEBW522AA0003085a', 'DEBW522AA000258b6', 'DEBW522A00c9b481', 'DEBW522AA00c9b481'];Counter({'office and administration': 2, 'non-heated': 1, 'residential': 1});Counter({'1972-1990': 2, 'After 2011': 2});4,0;364452,0;62137,0;47536,0;35474,0;14451,0;2088,0;77,0;8,0;16,0;3279,0;18249,0;40798,0;59801,0;74,6;75,165;LINESTRING (3514795.694418974 5406198.347279594, 3514833.705630067 5406155.56634689, 3514845.614678308 5406142.152956539);[299, 459, 503, 27]
503,0;['DEBW522AA000243c1', 'DEBW522AA000258bc', 'DEBW522AA000258bb', 'DEBW522A00c9b46f', 'DEBW522A00c9b45d', 'DEBW522AA00c9b45d', 'DEBW522AA00c9b46f'];Counter({'office and administration': 2, 'non-heated': 2, 'residential': 2, 'hall': 1});Counter({'After 2011': 4, '1991-2010': 1, '1972-1990': 1, '1949-1971': 1});7,0;337965,0;61643,0;45725,0;32645,0;11704,0;1340,0;41,0;4,0;9,0;2633,0;17177,0;40233,0;59739,0;170,1;124,183;LINESTRING (3514845.614678308 5406142.152956539, 3514834.036676426 5406133.125789056, 3514781.63709384 5406087.115105759, 3514764.117105416 5406071.544648437, 3514761.611052336 5406068.935837539, 3514752.90632679 5406059.67173536);[299, 366, 246, 502, 122]
504,0;['DEBW522AA00005343', 'DEBW522AA00005342', 'DEBW522AA00024adc', 'DEBW522AA00024adb'];Counter({'health care': 2, 'non-heated': 1, 'hall': 1});Counter({'1972-1990': 2, '1949-1971': 1, '1991-2010': 1});4,0;1415316,0;123039,0;96334,0;76129,0;37160,0;9146,0;825,0;136,0;240,0;12566,0;42928,0;83836,0;118107,0;37,7;41,643;LINESTRING (3515571.592194966 5406470.909278598, 3515581.931212928 5406430.57001394);[488, 506]
508,0;['DEBW522AA00010255', 'DEBW522AA00010244', 'DEBW522AA00010241'];Counter({'industry': 3});Counter({'1949-1971': 1, '1972-1990': 1, 'Before 1948': 1});3,0;48776,0;3706,0;1840,0;515,0;29,0;0,0;0,0;0,0;0,0;0,0;64,0;1159,0;3533,0;38,6;145,8;LINESTRING (3515701.055056005 5406587.091192097, 3515715.490912083 5406490.192890764, 3515715.987180631 5406467.730575865, 3515718.416201975 5406442.482388151);[1, 523, 495, 507]
509,0;['DEBW522AA000354fb', 'DEBW522AA000354fa', 'DEBW522AA00009fe1', 'DEBW522AA00023ef2', 'DEBW522AA000146f3', 'DEBW522AA000272a8', 'DEBW522AA00041a12', 'DEBW522AA00041a11', 'DEBW522AA00004438'];Counter({'residential': 4, 'non-heated': 3, 'event location': 1, 'health care': 1});Counter({'1972-1990': 4, '1949-1971': 3, '1991-2010': 2});9,0;984354,0;93605,0;71997,0;55125,0;25571,0;6568,0;664,0;122,0;201,0;8459,0;30454,0;62947,0;90187,0;152,4;107,297;LINESTRING (3515488.456776671 5406466.475831361, 3515504.69928688 5406397.939639427, 3515509.982337387 5406376.491385651, 3515524.351466502 5406379.922873275);[489, 239]
510,0;['DEBW522AA0001f8b2', 'DEBW522AA00013b9e'];Counter({'residential': 2});Counter({'Before 1948': 1, '1972-1990': 1});2,0;21322,0;4497,0;2980,0;1742,0;402,0;24,0;0,0;0,0;0,0;61,0;873,0;2736,0;4457,0;548,1;158,46;LINESTRING (3514933.300519964 5406454.841765687, 3514919.030663804 5406447.163977158, 3514905.211153989 5406438.653372359, 3514879.738711893 5406421.90489898, 3514835.412649206 5406391.41722731, 3514802.380496057 5406365.897214849);[107, 437]
511,0;['DEBW522AA0001830b', 'DEBW522AA0001830d', 'DEBW522AA0001830c', 'DEBW522AA000266c9', 'DEBW522AA000266ca', 'DEBW522AA00021a2c', 'DEBW522AA00037ced', 'DEBW522AA0002092c', 'DEBW522AA00040bf0', 'DEBW522AA00040bed', 'DEBW522AA00040bef'];Counter({'residential': 4, 'non-heated': 3, 'office and administration': 2, 'industry': 1, 'retail': 1});Counter({'1949-1971': 7, '1972-1990': 3, '1991-2010': 1});11,0;406348,0;60993,0;43772,0;28541,0;7328,0;432,0;11,0;1,0;1,0;967,0;12978,0;38076,0;59373,0;195,0;58,754;LINESTRING (3515230.083873716 5405811.053178486, 3515226.900825137 5405811.556100771, 3515224.158142504 5405812.249268656, 3515221.853779304 5405813.88887869, 3515208.044691443 5405828.286062708, 3515192.197239049 5405843.812073343, 3515190.020865585 5405847.042292401, 3515188.16009401 5405850.40681292);[460, 5]
512,0;['DEBW522AA0000e78c', 'DEBW522AA00015ded', 'DEBW522AA000086ca'];Counter({'residential': 2, 'office and administration': 1});Counter({'1991-2010': 1, 'After 2011': 1, '1972-1990': 1});3,0;422226,0;75405,0;55865,0;38816,0;12891,0;1350,0;42,0;4,0;9,0;2666,0;19762,0;48756,0;73325,0;62,0;85,051;LINESTRING (3515506.727669236 5405923.472119496, 3515529.855193303 5405927.417100637, 3515530.993987629 5405919.480116153, 3515518.401270872 5405886.973071017, 3515501.092060358 5405894.075855519);[513, 514, 334]
513,0;['DEBW522AA00010194'];Counter({'residential': 1});Counter({'1991-2010': 1});1,0;53879,0;9274,0;6858,0;4748,0;1405,0;81,0;1,0;0,0;0,0;226,0;2438,0;6061,0;8990,0;12,0;29,94;LINESTRING (3515506.727669236 5405923.472119496, 3515505.630978193 5405916.151716032, 3515501.092060358 5405894.075855519);[512, 514, 334]
515,0;['DEBW522AA000270e8', 'DEBW522AA00040b6d', 'DEBW522AA0000c955', 'DEBW522AA000136ba'];Counter({'residential': 4});Counter({'1949-1971': 3, 'Before 1948': 1});4,0;36379,0;6519,0;4565,0;3001,0;826,0;44,0;0,0;0,0;0,0;101,0;1395,0;4055,0;6442,0;38,1;30,385;LINESTRING (3515498.119113964 5405674.357350654, 3515480.337764504 5405673.896870526, 3515468.770747404 5405668.905214368);[517, 520, 395, 62]
517,0;['DEBW522AA00001015', 'DEBW522AA0000896b', 'DEBW522AA0002c1b3', 'DEBW522AA00027a64', 'DEBW522AA000135d1', 'DEBW522AA00014655', 'DEBW522AA0004402f', 'DEBW522AA00018d70'];Counter({'residential': 6, 'non-heated': 2});Counter({'1972-1990': 4, '1949-1971': 4});8,0;38565,0;7526,0;5020,0;2808,0;476,0;17,0;0,0;0,0;0,0;65,0;1407,0;4705,0;7422,0;52,0;43,075;LINESTRING (3515498.119113964 5405674.357350654, 3515500.476912906 5405717.367328089);[520, 515]
518,0;['DEBW522AA00005afc', 'DEBW522AA0000896a', 'DEBW522AA00008c9e', 'DEBW522AA00003310', 'DEBW522AA00042946', 'DEBW522AA000135d0', 'DEBW522AA00c9b587', 'DEBW522AA0001d174'];Counter({'residential': 7, 'non-heated': 1});Counter({'1991-2010': 3, '1972-1990': 3, '1949-1971': 1, 'After 2011': 1});8,0;50676,0;9932,0;6614,0;3781,0;699,0;27,0;0,0;0,0;0,0;100,0;1895,0;6169,0;9806,0;55,8;41,408;LINESTRING (3515527.96845852 5405673.994936571, 3515529.654519408 5405715.368338508);[520, 521]
520,0;['DEBW522AA0000fc82', 'DEBW522AA0002d81e'];Counter({'residential': 2});Counter({'1991-2010': 1, '1949-1971': 1});2,0;22735,0;4411,0;3002,0;1858,0;457,0;27,0;0,0;0,0;0,0;66,0;902,0;2736,0;4377,0;18,2;29,852;LINESTRING (3515527.96845852 5405673.994936571, 3515498.119113964 5405674.357350654);[515, 517, 518, 521]
521,0;['DEBW522AA0002505d', 'DEBW522AA000292e3', 'DEBW522AA0003d405', 'DEBW522AA0003d404', 'DEBW522AA0002820b', 'DEBW522AA00036e7d', 'DEBW522AA00042caf', 'DEBW522AA0003152f'];Counter({'non-heated': 4, 'residential': 4});Counter({'1949-1971': 3, '1972-1990': 2, 'Before 1948': 2, '1991-2010': 1});8,0;41905,0;7904,0;5551,0;3520,0;846,0;40,0;0,0;0,0;0,0;123,0;1769,0;5057,0;7780,0;117,9;29,002;LINESTRING (3515527.96845852 5405673.994936571, 3515556.839210123 5405676.754869055);[480, 518, 520, 522]
522,0;['DEBW522AA00008fc4', 'DEBW522AA000292e2', 'DEBW522AA00031691', 'DEBW522AA0003312e', 'DEBW522AA00037537', 'DEBW522AA00024f08', 'DEBW522AA0000ea4e'];Counter({'residential': 5, 'non-heated': 2});Counter({'1972-1990': 3, '1949-1971': 1, 'Before 1948': 1, '1991-2010': 1, 'After 2011': 1});7,0;36715,0;7182,0;4782,0;2700,0;486,0;18,0;0,0;0,0;0,0;68,0;1348,0;4454,0;7084,0;53,7;36,393;LINESTRING (3515558.854960863 5405713.09154844, 3515556.839210123 5405676.754869055);[480, 521]
523,0;['DEBW522AA00010260'];Counter({'industry': 1});Counter({'1972-1990': 1});1,0;2736,0;337,0;202,0;80,0;7,0;0,0;0,0;0,0;0,0;0,0;13,0;142,0;321,0;17,9;39,862;LINESTRING (3515701.055056005 5406587.091192097, 3515685.073800491 5406585.011462835, 3515675.423488519 5406583.705648065, 3515662.345119382 5406578.687114656);[1, 100, 327, 508]
524,0;['DEBW522AA00c43eba', 'DEBW522AA0000912f', 'DEBW522AA00009133'];Counter({'residential': 1, 'office and administration': 1, 'non-heated': 1});Counter({'1972-1990': 2, 'After 2011': 1});3,0;305711,0;53865,0;40077,0;28704,0;10553,0;1342,0;45,0;5,0;9,0;2229,0;14616,0;34793,0;52156,0;27,0;56,764;LINESTRING (3514352.980114012 5405742.743694366, 3514335.200192085 5405727.362986611, 3514313.283288416 5405752.37300435);[525, 526]
526,0;['DEBW522AA0003c2ed'];Counter({'office and administration': 1});Counter({'1991-2010': 1});1,0;8669,0;1748,0;1195,0;777,0;254,0;32,0;1,0;0,0;0,0;50,0;393,0;1052,0;1732,0;17,4;49,734;LINESTRING (3514337.838394723 5405779.169556572, 3514328.563208992 5405771.283626062, 3514352.980114012 5405742.743694366);[524, 525, 527, 528]
1,0;;;;;;;;;;;;;;;;;;;3,977;LINESTRING (3515701.055056005 5406587.091192097, 3515704.931784209 5406587.980561495);[2, 3, 523, 508]
6,0;;;;;;;;;;;;;;;;;;;32,659;LINESTRING (3515286.281740218 5405543.276522732, 3515303.067559122 5405547.881665675, 3515310.822791263 5405549.582004875, 3515313.672325506 5405550.179162683, 3515317.975943206 5405551.102783599);[8, 12, 7]
7,0;;;;;;;;;;;;;;;;;;;115,513;LINESTRING (3515214.393842836 5405458.653662024, 3515221.672702768 5405465.367987646, 3515284.567555505 5405525.089639358, 3515286.635345331 5405529.432307395, 3515287.705547663 5405535.818457084, 3515286.281740218 5405543.276522732);[8, 139, 6]
8,0;;;;;;;;;;;;;;;;;;;161,108;LINESTRING (3515129.367609127 5405506.754336191, 3515273.723991063 5405540.351014267, 3515286.281740218 5405543.276522732);[6, 7, 139, 140]
9,0;;;;;;;;;;;;;;;;;;;11,01;LINESTRING (3514947.640825185 5406231.444105566, 3514939.128985028 5406224.459951276);[10, 11, 299, 48]
10,0;;;;;;;;;;;;;;;;;;;16,64;LINESTRING (3514947.640825185 5406231.444105566, 3514946.269207628 5406227.792889147, 3514945.691876949 5406223.854649403, 3514946.560626833 5406220.431805479, 3514949.78241438 5406216.314622181);[355, 9, 11, 427, 56]
12,0;;;;;;;;;;;;;;;;;;;14,393;LINESTRING (3515316.217529558 5405565.387993678, 3515317.014102271 5405558.906840482, 3515317.975943206 5405551.102783599);[140, 498, 6]
22,0;;;;;;;;;;;;;;;;;;;31,035;LINESTRING (3514532.187042753 5406080.537177456, 3514545.111093739 5406086.397821848, 3514555.18285534 5406087.113378423, 3514561.885900542 5406086.341179474);[23, 24, 30, 31]
23,0;;;;;;;;;;;;;;;;;;;43,604;LINESTRING (3514532.187042753 5406080.537177456, 3514547.661639339 5406094.566963766, 3514564.153351705 5406110.189679203);[32, 22, 24, 31]
30,0;;;;;;;;;;;;;;;;;;;13,827;LINESTRING (3514570.833241705 5406075.799776652, 3514561.885900542 5406086.341179474);[431, 340, 22, 31]
31,0;;;;;;;;;;;;;;;;;;;24,046;LINESTRING (3514561.885900542 5406086.341179474, 3514562.057827471 5406096.561480797, 3514562.439826922 5406102.267352195, 3514564.153351705 5406110.189679203);[32, 22, 23, 30]
36,0;;;;;;;;;;;;;;;;;;;24,655;LINESTRING (3514576.474580911 5405883.627769752, 3514592.915421868 5405865.254684937);[160, 37, 38, 414]
38,0;;;;;;;;;;;;;;;;;;;39,62;LINESTRING (3514546.930790977 5405857.228705967, 3514576.474580911 5405883.627769752);[36, 37, 153, 154]
40,0;;;;;;;;;;;;;;;;;;;4,434;LINESTRING (3514291.815741734 5405646.850444937, 3514288.700764039 5405643.695391214);[41, 42, 349]
42,0;;;;;;;;;;;;;;;;;;;6,848;LINESTRING (3514296.616412985 5405651.733483239, 3514291.815741734 5405646.850444937);[40, 41, 346]
43,0;;;;;;;;;;;;;;;;;;;2,098;LINESTRING (3514834.89065505 5405770.328712435, 3514834.61691521 5405768.248433192);[490, 44, 45, 46, 47]
51,0;;;;;;;;;;;;;;;;;;;33,137;LINESTRING (3514132.437264139 5405694.888872999, 3514111.007320372 5405669.613480274);[380, 381, 55]
52,0;;;;;;;;;;;;;;;;;;;26,597;LINESTRING (3514961.42144247 5406401.114943019, 3514952.522087863 5406401.814092514, 3514948.113042584 5406402.080375904, 3514944.49935459 5406401.648178278, 3514940.212089184 5406400.324540908, 3514935.56705453 5406398.154787432);[432, 49, 433, 53, 54]
55,0;;;;;;;;;;;;;;;;;;;25,537;LINESTRING (3514132.437264139 5405694.888872999, 3514125.845127862 5405698.152884533, 3514117.371329196 5405701.63459, 3514109.000721107 5405704.994240507);[51, 380, 381]
56,0;;;;;;;;;;;;;;;;;;;17,344;LINESTRING (3514949.78241438 5406216.314622181, 3514956.613879632 5406208.659566579, 3514959.274288612 5406205.664078303, 3514961.322999262 5406203.36756228);[355, 10, 427, 14, 57]
58,0;;;;;;;;;;;;;;;;;;;11,016;LINESTRING (3515052.548205913 5405745.341198841, 3515053.150702737 5405756.341111489);[59, 60]
61,0;;;;;;;;;;;;;;;;;;;25,792;LINESTRING (3515344.588483964 5405627.685296311, 3515337.285047912 5405619.336008076, 3515332.17192819 5405616.174917251, 3515328.694740298 5405616.710341427, 3515324.439446667 5405619.645700944);[487, 493, 62, 63]
70,0;;;;;;;;;;;;;;;;;;;42,669;LINESTRING (3515758.239997768 5406284.458417303, 3515774.441726208 5406265.865695114, 3515779.5074131 5406262.065542545, 3515784.434860226 5406260.400169393, 3515790.908169879 5406260.318277166);[69, 71, 74, 81]
71,0;;;;;;;;;;;;;;;;;;;50,429;LINESTRING (3515837.643534136 5406279.143652192, 3515801.521458857 5406264.262588669, 3515796.040072863 5406261.722786245, 3515790.908169879 5406260.318277166);[69, 70, 329, 208]
72,0;;;;;;;;;;;;;;;;;;;2,893;LINESTRING (3515693.344296803 5406290.993608597, 3515695.758689475 5406289.398981838);[73, 74]
75,0;;;;;;;;;;;;;;;;;;;13,595;LINESTRING (3515391.429179946 5406670.873462771, 3515404.850515882 5406668.708367087);[484, 76, 77, 467]
77,0;;;;;;;;;;;;;;;;;;;24,094;LINESTRING (3515412.619832601 5406691.49364133, 3515408.520644548 5406677.959689966, 3515404.850515882 5406668.708367087);[75, 76, 78, 79]
78,0;;;;;;;;;;;;;;;;;;;19,769;LINESTRING (3515419.31323103 5406710.094610904, 3515412.619832601 5406691.49364133);[77, 79, 80, 87]
79,0;;;;;;;;;;;;;;;;;;;10,604;LINESTRING (3515412.619832601 5406691.49364133, 3515423.179896818 5406690.532889801);[77, 78]
80,0;;;;;;;;;;;;;;;;;;;86,455;LINESTRING (3515419.31323103 5406710.094610904, 3515431.062317064 5406725.606815848, 3515475.36293439 5406720.501992095, 3515479.551935038 5406720.024226587, 3515484.949358264 5406718.259800507, 3515488.874833639 5406714.767620137, 3515489.38434038 5406711.165935561, 3515489.805655792 5406707.575128486);[78, 87]
81,0;;;;;;;;;;;;;;;;;;;40,98;LINESTRING (3515758.239997768 5406284.458417303, 3515731.291557201 5406315.331630948);[70, 73, 74, 82]
82,0;;;;;;;;;;;;;;;;;;;25,618;LINESTRING (3515714.44891296 5406334.634406105, 3515731.291557201 5406315.331630948);[73, 203, 81, 476]
84,0;;;;;;;;;;;;;;;;;;;163,84;LINESTRING (3515064.528483836 5405508.303849726, 3515059.343794081 5405507.077806352, 3515048.659380602 5405504.269030584, 3515021.41346526 5405498.024194473, 3514970.892665429 5405487.14686742, 3514914.073562237 5405473.68441738, 3514909.58625733 5405472.705017455, 3514904.849252686 5405471.669355827);[83, 85, 88, 89, 90]
85,0;;;;;;;;;;;;;;;;;;;60,757;LINESTRING (3515024.886883832 5405482.409007384, 3515051.956212886 5405488.764593131, 3515068.230382039 5405492.478009354, 3515066.562573429 5405500.602711993, 3515064.528483836 5405508.303849726);[442, 83, 84]
86,0;;;;;;;;;;;;;;;;;;;58,532;LINESTRING (3515505.784549462 5405444.670827654, 3515492.877657454 5405501.761879941);[345]
87,0;;;;;;;;;;;;;;;;;;;6,163;LINESTRING (3515425.406300014 5406709.166085596, 3515419.31323103 5406710.094610904);[80, 78]
88,0;;;;;;;;;;;;;;;;;;;83,935;LINESTRING (3514904.849252686 5405471.669355827, 3514894.62611362 5405469.440370577, 3514822.925437407 5405453.403928217);[89, 90, 84]
89,0;;;;;;;;;;;;;;;;;;;115,221;LINESTRING (3514893.361465982 5405586.281374415, 3514893.777611838 5405573.427039376, 3514894.112389314 5405569.102005082, 3514897.493400115 5405538.284606192, 3514904.849252686 5405471.669355827);[303, 305, 83, 84, 88, 90, 447]
90,0;;;;;;;;;;;;;;;;;;;16,218;LINESTRING (3514906.729051719 5405455.560564334, 3514905.707272349 5405464.009524777, 3514904.849252686 5405471.669355827);[442, 84, 88, 89]
93,0;;;;;;;;;;;;;;;;;;;19,774;LINESTRING (3514678.688524719 5405974.793805263, 3514693.717918797 5405987.64404433);[96, 94, 95]
98,0;;;;;;;;;;;;;;;;;;;25,94;LINESTRING (3514636.416704105 5405977.619393225, 3514636.469502594 5405971.447583717, 3514636.0355557 5405965.963985308, 3514634.616603643 5405960.633510516, 3514630.30856004 5405953.015785838);[99, 138, 374, 91]
99,0;;;;;;;;;;;;;;;;;;;22,821;LINESTRING (3514636.651234306 5406000.439527643, 3514636.416704105 5405977.619393225);[98, 394, 148, 91]
101,0;;;;;;;;;;;;;;;;;;;12,013;LINESTRING (3515695.203974566 5406374.937413829, 3515691.811307825 5406371.669586855, 3515691.058276399 5406367.697413712, 3515690.986549996 5406364.438864949);[100, 102, 204, 206]
105,0;;;;;;;;;;;;;;;;;;;40,871;LINESTRING (3514182.482906845 5405757.134684574, 3514167.829840215 5405737.113983139, 3514157.492611355 5405724.821897388);[106, 107, 381]
106,0;;;;;;;;;;;;;;;;;;;45,789;LINESTRING (3514214.107519728 5405789.709013404, 3514196.623709868 5405767.54591823, 3514182.482906845 5405757.134684574);[161, 105, 107, 436]
117,0;;;;;;;;;;;;;;;;;;;55,751;LINESTRING (3515803.256785599 5405487.246413969, 3515777.417560886 5405490.621193548, 3515747.790501076 5405492.59539637);[187, 118]
118,0;;;;;;;;;;;;;;;;;;;75,007;LINESTRING (3515672.973089957 5405488.416143491, 3515682.279050021 5405490.032358121, 3515747.790501076 5405492.59539637);[202, 117]
123,0;;;;;;;;;;;;;;;;;;;8,96;LINESTRING (3514486.653925898 5405740.907005315, 3514489.108404165 5405746.529245342, 3514490.755811263 5405748.824340257);[261, 119, 124, 125]
125,0;;;;;;;;;;;;;;;;;;;10,148;LINESTRING (3514497.783946033 5405756.070868142, 3514493.245661892 5405752.122463831, 3514490.755811263 5405748.824340257);[370, 123, 124]
127,0;;;;;;;;;;;;;;;;;;;50,37;LINESTRING (3514201.348558642 5405744.237919726, 3514206.512169563 5405739.246690596, 3514207.536047113 5405738.259543602, 3514219.959002718 5405724.77940873, 3514237.098497971 5405708.797986632);[131, 132, 116, 126]
128,0;;;;;;;;;;;;;;;;;;;9,78;LINESTRING (3514567.787602732 5405787.834446876, 3514566.466199229 5405784.517076711, 3514566.239995414 5405783.904856264, 3514564.969478926 5405780.798910172, 3514564.13707676 5405778.761679337);[129, 130, 291, 292, 275]
130,0;;;;;;;;;;;;;;;;;;;23,257;LINESTRING (3514591.010628369 5405786.582457589, 3514569.345547651 5405787.771761679, 3514567.787602732 5405787.834446876);[128, 129, 313, 159]
133,0;;;;;;;;;;;;;;;;;;;15,283;LINESTRING (3515782.388375025 5405748.678275315, 3515779.641677127 5405742.910072239, 3515777.777005259 5405739.66873119, 3515775.261879639 5405735.168932869);[134, 198, 200, 199, 135]
136,0;;;;;;;;;;;;;;;;;;;50,992;LINESTRING (3514534.475267558 5405894.49504777, 3514527.869538286 5405888.795329586, 3514520.788251725 5405882.293705751, 3514515.486165349 5405875.396343673, 3514513.140436681 5405867.528005673, 3514514.344218679 5405859.479784016, 3514516.452142692 5405856.994208979, 3514519.164949497 5405853.598306382);[137, 138]
138,0;;;;;;;;;;;;;;;;;;;149,244;LINESTRING (3514630.30856004 5405953.015785838, 3514620.360939727 5405944.026673579, 3514610.778470673 5405933.059057507, 3514576.760999169 5405903.534428285, 3514548.974849986 5405879.441880425, 3514519.164949497 5405853.598306382);[98, 136, 137, 374]
139,0;;;;;;;;;;;;;;;;;;;104,591;LINESTRING (3515214.393842836 5405458.653662024, 3515197.960596989 5405464.858985592, 3515130.116533235 5405493.322641062, 3515129.367609127 5405506.754336191);[8, 140, 7]
144,0;;;;;;;;;;;;;;;;;;;15,033;LINESTRING (3514283.040379922 5405601.166891429, 3514276.023423573 5405609.600733188, 3514273.516905318 5405612.797104975);[386, 142, 143, 145, 347]
146,0;;;;;;;;;;;;;;;;;;;35,534;LINESTRING (3514918.817912079 5406424.88877797, 3514948.868977267 5406443.851496942);[433, 53, 439]
147,0;;;;;;;;;;;;;;;;;;;86,265;LINESTRING (3514246.624331413 5405571.360193623, 3514250.541832957 5405568.122904452, 3514253.158384761 5405565.004645871, 3514256.346962214 5405556.538823805, 3514273.459344144 5405490.659251919);[145, 372, 387]
148,0;;;;;;;;;;;;;;;;;;;19,52;LINESTRING (3514636.651234306 5406000.439527643, 3514624.069818315 5406015.364014128);[99, 394, 149, 150]
149,0;;;;;;;;;;;;;;;;;;;10,533;LINESTRING (3514617.127667008 5406023.286079448, 3514624.069818315 5406015.364014128);[148, 150, 251, 252]
151,0;;;;;;;;;;;;;;;;;;;40,48;LINESTRING (3514411.701161606 5405572.537215658, 3514428.206203833 5405609.500005567);[142, 368, 152, 185]
152,0;;;;;;;;;;;;;;;;;;;28,657;LINESTRING (3514440.543682368 5405635.364882839, 3514428.206203833 5405609.500005567);[261, 461, 142, 151]
155,0;;;;;;;;;;;;;;;;;;;15,889;LINESTRING (3515037.136144073 5406312.630010982, 3515025.806910051 5406301.490186008);[11, 432, 54, 441, 156, 157]
157,0;;;;;;;;;;;;;;;;;;;16,461;LINESTRING (3515041.042699135 5406296.982613756, 3515041.318090569 5406301.15358916, 3515040.803095715 5406304.154781925, 3515039.361003109 5406307.653921564, 3515037.136144073 5406312.630010982);[427, 443, 54, 441, 155, 156]
161,0;;;;;;;;;;;;;;;;;;;31,49;LINESTRING (3514201.350540789 5405760.918850378, 3514214.107519728 5405789.709013404);[162, 163, 106, 436]
162,0;;;;;;;;;;;;;;;;;;;70,413;LINESTRING (3514201.350540789 5405760.918850378, 3514227.498336059 5405794.446914488, 3514244.379295503 5405816.653062719);[161, 163, 297, 298]
163,0;;;;;;;;;;;;;;;;;;;63,878;LINESTRING (3514161.650004175 5405710.875996925, 3514201.350540789 5405760.918850378);[161, 162, 132, 421]
164,0;;;;;;;;;;;;;;;;;;;37,607;LINESTRING (3514194.644784799 5405450.981507041, 3514158.041736695 5405442.348571142);[372, 369, 373]
166,0;;;;;;;;;;;;;;;;;;;26,393;LINESTRING (3515945.125648725 5406319.059466491, 3515931.212809546 5406315.394658522, 3515920.101791971 5406310.848174128);[168, 391, 167]
168,0;;;;;;;;;;;;;;;;;;;34,463;LINESTRING (3515926.572156345 5406348.09843582, 3515934.895754227 5406335.45562835, 3515945.125648725 5406319.059466491);[181, 166, 167]
169,0;;;;;;;;;;;;;;;;;;;22,771;LINESTRING (3515956.352450563 5406324.217965241, 3515944.365464009 5406343.578331115);[]
170,0;;;;;;;;;;;;;;;;;;;13,467;LINESTRING (3515185.471875038 5405749.290799064, 3515198.927717774 5405748.737785493);[450, 171, 172, 173, 60]
172,0;;;;;;;;;;;;;;;;;;;60,382;LINESTRING (3515198.927717774 5405748.737785493, 3515203.702303793 5405746.637782847, 3515221.170574989 5405745.951112376, 3515238.867393211 5405744.98710054, 3515250.413636108 5405744.106534052, 3515254.095999881 5405743.749548606, 3515258.755925227 5405743.295134439);[170, 171, 173, 176]
174,0;;;;;;;;;;;;;;;;;;;16,408;LINESTRING (3515292.927827537 5405739.395727912, 3515309.187822383 5405737.193638287);[491, 492, 175, 176, 177, 402]
175,0;;;;;;;;;;;;;;;;;;;19,254;LINESTRING (3515292.927827537 5405739.395727912, 3515293.369284786 5405733.781012345, 3515293.618453428 5405731.324031774, 3515293.894081446 5405727.243511592, 3515294.61125974 5405720.217226977);[516, 174, 176, 177, 501]
176,0;;;;;;;;;;;;;;;;;;;34,426;LINESTRING (3515258.755925227 5405743.295134439, 3515268.772906455 5405742.73295147, 3515281.90062009 5405741.256233575, 3515287.921479878 5405740.238393094, 3515292.927827537 5405739.395727912);[172, 174, 175, 177]
177,0;;;;;;;;;;;;;;;;;;;5,262;LINESTRING (3515292.413918784 5405744.632145028, 3515292.775393604 5405741.408146699, 3515292.927827537 5405739.395727912);[322, 420, 173, 174, 175, 176]
179,0;;;;;;;;;;;;;;;;;;;41,719;LINESTRING (3515364.609890358 5405975.593303612, 3515364.038073229 5405975.113552707, 3515358.298065914 5405970.238142809, 3515357.045764211 5405963.328806949, 3515356.177212423 5405958.500078538, 3515359.042363074 5405945.229875166, 3515360.724162043 5405937.472271624);[497, 178, 180, 182]
180,0;;;;;;;;;;;;;;;;;;;79,677;LINESTRING (3515282.488523881 5405922.412885381, 3515318.871506269 5405929.139859247, 3515339.604027838 5405932.977438445, 3515350.869077221 5405935.376899657, 3515360.724162043 5405937.472271624);[260, 422, 178, 179]
182,0;;;;;;;;;;;;;;;;;;;17,882;LINESTRING (3515364.609890358 5405975.593303612, 3515360.359509774 5405992.963231052);[497, 179]
183,0;;;;;;;;;;;;;;;;;;;44,86;LINESTRING (3516032.154966877 5406048.50840727, 3516035.243700771 5406024.374311888, 3516040.407058767 5406004.505347908);[208, 184]
185,0;;;;;;;;;;;;;;;;;;;18,107;LINESTRING (3514411.701161606 5405572.537215658, 3514428.443606128 5405565.640903681);[165, 368, 151, 186]
187,0;;;;;;;;;;;;;;;;;;;14,965;LINESTRING (3515817.881751383 5405484.073705216, 3515803.256785599 5405487.246413969);[256, 257, 117]
190,0;;;;;;;;;;;;;;;;;;;31,929;LINESTRING (3515177.747546234 5406316.144136235, 3515180.370341119 5406318.942502381, 3515173.987026974 5406331.992006287, 3515170.549810522 5406345.116196047);[188, 189, 191]
193,0;;;;;;;;;;;;;;;;;;;43,826;LINESTRING (3514196.103233215 5405606.885065685, 3514166.72381727 5405639.405466471);[192, 194, 195, 486]
194,0;;;;;;;;;;;;;;;;;;;14,793;LINESTRING (3514177.713847826 5405649.308281202, 3514166.72381727 5405639.405466471);[193, 195, 196, 197]
195,0;;;;;;;;;;;;;;;;;;;36,15;LINESTRING (3514142.202171681 5405665.966470831, 3514166.72381727 5405639.405466471);[193, 194]
196,0;;;;;;;;;;;;;;;;;;;52,681;LINESTRING (3514142.608387019 5405688.531221111, 3514147.16816446 5405684.049966753, 3514149.532363519 5405681.887397503, 3514152.20845832 5405678.424502511, 3514177.713847826 5405649.308281202);[194, 197, 421, 380]
199,0;;;;;;;;;;;;;;;;;;;153,481;LINESTRING (3515782.388375025 5405748.678275315, 3515768.485068556 5405751.55284258, 3515751.331926109 5405752.51670402, 3515736.804463804 5405752.620562475, 3515723.82790314 5405752.561989366, 3515711.953640237 5405752.473166944, 3515700.667871579 5405752.152480963, 3515691.853243604 5405751.049154036, 3515685.118447143 5405749.829319993, 3515678.413908023 5405748.298200806, 3515641.876090704 5405738.843909166, 3515638.352212384 5405737.688674798, 3515631.25218048 5405735.678324363);[356, 133, 230, 198, 200, 344]
201,0;;;;;;;;;;;;;;;;;;;126,192;LINESTRING (3515582.686355866 5406632.623103159, 3515581.488129853 5406638.168981716, 3515574.363176126 5406642.908857943, 3515566.49614041 5406647.668927867, 3515558.584944669 5406652.462248433, 3515542.414279794 5406663.137782677, 3515530.563367175 5406676.572105645, 3515519.09058512 5406691.442061885, 3515504.827910674 5406702.979266275, 3515500.482217389 5406712.319736121, 3515502.104069213 5406720.964954909);[328, 76]
202,0;;;;;;;;;;;;;;;;;;;59,918;LINESTRING (3515658.335013743 5405546.480613328, 3515670.469538984 5405495.51524191, 3515672.973089957 5405488.416143491);[65, 457, 118]
203,0;;;;;;;;;;;;;;;;;;;24,498;LINESTRING (3515714.44891296 5406334.634406105, 3515705.62500341 5406345.074252686, 3515702.047708188 5406355.295243268);[102, 204, 82, 476]
214,0;;;;;;;;;;;;;;;;;;;46,541;LINESTRING (3515353.902137517 5405744.866549201, 3515324.572776168 5405746.009751896, 3515317.451739344 5405746.27947165, 3515307.408605529 5405745.651589012);[420, 326, 491, 215, 216]
215,0;;;;;;;;;;;;;;;;;;;12,997;LINESTRING (3515354.579466866 5405757.846173813, 3515354.188409555 5405750.360922023, 3515353.902137517 5405744.866549201);[214, 216, 250, 253]
216,0;;;;;;;;;;;;;;;;;;;46,999;LINESTRING (3515400.798812654 5405741.769909744, 3515353.902137517 5405744.866549201);[390, 401, 342, 214, 215]
217,0;;;;;;;;;;;;;;;;;;;66,132;LINESTRING (3514383.631396584 5405733.180474515, 3514358.764446866 5405710.530916991, 3514344.442190167 5405696.415645005, 3514335.469820226 5405687.874361098);[64, 218, 346, 219]
218,0;;;;;;;;;;;;;;;;;;;28,054;LINESTRING (3514367.857080606 5405755.392486232, 3514374.091721767 5405748.280110787, 3514382.338250858 5405738.882042687, 3514383.829465203 5405736.183548413, 3514383.631396584 5405733.180474515);[224, 217, 219, 223]
219,0;;;;;;;;;;;;;;;;;;;15,097;LINESTRING (3514394.634446763 5405743.517456993, 3514383.631396584 5405733.180474515);[226, 335, 217, 218]
221,0;;;;;;;;;;;;;;;;;;;30,227;LINESTRING (3514455.802207332 5405470.952434553, 3514473.963591469 5405446.789592963);[446]
223,0;;;;;;;;;;;;;;;;;;;7,162;LINESTRING (3514373.312190766 5405760.032611331, 3514367.857080606 5405755.392486232);[224, 335, 341, 218]
224,0;;;;;;;;;;;;;;;;;;;7,353;LINESTRING (3514362.255313099 5405750.629664966, 3514367.857080606 5405755.392486232);[525, 527, 218, 223]
225,0;;;;;;;;;;;;;;;;;;;24,279;LINESTRING (3514396.091308859 5405777.216664347, 3514412.024709727 5405758.897355872);[226, 227, 248, 249]
226,0;;;;;;;;;;;;;;;;;;;23,217;LINESTRING (3514412.024709727 5405758.897355872, 3514402.478912761 5405750.543542843, 3514395.521652962 5405744.264810743, 3514394.634446763 5405743.517456993);[225, 227, 335, 219]
227,0;;;;;;;;;;;;;;;;;;;64,175;LINESTRING (3514460.457842839 5405800.990978721, 3514442.254615591 5405784.67470582, 3514421.761098796 5405767.41848378, 3514412.024709727 5405758.897355872);[225, 226, 137, 281]
228,0;;;;;;;;;;;;;;;;;;;63,697;LINESTRING (3515724.793040689 5405819.977969482, 3515785.730631321 5405801.432830905);[229, 198, 231, 233, 234]
233,0;;;;;;;;;;;;;;;;;;;46,632;LINESTRING (3515706.719456665 5405776.990647639, 3515724.793040689 5405819.977969482);[234, 228, 231]
246,0;;;;;;;;;;;;;;;;;;;13,877;LINESTRING (3514752.90632679 5406059.67173536, 3514756.215009271 5406056.021736395, 3514758.565702232 5406053.436803501, 3514762.433337968 5406049.588104979);[96, 503, 237, 366, 247, 122]
248,0;;;;;;;;;;;;;;;;;;;9,202;LINESTRING (3514390.055493898 5405784.162715342, 3514396.091308859 5405777.216664347);[249, 225, 109]
249,0;;;;;;;;;;;;;;;;;;;55,739;LINESTRING (3514390.055493898 5405784.162715342, 3514393.017451033 5405786.76140401, 3514407.511916473 5405799.487168032, 3514413.606435114 5405792.57464808, 3514399.089921472 5405779.848811943, 3514396.091308859 5405777.216664347);[248, 225, 109]
253,0;;;;;;;;;;;;;;;;;;;16,74;LINESTRING (3515337.867302498 5405758.812507304, 3515354.579466866 5405757.846173813);[250, 215]
254,0;;;;;;;;;;;;;;;;;;;10,938;LINESTRING (3515830.897703512 5405566.94793475, 3515826.856909357 5405577.11192791);[454, 235, 413, 255]
255,0;;;;;;;;;;;;;;;;;;;64,938;LINESTRING (3515854.89845957 5405506.60834677, 3515830.897703512 5405566.94793475);[256, 290, 235, 254]
256,0;;;;;;;;;;;;;;;;;;;43,336;LINESTRING (3515854.89845957 5405506.60834677, 3515817.881751383 5405484.073705216);[257, 290, 187, 255]
257,0;;;;;;;;;;;;;;;;;;;49,991;LINESTRING (3515865.920797048 5405470.24164007, 3515854.381404698 5405473.667583124, 3515817.881751383 5405484.073705216);[256, 187, 348]
260,0;;;;;;;;;;;;;;;;;;;14,837;LINESTRING (3515282.488523881 5405922.412885381, 3515267.798464726 5405920.326752629);[258, 259, 422, 180]
268,0;;;;;;;;;;;;;;;;;;;5,128;LINESTRING (3514594.300366588 5405767.596978096, 3514594.188750635 5405762.470081883);[482, 519, 267, 269]
270,0;;;;;;;;;;;;;;;;;;;81,656;LINESTRING (3515362.066711101 5406091.563438775, 3515378.728716932 5406087.082924361, 3515382.073023619 5406081.298228945, 3515387.735072856 5406077.021168794, 3515392.938158015 5406071.308294976, 3515396.671912552 5406065.524675328, 3515403.148390446 5406050.952155105, 3515408.724587291 5406037.800614535, 3515411.816664909 5406032.916016641);[271, 272, 277, 279]
272,0;;;;;;;;;;;;;;;;;;;29,155;LINESTRING (3515400.33206356 5406006.128279264, 3515404.693020116 5406015.492687684, 3515405.467274695 5406017.174026358, 3515411.816664909 5406032.916016641);[494, 270, 497, 271]
273,0;;;;;;;;;;;;;;;;;;;53,956;LINESTRING (3515379.429363208 5406220.454630063, 3515369.797060792 5406177.358043578, 3515368.096716307 5406170.414115049, 3515367.464505464 5406167.84351874);[271, 274, 283, 284]
274,0;;;;;;;;;;;;;;;;;;;45,114;LINESTRING (3515325.137026492 5406183.396874175, 3515330.433294731 5406181.176076015, 3515336.972745535 5406178.424885965, 3515359.84543339 5406170.413791288, 3515362.91953662 5406169.376856913, 3515367.464505464 5406167.84351874);[271, 273, 280, 282]
275,0;;;;;;;;;;;;;;;;;;;14,346;LINESTRING (3514549.806677297 5405779.425160783, 3514564.13707676 5405778.761679337);[128, 291, 292, 263, 276]
276,0;;;;;;;;;;;;;;;;;;;42,859;LINESTRING (3514507.091053123 5405782.839975984, 3514534.549974722 5405780.264213232, 3514549.806677297 5405779.425160783);[263, 370, 371, 275]
279,0;;;;;;;;;;;;;;;;;;;43,614;LINESTRING (3515362.066711101 5406091.563438775, 3515360.558171346 5406097.775749004, 3515356.854167873 5406106.13946136, 3515354.327059842 5406111.348132142, 3515351.169340822 5406113.396820618, 3515347.604045897 5406114.02095618, 3515338.018275995 5406112.97168004, 3515332.864757949 5406114.014073427);[270, 277, 278, 280]
280,0;;;;;;;;;;;;;;;;;;;69,815;LINESTRING (3515325.137026492 5406183.396874175, 3515330.582564531 5406131.811982106, 3515332.864757949 5406114.014073427);[274, 278, 279, 282]
281,0;;;;;;;;;;;;;;;;;;;34,432;LINESTRING (3514493.462116262 5405807.859571713, 3514483.760668031 5405808.668608481, 3514476.606307718 5405807.66044046, 3514460.457842839 5405800.990978721);[129, 227, 137, 398, 154]
286,0;;;;;;;;;;;;;;;;;;;103,17;LINESTRING (3514512.652395053 5405991.188075854, 3514483.783781737 5405965.213667007, 3514436.539300913 5405921.543748296);[288, 289, 114, 285]
288,0;;;;;;;;;;;;;;;;;;;52,782;LINESTRING (3514550.576324972 5406027.29472316, 3514544.758767213 5406018.060664986, 3514512.652395053 5405991.188075854);[289, 469, 285, 286]
290,0;;;;;;;;;;;;;;;;;;;12,962;LINESTRING (3515867.128800713 5405510.902073364, 3515854.89845957 5405506.60834677);[256, 353, 348, 255]
291,0;;;;;;;;;;;;;;;;;;;9,954;LINESTRING (3514564.13707676 5405778.761679337, 3514564.404535173 5405774.792310705, 3514565.529286161 5405768.923537663);[128, 292, 519, 269, 275]
292,0;;;;;;;;;;;;;;;;;;;34,135;LINESTRING (3514564.13707676 5405778.761679337, 3514589.90392309 5405779.818246588, 3514598.182397589 5405780.885082235);[128, 481, 291, 275, 313]
293,0;;;;;;;;;;;;;;;;;;;29,419;LINESTRING (3515809.64293435 5405688.392106684, 3515829.463369632 5405666.651475177);[294, 295]
294,0;;;;;;;;;;;;;;;;;;;13,211;LINESTRING (3515839.08608109 5405675.697427834, 3515836.184456753 5405672.764522062, 3515829.463369632 5405666.651475177);[293, 295, 392, 393, 407]
295,0;;;;;;;;;;;;;;;;;;;31,414;LINESTRING (3515806.265848874 5405645.468085664, 3515814.291426191 5405652.841407231, 3515829.463369632 5405666.651475177);[293, 294, 411, 413]
298,0;;;;;;;;;;;;;;;;;;;26,232;LINESTRING (3514238.638309937 5405791.394712596, 3514238.211906821 5405797.287560062, 3514244.379295503 5405816.653062719);[162, 297, 131]
302,0;;;;;;;;;;;;;;;;;;;21,56;LINESTRING (3514975.285683783 5405760.903817356, 3514974.283949401 5405759.044003577, 3514972.864886772 5405756.615926155, 3514967.930331676 5405747.072405085, 3514966.285486082 5405743.887525555, 3514965.225464276 5405741.838507627);[296, 47, 303, 308, 309, 59]
313,0;;;;;;;;;;;;;;;;;;;9,159;LINESTRING (3514598.182397589 5405780.885082235, 3514595.74516317 5405782.824860808, 3514591.010628369 5405786.582457589);[481, 130, 292, 159]
315,0;;;;;;;;;;;;;;;;;;;16,165;LINESTRING (3515075.594397409 5406166.530094707, 3515084.649821708 5406159.837536993, 3515088.786214976 5406157.201933219);[320, 26, 316, 319]
319,0;;;;;;;;;;;;;;;;;;;21,167;LINESTRING (3515090.108529581 5406181.937772914, 3515075.594397409 5406166.530094707);[320, 315]
321,0;;;;;;;;;;;;;;;;;;;14,811;LINESTRING (3515298.570367343 5405807.224680508, 3515283.849380651 5405805.594369132);[258, 322, 325, 326]
325,0;;;;;;;;;;;;;;;;;;;31,391;LINESTRING (3515298.570367343 5405807.224680508, 3515294.091764727 5405838.29464748);[321, 417, 422, 326]
326,0;;;;;;;;;;;;;;;;;;;62,204;LINESTRING (3515307.408605529 5405745.651589012, 3515305.70059852 5405757.646094161, 3515298.570367343 5405807.224680508);[321, 420, 325, 491, 214]
327,0;;;;;;;;;;;;;;;;;;;9,555;LINESTRING (3515662.345119382 5406578.687114656, 3515658.360895023 5406587.372351769);[100, 328, 523, 318]
329,0;;;;;;;;;;;;;;;;;;;57,123;LINESTRING (3515891.980739626 5406296.211619045, 3515875.33369467 5406292.86171432, 3515860.218575671 5406288.203948575, 3515837.643534136 5406279.143652192);[71, 208, 375, 376]
330,0;;;;;;;;;;;;;;;;;;;24,778;LINESTRING (3515443.569604036 5405836.334817416, 3515453.721180295 5405858.937611531);[390, 331, 332, 378]
332,0;;;;;;;;;;;;;;;;;;;18,134;LINESTRING (3515467.763521115 5405848.100274443, 3515466.065367975 5405851.053687741, 3515463.280767442 5405853.626009881, 3515453.721180295 5405858.937611531);[330, 331, 333, 334]
336,0;;;;;;;;;;;;;;;;;;;3,203;LINESTRING (3515491.257535909 5405943.190808632, 3515493.02099807 5405945.8646233);[514, 331]
339,0;;;;;;;;;;;;;;;;;;;61,389;LINESTRING (3514663.875035145 5406158.123152041, 3514617.896942046 5406117.446427171);[365, 340, 245, 29]
340,0;;;;;;;;;;;;;;;;;;;62,845;LINESTRING (3514570.833241705 5406075.799776652, 3514574.278749267 5406078.844642521, 3514617.896942046 5406117.446427171);[431, 339, 245, 30]
341,0;;;;;;;;;;;;;;;;;;;37,563;LINESTRING (3514348.902576098 5405788.583594451, 3514373.312190766 5405760.032611331);[335, 528, 405, 223]
344,0;;;;;;;;;;;;;;;;;;;189,56;LINESTRING (3515631.25218048 5405735.678324363, 3515625.002818629 5405734.281983314, 3515617.893144294 5405733.094549784, 3515610.370278009 5405732.517612009, 3515599.687467745 5405732.031995749, 3515589.385829969 5405731.881076408, 3515578.356271924 5405731.894967197, 3515567.142181477 5405732.208625482, 3515544.947513369 5405733.426048911, 3515519.614745263 5405734.81282168, 3515493.054436699 5405736.352012951, 3515442.168831953 5405739.014331596);[356, 230, 199, 342, 343]
345,0;;;;;;;;;;;;;;;;;;;100,609;LINESTRING (3515601.768297631 5405474.617458406, 3515575.956469848 5405465.471418751, 3515543.998018906 5405454.82944922, 3515505.784549462 5405444.670827654);[362, 86, 361]
346,0;;;;;;;;;;;;;;;;;;;53,064;LINESTRING (3514335.469820226 5405687.874361098, 3514296.616412985 5405651.733483239);[64, 217, 42]
348,0;;;;;;;;;;;;;;;;;;;40,678;LINESTRING (3515865.920797048 5405470.24164007, 3515867.128800713 5405510.902073364);[257, 290, 353]
351,0;;;;;;;;;;;;;;;;;;;62,11;LINESTRING (3515475.005460273 5405763.792471374, 3515512.366503832 5405746.558432544, 3515518.235976581 5405744.495082471, 3515525.873395661 5405746.162034746, 3515530.48106291 5405751.334741416);[352, 350]
356,0;;;;;;;;;;;;;;;;;;;4,962;LINESTRING (3515631.25218048 5405735.678324363, 3515629.442689273 5405731.058228491);[357, 230, 199, 344]
357,0;;;;;;;;;;;;;;;;;;;8,523;LINESTRING (3515629.442689273 5405731.058228491, 3515628.225267084 5405727.562963836, 3515626.915501251 5405722.922017627);[356, 68, 135, 428]
361,0;;;;;;;;;;;;;;;;;;;24,407;LINESTRING (3515594.986802211 5405498.063155527, 3515601.768297631 5405474.617458406);[416, 362, 345, 415]
362,0;;;;;;;;;;;;;;;;;;;18,532;LINESTRING (3515619.462766652 5405480.126843969, 3515601.768297631 5405474.617458406);[416, 345, 361]
367,0;;;;;;;;;;;;;;;;;;;17,151;LINESTRING (3515455.444275433 5405830.862756741, 3515462.434152791 5405824.810123914, 3515464.116038264 5405817.085914092);[352, 358, 333, 378]
369,0;;;;;;;;;;;;;;;;;;;182,464;LINESTRING (3514194.644784799 5405450.981507041, 3514240.360907535 5405462.084296209, 3514277.666213269 5405471.876099465, 3514340.966976515 5405488.67367621, 3514352.560639014 5405489.51507165, 3514363.142697285 5405486.506173673, 3514371.27086244 5405483.313091471);[164, 368, 372, 373]
371,0;;;;;;;;;;;;;;;;;;;41,194;LINESTRING (3514466.166590262 5405784.1023267, 3514475.237347237 5405785.682568233, 3514482.182165698 5405785.322358066, 3514496.565983167 5405783.880397885, 3514507.091053123 5405782.839975984);[398, 399, 370, 276]
372,0;;;;;;;;;;;;;;;;;;;131,478;LINESTRING (3514246.624331413 5405571.360193623, 3514241.452074442 5405556.467705188, 3514198.989798962 5405455.985635019, 3514194.644784799 5405450.981507041);[387, 164, 145, 369, 147, 373]
373,0;;;;;;;;;;;;;;;;;;;71,087;LINESTRING (3514147.121686662 5405503.806941249, 3514151.424060902 5405499.469611075, 3514181.045772329 5405467.283363509, 3514190.90690594 5405455.820656536, 3514194.644784799 5405450.981507041);[164, 388, 369, 372]
374,0;;;;;;;;;;;;;;;;;;;59,017;LINESTRING (3514676.453047046 5405989.545036934, 3514657.409492051 5405971.913624614, 3514641.451694794 5405960.006318224, 3514630.30856004 5405953.015785838);[98, 394, 138, 120]
375,0;;;;;;;;;;;;;;;;;;;32,538;LINESTRING (3515891.980739626 5406296.211619045, 3515909.112137139 5406297.160886093, 3515916.765082278 5406298.227907262, 3515923.810095958 5406301.217086923);[167, 329, 376, 379]
376,0;;;;;;;;;;;;;;;;;;;27,854;LINESTRING (3515916.919738391 5406308.481579606, 3515910.120810274 5406304.214231488, 3515891.980739626 5406296.211619045);[391, 329, 375, 379, 445]
379,0;;;;;;;;;;;;;;;;;;;10,012;LINESTRING (3515916.919738391 5406308.481579606, 3515923.810095958 5406301.217086923);[391, 167, 375, 376, 445]
380,0;;;;;;;;;;;;;;;;;;;11,995;LINESTRING (3514142.608387019 5405688.531221111, 3514132.437264139 5405694.888872999);[196, 421, 51, 55, 381]
381,0;;;;;;;;;;;;;;;;;;;39,071;LINESTRING (3514157.492611355 5405724.821897388, 3514151.077888601 5405715.987095812, 3514132.437264139 5405694.888872999);[105, 51, 55, 380]
384,0;;;;;;;;;;;;;;;;;;;9,607;LINESTRING (3514238.57151737 5405582.604972045, 3514232.952402223 5405590.397412704);[385, 386, 387, 388, 197, 349]
385,0;;;;;;;;;;;;;;;;;;;104,387;LINESTRING (3514232.952402223 5405590.397412704, 3514222.482307467 5405581.196404698, 3514213.603661281 5405573.222708024, 3514155.56748773 5405520.342312226);[384, 197, 389, 486, 349]
386,0;;;;;;;;;;;;;;;;;;;46,182;LINESTRING (3514238.57151737 5405582.604972045, 3514273.516905318 5405612.797104975);[384, 387, 388, 144, 347]
387,0;;;;;;;;;;;;;;;;;;;14,182;LINESTRING (3514238.57151737 5405582.604972045, 3514240.90124696 5405576.672465746, 3514246.624331413 5405571.360193623);[384, 386, 388, 145, 147, 372]
389,0;;;;;;;;;;;;;;;;;;;68,463;LINESTRING (3514155.56748773 5405520.342312226, 3514140.728365877 5405506.815661688, 3514127.904528304 5405495.46263491, 3514104.492967444 5405474.752870273);[385, 486]
391,0;;;;;;;;;;;;;;;;;;;3,966;LINESTRING (3515920.101791971 5406310.848174128, 3515916.919738391 5406308.481579606);[166, 376, 379, 445]
392,0;;;;;;;;;;;;;;;;;;;37,788;LINESTRING (3515814.609128112 5405704.486518217, 3515839.08608109 5405675.697427834);[294, 134, 393, 407, 314]
394,0;;;;;;;;;;;;;;;;;;;43,421;LINESTRING (3514676.453047046 5405989.545036934, 3514669.264069092 5405987.824810488, 3514663.666614322 5405987.231929185, 3514655.203767301 5405989.367254078, 3514647.442340066 5405993.02794567, 3514636.651234306 5406000.439527643);[99, 148, 374, 120]
398,0;;;;;;;;;;;;;;;;;;;36,19;LINESTRING (3514466.166590262 5405784.1023267, 3514473.079690816 5405790.358792714, 3514479.554015858 5405795.791211041, 3514493.462116262 5405807.859571713);[129, 399, 371, 281, 154]
401,0;;;;;;;;;;;;;;;;;;;11,141;LINESTRING (3515400.798812654 5405741.769909744, 3515399.097283986 5405737.906388006, 3515397.526465213 5405734.610377078, 3515396.219352714 5405731.615346164);[390, 397, 402, 342, 216, 63]
404,0;;;;;;;;;;;;;;;;;;;30,51;LINESTRING (3514318.793556168 5405845.066278456, 3514338.552672066 5405821.81895364);[403, 405, 406, 408]
407,0;;;;;;;;;;;;;;;;;;;13,726;LINESTRING (3515848.750875685 5405685.444115918, 3515844.684199796 5405681.340252822, 3515842.280812994 5405678.920298073, 3515839.08608109 5405675.697427834);[294, 200, 393, 392]
408,0;;;;;;;;;;;;;;;;;;;32,987;LINESTRING (3514296.738901568 5405869.553342881, 3514303.397750233 5405863.131445987, 3514310.163275165 5405855.219665538, 3514318.793556168 5405845.066278456);[297, 404, 406, 24]
415,0;;;;;;;;;;;;;;;;;;;54,821;LINESTRING (3515582.251225978 5405551.384593337, 3515594.986802211 5405498.063155527);[416, 361, 363, 434]
416,0;;;;;;;;;;;;;;;;;;;43,023;LINESTRING (3515619.462766652 5405480.126843969, 3515613.740848904 5405503.041674291, 3515611.508367961 5405502.523922423, 3515594.986802211 5405498.063155527);[361, 362, 415]
417,0;;;;;;;;;;;;;;;;;;;41,236;LINESTRING (3515294.091764727 5405838.29464748, 3515334.527657441 5405846.378348929);[418, 419, 325, 422]
420,0;;;;;;;;;;;;;;;;;;;15,029;LINESTRING (3515307.408605529 5405745.651589012, 3515292.413918784 5405744.632145028);[322, 326, 491, 173, 177, 214]
421,0;;;;;;;;;;;;;;;;;;;29,358;LINESTRING (3514142.608387019 5405688.531221111, 3514161.650004175 5405710.875996925);[163, 196, 132, 380]
425,0;;;;;;;;;;;;;;;;;;;21,983;LINESTRING (3515069.112760466 5405892.711660342, 3515072.089356945 5405897.93521836, 3515074.781037239 5405905.2820537, 3515075.288291754 5405913.412594087);[449, 485, 423, 424]
426,0;;;;;;;;;;;;;;;;;;;55,669;LINESTRING (3515046.867818346 5405932.230365084, 3515040.596371339 5405930.879099293, 3515035.110833288 5405926.894354415, 3515031.399942522 5405921.479800921, 3515029.398648633 5405916.981713874, 3515028.717692411 5405910.585531352, 3515029.5069841 5405903.937506824, 3515031.79098674 5405898.883730569, 3515035.251837591 5405893.388278941, 3515039.179746283 5405889.095107296);[485, 423, 308, 25]
430,0;;;;;;;;;;;;;;;;;;;27,484;LINESTRING (3514624.574112192 5405925.966621464, 3514637.858895836 5405937.31088405, 3514644.629083261 5405944.690376286);[37, 429, 438, 95]
433,0;;;;;;;;;;;;;;;;;;;31,693;LINESTRING (3514918.817912079 5406424.88877797, 3514921.175814859 5406419.557134384, 3514923.818254593 5406414.982450856, 3514926.579758633 5406409.840932485, 3514930.141194367 5406405.046280885, 3514935.56705453 5406398.154787432);[432, 49, 146, 52, 439]
434,0;;;;;;;;;;;;;;;;;;;33,203;LINESTRING (3515614.666931102 5405558.558420957, 3515599.098652209 5405554.878733799, 3515582.251225978 5405551.384593337);[363, 415]
435,0;;;;;;;;;;;;;;;;;;;74,404;LINESTRING (3514784.61438541 5406340.895736418, 3514813.032305866 5406363.767884554, 3514828.865704535 5406374.908043488, 3514846.232005219 5406381.470596642);[32, 436, 437, 439]
436,0;;;;;;;;;;;;;;;;;;;794,157;LINESTRING (3514214.107519728 5405789.709013404, 3514221.570540365 5405799.447311542, 3514242.007937649 5405824.553813361, 3514259.603251374 5405843.169859424, 3514282.900751774 5405864.558363308, 3514311.412693426 5405889.774613968, 3514357.914503322 5405931.261928576, 3514398.622495337 5405968.208695468, 3514448.759377839 5406012.853227625, 3514480.119952576 5406041.224812776, 3514512.858260786 5406070.879006355, 3514547.956272563 5406102.808110777, 3514601.327864294 5406154.334954738, 3514634.251734119 5406188.416362933, 3514663.831712285 5406219.83141085, 3514709.615934251 5406269.571332466, 3514730.940128733 5406291.234584009, 3514749.122434722 5406308.975207623, 3514771.242664221 5406329.562003908, 3514784.61438541 5406340.895736418);[161, 106, 435, 437]
437,0;;;;;;;;;;;;;;;;;;;30,671;LINESTRING (3514802.380496057 5406365.897214849, 3514784.61438541 5406340.895736418);[107, 435, 436, 510]
439,0;;;;;;;;;;;;;;;;;;;84,612;LINESTRING (3514846.232005219 5406381.470596642, 3514876.488622275 5406400.678120194, 3514905.802348556 5406417.959437409, 3514918.817912079 5406424.88877797);[32, 433, 146, 435]
440,0;;;;;;;;;;;;;;;;;;;161,22;LINESTRING (3515761.645173796 5406448.3862603, 3515766.232967985 5406418.440118264, 3515815.506628199 5406297.141205225);[507, 445]
441,0;;;;;;;;;;;;;;;;;;;16,022;LINESTRING (3515025.806910051 5406301.490186008, 3515030.772288139 5406299.279340671, 3515034.63349182 5406297.843989318, 3515041.042699135 5406296.982613756);[11, 427, 432, 443, 155, 157]
442,0;;;;;;;;;;;;;;;;;;;121,174;LINESTRING (3514906.729051719 5405455.560564334, 3514916.67273575 5405457.877794778, 3514974.148487446 5405470.407887546, 3515024.886883832 5405482.409007384);[90, 85]
443,0;;;;;;;;;;;;;;;;;;;11,887;LINESTRING (3515041.042699135 5406296.982613756, 3515046.243050931 5406297.574811205, 3515052.667366845 5406299.304597401);[97, 427, 441, 157, 191]
444,0;;;;;;;;;;;;;;;;;;;7,508;LINESTRING (3514585.837718039 5406058.579489457, 3514590.921946091 5406053.054616258);[324, 431, 469, 251]
460,0;;;;;;;;;;;;;;;;;;;2,465;LINESTRING (3515188.16009401 5405850.40681292, 3515185.698907411 5405850.266713313);[448, 453, 5, 511]
464,0;;;;;;;;;;;;;;;;;;;15,306;LINESTRING (3515727.586666149 5406347.504396823, 3515738.087750313 5406336.368682922);[451, 465, 476, 477]
466,0;;;;;;;;;;;;;;;;;;;13,243;LINESTRING (3515374.637378042 5406656.281673072, 3515381.232866489 5406667.76511434);[483, 467, 468, 479]
467,0;;;;;;;;;;;;;;;;;;;11,236;LINESTRING (3515391.429179946 5406670.873462771, 3515385.309274437 5406670.856696884, 3515381.232866489 5406667.76511434);[484, 75, 466, 468]
468,0;;;;;;;;;;;;;;;;;;;86,651;LINESTRING (3515381.232866489 5406667.76511434, 3515373.249108884 5406674.98279809, 3515363.207336382 5406677.157211806, 3515356.482025722 5406675.537448763, 3515341.513786451 5406671.126134207, 3515301.272787897 5406655.714366876);[466, 467, 471, 472]
471,0;;;;;;;;;;;;;;;;;;;17,078;LINESTRING (3515308.081922204 5406640.052811109, 3515301.272787897 5406655.714366876);[468, 472, 475, 479]
472,0;;;;;;;;;;;;;;;;;;;102,995;LINESTRING (3515301.272787897 5406655.714366876, 3515293.583336677 5406652.001372483, 3515271.483341643 5406638.663198326, 3515234.243104107 5406616.487603596, 3515227.31450325 5406608.506437808, 3515230.505304283 5406594.124976994);[354, 468, 471, 475]
476,0;;;;;;;;;;;;;;;;;;;18,391;LINESTRING (3515714.44891296 5406334.634406105, 3515727.586666149 5406347.504396823);[203, 464, 82, 477]
477,0;;;;;;;;;;;;;;;;;;;50,945;LINESTRING (3515721.979135434 5406397.976420492, 3515725.53412237 5406353.703969158, 3515727.586666149 5406347.504396823);[495, 464, 465, 476]
481,0;;;;;;;;;;;;;;;;;;;5,488;LINESTRING (3514598.182397589 5405780.885082235, 3514603.664662758 5405780.643550822);[482, 292, 46, 313]
482,0;;;;;;;;;;;;;;;;;;;16,582;LINESTRING (3514594.300366588 5405767.596978096, 3514600.129795413 5405772.327262422, 3514603.425585617 5405779.330696247, 3514603.664662758 5405780.643550822);[481, 519, 268, 46]
483,0;;;;;;;;;;;;;;;;;;;27,783;LINESTRING (3515383.978865559 5406630.807611369, 3515376.223083447 5406643.297100605, 3515374.637378042 5406656.281673072);[466, 242, 478, 479]
484,0;;;;;;;;;;;;;;;;;;;64,723;LINESTRING (3515389.212186496 5406731.964215666, 3515397.56704504 5406717.98621882, 3515397.59734784 5406706.921259176, 3515392.983330097 5406698.946230561, 3515391.137651483 5406678.067721412, 3515391.429179946 5406670.873462771);[75, 467]
486,0;;;;;;;;;;;;;;;;;;;126,961;LINESTRING (3514196.103233215 5405606.885065685, 3514190.210579666 5405600.798331485, 3514188.80266493 5405599.627112973, 3514179.501474022 5405590.195603265, 3514177.939773739 5405588.81270794, 3514173.924011476 5405587.323539052, 3514129.775662218 5405549.213257439, 3514150.747023614 5405526.157376557, 3514155.56748773 5405520.342312226);[192, 193, 385, 389]
488,0;;;;;;;;;;;;;;;;;;;13,609;LINESTRING (3515571.592194966 5406470.909278598, 3515567.287758925 5406483.819535716);[489, 241, 504, 506]
491,0;;;;;;;;;;;;;;;;;;;8,648;LINESTRING (3515309.187822383 5405737.193638287, 3515308.717358208 5405739.961392899, 3515308.010122657 5405743.329016428, 3515307.408605529 5405745.651589012);[420, 326, 492, 174, 402, 214]
494,0;;;;;;;;;;;;;;;;;;;14,439;LINESTRING (3515400.33206356 5406006.128279264, 3515388.406427498 5406014.269268635);[272, 497]
495,0;;;;;;;;;;;;;;;;;;;44,648;LINESTRING (3515718.416201975 5406442.482388151, 3515721.979135434 5406397.976420492);[465, 507, 508, 477]
499,0;;;;;;;;;;;;;;;;;;;9,328;LINESTRING (3515245.371678866 5405730.981632624, 3515244.992795076 5405721.661519114);[205, 500, 501, 505]
500,0;;;;;;;;;;;;;;;;;;;54,298;LINESTRING (3515245.371678866 5405730.981632624, 3515223.499553765 5405732.512583369, 3515222.268928544 5405728.372376235, 3515223.108435792 5405722.269426333, 3515244.992795076 5405721.661519114);[205, 499, 501, 505]
505,0;;;;;;;;;;;;;;;;;;;27,398;LINESTRING (3515245.371678866 5405730.981632624, 3515268.765076106 5405729.377056463, 3515272.311652668 5405730.320827403, 3515272.583349667 5405730.388289629);[499, 500]
506,0;;;;;;;;;;;;;;;;;;;13,936;LINESTRING (3515585.324776531 5406473.282699118, 3515571.592194966 5406470.909278598);[488, 504]
507,0;;;;;;;;;;;;;;;;;;;43,63;LINESTRING (3515761.645173796 5406448.3862603, 3515718.416201975 5406442.482388151);[495, 440, 508, 445]
514,0;;;;;;;;;;;;;;;;;;;27,622;LINESTRING (3515491.257535909 5405943.190808632, 3515501.710165825 5405939.071642726, 3515506.727669236 5405923.472119496);[512, 513, 331, 336]
516,0;;;;;;;;;;;;;;;;;;;11,709;LINESTRING (3515294.61125974 5405720.217226977, 3515295.152599201 5405715.703725696, 3515295.467841618 5405713.269166374, 3515296.075738596 5405708.600157613);[498, 501, 175]
519,0;;;;;;;;;;;;;;;;;;;28,802;LINESTRING (3514565.529286161 5405768.923537663, 3514594.300366588 5405767.596978096);[482, 291, 268, 269]
525,0;;;;;;;;;;;;;;;;;;;12,174;LINESTRING (3514362.255313099 5405750.629664966, 3514352.980114012 5405742.743694366);[224, 524, 526, 527]
527,0;;;;;;;;;;;;;;;;;;;37,559;LINESTRING (3514337.838394723 5405779.169556572, 3514362.255313099 5405750.629664966);[224, 525, 526, 528]
528,0;;;;;;;;;;;;;;;;;;;14,527;LINESTRING (3514348.902576098 5405788.583594451, 3514337.838394723 5405779.169556572);[526, 527, 341, 405]
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment