diff --git a/comp/src/gb.map/.component b/comp/src/gb.map/.component
index 2122fa7e2..5c8fb29c3 100644
--- a/comp/src/gb.map/.component
+++ b/comp/src/gb.map/.component
@@ -1,7 +1,6 @@
[Component]
Key=gb.map
-Version=3.3.90
+Version=3.4.0
State=2
Authors=Fabien Bodard
Needs=Form,ImageIO
-
diff --git a/comp/src/gb.map/.info b/comp/src/gb.map/.info
index f47d0c67d..4b1a26be2 100644
--- a/comp/src/gb.map/.info
+++ b/comp/src/gb.map/.info
@@ -66,10 +66,6 @@ PixelBox
r
Rect
-Preload
-p
-b
-
_ShowWithEffect
v
b
@@ -246,3 +242,85 @@ tmrOnMove_Timer
m
+#Shapes
+
+C
+Point
+C
+i
+1
+MultiPoint
+C
+i
+8
+Polyline
+C
+i
+3
+Polygon
+C
+i
+5
+Count
+r
+i
+
+Max
+r
+i
+
+AddMultiPoint
+m
+
+(Data)MapPoint[];[(Id)s]
+AddPoint
+m
+
+(Data)MapPoint;[(Id)s]
+AddPolyline
+m
+
+(Data)MapPoint[];[(Id)s]
+GetCenter
+M
+MapPoint
+(hPoints)MapPoint[];
+AddPolygon
+m
+
+(Data)MapPoint[][];[(Id)s]
+_get
+m
+_ShapeItem
+(Index)i
+#_ShapeItem
+
+C
+Box
+v
+RectF
+
+Id
+v
+s
+
+Type
+v
+i
+
+Data
+v
+o
+
+Center
+v
+MapPoint
+
+Selected
+v
+b
+
+Contains
+m
+b
+(hMapPoint)MapPoint;
diff --git a/comp/src/gb.map/.list b/comp/src/gb.map/.list
index fd479b9c9..cb8c53413 100644
--- a/comp/src/gb.map/.list
+++ b/comp/src/gb.map/.list
@@ -2,3 +2,5 @@ Geo
Map
MapPoint
MapView
+Shapes
+_ShapeItem
diff --git a/comp/src/gb.map/.src/Map.class b/comp/src/gb.map/.src/Map.class
index 5fb69c83f..2dd642339 100644
--- a/comp/src/gb.map/.src/Map.class
+++ b/comp/src/gb.map/.src/Map.class
@@ -23,8 +23,8 @@ Private $PrevBox As Rect
Private $iPrevent As Integer = 256
Private $aLayers As New _MapLayer[]
Private $aLayerNames As New String[]
-Property Preload As Boolean
-Private $bPreload As Boolean
+'Property Preload As Boolean
+'Private $bPreload As Boolean
Public _ShowWithEffect As Boolean
Event Refresh
@@ -194,6 +194,7 @@ Public Function AddShape(Name As String, Optional Shape As Shapes) As _MapShape
$aLayers.Add(hLayer)
$aLayerNames.Add(Name)
Object.Attach(hLayer, Me, "Layer")
+ If Shape Then hLayer.Data = Shape
Return hLayer
End
@@ -225,7 +226,7 @@ Public Sub Draw()
'Draw.Rect(0, 0, Me.Width, Me.Height)
For Each hLayer In $aLayers
If hLayer.Visible Then
- hLayer.Draw
+ hLayer._Draw
sCopyright &/= hLayer.Copyright
Endif
Next
@@ -260,10 +261,10 @@ Public Sub Refresh()
End
-Private Function Preload_Read() As Boolean
-
-End
-
-Private Sub Preload_Write(Value As Boolean)
-
-End
+' Private Function Preload_Read() As Boolean
+'
+' End
+'
+' Private Sub Preload_Write(Value As Boolean)
+'
+' End
diff --git a/comp/src/gb.map/.src/MapView.class b/comp/src/gb.map/.src/MapView.class
index d6be33c65..afba76a69 100644
--- a/comp/src/gb.map/.src/MapView.class
+++ b/comp/src/gb.map/.src/MapView.class
@@ -156,7 +156,7 @@ Public Sub View_MouseDown()
$pCurCenterPx = Geo.MapPointToPixel($hmap.Center, $hmap.Zoom)
$bShowInertia = False
$tmrOnMove.Stop
- Raise MouseDown
+ 'Raise MouseDown
End
diff --git a/comp/src/gb.map/.src/Tests/FMain.class b/comp/src/gb.map/.src/Tests/FMain.class
index 885d72c32..f86aff8cb 100644
--- a/comp/src/gb.map/.src/Tests/FMain.class
+++ b/comp/src/gb.map/.src/Tests/FMain.class
@@ -33,6 +33,7 @@ Public Sub _new()
MapView1.Map.AddShape("NewShape")
+ 'MapView1.Map["NewShape"].Data = LoadShapes()
'Manage the list of layers
@@ -51,8 +52,8 @@ Public Sub Form_Open()
End
Public Sub MapView1_MouseDown()
-
-
+ Dim hMapPoint As New MapPoint[][]
+ 'Print "mousedown"
If Mouse.Control Then
hmap.Zoom = MapView1.map.Zoom + SpinBox1.Value
@@ -63,8 +64,16 @@ Public Sub MapView1_MouseDown()
Endif
If Mouse.Shift Then
-
- MapView1.Map["NewShape"].Data.AddPoint(Geo.PixelToMapPoint(point(MapView1.Map.PixelBox.X + Mouse.X, MapView1.Map.PixelBox.Y + Mouse.y), MapView1.Map.Zoom))
+ If MapView1.Map["NewShape"].Data.Count = 0 Then
+ hMapPoint.Add([Geo.PixelToMapPoint(point(MapView1.Map.PixelBox.X + Mouse.X, MapView1.Map.PixelBox.Y + Mouse.y), MapView1.Map.Zoom)])
+ MapView1.Map["NewShape"].Data.AddPolygon(hMapPoint, "toto")
+ MapView1.Map["NewShape"].Data[0].Selected = True
+ Else
+ MapView1.Map["NewShape"].Data[0].Data[0].Add(Geo.PixelToMapPoint(point(MapView1.Map.PixelBox.X + Mouse.X, MapView1.Map.PixelBox.Y + Mouse.y), MapView1.Map.Zoom))
+ MapView1.Map["NewShape"].Data[0].Center = Shapes.GetCenter(MapView1.Map["NewShape"].Data[0].Data[0])
+
+ Endif
+ 'MapView1.Map["NewShape"].Data.AddPoint(Geo.PixelToMapPoint(point(MapView1.Map.PixelBox.X + Mouse.X, MapView1.Map.PixelBox.Y + Mouse.y), MapView1.Map.Zoom))
MapView1.Refresh
Endif
@@ -74,6 +83,7 @@ Public Sub MapView1_MouseMove()
$iMX = Mouse.X
$iMY = Mouse.Y
+ Me.Text = Geo.PixelToMapPoint(Point(MapView1.Map.PixelBox.x + Mouse.x, MapView1.Map.PixelBox.y + Mouse.y), MapView1.Map.Zoom).Lon
If $bLens Then
hmap.Center = Geo.PixelToMapPoint(Point(MapView1.Map.PixelBox.X + Mouse.X, MapView1.Map.PixelBox.Y + Mouse.y), MapView1.Map.Zoom)
@@ -168,3 +178,39 @@ Public Sub Panel3_MouseDown()
End
+
+
+Public Function LoadShapes() As Shapes
+
+ Dim hdoc As New XmlDocument
+ Dim el As XmlElement
+ Dim el2 As XmlElement
+ Dim hShapes As New Shapes
+ Dim hMP As New MapPoint[][]
+ Dim hmps As MapPoint[]
+ Dim mp As MapPoint
+ Dim s As String
+
+ hdoc.Open("parcellaire.kml")
+ For Each el In hdoc.GetElementsByTagName("Polygon")
+ el.GetAttribute("index")
+ hmp = New MapPoint[][]
+ el2 = el.GetChildrenByTagName("Coordinates")[0]
+ hmps = New MapPoint[]
+ hMP.Add(hmps)
+ For Each s In Split(Replace(el2.TextContent, "\n", " "), " ")
+ mp = New MapPoint
+ mp.Lon = Split(s)[0]
+ mp.Lat = Split(s)[1]
+ hMP[0].Add(mp)
+ Next
+
+ hShapes.AddPolygon(hmp)
+
+
+
+
+ Next
+ Return hShapes
+
+End
diff --git a/comp/src/gb.map/.src/Tests/FMain.form b/comp/src/gb.map/.src/Tests/FMain.form
index 81b2a3a29..e81a4f1bb 100644
--- a/comp/src/gb.map/.src/Tests/FMain.form
+++ b/comp/src/gb.map/.src/Tests/FMain.form
@@ -9,6 +9,7 @@
{ MapView1 MapView
MoveScaled(18,16,16,16)
Expand = True
+ AllowEffect = False
}
{ GridView1 GridView
MoveScaled(72,11,25,35)
diff --git a/comp/src/gb.map/.src/Tools/Geo.module b/comp/src/gb.map/.src/Tools/Geo.module
index cb245d0e1..ea03f040a 100644
--- a/comp/src/gb.map/.src/Tools/Geo.module
+++ b/comp/src/gb.map/.src/Tools/Geo.module
@@ -32,7 +32,7 @@ Public Function MapPointToPixel(hMapPoint As MapPoint, Zoom As Integer) As Point
X = (X + $originShift) / res
Y = (Y + $originShift) / res
Return Point(X, Y)
-
+
End
diff --git a/comp/src/gb.map/.src/_MapLayer.class b/comp/src/gb.map/.src/_MapLayer.class
index 0b763a59d..5d817f0fd 100644
--- a/comp/src/gb.map/.src/_MapLayer.class
+++ b/comp/src/gb.map/.src/_MapLayer.class
@@ -9,7 +9,7 @@ Property Data As Shapes
Event Refresh
-Public Sub Draw() '(Optional bRefresh As Boolean = True)
+Public Sub _Draw() '(Optional bRefresh As Boolean = True)
diff --git a/comp/src/gb.map/.src/_MapShape.class b/comp/src/gb.map/.src/_MapShape.class
index 28156804c..29ca96d98 100644
--- a/comp/src/gb.map/.src/_MapShape.class
+++ b/comp/src/gb.map/.src/_MapShape.class
@@ -4,7 +4,9 @@ Inherits _MapLayer
Private $hShapes As New Shapes
Private $himgPoint As Image
Property Data As Shapes
-
+Property {Color} As Integer
+Private $icolor As Integer
+Private $sCurrent As String
Public Sub _new(Optional hShape As Shapes)
$himgPoint = Image.Load("point.png")
@@ -13,9 +15,6 @@ End
Public Sub Load()
-
-
-
End
Public Sub AddPoint(Data As MapPoint)
@@ -24,39 +23,96 @@ Public Sub AddPoint(Data As MapPoint)
End
-
-Public Sub Draw()
+Public Sub _Draw()
Dim hItem As _ShapeItem
- Dim i As Integer
+ Dim i, j As Integer
Dim pt As Point
Dim hMap As Map = GetMap()
-
+ Dim hPoly As Integer[]
+ Dim iColor As Integer
+
If $hShapes.Count = 0 Then Return
For i = 0 To $hShapes.Max
- pt = Geo.MapPointToPixel($hShapes[i].Data, hMap.zoom)
- Paint.Brush = Paint.Color(Color.Green)
- 'Paint.Arc(pt.X - hMap.PixelBox.X, pt.Y - hMap.PixelBox.Y, 5)
- Paint.DrawImage($himgPoint, pt.X - hMap.PixelBox.X - 16, pt.Y - hMap.PixelBox.Y - 32)
- Paint.Fill
+ iColor = Me.Color
+ If $hShapes[i].Selected Then icolor = Color.White
+ Select Case $hShapes[i].Type
+ Case Shapes.Point
+ pt = Geo.MapPointToPixel($hShapes[i].Data, hMap.zoom)
+ Paint.Brush = Paint.Color(Color.Green)
+ 'Paint.Arc(pt.X - hMap.PixelBox.X, pt.Y - hMap.PixelBox.Y, 5)
+ Paint.DrawImage($himgPoint, pt.X - hMap.PixelBox.X - 16, pt.Y - hMap.PixelBox.Y - 32)
+
+ Case Shapes.MultiPoint
+ For j = 0 To $hShapes[i].Data.Max
+ pt = Geo.MapPointToPixel($hShapes[i].Data[j], hMap.zoom)
+ Paint.DrawImage($himgPoint, pt.X - hMap.PixelBox.X - 16, pt.Y - hMap.PixelBox.Y - 32)
+ Next
+
+ Case Shapes.Polygon
+ hPoly = New Integer[]
+ For j = 0 To $hShapes[i].Data[0].Max
+ pt = Geo.MapPointToPixel($hShapes[i].Data[0][j], hMap.zoom)
+ hPoly.Add(pt.x - hMap.PixelBox.X)
+ hPoly.Add(pt.y - hMap.PixelBox.Y)
+ Next
+ Paint.LineWidth = 2
+ Paint.Brush = Paint.Color(Color.SetAlpha(icolor, 125))
+ Paint.Polygon(hPoly)
+ Paint.fill(True)
+ Paint.Brush = Paint.Color(icolor)
+ Paint.Stroke
+ ' If $hShapes[i].Center Then
+ ' pt = Geo.MapPointToPixel($hShapes[i].Center, hMap.Zoom)
+ ' 'Print $hShapes[i].Center.Lat
+ ' Paint.Brush = Paint.Color(Color.White)
+ ' Paint.Fill
+ ' Endif
+
+ Case Shapes.Polyline
+ For j = 0 To $hShapes[i].Data.Max
+ pt = Geo.MapPointToPixel($hShapes[i].Data[0][j], hMap.zoom)
+ hPoly.Add(pt.x - hMap.PixelBox.X)
+ hPoly.Add(pt.y - hMap.PixelBox.Y)
+ Next
+ Paint.LineWidth = 2
+ 'Paint.Brush = Paint.Color(Color.SetAlpha(Color.red, 125))
+ Paint.Polygon(hPoly)
+ 'Paint.fill(True)
+ Paint.Brush = Paint.Color(icolor)
+ Paint.Stroke
+
+ End Select
Next
End
Private Function Data_Read() As Shapes
-
+
Return $hShapes
-
+
End
Private Sub Data_Write(Value As Shapes)
-
+
$hShapes = Value
-
+
End
-Public Function GetMap() As Map
+Private Function GetMap() As Map
Return Object.Parent(Me)
End
+
+Private Function Color_Read() As Integer
+
+ Return $icolor
+
+End
+
+Private Sub Color_Write(Value As Integer)
+
+ $icolor = Value
+
+End
diff --git a/comp/src/gb.map/.src/_MapTile.class b/comp/src/gb.map/.src/_MapTile.class
index b8193fbd5..ca2b3f299 100644
--- a/comp/src/gb.map/.src/_MapTile.class
+++ b/comp/src/gb.map/.src/_MapTile.class
@@ -4,7 +4,7 @@ Inherits _MapLayer
Private $aClients As New HttpClient[]
Private $iClientCount As Integer = 4
Private $sCachePath As String = User.Home &/ ".cache/gb.map"
-Private $tmrGet As New Timer As "Get"
+Private $tmrGet As New Timer As "tmrGet"
Private $aTiles As New String[]
Private $colTiles As New Collection
Public $aStack As New String[]
@@ -48,8 +48,14 @@ Public Sub _new(Optional CacheName As String)
End
' svn checkout --username=gambix svn+ssh://gambas@svn.code.sf.net/p/gambas/code/gambas/trunk
'
+'
+Public Sub ClearCache()
+
+ Try Exec ["rm", $sCachePath &/ "*.png"]
+
+End
-Public Sub Draw()
+Public Sub _Draw()
Dim s As String
Dim hTile As _Tile
@@ -241,13 +247,13 @@ Catch
End
-Public Function GetMap() As Map
+Private Function GetMap() As Map
Return Object.Parent(Me)
End
-Public Sub Get_Timer()
+Public Sub tmrGet_Timer()
Dim sUrl, sFile As String
Dim hClient As HttpClient
@@ -279,7 +285,7 @@ Public Sub Get_Timer()
End
-Public Sub GetClient() As HttpClient
+Private Sub GetClient() As HttpClient
Dim i As Integer
diff --git a/comp/src/gb.map/parcellaire.kml b/comp/src/gb.map/parcellaire.kml
new file mode 100644
index 000000000..e69de29bb
diff --git a/comp/src/gb.map/parcellaire.xml b/comp/src/gb.map/parcellaire.xml
new file mode 100644
index 000000000..bcef2610d
--- /dev/null
+++ b/comp/src/gb.map/parcellaire.xml
@@ -0,0 +1,5268 @@
+
+
+
+
+ SCEA BODARD
+ 1982-10-06
+
+ Monsieur
+ BODARD
+ Fabien
+
+
+
+
+ Monsieur
+ BODARD
+ Fabien
+
+ 1978-05-17
+
+
+
+ Madame
+ BODARD
+ Jocelyne
+
+ 1957-11-14
+
+
+
+ Monsieur
+ BODARD
+ Jean-Pierre
+
+ 1951-09-23
+
+
+ 6
+
+ 32547441900026
+ 0546491397
+ 0546491397
+ 0686488233
+ arcalis.fr@gmail.com
+
+
+ les chenegards
+ 17520
+ ARCHIAC
+
+
+
+
+ 17016
+ 187
+
+
+
+
+
+
+441724.98,6497264.717 441628.585,6497331.443
+ 441639.754,6497354.361 441570.109,6497389.964
+ 441525.321,6497288.344 441568.15,6497277.0
+ 441606.055,6497264.669 441584.743,6497220.884
+ 441686.418,6497196.127 441724.98,6497264.717
+
+
+
+
+
+
+
+
+
+
+
+ 187
+
+
+
+
+
+
+
+441724.98,6497264.717 441628.585,6497331.443
+ 441639.754,6497354.361 441570.109,6497389.964
+ 441525.321,6497288.344 441568.15,6497277.0
+ 441606.055,6497264.669 441584.743,6497220.884
+ 441686.418,6497196.127 441724.98,6497264.717
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 133
+
+
+
+
+
+
+441448.425,6497166.497 441457.193,6497188.974
+ 441608.995,6497176.503 441623.119,6497196.649
+ 441612.783,6497205.776 441469.898,6497229.843
+ 441336.726,6497238.274 441330.79,6497226.074
+ 441329.519,6497183.273 441448.425,6497166.497
+
+
+
+
+
+
+
+
+
+
+
+ 47
+
+
+
+
+
+
+
+441532.272,6497208.719 441463.375,6497215.638
+ 441457.193,6497188.974 441608.995,6497176.503
+ 441623.119,6497196.649 441612.783,6497205.776
+ 441539.209,6497217.964 441532.272,6497208.719
+
+
+
+
+
+
+
+
+
+
+
+ 9
+
+
+
+
+
+
+
+441539.209,6497217.964 441469.898,6497229.843
+ 441466.442,6497230.016 441463.375,6497215.638
+ 441532.272,6497208.719 441539.209,6497217.964
+
+
+
+
+
+
+
+
+
+
+
+ 77
+
+
+
+
+
+
+
+441330.79,6497226.074 441329.519,6497183.273
+ 441448.425,6497166.497 441457.193,6497188.974
+ 441466.442,6497230.016 441336.726,6497238.274
+ 441330.79,6497226.074
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 92
+
+
+
+
+
+
+441196.453,6497426.694 441196.341,6497426.465
+ 441162.742,6497271.3 441161.713,6497266.493
+ 441215.395,6497250.349 441250.574,6497409.446
+ 441230.473,6497415.763 441196.453,6497426.694
+
+
+
+
+
+
+
+
+
+
+
+ 92
+
+
+
+
+
+
+
+441196.453,6497426.694 441196.341,6497426.465
+ 441162.742,6497271.3 441161.713,6497266.493
+ 441215.395,6497250.349 441250.574,6497409.446
+ 441230.473,6497415.763 441196.453,6497426.694
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 112
+
+
+
+
+
+
+440900.955,6497858.722 440901.342,6497858.526
+ 440901.608,6497859.061 440901.658,6497859.03
+ 440902.384,6497858.665 440902.284,6497858.05
+ 441096.409,6497759.922 441094.161,6497750.707
+ 441066.693,6497765.782 441060.543,6497744.935
+ 441060.508,6497744.949 441060.456,6497744.772
+ 441059.015,6497745.507 441050.714,6497726.719
+ 441055.679,6497723.502 441054.494,6497720.326
+ 441045.319,6497694.872 441089.92,6497676.494
+ 441090.099,6497677.012 441090.046,6497676.96
+ 441093.821,6497687.797 441130.503,6497794.067
+ 441142.071,6497827.842 441142.325,6497828.687
+ 441121.428,6497837.786 441103.217,6497785.412
+ 440912.316,6497881.622 440900.955,6497858.722
+
+
+
+
+
+
+
+
+
+
+
+ 56
+
+
+
+
+
+
+
+441103.217,6497785.412 440912.316,6497881.622
+ 440900.955,6497858.722 440901.342,6497858.526
+ 440901.608,6497859.061 440902.384,6497858.665
+ 440902.284,6497858.05 441096.409,6497759.922
+ 441103.217,6497785.412
+
+
+
+
+
+
+
+
+
+
+
+ 56
+
+
+
+
+
+
+
+441142.325,6497828.687 441121.428,6497837.786
+ 441103.217,6497785.412 441096.409,6497759.922
+ 441094.161,6497750.707 441066.693,6497765.782
+ 441060.543,6497744.935 441060.456,6497744.772
+ 441059.015,6497745.507 441050.714,6497726.719
+ 441055.679,6497723.502 441054.494,6497720.326
+ 441045.319,6497694.872 441089.92,6497676.494
+ 441090.046,6497676.96 441142.325,6497828.687
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+
+
+
+
+
+
+440794.3,6497574.63 440796.434,6497573.08
+ 440795.453,6497571.517 440796.42,6497570.67
+ 440818.5,6497558.33 440839.28,6497590.45
+ 440866.88,6497635.02 440869.89,6497638.23
+ 440874.61,6497633.21 440902.22,6497614.16
+ 440852.98,6497541.7 440849.002,6497545.734
+ 440762.035,6497410.582 440799.688,6497382.227
+ 440895.714,6497519.372 440885.802,6497525.409
+ 440930.965,6497595.809 440939.003,6497592.157
+ 440940.8,6497591.207 440942.233,6497593.135
+ 440941.992,6497593.274 440946.049,6497600.838
+ 440953.259,6497614.284 440954.807,6497617.567
+ 440957.66,6497623.617 440959.096,6497622.884
+ 440959.206,6497623.207 440876.818,6497677.419
+ 440861.616,6497687.423 440858.706,6497689.096
+ 440839.11,6497654.3 440820.3,6497619.9
+ 440794.3,6497574.63
+
+
+
+
+
+
+
+
+
+
+
+ 106
+
+
+
+
+
+
+
+440818.5,6497558.33 440839.28,6497590.45
+ 440866.88,6497635.02 440869.89,6497638.23
+ 440874.61,6497633.21 440902.22,6497614.16
+ 440852.98,6497541.7 440849.002,6497545.734
+ 440852.877,6497541.366 440885.802,6497525.409
+ 440930.965,6497595.809 440939.003,6497592.157
+ 440940.8,6497591.207 440942.233,6497593.135
+ 440941.992,6497593.274 440946.049,6497600.838
+ 440957.66,6497623.617 440959.096,6497622.884
+ 440959.206,6497623.207 440861.616,6497687.423
+ 440858.706,6497689.096 440839.11,6497654.3
+ 440820.3,6497619.9 440794.3,6497574.63
+ 440796.434,6497573.08 440795.453,6497571.517
+ 440796.42,6497570.67 440818.5,6497558.33
+
+
+
+
+
+
+
+
+
+
+
+ 82
+
+
+
+
+
+
+
+440895.714,6497519.372 440885.802,6497525.409
+ 440852.877,6497541.366 440849.002,6497545.734
+ 440762.035,6497410.582 440799.688,6497382.227
+ 440895.714,6497519.372
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+
+
+
+
+
+
+440627.859,6497504.525 440662.495,6497482.311
+ 440663.078,6497483.189 440735.966,6497592.706
+ 440745.184,6497606.557 440738.353,6497609.489
+ 440814.697,6497747.183 440796.11,6497759.59
+ 440719.5,6497625.21 440708.25,6497631.3
+ 440627.859,6497504.525
+
+
+
+
+
+
+
+
+
+
+
+ 100
+
+
+
+
+
+
+
+440627.859,6497504.525 440662.495,6497482.311
+ 440663.078,6497483.189 440735.966,6497592.706
+ 440745.184,6497606.557 440738.353,6497609.489
+ 440814.697,6497747.183 440796.11,6497759.59
+ 440719.5,6497625.21 440708.25,6497631.3
+ 440627.859,6497504.525
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+
+
+
+
+
+
+441429.479,6497785.684 441499.728,6497933.604
+ 441464.083,6497948.331 441395.913,6497797.56
+ 441429.479,6497785.684
+
+
+
+
+
+
+
+
+
+
+
+ 61
+
+
+
+
+
+
+
+441429.479,6497785.684 441499.728,6497933.604
+ 441464.083,6497948.331 441395.913,6497797.56
+ 441429.479,6497785.684
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+
+
+
+
+
+
+441557.904,6497950.824 441556.77,6497951.523
+ 441545.803,6497927.319 441663.979,6497876.695
+ 441666.138,6497887.176 441557.904,6497950.824
+
+
+
+
+
+
+
+
+
+
+
+ 23
+
+
+
+
+
+
+
+441557.904,6497950.824 441556.77,6497951.523
+ 441545.803,6497927.319 441663.979,6497876.695
+ 441666.138,6497887.176 441557.904,6497950.824
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+
+
+
+
+
+
+441286.309,6498162.994 441267.445,6498101.869
+ 441268.75,6498096.41 441439.34,6498035.03
+ 441447.509,6498064.228 441449.544,6498079.997
+ 441454.122,6498093.222 441286.309,6498162.994
+
+
+
+
+
+
+
+
+
+
+
+ 117
+
+
+
+
+
+
+
+441286.309,6498162.994 441267.445,6498101.869
+ 441268.75,6498096.41 441439.34,6498035.03
+ 441447.509,6498064.228 441449.544,6498079.997
+ 441454.122,6498093.222 441286.309,6498162.994
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 102
+
+
+
+
+
+
+442453.649,6496219.707 442554.461,6496326.699
+ 442447.68,6496437.524 442458.164,6496406.473
+ 442453.649,6496219.707
+
+
+
+
+
+
+
+
+
+
+
+ 102
+
+
+
+
+
+
+
+442453.649,6496219.707 442554.461,6496326.699
+ 442447.68,6496437.524 442458.164,6496406.473
+ 442453.649,6496219.707
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 117
+
+
+
+
+
+
+442719.612,6496365.292 442614.892,6496270.231
+ 442622.735,6496262.953 442679.416,6496209.833
+ 442773.047,6496293.995 442754.161,6496307.089
+ 442749.289,6496328.071 442732.511,6496347.212
+ 442719.612,6496365.292
+
+
+
+
+
+
+
+
+
+
+
+ 117
+
+
+
+
+
+
+
+442719.612,6496365.292 442614.892,6496270.231
+ 442622.735,6496262.953 442679.416,6496209.833
+ 442773.047,6496293.995 442754.161,6496307.089
+ 442749.289,6496328.071 442732.511,6496347.212
+ 442719.612,6496365.292
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 118
+
+
+
+
+
+
+442944.743,6496042.812 443051.438,6496127.786
+ 442996.932,6496195.195 442894.361,6496111.107
+ 442916.151,6496073.271 442931.912,6496055.856
+ 442944.743,6496042.812
+
+
+
+
+
+
+
+
+
+
+
+ 118
+
+
+
+
+
+
+
+442944.743,6496042.812 443051.438,6496127.786
+ 442996.932,6496195.195 442894.361,6496111.107
+ 442916.151,6496073.271 442931.912,6496055.856
+ 442944.743,6496042.812
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 287
+
+
+
+
+
+
+442818.971,6495727.012 442827.425,6495738.042
+ 442833.451,6495747.953 442882.292,6495849.241
+ 442942.76,6495925.562 442962.372,6495950.467
+ 442984.223,6495986.516 442919.12,6495962.095
+ 442834.981,6495933.715 442766.981,6495888.197
+ 442684.211,6495819.122 442818.971,6495727.012
+
+
+
+
+
+
+
+
+
+
+
+ 101
+
+
+
+
+
+
+
+442795.482,6495907.189 442882.292,6495849.241
+ 442942.76,6495925.562 442962.372,6495950.467
+ 442984.223,6495986.516 442919.12,6495962.095
+ 442834.981,6495933.715 442795.482,6495907.189
+
+
+
+
+
+
+
+
+
+
+
+ 186
+
+
+
+
+
+
+
+442818.971,6495727.012 442827.425,6495738.042
+ 442833.451,6495747.953 442882.292,6495849.241
+ 442795.482,6495907.189 442766.981,6495888.197
+ 442684.211,6495819.122 442818.971,6495727.012
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 242
+
+
+
+
+
+
+442601.387,6495609.475 442666.206,6495574.637
+ 442674.338,6495593.364 442717.051,6495568.054
+ 442740.413,6495610.794 442753.522,6495632.656
+ 442784.863,6495671.433 442813.149,6495715.16
+ 442805.362,6495725.405 442709.103,6495790.963
+ 442670.861,6495727.308 442601.387,6495609.475
+
+
+
+
+
+
+
+
+
+
+
+ 242
+
+
+
+
+
+
+
+442740.413,6495610.794 442753.522,6495632.656
+ 442784.863,6495671.433 442813.149,6495715.16
+ 442805.362,6495725.405 442708.596,6495791.309
+ 442601.387,6495609.475 442666.206,6495574.637
+ 442674.338,6495593.364 442717.051,6495568.054
+ 442740.413,6495610.794
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+ 49
+
+
+
+
+
+
+441054.86,6496578.868 441092.691,6496557.615
+ 441158.083,6496741.931 441145.054,6496731.048
+ 441113.639,6496683.35 441054.86,6496578.868
+
+
+
+
+
+
+
+
+
+
+
+ 49
+
+
+
+
+
+
+
+441054.86,6496578.868 441092.691,6496557.615
+ 441158.083,6496741.931 441145.054,6496731.048
+ 441113.639,6496683.35 441054.86,6496578.868
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+ 201
+
+
+
+
+
+
+440896.085,6496703.117 440842.544,6496636.598
+ 440919.963,6496571.967 440865.441,6496512.55
+ 440945.845,6496448.934 440971.126,6496474.712
+ 440998.301,6496507.449 441017.533,6496535.225
+ 440938.083,6496589.792 440963.285,6496620.607
+ 440978.192,6496637.648 440896.085,6496703.117
+
+
+
+
+
+
+
+
+
+
+
+ 90
+
+
+
+
+
+
+
+440896.085,6496703.117 440842.544,6496636.598
+ 440919.963,6496571.967 440938.083,6496589.792
+ 440958.156,6496614.601 440978.192,6496637.648
+ 440896.085,6496703.117
+
+
+
+
+
+
+
+
+
+
+
+ 29
+
+
+
+
+
+
+
+440938.083,6496589.792 440921.752,6496573.559
+ 440865.441,6496512.55 440886.613,6496495.973
+ 440959.139,6496574.683 440938.083,6496589.792
+
+
+
+
+
+
+
+
+
+
+
+ 54
+
+
+
+
+
+
+
+441017.533,6496535.225 440980.858,6496559.972
+ 440906.746,6496479.879 440945.845,6496448.934
+ 440971.126,6496474.712 440998.301,6496507.449
+ 441017.533,6496535.225
+
+
+
+
+
+
+
+
+
+
+
+ 28
+
+
+
+
+
+
+
+440959.139,6496574.683 440889.214,6496498.503
+ 440886.613,6496495.973 440906.746,6496479.879
+ 440980.858,6496559.972 440959.139,6496574.683
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+ 344
+
+
+
+
+
+
+440655.132,6496813.956 440676.011,6496791.804
+ 440782.803,6496901.845 440928.216,6497070.593
+ 440779.546,6497114.828 440678.625,6496997.599
+ 440712.384,6496968.356 440747.145,6496937.047
+ 440638.43,6496828.861 440655.132,6496813.956
+
+
+
+
+
+
+
+
+
+
+
+ 61
+
+
+
+
+
+
+
+440638.43,6496828.861 440655.132,6496813.956
+ 440667.491,6496800.902 440775.331,6496909.327
+ 440747.145,6496937.047 440638.43,6496828.861
+
+
+
+
+
+
+
+
+
+
+
+ 265
+
+
+
+
+
+
+
+440782.803,6496901.845 440928.216,6497070.593
+ 440779.546,6497114.828 440678.625,6496997.599
+ 440712.384,6496968.356 440747.145,6496937.047
+ 440775.331,6496909.327 440782.803,6496901.845
+
+
+
+
+
+
+
+
+
+
+
+ 18
+
+
+
+
+
+
+
+440775.331,6496909.327 440667.491,6496800.902
+ 440676.011,6496791.804 440782.803,6496901.845
+ 440775.331,6496909.327
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+ 141
+
+
+
+
+
+
+440623.382,6496882.167 440626.191,6496884.702
+ 440676.199,6496929.839 440690.705,6496943.96
+ 440611.273,6497008.355 440567.645,6497045.092
+ 440500.707,6496993.22 440623.382,6496882.167
+
+
+
+
+
+
+
+
+
+
+
+ 141
+
+
+
+
+
+
+
+440623.382,6496882.167 440626.191,6496884.702
+ 440676.199,6496929.839 440690.705,6496943.96
+ 440611.273,6497008.355 440567.645,6497045.092
+ 440500.707,6496993.22 440623.382,6496882.167
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+ 75
+
+
+
+
+
+
+440497.82,6496857.475 440517.558,6496834.043
+ 440542.222,6496807.903 440608.179,6496860.652
+ 440607.564,6496861.277 440545.729,6496923.94
+ 440545.607,6496923.85 440545.596,6496923.861
+ 440541.527,6496921.437 440539.046,6496924.211
+ 440483.081,6496876.858 440488.783,6496870.052
+ 440497.82,6496857.475
+
+
+
+
+
+
+
+
+
+
+
+ 75
+
+
+
+
+
+
+
+440497.82,6496857.475 440517.558,6496834.043
+ 440542.222,6496807.903 440608.179,6496860.652
+ 440607.564,6496861.277 440545.729,6496923.94
+ 440545.607,6496923.85 440545.596,6496923.861
+ 440541.527,6496921.437 440539.046,6496924.211
+ 440483.081,6496876.858 440488.783,6496870.052
+ 440497.82,6496857.475
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440433.11,6497027.667 440457.951,6497013.375
+ 440558.401,6497104.235 440498.51,6497129.227
+ 440481.971,6497136.118 440514.238,6497176.825
+ 440517.368,6497180.806 440468.506,6497197.124
+ 440467.119,6497194.958 440382.843,6497066.198
+ 440381.446,6497064.031 440400.307,6497046.821
+ 440433.11,6497027.667
+
+
+
+
+
+
+
+
+
+
+
+ 65
+
+
+
+
+
+
+
+440468.506,6497197.124 440467.119,6497194.958
+ 440382.843,6497066.198 440381.446,6497064.031
+ 440400.307,6497046.821 440481.971,6497136.118
+ 440514.238,6497176.825 440517.368,6497180.806
+ 440468.506,6497197.124
+
+
+
+
+
+
+
+
+
+
+
+ 90
+
+
+
+
+
+
+
+440481.971,6497136.118 440400.307,6497046.821
+ 440433.11,6497027.667 440457.951,6497013.375
+ 440558.401,6497104.235 440498.51,6497129.227
+ 440481.971,6497136.118
+
+
+
+
+
+
+
+
+
+
+
+ 17355
+ 461
+
+
+
+
+
+
+440466.833,6497619.747 440529.607,6497572.625
+ 440625.346,6497507.447 440716.057,6497650.806
+ 440739.379,6497703.348 440750.464,6497733.308
+ 440700.194,6497758.962 440692.011,6497761.745
+ 440653.296,6497773.967 440585.509,6497786.65
+ 440567.15,6497789.083 440558.152,6497774.077
+ 440466.833,6497619.747
+
+
+
+
+
+
+
+
+
+
+
+ 297
+
+
+
+
+
+
+
+440750.464,6497733.308 440700.194,6497758.962
+ 440653.296,6497773.967 440647.974,6497774.771
+ 440527.509,6497574.38 440625.346,6497507.447
+ 440716.057,6497650.806 440739.379,6497703.348
+ 440750.464,6497733.308
+
+
+
+
+
+
+
+
+
+
+
+ 164
+
+
+
+
+
+
+
+440647.974,6497774.771 440585.509,6497786.65
+ 440567.15,6497789.083 440466.833,6497619.747
+ 440527.509,6497574.38 440647.974,6497774.771
+
+
+
+
+
+
+
+
+
+
+
+ 17355
+ 32
+
+
+
+
+
+
+440781.444,6497864.506 440781.837,6497864.254
+ 440785.223,6497861.603 440785.496,6497862.147
+ 440791.97,6497856.57 440793.696,6497855.363
+ 440832.651,6497956.1 440802.322,6497967.713
+ 440800.998,6497968.313 440793.571,6497971.192
+ 440770.094,6497915.995 440801.017,6497903.841
+ 440781.444,6497864.506
+
+
+
+
+
+
+
+
+
+
+
+ 32
+
+
+
+
+
+
+
+440781.444,6497864.506 440781.837,6497864.254
+ 440785.223,6497861.603 440785.496,6497862.147
+ 440791.97,6497856.57 440793.696,6497855.363
+ 440832.651,6497956.1 440802.322,6497967.713
+ 440800.998,6497968.313 440793.571,6497971.192
+ 440770.094,6497915.995 440801.017,6497903.841
+ 440781.444,6497864.506
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 118
+
+
+
+
+
+
+442634.58,6498013.945 442641.939,6498000.156
+ 442644.214,6497996.131 442654.615,6497976.316
+ 442698.637,6497993.429 442658.74,6498063.891
+ 442626.626,6498112.113 442593.767,6498152.328
+ 442589.024,6498157.998 442576.717,6498169.953
+ 442526.224,6498218.706 442518.698,6498226.323
+ 442487.778,6498206.481 442537.052,6498155.141
+ 442571.794,6498118.05 442577.85,6498110.926
+ 442598.231,6498078.998 442624.356,6498036.42
+ 442627.994,6498040.058 442640.299,6498020.542
+ 442640.087,6498020.294 442634.58,6498013.945
+
+
+
+
+
+
+
+
+
+
+
+ 118
+
+
+
+
+
+
+
+442634.58,6498013.945 442641.939,6498000.156
+ 442644.214,6497996.131 442654.615,6497976.316
+ 442698.637,6497993.429 442658.74,6498063.891
+ 442626.626,6498112.113 442593.767,6498152.328
+ 442589.024,6498157.998 442576.717,6498169.953
+ 442526.224,6498218.706 442518.698,6498226.323
+ 442487.778,6498206.481 442537.052,6498155.141
+ 442571.794,6498118.05 442577.85,6498110.926
+ 442598.231,6498078.998 442624.356,6498036.42
+ 442627.994,6498040.058 442640.299,6498020.542
+ 442640.087,6498020.294 442634.58,6498013.945
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 77
+
+
+
+
+
+
+441536.947,6498088.544 441589.886,6498058.914
+ 441617.228,6498106.926 441495.328,6498177.529
+ 441472.81,6498125.631 441508.696,6498104.733
+ 441536.947,6498088.544
+
+
+
+
+
+
+
+
+
+
+
+ 77
+
+
+
+
+
+
+
+441536.947,6498088.544 441589.886,6498058.914
+ 441617.228,6498106.926 441495.328,6498177.529
+ 441472.81,6498125.631 441508.696,6498104.733
+ 441536.947,6498088.544
+
+
+
+
+
+
+
+
+
+
+
+ 17076
+ 27
+
+
+
+
+
+
+437440.167,6505354.857 437447.067,6505344.609
+ 437603.935,6505475.3 437597.857,6505488.168
+ 437440.167,6505354.857
+
+
+
+
+
+
+
+
+
+
+
+ 27
+
+
+
+
+
+
+
+437440.167,6505354.857 437447.067,6505344.609
+ 437603.935,6505475.3 437597.857,6505488.168
+ 437440.167,6505354.857
+
+
+
+
+
+
+
+
+
+
+
+ 17076
+ 53
+
+
+
+
+
+
+437763.174,6505238.547 437763.411,6505238.236
+ 437787.404,6505259.379 437691.499,6505385.49
+ 437690.874,6505384.953 437663.25,6505366.977
+ 437688.964,6505333.804 437763.174,6505238.547
+
+
+
+
+
+
+
+
+
+
+
+ 53
+
+
+
+
+
+
+
+437763.174,6505238.547 437763.411,6505238.236
+ 437787.404,6505259.379 437691.499,6505385.49
+ 437690.874,6505384.953 437663.25,6505366.977
+ 437688.964,6505333.804 437763.174,6505238.547
+
+
+
+
+
+
+
+
+
+
+
+ 17076
+ 119
+
+
+
+
+
+
+437873.806,6505263.993 437858.175,6505296.123
+ 437857.48,6505295.519 437858.809,6505293.1
+ 437855.952,6505291.885 437762.867,6505213.382
+ 437760.874,6505211.65 437609.582,6505068.964
+ 437607.216,6505066.736 437606.863,6505066.399
+ 437615.977,6505033.933 437616.611,6505034.467
+ 437690.055,6505097.037 437767.62,6505168.461
+ 437874.268,6505263.02 437873.806,6505263.993
+
+
+
+
+
+
+
+
+
+
+
+ 119
+
+
+
+
+
+
+
+437873.806,6505263.993 437858.175,6505296.123
+ 437857.48,6505295.519 437858.809,6505293.1
+ 437855.952,6505291.885 437762.867,6505213.382
+ 437760.874,6505211.65 437609.582,6505068.964
+ 437607.216,6505066.736 437606.863,6505066.399
+ 437615.977,6505033.933 437616.611,6505034.467
+ 437690.055,6505097.037 437767.62,6505168.461
+ 437874.268,6505263.02 437873.806,6505263.993
+
+
+
+
+
+
+
+
+
+
+
+ 17364
+ 19
+
+
+
+
+
+
+437854.282,6504698.416 437920.865,6504749.492
+ 437920.985,6504749.58 437926.053,6504753.455
+ 437915.168,6504766.254 437822.665,6504695.359
+ 437834.475,6504683.243 437854.282,6504698.416
+
+
+
+
+
+
+
+
+
+
+
+ 19
+
+
+
+
+
+
+
+437854.282,6504698.416 437920.865,6504749.492
+ 437920.985,6504749.58 437926.053,6504753.455
+ 437915.168,6504766.254 437822.665,6504695.359
+ 437834.475,6504683.243 437854.282,6504698.416
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 344
+
+
+
+
+
+
+442800.801,6496091.387 442697.202,6495965.074
+ 442697.421,6495964.962 442736.071,6495931.563
+ 442777.534,6495905.568 442828.025,6495935.841
+ 442856.44,6495948.122 442985.875,6495991.768
+ 442986.394,6496000.116 442980.73,6496006.348
+ 442963.694,6496023.203 442934.22,6496044.889
+ 442913.971,6496066.265 442860.424,6496160.033
+ 442793.442,6496101.528 442801.72,6496092.528
+ 442800.801,6496091.387
+
+
+
+
+
+
+
+
+
+
+
+ 344
+
+
+
+
+
+
+
+442800.801,6496091.387 442697.202,6495965.074
+ 442697.421,6495964.962 442736.071,6495931.563
+ 442777.534,6495905.568 442828.025,6495935.841
+ 442856.44,6495948.122 442985.875,6495991.768
+ 442986.394,6496000.116 442980.73,6496006.348
+ 442963.694,6496023.203 442934.22,6496044.889
+ 442913.971,6496066.265 442860.424,6496160.033
+ 442793.442,6496101.528 442801.72,6496092.528
+ 442800.801,6496091.387
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+
+
+
+
+
+
+442123.98,6497915.13 442177.937,6497986.47
+ 442099.587,6498037.358 442106.401,6498059.172
+ 442101.34,6498061.92 442101.513,6498062.53
+ 442045.471,6498092.625 442055.294,6498117.142
+ 442006.35,6498140.48 442008.91,6498147.08
+ 442006.643,6498148.32 442008.299,6498149.014
+ 442008.262,6498150.631 441914.376,6498189.521
+ 441912.948,6498190.202 441899.75,6498159.466
+ 441884.858,6498165.776 441884.169,6498163.673
+ 441845.569,6498076.998 441766.302,6498112.561
+ 441757.31,6498090.664 441833.514,6498053.259
+ 441887.05,6498026.981 441886.32,6498025.41
+ 441924.65,6498006.87 441924.8,6498006.36
+ 441923.02,6497998.28 441936.04,6497990.31
+ 442058.29,6497915.45 442081.139,6497943.781
+ 442123.98,6497915.13
+
+
+
+
+
+
+441998.737,6497994.928 441935.689,6498026.01
+ 441946.988,6498050.166 442003.21,6498024.62
+ 442011.08,6498021.03 441998.737,6497994.928
+
+
+
+
+
+
+441967.36,6498048.39 441954.08,6498053.01
+ 441954.94,6498062.54 441964.18,6498070.33
+ 441974.29,6498066.29 441967.36,6498048.39
+
+
+
+
+
+
+
+
+
+
+
+ 61
+
+
+
+
+
+
+
+441899.75,6498159.466 441964.928,6498130.375
+ 441926.969,6498043.537 441939.968,6498037.037
+ 441958.428,6498077.336 441976.563,6498069.146
+ 442006.35,6498140.48 442008.91,6498147.08
+ 442006.643,6498148.32 442008.299,6498149.014
+ 442008.262,6498150.631 441912.948,6498190.202
+ 441899.75,6498159.466
+
+
+
+
+
+
+
+
+
+
+
+ 410
+
+
+
+
+
+
+
+442123.98,6497915.13 442177.937,6497986.47
+ 442099.587,6498037.358 442106.401,6498059.172
+ 442101.34,6498061.92 442101.513,6498062.53
+ 442045.471,6498092.625 442055.294,6498117.142
+ 442006.35,6498140.48 441976.563,6498069.146
+ 441958.428,6498077.336 441939.968,6498037.037
+ 441926.969,6498043.537 441964.928,6498130.375
+ 441899.75,6498159.466 441884.858,6498165.776
+ 441884.169,6498163.673 441845.569,6498076.998
+ 441766.302,6498112.561 441757.31,6498090.664
+ 441833.514,6498053.259 441887.05,6498026.981
+ 441886.32,6498025.41 441924.65,6498006.87
+ 441924.8,6498006.36 441923.02,6497998.28
+ 441936.04,6497990.31 442058.29,6497915.45
+ 442081.139,6497943.781 442123.98,6497915.13
+
+
+
+
+
+
+441998.737,6497994.928 441935.689,6498026.01
+ 441946.988,6498050.166 442003.21,6498024.62
+ 442011.08,6498021.03 441998.737,6497994.928
+
+
+
+
+
+
+441967.36,6498048.39 441954.08,6498053.01
+ 441954.94,6498062.54 441964.18,6498070.33
+ 441974.29,6498066.29 441967.36,6498048.39
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 157
+
+
+
+
+
+
+442218.69,6497975.251 442313.389,6497910.147
+ 442318.1,6498036.935 442275.045,6498104.48
+ 442229.475,6498117.785 442207.871,6498121.06
+ 442218.69,6497975.251
+
+
+
+
+
+
+
+
+
+
+
+ 157
+
+
+
+
+
+
+
+442218.69,6497975.251 442313.389,6497910.147
+ 442318.1,6498036.935 442275.045,6498104.48
+ 442229.475,6498117.785 442207.871,6498121.06
+ 442218.69,6497975.251
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 47
+
+
+
+
+
+
+441815.156,6498648.4 441806.889,6498626.038
+ 441983.38,6498577.106 441995.81,6498601.573
+ 441871.794,6498633.556 441869.54,6498634.134
+ 441816.383,6498648.081 441815.156,6498648.4
+
+
+
+
+
+
+
+
+
+
+
+ 47
+
+
+
+
+
+
+
+441815.156,6498648.4 441806.889,6498626.038
+ 441983.38,6498577.106 441995.81,6498601.573
+ 441871.794,6498633.556 441869.54,6498634.134
+ 441816.383,6498648.081 441815.156,6498648.4
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 96
+
+
+
+
+
+
+441611.871,6498553.108 441613.867,6498552.296
+ 441614.028,6498553.025 441618.34,6498551.321
+ 441618.295,6498550.494 441754.13,6498494.442
+ 441769.478,6498554.213 441622.07,6498616.012
+ 441618.654,6498583.12 441611.871,6498553.108
+
+
+
+
+
+
+
+
+
+
+
+ 96
+
+
+
+
+
+
+
+441611.871,6498553.108 441613.867,6498552.296
+ 441614.028,6498553.025 441618.34,6498551.321
+ 441618.295,6498550.494 441754.13,6498494.442
+ 441769.478,6498554.213 441622.07,6498616.012
+ 441618.654,6498583.12 441611.871,6498553.108
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 309
+
+
+
+
+
+
+442899.7,6500034.319 442899.988,6500034.077
+ 442979.492,6499965.482 442981.879,6499964.094
+ 442983.106,6499963.974 442983.096,6499963.964
+ 442983.095,6499963.964 442981.396,6499962.479
+ 442983.082,6499960.997 443006.147,6499984.665
+ 443007.448,6499986.143 443011.919,6499981.839
+ 443112.805,6499902.444 443117.987,6499901.66
+ 443146.456,6499923.253 443112.854,6499951.025
+ 443037.902,6500012.978 443052.353,6500031.642
+ 443076.365,6500011.482 443157.093,6499938.651
+ 443158.651,6499934.981 443159.7,6499932.525
+ 443212.628,6499964.03 443082.047,6500073.034
+ 443084.64,6500076.007 443081.148,6500079.043
+ 443079.987,6500080.041 443072.569,6500069.802
+ 443005.16,6500126.947 442985.316,6500143.971
+ 442894.781,6500038.646 442899.7,6500034.319
+
+
+
+
+
+
+
+
+
+
+
+ 115
+
+
+
+
+
+
+
+442926.473,6500075.412 443017.778,6499992.366
+ 443037.902,6500012.978 443052.353,6500031.642
+ 443082.047,6500073.034 443084.64,6500076.007
+ 443081.148,6500079.043 443079.987,6500080.041
+ 443072.569,6500069.802 443005.16,6500126.947
+ 442985.316,6500143.971 442926.473,6500075.412
+
+
+
+
+
+
+
+
+
+
+
+ 84
+
+
+
+
+
+
+
+443082.047,6500073.034 443052.353,6500031.642
+ 443076.365,6500011.482 443157.093,6499938.651
+ 443158.651,6499934.981 443159.7,6499932.525
+ 443212.628,6499964.03 443082.047,6500073.034
+
+
+
+
+
+
+
+
+
+
+
+ 110
+
+
+
+
+
+
+
+442894.781,6500038.646 442979.492,6499965.482
+ 442981.879,6499964.094 442983.106,6499963.974
+ 442981.396,6499962.479 442983.082,6499960.997
+ 443006.147,6499984.665 443007.448,6499986.143
+ 443011.919,6499981.839 443112.805,6499902.444
+ 443117.987,6499901.66 443146.456,6499923.253
+ 443037.902,6500012.978 443017.778,6499992.366
+ 442926.473,6500075.412 442894.781,6500038.646
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 119
+
+
+
+
+
+
+442598.631,6499840.655 442687.603,6499788.528
+ 442749.413,6499872.843 442640.52,6499937.154
+ 442625.536,6499897.553 442598.631,6499840.655
+
+
+
+
+
+
+
+
+
+
+
+ 119
+
+
+
+
+
+
+
+442598.631,6499840.655 442687.603,6499788.528
+ 442749.413,6499872.843 442640.52,6499937.154
+ 442625.536,6499897.553 442598.631,6499840.655
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+
+
+
+
+
+
+440895.126,6497305.194 440895.994,6497303.482
+ 440997.656,6497468.627 440973.106,6497481.321
+ 440966.396,6497484.79 440964.446,6497485.755
+ 440960.01,6497488.04 440917.628,6497422.859
+ 440859.3,6497334.23 440863.136,6497330.539
+ 440895.126,6497305.194
+
+
+
+
+
+
+
+
+
+
+
+ 84
+
+
+
+
+
+
+
+440895.126,6497305.194 440895.994,6497303.482
+ 440997.656,6497468.627 440973.106,6497481.321
+ 440966.396,6497484.79 440964.446,6497485.755
+ 440960.01,6497488.04 440917.628,6497422.859
+ 440859.3,6497334.23 440863.136,6497330.539
+ 440895.126,6497305.194
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+
+
+
+
+
+
+443012.909,6497462.354 443037.935,6497478.324
+ 442920.83,6497611.48 442904.9,6497590.38
+ 442945.683,6497539.229 443012.909,6497462.354
+
+
+
+
+
+
+
+
+
+
+
+ 49
+
+
+
+
+
+
+
+443012.909,6497462.354 443037.935,6497478.324
+ 442920.83,6497611.48 442904.9,6497590.38
+ 442945.683,6497539.229 443012.909,6497462.354
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 33
+
+
+
+
+
+
+442146.305,6497430.783 442089.693,6497378.357
+ 442089.452,6497378.129 442046.283,6497338.254
+ 442061.032,6497316.888 442159.861,6497412.98
+ 442146.305,6497430.783
+
+
+
+
+
+
+
+
+
+
+
+ 33
+
+
+
+
+
+
+
+442146.305,6497430.783 442089.693,6497378.357
+ 442089.452,6497378.129 442046.283,6497338.254
+ 442061.032,6497316.888 442159.861,6497412.98
+ 442146.305,6497430.783
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+ 77
+
+
+
+
+
+
+441325.048,6496748.438 441404.725,6496851.179
+ 441361.206,6496889.174 441360.277,6496887.933
+ 441354.963,6496880.873 441276.771,6496777.52
+ 441325.048,6496748.438
+
+
+
+
+
+
+
+
+
+
+
+ 77
+
+
+
+
+
+
+
+441325.048,6496748.438 441404.725,6496851.179
+ 441361.206,6496889.174 441360.277,6496887.933
+ 441354.963,6496880.873 441276.771,6496777.52
+ 441325.048,6496748.438
+
+
+
+
+
+
+
+
+
+
+
+ 17355
+ 50
+
+
+
+
+
+
+440359.503,6497681.939 440370.522,6497672.835
+ 440374.02,6497673.968 440374.454,6497674.534
+ 440374.87,6497674.244 440375.735,6497674.525
+ 440379.434,6497671.054 440383.672,6497671.914
+ 440417.512,6497727.789 440474.567,6497826.553
+ 440464.256,6497829.597 440452.925,6497832.848
+ 440446.629,6497835.603 440363.58,6497688.581
+ 440363.471,6497688.702 440363.419,6497688.747
+ 440359.503,6497681.939
+
+
+
+
+
+
+
+
+
+
+
+ 50
+
+
+
+
+
+
+
+440359.503,6497681.939 440370.522,6497672.835
+ 440374.02,6497673.968 440374.454,6497674.534
+ 440374.87,6497674.244 440375.735,6497674.525
+ 440379.434,6497671.054 440383.672,6497671.914
+ 440417.512,6497727.789 440474.567,6497826.553
+ 440464.256,6497829.597 440452.925,6497832.848
+ 440446.629,6497835.603 440363.58,6497688.581
+ 440363.471,6497688.702 440363.419,6497688.747
+ 440359.503,6497681.939
+
+
+
+
+
+
+
+
+
+
+
+ 17355
+ 22
+
+
+
+
+
+
+440330.433,6497889.176 440343.947,6497875.437
+ 440363.696,6497868.87 440402.682,6497858.279
+ 440402.698,6497858.309 440413.588,6497855.317
+ 440448.89,6497845.727 440591.545,6497807.125
+ 440594.124,6497814.547 440581.335,6497818.199
+ 440454.349,6497853.565 440359.998,6497878.402
+ 440359.804,6497878.472 440355.372,6497879.64
+ 440341.146,6497885.272 440330.433,6497889.176
+
+
+
+
+
+
+
+
+
+
+
+ 22
+
+
+
+
+
+
+
+440330.433,6497889.176 440343.947,6497875.437
+ 440363.696,6497868.87 440402.682,6497858.279
+ 440402.698,6497858.309 440413.588,6497855.317
+ 440448.89,6497845.727 440591.545,6497807.125
+ 440594.124,6497814.547 440581.335,6497818.199
+ 440454.349,6497853.565 440359.998,6497878.402
+ 440359.804,6497878.472 440355.372,6497879.64
+ 440341.146,6497885.272 440330.433,6497889.176
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 88
+
+
+
+
+
+
+442195.9,6499079.116 442107.741,6499098.935
+ 442107.073,6499099.081 442107.154,6499098.041
+ 442113.081,6499023.029 442201.176,6498995.707
+ 442242.228,6499068.093 442232.876,6499070.538
+ 442196.846,6499079.947 442196.038,6499080.154
+ 442195.9,6499079.116
+
+
+
+
+
+
+
+
+
+
+
+ 88
+
+
+
+
+
+
+
+442195.9,6499079.116 442107.741,6499098.935
+ 442107.073,6499099.081 442107.154,6499098.041
+ 442113.081,6499023.029 442201.176,6498995.707
+ 442242.228,6499068.093 442232.876,6499070.538
+ 442196.846,6499079.947 442196.038,6499080.154
+ 442195.9,6499079.116
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+
+
+
+
+
+
+442097.49,6499062.26 441937.1,6499107.05
+ 441937.115,6499089.278 441995.73,6499071.59
+ 442025.59,6499062.42 442098.138,6499041.705
+ 442098.735,6499041.897 442097.49,6499062.26
+
+
+
+
+
+
+
+
+
+
+
+ 31
+
+
+
+
+
+
+
+442097.49,6499062.26 441937.1,6499107.05
+ 441937.115,6499089.278 441995.73,6499071.59
+ 442025.59,6499062.42 442098.138,6499041.705
+ 442098.735,6499041.897 442097.49,6499062.26
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 37
+
+
+
+
+
+
+441965.608,6498845.222 441965.673,6498845.204
+ 441965.932,6498848.418 442104.901,6498807.438
+ 442104.329,6498806.33 442104.501,6498806.282
+ 442120.457,6498832.035 441967.593,6498869.776
+ 441965.608,6498845.222
+
+
+
+
+
+
+
+
+
+
+
+ 37
+
+
+
+
+
+
+
+442120.457,6498832.035 441967.593,6498869.776
+ 441965.932,6498848.418 442104.901,6498807.438
+ 442120.457,6498832.035
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 52
+
+
+
+
+
+
+441821.983,6498858.547 441805.933,6498865.423
+ 441809.921,6498877.639 441689.565,6498925.899
+ 441687.368,6498910.241 441685.709,6498889.534
+ 441811.388,6498832.637 441821.983,6498858.547
+
+
+
+
+
+
+
+
+
+
+
+ 52
+
+
+
+
+
+
+
+441821.983,6498858.547 441805.933,6498865.423
+ 441809.921,6498877.639 441689.565,6498925.899
+ 441687.368,6498910.241 441685.709,6498889.534
+ 441811.388,6498832.637 441821.983,6498858.547
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 98
+
+
+
+
+
+
+442020.504,6498642.174 442079.73,6498754.116
+ 441960.43,6498789.499 441962.905,6498745.425
+ 441966.601,6498724.517 441973.566,6498705.393
+ 441979.828,6498690.456 441990.365,6498674.342
+ 442006.945,6498655.402 442020.504,6498642.174
+
+
+
+
+
+
+
+
+
+
+
+ 98
+
+
+
+
+
+
+
+442020.504,6498642.174 442079.73,6498754.116
+ 441960.43,6498789.499 441962.905,6498745.425
+ 441966.601,6498724.517 441973.566,6498705.393
+ 441979.828,6498690.456 441990.365,6498674.342
+ 442006.945,6498655.402 442020.504,6498642.174
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+
+
+
+
+
+
+441782.093,6499750.782 441780.401,6499740.605
+ 441968.288,6499704.607 441959.678,6499715.888
+ 441782.093,6499750.782
+
+
+
+
+
+
+
+
+
+
+
+ 18
+
+
+
+
+
+
+
+441782.093,6499750.782 441780.401,6499740.605
+ 441968.288,6499704.607 441959.678,6499715.888
+ 441782.093,6499750.782
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 54
+
+
+
+
+
+
+442235.175,6498466.547 442240.77,6498464.063
+ 442261.835,6498487.588 442262.753,6498488.61
+ 442272.148,6498503.649 442314.82,6498567.91
+ 442315.609,6498569.102 442295.563,6498584.354
+ 442291.579,6498587.034 442286.282,6498578.426
+ 442262.941,6498540.522 442243.285,6498508.603
+ 442240.702,6498504.328 442215.95,6498484.51
+ 442178.702,6498450.347 442172.208,6498444.356
+ 442175.04,6498415.828 442175.096,6498415.328
+ 442175.267,6498415.397 442177.205,6498416.62
+ 442230.42,6498465.347 442231.826,6498466.325
+ 442232.528,6498466.649 442233.314,6498467.382
+ 442233.394,6498467.451 442235.175,6498466.547
+
+
+
+
+
+
+
+
+
+
+
+ 54
+
+
+
+
+
+
+
+442235.175,6498466.547 442240.77,6498464.063
+ 442261.835,6498487.588 442262.753,6498488.61
+ 442272.148,6498503.649 442314.82,6498567.91
+ 442315.609,6498569.102 442295.563,6498584.354
+ 442291.579,6498587.034 442286.282,6498578.426
+ 442262.941,6498540.522 442243.285,6498508.603
+ 442240.702,6498504.328 442215.95,6498484.51
+ 442178.702,6498450.347 442172.208,6498444.356
+ 442175.04,6498415.828 442175.096,6498415.328
+ 442175.267,6498415.397 442177.205,6498416.62
+ 442230.42,6498465.347 442231.826,6498466.325
+ 442232.528,6498466.649 442233.314,6498467.382
+ 442233.394,6498467.451 442235.175,6498466.547
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 12
+
+
+
+
+
+
+442100.704,6498279.713 442096.518,6498271.205
+ 442107.864,6498264.737 442138.104,6498320.138
+ 442149.206,6498340.998 442140.89,6498355.124
+ 442100.704,6498279.713
+
+
+
+
+
+
+
+
+
+
+
+ 12
+
+
+
+
+
+
+
+442100.704,6498279.713 442096.518,6498271.205
+ 442107.864,6498264.737 442138.104,6498320.138
+ 442149.206,6498340.998 442140.89,6498355.124
+ 442100.704,6498279.713
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+
+
+
+
+
+
+442287.91,6499682.15 442250.555,6499704.218
+ 442217.99,6499724.409 442217.164,6499724.865
+ 442197.481,6499735.658 442148.249,6499760.472
+ 442142.375,6499761.81 442139.917,6499761.76
+ 442138.813,6499762.349 442136.911,6499763.114
+ 442082.051,6499785.177 442039.858,6499800.871
+ 442036.453,6499802.029 442043.15,6499746.911
+ 442042.876,6499746.744 442161.073,6499687.434
+ 442274.575,6499628.161 442275.086,6499632.989
+ 442275.222,6499633.698 442275.493,6499635.064
+ 442281.246,6499664.021 442287.91,6499682.15
+
+
+
+
+
+
+
+
+
+
+
+ 150
+
+
+
+
+
+
+
+442287.91,6499682.15 442250.555,6499704.218
+ 442217.99,6499724.409 442217.164,6499724.865
+ 442197.481,6499735.658 442148.249,6499760.472
+ 442142.375,6499761.81 442139.917,6499761.76
+ 442138.813,6499762.349 442136.911,6499763.114
+ 442082.051,6499785.177 442039.858,6499800.871
+ 442036.453,6499802.029 442043.15,6499746.911
+ 442042.876,6499746.744 442161.073,6499687.434
+ 442274.575,6499628.161 442275.086,6499632.989
+ 442275.222,6499633.698 442275.493,6499635.064
+ 442281.246,6499664.021 442287.91,6499682.15
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 63
+
+
+
+
+
+
+442542.927,6499659.456 442539.919,6499660.55
+ 442404.255,6499709.885 442398.966,6499711.817
+ 442382.726,6499674.765 442537.761,6499621.127
+ 442546.752,6499658.066 442542.927,6499659.456
+
+
+
+
+
+
+
+
+
+
+
+ 63
+
+
+
+
+
+
+
+442542.927,6499659.456 442539.919,6499660.55
+ 442404.255,6499709.885 442398.966,6499711.817
+ 442382.726,6499674.765 442537.761,6499621.127
+ 442546.752,6499658.066 442542.927,6499659.456
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+
+
+
+
+
+
+442366.984,6500011.405 442363.214,6500013.424
+ 442359.865,6500009.442 442349.863,6500003.423
+ 442479.499,6499927.031 442482.151,6499926.185
+ 442496.504,6499948.872 442492.669,6499951.157
+ 442492.666,6499951.151 442490.926,6499952.185
+ 442408.226,6500001.483 442376.102,6500020.641
+ 442366.984,6500011.405
+
+
+
+
+
+
+
+
+
+
+
+ 41
+
+
+
+
+
+
+
+442366.984,6500011.405 442363.214,6500013.424
+ 442359.865,6500009.442 442349.863,6500003.423
+ 442479.499,6499927.031 442482.151,6499926.185
+ 442496.504,6499948.872 442492.669,6499951.157
+ 442492.666,6499951.151 442490.926,6499952.185
+ 442408.226,6500001.483 442376.102,6500020.641
+ 442366.984,6500011.405
+
+
+
+
+
+
+
+
+
+
+
+ 16342
+ 100
+
+
+
+
+
+
+443120.013,6499784.194 443115.299,6499791.742
+ 443113.145,6499798.238 443080.0,6499846.452
+ 443071.633,6499843.343 443019.329,6499810.805
+ 442971.586,6499802.562 442971.69,6499800.613
+ 442990.43,6499741.961 443005.129,6499718.051
+ 443120.013,6499784.194
+
+
+
+
+
+
+
+
+
+
+
+ 100
+
+
+
+
+
+
+
+443120.013,6499784.194 443115.299,6499791.742
+ 443113.145,6499798.238 443080.0,6499846.452
+ 443071.633,6499843.343 443019.329,6499810.805
+ 442971.586,6499802.562 442971.69,6499800.613
+ 442990.43,6499741.961 443005.129,6499718.051
+ 443120.013,6499784.194
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+441588.334,6496280.063 441647.885,6496242.945
+ 441652.494,6496239.643 441671.815,6496269.278
+ 441616.176,6496302.981 441588.334,6496280.063
+
+
+
+
+
+
+
+
+
+
+
+ 24
+
+
+
+
+
+
+
+441588.334,6496280.063 441647.885,6496242.945
+ 441652.494,6496239.643 441671.815,6496269.278
+ 441616.176,6496302.981 441588.334,6496280.063
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+ 29
+
+
+
+
+
+
+441586.02,6496161.04 441600.04,6496174.78
+ 441614.03,6496190.69 441552.54,6496229.42
+ 441532.44,6496195.34 441530.91,6496191.04
+ 441586.02,6496161.04
+
+
+
+
+
+
+
+
+
+
+
+ 29
+
+
+
+
+
+
+
+441586.02,6496161.04 441600.04,6496174.78
+ 441614.03,6496190.69 441552.54,6496229.42
+ 441532.44,6496195.34 441530.91,6496191.04
+ 441586.02,6496161.04
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 11
+
+
+
+
+
+
+441541.12,6497324.48 441568.41,6497388.15
+ 441554.31,6497396.49 441526.07,6497331.12
+ 441541.12,6497324.48
+
+
+
+
+
+
+
+
+
+
+
+ 11
+
+
+
+
+
+
+
+441541.12,6497324.48 441568.41,6497388.15
+ 441554.31,6497396.49 441526.07,6497331.12
+ 441541.12,6497324.48
+
+
+
+
+
+
+
+
+
+
+
+ 17355
+ 144
+
+
+
+
+
+
+440292.684,6498246.223 440215.115,6498283.405
+ 440145.88,6498126.344 440221.526,6498092.367
+ 440292.684,6498246.223
+
+
+
+
+
+
+
+
+
+
+
+ 144
+
+
+
+
+
+
+
+440292.684,6498246.223 440215.115,6498283.405
+ 440145.88,6498126.344 440221.526,6498092.367
+ 440292.684,6498246.223
+
+
+
+
+
+
+
+
+
+
+
+ 17355
+
+
+
+
+
+
+440007.935,6498175.131 440037.868,6498292.789
+ 440042.67,6498335.97 439961.89,6498452.65
+ 439937.35,6498412.1 439887.189,6498333.267
+ 439874.198,6498309.135 439889.595,6498288.516
+ 439914.633,6498252.222 439942.304,6498211.62
+ 439977.793,6498187.953 440007.935,6498175.131
+
+
+
+
+
+
+
+
+
+
+
+ 265
+
+
+
+
+
+
+
+440007.935,6498175.131 440037.868,6498292.789
+ 440042.67,6498335.97 439961.89,6498452.65
+ 439937.35,6498412.1 439887.189,6498333.267
+ 439874.198,6498309.135 439889.595,6498288.516
+ 439914.633,6498252.222 439942.304,6498211.62
+ 439977.793,6498187.953 440007.935,6498175.131
+
+
+
+
+
+
+
+
+
+
+
+ 17355
+ 40
+
+
+
+
+
+
+439872.785,6498309.369 439859.322,6498332.447
+ 439743.93,6498215.132 439761.88,6498198.464
+ 439872.785,6498309.369
+
+
+
+
+
+
+
+
+
+
+
+ 40
+
+
+
+
+
+
+
+439872.785,6498309.369 439859.322,6498332.447
+ 439743.93,6498215.132 439761.88,6498198.464
+ 439872.785,6498309.369
+
+
+
+
+
+
+
+
+
+
+
+ 17355
+
+
+
+
+
+
+439527.89,6498115.125 439623.349,6498066.361
+ 439648.325,6498055.165 439726.817,6498224.822
+ 439683.029,6498270.905 439640.019,6498319.461
+ 439528.05,6498115.417 439528.053,6498115.416
+ 439527.89,6498115.125
+
+
+
+
+
+
+
+
+
+
+
+ 267
+
+
+
+
+
+
+
+439527.89,6498115.125 439623.349,6498066.361
+ 439648.325,6498055.165 439726.817,6498224.822
+ 439683.029,6498270.905 439640.019,6498319.461
+ 439528.05,6498115.417 439528.053,6498115.416
+ 439527.89,6498115.125
+
+
+
+
+
+
+
+
+
+
+
+ 17355
+ 90
+
+
+
+
+
+
+439571.483,6498371.232 439542.635,6498395.592
+ 439468.912,6498289.816 439483.657,6498277.636
+ 439424.037,6498194.938 439458.014,6498175.065
+ 439571.483,6498371.232
+
+
+
+
+
+
+
+
+
+
+
+ 10
+
+
+
+
+
+
+
+439504.345,6498269.543 439448.641,6498180.579
+ 439457.954,6498175.316 439509.898,6498265.031
+ 439504.345,6498269.543
+
+
+
+
+
+
+
+
+
+
+
+ 80
+
+
+
+
+
+
+
+439571.483,6498371.232 439542.635,6498395.592
+ 439468.912,6498289.816 439483.657,6498277.636
+ 439424.037,6498194.938 439448.786,6498180.984
+ 439504.316,6498269.832 439509.869,6498265.204
+ 439571.483,6498371.232
+
+
+
+
+
+
+
+
+
+
+
+ 17355
+
+
+
+
+
+
+439466.348,6498704.587 439546.4,6498660.5
+ 439583.022,6498721.896 439586.96,6498734.11
+ 439549.687,6498748.82 439499.683,6498773.181
+ 439475.966,6498725.978 439466.348,6498704.587
+
+
+
+
+
+
+
+
+
+
+
+ 75
+
+
+
+
+
+
+
+439466.348,6498704.587 439546.4,6498660.5
+ 439583.022,6498721.896 439586.96,6498734.11
+ 439549.687,6498748.82 439499.683,6498773.181
+ 439475.966,6498725.978 439466.348,6498704.587
+
+
+
+
+
+
+
+
+
+
+
+ 17364
+ 25
+
+
+
+
+
+
+436360.596,6504169.642 436342.521,6504150.717
+ 436440.54,6504092.974 436452.671,6504108.016
+ 436360.596,6504169.642
+
+
+
+
+
+
+
+
+
+
+
+ 25
+
+
+
+
+
+
+
+436360.596,6504169.642 436342.521,6504150.717
+ 436440.54,6504092.974 436452.671,6504108.016
+ 436360.596,6504169.642
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+
+
+
+
+
+
+441500.37,6497427.94 441482.797,6497379.114
+ 441481.271,6497374.55 441476.553,6497357.305
+ 441434.971,6497242.15 441438.833,6497239.091
+ 441482.654,6497234.627 441523.291,6497332.38
+ 441526.07,6497331.12 441555.04,6497398.5
+ 441504.565,6497424.924 441500.37,6497427.94
+
+
+
+
+
+
+
+
+
+
+
+ 101
+
+
+
+
+
+
+
+441500.37,6497427.94 441482.797,6497379.114
+ 441481.271,6497374.55 441476.553,6497357.305
+ 441434.971,6497242.15 441438.833,6497239.091
+ 441482.654,6497234.627 441523.291,6497332.38
+ 441526.07,6497331.12 441555.04,6497398.5
+ 441504.565,6497424.924 441500.37,6497427.94
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+
+
+
+
+
+
+441476.553,6497357.305 441327.994,6497387.493
+ 441327.655,6497303.931 441332.11,6497248.034
+ 441434.971,6497242.15 441476.553,6497357.305
+
+
+
+
+
+
+
+
+
+
+
+ 165
+
+
+
+
+
+
+
+441476.553,6497357.305 441327.994,6497387.493
+ 441327.655,6497303.931 441332.11,6497248.034
+ 441434.971,6497242.15 441476.553,6497357.305
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+
+
+
+
+
+
+441490.962,6497403.614 441488.619,6497404.253
+ 441330.57,6497448.064 441328.737,6497435.335
+ 441329.127,6497413.461 441482.797,6497379.114
+ 441490.962,6497403.614
+
+
+
+
+
+
+
+
+
+
+
+ 49
+
+
+
+
+
+
+
+441490.962,6497403.614 441488.619,6497404.253
+ 441330.57,6497448.064 441328.737,6497435.335
+ 441329.127,6497413.461 441482.797,6497379.114
+ 441490.962,6497403.614
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 64
+
+
+
+
+
+
+441278.346,6497574.107 441174.675,6497604.065
+ 441173.953,6497601.324 441165.94,6497571.057
+ 441340.638,6497517.993 441346.772,6497554.34
+ 441278.346,6497574.107
+
+
+
+
+
+
+
+
+
+
+
+ 64
+
+
+
+
+
+
+
+441278.346,6497574.107 441174.675,6497604.065
+ 441173.953,6497601.324 441165.94,6497571.057
+ 441340.638,6497517.993 441346.772,6497554.34
+ 441278.346,6497574.107
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 39
+
+
+
+
+
+
+441163.617,6497928.317 440966.307,6497975.033
+ 440963.34,6497966.625 441173.678,6497913.697
+ 441210.395,6498034.956 441195.884,6498038.173
+ 441163.617,6497928.317
+
+
+
+
+
+
+
+
+
+
+
+ 39
+
+
+
+
+
+
+
+441163.617,6497928.317 440966.307,6497975.033
+ 440963.34,6497966.625 441173.678,6497913.697
+ 441210.395,6498034.956 441195.884,6498038.173
+ 441163.617,6497928.317
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 78
+
+
+
+
+
+
+441426.76,6496856.99 441447.63,6496898.44
+ 441517.84,6497044.22 441513.33,6497048.73
+ 441467.94,6497034.01 441463.58,6497032.33
+ 441463.58,6497032.22 441457.97,6497018.08
+ 441443.72,6496983.0 441415.28,6496924.82
+ 441394.7,6496883.18 441414.03,6496867.91
+ 441426.76,6496856.99
+
+
+
+
+
+
+
+
+
+
+
+ 78
+
+
+
+
+
+
+
+441426.76,6496856.99 441447.63,6496898.44
+ 441517.84,6497044.22 441513.33,6497048.73
+ 441467.94,6497034.01 441463.58,6497032.33
+ 441463.58,6497032.22 441457.97,6497018.08
+ 441443.72,6496983.0 441415.28,6496924.82
+ 441394.7,6496883.18 441414.03,6496867.91
+ 441426.76,6496856.99
+
+
+
+
+
+
+
+
+
+
+
+ 17016
+ 87
+
+
+
+
+
+
+441640.912,6496825.562 441661.051,6496868.618
+ 441549.048,6496921.238 441499.875,6496942.393
+ 441478.529,6496897.986 441640.912,6496825.562
+
+
+
+
+
+
+
+
+
+
+
+ 87
+
+
+
+
+
+
+
+441640.912,6496825.562 441661.051,6496868.618
+ 441549.048,6496921.238 441499.875,6496942.393
+ 441478.529,6496897.986 441640.912,6496825.562
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+441127.056,6496704.03 440955.661,6496833.969
+ 440900.516,6496767.983 441080.294,6496627.589
+ 441112.993,6496683.308 441113.165,6496684.18
+ 441127.056,6496704.03
+
+
+
+
+
+
+
+
+
+
+
+ 193
+
+
+
+
+
+
+
+441127.056,6496704.03 440955.661,6496833.969
+ 440900.516,6496767.983 441080.294,6496627.589
+ 441112.993,6496683.308 441113.165,6496684.18
+ 441127.056,6496704.03
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+441005.285,6496507.391 440975.02,6496473.991
+ 440974.106,6496469.097 441077.383,6496394.857
+ 441073.13,6496457.58 441005.285,6496507.391
+
+
+
+
+
+
+
+
+
+
+
+ 52
+
+
+
+
+
+
+
+441005.285,6496507.391 440975.02,6496473.991
+ 440974.106,6496469.097 441077.383,6496394.857
+ 441073.13,6496457.58 441005.285,6496507.391
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440988.64,6496287.89 440983.36,6496279.54
+ 440961.512,6496245.327 440930.55,6496196.8
+ 440930.813,6496196.364 440945.774,6496189.096
+ 440950.76,6496197.46 441002.49,6496279.627
+ 440988.64,6496287.89
+
+
+
+
+
+
+
+
+
+
+
+ 18
+
+
+
+
+
+
+
+440988.64,6496287.89 440983.36,6496279.54
+ 440961.512,6496245.327 440930.55,6496196.8
+ 440930.813,6496196.364 440945.774,6496189.096
+ 440950.76,6496197.46 441002.49,6496279.627
+ 440988.64,6496287.89
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+441092.868,6496343.784 441055.226,6496261.798
+ 441056.811,6496259.81 441003.417,6496155.66
+ 441040.242,6496138.412 441052.334,6496147.244
+ 441095.061,6496237.528 441115.115,6496261.481
+ 441092.868,6496343.784
+
+
+
+
+
+
+
+
+
+
+
+ 84
+
+
+
+
+
+
+
+441092.868,6496343.784 441055.226,6496261.798
+ 441056.811,6496259.81 441003.417,6496155.66
+ 441040.242,6496138.412 441052.334,6496147.244
+ 441095.061,6496237.528 441115.115,6496261.481
+ 441092.868,6496343.784
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+441212.132,6496362.212 441200.991,6496329.533
+ 441200.6,6496328.96 441157.171,6496342.901
+ 441138.012,6496281.185 441182.059,6496268.105
+ 441194.211,6496265.228 441249.387,6496251.266
+ 441280.462,6496339.188 441212.132,6496362.212
+
+
+
+
+
+
+
+
+
+
+
+ 98
+
+
+
+
+
+
+
+441212.132,6496362.212 441200.991,6496329.533
+ 441200.6,6496328.96 441157.171,6496342.901
+ 441138.012,6496281.185 441182.059,6496268.105
+ 441194.211,6496265.228 441249.387,6496251.266
+ 441280.462,6496339.188 441212.132,6496362.212
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440871.303,6496004.716 440838.49,6495973.731
+ 440872.926,6495961.91 440899.627,6495952.68
+ 440955.793,6495932.174 440964.331,6495970.012
+ 440871.303,6496004.716
+
+
+
+
+
+
+
+
+
+
+
+ 44
+
+
+
+
+
+
+
+440871.303,6496004.716 440838.49,6495973.731
+ 440872.926,6495961.91 440899.627,6495952.68
+ 440955.793,6495932.174 440964.331,6495970.012
+ 440871.303,6496004.716
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440543.415,6496466.218 440453.619,6496354.278
+ 440453.542,6496353.061 440494.28,6496322.74
+ 440577.141,6496432.97 440543.415,6496466.218
+
+
+
+
+
+
+
+
+
+
+
+ 70
+
+
+
+
+
+
+
+440543.415,6496466.218 440453.619,6496354.278
+ 440453.542,6496353.061 440494.28,6496322.74
+ 440577.141,6496432.97 440543.415,6496466.218
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440031.336,6496763.128 440004.523,6496732.938
+ 439986.27,6496715.81 439971.243,6496694.122
+ 439941.509,6496659.369 439915.959,6496626.317
+ 439953.932,6496592.979 439968.36,6496580.11
+ 439874.69,6496470.589 439815.607,6496403.954
+ 439848.391,6496384.955 439998.588,6496553.585
+ 440099.482,6496433.93 440161.09,6496452.468
+ 440234.939,6496508.825 440148.022,6496601.68
+ 440166.02,6496619.166 440031.336,6496763.128
+
+
+
+
+
+
+
+
+
+
+
+ 57
+
+
+
+
+
+
+
+439979.462,6496705.983 440111.54,6496561.684
+ 440130.997,6496583.581 439999.399,6496727.516
+ 439986.27,6496715.81 439979.462,6496705.983
+
+
+
+
+
+
+
+
+
+
+
+ 95
+
+
+
+
+
+
+
+439999.399,6496727.516 440130.997,6496583.581
+ 440148.022,6496601.68 440166.02,6496619.166
+ 440031.336,6496763.128 440004.523,6496732.938
+ 439999.399,6496727.516
+
+
+
+
+
+
+
+
+
+
+
+ 164
+
+
+
+
+
+
+
+440148.022,6496601.68 440130.997,6496583.581
+ 440111.54,6496561.684 440047.321,6496496.165
+ 440099.482,6496433.93 440161.09,6496452.468
+ 440234.939,6496508.825 440148.022,6496601.68
+
+
+
+
+
+
+
+
+
+
+
+ 266
+
+
+
+
+
+
+
+439815.607,6496403.954 439848.391,6496384.955
+ 439998.588,6496553.585 440047.321,6496496.165
+ 440111.54,6496561.684 439979.462,6496705.983
+ 439971.243,6496694.122 439941.509,6496659.369
+ 439915.959,6496626.317 439953.932,6496592.979
+ 439968.36,6496580.11 439874.69,6496470.589
+ 439815.607,6496403.954
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440198.808,6496472.036 440159.82,6496447.196
+ 440098.74,6496427.532 440131.643,6496378.034
+ 440152.126,6496391.493 440180.174,6496405.22
+ 440206.257,6496418.063 440309.217,6496299.31
+ 440327.623,6496320.678 440353.51,6496352.52
+ 440272.431,6496447.501 440222.18,6496424.93
+ 440215.08,6496439.71 440206.35,6496454.84
+ 440198.808,6496472.036
+
+
+
+
+
+
+
+
+
+
+
+ 151
+
+
+
+
+
+
+
+440198.808,6496472.036 440159.82,6496447.196
+ 440098.74,6496427.532 440131.643,6496378.034
+ 440152.126,6496391.493 440180.174,6496405.22
+ 440206.257,6496418.063 440309.217,6496299.31
+ 440327.623,6496320.678 440353.51,6496352.52
+ 440272.431,6496447.501 440222.18,6496424.93
+ 440215.08,6496439.71 440206.35,6496454.84
+ 440198.808,6496472.036
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440732.993,6496079.939 440624.715,6496149.85
+ 440612.556,6496132.896 440605.606,6496136.959
+ 440488.662,6495989.346 440527.92,6495960.518
+ 440529.315,6495963.714 440628.999,6496086.521
+ 440712.569,6496031.337 440732.993,6496079.939
+
+
+
+
+
+
+
+
+
+
+
+ 79
+
+
+
+
+
+
+
+440588.761,6496115.344 440488.662,6495989.346
+ 440527.92,6495960.518 440529.315,6495963.714
+ 440628.999,6496086.521 440588.761,6496115.344
+
+
+
+
+
+
+
+
+
+
+
+ 71
+
+
+
+
+
+
+
+440732.993,6496079.939 440624.715,6496149.85
+ 440612.556,6496132.896 440605.606,6496136.959
+ 440588.761,6496115.344 440628.999,6496086.521
+ 440712.569,6496031.337 440732.993,6496079.939
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440765.572,6496301.711 440672.447,6496167.33
+ 440673.248,6496167.417 440695.227,6496150.418
+ 440788.454,6496284.253 440765.572,6496301.711
+
+
+
+
+
+
+
+
+
+
+
+ 47
+
+
+
+
+
+
+
+440765.572,6496301.711 440672.447,6496167.33
+ 440673.248,6496167.417 440695.227,6496150.418
+ 440788.454,6496284.253 440765.572,6496301.711
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+439078.55,6494208.902 438907.17,6494327.448
+ 438917.495,6494337.571 438792.149,6494430.467
+ 438772.958,6494407.615 438758.818,6494386.791
+ 438697.965,6494280.378 438716.878,6494269.352
+ 438774.72,6494371.663 438797.384,6494357.628
+ 438743.32,6494254.644 438795.489,6494224.633
+ 438847.472,6494326.373 438890.178,6494297.796
+ 438891.226,6494298.817 439063.548,6494199.428
+ 439078.55,6494208.902
+
+
+
+
+
+
+
+
+
+
+
+ 69
+
+
+
+
+
+
+
+438797.384,6494357.628 438743.32,6494254.644
+ 438795.489,6494224.633 438847.472,6494326.373
+ 438797.384,6494357.628
+
+
+
+
+
+
+
+
+
+
+
+ 82
+
+
+
+
+
+
+
+438907.17,6494327.448 438917.495,6494337.571
+ 438792.149,6494430.467 438772.958,6494407.615
+ 438758.818,6494386.791 438774.72,6494371.663
+ 438797.384,6494357.628 438847.472,6494326.373
+ 438885.729,6494300.941 438907.17,6494327.448
+
+
+
+
+
+
+
+
+
+
+
+ 50
+
+
+
+
+
+
+
+438907.17,6494327.448 438885.729,6494300.941
+ 438890.178,6494297.796 438891.226,6494298.817
+ 439063.548,6494199.428 439078.55,6494208.902
+ 438907.17,6494327.448
+
+
+
+
+
+
+
+
+
+
+
+ 26
+
+
+
+
+
+
+
+438758.818,6494386.791 438697.965,6494280.378
+ 438716.878,6494269.352 438774.72,6494371.663
+ 438758.818,6494386.791
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+439561.806,6494632.316 439557.911,6494631.063
+ 439544.564,6494615.715 439529.98,6494601.95
+ 439521.017,6494578.118 439659.672,6494507.42
+ 439702.962,6494579.234 439659.322,6494602.644
+ 439625.157,6494629.375 439608.392,6494608.143
+ 439561.806,6494632.316
+
+
+
+
+
+
+
+
+
+
+
+ 123
+
+
+
+
+
+
+
+439561.806,6494632.316 439557.911,6494631.063
+ 439544.564,6494615.715 439529.98,6494601.95
+ 439521.017,6494578.118 439659.672,6494507.42
+ 439702.962,6494579.234 439659.322,6494602.644
+ 439625.157,6494629.375 439608.392,6494608.143
+ 439561.806,6494632.316
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+439811.15,6494781.72 439710.83,6494571.874
+ 439739.898,6494559.528 439842.958,6494765.547
+ 439811.15,6494781.72
+
+
+
+
+
+
+
+
+
+
+
+ 78
+
+
+
+
+
+
+
+439811.15,6494781.72 439710.83,6494571.874
+ 439739.898,6494559.528 439842.958,6494765.547
+ 439811.15,6494781.72
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+438806.014,6493930.403 438763.138,6493870.354
+ 438716.376,6493816.522 438892.111,6493712.294
+ 438952.076,6493834.729 438806.014,6493930.403
+
+
+
+
+
+
+
+
+
+
+
+ 60
+
+
+
+
+
+
+
+438913.247,6493859.998 438888.32,6493805.068
+ 438856.146,6493733.959 438892.111,6493712.294
+ 438952.076,6493834.729 438913.247,6493859.998
+
+
+
+
+
+
+
+
+
+
+
+ 81
+
+
+
+
+
+
+
+438770.282,6493880.077 438888.32,6493805.068
+ 438913.247,6493859.998 438806.014,6493930.403
+ 438770.282,6493880.077
+
+
+
+
+
+
+
+
+
+
+
+ 121
+
+
+
+
+
+
+
+438716.376,6493816.522 438856.146,6493733.959
+ 438888.32,6493805.068 438770.282,6493880.077
+ 438763.138,6493870.354 438716.376,6493816.522
+
+
+
+
+
+
+
+
+
+
+
+ 17006
+
+
+
+
+
+
+438111.115,6491807.391 438010.407,6491660.899
+ 438039.71,6491632.569 438059.585,6491619.6
+ 438082.68,6491602.33 438084.492,6491605.122
+ 438096.463,6491597.553 438200.451,6491750.857
+ 438111.115,6491807.391
+
+
+
+
+
+
+
+
+
+
+
+ 196
+
+
+
+
+
+
+
+438111.115,6491807.391 438010.407,6491660.899
+ 438039.71,6491632.569 438059.585,6491619.6
+ 438082.68,6491602.33 438084.492,6491605.122
+ 438096.463,6491597.553 438200.451,6491750.857
+ 438111.115,6491807.391
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440205.4,6494053.59 440177.26,6494005.16
+ 440175.94,6493994.8 440178.57,6493988.24
+ 440195.93,6493978.17 440252.99,6493947.09
+ 440260.72,6493943.73 440265.83,6493945.05
+ 440271.52,6493957.3 440283.92,6493985.47
+ 440313.11,6494047.33 440272.47,6494068.51
+ 440251.97,6494031.14 440205.4,6494053.59
+
+
+
+
+
+
+
+
+
+
+
+ 95
+
+
+
+
+
+
+
+440205.4,6494053.59 440177.26,6494005.16
+ 440175.94,6493994.8 440178.57,6493988.24
+ 440195.93,6493978.17 440252.99,6493947.09
+ 440260.72,6493943.73 440265.83,6493945.05
+ 440271.52,6493957.3 440283.92,6493985.47
+ 440313.11,6494047.33 440272.47,6494068.51
+ 440251.97,6494031.14 440205.4,6494053.59
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440283.209,6494110.697 440276.401,6494095.894
+ 440275.858,6494075.095 440314.702,6494055.458
+ 440328.605,6494084.717 440283.209,6494110.697
+
+
+
+
+
+
+
+
+
+
+
+ 17
+
+
+
+
+
+
+
+440283.209,6494110.697 440276.401,6494095.894
+ 440275.858,6494075.095 440314.702,6494055.458
+ 440328.605,6494084.717 440283.209,6494110.697
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440257.397,6494491.974 440199.263,6494409.621
+ 440197.699,6494405.942 440205.605,6494400.433
+ 440228.677,6494379.014 440231.266,6494378.22
+ 440333.316,6494310.15 440308.334,6494284.262
+ 440332.709,6494267.911 440416.057,6494206.858
+ 440487.647,6494289.379 440375.124,6494350.457
+ 440365.205,6494355.575 440273.301,6494482.24
+ 440257.397,6494491.974
+
+
+
+
+
+
+
+
+
+
+
+ 107
+
+
+
+
+
+
+
+440257.397,6494491.974 440199.263,6494409.621
+ 440197.699,6494405.942 440205.605,6494400.433
+ 440228.677,6494379.014 440231.266,6494378.22
+ 440285.228,6494342.555 440333.255,6494398.954
+ 440273.301,6494482.24 440257.397,6494491.974
+
+
+
+
+
+
+
+
+
+
+
+ 168
+
+
+
+
+
+
+
+440285.228,6494342.555 440333.316,6494310.15
+ 440308.334,6494284.262 440332.709,6494267.911
+ 440416.057,6494206.858 440487.647,6494289.379
+ 440375.124,6494350.457 440365.205,6494355.575
+ 440333.255,6494398.954 440285.228,6494342.555
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440444.059,6494433.702 440381.095,6494352.466
+ 440491.111,6494292.139 440526.796,6494339.566
+ 440653.551,6494459.812 440677.619,6494484.965
+ 440580.511,6494524.043 440501.781,6494441.331
+ 440493.801,6494445.403 440476.125,6494420.545
+ 440444.059,6494433.702
+
+
+
+
+
+
+
+
+
+
+
+ 116
+
+
+
+
+
+
+
+440580.511,6494524.043 440501.781,6494441.331
+ 440583.195,6494393.226 440653.551,6494459.812
+ 440677.619,6494484.965 440580.511,6494524.043
+
+
+
+
+
+
+
+
+
+
+
+ 163
+
+
+
+
+
+
+
+440493.801,6494445.403 440476.125,6494420.545
+ 440444.059,6494433.702 440381.095,6494352.466
+ 440491.111,6494292.139 440526.796,6494339.566
+ 440583.195,6494393.226 440501.781,6494441.331
+ 440493.801,6494445.403
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440359.405,6494749.271 440294.669,6494676.828
+ 440376.019,6494617.523 440377.264,6494610.278
+ 440356.058,6494579.43 440338.634,6494534.584
+ 440429.131,6494486.91 440456.298,6494474.3
+ 440472.069,6494514.994 440480.761,6494544.251
+ 440470.754,6494564.517 440518.505,6494543.873
+ 440527.965,6494564.237 440548.356,6494558.122
+ 440546.628,6494548.895 440582.448,6494534.642
+ 440589.538,6494547.512 440598.546,6494543.431
+ 440595.344,6494529.5 440653.188,6494507.043
+ 440666.43,6494543.9 440641.523,6494550.061
+ 440657.993,6494603.957 440547.294,6494629.817
+ 440524.873,6494640.083 440442.725,6494684.245
+ 440359.405,6494749.271
+
+
+
+
+
+
+
+
+
+
+
+ 111
+
+
+
+
+
+
+
+440338.634,6494534.584 440429.42,6494487.078
+ 440429.131,6494486.91 440456.298,6494474.3
+ 440472.069,6494514.994 440480.761,6494544.251
+ 440470.754,6494564.517 440377.264,6494610.278
+ 440356.058,6494579.43 440338.634,6494534.584
+
+
+
+
+
+
+
+
+
+
+
+ 330
+
+
+
+
+
+
+
+440657.993,6494603.957 440547.294,6494629.817
+ 440524.873,6494640.083 440442.725,6494684.245
+ 440359.405,6494749.271 440294.669,6494676.828
+ 440376.019,6494617.523 440377.264,6494610.278
+ 440470.754,6494564.517 440518.505,6494543.873
+ 440527.965,6494564.237 440548.356,6494558.122
+ 440546.628,6494548.895 440582.448,6494534.642
+ 440589.538,6494547.512 440598.546,6494543.431
+ 440595.344,6494529.5 440653.188,6494507.043
+ 440666.43,6494543.9 440641.523,6494550.061
+ 440657.993,6494603.957
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440588.214,6494386.697 440564.124,6494365.954
+ 440616.764,6494336.446 440668.593,6494320.103
+ 440671.562,6494338.841 440588.214,6494386.697
+
+
+
+
+
+
+
+
+
+
+
+ 28
+
+
+
+
+
+
+
+440588.214,6494386.697 440564.124,6494365.954
+ 440616.764,6494336.446 440668.593,6494320.103
+ 440671.562,6494338.841 440588.214,6494386.697
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440672.132,6494319.165 440660.219,6494276.221
+ 440688.49,6494266.975 440700.457,6494311.827
+ 440672.132,6494319.165
+
+
+
+
+
+
+
+
+
+
+
+ 13
+
+
+
+
+
+
+
+440672.132,6494319.165 440660.219,6494276.221
+ 440688.49,6494266.975 440700.457,6494311.827
+ 440672.132,6494319.165
+
+
+
+
+
+
+
+
+
+
+
+ 17020
+
+
+
+
+
+
+440414.48,6496585.176 440402.386,6496572.5
+ 440514.725,6496440.307 440531.697,6496461.619
+ 440421.195,6496580.545 440416.038,6496583.479
+ 440414.48,6496585.176
+
+
+
+
+
+
+
+
+
+
+
+ 40
+
+
+
+
+
+
+
+440414.48,6496585.176 440402.386,6496572.5
+ 440514.725,6496440.307 440531.697,6496461.619
+ 440421.195,6496580.545 440416.038,6496583.479
+ 440414.48,6496585.176
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 01
+
+
+
\ No newline at end of file
diff --git a/comp/src/gb.map/parcellaire2.xml b/comp/src/gb.map/parcellaire2.xml
new file mode 100644
index 000000000..25f97ff64
--- /dev/null
+++ b/comp/src/gb.map/parcellaire2.xml
@@ -0,0 +1,24 @@
+
+
+
+ 187
+
+
+
+
+
+
+
+441724.98,6497264.717 441628.585,6497331.443
+ 441639.754,6497354.361 441570.109,6497389.964
+ 441525.321,6497288.344 441568.15,6497277.0
+ 441606.055,6497264.669 441584.743,6497220.884
+ 441686.418,6497196.127 441724.98,6497264.717
+
+
+
+
+
+
+
+
\ No newline at end of file