diff --git a/CHANGELOG.md b/CHANGELOG.md index 457593e6..4721cf49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,6 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed number of parallel lines from zero to one [#419](https://github.com/ie3-institute/OSMoGrid/issues/419) - Preventing unconnected nodes or subgrids [#415](https://github.com/ie3-institute/OSMoGrid/issues/415) - Fix cases of empty id for nodes [#433](https://github.com/ie3-institute/OSMoGrid/issues/433) +- Handle additional case when building a polygon from ways [#427](https://github.com/ie3-institute/OSMoGrid/issues/427) ### Removed - Legacy Java code diff --git a/src/main/scala/edu/ie3/osmogrid/io/input/ReaderSink.scala b/src/main/scala/edu/ie3/osmogrid/io/input/ReaderSink.scala index fe1536f2..7a5830a9 100644 --- a/src/main/scala/edu/ie3/osmogrid/io/input/ReaderSink.scala +++ b/src/main/scala/edu/ie3/osmogrid/io/input/ReaderSink.scala @@ -6,7 +6,7 @@ package edu.ie3.osmogrid.io.input -import edu.ie3.osmogrid.exception.{InputDataException, PbfReadFailedException} +import edu.ie3.osmogrid.exception.PbfReadFailedException import edu.ie3.osmogrid.model.OsmoGridModel.LvOsmoGridModel import edu.ie3.osmogrid.model.{OsmoGridModel, SourceFilter} import edu.ie3.util.osm.model.OsmContainer.ParOsmContainer diff --git a/src/main/scala/edu/ie3/osmogrid/lv/region_coordinator/BoundaryFactory.scala b/src/main/scala/edu/ie3/osmogrid/lv/region_coordinator/BoundaryFactory.scala index db0adb16..1e06911e 100644 --- a/src/main/scala/edu/ie3/osmogrid/lv/region_coordinator/BoundaryFactory.scala +++ b/src/main/scala/edu/ie3/osmogrid/lv/region_coordinator/BoundaryFactory.scala @@ -11,8 +11,9 @@ import edu.ie3.osmogrid.model.OsmoGridModel.{EnhancedOsmEntity, LvOsmoGridModel} import edu.ie3.util.geo.GeoUtils import edu.ie3.util.osm.model.OsmEntity import edu.ie3.util.osm.model.OsmEntity.Relation.RelationMemberType -import org.locationtech.jts.geom.Polygon +import org.locationtech.jts.geom.{Coordinate, Polygon} +import scala.collection.mutable.ListBuffer import scala.collection.parallel.ParMap import scala.util.{Failure, Try} @@ -30,12 +31,12 @@ object BoundaryFactory { * @param administrativeLevel * the administrative level for which boundary polygons should be created * @return - * a map of boundary id to polygon + * a map of boundary id to polygons (can be multiple polygons per key) */ def buildBoundaryPolygons( osmoGridModel: LvOsmoGridModel, administrativeLevel: BoundaryAdminLevelValue - ): ParMap[AreaKey, Polygon] = { + ): ParMap[AreaKey, Seq[Polygon]] = { osmoGridModel.boundaries .filter { case EnhancedOsmEntity( @@ -53,10 +54,10 @@ object BoundaryFactory { .map { enhancedEntity => enhancedEntity.entity.id -> buildBoundaryPolygon(enhancedEntity) } - .toMap + .to(ParMap) } - /** Creates a boundary polygon for given boundary relation. + /** Creates boundary polygons for given boundary relation. * * Boundary relations consist of one or more ways, of which two consecutive * ways share the first and last node. The nodes in ways can be ordered in @@ -65,11 +66,15 @@ object BoundaryFactory { * @param enhancedRelation * the relation wrapped in an [[EnhancedOsmEntity]] * @return - * the boundary polygon + * the boundary polygons */ + private def buildBoundaryPolygon( enhancedRelation: EnhancedOsmEntity - ): Polygon = { + ): List[Polygon] = { + + // split seq of nodes when first nodes appears again. Repeat till it matches the last one + val relation = enhancedRelation.entity match { case relation: OsmEntity.Relation => relation case other => @@ -77,62 +82,109 @@ object BoundaryFactory { s"Wrong entity type ${other.getClass}, Relation is required" ) } - - val coordinates = (relation.members + val allNodesOfPolygonsSeq: Seq[AreaKey] = relation.members .flatMap { - // Filter for ways only - case OsmEntity.Relation.RelationMember(id, relationType, _) => - relationType match { - case RelationMemberType.Way => - enhancedRelation.way(id) - case _ => - // We only want ways, discard all other types - None - } + case OsmEntity.Relation.RelationMember(id, RelationMemberType.Way, _) => + enhancedRelation.way(id) + case _ => None } - .foldLeft(Seq.empty[Long]) { case (existingNodes, currentWay) => - addWayNodesToPolygonSequence(existingNodes, currentWay) - .recoverWith { case exc => - Failure( - new RuntimeException( - s"Could not create Polygon from relation ${relation.id}", - exc + .foldLeft(Seq.empty[Seq[AreaKey]]) { case (existingNodes, currentWay) => + val resultNodes: Seq[AreaKey] = + addWayNodesToPolygonSequence(existingNodes.flatten, currentWay) + .recoverWith { case exc => + Failure( + new RuntimeException( + s"Could not create Polygon from relation ${relation.id}", + exc + ) ) + } + .getOrElse( + // Current way is empty, carry on with old sequence + existingNodes.flatten ) - } - .fold(throw _, identity) - } match { - // Sanity check: in the end, first node should equal the last node - case nodes - if nodes.headOption - .zip(nodes.lastOption) - .exists { case (first, last) => first != last } => - throw new RuntimeException( - s"First node should be last in boundary relation ${relation.id}." - ) - case nodes if nodes.isEmpty => - throw new RuntimeException( - s"Empty boundary relation ${relation.id}." - ) - case nodes => nodes - }) - .map { node => - // Turn node ids into nodes + + (Seq(resultNodes)) + } + .flatten + + val listOfSeq: Map[Int, Seq[AreaKey]] = splitByKey(allNodesOfPolygonsSeq) + val polygonList: ListBuffer[Polygon] = ListBuffer.empty[Polygon] + + listOfSeq.values.foreach { seq => + val latLonCoordinates: Seq[Coordinate] = seq.flatMap { node => enhancedRelation .node(node) - .getOrElse( - throw new RuntimeException( - s"Node $node not found in enhanced relation $enhancedRelation" - ) - ) + .map(n => GeoUtils.buildCoordinate(n.latitude, n.longitude)) } - .map { node => - // Turn nodes into coordinates - GeoUtils.buildCoordinate(node.latitude, node.longitude) + + // Ensure the LinearRing is closed + val closedCoordinates = + if ( + latLonCoordinates.nonEmpty && + latLonCoordinates.headOption == latLonCoordinates.lastOption + ) + latLonCoordinates + else + throw new RuntimeException( + s"First node should be last in boundary relation ${relation.id}." + ) + + val polygon: Polygon = GeoUtils.buildPolygon(closedCoordinates.toArray) + polygonList += polygon + } + + polygonList.toList + + } + + /** Split node sequences of polygons into parts. If the sequence can't be + * split because it represents only one polygon, the sequence is returned + * with the first node added at the end to close the polygon. + * + * @param seq + * Sequence to split + * @tparam A + * type of sequence + * @return + * Indexed map with the split sequences + */ + + private def splitByKey[A](seq: Seq[A]): Map[Int, Seq[A]] = { + val result = seq + .foldLeft((Map.empty[Int, Seq[A]], Map.empty[A, Int], 0)) { + case ((acc, indexes, splitIdx), elem) => + indexes.get(elem) match { + case Some(prevIdx) => + // Element has been seen before + val newSeq = seq.slice(prevIdx, splitIdx + 1) + ( + acc + (acc.size + 1 -> newSeq), + indexes + (elem -> splitIdx), + splitIdx + 1 + ) + case None => + // Element has not been seen before + ( + acc, + indexes + (elem -> splitIdx), + splitIdx + 1 + ) + } } - .toArray + ._1 - GeoUtils.buildPolygon(coordinates) + // If the result map is empty, return the whole sequence with the first element appended at the end + // (to close the polygon) + if (result.isEmpty) { + seq.headOption match { + case Some(firstElem) => Map(1 -> (seq :+ firstElem)) + case None => + Map(1 -> seq) + } + } else { + result + } } private def addWayNodesToPolygonSequence( @@ -141,44 +193,64 @@ object BoundaryFactory { ): Try[Seq[AreaKey]] = Try { // Construct one single sequence of nodes by joining the ways. // Each way can be ordered in correct or in reverse order - val currentNodes = currentWay.nodes - existingNodes.headOption.zip(existingNodes.lastOption) match { - case Some((existingFirst, existingLast)) => - currentNodes.headOption - .zip(currentNodes.lastOption) - .map { case (currentFirst, currentLast) => - // Run through a bunch of cases. In the end, we want [a, b, c, d, e] - if (existingLast == currentFirst) - // [a, b, c] and [c, d, e] - // All in correct order - existingNodes ++ currentNodes.drop(1) - else if (existingLast == currentLast) - // [a, b, c] and [e, d, c] - // Additional sequence needs to be flipped - existingNodes ++ currentNodes.reverse.drop(1) - else if (existingFirst == currentFirst) - // [c, b, a] and [c, d, e] - // Existing sequence in wrong order: - // this should only happen if we have only added one - // sequence so far and that sequence was in wrong order - existingNodes.reverse ++ currentNodes.drop(1) - else if (existingFirst == currentLast) - // [c, b, a] and [e, d, c]; a != e since we already covered this with first case - // Existing sequence in wrong order, similar to above - // but additional sequence has be flipped as well - existingNodes.reverse ++ currentNodes.reverse.drop(1) - else - throw new RuntimeException( - s"Last node $existingLast was not found in way ${currentWay.id}" - ) - } - .getOrElse( - // Current way is empty, carry on with old sequence - existingNodes - ) + val currentNodes: Seq[AreaKey] = currentWay.nodes + val result = existingNodes.headOption.zip(existingNodes.lastOption) match { + case Some((existingFirst: AreaKey, existingLast: AreaKey)) => + if (existingFirst.equals(existingLast)) { + existingNodes ++ currentNodes + } else { + + currentNodes.headOption + .zip(currentNodes.lastOption) + .map { case (currentFirst, currentLast) => + // Run through a bunch of cases. In the end, we want [a, b, c, d, e ... a] + if ( + existingFirst == currentFirst && existingLast == currentLast + ) { + // [a, b, c] and [a, d, c] + // Additional sequence needs to be flipped + // Polygon will be closed by this way + (existingNodes ++ currentNodes.reverse.drop(1)) + } else if ( + existingFirst == currentLast && existingLast == currentFirst + ) { + // [a, b, c] and [c, d, a] + // All in correct order + // Polygon will be closed by this way + (existingNodes ++ currentNodes.drop(1)) + } else if (existingLast == currentFirst) + // [a, b, c] and [c, d, e] + // All in correct order + (existingNodes ++ currentNodes.drop(1)) + else if (existingLast == currentLast) + // [a, b, c] and [e, d, c] + // Additional sequence needs to be flipped + (existingNodes ++ currentNodes.reverse.drop(1)) + else if (existingFirst == currentFirst) + // [c, b, a] and [c, d, e] + // Existing sequence in wrong order: + // this should only happen if we have only added one + // sequence so far and that sequence was in wrong order + (existingNodes.reverse ++ currentNodes.drop(1)) + else if (existingFirst == currentLast) + // [c, b, a] and [e, d, c]; a != e since we already covered this with first case + // Existing sequence in wrong order, similar to above + // but additional sequence has to be flipped as well + (existingNodes.reverse ++ currentNodes.reverse.drop(1)) + else + throw new RuntimeException( + s"Last node $existingLast was not found in way ${currentWay.id}" + ) + } + .getOrElse( + // Current way is empty, carry on with old sequence + (existingNodes) + ) + } case None => // No nodes added yet, just put current ones in place - currentNodes + (currentNodes) } + (result) } } diff --git a/src/main/scala/edu/ie3/osmogrid/lv/region_coordinator/OsmoGridModelPartitioner.scala b/src/main/scala/edu/ie3/osmogrid/lv/region_coordinator/OsmoGridModelPartitioner.scala index 625661bf..8e4a1a7a 100644 --- a/src/main/scala/edu/ie3/osmogrid/lv/region_coordinator/OsmoGridModelPartitioner.scala +++ b/src/main/scala/edu/ie3/osmogrid/lv/region_coordinator/OsmoGridModelPartitioner.scala @@ -42,7 +42,7 @@ object OsmoGridModelPartitioner extends LazyLogging { */ def partition( osmoGridModel: LvOsmoGridModel, - areas: ParMap[AreaKey, Polygon] + areas: ParMap[AreaKey, Seq[Polygon]] ): ParMap[AreaKey, LvOsmoGridModel] = { val buildings = assign(osmoGridModel.buildings, areas, AssignByMax) @@ -76,7 +76,7 @@ object OsmoGridModelPartitioner extends LazyLogging { private def assign( enhancedEntities: ParSeq[EnhancedOsmEntity], - areas: ParMap[AreaKey, Polygon], + areas: ParMap[AreaKey, Seq[Polygon]], allocationStrategy: EntityAllocationStrategy ): ParMap[AreaKey, ParSeq[EnhancedOsmEntity]] = { enhancedEntities @@ -91,7 +91,7 @@ object OsmoGridModelPartitioner extends LazyLogging { private def assign( enhancedEntity: EnhancedOsmEntity, - areas: ParMap[AreaKey, Polygon], + areas: ParMap[AreaKey, Seq[Polygon]], allocationStrategy: EntityAllocationStrategy ): Iterable[AreaKey] = { val entityVotes = vote(enhancedEntity.entity, enhancedEntity, areas) @@ -117,7 +117,7 @@ object OsmoGridModelPartitioner extends LazyLogging { private def vote( entity: OsmEntity, enhancedEntity: EnhancedOsmEntity, - areas: ParMap[AreaKey, Polygon] + areas: ParMap[AreaKey, Seq[Polygon]] ): Map[AreaKey, Int] = entity match { case node: OsmEntity.Node => @@ -131,7 +131,7 @@ object OsmoGridModelPartitioner extends LazyLogging { private def vote( relation: OsmEntity.Relation, enhancedEntity: EnhancedOsmEntity, - areas: ParMap[AreaKey, Polygon] + areas: ParMap[AreaKey, Seq[Polygon]] ): Map[AreaKey, Int] = relation.members .flatMap { member => @@ -157,7 +157,7 @@ object OsmoGridModelPartitioner extends LazyLogging { private def vote( way: OsmEntity.Way, enhancedEntity: EnhancedOsmEntity, - areas: ParMap[AreaKey, Polygon] + areas: ParMap[AreaKey, Seq[Polygon]] ): Map[AreaKey, Int] = way.nodes .flatMap(enhancedEntity.node) @@ -171,14 +171,12 @@ object OsmoGridModelPartitioner extends LazyLogging { private def vote( node: OsmEntity.Node, - areas: ParMap[AreaKey, Polygon] + areas: ParMap[AreaKey, Seq[Polygon]] ): Map[AreaKey, Int] = { val point = GeoUtils.buildPoint(node.latitude, node.longitude) - areas.iterator - .collectFirst { - case areaId -> polygon if polygon.covers(point) => - Map(areaId -> 1) - } - .getOrElse(Map.empty) + areas.iterator.collect { + case (areaId, polygons) if polygons.exists(_.covers(point)) => + areaId -> 1 + }.toMap } } diff --git a/src/main/scala/edu/ie3/osmogrid/model/OsmoGridModel.scala b/src/main/scala/edu/ie3/osmogrid/model/OsmoGridModel.scala index e1045c1a..69f22056 100644 --- a/src/main/scala/edu/ie3/osmogrid/model/OsmoGridModel.scala +++ b/src/main/scala/edu/ie3/osmogrid/model/OsmoGridModel.scala @@ -24,6 +24,16 @@ sealed trait OsmoGridModel { } object OsmoGridModel { + def filterNodes(entities: Seq[EnhancedOsmEntity]): Map[Long, Node] = { + entities.foldLeft(Map.empty[Long, Node]) { + (matchedSubEntities, curEntity) => + curEntity.entity match { + case entity: Node => + matchedSubEntities + (entity.id -> entity) + case _ => matchedSubEntities + } + } + } def filterForSubstations( entities: ParSeq[EnhancedOsmEntity] diff --git a/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/DoBoCas_boundaries_level8.csv b/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/DoBoCas_boundaries_level8.csv index 69c2c797..36508907 100644 --- a/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/DoBoCas_boundaries_level8.csv +++ b/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/DoBoCas_boundaries_level8.csv @@ -1 +1 @@ -POLYGON ((7.303199200000001 51.52760000000001, 7.3021425 51.527350000000006, 7.3015676 51.5284799, 7.301100600000001 51.528401800000005, 7.3007016 51.5292657, 7.3004347 51.529211800000006, 7.2996778 51.530899600000005, 7.298596000000001 51.530590700000005, 7.2976691 51.53035070000001, 7.2971845 51.530174900000006, 7.2969477000000005 51.53056, 7.295702400000001 51.529961500000006, 7.295366100000001 51.53060060000001, 7.2950584 51.5309989, 7.294803900000001 51.531375100000005, 7.294683 51.531513200000006, 7.2945674 51.5316078, 7.294179400000001 51.532226900000005, 7.2941253 51.532415, 7.294036500000001 51.5329175, 7.2940012 51.533231, 7.293057200000001 51.534082600000005, 7.2935118 51.5344003, 7.294075200000001 51.534361100000005, 7.2941972 51.5344148, 7.294308900000001 51.5343808, 7.2943401 51.534393900000005, 7.2943503000000005 51.5344174, 7.294433100000001 51.534443200000005, 7.294533100000001 51.5345238, 7.294598700000001 51.5345299, 7.294734300000001 51.534586000000004, 7.2948183 51.5346514, 7.2949386 51.534694, 7.295003 51.5347516, 7.2950749 51.5347816, 7.2950946000000005 51.5348132, 7.2951318 51.534829200000004, 7.2954065 51.5350971, 7.295438300000001 51.5355013, 7.295435200000001 51.535924, 7.2953874 51.536095800000005, 7.2954277 51.536140800000005, 7.2954176 51.536178400000004, 7.295440200000001 51.5362316, 7.2954261 51.536312, 7.2955046 51.5365881, 7.295539400000001 51.5366228, 7.2955921 51.536729300000005, 7.2956026000000005 51.5367903, 7.2955695 51.536893500000005, 7.2955775 51.536981700000005, 7.295547300000001 51.5370384, 7.2955534 51.537099500000004, 7.2955917 51.5371552, 7.295670200000001 51.537219, 7.295699000000001 51.537341000000005, 7.295801900000001 51.5375163, 7.296015100000001 51.5377602, 7.2961283 51.5378741, 7.2961548 51.5379025, 7.2962807000000005 51.538065, 7.2963602000000005 51.5381732, 7.296478700000001 51.538393600000006, 7.296500000000001 51.538489600000005, 7.296244300000001 51.5390371, 7.2962533 51.5391878, 7.2962163 51.539281300000006, 7.2961232 51.5393558, 7.2960411 51.53943640000001, 7.2960224 51.539484200000004, 7.296021400000001 51.539609600000006, 7.2959794 51.5397228, 7.295931100000001 51.539954800000004, 7.2959811000000006 51.5399888, 7.296064400000001 51.540017500000005, 7.2960571000000005 51.5400932, 7.2961635000000005 51.5402142, 7.2959689 51.540434000000005, 7.2959689 51.540515400000004, 7.296212400000001 51.5405342, 7.296382500000001 51.5405838, 7.2964343000000005 51.5406373, 7.296431500000001 51.5406965, 7.2963804 51.5406939, 7.296234500000001 51.5407165, 7.2962499 51.5408588, 7.2962683 51.5409804, 7.296282400000001 51.54103550000001, 7.2964238 51.5411653, 7.2964812000000006 51.5412698, 7.2964364 51.5414043, 7.2963871000000005 51.5415344, 7.296395100000001 51.5416705, 7.2963991 51.5417071, 7.2963414 51.541762500000004, 7.2962793 51.5417837, 7.296183 51.541805800000006, 7.2961229 51.5418121, 7.2959231 51.5418132, 7.2956484 51.5418426, 7.2955385 51.54189160000001, 7.295409 51.5419671, 7.295323300000001 51.5420311, 7.295086700000001 51.5422261, 7.2950241 51.542317700000005, 7.2949660000000005 51.542425200000004, 7.2948306 51.5425113, 7.2947215000000005 51.5425441, 7.294531600000001 51.542535300000004, 7.294469 51.5426074, 7.2941054 51.542496400000005, 7.2940649 51.5425082, 7.293774900000001 51.5424358, 7.2937612000000005 51.542415500000004, 7.2937485 51.542396800000006, 7.293728400000001 51.5423674, 7.293483200000001 51.5422991, 7.293397000000001 51.54231720000001, 7.2932690000000004 51.542262900000004, 7.2929842 51.5422385, 7.2929282 51.5422766, 7.2928943 51.5422595, 7.292826600000001 51.542329200000005, 7.292505500000001 51.5424621, 7.2923926 51.5424943, 7.292217300000001 51.542524, 7.292229000000001 51.5425819, 7.292177700000001 51.542696600000006, 7.2922478 51.5427923, 7.2920578 51.5428183, 7.292096900000001 51.5429042, 7.292104 51.542987600000004, 7.2920598000000005 51.5430986, 7.292463400000001 51.54326450000001, 7.292844400000001 51.543475900000004, 7.292903300000001 51.5436623, 7.2928556 51.543813400000005, 7.292644200000001 51.543848100000005, 7.2925263000000005 51.543847500000005, 7.292430800000001 51.543989700000004, 7.292417500000001 51.5440953, 7.2923423000000005 51.544211600000004, 7.29232 51.5443171, 7.292288500000001 51.544333200000004, 7.292293600000001 51.5444745, 7.291788500000001 51.5443471, 7.290940900000001 51.5441171, 7.290658400000001 51.5447026, 7.2905965 51.5448943, 7.290468400000001 51.5453959, 7.2903602 51.545672200000006, 7.2907503 51.54576470000001, 7.2907254 51.5459024, 7.288451500000001 51.5454986, 7.288368200000001 51.5454853, 7.2884672 51.5457036, 7.2884871 51.5458537, 7.2879705 51.545785900000006, 7.2862821 51.5455131, 7.2861574000000005 51.5454802, 7.2856997 51.54570270000001, 7.285523400000001 51.5457936, 7.2854136 51.545833300000005, 7.2854087000000005 51.54681050000001, 7.2853782 51.5473146, 7.2853751 51.5473944, 7.2853631000000005 51.547394000000004, 7.2854543000000005 51.5478065, 7.2854733000000005 51.5479083, 7.285487600000001 51.5479659, 7.2855106 51.5480692, 7.2855549 51.548266600000005, 7.2855619 51.5482986, 7.285577600000001 51.5483733, 7.2856363 51.5486361, 7.285678300000001 51.5488128, 7.285726100000001 51.549027800000005, 7.285872800000001 51.549452900000006, 7.2858248 51.5495845, 7.285823300000001 51.5495887, 7.285589600000001 51.5501347, 7.2854273 51.5505137, 7.285192400000001 51.5510559, 7.285180100000001 51.5510834, 7.2849804 51.5515564, 7.284883300000001 51.55178110000001, 7.2848307000000005 51.552185800000004, 7.284779100000001 51.552547000000004, 7.284750600000001 51.552820700000005, 7.284709800000001 51.5532173, 7.284705400000001 51.55325190000001, 7.2832409 51.5529718, 7.2831577 51.5531427, 7.2831345 51.5532436, 7.282932300000001 51.554135900000006, 7.2826259 51.555442000000006, 7.282556100000001 51.5557388, 7.2825454 51.555948300000004, 7.2825363 51.5559877, 7.2820692000000005 51.555972700000005, 7.282011700000001 51.5559689, 7.281856 51.555934300000004, 7.2794398000000005 51.5557807, 7.279192800000001 51.5558707, 7.2786849 51.555789700000005, 7.2771276 51.55571380000001, 7.2767762000000005 51.555696700000006, 7.275414400000001 51.555601700000004, 7.2738987 51.5555357, 7.2738411 51.5564717, 7.2737474 51.5564632, 7.273714600000001 51.5565756, 7.2736536 51.556622100000006, 7.2735801 51.556660900000004, 7.2735003 51.55668300000001, 7.273359900000001 51.556702300000005, 7.273238900000001 51.556704100000005, 7.273004200000001 51.5567427, 7.272896500000001 51.556769700000004, 7.272754600000001 51.556878100000006, 7.2726161000000005 51.5569822, 7.272012 51.557286500000004, 7.2715339000000005 51.557601500000004, 7.271240100000001 51.557747500000005, 7.272119900000001 51.55842740000001, 7.2727298000000005 51.559167300000006, 7.272321900000001 51.559564300000005, 7.2720659 51.559884200000006, 7.2719139 51.559983200000005, 7.271746 51.559966200000005, 7.2716519 51.5597883, 7.271431000000001 51.559525300000004, 7.270367200000001 51.5595403, 7.2693013 51.5596412, 7.2692573000000005 51.5597463, 7.2692373 51.559980200000005, 7.268258500000001 51.559994200000006, 7.2671067 51.559977200000006, 7.266710700000001 51.559943200000006, 7.266454800000001 51.5598972, 7.266427800000001 51.5599263, 7.266258700000001 51.559955200000005, 7.2661088000000005 51.5600712, 7.2659618 51.5602232, 7.265914800000001 51.560337200000006, 7.2654809 51.5608421, 7.265059000000001 51.561268000000005, 7.263668200000001 51.560338200000004, 7.2627873 51.5601822, 7.2627813 51.5602892, 7.2629828000000005 51.560989400000004, 7.2630721000000005 51.561299700000006, 7.2634872 51.562741900000006, 7.263611200000001 51.562758900000006, 7.264083100000001 51.563107900000006, 7.2641681 51.563140800000006, 7.264259 51.563164900000004, 7.2643551 51.5631749, 7.2649249000000005 51.5638507, 7.264927900000001 51.5640907, 7.264830000000001 51.5643717, 7.264862900000001 51.5645437, 7.264729000000001 51.564857700000005, 7.264592 51.565385600000006, 7.2646120000000005 51.5654376, 7.2647509 51.5654156, 7.264883 51.565596600000006, 7.2650440000000005 51.5657335, 7.2649669 51.5658686, 7.264956000000001 51.5659446, 7.265028900000001 51.5660225, 7.264996 51.5660705, 7.2651379 51.5662035, 7.265218000000001 51.5663155, 7.2655118000000005 51.5664195, 7.2661518 51.566617400000005, 7.2647092 51.5680805, 7.2642401 51.568555200000006, 7.2541821 51.564795100000005, 7.253919300000001 51.5650685, 7.249662900000001 51.5647856, 7.249535600000001 51.565396400000004, 7.2495146 51.565508200000004, 7.249509700000001 51.565529000000005, 7.2495004000000005 51.565574500000004, 7.249542000000001 51.565600800000006, 7.2496673000000005 51.565825800000006, 7.2496784000000005 51.5658454, 7.249702600000001 51.5658904, 7.249685100000001 51.565879200000005, 7.2495859000000005 51.565903500000005, 7.2495219 51.5659148, 7.249285700000001 51.5659585, 7.249229400000001 51.5659676, 7.2486987 51.5660637, 7.2485492 51.566090800000005, 7.2485318 51.566093800000004, 7.248469300000001 51.566104700000004, 7.248225400000001 51.566149100000004, 7.2480956 51.567018000000004, 7.247972000000001 51.567804900000006, 7.2476992000000005 51.5696249, 7.247187 51.569244600000005, 7.2460165000000005 51.5695105, 7.2455992 51.5696043, 7.2453859000000005 51.5695908, 7.2453650000000005 51.5696376, 7.2452182 51.5699612, 7.2449788 51.5704876, 7.2430795 51.5698682, 7.243138500000001 51.5700731, 7.243115 51.5702506, 7.2431314 51.570842000000006, 7.2427868 51.570963000000006, 7.2429353 51.571104600000005, 7.243093000000001 51.571440300000006, 7.2424932 51.5717456, 7.243266200000001 51.5721179, 7.243247500000001 51.5721475, 7.243124600000001 51.572354100000005, 7.2430262 51.5727702, 7.243094200000001 51.572771700000004, 7.2431945 51.572819, 7.2426520000000005 51.573345200000006, 7.2430493 51.5734396, 7.2432762 51.5735157, 7.2440771 51.5737886, 7.2457498000000005 51.5744266, 7.246878700000001 51.574852500000006, 7.2473102 51.575027500000004, 7.2480625000000005 51.5752534, 7.2488374 51.5754704, 7.2493023 51.5755854, 7.250072200000001 51.5757714, 7.250950700000001 51.576063500000004, 7.2512451 51.576177300000005, 7.251604700000001 51.576402900000005, 7.2520037 51.576646200000006, 7.2522241 51.5768555, 7.2524087 51.577040600000004, 7.252584700000001 51.5771931, 7.2527727 51.5774315, 7.252934300000001 51.5776775, 7.253286800000001 51.578236100000005, 7.2533104 51.5782754, 7.253736600000001 51.578981000000006, 7.254316500000001 51.579937900000004, 7.2545055000000005 51.580215900000006, 7.2546897 51.5805408, 7.254855200000001 51.580812400000006, 7.2551911 51.5812577, 7.2554014 51.5814826, 7.2555034 51.5815715, 7.2556877 51.581721400000006, 7.2558658000000005 51.5818523, 7.2560574 51.5819794, 7.256405300000001 51.582173700000006, 7.2566921 51.582314700000005, 7.257000100000001 51.5824366, 7.2572600000000005 51.582527400000004, 7.2575780000000005 51.582620600000006, 7.257915000000001 51.5827055, 7.258201000000001 51.582767600000004, 7.258675800000001 51.5828386, 7.2590968 51.5828776, 7.2593132 51.58288640000001, 7.2594637 51.5828925, 7.2598567 51.5828816, 7.2601997 51.582859600000006, 7.2606666 51.58281100000001, 7.2611315 51.582724600000006, 7.261603600000001 51.5826148, 7.2617384000000005 51.58256960000001, 7.262097300000001 51.5824586, 7.262447300000001 51.582330600000006, 7.262815300000001 51.5821837, 7.263117200000001 51.582055600000004, 7.2634292 51.5819386, 7.2637311 51.581816700000005, 7.263958100000001 51.581748700000006, 7.2641951 51.581686700000006, 7.264489 51.581624700000006, 7.264818000000001 51.581577200000005, 7.2650418000000005 51.581555900000005, 7.2654408 51.581537000000004, 7.265833400000001 51.5815422, 7.2661287 51.5815537, 7.266473700000001 51.581602700000005, 7.2668476 51.581670800000005, 7.2671692000000006 51.5817598, 7.2675543000000005 51.5818826, 7.270659 51.5828246, 7.272896500000001 51.58350110000001, 7.2742649 51.58391820000001, 7.2755912 51.5843192, 7.277205 51.5847983, 7.2779742 51.5850376, 7.2787069 51.5852644, 7.282514300000001 51.5863992, 7.2831011000000005 51.5865772, 7.2835831 51.5867452, 7.283883 51.5868662, 7.284124 51.586977100000006, 7.284434900000001 51.58714620000001, 7.2848328 51.587385100000006, 7.285153800000001 51.587619000000004, 7.2854188 51.5878541, 7.286409600000001 51.5888189, 7.2873415 51.589705800000004, 7.2879494000000005 51.590270800000006, 7.2883703 51.5906467, 7.288575300000001 51.5907987, 7.288867300000001 51.590973700000006, 7.289157200000001 51.591131700000005, 7.289390200000001 51.5912597, 7.2896111 51.5913576, 7.2899491 51.5914936, 7.290365 51.591635600000004, 7.290713 51.5917746, 7.290946900000001 51.591905600000004, 7.291226900000001 51.592053500000006, 7.2915479 51.592270500000005, 7.2917328 51.592399500000006, 7.2918858 51.5925206, 7.2920758 51.592692500000005, 7.292320800000001 51.592939400000006, 7.292891600000001 51.5935344, 7.293373600000001 51.5940163, 7.2937665 51.594416300000006, 7.2939625 51.5946043, 7.294138500000001 51.5947393, 7.294342400000001 51.5948622, 7.2945554 51.594954300000005, 7.294738400000001 51.595024300000006, 7.2948814 51.5950622, 7.295242300000001 51.595125200000005, 7.295548200000001 51.595150200000006, 7.2958762 51.5951462, 7.2962112 51.595114200000005, 7.2962721 51.5952392, 7.295872200000001 51.5952792, 7.2955852000000005 51.5952762, 7.295346200000001 51.595255200000004, 7.2952902 51.595291200000005, 7.2948043 51.5953202, 7.2946933000000005 51.595744200000006, 7.2945193 51.596349100000005, 7.2950853 51.596601, 7.2944883 51.597639900000004, 7.2935495 51.597403, 7.293311600000001 51.5978999, 7.2932695 51.598756800000004, 7.2930006 51.599377700000005, 7.292885600000001 51.599355800000005, 7.292445600000001 51.599020700000004, 7.2923118 51.59898080000001, 7.2921557 51.5988818, 7.291998700000001 51.5987468, 7.291742800000001 51.5988088, 7.2914269 51.600120600000004, 7.2913478000000005 51.600296900000004, 7.2912879 51.6007906, 7.2912619 51.6009016, 7.2911938 51.6009736, 7.2910399 51.6009455, 7.290916 51.6009405, 7.290477 51.6009576, 7.2893901 51.601034500000004, 7.2900261 51.6018904, 7.289212200000001 51.6021664, 7.288673200000001 51.602350400000006, 7.288646300000001 51.602398300000004, 7.288353300000001 51.6025093, 7.288174400000001 51.602576400000004, 7.288081300000001 51.6026663, 7.285148800000001 51.6023184, 7.285114800000001 51.603115300000006, 7.284855800000001 51.6030942, 7.2848288000000005 51.6031363, 7.2849218 51.603403300000004, 7.2849928 51.6035502, 7.2850828000000005 51.60368020000001, 7.2852608000000005 51.6039042, 7.2854288 51.6040812, 7.2854777 51.6041462, 7.285375800000001 51.6042542, 7.285274800000001 51.6043802, 7.2851837 51.6045652, 7.2851397 51.604685100000005, 7.2850478 51.6047991, 7.2849918 51.604865100000005, 7.2849468 51.60493700000001, 7.284975800000001 51.60496010000001, 7.2847029 51.6050941, 7.284579900000001 51.6051311, 7.284474800000001 51.6051561, 7.2843368 51.605181, 7.2839 51.605239000000005, 7.2833661 51.605293100000004, 7.282662200000001 51.605360000000005, 7.281661300000001 51.605454, 7.2801235 51.605608000000004, 7.2800666000000005 51.60562, 7.2800625000000005 51.605793000000006, 7.279998600000001 51.605895000000004, 7.2799816 51.60598400000001, 7.2799465 51.6060789, 7.2799376 51.606109000000004, 7.2800706 51.606084, 7.280070500000001 51.6064409, 7.2801166 51.6067199, 7.2801485 51.6068379, 7.280240500000001 51.6070398, 7.280625400000001 51.607831700000006, 7.280433400000001 51.607786700000005, 7.280515500000001 51.6079937, 7.280809400000001 51.60859670000001, 7.280900300000001 51.6087567, 7.2813923 51.6089356, 7.282300200000001 51.6093065, 7.28354 51.609916500000004, 7.284822800000001 51.610372500000004, 7.2854307 51.6105804, 7.2873764 51.6111834, 7.288851200000001 51.611648300000006, 7.2890052 51.6117003, 7.2898221 51.6120363, 7.291685800000001 51.612610200000006, 7.2922647000000005 51.612777200000004, 7.2924857 51.61286320000001, 7.2929256 51.6130311, 7.2931755 51.61309910000001, 7.293840400000001 51.613300200000005, 7.293572500000001 51.6136241, 7.2921756 51.6132051, 7.2921567000000005 51.613556100000004, 7.292228700000001 51.613722100000004, 7.2923317 51.613989100000005, 7.2923936000000005 51.614166000000004, 7.2923976 51.614279, 7.2923556000000005 51.614506000000006, 7.2922697 51.614834, 7.2921987 51.615031, 7.2920517 51.615234900000004, 7.2917788 51.6154774, 7.2913988000000005 51.6167408, 7.2912578 51.6178716, 7.2908018000000006 51.620665200000005, 7.290438900000001 51.620663300000004, 7.285309700000001 51.620677300000004, 7.2853167 51.6212602, 7.2853006 51.6213732, 7.2856866 51.6214942, 7.285946600000001 51.621580200000004, 7.2863816 51.621754100000004, 7.287106400000001 51.622043100000006, 7.288672200000001 51.6226921, 7.290103 51.623277, 7.2903929000000005 51.623399000000006, 7.2912138 51.6237349, 7.292528600000001 51.6242729, 7.2928765 51.624411900000005, 7.294316200000001 51.625002800000004, 7.295312200000001 51.625395700000006, 7.2955208 51.6254817, 7.2964910000000005 51.6258707, 7.2975148 51.6262817, 7.2977847 51.626034700000005, 7.2985946 51.6252768, 7.2988556 51.6250538, 7.2989816 51.6250938, 7.2998615000000004 51.625488700000005, 7.300578300000001 51.6258257, 7.300908300000001 51.6259877, 7.301033200000001 51.6260167, 7.301157300000001 51.626014700000006, 7.3013092 51.625995700000004, 7.3014602 51.6259347, 7.301778100000001 51.6256867, 7.3016661 51.625598700000005, 7.3015942 51.6254398, 7.301623200000001 51.6251298, 7.3016782000000005 51.6246838, 7.301762200000001 51.624622800000004, 7.3021691 51.6244999, 7.3031630000000005 51.6241909, 7.3041578000000005 51.623876900000006, 7.3042328 51.623846, 7.3043168000000005 51.623780000000004, 7.3043917 51.6237019, 7.3046028000000005 51.623414000000004, 7.304668700000001 51.62339600000001, 7.3053337 51.623251, 7.3058975 51.623245100000005, 7.306810400000001 51.623128, 7.3072964 51.6230811, 7.307294400000001 51.622992, 7.307193300000001 51.6224931, 7.3069994000000005 51.6213952, 7.3068514 51.6208973, 7.307040400000001 51.6208183, 7.3067565000000005 51.620226300000006, 7.3062705 51.620285300000006, 7.306218500000001 51.620119300000006, 7.306305500000001 51.6195004, 7.3062335 51.618995500000004, 7.3061746 51.6189545, 7.305830500000001 51.6189235, 7.306032500000001 51.618665500000006, 7.305708600000001 51.618359600000005, 7.305254700000001 51.618519500000005, 7.304954700000001 51.6180346, 7.304943700000001 51.617987600000006, 7.3049457 51.6170417, 7.304924700000001 51.617006700000005, 7.305082700000001 51.6168558, 7.3049678 51.616809700000005, 7.3047598 51.6167287, 7.304431800000001 51.616607800000004, 7.304209800000001 51.6165267, 7.304245900000001 51.616466700000004, 7.304234900000001 51.6164318, 7.3049417000000005 51.6160968, 7.3049708 51.6161139, 7.3059117 51.6156791, 7.306394500000001 51.6154559, 7.307356400000001 51.6150169, 7.307799200000001 51.61480400000001, 7.3080243000000005 51.61468300000001, 7.308749100000001 51.6143001, 7.308837100000001 51.614254100000004, 7.309328900000001 51.613996900000004, 7.3100380000000005 51.613626200000006, 7.310067 51.61363720000001, 7.3100779000000005 51.613691200000005, 7.3101780000000005 51.6138321, 7.310200900000001 51.61396310000001, 7.310244900000001 51.61417, 7.3101529 51.614284100000006, 7.311175800000001 51.614992900000004, 7.312769500000001 51.615265900000004, 7.3126246 51.615659900000004, 7.314991200000001 51.6159729, 7.3151032 51.616547800000006, 7.316668900000001 51.6165188, 7.3174649 51.6163078, 7.317750800000001 51.6162749, 7.3197035 51.6160799, 7.3202834 51.61600790000001, 7.3208643 51.6159479, 7.3209403 51.6159419, 7.3208503 51.614795, 7.320765300000001 51.6138501, 7.3208193 51.6137492, 7.3195097 51.613372500000004, 7.3190736 51.6132221, 7.3192960000000005 51.61288690000001, 7.3196995000000005 51.61234030000001, 7.3207164 51.610836400000004, 7.3223361 51.6084277, 7.3239038 51.6088207, 7.3259436 51.6093387, 7.32908 51.61013560000001, 7.3292291 51.6101636, 7.329343000000001 51.610132500000006, 7.3293610000000005 51.610138500000005, 7.3294401 51.6101906, 7.329595 51.610248500000004, 7.3303139 51.6106865, 7.3308778000000006 51.6110124, 7.3310817 51.6111294, 7.3323486 51.610704500000004, 7.3322446 51.610408500000005, 7.3327165 51.610195600000004, 7.3322196 51.6095346, 7.3327295 51.6090297, 7.3339623000000005 51.6090627, 7.334519200000001 51.6110965, 7.3349612 51.6111924, 7.335974 51.6115434, 7.336139 51.6113215, 7.3362049 51.610940500000005, 7.336810900000001 51.6107725, 7.3364279 51.610408500000005, 7.336270000000001 51.6102325, 7.3361301 51.610037500000004, 7.335855100000001 51.6095978, 7.3354397 51.608933400000005, 7.3353992 51.6088687, 7.3373933000000005 51.6086892, 7.3379151 51.6086383, 7.3390062 51.6088011, 7.3404984 51.60906670000001, 7.3407903 51.609871600000005, 7.342253100000001 51.609598600000005, 7.3423381 51.6082538, 7.344867700000001 51.608242800000006, 7.344048900000001 51.6066889, 7.3439639 51.606077000000006, 7.3439528 51.606024000000005, 7.3437139 51.60571100000001, 7.343643900000001 51.605611100000004, 7.3435639 51.6054631, 7.343540900000001 51.6053501, 7.343574800000001 51.6052131, 7.3436209 51.605124100000005, 7.343656800000001 51.605070100000006, 7.343178900000001 51.605051100000004, 7.342910900000001 51.605031100000005, 7.342471000000001 51.605000200000006, 7.342098200000001 51.6049802, 7.341763200000001 51.604949100000006, 7.3409982000000005 51.604922200000004, 7.340118400000001 51.6048722, 7.339323500000001 51.6048041, 7.338977600000001 51.6047372, 7.3388716 51.604708200000005, 7.3387646 51.604638200000004, 7.3388236000000004 51.604536200000005, 7.3388593 51.6045086, 7.3392065 51.60424020000001, 7.3393835 51.6040963, 7.3394205 51.6040603, 7.339474600000001 51.603934200000005, 7.3394985 51.603791300000005, 7.3395206 51.6035593, 7.3399004 51.6034773, 7.3404584 51.603310400000005, 7.3406884 51.6033084, 7.3408943 51.603192400000005, 7.340234400000001 51.6025044, 7.339608500000001 51.602333400000006, 7.3394826 51.602269500000006, 7.3392436000000005 51.6022605, 7.3391396 51.6022734, 7.339053600000001 51.6022685, 7.338774600000001 51.6022295, 7.338435700000001 51.602370400000005, 7.3382367 51.6024144, 7.3379877 51.6024235, 7.336944900000001 51.6026614, 7.3368989000000004 51.602382500000004, 7.3368919 51.6021505, 7.3368989000000004 51.6020605, 7.3369549 51.601985500000005, 7.3370759 51.6018715, 7.3372928 51.601791500000004, 7.337405800000001 51.6017306, 7.338023700000001 51.601622600000006, 7.3387716 51.6013935, 7.3399514 51.6009407, 7.3403304 51.6008347, 7.3408853 51.6005727, 7.3417582 51.6001617, 7.341826200000001 51.6001227, 7.3418532 51.5994898, 7.343109 51.5998468, 7.3440088 51.600083700000006, 7.344134800000001 51.6001088, 7.3443969000000004 51.600116500000006, 7.344707700000001 51.60012570000001, 7.3448238 51.6000406, 7.3454236 51.5997787, 7.3458266000000005 51.5999877, 7.3461284000000004 51.600264700000004, 7.346557600000001 51.600346800000004, 7.347225300000001 51.6003167, 7.3477293 51.6005966, 7.348071200000001 51.6005267, 7.348270200000001 51.6004656, 7.3485541 51.600396700000005, 7.3487811 51.600328700000006, 7.3488281 51.6002987, 7.349135 51.5999977, 7.349217100000001 51.5998898, 7.349351 51.5998937, 7.349914900000001 51.5999167, 7.3507398 51.6000327, 7.3513527000000005 51.600084700000004, 7.351563700000001 51.600129700000004, 7.351659700000001 51.600134800000006, 7.3517356000000005 51.600145700000006, 7.3520136 51.599524800000005, 7.353508400000001 51.599048800000006, 7.353260400000001 51.5987609, 7.3532945000000005 51.598593900000004, 7.3536374 51.5985719, 7.353902400000001 51.598503900000004, 7.3545312 51.598460900000006, 7.354833200000001 51.598658900000004, 7.3551092 51.5989659, 7.355190200000001 51.5991068, 7.355233200000001 51.5992669, 7.355227200000001 51.5993738, 7.3551541 51.5995118, 7.3550811000000005 51.5995988, 7.355087200000001 51.599661700000006, 7.355118200000001 51.59972380000001, 7.355191100000001 51.5997788, 7.3553161000000005 51.5997988, 7.356067100000001 51.599521800000005, 7.356097500000001 51.599507100000004, 7.356142 51.599482800000004, 7.3566529 51.598691900000006, 7.356809900000001 51.598511900000005, 7.3571574 51.5983164, 7.357050900000001 51.598253, 7.3576718 51.597972000000006, 7.3577658 51.597924000000006, 7.3580367 51.597596100000004, 7.3583686 51.59732210000001, 7.3586106000000004 51.5970931, 7.359063600000001 51.59692810000001, 7.359763500000001 51.5963781, 7.360740300000001 51.595683300000005, 7.360938300000001 51.595294300000006, 7.3614663 51.5947533, 7.361599200000001 51.5947283, 7.3616482 51.594751300000006, 7.3618551000000005 51.5946414, 7.3618421000000005 51.594552400000005, 7.3622000000000005 51.5943934, 7.3624941 51.5943314, 7.362818900000001 51.594327400000005, 7.3631539 51.594204500000004, 7.363670900000001 51.59412450000001, 7.363804900000001 51.594107400000006, 7.363920800000001 51.594124400000005, 7.3643498 51.593952400000006, 7.365742600000001 51.5932825, 7.3667964 51.59278260000001, 7.367822200000001 51.5923006, 7.3687931 51.5918677, 7.369478000000001 51.591621700000005, 7.369668900000001 51.591624800000005, 7.370108900000001 51.59149480000001, 7.3702899 51.5913448, 7.3712067 51.5910188, 7.371707600000001 51.5908518, 7.3717623 51.5907192, 7.371879600000001 51.589871900000006, 7.370500900000001 51.587195300000005, 7.369663 51.585527500000005, 7.369381000000001 51.584843500000005, 7.368278200000001 51.5825108, 7.3653097 51.5832507, 7.364076900000001 51.583504700000006, 7.364033900000001 51.583431600000004, 7.363487900000001 51.583630600000006, 7.363171 51.5836447, 7.362957000000001 51.5835816, 7.3628321 51.5835676, 7.362230200000001 51.5834496, 7.361926100000001 51.583338600000005, 7.361442200000001 51.5831826, 7.3607604 51.5830087, 7.3608894000000005 51.5826098, 7.3608244 51.5822518, 7.3607344 51.582174800000004, 7.3600925 51.5822337, 7.360057500000001 51.5821588, 7.359932400000001 51.5821308, 7.3597995 51.5820238, 7.359599500000001 51.5818768, 7.359297700000001 51.5817994, 7.3592468 51.581797200000004, 7.3589881 51.5817853, 7.358693400000001 51.581748000000005, 7.3585691 51.5817501, 7.358224000000001 51.581806, 7.3580079000000005 51.581850900000006, 7.357628500000001 51.581957, 7.357464500000001 51.5820257, 7.3571502 51.5821878, 7.3571420000000005 51.582301400000006, 7.3570546000000006 51.582479400000004, 7.3570406 51.582592700000006, 7.357004300000001 51.582722000000004, 7.3569803 51.582855, 7.3569864 51.5830513, 7.3569291 51.583387200000004, 7.356862100000001 51.583539300000005, 7.3567730000000005 51.583609700000004, 7.356561200000001 51.5836466, 7.3561415000000006 51.583631200000006, 7.3559818 51.5836509, 7.355914100000001 51.5836934, 7.355682900000001 51.5839203, 7.355472700000001 51.5842572, 7.3554066 51.584340600000004, 7.3552881 51.5844675, 7.3551294 51.5846287, 7.3550249 51.584755400000006, 7.3549113 51.584886000000004, 7.3547948000000005 51.5850449, 7.354696100000001 51.585316000000006, 7.354663700000001 51.585338400000005, 7.3544694 51.5854292, 7.3543098 51.5855369, 7.3542258 51.5855352, 7.3540001 51.585500800000005, 7.3538353 51.585477700000006, 7.3535703 51.585279, 7.3535459 51.585207200000006, 7.353652800000001 51.5850024, 7.353590700000001 51.58495550000001, 7.3535678 51.584851400000005, 7.3534841 51.584701100000004, 7.3534296 51.584556000000006, 7.353465900000001 51.5844272, 7.353415900000001 51.584285400000006, 7.353427900000001 51.5836649, 7.3534397 51.5835991, 7.3534347 51.58353760000001, 7.3533872 51.5834993, 7.353288200000001 51.583451000000004, 7.3531427 51.583360500000005, 7.3530356 51.5833098, 7.352902500000001 51.583258900000004, 7.3528209 51.583193900000005, 7.3527123 51.5831214, 7.3526033 51.583066, 7.3524108 51.582957900000004, 7.3522894 51.582862000000006, 7.3521841000000006 51.5828323, 7.352106600000001 51.58282680000001, 7.3518327 51.5828287, 7.351509 51.5828367, 7.3512911 51.582792700000006, 7.350882100000001 51.582472700000004, 7.3506831 51.582343800000004, 7.3506241 51.5822847, 7.3503663 51.5821248, 7.350218300000001 51.581980800000004, 7.349701400000001 51.58191780000001, 7.3496233 51.581858800000006, 7.3488652000000005 51.581927900000004, 7.348792100000001 51.5819199, 7.348671700000001 51.581908600000006, 7.349738400000001 51.5811149, 7.345400000000001 51.5795211, 7.342875 51.5789825, 7.342587600000001 51.578357800000006, 7.340493800000001 51.577402500000005, 7.339793200000001 51.5771748, 7.3398316 51.5771676, 7.3397167 51.577141000000005, 7.3390722 51.5771207, 7.3390371000000005 51.5770592, 7.3385218000000005 51.576774400000005, 7.3399536 51.575784500000005, 7.3419099 51.5737108, 7.3425731 51.573007800000006, 7.343699000000001 51.571814, 7.3445168 51.571213, 7.344667800000001 51.571334, 7.3450737 51.571598900000005, 7.345227800000001 51.571647000000006, 7.345304700000001 51.57164100000001, 7.3456657000000005 51.5717319, 7.3457166 51.571707, 7.3464366000000005 51.5719329, 7.346593500000001 51.571733, 7.3467295 51.5717489, 7.3471074000000005 51.571324000000004, 7.3472504 51.571223, 7.347388400000001 51.571141100000006, 7.347495400000001 51.571187, 7.3477484 51.5710361, 7.347838 51.57086210000001, 7.348065600000001 51.5704587, 7.3481278 51.5703369, 7.348581 51.569694000000005, 7.3492319 51.568808600000004, 7.3502532 51.567386500000005, 7.3492454 51.5669704, 7.3538373 51.565185500000005, 7.351377500000001 51.5632333, 7.351469900000001 51.56317000000001, 7.3512938000000005 51.5620586, 7.351247300000001 51.5615467, 7.3511889 51.5611212, 7.3510089 51.5596643, 7.3517619000000005 51.559716300000005, 7.3512969 51.5602493, 7.3513869000000005 51.560439300000006, 7.3516798 51.5605842, 7.351917800000001 51.560762200000006, 7.3520807 51.5605862, 7.3520558000000005 51.560563200000004, 7.3526597 51.5599294, 7.353217600000001 51.559348400000005, 7.3533099 51.559217800000006, 7.3539494 51.5586755, 7.3547324000000005 51.5581825, 7.3545274 51.5581365, 7.354672300000001 51.5580585, 7.354650400000001 51.557975600000006, 7.3548014 51.5577546, 7.3548033 51.5576706, 7.3549433 51.557404600000005, 7.355054300000001 51.5573126, 7.3550053 51.5572716, 7.3552653 51.55702470000001, 7.3552803 51.5568937, 7.3563811 51.5562327, 7.3564841 51.555984800000004, 7.3553322 51.5554598, 7.355327300000001 51.5554088, 7.3551393 51.555247800000004, 7.3550154 51.554870900000004, 7.3549094 51.5547539, 7.354849300000001 51.5546379, 7.3545264 51.554704900000004, 7.3544444 51.554614900000004, 7.3543884 51.554670900000005, 7.3540125000000005 51.554527900000004, 7.3536095 51.55431900000001, 7.3532656 51.554285, 7.3529327 51.554202000000004, 7.3528387 51.554114000000006, 7.353176700000001 51.55388000000001, 7.3510827 51.552624800000004, 7.351337900000001 51.552297900000006, 7.3514989 51.552322200000006, 7.3516968 51.5521273, 7.351854800000001 51.5521413, 7.3519478000000005 51.5518573, 7.3526277 51.5519693, 7.3527187000000005 51.551836300000005, 7.352580700000001 51.55180420000001, 7.3533447 51.5508783, 7.3535826 51.5505524, 7.351082000000001 51.549735500000004, 7.351369900000001 51.5493685, 7.352260800000001 51.548978600000005, 7.3516618000000005 51.548612600000006, 7.3514359 51.5484177, 7.350854000000001 51.5480347, 7.3498292 51.5474788, 7.3497672000000005 51.5473398, 7.3489203000000005 51.54728780000001, 7.348355400000001 51.5465329, 7.3496502 51.546815800000005, 7.3498182000000005 51.5466769, 7.349833200000001 51.5464819, 7.349902200000001 51.546348900000005, 7.349965200000001 51.546311900000006, 7.3501161 51.5462829, 7.350460000000001 51.546298900000004, 7.3501061000000005 51.5460969, 7.3498552 51.546010900000006, 7.3493412000000005 51.545856, 7.3487713 51.54569600000001, 7.3480354000000005 51.54552090000001, 7.347896 51.5454968, 7.347386500000001 51.54540900000001, 7.348341400000001 51.5443001, 7.3484591 51.544235300000004, 7.3484883000000005 51.5442091, 7.349412200000001 51.5431022, 7.348692300000001 51.54282430000001, 7.3491553000000005 51.5421904, 7.3498562000000005 51.540892500000005, 7.3500152000000005 51.540496600000004, 7.349693200000001 51.540507600000005, 7.349799600000001 51.539315800000004, 7.349801200000001 51.539297700000006, 7.3499672 51.539269700000006, 7.350068200000001 51.539230700000005, 7.3501731 51.5392797, 7.350419100000001 51.5392677, 7.35066 51.5390827, 7.350946 51.538834800000004, 7.351356000000001 51.53865570000001, 7.351388 51.5385768, 7.3514929 51.5385318, 7.3515889 51.538532800000006, 7.351755900000001 51.5385768, 7.3519819 51.538549800000006, 7.3522448 51.5384638, 7.3528967000000005 51.5379039, 7.3531667 51.538048800000006, 7.353338600000001 51.5382058, 7.3533907 51.538192900000006, 7.3534866 51.538192800000004, 7.3535136 51.538332800000006, 7.353625600000001 51.538462800000005, 7.353513700000001 51.538667800000006, 7.353507700000001 51.538918800000005, 7.354593500000001 51.538777800000005, 7.3545644 51.538549800000006, 7.354728400000001 51.53827080000001, 7.355006400000001 51.537995900000006, 7.3550804 51.5374999, 7.355320300000001 51.537046000000004, 7.3554693 51.536837000000006, 7.3556653 51.536681, 7.356018300000001 51.53627710000001, 7.3562643 51.5361021, 7.3564562 51.536036, 7.3571631 51.5356851, 7.357083 51.535476100000004, 7.356969100000001 51.5353372, 7.357105000000001 51.5349732, 7.357315000000001 51.534714300000005, 7.357481000000001 51.534615300000006, 7.357209 51.5344892, 7.357503 51.533833300000005, 7.357775 51.533684300000004, 7.357937000000001 51.5336763, 7.3598134 51.5339382, 7.359942200000001 51.5338196, 7.361398500000001 51.5340824, 7.361856 51.533201600000005, 7.3607658 51.5330017, 7.3606201 51.532971200000006, 7.361421600000001 51.5312265, 7.3618228000000006 51.531305800000005, 7.3620483000000005 51.5308167, 7.3624131 51.530607200000006, 7.3634582 51.5300068, 7.3638878000000005 51.5297679, 7.3633291000000005 51.5295758, 7.362762300000001 51.529439800000006, 7.363962000000001 51.528051000000005, 7.362584300000001 51.527134100000005, 7.362069300000001 51.527591, 7.361446900000001 51.5283354, 7.361005100000001 51.528231600000005, 7.360258000000001 51.527990900000006, 7.3600086000000005 51.5278824, 7.359852300000001 51.527794500000006, 7.3593609 51.52739630000001, 7.3590127 51.527171300000006, 7.3589191000000005 51.5271837, 7.358620200000001 51.5272312, 7.358368700000001 51.527258800000006, 7.357456000000001 51.5268579, 7.3575851000000005 51.52663020000001, 7.3568591 51.5262752, 7.3567692000000005 51.526285200000004, 7.356401300000001 51.5262022, 7.3562213000000005 51.5260812, 7.356019300000001 51.5259043, 7.3558893 51.52571330000001, 7.3557823 51.525432300000006, 7.3557706000000005 51.5253676, 7.355686 51.5249013, 7.3553154 51.5249375, 7.354281 51.524982300000005, 7.353975500000001 51.5249685, 7.354173500000001 51.5237982, 7.3536809000000005 51.523737100000005, 7.351862400000001 51.5235099, 7.3509970000000004 51.5234679, 7.349891 51.5232285, 7.349844600000001 51.5233168, 7.3476454 51.522669900000004, 7.3463229000000005 51.5222872, 7.3460669 51.522607, 7.3467301 51.523394800000005, 7.3464948 51.5241325, 7.346233700000001 51.5239704, 7.3458478000000005 51.5237325, 7.3448047 51.523198400000005, 7.3439912000000005 51.5235143, 7.343462000000001 51.5233089, 7.3433638000000006 51.523639900000006, 7.343333200000001 51.523728500000004, 7.343358200000001 51.5241114, 7.343308700000001 51.5242638, 7.342376300000001 51.523951800000006, 7.342235400000001 51.5238585, 7.3416066 51.523546, 7.3413675000000005 51.523392900000005, 7.3411935 51.523211100000005, 7.3406257 51.522343600000006, 7.3404568 51.522138500000004, 7.3402783000000005 51.5219923, 7.340175100000001 51.5219369, 7.339935100000001 51.521862600000006, 7.3400023 51.5217432, 7.339794700000001 51.5217047, 7.3390339 51.5215997, 7.3374991000000005 51.521350700000006, 7.3370082000000005 51.5212487, 7.3365852 51.5211077, 7.3359183 51.520833800000005, 7.335376500000001 51.5205708, 7.335117500000001 51.520498800000006, 7.334806500000001 51.520293900000006, 7.3347211 51.5202054, 7.334348500000001 51.520251900000005, 7.3337517000000005 51.5203038, 7.3332828 51.520735800000004, 7.332936800000001 51.520937700000005, 7.3325149000000005 51.521042800000004, 7.3322019 51.52106070000001, 7.331082100000001 51.5210768, 7.3309091 51.5210498, 7.3301243000000005 51.5207988, 7.327700600000001 51.5220186, 7.327372700000001 51.5221516, 7.3261259 51.522327600000004, 7.3248682 51.522558100000005, 7.324770000000001 51.5225756, 7.324463100000001 51.5235994, 7.323615200000001 51.524000400000006, 7.323232300000001 51.5236364, 7.3236302 51.523449500000005, 7.3224704 51.523193500000005, 7.321531500000001 51.5230005, 7.320951600000001 51.5228575, 7.3200267000000006 51.522585600000006, 7.3197368 51.522526600000006, 7.319533900000001 51.522988600000005, 7.3160943000000005 51.521888600000004, 7.3158833 51.522217600000005, 7.315731400000001 51.5225006, 7.315209500000001 51.52225060000001, 7.314656200000001 51.5220604, 7.314380600000001 51.522234600000004, 7.3142407 51.5223336, 7.3140381 51.522575200000006, 7.314316900000001 51.522742400000006, 7.314263700000001 51.522830600000006, 7.3141008 51.5229781, 7.314344800000001 51.523096800000005, 7.3144033 51.523131500000005, 7.3142471 51.5232709, 7.3142054000000005 51.52334320000001, 7.314036400000001 51.5235138, 7.3131208 51.5232905, 7.3131268 51.5237604, 7.313036800000001 51.5241094, 7.3129458000000005 51.5240833, 7.3129289 51.5241674, 7.3120839 51.523938400000006, 7.3112491 51.5237464, 7.3106742 51.5236455, 7.310596100000001 51.5240583, 7.3104591 51.5241291, 7.310446300000001 51.5241357, 7.3095213 51.525989200000005, 7.3089414 51.526382100000006, 7.3087974 51.526330200000004, 7.3085385 51.5264151, 7.3081085 51.526172200000005, 7.3059579 51.525725200000004, 7.3041581 51.5254363, 7.303199200000001 51.52760000000001)) +List(POLYGON ((7.303199200000001 51.52760000000001, 7.3021425 51.527350000000006, 7.3015676 51.5284799, 7.301100600000001 51.528401800000005, 7.3007016 51.5292657, 7.3004347 51.529211800000006, 7.2996778 51.530899600000005, 7.298596000000001 51.530590700000005, 7.2976691 51.53035070000001, 7.2971845 51.530174900000006, 7.2969477000000005 51.53056, 7.295702400000001 51.529961500000006, 7.295366100000001 51.53060060000001, 7.2950584 51.5309989, 7.294803900000001 51.531375100000005, 7.294683 51.531513200000006, 7.2945674 51.5316078, 7.294179400000001 51.532226900000005, 7.2941253 51.532415, 7.294036500000001 51.5329175, 7.2940012 51.533231, 7.293057200000001 51.534082600000005, 7.2935118 51.5344003, 7.294075200000001 51.534361100000005, 7.2941972 51.5344148, 7.294308900000001 51.5343808, 7.2943401 51.534393900000005, 7.2943503000000005 51.5344174, 7.294433100000001 51.534443200000005, 7.294533100000001 51.5345238, 7.294598700000001 51.5345299, 7.294734300000001 51.534586000000004, 7.2948183 51.5346514, 7.2949386 51.534694, 7.295003 51.5347516, 7.2950749 51.5347816, 7.2950946000000005 51.5348132, 7.2951318 51.534829200000004, 7.2954065 51.5350971, 7.295438300000001 51.5355013, 7.295435200000001 51.535924, 7.2953874 51.536095800000005, 7.2954277 51.536140800000005, 7.2954176 51.536178400000004, 7.295440200000001 51.5362316, 7.2954261 51.536312, 7.2955046 51.5365881, 7.295539400000001 51.5366228, 7.2955921 51.536729300000005, 7.2956026000000005 51.5367903, 7.2955695 51.536893500000005, 7.2955775 51.536981700000005, 7.295547300000001 51.5370384, 7.2955534 51.537099500000004, 7.2955917 51.5371552, 7.295670200000001 51.537219, 7.295699000000001 51.537341000000005, 7.295801900000001 51.5375163, 7.296015100000001 51.5377602, 7.2961283 51.5378741, 7.2961548 51.5379025, 7.2962807000000005 51.538065, 7.2963602000000005 51.5381732, 7.296478700000001 51.538393600000006, 7.296500000000001 51.538489600000005, 7.296244300000001 51.5390371, 7.2962533 51.5391878, 7.2962163 51.539281300000006, 7.2961232 51.5393558, 7.2960411 51.53943640000001, 7.2960224 51.539484200000004, 7.296021400000001 51.539609600000006, 7.2959794 51.5397228, 7.295931100000001 51.539954800000004, 7.2959811000000006 51.5399888, 7.296064400000001 51.540017500000005, 7.2960571000000005 51.5400932, 7.2961635000000005 51.5402142, 7.2959689 51.540434000000005, 7.2959689 51.540515400000004, 7.296212400000001 51.5405342, 7.296382500000001 51.5405838, 7.2964343000000005 51.5406373, 7.296431500000001 51.5406965, 7.2963804 51.5406939, 7.296234500000001 51.5407165, 7.2962499 51.5408588, 7.2962683 51.5409804, 7.296282400000001 51.54103550000001, 7.2964238 51.5411653, 7.2964812000000006 51.5412698, 7.2964364 51.5414043, 7.2963871000000005 51.5415344, 7.296395100000001 51.5416705, 7.2963991 51.5417071, 7.2963414 51.541762500000004, 7.2962793 51.5417837, 7.296183 51.541805800000006, 7.2961229 51.5418121, 7.2959231 51.5418132, 7.2956484 51.5418426, 7.2955385 51.54189160000001, 7.295409 51.5419671, 7.295323300000001 51.5420311, 7.295086700000001 51.5422261, 7.2950241 51.542317700000005, 7.2949660000000005 51.542425200000004, 7.2948306 51.5425113, 7.2947215000000005 51.5425441, 7.294531600000001 51.542535300000004, 7.294469 51.5426074, 7.2941054 51.542496400000005, 7.2940649 51.5425082, 7.293774900000001 51.5424358, 7.2937612000000005 51.542415500000004, 7.2937485 51.542396800000006, 7.293728400000001 51.5423674, 7.293483200000001 51.5422991, 7.293397000000001 51.54231720000001, 7.2932690000000004 51.542262900000004, 7.2929842 51.5422385, 7.2929282 51.5422766, 7.2928943 51.5422595, 7.292826600000001 51.542329200000005, 7.292505500000001 51.5424621, 7.2923926 51.5424943, 7.292217300000001 51.542524, 7.292229000000001 51.5425819, 7.292177700000001 51.542696600000006, 7.2922478 51.5427923, 7.2920578 51.5428183, 7.292096900000001 51.5429042, 7.292104 51.542987600000004, 7.2920598000000005 51.5430986, 7.292463400000001 51.54326450000001, 7.292844400000001 51.543475900000004, 7.292903300000001 51.5436623, 7.2928556 51.543813400000005, 7.292644200000001 51.543848100000005, 7.2925263000000005 51.543847500000005, 7.292430800000001 51.543989700000004, 7.292417500000001 51.5440953, 7.2923423000000005 51.544211600000004, 7.29232 51.5443171, 7.292288500000001 51.544333200000004, 7.292293600000001 51.5444745, 7.291788500000001 51.5443471, 7.290940900000001 51.5441171, 7.290658400000001 51.5447026, 7.2905965 51.5448943, 7.290468400000001 51.5453959, 7.2903602 51.545672200000006, 7.2907503 51.54576470000001, 7.2907254 51.5459024, 7.288451500000001 51.5454986, 7.288368200000001 51.5454853, 7.2884672 51.5457036, 7.2884871 51.5458537, 7.2879705 51.545785900000006, 7.2862821 51.5455131, 7.2861574000000005 51.5454802, 7.2856997 51.54570270000001, 7.285523400000001 51.5457936, 7.2854136 51.545833300000005, 7.2854087000000005 51.54681050000001, 7.2853782 51.5473146, 7.2853751 51.5473944, 7.2853631000000005 51.547394000000004, 7.2854543000000005 51.5478065, 7.2854733000000005 51.5479083, 7.285487600000001 51.5479659, 7.2855106 51.5480692, 7.2855549 51.548266600000005, 7.2855619 51.5482986, 7.285577600000001 51.5483733, 7.2856363 51.5486361, 7.285678300000001 51.5488128, 7.285726100000001 51.549027800000005, 7.285872800000001 51.549452900000006, 7.2858248 51.5495845, 7.285823300000001 51.5495887, 7.285589600000001 51.5501347, 7.2854273 51.5505137, 7.285192400000001 51.5510559, 7.285180100000001 51.5510834, 7.2849804 51.5515564, 7.284883300000001 51.55178110000001, 7.2848307000000005 51.552185800000004, 7.284779100000001 51.552547000000004, 7.284750600000001 51.552820700000005, 7.284709800000001 51.5532173, 7.284705400000001 51.55325190000001, 7.2832409 51.5529718, 7.2831577 51.5531427, 7.2831345 51.5532436, 7.282932300000001 51.554135900000006, 7.2826259 51.555442000000006, 7.282556100000001 51.5557388, 7.2825454 51.555948300000004, 7.2825363 51.5559877, 7.2820692000000005 51.555972700000005, 7.282011700000001 51.5559689, 7.281856 51.555934300000004, 7.2794398000000005 51.5557807, 7.279192800000001 51.5558707, 7.2786849 51.555789700000005, 7.2771276 51.55571380000001, 7.2767762000000005 51.555696700000006, 7.275414400000001 51.555601700000004, 7.2738987 51.5555357, 7.2738411 51.5564717, 7.2737474 51.5564632, 7.273714600000001 51.5565756, 7.2736536 51.556622100000006, 7.2735801 51.556660900000004, 7.2735003 51.55668300000001, 7.273359900000001 51.556702300000005, 7.273238900000001 51.556704100000005, 7.273004200000001 51.5567427, 7.272896500000001 51.556769700000004, 7.272754600000001 51.556878100000006, 7.2726161000000005 51.5569822, 7.272012 51.557286500000004, 7.2715339000000005 51.557601500000004, 7.271240100000001 51.557747500000005, 7.272119900000001 51.55842740000001, 7.2727298000000005 51.559167300000006, 7.272321900000001 51.559564300000005, 7.2720659 51.559884200000006, 7.2719139 51.559983200000005, 7.271746 51.559966200000005, 7.2716519 51.5597883, 7.271431000000001 51.559525300000004, 7.270367200000001 51.5595403, 7.2693013 51.5596412, 7.2692573000000005 51.5597463, 7.2692373 51.559980200000005, 7.268258500000001 51.559994200000006, 7.2671067 51.559977200000006, 7.266710700000001 51.559943200000006, 7.266454800000001 51.5598972, 7.266427800000001 51.5599263, 7.266258700000001 51.559955200000005, 7.2661088000000005 51.5600712, 7.2659618 51.5602232, 7.265914800000001 51.560337200000006, 7.2654809 51.5608421, 7.265059000000001 51.561268000000005, 7.263668200000001 51.560338200000004, 7.2627873 51.5601822, 7.2627813 51.5602892, 7.2629828000000005 51.560989400000004, 7.2630721000000005 51.561299700000006, 7.2634872 51.562741900000006, 7.263611200000001 51.562758900000006, 7.264083100000001 51.563107900000006, 7.2641681 51.563140800000006, 7.264259 51.563164900000004, 7.2643551 51.5631749, 7.2649249000000005 51.5638507, 7.264927900000001 51.5640907, 7.264830000000001 51.5643717, 7.264862900000001 51.5645437, 7.264729000000001 51.564857700000005, 7.264592 51.565385600000006, 7.2646120000000005 51.5654376, 7.2647509 51.5654156, 7.264883 51.565596600000006, 7.2650440000000005 51.5657335, 7.2649669 51.5658686, 7.264956000000001 51.5659446, 7.265028900000001 51.5660225, 7.264996 51.5660705, 7.2651379 51.5662035, 7.265218000000001 51.5663155, 7.2655118000000005 51.5664195, 7.2661518 51.566617400000005, 7.2647092 51.5680805, 7.2642401 51.568555200000006, 7.2541821 51.564795100000005, 7.253919300000001 51.5650685, 7.249662900000001 51.5647856, 7.249535600000001 51.565396400000004, 7.2495146 51.565508200000004, 7.249509700000001 51.565529000000005, 7.2495004000000005 51.565574500000004, 7.249542000000001 51.565600800000006, 7.2496673000000005 51.565825800000006, 7.2496784000000005 51.5658454, 7.249702600000001 51.5658904, 7.249685100000001 51.565879200000005, 7.2495859000000005 51.565903500000005, 7.2495219 51.5659148, 7.249285700000001 51.5659585, 7.249229400000001 51.5659676, 7.2486987 51.5660637, 7.2485492 51.566090800000005, 7.2485318 51.566093800000004, 7.248469300000001 51.566104700000004, 7.248225400000001 51.566149100000004, 7.2480956 51.567018000000004, 7.247972000000001 51.567804900000006, 7.2476992000000005 51.5696249, 7.247187 51.569244600000005, 7.2460165000000005 51.5695105, 7.2455992 51.5696043, 7.2453859000000005 51.5695908, 7.2453650000000005 51.5696376, 7.2452182 51.5699612, 7.2449788 51.5704876, 7.2430795 51.5698682, 7.243138500000001 51.5700731, 7.243115 51.5702506, 7.2431314 51.570842000000006, 7.2427868 51.570963000000006, 7.2429353 51.571104600000005, 7.243093000000001 51.571440300000006, 7.2424932 51.5717456, 7.243266200000001 51.5721179, 7.243247500000001 51.5721475, 7.243124600000001 51.572354100000005, 7.2430262 51.5727702, 7.243094200000001 51.572771700000004, 7.2431945 51.572819, 7.2426520000000005 51.573345200000006, 7.2430493 51.5734396, 7.2432762 51.5735157, 7.2440771 51.5737886, 7.2457498000000005 51.5744266, 7.246878700000001 51.574852500000006, 7.2473102 51.575027500000004, 7.2480625000000005 51.5752534, 7.2488374 51.5754704, 7.2493023 51.5755854, 7.250072200000001 51.5757714, 7.250950700000001 51.576063500000004, 7.2512451 51.576177300000005, 7.251604700000001 51.576402900000005, 7.2520037 51.576646200000006, 7.2522241 51.5768555, 7.2524087 51.577040600000004, 7.252584700000001 51.5771931, 7.2527727 51.5774315, 7.252934300000001 51.5776775, 7.253286800000001 51.578236100000005, 7.2533104 51.5782754, 7.253736600000001 51.578981000000006, 7.254316500000001 51.579937900000004, 7.2545055000000005 51.580215900000006, 7.2546897 51.5805408, 7.254855200000001 51.580812400000006, 7.2551911 51.5812577, 7.2554014 51.5814826, 7.2555034 51.5815715, 7.2556877 51.581721400000006, 7.2558658000000005 51.5818523, 7.2560574 51.5819794, 7.256405300000001 51.582173700000006, 7.2566921 51.582314700000005, 7.257000100000001 51.5824366, 7.2572600000000005 51.582527400000004, 7.2575780000000005 51.582620600000006, 7.257915000000001 51.5827055, 7.258201000000001 51.582767600000004, 7.258675800000001 51.5828386, 7.2590968 51.5828776, 7.2593132 51.58288640000001, 7.2594637 51.5828925, 7.2598567 51.5828816, 7.2601997 51.582859600000006, 7.2606666 51.58281100000001, 7.2611315 51.582724600000006, 7.261603600000001 51.5826148, 7.2617384000000005 51.58256960000001, 7.262097300000001 51.5824586, 7.262447300000001 51.582330600000006, 7.262815300000001 51.5821837, 7.263117200000001 51.582055600000004, 7.2634292 51.5819386, 7.2637311 51.581816700000005, 7.263958100000001 51.581748700000006, 7.2641951 51.581686700000006, 7.264489 51.581624700000006, 7.264818000000001 51.581577200000005, 7.2650418000000005 51.581555900000005, 7.2654408 51.581537000000004, 7.265833400000001 51.5815422, 7.2661287 51.5815537, 7.266473700000001 51.581602700000005, 7.2668476 51.581670800000005, 7.2671692000000006 51.5817598, 7.2675543000000005 51.5818826, 7.270659 51.5828246, 7.272896500000001 51.58350110000001, 7.2742649 51.58391820000001, 7.2755912 51.5843192, 7.277205 51.5847983, 7.2779742 51.5850376, 7.2787069 51.5852644, 7.282514300000001 51.5863992, 7.2831011000000005 51.5865772, 7.2835831 51.5867452, 7.283883 51.5868662, 7.284124 51.586977100000006, 7.284434900000001 51.58714620000001, 7.2848328 51.587385100000006, 7.285153800000001 51.587619000000004, 7.2854188 51.5878541, 7.286409600000001 51.5888189, 7.2873415 51.589705800000004, 7.2879494000000005 51.590270800000006, 7.2883703 51.5906467, 7.288575300000001 51.5907987, 7.288867300000001 51.590973700000006, 7.289157200000001 51.591131700000005, 7.289390200000001 51.5912597, 7.2896111 51.5913576, 7.2899491 51.5914936, 7.290365 51.591635600000004, 7.290713 51.5917746, 7.290946900000001 51.591905600000004, 7.291226900000001 51.592053500000006, 7.2915479 51.592270500000005, 7.2917328 51.592399500000006, 7.2918858 51.5925206, 7.2920758 51.592692500000005, 7.292320800000001 51.592939400000006, 7.292891600000001 51.5935344, 7.293373600000001 51.5940163, 7.2937665 51.594416300000006, 7.2939625 51.5946043, 7.294138500000001 51.5947393, 7.294342400000001 51.5948622, 7.2945554 51.594954300000005, 7.294738400000001 51.595024300000006, 7.2948814 51.5950622, 7.295242300000001 51.595125200000005, 7.295548200000001 51.595150200000006, 7.2958762 51.5951462, 7.2962112 51.595114200000005, 7.2962721 51.5952392, 7.295872200000001 51.5952792, 7.2955852000000005 51.5952762, 7.295346200000001 51.595255200000004, 7.2952902 51.595291200000005, 7.2948043 51.5953202, 7.2946933000000005 51.595744200000006, 7.2945193 51.596349100000005, 7.2950853 51.596601, 7.2944883 51.597639900000004, 7.2935495 51.597403, 7.293311600000001 51.5978999, 7.2932695 51.598756800000004, 7.2930006 51.599377700000005, 7.292885600000001 51.599355800000005, 7.292445600000001 51.599020700000004, 7.2923118 51.59898080000001, 7.2921557 51.5988818, 7.291998700000001 51.5987468, 7.291742800000001 51.5988088, 7.2914269 51.600120600000004, 7.2913478000000005 51.600296900000004, 7.2912879 51.6007906, 7.2912619 51.6009016, 7.2911938 51.6009736, 7.2910399 51.6009455, 7.290916 51.6009405, 7.290477 51.6009576, 7.2893901 51.601034500000004, 7.2900261 51.6018904, 7.289212200000001 51.6021664, 7.288673200000001 51.602350400000006, 7.288646300000001 51.602398300000004, 7.288353300000001 51.6025093, 7.288174400000001 51.602576400000004, 7.288081300000001 51.6026663, 7.285148800000001 51.6023184, 7.285114800000001 51.603115300000006, 7.284855800000001 51.6030942, 7.2848288000000005 51.6031363, 7.2849218 51.603403300000004, 7.2849928 51.6035502, 7.2850828000000005 51.60368020000001, 7.2852608000000005 51.6039042, 7.2854288 51.6040812, 7.2854777 51.6041462, 7.285375800000001 51.6042542, 7.285274800000001 51.6043802, 7.2851837 51.6045652, 7.2851397 51.604685100000005, 7.2850478 51.6047991, 7.2849918 51.604865100000005, 7.2849468 51.60493700000001, 7.284975800000001 51.60496010000001, 7.2847029 51.6050941, 7.284579900000001 51.6051311, 7.284474800000001 51.6051561, 7.2843368 51.605181, 7.2839 51.605239000000005, 7.2833661 51.605293100000004, 7.282662200000001 51.605360000000005, 7.281661300000001 51.605454, 7.2801235 51.605608000000004, 7.2800666000000005 51.60562, 7.2800625000000005 51.605793000000006, 7.279998600000001 51.605895000000004, 7.2799816 51.60598400000001, 7.2799465 51.6060789, 7.2799376 51.606109000000004, 7.2800706 51.606084, 7.280070500000001 51.6064409, 7.2801166 51.6067199, 7.2801485 51.6068379, 7.280240500000001 51.6070398, 7.280625400000001 51.607831700000006, 7.280433400000001 51.607786700000005, 7.280515500000001 51.6079937, 7.280809400000001 51.60859670000001, 7.280900300000001 51.6087567, 7.2813923 51.6089356, 7.282300200000001 51.6093065, 7.28354 51.609916500000004, 7.284822800000001 51.610372500000004, 7.2854307 51.6105804, 7.2873764 51.6111834, 7.288851200000001 51.611648300000006, 7.2890052 51.6117003, 7.2898221 51.6120363, 7.291685800000001 51.612610200000006, 7.2922647000000005 51.612777200000004, 7.2924857 51.61286320000001, 7.2929256 51.6130311, 7.2931755 51.61309910000001, 7.293840400000001 51.613300200000005, 7.293572500000001 51.6136241, 7.2921756 51.6132051, 7.2921567000000005 51.613556100000004, 7.292228700000001 51.613722100000004, 7.2923317 51.613989100000005, 7.2923936000000005 51.614166000000004, 7.2923976 51.614279, 7.2923556000000005 51.614506000000006, 7.2922697 51.614834, 7.2921987 51.615031, 7.2920517 51.615234900000004, 7.2917788 51.6154774, 7.2913988000000005 51.6167408, 7.2912578 51.6178716, 7.2908018000000006 51.620665200000005, 7.290438900000001 51.620663300000004, 7.285309700000001 51.620677300000004, 7.2853167 51.6212602, 7.2853006 51.6213732, 7.2856866 51.6214942, 7.285946600000001 51.621580200000004, 7.2863816 51.621754100000004, 7.287106400000001 51.622043100000006, 7.288672200000001 51.6226921, 7.290103 51.623277, 7.2903929000000005 51.623399000000006, 7.2912138 51.6237349, 7.292528600000001 51.6242729, 7.2928765 51.624411900000005, 7.294316200000001 51.625002800000004, 7.295312200000001 51.625395700000006, 7.2955208 51.6254817, 7.2964910000000005 51.6258707, 7.2975148 51.6262817, 7.2977847 51.626034700000005, 7.2985946 51.6252768, 7.2988556 51.6250538, 7.2989816 51.6250938, 7.2998615000000004 51.625488700000005, 7.300578300000001 51.6258257, 7.300908300000001 51.6259877, 7.301033200000001 51.6260167, 7.301157300000001 51.626014700000006, 7.3013092 51.625995700000004, 7.3014602 51.6259347, 7.301778100000001 51.6256867, 7.3016661 51.625598700000005, 7.3015942 51.6254398, 7.301623200000001 51.6251298, 7.3016782000000005 51.6246838, 7.301762200000001 51.624622800000004, 7.3021691 51.6244999, 7.3031630000000005 51.6241909, 7.3041578000000005 51.623876900000006, 7.3042328 51.623846, 7.3043168000000005 51.623780000000004, 7.3043917 51.6237019, 7.3046028000000005 51.623414000000004, 7.304668700000001 51.62339600000001, 7.3053337 51.623251, 7.3058975 51.623245100000005, 7.306810400000001 51.623128, 7.3072964 51.6230811, 7.307294400000001 51.622992, 7.307193300000001 51.6224931, 7.3069994000000005 51.6213952, 7.3068514 51.6208973, 7.307040400000001 51.6208183, 7.3067565000000005 51.620226300000006, 7.3062705 51.620285300000006, 7.306218500000001 51.620119300000006, 7.306305500000001 51.6195004, 7.3062335 51.618995500000004, 7.3061746 51.6189545, 7.305830500000001 51.6189235, 7.306032500000001 51.618665500000006, 7.305708600000001 51.618359600000005, 7.305254700000001 51.618519500000005, 7.304954700000001 51.6180346, 7.304943700000001 51.617987600000006, 7.3049457 51.6170417, 7.304924700000001 51.617006700000005, 7.305082700000001 51.6168558, 7.3049678 51.616809700000005, 7.3047598 51.6167287, 7.304431800000001 51.616607800000004, 7.304209800000001 51.6165267, 7.304245900000001 51.616466700000004, 7.304234900000001 51.6164318, 7.3049417000000005 51.6160968, 7.3049708 51.6161139, 7.3059117 51.6156791, 7.306394500000001 51.6154559, 7.307356400000001 51.6150169, 7.307799200000001 51.61480400000001, 7.3080243000000005 51.61468300000001, 7.308749100000001 51.6143001, 7.308837100000001 51.614254100000004, 7.309328900000001 51.613996900000004, 7.3100380000000005 51.613626200000006, 7.310067 51.61363720000001, 7.3100779000000005 51.613691200000005, 7.3101780000000005 51.6138321, 7.310200900000001 51.61396310000001, 7.310244900000001 51.61417, 7.3101529 51.614284100000006, 7.311175800000001 51.614992900000004, 7.312769500000001 51.615265900000004, 7.3126246 51.615659900000004, 7.314991200000001 51.6159729, 7.3151032 51.616547800000006, 7.316668900000001 51.6165188, 7.3174649 51.6163078, 7.317750800000001 51.6162749, 7.3197035 51.6160799, 7.3202834 51.61600790000001, 7.3208643 51.6159479, 7.3209403 51.6159419, 7.3208503 51.614795, 7.320765300000001 51.6138501, 7.3208193 51.6137492, 7.3195097 51.613372500000004, 7.3190736 51.6132221, 7.3192960000000005 51.61288690000001, 7.3196995000000005 51.61234030000001, 7.3207164 51.610836400000004, 7.3223361 51.6084277, 7.3239038 51.6088207, 7.3259436 51.6093387, 7.32908 51.61013560000001, 7.3292291 51.6101636, 7.329343000000001 51.610132500000006, 7.3293610000000005 51.610138500000005, 7.3294401 51.6101906, 7.329595 51.610248500000004, 7.3303139 51.6106865, 7.3308778000000006 51.6110124, 7.3310817 51.6111294, 7.3323486 51.610704500000004, 7.3322446 51.610408500000005, 7.3327165 51.610195600000004, 7.3322196 51.6095346, 7.3327295 51.6090297, 7.3339623000000005 51.6090627, 7.334519200000001 51.6110965, 7.3349612 51.6111924, 7.335974 51.6115434, 7.336139 51.6113215, 7.3362049 51.610940500000005, 7.336810900000001 51.6107725, 7.3364279 51.610408500000005, 7.336270000000001 51.6102325, 7.3361301 51.610037500000004, 7.335855100000001 51.6095978, 7.3354397 51.608933400000005, 7.3353992 51.6088687, 7.3373933000000005 51.6086892, 7.3379151 51.6086383, 7.3390062 51.6088011, 7.3404984 51.60906670000001, 7.3407903 51.609871600000005, 7.342253100000001 51.609598600000005, 7.3423381 51.6082538, 7.344867700000001 51.608242800000006, 7.344048900000001 51.6066889, 7.3439639 51.606077000000006, 7.3439528 51.606024000000005, 7.3437139 51.60571100000001, 7.343643900000001 51.605611100000004, 7.3435639 51.6054631, 7.343540900000001 51.6053501, 7.343574800000001 51.6052131, 7.3436209 51.605124100000005, 7.343656800000001 51.605070100000006, 7.343178900000001 51.605051100000004, 7.342910900000001 51.605031100000005, 7.342471000000001 51.605000200000006, 7.342098200000001 51.6049802, 7.341763200000001 51.604949100000006, 7.3409982000000005 51.604922200000004, 7.340118400000001 51.6048722, 7.339323500000001 51.6048041, 7.338977600000001 51.6047372, 7.3388716 51.604708200000005, 7.3387646 51.604638200000004, 7.3388236000000004 51.604536200000005, 7.3388593 51.6045086, 7.3392065 51.60424020000001, 7.3393835 51.6040963, 7.3394205 51.6040603, 7.339474600000001 51.603934200000005, 7.3394985 51.603791300000005, 7.3395206 51.6035593, 7.3399004 51.6034773, 7.3404584 51.603310400000005, 7.3406884 51.6033084, 7.3408943 51.603192400000005, 7.340234400000001 51.6025044, 7.339608500000001 51.602333400000006, 7.3394826 51.602269500000006, 7.3392436000000005 51.6022605, 7.3391396 51.6022734, 7.339053600000001 51.6022685, 7.338774600000001 51.6022295, 7.338435700000001 51.602370400000005, 7.3382367 51.6024144, 7.3379877 51.6024235, 7.336944900000001 51.6026614, 7.3368989000000004 51.602382500000004, 7.3368919 51.6021505, 7.3368989000000004 51.6020605, 7.3369549 51.601985500000005, 7.3370759 51.6018715, 7.3372928 51.601791500000004, 7.337405800000001 51.6017306, 7.338023700000001 51.601622600000006, 7.3387716 51.6013935, 7.3399514 51.6009407, 7.3403304 51.6008347, 7.3408853 51.6005727, 7.3417582 51.6001617, 7.341826200000001 51.6001227, 7.3418532 51.5994898, 7.343109 51.5998468, 7.3440088 51.600083700000006, 7.344134800000001 51.6001088, 7.3443969000000004 51.600116500000006, 7.344707700000001 51.60012570000001, 7.3448238 51.6000406, 7.3454236 51.5997787, 7.3458266000000005 51.5999877, 7.3461284000000004 51.600264700000004, 7.346557600000001 51.600346800000004, 7.347225300000001 51.6003167, 7.3477293 51.6005966, 7.348071200000001 51.6005267, 7.348270200000001 51.6004656, 7.3485541 51.600396700000005, 7.3487811 51.600328700000006, 7.3488281 51.6002987, 7.349135 51.5999977, 7.349217100000001 51.5998898, 7.349351 51.5998937, 7.349914900000001 51.5999167, 7.3507398 51.6000327, 7.3513527000000005 51.600084700000004, 7.351563700000001 51.600129700000004, 7.351659700000001 51.600134800000006, 7.3517356000000005 51.600145700000006, 7.3520136 51.599524800000005, 7.353508400000001 51.599048800000006, 7.353260400000001 51.5987609, 7.3532945000000005 51.598593900000004, 7.3536374 51.5985719, 7.353902400000001 51.598503900000004, 7.3545312 51.598460900000006, 7.354833200000001 51.598658900000004, 7.3551092 51.5989659, 7.355190200000001 51.5991068, 7.355233200000001 51.5992669, 7.355227200000001 51.5993738, 7.3551541 51.5995118, 7.3550811000000005 51.5995988, 7.355087200000001 51.599661700000006, 7.355118200000001 51.59972380000001, 7.355191100000001 51.5997788, 7.3553161000000005 51.5997988, 7.356067100000001 51.599521800000005, 7.356097500000001 51.599507100000004, 7.356142 51.599482800000004, 7.3566529 51.598691900000006, 7.356809900000001 51.598511900000005, 7.3571574 51.5983164, 7.357050900000001 51.598253, 7.3576718 51.597972000000006, 7.3577658 51.597924000000006, 7.3580367 51.597596100000004, 7.3583686 51.59732210000001, 7.3586106000000004 51.5970931, 7.359063600000001 51.59692810000001, 7.359763500000001 51.5963781, 7.360740300000001 51.595683300000005, 7.360938300000001 51.595294300000006, 7.3614663 51.5947533, 7.361599200000001 51.5947283, 7.3616482 51.594751300000006, 7.3618551000000005 51.5946414, 7.3618421000000005 51.594552400000005, 7.3622000000000005 51.5943934, 7.3624941 51.5943314, 7.362818900000001 51.594327400000005, 7.3631539 51.594204500000004, 7.363670900000001 51.59412450000001, 7.363804900000001 51.594107400000006, 7.363920800000001 51.594124400000005, 7.3643498 51.593952400000006, 7.365742600000001 51.5932825, 7.3667964 51.59278260000001, 7.367822200000001 51.5923006, 7.3687931 51.5918677, 7.369478000000001 51.591621700000005, 7.369668900000001 51.591624800000005, 7.370108900000001 51.59149480000001, 7.3702899 51.5913448, 7.3712067 51.5910188, 7.371707600000001 51.5908518, 7.3717623 51.5907192, 7.371879600000001 51.589871900000006, 7.370500900000001 51.587195300000005, 7.369663 51.585527500000005, 7.369381000000001 51.584843500000005, 7.368278200000001 51.5825108, 7.3653097 51.5832507, 7.364076900000001 51.583504700000006, 7.364033900000001 51.583431600000004, 7.363487900000001 51.583630600000006, 7.363171 51.5836447, 7.362957000000001 51.5835816, 7.3628321 51.5835676, 7.362230200000001 51.5834496, 7.361926100000001 51.583338600000005, 7.361442200000001 51.5831826, 7.3607604 51.5830087, 7.3608894000000005 51.5826098, 7.3608244 51.5822518, 7.3607344 51.582174800000004, 7.3600925 51.5822337, 7.360057500000001 51.5821588, 7.359932400000001 51.5821308, 7.3597995 51.5820238, 7.359599500000001 51.5818768, 7.359297700000001 51.5817994, 7.3592468 51.581797200000004, 7.3589881 51.5817853, 7.358693400000001 51.581748000000005, 7.3585691 51.5817501, 7.358224000000001 51.581806, 7.3580079000000005 51.581850900000006, 7.357628500000001 51.581957, 7.357464500000001 51.5820257, 7.3571502 51.5821878, 7.3571420000000005 51.582301400000006, 7.3570546000000006 51.582479400000004, 7.3570406 51.582592700000006, 7.357004300000001 51.582722000000004, 7.3569803 51.582855, 7.3569864 51.5830513, 7.3569291 51.583387200000004, 7.356862100000001 51.583539300000005, 7.3567730000000005 51.583609700000004, 7.356561200000001 51.5836466, 7.3561415000000006 51.583631200000006, 7.3559818 51.5836509, 7.355914100000001 51.5836934, 7.355682900000001 51.5839203, 7.355472700000001 51.5842572, 7.3554066 51.584340600000004, 7.3552881 51.5844675, 7.3551294 51.5846287, 7.3550249 51.584755400000006, 7.3549113 51.584886000000004, 7.3547948000000005 51.5850449, 7.354696100000001 51.585316000000006, 7.354663700000001 51.585338400000005, 7.3544694 51.5854292, 7.3543098 51.5855369, 7.3542258 51.5855352, 7.3540001 51.585500800000005, 7.3538353 51.585477700000006, 7.3535703 51.585279, 7.3535459 51.585207200000006, 7.353652800000001 51.5850024, 7.353590700000001 51.58495550000001, 7.3535678 51.584851400000005, 7.3534841 51.584701100000004, 7.3534296 51.584556000000006, 7.353465900000001 51.5844272, 7.353415900000001 51.584285400000006, 7.353427900000001 51.5836649, 7.3534397 51.5835991, 7.3534347 51.58353760000001, 7.3533872 51.5834993, 7.353288200000001 51.583451000000004, 7.3531427 51.583360500000005, 7.3530356 51.5833098, 7.352902500000001 51.583258900000004, 7.3528209 51.583193900000005, 7.3527123 51.5831214, 7.3526033 51.583066, 7.3524108 51.582957900000004, 7.3522894 51.582862000000006, 7.3521841000000006 51.5828323, 7.352106600000001 51.58282680000001, 7.3518327 51.5828287, 7.351509 51.5828367, 7.3512911 51.582792700000006, 7.350882100000001 51.582472700000004, 7.3506831 51.582343800000004, 7.3506241 51.5822847, 7.3503663 51.5821248, 7.350218300000001 51.581980800000004, 7.349701400000001 51.58191780000001, 7.3496233 51.581858800000006, 7.3488652000000005 51.581927900000004, 7.348792100000001 51.5819199, 7.348671700000001 51.581908600000006, 7.349738400000001 51.5811149, 7.345400000000001 51.5795211, 7.342875 51.5789825, 7.342587600000001 51.578357800000006, 7.340493800000001 51.577402500000005, 7.339793200000001 51.5771748, 7.3398316 51.5771676, 7.3397167 51.577141000000005, 7.3390722 51.5771207, 7.3390371000000005 51.5770592, 7.3385218000000005 51.576774400000005, 7.3399536 51.575784500000005, 7.3419099 51.5737108, 7.3425731 51.573007800000006, 7.343699000000001 51.571814, 7.3445168 51.571213, 7.344667800000001 51.571334, 7.3450737 51.571598900000005, 7.345227800000001 51.571647000000006, 7.345304700000001 51.57164100000001, 7.3456657000000005 51.5717319, 7.3457166 51.571707, 7.3464366000000005 51.5719329, 7.346593500000001 51.571733, 7.3467295 51.5717489, 7.3471074000000005 51.571324000000004, 7.3472504 51.571223, 7.347388400000001 51.571141100000006, 7.347495400000001 51.571187, 7.3477484 51.5710361, 7.347838 51.57086210000001, 7.348065600000001 51.5704587, 7.3481278 51.5703369, 7.348581 51.569694000000005, 7.3492319 51.568808600000004, 7.3502532 51.567386500000005, 7.3492454 51.5669704, 7.3538373 51.565185500000005, 7.351377500000001 51.5632333, 7.351469900000001 51.56317000000001, 7.3512938000000005 51.5620586, 7.351247300000001 51.5615467, 7.3511889 51.5611212, 7.3510089 51.5596643, 7.3517619000000005 51.559716300000005, 7.3512969 51.5602493, 7.3513869000000005 51.560439300000006, 7.3516798 51.5605842, 7.351917800000001 51.560762200000006, 7.3520807 51.5605862, 7.3520558000000005 51.560563200000004, 7.3526597 51.5599294, 7.353217600000001 51.559348400000005, 7.3533099 51.559217800000006, 7.3539494 51.5586755, 7.3547324000000005 51.5581825, 7.3545274 51.5581365, 7.354672300000001 51.5580585, 7.354650400000001 51.557975600000006, 7.3548014 51.5577546, 7.3548033 51.5576706, 7.3549433 51.557404600000005, 7.355054300000001 51.5573126, 7.3550053 51.5572716, 7.3552653 51.55702470000001, 7.3552803 51.5568937, 7.3563811 51.5562327, 7.3564841 51.555984800000004, 7.3553322 51.5554598, 7.355327300000001 51.5554088, 7.3551393 51.555247800000004, 7.3550154 51.554870900000004, 7.3549094 51.5547539, 7.354849300000001 51.5546379, 7.3545264 51.554704900000004, 7.3544444 51.554614900000004, 7.3543884 51.554670900000005, 7.3540125000000005 51.554527900000004, 7.3536095 51.55431900000001, 7.3532656 51.554285, 7.3529327 51.554202000000004, 7.3528387 51.554114000000006, 7.353176700000001 51.55388000000001, 7.3510827 51.552624800000004, 7.351337900000001 51.552297900000006, 7.3514989 51.552322200000006, 7.3516968 51.5521273, 7.351854800000001 51.5521413, 7.3519478000000005 51.5518573, 7.3526277 51.5519693, 7.3527187000000005 51.551836300000005, 7.352580700000001 51.55180420000001, 7.3533447 51.5508783, 7.3535826 51.5505524, 7.351082000000001 51.549735500000004, 7.351369900000001 51.5493685, 7.352260800000001 51.548978600000005, 7.3516618000000005 51.548612600000006, 7.3514359 51.5484177, 7.350854000000001 51.5480347, 7.3498292 51.5474788, 7.3497672000000005 51.5473398, 7.3489203000000005 51.54728780000001, 7.348355400000001 51.5465329, 7.3496502 51.546815800000005, 7.3498182000000005 51.5466769, 7.349833200000001 51.5464819, 7.349902200000001 51.546348900000005, 7.349965200000001 51.546311900000006, 7.3501161 51.5462829, 7.350460000000001 51.546298900000004, 7.3501061000000005 51.5460969, 7.3498552 51.546010900000006, 7.3493412000000005 51.545856, 7.3487713 51.54569600000001, 7.3480354000000005 51.54552090000001, 7.347896 51.5454968, 7.347386500000001 51.54540900000001, 7.348341400000001 51.5443001, 7.3484591 51.544235300000004, 7.3484883000000005 51.5442091, 7.349412200000001 51.5431022, 7.348692300000001 51.54282430000001, 7.3491553000000005 51.5421904, 7.3498562000000005 51.540892500000005, 7.3500152000000005 51.540496600000004, 7.349693200000001 51.540507600000005, 7.349799600000001 51.539315800000004, 7.349801200000001 51.539297700000006, 7.3499672 51.539269700000006, 7.350068200000001 51.539230700000005, 7.3501731 51.5392797, 7.350419100000001 51.5392677, 7.35066 51.5390827, 7.350946 51.538834800000004, 7.351356000000001 51.53865570000001, 7.351388 51.5385768, 7.3514929 51.5385318, 7.3515889 51.538532800000006, 7.351755900000001 51.5385768, 7.3519819 51.538549800000006, 7.3522448 51.5384638, 7.3528967000000005 51.5379039, 7.3531667 51.538048800000006, 7.353338600000001 51.5382058, 7.3533907 51.538192900000006, 7.3534866 51.538192800000004, 7.3535136 51.538332800000006, 7.353625600000001 51.538462800000005, 7.353513700000001 51.538667800000006, 7.353507700000001 51.538918800000005, 7.354593500000001 51.538777800000005, 7.3545644 51.538549800000006, 7.354728400000001 51.53827080000001, 7.355006400000001 51.537995900000006, 7.3550804 51.5374999, 7.355320300000001 51.537046000000004, 7.3554693 51.536837000000006, 7.3556653 51.536681, 7.356018300000001 51.53627710000001, 7.3562643 51.5361021, 7.3564562 51.536036, 7.3571631 51.5356851, 7.357083 51.535476100000004, 7.356969100000001 51.5353372, 7.357105000000001 51.5349732, 7.357315000000001 51.534714300000005, 7.357481000000001 51.534615300000006, 7.357209 51.5344892, 7.357503 51.533833300000005, 7.357775 51.533684300000004, 7.357937000000001 51.5336763, 7.3598134 51.5339382, 7.359942200000001 51.5338196, 7.361398500000001 51.5340824, 7.361856 51.533201600000005, 7.3607658 51.5330017, 7.3606201 51.532971200000006, 7.361421600000001 51.5312265, 7.3618228000000006 51.531305800000005, 7.3620483000000005 51.5308167, 7.3624131 51.530607200000006, 7.3634582 51.5300068, 7.3638878000000005 51.5297679, 7.3633291000000005 51.5295758, 7.362762300000001 51.529439800000006, 7.363962000000001 51.528051000000005, 7.362584300000001 51.527134100000005, 7.362069300000001 51.527591, 7.361446900000001 51.5283354, 7.361005100000001 51.528231600000005, 7.360258000000001 51.527990900000006, 7.3600086000000005 51.5278824, 7.359852300000001 51.527794500000006, 7.3593609 51.52739630000001, 7.3590127 51.527171300000006, 7.3589191000000005 51.5271837, 7.358620200000001 51.5272312, 7.358368700000001 51.527258800000006, 7.357456000000001 51.5268579, 7.3575851000000005 51.52663020000001, 7.3568591 51.5262752, 7.3567692000000005 51.526285200000004, 7.356401300000001 51.5262022, 7.3562213000000005 51.5260812, 7.356019300000001 51.5259043, 7.3558893 51.52571330000001, 7.3557823 51.525432300000006, 7.3557706000000005 51.5253676, 7.355686 51.5249013, 7.3553154 51.5249375, 7.354281 51.524982300000005, 7.353975500000001 51.5249685, 7.354173500000001 51.5237982, 7.3536809000000005 51.523737100000005, 7.351862400000001 51.5235099, 7.3509970000000004 51.5234679, 7.349891 51.5232285, 7.349844600000001 51.5233168, 7.3476454 51.522669900000004, 7.3463229000000005 51.5222872, 7.3460669 51.522607, 7.3467301 51.523394800000005, 7.3464948 51.5241325, 7.346233700000001 51.5239704, 7.3458478000000005 51.5237325, 7.3448047 51.523198400000005, 7.3439912000000005 51.5235143, 7.343462000000001 51.5233089, 7.3433638000000006 51.523639900000006, 7.343333200000001 51.523728500000004, 7.343358200000001 51.5241114, 7.343308700000001 51.5242638, 7.342376300000001 51.523951800000006, 7.342235400000001 51.5238585, 7.3416066 51.523546, 7.3413675000000005 51.523392900000005, 7.3411935 51.523211100000005, 7.3406257 51.522343600000006, 7.3404568 51.522138500000004, 7.3402783000000005 51.5219923, 7.340175100000001 51.5219369, 7.339935100000001 51.521862600000006, 7.3400023 51.5217432, 7.339794700000001 51.5217047, 7.3390339 51.5215997, 7.3374991000000005 51.521350700000006, 7.3370082000000005 51.5212487, 7.3365852 51.5211077, 7.3359183 51.520833800000005, 7.335376500000001 51.5205708, 7.335117500000001 51.520498800000006, 7.334806500000001 51.520293900000006, 7.3347211 51.5202054, 7.334348500000001 51.520251900000005, 7.3337517000000005 51.5203038, 7.3332828 51.520735800000004, 7.332936800000001 51.520937700000005, 7.3325149000000005 51.521042800000004, 7.3322019 51.52106070000001, 7.331082100000001 51.5210768, 7.3309091 51.5210498, 7.3301243000000005 51.5207988, 7.327700600000001 51.5220186, 7.327372700000001 51.5221516, 7.3261259 51.522327600000004, 7.3248682 51.522558100000005, 7.324770000000001 51.5225756, 7.324463100000001 51.5235994, 7.323615200000001 51.524000400000006, 7.323232300000001 51.5236364, 7.3236302 51.523449500000005, 7.3224704 51.523193500000005, 7.321531500000001 51.5230005, 7.320951600000001 51.5228575, 7.3200267000000006 51.522585600000006, 7.3197368 51.522526600000006, 7.319533900000001 51.522988600000005, 7.3160943000000005 51.521888600000004, 7.3158833 51.522217600000005, 7.315731400000001 51.5225006, 7.315209500000001 51.52225060000001, 7.314656200000001 51.5220604, 7.314380600000001 51.522234600000004, 7.3142407 51.5223336, 7.3140381 51.522575200000006, 7.314316900000001 51.522742400000006, 7.314263700000001 51.522830600000006, 7.3141008 51.5229781, 7.314344800000001 51.523096800000005, 7.3144033 51.523131500000005, 7.3142471 51.5232709, 7.3142054000000005 51.52334320000001, 7.314036400000001 51.5235138, 7.3131208 51.5232905, 7.3131268 51.5237604, 7.313036800000001 51.5241094, 7.3129458000000005 51.5240833, 7.3129289 51.5241674, 7.3120839 51.523938400000006, 7.3112491 51.5237464, 7.3106742 51.5236455, 7.310596100000001 51.5240583, 7.3104591 51.5241291, 7.310446300000001 51.5241357, 7.3095213 51.525989200000005, 7.3089414 51.526382100000006, 7.3087974 51.526330200000004, 7.3085385 51.5264151, 7.3081085 51.526172200000005, 7.3059579 51.525725200000004, 7.3041581 51.5254363, 7.303199200000001 51.52760000000001))) diff --git a/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/DoBoCas_boundaries_level9.csv b/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/DoBoCas_boundaries_level9.csv index 34e24c9e..f8a06921 100644 --- a/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/DoBoCas_boundaries_level9.csv +++ b/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/DoBoCas_boundaries_level9.csv @@ -1,2 +1,2 @@ -POLYGON ((7.383654600000001 51.476886, 7.3834866 51.476838300000004, 7.383472500000001 51.476884500000004, 7.3830618 51.4771763, 7.3828936 51.4772946, 7.38257 51.4775226, 7.382604700000001 51.4775404, 7.3819616 51.477992, 7.3817341 51.478153500000005, 7.381134500000001 51.4785697, 7.3808112 51.478798700000006, 7.3806475 51.478590600000004, 7.380645400000001 51.478498800000004, 7.380596000000001 51.4782681, 7.380489900000001 51.478155300000005, 7.380248900000001 51.478014200000004, 7.379780200000001 51.47786850000001, 7.3795279 51.4778223, 7.3792761 51.4778237, 7.3790865000000005 51.4778439, 7.3787887 51.4778942, 7.3782658 51.477955400000006, 7.3780748 51.477984600000006, 7.3777385 51.47803570000001, 7.377640400000001 51.478038600000005, 7.3741405 51.4773301, 7.374024500000001 51.477325, 7.3740506 51.4771931, 7.3740405 51.4769694, 7.3715817 51.476447, 7.371449500000001 51.4765871, 7.3713255 51.4767689, 7.3712175 51.477092000000006, 7.370973500000001 51.4776085, 7.370941500000001 51.477850100000005, 7.3709122 51.477865900000005, 7.3709015 51.478149900000005, 7.3709534 51.4784067, 7.3710164 51.478563400000006, 7.3713644 51.4791013, 7.3713445 51.4792518, 7.3712906 51.479463900000006, 7.371466600000001 51.4800217, 7.3715044 51.4801567, 7.371554100000001 51.480378300000005, 7.371936600000001 51.48042220000001, 7.3726542 51.4801973, 7.3713245 51.4827165, 7.369721 51.4824179, 7.3692634 51.4823273, 7.3682375 51.4821358, 7.367339100000001 51.481965, 7.3675711 51.481498900000005, 7.366562 51.481306000000004, 7.3664535 51.4812426, 7.365069200000001 51.4809707, 7.3650349 51.480964, 7.3650457000000005 51.4809301, 7.3646687 51.480844600000005, 7.364643 51.4808728, 7.3645443 51.4809077, 7.3643803000000005 51.480945500000004, 7.3642658 51.4809209, 7.3639602 51.4807331, 7.363518200000001 51.480514500000005, 7.363302200000001 51.4804085, 7.362756 51.480138600000004, 7.3625826000000005 51.4803499, 7.3616375000000005 51.4800539, 7.361277800000001 51.4800151, 7.3612498 51.480528500000005, 7.3606636000000005 51.480515600000004, 7.360645300000001 51.4806017, 7.359951400000001 51.4805289, 7.3598781 51.4805227, 7.3593229000000004 51.480915200000005, 7.3591921000000005 51.4809458, 7.3590809 51.480956400000004, 7.3586321 51.4808783, 7.357876500000001 51.4806973, 7.357789 51.480770400000004, 7.3575403 51.480974200000006, 7.3567736 51.4815339, 7.3566497 51.4816396, 7.3564316000000005 51.481901900000004, 7.356209300000001 51.482253400000005, 7.356126300000001 51.482282700000006, 7.3558235000000005 51.482236500000006, 7.3554579 51.482171400000006, 7.3551305000000005 51.4820931, 7.3546597 51.4819273, 7.354590900000001 51.4819663, 7.3541603 51.482413900000005, 7.3540466 51.482601200000005, 7.353949500000001 51.4828861, 7.353753 51.4836539, 7.3536624 51.4843199, 7.3530258 51.484340200000005, 7.3529197 51.4837411, 7.352243700000001 51.4836219, 7.3513732 51.4836006, 7.3512953 51.4836024, 7.351340100000001 51.4822501, 7.3506084000000005 51.4822526, 7.349354000000001 51.482116500000004, 7.3487844 51.4820167, 7.3481734 51.482647, 7.3484274 51.482804200000004, 7.3480796 51.483154600000006, 7.3477382 51.4830453, 7.3476344000000005 51.4830697, 7.3476675 51.4831432, 7.347828700000001 51.4833331, 7.3478215 51.483402100000006, 7.347875500000001 51.483788100000005, 7.347907500000001 51.483924300000005, 7.3477315 51.4840851, 7.347523600000001 51.484312300000006, 7.347148300000001 51.484196100000005, 7.346218500000001 51.484045900000005, 7.345941300000001 51.4839818, 7.344861000000001 51.483793000000006, 7.344584 51.4840803, 7.3445451 51.484065300000005, 7.3443471 51.483951100000006, 7.344118000000001 51.48384110000001, 7.343606800000001 51.483586, 7.3432034 51.4833732, 7.3428212 51.4834411, 7.3425181 51.483503400000004, 7.342369400000001 51.4836272, 7.342301300000001 51.483746100000005, 7.342012700000001 51.484220400000005, 7.342122300000001 51.484337000000004, 7.3418254 51.484692, 7.341656400000001 51.484894000000004, 7.3413364 51.485304400000004, 7.341121500000001 51.4854739, 7.3409525 51.485599900000004, 7.3407325000000005 51.485811000000005, 7.3404436 51.485942800000004, 7.3403556000000005 51.4859968, 7.340286600000001 51.4860808, 7.3402276 51.4862138, 7.3402412 51.48635530000001, 7.340318600000001 51.486476800000005, 7.3403596 51.4865768, 7.3403906 51.4866528, 7.340304100000001 51.4867173, 7.340421600000001 51.4868857, 7.3404416 51.487140700000005, 7.3404426 51.4872207, 7.3404486 51.487331700000006, 7.340540600000001 51.487373700000006, 7.3407565 51.4874767, 7.3408375 51.4874657, 7.3409095 51.48749170000001, 7.3410615 51.4875527, 7.3411005000000005 51.487930600000006, 7.3412975000000005 51.488895500000005, 7.341573400000001 51.488842500000004, 7.3424633 51.488670500000005, 7.3428949 51.490144400000005, 7.343505100000001 51.4904403, 7.3435223 51.490512100000004, 7.3435281 51.4905363, 7.343519400000001 51.490802800000004, 7.3436301 51.491201000000004, 7.3437011000000005 51.49136420000001, 7.3437251 51.4914822, 7.3435411 51.491539200000005, 7.3427252 51.4917682, 7.3426312000000005 51.491711200000005, 7.342875200000001 51.493138, 7.339698200000001 51.4932372, 7.3399147000000005 51.4939686, 7.340019000000001 51.4942702, 7.3400245 51.494287, 7.3403929 51.4953269, 7.338969400000001 51.4954436, 7.3376296000000005 51.495997700000004, 7.336915100000001 51.495543100000006, 7.336745700000001 51.4956587, 7.336561700000001 51.4957946, 7.3362312 51.496066600000006, 7.3361833 51.4960521, 7.3360604 51.4959946, 7.3359734 51.4959409, 7.3357036 51.4957927, 7.3356012 51.4957744, 7.3354821 51.495825200000006, 7.335303700000001 51.495770400000005, 7.334315500000001 51.4956977, 7.334243900000001 51.495687800000006, 7.334213500000001 51.4959647, 7.3341295 51.496219700000005, 7.3329887000000005 51.4965096, 7.330549 51.496595400000004, 7.3306291 51.4954266, 7.330593400000001 51.495382500000005, 7.3305240000000005 51.4947858, 7.330533000000001 51.4945839, 7.330831000000001 51.494579900000005, 7.330993 51.494579900000005, 7.3313049 51.494579900000005, 7.3315539 51.49313, 7.329909000000001 51.4929852, 7.3297163 51.492944800000004, 7.3293682 51.4922951, 7.3292992 51.4921571, 7.329207200000001 51.492028100000006, 7.3288573 51.4915122, 7.328684300000001 51.4912532, 7.3284054 51.4904943, 7.328188000000001 51.489989, 7.3280554 51.489975400000006, 7.3277495 51.490017400000006, 7.3275835 51.490040400000005, 7.3273045 51.490082400000006, 7.327109600000001 51.48965140000001, 7.3270116000000005 51.4894794, 7.326829600000001 51.489311400000005, 7.3267956000000005 51.489143500000004, 7.326624600000001 51.4891395, 7.3260917 51.489132500000004, 7.3254228 51.4891245, 7.325242 51.489268100000004, 7.325100900000001 51.4894374, 7.325119000000001 51.489632900000004, 7.3247219 51.4896934, 7.324338 51.489674400000006, 7.324215000000001 51.489674400000006, 7.323988000000001 51.489666400000004, 7.3239030000000005 51.48965140000001, 7.323776100000001 51.4896284, 7.3236131 51.4895974, 7.323705100000001 51.489207, 7.3234317 51.489184300000005, 7.323251600000001 51.48962280000001, 7.3229768 51.4901874, 7.3229452 51.490458000000004, 7.3229363 51.4905224, 7.3230262 51.490521300000005, 7.323236100000001 51.4905173, 7.3229169 51.4926472, 7.3230716000000005 51.4926692, 7.323301300000001 51.492711400000005, 7.323300700000001 51.4927489, 7.3232971000000004 51.492810000000006, 7.3227292 51.49367590000001, 7.322610200000001 51.4938549, 7.3224413 51.4941109, 7.3224103000000005 51.494255900000006, 7.3223913000000005 51.49434290000001, 7.3223270000000005 51.4945462, 7.3223091 51.4946028, 7.3222871000000005 51.494643800000006, 7.3206262 51.4943418, 7.3190315 51.4940871, 7.3176066 51.4939108, 7.3174061 51.493886, 7.317365700000001 51.493885600000006, 7.3173398 51.4939424, 7.317332100000001 51.4939672, 7.3173007000000005 51.4940555, 7.3172823000000005 51.4944081, 7.3171013 51.494698500000005, 7.3168189 51.4952684, 7.316575200000001 51.4958061, 7.3162532 51.496036700000005, 7.316191300000001 51.496319, 7.3162222 51.497066600000004, 7.3163122000000005 51.4984024, 7.3166621 51.498444400000004, 7.3167571 51.498455400000005, 7.3170910000000005 51.4985584, 7.317252000000001 51.4985924, 7.317366000000001 51.498615400000006, 7.3176120000000004 51.4986844, 7.3180699 51.4988444, 7.318281900000001 51.4989204, 7.3184228000000004 51.4989703, 7.318768800000001 51.4990463, 7.318295900000001 51.499287300000006, 7.3182019 51.4993363, 7.3184858 51.4994743, 7.3186708000000005 51.4995613, 7.318946800000001 51.4995733, 7.319156700000001 51.4996573, 7.319215700000001 51.4997753, 7.319251700000001 51.500080200000006, 7.3186388 51.5013961, 7.317814800000001 51.5034554, 7.317791400000001 51.503599300000005, 7.3177585 51.503728800000005, 7.3177262 51.5039595, 7.317671900000001 51.504348400000005, 7.3176288000000005 51.504557600000005, 7.3176081 51.5046005, 7.3176281 51.50485380000001, 7.317535500000001 51.505098100000005, 7.3175036 51.50542110000001, 7.317430300000001 51.505454900000004, 7.317261500000001 51.5060184, 7.316552300000001 51.505995600000006, 7.3162167 51.5059035, 7.315613900000001 51.5059234, 7.3156109 51.505518900000006, 7.315144900000001 51.5055161, 7.3151412 51.5053527, 7.3152695 51.5053518, 7.315278200000001 51.505196100000006, 7.315005500000001 51.5051605, 7.3150056 51.505152900000006, 7.3150132 51.505105500000006, 7.314957700000001 51.5050468, 7.3148685 51.5049822, 7.3148493000000006 51.5048497, 7.3145771 51.5047645, 7.314301800000001 51.5045596, 7.3139184 51.504317300000004, 7.313862 51.5042896, 7.313808600000001 51.504268200000006, 7.313710400000001 51.5042399, 7.313498500000001 51.504211500000004, 7.313445400000001 51.50420930000001, 7.3123572 51.504223200000006, 7.312057800000001 51.504224900000004, 7.310895400000001 51.50416310000001, 7.309963000000001 51.504127100000005, 7.3096848 51.504128200000004, 7.3092915000000005 51.504110100000005, 7.309078700000001 51.504123, 7.3088663 51.504201900000005, 7.308392100000001 51.504452, 7.3083175 51.50440630000001, 7.3077806 51.504412200000004, 7.307217700000001 51.5044291, 7.3066678000000005 51.504452500000006, 7.306510800000001 51.504455300000004, 7.306215600000001 51.5044747, 7.3057547000000005 51.504482700000004, 7.3054768 51.5044637, 7.3040934 51.504308800000004, 7.3039896 51.504295600000006, 7.303823 51.504493700000005, 7.3038473 51.504687800000006, 7.3038419 51.5047742, 7.30402 51.5050705, 7.3042047000000005 51.5054056, 7.3043006 51.5056165, 7.3043271 51.5057668, 7.304330500000001 51.505852000000004, 7.304335200000001 51.5059727, 7.304284200000001 51.506059300000004, 7.3039592 51.5064829, 7.3038319000000005 51.506618200000005, 7.303655300000001 51.5067156, 7.3034585000000005 51.506826800000006, 7.303271400000001 51.506935600000006, 7.303047 51.5072594, 7.3024032000000005 51.507621, 7.302387 51.5076709, 7.3024779 51.5078278, 7.302639 51.5081198, 7.3026774 51.508223900000004, 7.302708300000001 51.508355300000005, 7.3027017 51.50856520000001, 7.302661400000001 51.508809600000006, 7.302611700000001 51.50911120000001, 7.302554700000001 51.5094556, 7.302537500000001 51.509559100000004, 7.3026372 51.510013900000004, 7.3026534000000005 51.5101048, 7.3026672 51.510223700000004, 7.3026786 51.510375800000006, 7.3026809 51.5108692, 7.3026811 51.511030600000005, 7.3026816000000006 51.511332, 7.3026771 51.5115478, 7.3026733 51.5117315, 7.3026702000000006 51.511878800000005, 7.3026432 51.5119436, 7.3026173000000005 51.5120057, 7.302598000000001 51.5120519, 7.302589800000001 51.512207800000006, 7.3025842 51.512315400000006, 7.3026435 51.5124964, 7.3027088000000004 51.5126957, 7.302729 51.512757500000006, 7.3027901 51.512954300000004, 7.302819 51.513047500000006, 7.3031255 51.514298700000005, 7.303455100000001 51.5148382, 7.3036687 51.5151879, 7.303748700000001 51.515322100000006, 7.303770800000001 51.515387100000005, 7.3037619000000005 51.5154488, 7.3037574 51.515530500000004, 7.303618500000001 51.515645000000006, 7.303499 51.515743500000006, 7.3037988 51.5159917, 7.3041087000000005 51.5162482, 7.304320000000001 51.516423, 7.3045634 51.516693100000005, 7.3045967 51.516848100000004, 7.304601900000001 51.516867000000005, 7.3045974000000005 51.516940500000004, 7.3046603 51.516995900000005, 7.304850500000001 51.517252400000004, 7.305017500000001 51.517453200000006, 7.3051712 51.5176364, 7.305466900000001 51.5177234, 7.3055694 51.5177537, 7.305683 51.5177872, 7.3058746 51.5178668, 7.306073700000001 51.5179527, 7.3060982 51.51796220000001, 7.306122500000001 51.5179704, 7.3061479 51.51797800000001, 7.3062103 51.517992500000005, 7.306337200000001 51.518016200000005, 7.3064745 51.518045900000004, 7.3068473 51.517754200000006, 7.3070738 51.5178844, 7.3073011 51.518015000000005, 7.3075986 51.518186, 7.3078308000000005 51.5183194, 7.308206 51.518535, 7.308057700000001 51.5186355, 7.307924900000001 51.51872770000001, 7.307518300000001 51.51864320000001, 7.3075941 51.518827300000005, 7.3076601000000005 51.5188733, 7.3077171000000005 51.5189097, 7.307782100000001 51.518943300000004, 7.307851 51.518973900000006, 7.3079185 51.5190015, 7.3080191 51.519040000000004, 7.3082253 51.5191115, 7.3083803000000005 51.5191601, 7.308508300000001 51.5191961, 7.308620400000001 51.519221800000004, 7.308688 51.5192387, 7.308735 51.519252800000004, 7.3087694 51.51926520000001, 7.3088107 51.5192823, 7.3088759 51.5193154, 7.3089192 51.5193414, 7.3089566 51.5193675, 7.3089962 51.5193972, 7.309031500000001 51.519426800000005, 7.309039500000001 51.519434100000005, 7.3090652 51.519457800000005, 7.309151000000001 51.519547700000004, 7.309183600000001 51.519586700000005, 7.3092189 51.519632, 7.309235900000001 51.519656000000005, 7.309252300000001 51.519684100000006, 7.3092585 51.519697, 7.3092633000000005 51.519709500000005, 7.309271300000001 51.519726500000004, 7.3092816 51.5197433, 7.3092952 51.5197585, 7.309304200000001 51.51976560000001, 7.3093085 51.5197681, 7.3093256 51.5197779, 7.310133 51.520043, 7.310399 51.520111, 7.310459000000001 51.520173, 7.310512 51.5202679, 7.310658900000001 51.520538900000005, 7.3107739 51.520690900000005, 7.310898900000001 51.5206339, 7.3110869 51.5206269, 7.3116479000000005 51.5208224, 7.3125999 51.5212944, 7.3128675 51.521370700000006, 7.3130712 51.5214056, 7.3133115 51.52144680000001, 7.3136415 51.5214768, 7.3136815 51.5214128, 7.3138315 51.5211568, 7.3139551 51.521216900000006, 7.314597300000001 51.521526800000004, 7.3145923 51.5217858, 7.3145923 51.5218628, 7.314656200000001 51.5220604, 7.315209500000001 51.52225060000001, 7.315731400000001 51.5225006, 7.3158833 51.522217600000005, 7.3160943000000005 51.521888600000004, 7.319533900000001 51.522988600000005, 7.3197368 51.522526600000006, 7.3200267000000006 51.522585600000006, 7.320951600000001 51.5228575, 7.321531500000001 51.5230005, 7.3224704 51.523193500000005, 7.3236302 51.523449500000005, 7.323232300000001 51.5236364, 7.323615200000001 51.524000400000006, 7.324463100000001 51.5235994, 7.324770000000001 51.5225756, 7.3248682 51.522558100000005, 7.3261259 51.522327600000004, 7.327372700000001 51.5221516, 7.327700600000001 51.5220186, 7.3301243000000005 51.5207988, 7.3309091 51.5210498, 7.331082100000001 51.5210768, 7.3322019 51.52106070000001, 7.3325149000000005 51.521042800000004, 7.332936800000001 51.520937700000005, 7.3332828 51.520735800000004, 7.3337517000000005 51.5203038, 7.334348500000001 51.520251900000005, 7.3347211 51.5202054, 7.334806500000001 51.520293900000006, 7.335117500000001 51.520498800000006, 7.335376500000001 51.5205708, 7.3359183 51.520833800000005, 7.3365852 51.5211077, 7.3370082000000005 51.5212487, 7.3374991000000005 51.521350700000006, 7.3390339 51.5215997, 7.339794700000001 51.5217047, 7.3400023 51.5217432, 7.339935100000001 51.521862600000006, 7.340175100000001 51.5219369, 7.3402783000000005 51.5219923, 7.3404568 51.522138500000004, 7.3406257 51.522343600000006, 7.3411935 51.523211100000005, 7.3413675000000005 51.523392900000005, 7.3416066 51.523546, 7.342235400000001 51.5238585, 7.342376300000001 51.523951800000006, 7.343308700000001 51.5242638, 7.343358200000001 51.5241114, 7.343333200000001 51.523728500000004, 7.3433638000000006 51.523639900000006, 7.343462000000001 51.5233089, 7.3439912000000005 51.5235143, 7.3448047 51.523198400000005, 7.3458478000000005 51.5237325, 7.346233700000001 51.5239704, 7.3464948 51.5241325, 7.3467301 51.523394800000005, 7.3460669 51.522607, 7.3463229000000005 51.5222872, 7.3476454 51.522669900000004, 7.349844600000001 51.5233168, 7.349891 51.5232285, 7.3509970000000004 51.5234679, 7.351862400000001 51.5235099, 7.3536809000000005 51.523737100000005, 7.3543197000000005 51.522283, 7.3543262 51.5222618, 7.3545568 51.521736800000006, 7.3548948 51.5209672, 7.3549128 51.520926300000006, 7.3550551 51.5209332, 7.355197700000001 51.521002800000005, 7.355185400000001 51.5210288, 7.355416300000001 51.521073400000006, 7.355488 51.521078100000004, 7.3555627 51.520998500000005, 7.3557005 51.5210293, 7.3560518 51.5211285, 7.3561706000000004 51.521064, 7.3562674 51.521084800000004, 7.3566517000000005 51.5210906, 7.3566943 51.52109230000001, 7.356723100000001 51.521163800000004, 7.356780700000001 51.5211879, 7.356815200000001 51.5212203, 7.3570995 51.5212724, 7.3571903 51.5211587, 7.357200700000001 51.5211454, 7.357291200000001 51.521030700000004, 7.3573664 51.520935200000004, 7.3574618 51.520814200000004, 7.3575955 51.520644700000005, 7.3576154 51.5206194, 7.357828400000001 51.520744900000004, 7.3579512000000005 51.5205914, 7.358070400000001 51.5204327, 7.358334500000001 51.5200809, 7.3586052 51.5195603, 7.3586263 51.5195196, 7.3586647 51.5194727, 7.357444200000001 51.519238200000004, 7.357477800000001 51.519166600000005, 7.3576841 51.518732500000006, 7.3577539000000005 51.518717, 7.3579081 51.518748, 7.358179300000001 51.518222200000004, 7.357940200000001 51.5182075, 7.357700400000001 51.518190000000004, 7.3577158 51.518156100000006, 7.3577900000000005 51.517993700000005, 7.357871500000001 51.5178157, 7.3578881 51.5177793, 7.3579049 51.51774270000001, 7.3582536 51.5172553, 7.358261300000001 51.5172278, 7.358123900000001 51.517184500000006, 7.358139400000001 51.5171403, 7.3582359 51.5168614, 7.358297100000001 51.516685100000004, 7.358338600000001 51.516643200000004, 7.358417800000001 51.516641500000006, 7.358536600000001 51.516637900000006, 7.358698800000001 51.516632900000005, 7.3587499 51.516649, 7.3590949000000005 51.5166381, 7.3591508 51.516698000000005, 7.359159000000001 51.5167068, 7.3592314000000005 51.516737600000006, 7.3592629 51.516677800000004, 7.359296100000001 51.5166144, 7.359336300000001 51.516624, 7.3593457 51.5166088, 7.3594056000000005 51.5166077, 7.3594559 51.516606700000004, 7.3594865 51.5166076, 7.3595182 51.5165348, 7.359490900000001 51.5165348, 7.359464000000001 51.516538100000005, 7.359435 51.516538700000005, 7.3594100000000005 51.51652910000001, 7.3593982 51.5165105, 7.3594024000000005 51.516494200000004, 7.3594409 51.516423, 7.359481400000001 51.516348300000004, 7.359495900000001 51.516321500000004, 7.359559000000001 51.5162053, 7.35965 51.51603780000001, 7.3596928 51.51593080000001, 7.3596117 51.5159285, 7.3596257000000005 51.5158749, 7.3596462 51.515826000000004, 7.3594917 51.5158239, 7.3595006000000005 51.515795000000004, 7.3597476 51.5151065, 7.359873100000001 51.5147564, 7.359892500000001 51.5147023, 7.3599746 51.5144734, 7.359999500000001 51.514404000000006, 7.3600585 51.514115000000004, 7.3597222 51.514053000000004, 7.359333800000001 51.513981300000005, 7.3593475 51.5139499, 7.3593526 51.513938, 7.3594995 51.513600000000004, 7.359594800000001 51.513380500000004, 7.3596279000000004 51.513341700000005, 7.3596415 51.513325800000004, 7.3596477 51.513318500000004, 7.359659100000001 51.5133048, 7.3596693 51.513293700000006, 7.3596864 51.513274900000006, 7.3597093000000005 51.513249800000004, 7.3597592 51.513195, 7.3598078000000005 51.51314180000001, 7.3600146 51.513059000000005, 7.360129400000001 51.5130129, 7.360280800000001 51.5129523, 7.3603297 51.5129327, 7.3603304000000005 51.5129108, 7.3603316 51.5128721, 7.3603338 51.5128056, 7.3603494000000005 51.512323300000006, 7.3602103 51.512129300000005, 7.360233200000001 51.5118918, 7.3602273 51.511777300000006, 7.3602188 51.511779800000006, 7.3602240000000005 51.5117764, 7.360223100000001 51.51176400000001, 7.360225300000001 51.511763300000005, 7.3603524 51.511729, 7.3604243 51.5117028, 7.360582300000001 51.5116882, 7.3606588 51.511665300000004, 7.360696000000001 51.511628800000004, 7.3607544 51.511563300000006, 7.360858500000001 51.511428800000004, 7.360864100000001 51.511402200000006, 7.3608327000000005 51.5113743, 7.360828000000001 51.511351000000005, 7.360824 51.511330400000006, 7.360892400000001 51.511245100000004, 7.3609099 51.5111847, 7.3609230000000005 51.511166800000005, 7.3609467 51.5111338, 7.3609831 51.511130300000005, 7.3610009000000005 51.511131500000005, 7.36106 51.511135100000004, 7.3611433 51.51112800000001, 7.3612194 51.511114000000006, 7.361265 51.5111125, 7.3614201 51.51111220000001, 7.3616006 51.5111141, 7.361664800000001 51.5111001, 7.361826000000001 51.511065200000004, 7.3618901 51.5110467, 7.362004700000001 51.511034300000006, 7.3621008 51.511039000000004, 7.3622414 51.5110059, 7.362284300000001 51.510997200000006, 7.362339100000001 51.5109884, 7.362429400000001 51.511000300000006, 7.3624771 51.511023200000004, 7.362516100000001 51.5110334, 7.362577900000001 51.5110199, 7.3626355000000006 51.5110046, 7.362765700000001 51.5109702, 7.362878500000001 51.5109195, 7.3628691 51.510898100000006, 7.362858500000001 51.5108624, 7.362849000000001 51.510845, 7.362812900000001 51.510778300000005, 7.3627912 51.5107384, 7.3626635 51.510706400000004, 7.362622200000001 51.510679, 7.362620300000001 51.510666900000004, 7.3626012 51.5105483, 7.361695800000001 51.5103864, 7.3616865 51.5102993, 7.3616779 51.510257200000005, 7.361721200000001 51.510138600000005, 7.3617688 51.5097857, 7.361784500000001 51.509668700000006, 7.3618009 51.5092821, 7.3618361000000005 51.5090251, 7.361839600000001 51.509000900000004, 7.3618433 51.5089747, 7.361777200000001 51.508648, 7.3617371 51.5083454, 7.3617071 51.508030600000005, 7.361686300000001 51.507822000000004, 7.361652800000001 51.507604, 7.3616222 51.507283, 7.3615985 51.506818900000006, 7.3615861 51.50633130000001, 7.361585700000001 51.50616410000001, 7.3615665 51.505762100000005, 7.3615617 51.5056236, 7.3615585 51.5054207, 7.3615580000000005 51.505391900000006, 7.3615573 51.505352800000004, 7.3619662 51.505500100000006, 7.362292200000001 51.505642800000004, 7.362617500000001 51.505792500000005, 7.3629620000000005 51.505971200000005, 7.3631555 51.5060797, 7.3633176 51.506176100000005, 7.363612600000001 51.5063849, 7.364083000000001 51.5067735, 7.3642342 51.506892400000005, 7.3644252 51.507046700000004, 7.364614 51.5071992, 7.3647974000000005 51.507335600000005, 7.365162000000001 51.507612200000004, 7.3654812000000005 51.5078649, 7.365822700000001 51.508127900000005, 7.365998500000001 51.50825450000001, 7.3661805000000005 51.5083855, 7.366198700000001 51.5083928, 7.3662162 51.50839980000001, 7.3658611 51.508473800000004, 7.3658691 51.5084979, 7.3657721 51.5085178, 7.365755300000001 51.508521300000005, 7.364764600000001 51.5086894, 7.3648454 51.508689600000004, 7.365159800000001 51.5086996, 7.3653528 51.508721, 7.3653811000000005 51.5087241, 7.3656452 51.5087636, 7.3656689 51.5088183, 7.365695700000001 51.5088803, 7.3657108000000004 51.5089149, 7.3657412 51.508985, 7.3658029 51.5090298, 7.3661333 51.509270400000005, 7.366249600000001 51.5093551, 7.366419700000001 51.509477700000005, 7.3668165000000005 51.5097639, 7.3668456 51.509774900000004, 7.366909100000001 51.509799, 7.3669725 51.50982320000001, 7.3670549 51.5098545, 7.367190300000001 51.5099377, 7.367334100000001 51.5099974, 7.36749 51.510062100000006, 7.3675442 51.510094, 7.367798400000001 51.510282800000006, 7.367916800000001 51.510370800000004, 7.367975700000001 51.510427500000006, 7.368006800000001 51.510468100000004, 7.368020100000001 51.5105372, 7.368023000000001 51.51060510000001, 7.3681802 51.51072550000001, 7.3685223 51.5109878, 7.368479400000001 51.5111124, 7.368498700000001 51.511146800000006, 7.368555300000001 51.511164400000006, 7.368587600000001 51.511182000000005, 7.3686207 51.5111861, 7.369182800000001 51.5112571, 7.369362300000001 51.5112785, 7.3694375 51.511335300000006, 7.369616700000001 51.511500700000006, 7.3700372000000005 51.5118066, 7.3702838 51.5119363, 7.3703004000000005 51.511949400000006, 7.3705810000000005 51.5121696, 7.370686900000001 51.512252700000005, 7.370730300000001 51.51228690000001, 7.3708507 51.512371, 7.3708654000000005 51.5123812, 7.371531300000001 51.5128466, 7.3717937000000004 51.51303, 7.371869800000001 51.5130782, 7.3719574 51.513119200000006, 7.372008 51.513167800000005, 7.3720394 51.513183700000006, 7.372054500000001 51.513196, 7.3720666 51.5132059, 7.372931 51.513910300000006, 7.3730529 51.5140097, 7.3732432 51.5141647, 7.374100200000001 51.514775, 7.3747743 51.5153182, 7.3750964 51.515577500000006, 7.375162700000001 51.515582200000004, 7.375278600000001 51.5155905, 7.3753323 51.515636900000004, 7.375364500000001 51.515664900000004, 7.375416100000001 51.5156958, 7.375481400000001 51.515711200000005, 7.375555800000001 51.515715900000004, 7.375643200000001 51.5157054, 7.3756583000000004 51.5157035, 7.375698900000001 51.515703200000004, 7.3757938 51.51567300000001, 7.375959900000001 51.5155916, 7.37603 51.5155406, 7.3760446 51.5155157, 7.376097700000001 51.5154073, 7.3761779 51.515463800000006, 7.3762857 51.515539200000006, 7.376340600000001 51.515577, 7.3768498000000005 51.5159278, 7.376824600000001 51.5159663, 7.3768029 51.5159992, 7.376797700000001 51.516007200000004, 7.376855000000001 51.51605180000001, 7.376942400000001 51.51611990000001, 7.3769578000000005 51.516131800000004, 7.3769735 51.516144000000004, 7.376996500000001 51.5161619, 7.377108400000001 51.5162489, 7.377139400000001 51.516273000000005, 7.377137500000001 51.516274, 7.3771841 51.516272900000004, 7.377808000000001 51.516720600000006, 7.377936 51.51672670000001, 7.3785619 51.516748, 7.378784100000001 51.5167556, 7.3793062 51.516896800000005, 7.379338400000001 51.516900400000004, 7.379695600000001 51.5169311, 7.379876500000001 51.5169471, 7.3802681 51.516992, 7.380443400000001 51.5170126, 7.3809757000000005 51.5170977, 7.381000500000001 51.517101600000004, 7.3812815 51.5171555, 7.3812907 51.5171379, 7.3813405 51.517144900000005, 7.38133 51.517164900000004, 7.381582000000001 51.517206300000005, 7.381664600000001 51.5172199, 7.3818117 51.51712190000001, 7.382240500000001 51.5172856, 7.382351900000001 51.5173281, 7.382435900000001 51.5173465, 7.3825823 51.5173788, 7.3830244 51.517423900000004, 7.3830257 51.5174223, 7.3830311 51.517424600000005, 7.3831078 51.517432500000005, 7.3834698 51.517441100000006, 7.3837859 51.5174189, 7.384103700000001 51.5173702, 7.3843695 51.5172899, 7.3845162 51.517228700000004, 7.384651300000001 51.5171724, 7.3851547 51.5170461, 7.3851472000000005 51.5170144, 7.3860327 51.5170498, 7.3863465 51.5170314, 7.3865569 51.516950900000005, 7.3867674 51.5168429, 7.3870059 51.5168563, 7.387112500000001 51.516899900000006, 7.3872961 51.517017800000005, 7.387327300000001 51.5170375, 7.3874262 51.5171001, 7.387605700000001 51.5172138, 7.387644000000001 51.517238600000006, 7.3879624 51.517445200000004, 7.388064300000001 51.517122400000005, 7.3881468 51.5171744, 7.3881993 51.517161200000004, 7.3883222 51.51712920000001, 7.3883616000000005 51.5170778, 7.3883606 51.5170772, 7.3884689 51.516930300000006, 7.3885877 51.516769200000006, 7.388877600000001 51.5163298, 7.38905 51.5160221, 7.3891591000000005 51.515827400000006, 7.3892967 51.5155801, 7.3895222 51.5151747, 7.3897225 51.5148165, 7.389822000000001 51.5146382, 7.389948100000001 51.514394700000004, 7.3900255 51.5142455, 7.390448800000001 51.5135986, 7.3904509 51.5135991, 7.390996 51.5137377, 7.3912442 51.513800800000006, 7.3917576 51.513931400000004, 7.3921963 51.5140474, 7.391939700000001 51.5143709, 7.392228500000001 51.5144419, 7.3924937 51.5145071, 7.392546200000001 51.514520000000005, 7.3926302 51.514540700000005, 7.392896800000001 51.514606300000004, 7.3931779 51.5146749, 7.393156800000001 51.5146986, 7.3931946 51.514707900000005, 7.3932111 51.514712, 7.3933422 51.514744500000006, 7.393451700000001 51.5147716, 7.3935782 51.514802800000005, 7.3934052 51.514983900000004, 7.3931231 51.5152792, 7.3933577 51.515370600000004, 7.393651200000001 51.5150772, 7.393884000000001 51.5148444, 7.3938921 51.5149483, 7.393900500000001 51.5151138, 7.3939167 51.5154362, 7.3939249 51.515598600000004, 7.393926400000001 51.5156295, 7.393928600000001 51.5156744, 7.3939333000000005 51.51571920000001, 7.393943200000001 51.5157637, 7.393958400000001 51.5158076, 7.3939617 51.515966500000005, 7.3939035 51.5160136, 7.3936374 51.516236000000006, 7.393148 51.5166447, 7.393394600000001 51.516763600000004, 7.3937717 51.516462100000005, 7.3938781 51.516377000000006, 7.394167400000001 51.516145800000004, 7.3942072 51.5161141, 7.3942351 51.516091100000004, 7.394270400000001 51.5160677, 7.394974500000001 51.5164302, 7.394980400000001 51.5163688, 7.3953275000000005 51.516550200000005, 7.3956143 51.5167001, 7.3962817 51.517049, 7.3963497 51.5170845, 7.396823400000001 51.517332100000004, 7.397058 51.5174547, 7.3973510000000005 51.516615900000005, 7.3974181 51.516424, 7.39794 51.5149301, 7.398084300000001 51.5145131, 7.3981709 51.5142633, 7.3982448000000005 51.514050000000005, 7.3982524000000005 51.5140279, 7.3982697 51.5139781, 7.398539800000001 51.513198200000005, 7.398865600000001 51.512256900000004, 7.399021500000001 51.511806400000005, 7.3990204 51.511806500000006, 7.3990442000000005 51.511717100000006, 7.3990451 51.5117138, 7.3984293 51.5116212, 7.398164800000001 51.5115491, 7.397875900000001 51.5113775, 7.397529100000001 51.511172200000004, 7.396698000000001 51.510913200000005, 7.3957056 51.5106034, 7.39569 51.5106071, 7.3954705 51.510531300000004, 7.394749900000001 51.5103073, 7.394231400000001 51.510142200000004, 7.394153200000001 51.510117300000005, 7.393733200000001 51.5099728, 7.3934091 51.5098617, 7.3931949 51.509788300000004, 7.3925841000000005 51.509635700000004, 7.392060900000001 51.509505100000005, 7.391262800000001 51.509302600000005, 7.391168400000001 51.509276500000006, 7.3910565 51.509245500000006, 7.3910146 51.5092173, 7.390999900000001 51.509213800000005, 7.3907495 51.5091546, 7.390689600000001 51.5091283, 7.3906798 51.509119000000005, 7.390699100000001 51.509091600000005, 7.390709800000001 51.509083700000005, 7.3907430000000005 51.509069200000006, 7.3906248 51.50903640000001, 7.390529900000001 51.509007800000006, 7.3905703 51.508997400000005, 7.3906143 51.5089887, 7.390657300000001 51.5089746, 7.3906958000000005 51.5089588, 7.3907322 51.508941300000004, 7.3907669 51.5089218, 7.3908022 51.508900800000006, 7.3908351 51.508878800000005, 7.3908797 51.508841000000004, 7.3909175000000005 51.5088139, 7.3909532 51.508786300000004, 7.3910203 51.508728500000004, 7.3911039 51.508656900000005, 7.3911411000000005 51.5086269, 7.391179 51.508598400000004, 7.3912164 51.5085719, 7.3912572 51.5085447, 7.391296700000001 51.508520700000005, 7.3913321000000005 51.5084984, 7.391407300000001 51.5084609, 7.391314700000001 51.5083275, 7.391254900000001 51.5082808, 7.391223600000001 51.508266000000006, 7.391155500000001 51.5082341, 7.390924 51.508171100000006, 7.390638300000001 51.5080984, 7.390654100000001 51.50806660000001, 7.3904734 51.508030000000005, 7.390417800000001 51.508020900000005, 7.390221800000001 51.5079803, 7.389991800000001 51.5079324, 7.389932900000001 51.5079204, 7.3899122 51.507916300000005, 7.3897902 51.50789150000001, 7.3895721000000005 51.5074988, 7.3895618 51.507485800000005, 7.389423300000001 51.507310000000004, 7.3895226 51.507200000000005, 7.389561700000001 51.507156800000004, 7.389588000000001 51.507127700000005, 7.3901088 51.506551, 7.3904157 51.5060744, 7.390576200000001 51.5058251, 7.3908135 51.5054566, 7.391181100000001 51.5048855, 7.3913545 51.5046162, 7.3915872 51.504254700000004, 7.3916715 51.5041238, 7.391750500000001 51.504001, 7.3920102000000005 51.503654100000006, 7.3920338 51.503622400000005, 7.39235 51.503199800000004, 7.3924441000000005 51.503233, 7.392945900000001 51.5034101, 7.3930375 51.503308800000006, 7.3930487000000005 51.5032962, 7.393204000000001 51.503124400000004, 7.393368300000001 51.502940100000004, 7.393848200000001 51.503065500000005, 7.394019200000001 51.503112400000006, 7.3944412 51.5032371, 7.3944457 51.503232700000005, 7.394495600000001 51.5031571, 7.394493700000001 51.503156600000004, 7.394544000000001 51.50307960000001, 7.394546500000001 51.5030803, 7.3945683 51.5030858, 7.394587700000001 51.5030895, 7.3946075 51.5030919, 7.3946294 51.503093500000006, 7.3946547 51.5030936, 7.394674800000001 51.5030925, 7.3946947000000005 51.503090300000004, 7.3947167 51.5030864, 7.394742900000001 51.5030799, 7.3947608 51.503074000000005, 7.394777800000001 51.503067200000004, 7.394795500000001 51.5030585, 7.394814800000001 51.5030468, 7.394827800000001 51.5030372, 7.3948394 51.5030269, 7.3948495 51.503016, 7.394856000000001 51.503007600000004, 7.3948831 51.5029691, 7.3954279000000005 51.502099, 7.3956157000000005 51.5017993, 7.3956714 51.5017135, 7.395688000000001 51.5016881, 7.3957617 51.5015774, 7.3958373 51.501467600000005, 7.3959175 51.501358800000006, 7.396001200000001 51.5012514, 7.3960875 51.501145900000004, 7.3961794 51.5010405, 7.396276 51.5009377, 7.3963201000000005 51.500891700000004, 7.396380100000001 51.500831000000005, 7.396457300000001 51.5007559, 7.396488000000001 51.500726, 7.396599500000001 51.5006226, 7.396716100000001 51.5005211, 7.3967453 51.500497100000004, 7.396791500000001 51.500458900000005, 7.3968369 51.5004214, 7.396850100000001 51.5004111, 7.396961800000001 51.500323900000005, 7.397087300000001 51.500226700000006, 7.397243400000001 51.500111100000005, 7.3972436 51.5001109, 7.3972011 51.5000884, 7.3971815 51.500078, 7.396704400000001 51.499825300000005, 7.3966471 51.4997935, 7.3966896 51.499763400000006, 7.3968949 51.499617900000004, 7.3972195 51.4993878, 7.3973731 51.4992789, 7.397425800000001 51.499241500000004, 7.397596900000001 51.4991202, 7.3976258 51.4990997, 7.3976714 51.4990673, 7.3977044 51.499043900000004, 7.3977148 51.499036600000004, 7.397744 51.4990159, 7.3980243 51.498817100000004, 7.398181 51.498706000000006, 7.3983376000000005 51.498595, 7.3984947000000005 51.4984836, 7.398593900000001 51.498406, 7.398693300000001 51.4983282, 7.398752900000001 51.498265, 7.398803 51.4982119, 7.398831700000001 51.498181300000006, 7.398860900000001 51.4981504, 7.3989124 51.4980957, 7.398965400000001 51.498034000000004, 7.3990248 51.497965, 7.3991370000000005 51.497834600000004, 7.3990678 51.497811000000006, 7.3988554 51.497738500000004, 7.3986954 51.497671600000004, 7.3984234 51.497529400000005, 7.398229100000001 51.497531300000006, 7.398034900000001 51.4975334, 7.3978039 51.497617600000005, 7.397595900000001 51.497695400000005, 7.3976329000000005 51.4976009, 7.398047600000001 51.496540200000005, 7.3980613 51.496506200000006, 7.3980649000000005 51.496496900000004, 7.398083400000001 51.49645030000001, 7.3984277 51.4963994, 7.399001200000001 51.496315, 7.3993975 51.496256, 7.401119700000001 51.4959998, 7.401376300000001 51.4959281, 7.4014185 51.495800700000004, 7.401422200000001 51.495789300000006, 7.401469100000001 51.495643400000006, 7.401273300000001 51.4956247, 7.4013264 51.4954431, 7.4013556000000005 51.49534310000001, 7.401390500000001 51.495162300000004, 7.4013884 51.495102, 7.4013879000000005 51.495085, 7.4013863 51.495035400000006, 7.4013248 51.4948847, 7.401256600000001 51.4947953, 7.401122600000001 51.4946909, 7.4009537000000005 51.4946221, 7.4005283 51.494507500000005, 7.4005041 51.49450100000001, 7.400202800000001 51.4944198, 7.4001843 51.494413800000004, 7.400139200000001 51.4943989, 7.399661600000001 51.4942426, 7.399129200000001 51.4940681, 7.399091 51.4940555, 7.3990675 51.4940459, 7.3990508 51.4940391, 7.3990622 51.493981600000005, 7.3990749000000005 51.493918, 7.3991011 51.4939277, 7.399126300000001 51.493937, 7.399128 51.493923200000005, 7.399123800000001 51.4939091, 7.3996668 51.4940513, 7.4000649 51.4941443, 7.4007611 51.4943071, 7.4008422000000005 51.494323800000004, 7.400943700000001 51.4943449, 7.4011922000000006 51.49439640000001, 7.4012636 51.4944063, 7.401448 51.49443290000001, 7.401449700000001 51.494418700000004, 7.4014603 51.4942682, 7.401463000000001 51.494230900000005, 7.401465000000001 51.4942026, 7.4014664 51.494172600000006, 7.401468500000001 51.494125800000006, 7.4015176 51.4930729, 7.4015214 51.4929938, 7.4015241000000005 51.492935, 7.4015333000000005 51.4928528, 7.4015379 51.492758200000004, 7.4016339 51.492743700000005, 7.4016302000000005 51.492581900000005, 7.4016237 51.492293700000005, 7.4016177 51.4920259, 7.4016139 51.4918592, 7.401644800000001 51.491854800000006, 7.401681000000001 51.4918496, 7.401709100000001 51.4918454, 7.4016980000000006 51.49134, 7.4016954 51.4912191, 7.4016922 51.4910707, 7.4016671 51.489914500000005, 7.401654000000001 51.4894532, 7.4016536 51.489427400000004, 7.4016397000000005 51.488673000000006, 7.4016375000000005 51.4885777, 7.4016367 51.488549600000006, 7.4016136 51.488548400000006, 7.4016096000000005 51.488373200000005, 7.4016082 51.4883133, 7.4016052000000006 51.4881831, 7.4016285 51.4881827, 7.401627700000001 51.4881432, 7.4016237 51.487967000000005, 7.4016152 51.4875879, 7.401614500000001 51.4875605, 7.401597300000001 51.486797, 7.401571400000001 51.4856459, 7.4014291000000005 51.48566640000001, 7.4014166 51.4856501, 7.4014103 51.485642000000006, 7.401404 51.4856338, 7.4009757 51.485079000000006, 7.400926200000001 51.4850149, 7.4008393 51.4849023, 7.4007807 51.4848264, 7.400542700000001 51.484518200000004, 7.4003019000000005 51.4843422, 7.3999953000000005 51.484112200000006, 7.3997203 51.483887200000005, 7.3994866 51.483681100000005, 7.3992728 51.4834776, 7.3989691 51.483184200000004, 7.3988126 51.4830557, 7.3986377 51.48295, 7.3984807 51.4828841, 7.3983372 51.482823800000006, 7.3980787 51.4827882, 7.3974076 51.4827729, 7.3969265 51.482729400000004, 7.3968581 51.4827183, 7.396347400000001 51.482635200000004, 7.396240100000001 51.4826161, 7.395823900000001 51.482542200000005, 7.395311100000001 51.482445600000005, 7.3948809 51.4823924, 7.3944052000000005 51.482363500000005, 7.393822800000001 51.4823565, 7.393721 51.48235510000001, 7.3935924 51.4823625, 7.393071000000001 51.4824162, 7.392755200000001 51.482458, 7.392628800000001 51.482474700000004, 7.3921615 51.482545800000004, 7.3920998 51.4825542, 7.3920997 51.4825548, 7.392094800000001 51.482552600000005, 7.391500700000001 51.482669, 7.3914496000000005 51.4826799, 7.391398000000001 51.482691300000006, 7.391342600000001 51.482702, 7.391240300000001 51.482726500000005, 7.3911388 51.482747200000006, 7.3910447 51.4827731, 7.3909324000000005 51.4828003, 7.3908984 51.4828119, 7.3908854 51.482743000000006, 7.390878600000001 51.482706900000004, 7.390779200000001 51.482732600000006, 7.3908804 51.4821923, 7.390889100000001 51.482086800000005, 7.3908933 51.4818523, 7.390895400000001 51.4816171, 7.3908982000000005 51.481253300000006, 7.390899600000001 51.481086700000006, 7.390900500000001 51.480976000000005, 7.3908971 51.480955300000005, 7.3906235 51.480891400000004, 7.3906051 51.480887100000004, 7.390212600000001 51.4808066, 7.389258900000001 51.4806329, 7.3888037 51.480549800000006, 7.3870288 51.480226300000005, 7.387107800000001 51.4800163, 7.387194600000001 51.47978560000001, 7.387289900000001 51.4795681, 7.3874873 51.479234500000004, 7.387613600000001 51.479021100000004, 7.3877695 51.4788652, 7.3878919000000005 51.4788469, 7.388253000000001 51.478908800000006, 7.388320200000001 51.4787698, 7.3884064 51.478591, 7.3883331000000005 51.4785637, 7.3864261 51.4778796, 7.3839363 51.4769871, 7.383654600000001 51.476886)) -POLYGON ((7.303199200000001 51.52760000000001, 7.3021425 51.527350000000006, 7.3015676 51.5284799, 7.301100600000001 51.528401800000005, 7.3007016 51.5292657, 7.3004347 51.529211800000006, 7.2996778 51.530899600000005, 7.298596000000001 51.530590700000005, 7.2976691 51.53035070000001, 7.2971845 51.530174900000006, 7.2969477000000005 51.53056, 7.295702400000001 51.529961500000006, 7.295366100000001 51.53060060000001, 7.2950584 51.5309989, 7.294803900000001 51.531375100000005, 7.293814800000001 51.5309602, 7.2929712 51.5305997, 7.291438800000001 51.529968800000006, 7.2912821 51.529875800000006, 7.2907966 51.5298291, 7.2908416 51.5295634, 7.290572 51.529546700000004, 7.2906830000000005 51.528740500000005, 7.2903313 51.5287195, 7.2903796000000005 51.5283978, 7.2890633000000005 51.527642300000004, 7.288990200000001 51.527641, 7.288631400000001 51.527633800000004, 7.2885058 51.5265313, 7.2885042 51.5265252, 7.288504400000001 51.526521, 7.2884779 51.5265229, 7.2882585 51.5265369, 7.288255 51.5265373, 7.2882351000000005 51.5265367, 7.2882028000000005 51.526535900000006, 7.2875787 51.526517600000005, 7.2870865 51.5265034, 7.2860503 51.52647150000001, 7.2859620000000005 51.526469600000006, 7.285620600000001 51.5264776, 7.285453 51.5264767, 7.2854463 51.526281000000004, 7.2852046 51.526155700000004, 7.285167700000001 51.5255093, 7.2851615 51.525396300000004, 7.2851584 51.525338500000004, 7.2851387 51.52497940000001, 7.284404800000001 51.524830400000006, 7.2842459 51.5248074, 7.282969100000001 51.5246094, 7.282804100000001 51.5245824, 7.2825541000000005 51.5245444, 7.2822576 51.5246104, 7.281104900000001 51.52481890000001, 7.2806853 51.524827200000004, 7.2805325000000005 51.5248288, 7.280531000000001 51.5246822, 7.2801669 51.524688600000005, 7.2796424 51.524697800000006, 7.279576700000001 51.5247523, 7.279497 51.5248257, 7.2789327 51.524830400000006, 7.278489700000001 51.5248574, 7.2776699 51.5247274, 7.275684300000001 51.5243866, 7.2755936000000005 51.524371300000006, 7.2755251 51.52435800000001, 7.274267900000001 51.524155300000004, 7.2735225 51.524333500000004, 7.27334 51.5243763, 7.2733091000000005 51.5244251, 7.272221 51.524632100000005, 7.272092300000001 51.5247468, 7.271644 51.524787200000006, 7.2716152 51.52483, 7.2712266 51.52492530000001, 7.2710546 51.524891600000004, 7.2708428000000005 51.524921400000004, 7.2706328000000005 51.52498670000001, 7.2705253 51.52498730000001, 7.2704497 51.524973300000006, 7.2701181 51.524978000000004, 7.2700373 51.525005900000004, 7.269848100000001 51.5250241, 7.269574 51.5250654, 7.268989100000001 51.5251123, 7.2682795 51.5254686, 7.267387800000001 51.5255367, 7.2670766 51.525612100000004, 7.2669597 51.525631800000006, 7.2669508 51.5256728, 7.2666792000000004 51.5256434, 7.2665183 51.52571330000001, 7.2658876 51.525651200000006, 7.265860300000001 51.525739400000006, 7.2654933 51.525688900000006, 7.2651634000000005 51.5257579, 7.2648577 51.525680300000005, 7.2644899 51.5257051, 7.264478 51.5258082, 7.2641814 51.5259268, 7.2639873 51.525905, 7.2636289000000005 51.5259185, 7.2633897 51.5259371, 7.2631369 51.525900400000005, 7.263075700000001 51.525922400000006, 7.2629758 51.5259134, 7.262774800000001 51.5259386, 7.2626965000000006 51.52591150000001, 7.262617700000001 51.525918700000005, 7.262584500000001 51.525942900000004, 7.2623635 51.525949700000005, 7.262249000000001 51.525987900000004, 7.2622184 51.526004900000004, 7.2620982000000005 51.525980000000004, 7.262045400000001 51.5260358, 7.2617953 51.5260405, 7.261622600000001 51.5261347, 7.261509800000001 51.5261325, 7.2614147 51.526160100000006, 7.261324500000001 51.526146100000005, 7.2612677 51.5261725, 7.2612005 51.5261342, 7.260957400000001 51.5261438, 7.2605933 51.5262253, 7.2604796 51.5260059, 7.260037400000001 51.526200900000006, 7.259936300000001 51.5262748, 7.2598149 51.5262788, 7.2597237 51.526281600000004, 7.2596882 51.526307, 7.259505300000001 51.5263186, 7.2594608 51.5262614, 7.2594066 51.5262268, 7.259339400000001 51.5262478, 7.2592425 51.5262954, 7.2591669 51.5263428, 7.2590576 51.526369700000004, 7.258972600000001 51.526373500000005, 7.2588141 51.526515, 7.2587285 51.5265318, 7.2586646 51.5265356, 7.2586116 51.5265688, 7.2585287 51.5265981, 7.2583488 51.5266369, 7.2582376 51.5266378, 7.258132700000001 51.5266607, 7.257970800000001 51.5267095, 7.257902400000001 51.5267702, 7.2576134 51.526898900000006, 7.2575624 51.5268907, 7.257522300000001 51.526863000000006, 7.2573356 51.5269239, 7.257319600000001 51.526992500000006, 7.2574117000000005 51.527031900000004, 7.2574642 51.527083100000006, 7.257573600000001 51.5271148, 7.257604100000001 51.5271648, 7.257486 51.5272495, 7.2573077 51.5272693, 7.2572540000000005 51.5272754, 7.2571232000000006 51.5272634, 7.2567702 51.527328000000004, 7.256671000000001 51.527395600000006, 7.2565961 51.5274082, 7.256445500000001 51.527374900000005, 7.2564877 51.52731970000001, 7.2564561 51.5272318, 7.256317200000001 51.527129900000006, 7.2563287 51.5270638, 7.256299200000001 51.5269526, 7.2563124000000006 51.526790000000005, 7.256203800000001 51.5267732, 7.256196 51.526751700000005, 7.2561898000000005 51.5267344, 7.2561811 51.526710300000005, 7.2561714 51.5266832, 7.256154100000001 51.526639, 7.255979600000001 51.526481600000004, 7.2557818 51.526341800000004, 7.2557881 51.526055500000005, 7.255630300000001 51.5258472, 7.255164300000001 51.525501500000004, 7.2549133 51.525413400000005, 7.2547775 51.5253482, 7.255266000000001 51.525215900000006, 7.2550962000000006 51.52503230000001, 7.2549362 51.5248384, 7.254938200000001 51.5247344, 7.2549413000000005 51.5241934, 7.2548633 51.5240555, 7.2547953000000005 51.5239495, 7.2548443 51.5238765, 7.2549812000000005 51.523666500000004, 7.2551522 51.523472500000004, 7.255128200000001 51.523289500000004, 7.2550542 51.523182600000005, 7.2548133 51.522873600000004, 7.2548143000000005 51.522690600000004, 7.254815300000001 51.522594600000005, 7.2548453 51.5224496, 7.254867300000001 51.5223207, 7.2548943 51.522167700000004, 7.2549063 51.5219807, 7.254804300000001 51.5214088, 7.2549163000000005 51.5214088, 7.2550132000000005 51.5214088, 7.2553222 51.521404800000006, 7.2553352 51.5212068, 7.255389200000001 51.520996800000006, 7.2554182 51.520881800000005, 7.255452200000001 51.520774800000005, 7.2554772000000005 51.520698800000005, 7.255498200000001 51.5205958, 7.2555132 51.520504900000006, 7.255503200000001 51.5204049, 7.2554892 51.520259900000006, 7.255397200000001 51.5200199, 7.2553152 51.519981900000005, 7.2552402 51.519939900000004, 7.2551012 51.519885900000006, 7.254511300000001 51.5198559, 7.2540434000000005 51.5198289, 7.2539734000000005 51.519874900000005, 7.253880400000001 51.5199319, 7.253453500000001 51.51989390000001, 7.253205500000001 51.5199019, 7.2530815 51.519897900000004, 7.2528696 51.519897900000004, 7.2526096 51.5199859, 7.252491600000001 51.519973900000004, 7.2523526 51.519958900000006, 7.252324700000001 51.5200389, 7.252254700000001 51.520237900000005, 7.252227700000001 51.5203179, 7.252190400000001 51.5210288, 7.2524500000000005 51.5212992, 7.2525507000000005 51.5215748, 7.2526706 51.521728700000004, 7.252667300000001 51.5217539, 7.2526850000000005 51.5218507, 7.252672400000001 51.5218877, 7.2526454000000005 51.521943400000005, 7.252643000000001 51.521957, 7.2525588 51.522027800000004, 7.2525376 51.5220466, 7.2521611 51.522264400000005, 7.252066500000001 51.5224783, 7.251781200000001 51.522784200000004, 7.251729200000001 51.5228417, 7.251680100000001 51.5228751, 7.251617400000001 51.522889500000005, 7.2514016 51.5228716, 7.2507824 51.5230217, 7.2505796 51.523093700000004, 7.250444000000001 51.523202700000006, 7.250326 51.5233707, 7.249983800000001 51.523943900000006, 7.249778600000001 51.5242876, 7.2497492 51.5242645, 7.2484146 51.523628, 7.2482787 51.5235709, 7.2483817 51.523442900000006, 7.248592800000001 51.522992, 7.2486253000000005 51.522961200000005, 7.2485445 51.5227068, 7.2485027 51.522585600000006, 7.248469200000001 51.522518600000005, 7.248282400000001 51.5220903, 7.2481879000000005 51.521956200000005, 7.2480495000000005 51.521776300000006, 7.2479962 51.521737300000005, 7.247904200000001 51.521672200000005, 7.247763900000001 51.521587200000006, 7.2464105000000005 51.5213857, 7.245792600000001 51.521289800000005, 7.2457026 51.5212828, 7.2454327 51.5212598, 7.2449348 51.5212178, 7.2448788 51.52119080000001, 7.244733800000001 51.52119080000001, 7.2438719 51.5210998, 7.243456 51.5210578, 7.243358000000001 51.5210458, 7.2426561000000005 51.52108380000001, 7.241441300000001 51.521148800000006, 7.240942400000001 51.5212258, 7.2402715 51.52100780000001, 7.240191500000001 51.520980800000004, 7.2399965 51.5209398, 7.239991000000001 51.520937700000005, 7.2397435 51.5208858, 7.239466200000001 51.520849000000005, 7.238673400000001 51.5206376, 7.2382290000000005 51.5205137, 7.2380022 51.5204388, 7.237988400000001 51.5204261, 7.237969700000001 51.5203963, 7.238035900000001 51.5203069, 7.2380895 51.5200674, 7.238139100000001 51.52004650000001, 7.238652500000001 51.5201021, 7.239234300000001 51.519641, 7.238759600000001 51.519387900000005, 7.238504900000001 51.519020100000006, 7.2385066 51.5187607, 7.238389000000001 51.51861340000001, 7.238101500000001 51.5185924, 7.2379435 51.518586000000006, 7.2379072 51.5185839, 7.237793000000001 51.518579300000006, 7.237763500000001 51.5185777, 7.237743200000001 51.518576800000005, 7.237768000000001 51.518422, 7.2378175 51.518137, 7.2377823 51.518131600000004, 7.237185500000001 51.51803030000001, 7.2372646000000005 51.5182876, 7.237214700000001 51.518485500000004, 7.237082200000001 51.518624900000006, 7.236786800000001 51.518798200000006, 7.2364652000000005 51.518980000000006, 7.236332600000001 51.5190484, 7.235979700000001 51.5192149, 7.235770400000001 51.51928160000001, 7.2356239 51.5193415, 7.2351621 51.519453500000004, 7.2345132 51.5195817, 7.234173500000001 51.5196151, 7.2340156 51.5195924, 7.2336304 51.519135000000006, 7.2332925 51.518982, 7.2330645 51.518677000000004, 7.2328125000000005 51.518207600000004, 7.232716600000001 51.5180291, 7.230657600000001 51.5177321, 7.230371900000001 51.5176974, 7.2303945 51.5175673, 7.2304228 51.5174734, 7.2304567 51.5174402, 7.230235700000001 51.517352200000005, 7.2301495000000005 51.5172846, 7.2301606000000005 51.5172193, 7.230349400000001 51.517219700000005, 7.230372900000001 51.516854200000004, 7.2299937000000005 51.5160537, 7.2301039000000005 51.5159912, 7.230391200000001 51.51583, 7.230939200000001 51.515731, 7.230688300000001 51.5153892, 7.2306783 51.515274700000006, 7.230721900000001 51.5151496, 7.230941100000001 51.5148378, 7.2311363 51.5146067, 7.2312754 51.5144827, 7.231321400000001 51.5142498, 7.2312604 51.514166100000004, 7.231230500000001 51.5141251, 7.231284400000001 51.5139901, 7.231214700000001 51.513855400000004, 7.231203300000001 51.5138459, 7.2310964 51.513722800000004, 7.231065500000001 51.5136474, 7.2310957 51.5136024, 7.2311776000000005 51.513536, 7.2314121 51.5134028, 7.2318617000000005 51.513227900000004, 7.232033800000001 51.5131893, 7.232367000000001 51.5131414, 7.232549100000001 51.513092500000006, 7.2326774 51.5130409, 7.232954800000001 51.5128896, 7.233138800000001 51.5128062, 7.233182200000001 51.512764700000005, 7.233144500000001 51.5124749, 7.2331734 51.512353100000006, 7.2331532 51.5122342, 7.2329955 51.512058, 7.233012700000001 51.512036300000005, 7.2332 51.5119642, 7.233660700000001 51.5119823, 7.234051 51.5120632, 7.2342347 51.512136700000006, 7.2344106 51.5123071, 7.234505800000001 51.5123674, 7.234585900000001 51.512089200000005, 7.2345993 51.512079500000006, 7.234630900000001 51.5120141, 7.234717300000001 51.5119375, 7.234711000000001 51.5118744, 7.234638100000001 51.5118359, 7.2346329 51.5117923, 7.2345692 51.511763, 7.2345246 51.511670900000006, 7.2344800000000005 51.511659200000004, 7.2344454 51.511627100000005, 7.2344575 51.511574700000004, 7.2344384 51.5115634, 7.2343406 51.5115573, 7.234316400000001 51.511515700000004, 7.2343067 51.511515100000004, 7.2343117 51.511408900000006, 7.234287900000001 51.5113971, 7.234115900000001 51.511368600000004, 7.2341224 51.5113026, 7.2322378 51.511351000000005, 7.227424500000001 51.5128974, 7.2298518000000005 51.5100862, 7.230791300000001 51.509814600000006, 7.2312311000000005 51.509720300000005, 7.232407 51.509486, 7.232667800000001 51.509424800000005, 7.232793900000001 51.5093522, 7.2329268 51.509342100000005, 7.233745900000001 51.509121900000004, 7.2440264 51.507326000000006, 7.2468501000000005 51.506705200000006, 7.2498711 51.5059866, 7.250083900000001 51.505936000000005, 7.250666300000001 51.503666700000004, 7.2505826 51.503632800000005, 7.250379400000001 51.5036361, 7.2502829 51.5036518, 7.250155500000001 51.5036585, 7.2500143 51.5036336, 7.2498712 51.503635300000006, 7.2498279000000005 51.5036082, 7.2496442000000005 51.503586500000004, 7.2495305000000005 51.5035481, 7.2492459 51.5034932, 7.2490987 51.503498400000005, 7.2487580000000005 51.5032706, 7.2485626000000005 51.503174300000005, 7.248342 51.5031041, 7.248238300000001 51.5030373, 7.247889300000001 51.5029685, 7.247666700000001 51.5028942, 7.247542 51.5028383, 7.2473871 51.502785300000006, 7.2472959 51.5026208, 7.247174500000001 51.5025983, 7.2470511 51.5026145, 7.246882200000001 51.5026116, 7.2468399 51.5026492, 7.246745400000001 51.502649600000005, 7.246648800000001 51.502622, 7.2464114 51.5026183, 7.246273400000001 51.5025758, 7.2452198 51.5018353, 7.2392666000000006 51.501228700000006, 7.239674300000001 51.500072800000005, 7.2384363 51.500157400000006, 7.2392016 51.499098000000004, 7.240290600000001 51.4976141, 7.2436172 51.495909700000006, 7.247362900000001 51.4955398, 7.247864300000001 51.4946901, 7.2485755 51.493789400000004, 7.248754000000001 51.49354760000001, 7.2490373 51.4931397, 7.249042 51.493113400000006, 7.2490299 51.493087100000004, 7.2490071 51.493068300000004, 7.248982700000001 51.493058600000005, 7.2483921 51.492850600000004, 7.248583000000001 51.4927057, 7.2486477 51.4927385, 7.248869000000001 51.4928187, 7.2491956 51.492920100000006, 7.2495061000000005 51.4930127, 7.2499583 51.4931399, 7.2504135000000005 51.4924521, 7.250428 51.492431, 7.2505353 51.492456700000005, 7.2511073 51.4915948, 7.251218000000001 51.4916246, 7.2514848 51.491230300000005, 7.2517081 51.491301500000006, 7.2521392 51.4908975, 7.2523992 51.489682800000004, 7.2524142000000005 51.4894903, 7.2523767 51.489183800000006, 7.2523118 51.4889589, 7.251596200000001 51.4871872, 7.251475500000001 51.486933300000004, 7.251326000000001 51.486691, 7.2512676 51.486681100000006, 7.2511777 51.4866569, 7.251112000000001 51.486630100000006, 7.2510409000000005 51.486594200000006, 7.2509645 51.4865441, 7.2508746 51.4864765, 7.2507378000000005 51.4863688, 7.2506225 51.4862936, 7.25053 51.4862468, 7.2504213 51.4861992, 7.2503409 51.4861683, 7.2503818 51.486126600000006, 7.2502604 51.4860769, 7.2502181000000006 51.4861178, 7.2473198000000005 51.4849674, 7.247356900000001 51.4849286, 7.2470572 51.4848088, 7.247019000000001 51.4848488, 7.2466629000000005 51.4847127, 7.246293400000001 51.4845904, 7.2456785 51.484417500000006, 7.245721400000001 51.484356500000004, 7.2448155000000005 51.4841093, 7.244720300000001 51.4841327, 7.244707600000001 51.4841519, 7.244484600000001 51.4840901, 7.2453848 51.483131300000004, 7.2478347 51.483945000000006, 7.2497682 51.484292800000006, 7.2503709 51.4844012, 7.2526036000000005 51.484802900000005, 7.255492500000001 51.485174, 7.2557708000000005 51.4851383, 7.2566199000000005 51.4850489, 7.257353800000001 51.4849436, 7.258048400000001 51.4848134, 7.2587918 51.4846492, 7.2593578 51.4845169, 7.2599258 51.484377, 7.261123400000001 51.4841198, 7.262154000000001 51.483872100000006, 7.2626809 51.483787400000004, 7.2626971000000005 51.483759000000006, 7.2630606 51.4836679, 7.2634723 51.483541800000005, 7.264187300000001 51.483374100000006, 7.2650736 51.4831798, 7.2654243 51.48309080000001, 7.265433000000001 51.4830662, 7.2654323000000005 51.483040300000006, 7.265541000000001 51.483012300000006, 7.265552400000001 51.4830228, 7.265571100000001 51.483032400000006, 7.265593900000001 51.4830399, 7.2656147 51.483047000000006, 7.2656704 51.4830533, 7.2656992 51.483051200000006, 7.265728 51.483047000000006, 7.266790200000001 51.482809800000005, 7.2674373 51.4826854, 7.2692437000000005 51.482378000000004, 7.2697970000000005 51.482302000000004, 7.270313300000001 51.482244200000004, 7.271287200000001 51.4821942, 7.271406000000001 51.482228500000005, 7.2720986000000005 51.482218800000005, 7.272047400000001 51.482190300000006, 7.273028500000001 51.482150700000005, 7.2733287 51.482115500000006, 7.2735826 51.48205170000001, 7.2755466 51.4819595, 7.2762221 51.4819546, 7.2773393 51.481930600000005, 7.2782701 51.481963900000004, 7.2775803 51.4868171, 7.2777786 51.4870807, 7.2783519000000005 51.4871477, 7.279870000000001 51.4872613, 7.281894200000001 51.487276300000005, 7.2823864 51.487231300000005, 7.283078400000001 51.487072700000006, 7.2838219 51.4870384, 7.285019900000001 51.4868176, 7.2868580000000005 51.4862605, 7.2880723000000005 51.486944400000006, 7.2875278 51.4875175, 7.288529100000001 51.487980300000004, 7.289297800000001 51.4883499, 7.289148900000001 51.4885047, 7.289867200000001 51.488847500000006, 7.2897587 51.488842000000005, 7.289464400000001 51.488865700000005, 7.2890544 51.4888945, 7.288911400000001 51.489017800000006, 7.2892368 51.4891653, 7.289352 51.489243300000005, 7.2894331 51.4893227, 7.289494400000001 51.4894929, 7.289714600000001 51.4896121, 7.289735 51.4896668, 7.289902700000001 51.4897636, 7.2899067 51.4898158, 7.290061400000001 51.489981300000004, 7.2900764 51.4900305, 7.2900593 51.4901512, 7.2900979 51.490194100000004, 7.290191900000001 51.4902613, 7.2903422 51.4903387, 7.2903494 51.4903721, 7.2904005000000005 51.490391800000005, 7.2904359 51.4904353, 7.290357500000001 51.490489200000006, 7.2903504 51.4905212, 7.290374900000001 51.490564500000005, 7.2903868 51.490574200000005, 7.290575700000001 51.490641100000005, 7.290628300000001 51.490672, 7.290719500000001 51.4907084, 7.290852 51.4908061, 7.2912077 51.4910391, 7.2912663 51.491086200000005, 7.2913126 51.4911418, 7.2913304000000005 51.491188, 7.2913392 51.49127420000001, 7.2913167 51.4915377, 7.291318700000001 51.4916083, 7.291386900000001 51.491694700000004, 7.291767500000001 51.492079600000004, 7.2918148 51.49212300000001, 7.2918348 51.492167200000004, 7.291856500000001 51.4922745, 7.2918776 51.4923182, 7.291933500000001 51.4923914, 7.2919897 51.492463900000004, 7.292025400000001 51.492502, 7.2921974 51.492668800000004, 7.292253700000001 51.4926364, 7.2924122 51.49256870000001, 7.292618200000001 51.4927414, 7.292769000000001 51.4928912, 7.294954100000001 51.4943943, 7.2956548 51.4948856, 7.2955519 51.49490410000001, 7.297786100000001 51.4963953, 7.2977565 51.4964042, 7.297571700000001 51.496407000000005, 7.2981289 51.4967751, 7.298007900000001 51.4967769, 7.298085500000001 51.496821700000005, 7.3008337 51.498685800000004, 7.300907400000001 51.499005000000004, 7.300989100000001 51.499284200000005, 7.3014733000000005 51.500512300000004, 7.302588200000001 51.501477400000006, 7.303134300000001 51.5017683, 7.3033063 51.501912600000004, 7.302973700000001 51.5024273, 7.3035803 51.503090400000005, 7.304094200000001 51.5031199, 7.3039896 51.504295600000006, 7.303823 51.504493700000005, 7.3038473 51.504687800000006, 7.3038419 51.5047742, 7.30402 51.5050705, 7.3042047000000005 51.5054056, 7.3043006 51.5056165, 7.3043271 51.5057668, 7.304330500000001 51.505852000000004, 7.304335200000001 51.5059727, 7.304284200000001 51.506059300000004, 7.3039592 51.5064829, 7.3038319000000005 51.506618200000005, 7.303655300000001 51.5067156, 7.3034585000000005 51.506826800000006, 7.303271400000001 51.506935600000006, 7.303047 51.5072594, 7.3024032000000005 51.507621, 7.302387 51.5076709, 7.3024779 51.5078278, 7.302639 51.5081198, 7.3026774 51.508223900000004, 7.302708300000001 51.508355300000005, 7.3027017 51.50856520000001, 7.302661400000001 51.508809600000006, 7.302611700000001 51.50911120000001, 7.302554700000001 51.5094556, 7.302537500000001 51.509559100000004, 7.3026372 51.510013900000004, 7.3026534000000005 51.5101048, 7.3026672 51.510223700000004, 7.3026786 51.510375800000006, 7.3026809 51.5108692, 7.3026811 51.511030600000005, 7.3026816000000006 51.511332, 7.3026771 51.5115478, 7.3026733 51.5117315, 7.3026702000000006 51.511878800000005, 7.3026432 51.5119436, 7.3026173000000005 51.5120057, 7.302598000000001 51.5120519, 7.302589800000001 51.512207800000006, 7.3025842 51.512315400000006, 7.3026435 51.5124964, 7.3027088000000004 51.5126957, 7.302729 51.512757500000006, 7.3027901 51.512954300000004, 7.302819 51.513047500000006, 7.3031255 51.514298700000005, 7.303455100000001 51.5148382, 7.3036687 51.5151879, 7.303748700000001 51.515322100000006, 7.303770800000001 51.515387100000005, 7.3037619000000005 51.5154488, 7.3037574 51.515530500000004, 7.303618500000001 51.515645000000006, 7.303499 51.515743500000006, 7.3037988 51.5159917, 7.3041087000000005 51.5162482, 7.304320000000001 51.516423, 7.3045634 51.516693100000005, 7.3045967 51.516848100000004, 7.304601900000001 51.516867000000005, 7.3045974000000005 51.516940500000004, 7.3046603 51.516995900000005, 7.304850500000001 51.517252400000004, 7.305017500000001 51.517453200000006, 7.3051712 51.5176364, 7.305466900000001 51.5177234, 7.3055694 51.5177537, 7.305683 51.5177872, 7.3058746 51.5178668, 7.306073700000001 51.5179527, 7.3060982 51.51796220000001, 7.306122500000001 51.5179704, 7.3061479 51.51797800000001, 7.3062103 51.517992500000005, 7.306337200000001 51.518016200000005, 7.3064745 51.518045900000004, 7.3068473 51.517754200000006, 7.3070738 51.5178844, 7.3073011 51.518015000000005, 7.3075986 51.518186, 7.3078308000000005 51.5183194, 7.308206 51.518535, 7.308057700000001 51.5186355, 7.307924900000001 51.51872770000001, 7.307518300000001 51.51864320000001, 7.3075941 51.518827300000005, 7.3076601000000005 51.5188733, 7.3077171000000005 51.5189097, 7.307782100000001 51.518943300000004, 7.307851 51.518973900000006, 7.3079185 51.5190015, 7.3080191 51.519040000000004, 7.3082253 51.5191115, 7.3083803000000005 51.5191601, 7.308508300000001 51.5191961, 7.308620400000001 51.519221800000004, 7.308688 51.5192387, 7.308735 51.519252800000004, 7.3087694 51.51926520000001, 7.3088107 51.5192823, 7.3088759 51.5193154, 7.3089192 51.5193414, 7.3089566 51.5193675, 7.3089962 51.5193972, 7.309031500000001 51.519426800000005, 7.309039500000001 51.519434100000005, 7.3090652 51.519457800000005, 7.309151000000001 51.519547700000004, 7.309183600000001 51.519586700000005, 7.3092189 51.519632, 7.309235900000001 51.519656000000005, 7.309252300000001 51.519684100000006, 7.3092585 51.519697, 7.3092633000000005 51.519709500000005, 7.309271300000001 51.519726500000004, 7.3092816 51.5197433, 7.3092952 51.5197585, 7.309304200000001 51.51976560000001, 7.3093085 51.5197681, 7.3093256 51.5197779, 7.310133 51.520043, 7.310399 51.520111, 7.310459000000001 51.520173, 7.310512 51.5202679, 7.310658900000001 51.520538900000005, 7.3107739 51.520690900000005, 7.310898900000001 51.5206339, 7.3110869 51.5206269, 7.3116479000000005 51.5208224, 7.3125999 51.5212944, 7.3128675 51.521370700000006, 7.3130712 51.5214056, 7.3133115 51.52144680000001, 7.3136415 51.5214768, 7.3136815 51.5214128, 7.3138315 51.5211568, 7.3139551 51.521216900000006, 7.314597300000001 51.521526800000004, 7.3145923 51.5217858, 7.3145923 51.5218628, 7.314656200000001 51.5220604, 7.314380600000001 51.522234600000004, 7.3142407 51.5223336, 7.3140381 51.522575200000006, 7.314316900000001 51.522742400000006, 7.314263700000001 51.522830600000006, 7.3141008 51.5229781, 7.314344800000001 51.523096800000005, 7.3144033 51.523131500000005, 7.3142471 51.5232709, 7.3142054000000005 51.52334320000001, 7.314036400000001 51.5235138, 7.3131208 51.5232905, 7.3131268 51.5237604, 7.313036800000001 51.5241094, 7.3129458000000005 51.5240833, 7.3129289 51.5241674, 7.3120839 51.523938400000006, 7.3112491 51.5237464, 7.3106742 51.5236455, 7.310596100000001 51.5240583, 7.3104591 51.5241291, 7.310446300000001 51.5241357, 7.3095213 51.525989200000005, 7.3089414 51.526382100000006, 7.3087974 51.526330200000004, 7.3085385 51.5264151, 7.3081085 51.526172200000005, 7.3059579 51.525725200000004, 7.3041581 51.5254363, 7.303199200000001 51.52760000000001)) +List(POLYGON ((7.383654600000001 51.476886, 7.3834866 51.476838300000004, 7.383472500000001 51.476884500000004, 7.3830618 51.4771763, 7.3828936 51.4772946, 7.38257 51.4775226, 7.382604700000001 51.4775404, 7.3819616 51.477992, 7.3817341 51.478153500000005, 7.381134500000001 51.4785697, 7.3808112 51.478798700000006, 7.3806475 51.478590600000004, 7.380645400000001 51.478498800000004, 7.380596000000001 51.4782681, 7.380489900000001 51.478155300000005, 7.380248900000001 51.478014200000004, 7.379780200000001 51.47786850000001, 7.3795279 51.4778223, 7.3792761 51.4778237, 7.3790865000000005 51.4778439, 7.3787887 51.4778942, 7.3782658 51.477955400000006, 7.3780748 51.477984600000006, 7.3777385 51.47803570000001, 7.377640400000001 51.478038600000005, 7.3741405 51.4773301, 7.374024500000001 51.477325, 7.3740506 51.4771931, 7.3740405 51.4769694, 7.3715817 51.476447, 7.371449500000001 51.4765871, 7.3713255 51.4767689, 7.3712175 51.477092000000006, 7.370973500000001 51.4776085, 7.370941500000001 51.477850100000005, 7.3709122 51.477865900000005, 7.3709015 51.478149900000005, 7.3709534 51.4784067, 7.3710164 51.478563400000006, 7.3713644 51.4791013, 7.3713445 51.4792518, 7.3712906 51.479463900000006, 7.371466600000001 51.4800217, 7.3715044 51.4801567, 7.371554100000001 51.480378300000005, 7.371936600000001 51.48042220000001, 7.3726542 51.4801973, 7.3713245 51.4827165, 7.369721 51.4824179, 7.3692634 51.4823273, 7.3682375 51.4821358, 7.367339100000001 51.481965, 7.3675711 51.481498900000005, 7.366562 51.481306000000004, 7.3664535 51.4812426, 7.365069200000001 51.4809707, 7.3650349 51.480964, 7.3650457000000005 51.4809301, 7.3646687 51.480844600000005, 7.364643 51.4808728, 7.3645443 51.4809077, 7.3643803000000005 51.480945500000004, 7.3642658 51.4809209, 7.3639602 51.4807331, 7.363518200000001 51.480514500000005, 7.363302200000001 51.4804085, 7.362756 51.480138600000004, 7.3625826000000005 51.4803499, 7.3616375000000005 51.4800539, 7.361277800000001 51.4800151, 7.3612498 51.480528500000005, 7.3606636000000005 51.480515600000004, 7.360645300000001 51.4806017, 7.359951400000001 51.4805289, 7.3598781 51.4805227, 7.3593229000000004 51.480915200000005, 7.3591921000000005 51.4809458, 7.3590809 51.480956400000004, 7.3586321 51.4808783, 7.357876500000001 51.4806973, 7.357789 51.480770400000004, 7.3575403 51.480974200000006, 7.3567736 51.4815339, 7.3566497 51.4816396, 7.3564316000000005 51.481901900000004, 7.356209300000001 51.482253400000005, 7.356126300000001 51.482282700000006, 7.3558235000000005 51.482236500000006, 7.3554579 51.482171400000006, 7.3551305000000005 51.4820931, 7.3546597 51.4819273, 7.354590900000001 51.4819663, 7.3541603 51.482413900000005, 7.3540466 51.482601200000005, 7.353949500000001 51.4828861, 7.353753 51.4836539, 7.3536624 51.4843199, 7.3530258 51.484340200000005, 7.3529197 51.4837411, 7.352243700000001 51.4836219, 7.3513732 51.4836006, 7.3512953 51.4836024, 7.351340100000001 51.4822501, 7.3506084000000005 51.4822526, 7.349354000000001 51.482116500000004, 7.3487844 51.4820167, 7.3481734 51.482647, 7.3484274 51.482804200000004, 7.3480796 51.483154600000006, 7.3477382 51.4830453, 7.3476344000000005 51.4830697, 7.3476675 51.4831432, 7.347828700000001 51.4833331, 7.3478215 51.483402100000006, 7.347875500000001 51.483788100000005, 7.347907500000001 51.483924300000005, 7.3477315 51.4840851, 7.347523600000001 51.484312300000006, 7.347148300000001 51.484196100000005, 7.346218500000001 51.484045900000005, 7.345941300000001 51.4839818, 7.344861000000001 51.483793000000006, 7.344584 51.4840803, 7.3445451 51.484065300000005, 7.3443471 51.483951100000006, 7.344118000000001 51.48384110000001, 7.343606800000001 51.483586, 7.3432034 51.4833732, 7.3428212 51.4834411, 7.3425181 51.483503400000004, 7.342369400000001 51.4836272, 7.342301300000001 51.483746100000005, 7.342012700000001 51.484220400000005, 7.342122300000001 51.484337000000004, 7.3418254 51.484692, 7.341656400000001 51.484894000000004, 7.3413364 51.485304400000004, 7.341121500000001 51.4854739, 7.3409525 51.485599900000004, 7.3407325000000005 51.485811000000005, 7.3404436 51.485942800000004, 7.3403556000000005 51.4859968, 7.340286600000001 51.4860808, 7.3402276 51.4862138, 7.3402412 51.48635530000001, 7.340318600000001 51.486476800000005, 7.3403596 51.4865768, 7.3403906 51.4866528, 7.340304100000001 51.4867173, 7.340421600000001 51.4868857, 7.3404416 51.487140700000005, 7.3404426 51.4872207, 7.3404486 51.487331700000006, 7.340540600000001 51.487373700000006, 7.3407565 51.4874767, 7.3408375 51.4874657, 7.3409095 51.48749170000001, 7.3410615 51.4875527, 7.3411005000000005 51.487930600000006, 7.3412975000000005 51.488895500000005, 7.341573400000001 51.488842500000004, 7.3424633 51.488670500000005, 7.3428949 51.490144400000005, 7.343505100000001 51.4904403, 7.3435223 51.490512100000004, 7.3435281 51.4905363, 7.343519400000001 51.490802800000004, 7.3436301 51.491201000000004, 7.3437011000000005 51.49136420000001, 7.3437251 51.4914822, 7.3435411 51.491539200000005, 7.3427252 51.4917682, 7.3426312000000005 51.491711200000005, 7.342875200000001 51.493138, 7.339698200000001 51.4932372, 7.3399147000000005 51.4939686, 7.340019000000001 51.4942702, 7.3400245 51.494287, 7.3403929 51.4953269, 7.338969400000001 51.4954436, 7.3376296000000005 51.495997700000004, 7.336915100000001 51.495543100000006, 7.336745700000001 51.4956587, 7.336561700000001 51.4957946, 7.3362312 51.496066600000006, 7.3361833 51.4960521, 7.3360604 51.4959946, 7.3359734 51.4959409, 7.3357036 51.4957927, 7.3356012 51.4957744, 7.3354821 51.495825200000006, 7.335303700000001 51.495770400000005, 7.334315500000001 51.4956977, 7.334243900000001 51.495687800000006, 7.334213500000001 51.4959647, 7.3341295 51.496219700000005, 7.3329887000000005 51.4965096, 7.330549 51.496595400000004, 7.3306291 51.4954266, 7.330593400000001 51.495382500000005, 7.3305240000000005 51.4947858, 7.330533000000001 51.4945839, 7.330831000000001 51.494579900000005, 7.330993 51.494579900000005, 7.3313049 51.494579900000005, 7.3315539 51.49313, 7.329909000000001 51.4929852, 7.3297163 51.492944800000004, 7.3293682 51.4922951, 7.3292992 51.4921571, 7.329207200000001 51.492028100000006, 7.3288573 51.4915122, 7.328684300000001 51.4912532, 7.3284054 51.4904943, 7.328188000000001 51.489989, 7.3280554 51.489975400000006, 7.3277495 51.490017400000006, 7.3275835 51.490040400000005, 7.3273045 51.490082400000006, 7.327109600000001 51.48965140000001, 7.3270116000000005 51.4894794, 7.326829600000001 51.489311400000005, 7.3267956000000005 51.489143500000004, 7.326624600000001 51.4891395, 7.3260917 51.489132500000004, 7.3254228 51.4891245, 7.325242 51.489268100000004, 7.325100900000001 51.4894374, 7.325119000000001 51.489632900000004, 7.3247219 51.4896934, 7.324338 51.489674400000006, 7.324215000000001 51.489674400000006, 7.323988000000001 51.489666400000004, 7.3239030000000005 51.48965140000001, 7.323776100000001 51.4896284, 7.3236131 51.4895974, 7.323705100000001 51.489207, 7.3234317 51.489184300000005, 7.323251600000001 51.48962280000001, 7.3229768 51.4901874, 7.3229452 51.490458000000004, 7.3229363 51.4905224, 7.3230262 51.490521300000005, 7.323236100000001 51.4905173, 7.3229169 51.4926472, 7.3230716000000005 51.4926692, 7.323301300000001 51.492711400000005, 7.323300700000001 51.4927489, 7.3232971000000004 51.492810000000006, 7.3227292 51.49367590000001, 7.322610200000001 51.4938549, 7.3224413 51.4941109, 7.3224103000000005 51.494255900000006, 7.3223913000000005 51.49434290000001, 7.3223270000000005 51.4945462, 7.3223091 51.4946028, 7.3222871000000005 51.494643800000006, 7.3206262 51.4943418, 7.3190315 51.4940871, 7.3176066 51.4939108, 7.3174061 51.493886, 7.317365700000001 51.493885600000006, 7.3173398 51.4939424, 7.317332100000001 51.4939672, 7.3173007000000005 51.4940555, 7.3172823000000005 51.4944081, 7.3171013 51.494698500000005, 7.3168189 51.4952684, 7.316575200000001 51.4958061, 7.3162532 51.496036700000005, 7.316191300000001 51.496319, 7.3162222 51.497066600000004, 7.3163122000000005 51.4984024, 7.3166621 51.498444400000004, 7.3167571 51.498455400000005, 7.3170910000000005 51.4985584, 7.317252000000001 51.4985924, 7.317366000000001 51.498615400000006, 7.3176120000000004 51.4986844, 7.3180699 51.4988444, 7.318281900000001 51.4989204, 7.3184228000000004 51.4989703, 7.318768800000001 51.4990463, 7.318295900000001 51.499287300000006, 7.3182019 51.4993363, 7.3184858 51.4994743, 7.3186708000000005 51.4995613, 7.318946800000001 51.4995733, 7.319156700000001 51.4996573, 7.319215700000001 51.4997753, 7.319251700000001 51.500080200000006, 7.3186388 51.5013961, 7.317814800000001 51.5034554, 7.317791400000001 51.503599300000005, 7.3177585 51.503728800000005, 7.3177262 51.5039595, 7.317671900000001 51.504348400000005, 7.3176288000000005 51.504557600000005, 7.3176081 51.5046005, 7.3176281 51.50485380000001, 7.317535500000001 51.505098100000005, 7.3175036 51.50542110000001, 7.317430300000001 51.505454900000004, 7.317261500000001 51.5060184, 7.316552300000001 51.505995600000006, 7.3162167 51.5059035, 7.315613900000001 51.5059234, 7.3156109 51.505518900000006, 7.315144900000001 51.5055161, 7.3151412 51.5053527, 7.3152695 51.5053518, 7.315278200000001 51.505196100000006, 7.315005500000001 51.5051605, 7.3150056 51.505152900000006, 7.3150132 51.505105500000006, 7.314957700000001 51.5050468, 7.3148685 51.5049822, 7.3148493000000006 51.5048497, 7.3145771 51.5047645, 7.314301800000001 51.5045596, 7.3139184 51.504317300000004, 7.313862 51.5042896, 7.313808600000001 51.504268200000006, 7.313710400000001 51.5042399, 7.313498500000001 51.504211500000004, 7.313445400000001 51.50420930000001, 7.3123572 51.504223200000006, 7.312057800000001 51.504224900000004, 7.310895400000001 51.50416310000001, 7.309963000000001 51.504127100000005, 7.3096848 51.504128200000004, 7.3092915000000005 51.504110100000005, 7.309078700000001 51.504123, 7.3088663 51.504201900000005, 7.308392100000001 51.504452, 7.3083175 51.50440630000001, 7.3077806 51.504412200000004, 7.307217700000001 51.5044291, 7.3066678000000005 51.504452500000006, 7.306510800000001 51.504455300000004, 7.306215600000001 51.5044747, 7.3057547000000005 51.504482700000004, 7.3054768 51.5044637, 7.3040934 51.504308800000004, 7.3039896 51.504295600000006, 7.303823 51.504493700000005, 7.3038473 51.504687800000006, 7.3038419 51.5047742, 7.30402 51.5050705, 7.3042047000000005 51.5054056, 7.3043006 51.5056165, 7.3043271 51.5057668, 7.304330500000001 51.505852000000004, 7.304335200000001 51.5059727, 7.304284200000001 51.506059300000004, 7.3039592 51.5064829, 7.3038319000000005 51.506618200000005, 7.303655300000001 51.5067156, 7.3034585000000005 51.506826800000006, 7.303271400000001 51.506935600000006, 7.303047 51.5072594, 7.3024032000000005 51.507621, 7.302387 51.5076709, 7.3024779 51.5078278, 7.302639 51.5081198, 7.3026774 51.508223900000004, 7.302708300000001 51.508355300000005, 7.3027017 51.50856520000001, 7.302661400000001 51.508809600000006, 7.302611700000001 51.50911120000001, 7.302554700000001 51.5094556, 7.302537500000001 51.509559100000004, 7.3026372 51.510013900000004, 7.3026534000000005 51.5101048, 7.3026672 51.510223700000004, 7.3026786 51.510375800000006, 7.3026809 51.5108692, 7.3026811 51.511030600000005, 7.3026816000000006 51.511332, 7.3026771 51.5115478, 7.3026733 51.5117315, 7.3026702000000006 51.511878800000005, 7.3026432 51.5119436, 7.3026173000000005 51.5120057, 7.302598000000001 51.5120519, 7.302589800000001 51.512207800000006, 7.3025842 51.512315400000006, 7.3026435 51.5124964, 7.3027088000000004 51.5126957, 7.302729 51.512757500000006, 7.3027901 51.512954300000004, 7.302819 51.513047500000006, 7.3031255 51.514298700000005, 7.303455100000001 51.5148382, 7.3036687 51.5151879, 7.303748700000001 51.515322100000006, 7.303770800000001 51.515387100000005, 7.3037619000000005 51.5154488, 7.3037574 51.515530500000004, 7.303618500000001 51.515645000000006, 7.303499 51.515743500000006, 7.3037988 51.5159917, 7.3041087000000005 51.5162482, 7.304320000000001 51.516423, 7.3045634 51.516693100000005, 7.3045967 51.516848100000004, 7.304601900000001 51.516867000000005, 7.3045974000000005 51.516940500000004, 7.3046603 51.516995900000005, 7.304850500000001 51.517252400000004, 7.305017500000001 51.517453200000006, 7.3051712 51.5176364, 7.305466900000001 51.5177234, 7.3055694 51.5177537, 7.305683 51.5177872, 7.3058746 51.5178668, 7.306073700000001 51.5179527, 7.3060982 51.51796220000001, 7.306122500000001 51.5179704, 7.3061479 51.51797800000001, 7.3062103 51.517992500000005, 7.306337200000001 51.518016200000005, 7.3064745 51.518045900000004, 7.3068473 51.517754200000006, 7.3070738 51.5178844, 7.3073011 51.518015000000005, 7.3075986 51.518186, 7.3078308000000005 51.5183194, 7.308206 51.518535, 7.308057700000001 51.5186355, 7.307924900000001 51.51872770000001, 7.307518300000001 51.51864320000001, 7.3075941 51.518827300000005, 7.3076601000000005 51.5188733, 7.3077171000000005 51.5189097, 7.307782100000001 51.518943300000004, 7.307851 51.518973900000006, 7.3079185 51.5190015, 7.3080191 51.519040000000004, 7.3082253 51.5191115, 7.3083803000000005 51.5191601, 7.308508300000001 51.5191961, 7.308620400000001 51.519221800000004, 7.308688 51.5192387, 7.308735 51.519252800000004, 7.3087694 51.51926520000001, 7.3088107 51.5192823, 7.3088759 51.5193154, 7.3089192 51.5193414, 7.3089566 51.5193675, 7.3089962 51.5193972, 7.309031500000001 51.519426800000005, 7.309039500000001 51.519434100000005, 7.3090652 51.519457800000005, 7.309151000000001 51.519547700000004, 7.309183600000001 51.519586700000005, 7.3092189 51.519632, 7.309235900000001 51.519656000000005, 7.309252300000001 51.519684100000006, 7.3092585 51.519697, 7.3092633000000005 51.519709500000005, 7.309271300000001 51.519726500000004, 7.3092816 51.5197433, 7.3092952 51.5197585, 7.309304200000001 51.51976560000001, 7.3093085 51.5197681, 7.3093256 51.5197779, 7.310133 51.520043, 7.310399 51.520111, 7.310459000000001 51.520173, 7.310512 51.5202679, 7.310658900000001 51.520538900000005, 7.3107739 51.520690900000005, 7.310898900000001 51.5206339, 7.3110869 51.5206269, 7.3116479000000005 51.5208224, 7.3125999 51.5212944, 7.3128675 51.521370700000006, 7.3130712 51.5214056, 7.3133115 51.52144680000001, 7.3136415 51.5214768, 7.3136815 51.5214128, 7.3138315 51.5211568, 7.3139551 51.521216900000006, 7.314597300000001 51.521526800000004, 7.3145923 51.5217858, 7.3145923 51.5218628, 7.314656200000001 51.5220604, 7.315209500000001 51.52225060000001, 7.315731400000001 51.5225006, 7.3158833 51.522217600000005, 7.3160943000000005 51.521888600000004, 7.319533900000001 51.522988600000005, 7.3197368 51.522526600000006, 7.3200267000000006 51.522585600000006, 7.320951600000001 51.5228575, 7.321531500000001 51.5230005, 7.3224704 51.523193500000005, 7.3236302 51.523449500000005, 7.323232300000001 51.5236364, 7.323615200000001 51.524000400000006, 7.324463100000001 51.5235994, 7.324770000000001 51.5225756, 7.3248682 51.522558100000005, 7.3261259 51.522327600000004, 7.327372700000001 51.5221516, 7.327700600000001 51.5220186, 7.3301243000000005 51.5207988, 7.3309091 51.5210498, 7.331082100000001 51.5210768, 7.3322019 51.52106070000001, 7.3325149000000005 51.521042800000004, 7.332936800000001 51.520937700000005, 7.3332828 51.520735800000004, 7.3337517000000005 51.5203038, 7.334348500000001 51.520251900000005, 7.3347211 51.5202054, 7.334806500000001 51.520293900000006, 7.335117500000001 51.520498800000006, 7.335376500000001 51.5205708, 7.3359183 51.520833800000005, 7.3365852 51.5211077, 7.3370082000000005 51.5212487, 7.3374991000000005 51.521350700000006, 7.3390339 51.5215997, 7.339794700000001 51.5217047, 7.3400023 51.5217432, 7.339935100000001 51.521862600000006, 7.340175100000001 51.5219369, 7.3402783000000005 51.5219923, 7.3404568 51.522138500000004, 7.3406257 51.522343600000006, 7.3411935 51.523211100000005, 7.3413675000000005 51.523392900000005, 7.3416066 51.523546, 7.342235400000001 51.5238585, 7.342376300000001 51.523951800000006, 7.343308700000001 51.5242638, 7.343358200000001 51.5241114, 7.343333200000001 51.523728500000004, 7.3433638000000006 51.523639900000006, 7.343462000000001 51.5233089, 7.3439912000000005 51.5235143, 7.3448047 51.523198400000005, 7.3458478000000005 51.5237325, 7.346233700000001 51.5239704, 7.3464948 51.5241325, 7.3467301 51.523394800000005, 7.3460669 51.522607, 7.3463229000000005 51.5222872, 7.3476454 51.522669900000004, 7.349844600000001 51.5233168, 7.349891 51.5232285, 7.3509970000000004 51.5234679, 7.351862400000001 51.5235099, 7.3536809000000005 51.523737100000005, 7.3543197000000005 51.522283, 7.3543262 51.5222618, 7.3545568 51.521736800000006, 7.3548948 51.5209672, 7.3549128 51.520926300000006, 7.3550551 51.5209332, 7.355197700000001 51.521002800000005, 7.355185400000001 51.5210288, 7.355416300000001 51.521073400000006, 7.355488 51.521078100000004, 7.3555627 51.520998500000005, 7.3557005 51.5210293, 7.3560518 51.5211285, 7.3561706000000004 51.521064, 7.3562674 51.521084800000004, 7.3566517000000005 51.5210906, 7.3566943 51.52109230000001, 7.356723100000001 51.521163800000004, 7.356780700000001 51.5211879, 7.356815200000001 51.5212203, 7.3570995 51.5212724, 7.3571903 51.5211587, 7.357200700000001 51.5211454, 7.357291200000001 51.521030700000004, 7.3573664 51.520935200000004, 7.3574618 51.520814200000004, 7.3575955 51.520644700000005, 7.3576154 51.5206194, 7.357828400000001 51.520744900000004, 7.3579512000000005 51.5205914, 7.358070400000001 51.5204327, 7.358334500000001 51.5200809, 7.3586052 51.5195603, 7.3586263 51.5195196, 7.3586647 51.5194727, 7.357444200000001 51.519238200000004, 7.357477800000001 51.519166600000005, 7.3576841 51.518732500000006, 7.3577539000000005 51.518717, 7.3579081 51.518748, 7.358179300000001 51.518222200000004, 7.357940200000001 51.5182075, 7.357700400000001 51.518190000000004, 7.3577158 51.518156100000006, 7.3577900000000005 51.517993700000005, 7.357871500000001 51.5178157, 7.3578881 51.5177793, 7.3579049 51.51774270000001, 7.3582536 51.5172553, 7.358261300000001 51.5172278, 7.358123900000001 51.517184500000006, 7.358139400000001 51.5171403, 7.3582359 51.5168614, 7.358297100000001 51.516685100000004, 7.358338600000001 51.516643200000004, 7.358417800000001 51.516641500000006, 7.358536600000001 51.516637900000006, 7.358698800000001 51.516632900000005, 7.3587499 51.516649, 7.3590949000000005 51.5166381, 7.3591508 51.516698000000005, 7.359159000000001 51.5167068, 7.3592314000000005 51.516737600000006, 7.3592629 51.516677800000004, 7.359296100000001 51.5166144, 7.359336300000001 51.516624, 7.3593457 51.5166088, 7.3594056000000005 51.5166077, 7.3594559 51.516606700000004, 7.3594865 51.5166076, 7.3595182 51.5165348, 7.359490900000001 51.5165348, 7.359464000000001 51.516538100000005, 7.359435 51.516538700000005, 7.3594100000000005 51.51652910000001, 7.3593982 51.5165105, 7.3594024000000005 51.516494200000004, 7.3594409 51.516423, 7.359481400000001 51.516348300000004, 7.359495900000001 51.516321500000004, 7.359559000000001 51.5162053, 7.35965 51.51603780000001, 7.3596928 51.51593080000001, 7.3596117 51.5159285, 7.3596257000000005 51.5158749, 7.3596462 51.515826000000004, 7.3594917 51.5158239, 7.3595006000000005 51.515795000000004, 7.3597476 51.5151065, 7.359873100000001 51.5147564, 7.359892500000001 51.5147023, 7.3599746 51.5144734, 7.359999500000001 51.514404000000006, 7.3600585 51.514115000000004, 7.3597222 51.514053000000004, 7.359333800000001 51.513981300000005, 7.3593475 51.5139499, 7.3593526 51.513938, 7.3594995 51.513600000000004, 7.359594800000001 51.513380500000004, 7.3596279000000004 51.513341700000005, 7.3596415 51.513325800000004, 7.3596477 51.513318500000004, 7.359659100000001 51.5133048, 7.3596693 51.513293700000006, 7.3596864 51.513274900000006, 7.3597093000000005 51.513249800000004, 7.3597592 51.513195, 7.3598078000000005 51.51314180000001, 7.3600146 51.513059000000005, 7.360129400000001 51.5130129, 7.360280800000001 51.5129523, 7.3603297 51.5129327, 7.3603304000000005 51.5129108, 7.3603316 51.5128721, 7.3603338 51.5128056, 7.3603494000000005 51.512323300000006, 7.3602103 51.512129300000005, 7.360233200000001 51.5118918, 7.3602273 51.511777300000006, 7.3602188 51.511779800000006, 7.3602240000000005 51.5117764, 7.360223100000001 51.51176400000001, 7.360225300000001 51.511763300000005, 7.3603524 51.511729, 7.3604243 51.5117028, 7.360582300000001 51.5116882, 7.3606588 51.511665300000004, 7.360696000000001 51.511628800000004, 7.3607544 51.511563300000006, 7.360858500000001 51.511428800000004, 7.360864100000001 51.511402200000006, 7.3608327000000005 51.5113743, 7.360828000000001 51.511351000000005, 7.360824 51.511330400000006, 7.360892400000001 51.511245100000004, 7.3609099 51.5111847, 7.3609230000000005 51.511166800000005, 7.3609467 51.5111338, 7.3609831 51.511130300000005, 7.3610009000000005 51.511131500000005, 7.36106 51.511135100000004, 7.3611433 51.51112800000001, 7.3612194 51.511114000000006, 7.361265 51.5111125, 7.3614201 51.51111220000001, 7.3616006 51.5111141, 7.361664800000001 51.5111001, 7.361826000000001 51.511065200000004, 7.3618901 51.5110467, 7.362004700000001 51.511034300000006, 7.3621008 51.511039000000004, 7.3622414 51.5110059, 7.362284300000001 51.510997200000006, 7.362339100000001 51.5109884, 7.362429400000001 51.511000300000006, 7.3624771 51.511023200000004, 7.362516100000001 51.5110334, 7.362577900000001 51.5110199, 7.3626355000000006 51.5110046, 7.362765700000001 51.5109702, 7.362878500000001 51.5109195, 7.3628691 51.510898100000006, 7.362858500000001 51.5108624, 7.362849000000001 51.510845, 7.362812900000001 51.510778300000005, 7.3627912 51.5107384, 7.3626635 51.510706400000004, 7.362622200000001 51.510679, 7.362620300000001 51.510666900000004, 7.3626012 51.5105483, 7.361695800000001 51.5103864, 7.3616865 51.5102993, 7.3616779 51.510257200000005, 7.361721200000001 51.510138600000005, 7.3617688 51.5097857, 7.361784500000001 51.509668700000006, 7.3618009 51.5092821, 7.3618361000000005 51.5090251, 7.361839600000001 51.509000900000004, 7.3618433 51.5089747, 7.361777200000001 51.508648, 7.3617371 51.5083454, 7.3617071 51.508030600000005, 7.361686300000001 51.507822000000004, 7.361652800000001 51.507604, 7.3616222 51.507283, 7.3615985 51.506818900000006, 7.3615861 51.50633130000001, 7.361585700000001 51.50616410000001, 7.3615665 51.505762100000005, 7.3615617 51.5056236, 7.3615585 51.5054207, 7.3615580000000005 51.505391900000006, 7.3615573 51.505352800000004, 7.3619662 51.505500100000006, 7.362292200000001 51.505642800000004, 7.362617500000001 51.505792500000005, 7.3629620000000005 51.505971200000005, 7.3631555 51.5060797, 7.3633176 51.506176100000005, 7.363612600000001 51.5063849, 7.364083000000001 51.5067735, 7.3642342 51.506892400000005, 7.3644252 51.507046700000004, 7.364614 51.5071992, 7.3647974000000005 51.507335600000005, 7.365162000000001 51.507612200000004, 7.3654812000000005 51.5078649, 7.365822700000001 51.508127900000005, 7.365998500000001 51.50825450000001, 7.3661805000000005 51.5083855, 7.366198700000001 51.5083928, 7.3662162 51.50839980000001, 7.3658611 51.508473800000004, 7.3658691 51.5084979, 7.3657721 51.5085178, 7.365755300000001 51.508521300000005, 7.364764600000001 51.5086894, 7.3648454 51.508689600000004, 7.365159800000001 51.5086996, 7.3653528 51.508721, 7.3653811000000005 51.5087241, 7.3656452 51.5087636, 7.3656689 51.5088183, 7.365695700000001 51.5088803, 7.3657108000000004 51.5089149, 7.3657412 51.508985, 7.3658029 51.5090298, 7.3661333 51.509270400000005, 7.366249600000001 51.5093551, 7.366419700000001 51.509477700000005, 7.3668165000000005 51.5097639, 7.3668456 51.509774900000004, 7.366909100000001 51.509799, 7.3669725 51.50982320000001, 7.3670549 51.5098545, 7.367190300000001 51.5099377, 7.367334100000001 51.5099974, 7.36749 51.510062100000006, 7.3675442 51.510094, 7.367798400000001 51.510282800000006, 7.367916800000001 51.510370800000004, 7.367975700000001 51.510427500000006, 7.368006800000001 51.510468100000004, 7.368020100000001 51.5105372, 7.368023000000001 51.51060510000001, 7.3681802 51.51072550000001, 7.3685223 51.5109878, 7.368479400000001 51.5111124, 7.368498700000001 51.511146800000006, 7.368555300000001 51.511164400000006, 7.368587600000001 51.511182000000005, 7.3686207 51.5111861, 7.369182800000001 51.5112571, 7.369362300000001 51.5112785, 7.3694375 51.511335300000006, 7.369616700000001 51.511500700000006, 7.3700372000000005 51.5118066, 7.3702838 51.5119363, 7.3703004000000005 51.511949400000006, 7.3705810000000005 51.5121696, 7.370686900000001 51.512252700000005, 7.370730300000001 51.51228690000001, 7.3708507 51.512371, 7.3708654000000005 51.5123812, 7.371531300000001 51.5128466, 7.3717937000000004 51.51303, 7.371869800000001 51.5130782, 7.3719574 51.513119200000006, 7.372008 51.513167800000005, 7.3720394 51.513183700000006, 7.372054500000001 51.513196, 7.3720666 51.5132059, 7.372931 51.513910300000006, 7.3730529 51.5140097, 7.3732432 51.5141647, 7.374100200000001 51.514775, 7.3747743 51.5153182, 7.3750964 51.515577500000006, 7.375162700000001 51.515582200000004, 7.375278600000001 51.5155905, 7.3753323 51.515636900000004, 7.375364500000001 51.515664900000004, 7.375416100000001 51.5156958, 7.375481400000001 51.515711200000005, 7.375555800000001 51.515715900000004, 7.375643200000001 51.5157054, 7.3756583000000004 51.5157035, 7.375698900000001 51.515703200000004, 7.3757938 51.51567300000001, 7.375959900000001 51.5155916, 7.37603 51.5155406, 7.3760446 51.5155157, 7.376097700000001 51.5154073, 7.3761779 51.515463800000006, 7.3762857 51.515539200000006, 7.376340600000001 51.515577, 7.3768498000000005 51.5159278, 7.376824600000001 51.5159663, 7.3768029 51.5159992, 7.376797700000001 51.516007200000004, 7.376855000000001 51.51605180000001, 7.376942400000001 51.51611990000001, 7.3769578000000005 51.516131800000004, 7.3769735 51.516144000000004, 7.376996500000001 51.5161619, 7.377108400000001 51.5162489, 7.377139400000001 51.516273000000005, 7.377137500000001 51.516274, 7.3771841 51.516272900000004, 7.377808000000001 51.516720600000006, 7.377936 51.51672670000001, 7.3785619 51.516748, 7.378784100000001 51.5167556, 7.3793062 51.516896800000005, 7.379338400000001 51.516900400000004, 7.379695600000001 51.5169311, 7.379876500000001 51.5169471, 7.3802681 51.516992, 7.380443400000001 51.5170126, 7.3809757000000005 51.5170977, 7.381000500000001 51.517101600000004, 7.3812815 51.5171555, 7.3812907 51.5171379, 7.3813405 51.517144900000005, 7.38133 51.517164900000004, 7.381582000000001 51.517206300000005, 7.381664600000001 51.5172199, 7.3818117 51.51712190000001, 7.382240500000001 51.5172856, 7.382351900000001 51.5173281, 7.382435900000001 51.5173465, 7.3825823 51.5173788, 7.3830244 51.517423900000004, 7.3830257 51.5174223, 7.3830311 51.517424600000005, 7.3831078 51.517432500000005, 7.3834698 51.517441100000006, 7.3837859 51.5174189, 7.384103700000001 51.5173702, 7.3843695 51.5172899, 7.3845162 51.517228700000004, 7.384651300000001 51.5171724, 7.3851547 51.5170461, 7.3851472000000005 51.5170144, 7.3860327 51.5170498, 7.3863465 51.5170314, 7.3865569 51.516950900000005, 7.3867674 51.5168429, 7.3870059 51.5168563, 7.387112500000001 51.516899900000006, 7.3872961 51.517017800000005, 7.387327300000001 51.5170375, 7.3874262 51.5171001, 7.387605700000001 51.5172138, 7.387644000000001 51.517238600000006, 7.3879624 51.517445200000004, 7.388064300000001 51.517122400000005, 7.3881468 51.5171744, 7.3881993 51.517161200000004, 7.3883222 51.51712920000001, 7.3883616000000005 51.5170778, 7.3883606 51.5170772, 7.3884689 51.516930300000006, 7.3885877 51.516769200000006, 7.388877600000001 51.5163298, 7.38905 51.5160221, 7.3891591000000005 51.515827400000006, 7.3892967 51.5155801, 7.3895222 51.5151747, 7.3897225 51.5148165, 7.389822000000001 51.5146382, 7.389948100000001 51.514394700000004, 7.3900255 51.5142455, 7.390448800000001 51.5135986, 7.3904509 51.5135991, 7.390996 51.5137377, 7.3912442 51.513800800000006, 7.3917576 51.513931400000004, 7.3921963 51.5140474, 7.391939700000001 51.5143709, 7.392228500000001 51.5144419, 7.3924937 51.5145071, 7.392546200000001 51.514520000000005, 7.3926302 51.514540700000005, 7.392896800000001 51.514606300000004, 7.3931779 51.5146749, 7.393156800000001 51.5146986, 7.3931946 51.514707900000005, 7.3932111 51.514712, 7.3933422 51.514744500000006, 7.393451700000001 51.5147716, 7.3935782 51.514802800000005, 7.3934052 51.514983900000004, 7.3931231 51.5152792, 7.3933577 51.515370600000004, 7.393651200000001 51.5150772, 7.393884000000001 51.5148444, 7.3938921 51.5149483, 7.393900500000001 51.5151138, 7.3939167 51.5154362, 7.3939249 51.515598600000004, 7.393926400000001 51.5156295, 7.393928600000001 51.5156744, 7.3939333000000005 51.51571920000001, 7.393943200000001 51.5157637, 7.393958400000001 51.5158076, 7.3939617 51.515966500000005, 7.3939035 51.5160136, 7.3936374 51.516236000000006, 7.393148 51.5166447, 7.393394600000001 51.516763600000004, 7.3937717 51.516462100000005, 7.3938781 51.516377000000006, 7.394167400000001 51.516145800000004, 7.3942072 51.5161141, 7.3942351 51.516091100000004, 7.394270400000001 51.5160677, 7.394974500000001 51.5164302, 7.394980400000001 51.5163688, 7.3953275000000005 51.516550200000005, 7.3956143 51.5167001, 7.3962817 51.517049, 7.3963497 51.5170845, 7.396823400000001 51.517332100000004, 7.397058 51.5174547, 7.3973510000000005 51.516615900000005, 7.3974181 51.516424, 7.39794 51.5149301, 7.398084300000001 51.5145131, 7.3981709 51.5142633, 7.3982448000000005 51.514050000000005, 7.3982524000000005 51.5140279, 7.3982697 51.5139781, 7.398539800000001 51.513198200000005, 7.398865600000001 51.512256900000004, 7.399021500000001 51.511806400000005, 7.3990204 51.511806500000006, 7.3990442000000005 51.511717100000006, 7.3990451 51.5117138, 7.3984293 51.5116212, 7.398164800000001 51.5115491, 7.397875900000001 51.5113775, 7.397529100000001 51.511172200000004, 7.396698000000001 51.510913200000005, 7.3957056 51.5106034, 7.39569 51.5106071, 7.3954705 51.510531300000004, 7.394749900000001 51.5103073, 7.394231400000001 51.510142200000004, 7.394153200000001 51.510117300000005, 7.393733200000001 51.5099728, 7.3934091 51.5098617, 7.3931949 51.509788300000004, 7.3925841000000005 51.509635700000004, 7.392060900000001 51.509505100000005, 7.391262800000001 51.509302600000005, 7.391168400000001 51.509276500000006, 7.3910565 51.509245500000006, 7.3910146 51.5092173, 7.390999900000001 51.509213800000005, 7.3907495 51.5091546, 7.390689600000001 51.5091283, 7.3906798 51.509119000000005, 7.390699100000001 51.509091600000005, 7.390709800000001 51.509083700000005, 7.3907430000000005 51.509069200000006, 7.3906248 51.50903640000001, 7.390529900000001 51.509007800000006, 7.3905703 51.508997400000005, 7.3906143 51.5089887, 7.390657300000001 51.5089746, 7.3906958000000005 51.5089588, 7.3907322 51.508941300000004, 7.3907669 51.5089218, 7.3908022 51.508900800000006, 7.3908351 51.508878800000005, 7.3908797 51.508841000000004, 7.3909175000000005 51.5088139, 7.3909532 51.508786300000004, 7.3910203 51.508728500000004, 7.3911039 51.508656900000005, 7.3911411000000005 51.5086269, 7.391179 51.508598400000004, 7.3912164 51.5085719, 7.3912572 51.5085447, 7.391296700000001 51.508520700000005, 7.3913321000000005 51.5084984, 7.391407300000001 51.5084609, 7.391314700000001 51.5083275, 7.391254900000001 51.5082808, 7.391223600000001 51.508266000000006, 7.391155500000001 51.5082341, 7.390924 51.508171100000006, 7.390638300000001 51.5080984, 7.390654100000001 51.50806660000001, 7.3904734 51.508030000000005, 7.390417800000001 51.508020900000005, 7.390221800000001 51.5079803, 7.389991800000001 51.5079324, 7.389932900000001 51.5079204, 7.3899122 51.507916300000005, 7.3897902 51.50789150000001, 7.3895721000000005 51.5074988, 7.3895618 51.507485800000005, 7.389423300000001 51.507310000000004, 7.3895226 51.507200000000005, 7.389561700000001 51.507156800000004, 7.389588000000001 51.507127700000005, 7.3901088 51.506551, 7.3904157 51.5060744, 7.390576200000001 51.5058251, 7.3908135 51.5054566, 7.391181100000001 51.5048855, 7.3913545 51.5046162, 7.3915872 51.504254700000004, 7.3916715 51.5041238, 7.391750500000001 51.504001, 7.3920102000000005 51.503654100000006, 7.3920338 51.503622400000005, 7.39235 51.503199800000004, 7.3924441000000005 51.503233, 7.392945900000001 51.5034101, 7.3930375 51.503308800000006, 7.3930487000000005 51.5032962, 7.393204000000001 51.503124400000004, 7.393368300000001 51.502940100000004, 7.393848200000001 51.503065500000005, 7.394019200000001 51.503112400000006, 7.3944412 51.5032371, 7.3944457 51.503232700000005, 7.394495600000001 51.5031571, 7.394493700000001 51.503156600000004, 7.394544000000001 51.50307960000001, 7.394546500000001 51.5030803, 7.3945683 51.5030858, 7.394587700000001 51.5030895, 7.3946075 51.5030919, 7.3946294 51.503093500000006, 7.3946547 51.5030936, 7.394674800000001 51.5030925, 7.3946947000000005 51.503090300000004, 7.3947167 51.5030864, 7.394742900000001 51.5030799, 7.3947608 51.503074000000005, 7.394777800000001 51.503067200000004, 7.394795500000001 51.5030585, 7.394814800000001 51.5030468, 7.394827800000001 51.5030372, 7.3948394 51.5030269, 7.3948495 51.503016, 7.394856000000001 51.503007600000004, 7.3948831 51.5029691, 7.3954279000000005 51.502099, 7.3956157000000005 51.5017993, 7.3956714 51.5017135, 7.395688000000001 51.5016881, 7.3957617 51.5015774, 7.3958373 51.501467600000005, 7.3959175 51.501358800000006, 7.396001200000001 51.5012514, 7.3960875 51.501145900000004, 7.3961794 51.5010405, 7.396276 51.5009377, 7.3963201000000005 51.500891700000004, 7.396380100000001 51.500831000000005, 7.396457300000001 51.5007559, 7.396488000000001 51.500726, 7.396599500000001 51.5006226, 7.396716100000001 51.5005211, 7.3967453 51.500497100000004, 7.396791500000001 51.500458900000005, 7.3968369 51.5004214, 7.396850100000001 51.5004111, 7.396961800000001 51.500323900000005, 7.397087300000001 51.500226700000006, 7.397243400000001 51.500111100000005, 7.3972436 51.5001109, 7.3972011 51.5000884, 7.3971815 51.500078, 7.396704400000001 51.499825300000005, 7.3966471 51.4997935, 7.3966896 51.499763400000006, 7.3968949 51.499617900000004, 7.3972195 51.4993878, 7.3973731 51.4992789, 7.397425800000001 51.499241500000004, 7.397596900000001 51.4991202, 7.3976258 51.4990997, 7.3976714 51.4990673, 7.3977044 51.499043900000004, 7.3977148 51.499036600000004, 7.397744 51.4990159, 7.3980243 51.498817100000004, 7.398181 51.498706000000006, 7.3983376000000005 51.498595, 7.3984947000000005 51.4984836, 7.398593900000001 51.498406, 7.398693300000001 51.4983282, 7.398752900000001 51.498265, 7.398803 51.4982119, 7.398831700000001 51.498181300000006, 7.398860900000001 51.4981504, 7.3989124 51.4980957, 7.398965400000001 51.498034000000004, 7.3990248 51.497965, 7.3991370000000005 51.497834600000004, 7.3990678 51.497811000000006, 7.3988554 51.497738500000004, 7.3986954 51.497671600000004, 7.3984234 51.497529400000005, 7.398229100000001 51.497531300000006, 7.398034900000001 51.4975334, 7.3978039 51.497617600000005, 7.397595900000001 51.497695400000005, 7.3976329000000005 51.4976009, 7.398047600000001 51.496540200000005, 7.3980613 51.496506200000006, 7.3980649000000005 51.496496900000004, 7.398083400000001 51.49645030000001, 7.3984277 51.4963994, 7.399001200000001 51.496315, 7.3993975 51.496256, 7.401119700000001 51.4959998, 7.401376300000001 51.4959281, 7.4014185 51.495800700000004, 7.401422200000001 51.495789300000006, 7.401469100000001 51.495643400000006, 7.401273300000001 51.4956247, 7.4013264 51.4954431, 7.4013556000000005 51.49534310000001, 7.401390500000001 51.495162300000004, 7.4013884 51.495102, 7.4013879000000005 51.495085, 7.4013863 51.495035400000006, 7.4013248 51.4948847, 7.401256600000001 51.4947953, 7.401122600000001 51.4946909, 7.4009537000000005 51.4946221, 7.4005283 51.494507500000005, 7.4005041 51.49450100000001, 7.400202800000001 51.4944198, 7.4001843 51.494413800000004, 7.400139200000001 51.4943989, 7.399661600000001 51.4942426, 7.399129200000001 51.4940681, 7.399091 51.4940555, 7.3990675 51.4940459, 7.3990508 51.4940391, 7.3990622 51.493981600000005, 7.3990749000000005 51.493918, 7.3991011 51.4939277, 7.399126300000001 51.493937, 7.399128 51.493923200000005, 7.399123800000001 51.4939091, 7.3996668 51.4940513, 7.4000649 51.4941443, 7.4007611 51.4943071, 7.4008422000000005 51.494323800000004, 7.400943700000001 51.4943449, 7.4011922000000006 51.49439640000001, 7.4012636 51.4944063, 7.401448 51.49443290000001, 7.401449700000001 51.494418700000004, 7.4014603 51.4942682, 7.401463000000001 51.494230900000005, 7.401465000000001 51.4942026, 7.4014664 51.494172600000006, 7.401468500000001 51.494125800000006, 7.4015176 51.4930729, 7.4015214 51.4929938, 7.4015241000000005 51.492935, 7.4015333000000005 51.4928528, 7.4015379 51.492758200000004, 7.4016339 51.492743700000005, 7.4016302000000005 51.492581900000005, 7.4016237 51.492293700000005, 7.4016177 51.4920259, 7.4016139 51.4918592, 7.401644800000001 51.491854800000006, 7.401681000000001 51.4918496, 7.401709100000001 51.4918454, 7.4016980000000006 51.49134, 7.4016954 51.4912191, 7.4016922 51.4910707, 7.4016671 51.489914500000005, 7.401654000000001 51.4894532, 7.4016536 51.489427400000004, 7.4016397000000005 51.488673000000006, 7.4016375000000005 51.4885777, 7.4016367 51.488549600000006, 7.4016136 51.488548400000006, 7.4016096000000005 51.488373200000005, 7.4016082 51.4883133, 7.4016052000000006 51.4881831, 7.4016285 51.4881827, 7.401627700000001 51.4881432, 7.4016237 51.487967000000005, 7.4016152 51.4875879, 7.401614500000001 51.4875605, 7.401597300000001 51.486797, 7.401571400000001 51.4856459, 7.4014291000000005 51.48566640000001, 7.4014166 51.4856501, 7.4014103 51.485642000000006, 7.401404 51.4856338, 7.4009757 51.485079000000006, 7.400926200000001 51.4850149, 7.4008393 51.4849023, 7.4007807 51.4848264, 7.400542700000001 51.484518200000004, 7.4003019000000005 51.4843422, 7.3999953000000005 51.484112200000006, 7.3997203 51.483887200000005, 7.3994866 51.483681100000005, 7.3992728 51.4834776, 7.3989691 51.483184200000004, 7.3988126 51.4830557, 7.3986377 51.48295, 7.3984807 51.4828841, 7.3983372 51.482823800000006, 7.3980787 51.4827882, 7.3974076 51.4827729, 7.3969265 51.482729400000004, 7.3968581 51.4827183, 7.396347400000001 51.482635200000004, 7.396240100000001 51.4826161, 7.395823900000001 51.482542200000005, 7.395311100000001 51.482445600000005, 7.3948809 51.4823924, 7.3944052000000005 51.482363500000005, 7.393822800000001 51.4823565, 7.393721 51.48235510000001, 7.3935924 51.4823625, 7.393071000000001 51.4824162, 7.392755200000001 51.482458, 7.392628800000001 51.482474700000004, 7.3921615 51.482545800000004, 7.3920998 51.4825542, 7.3920997 51.4825548, 7.392094800000001 51.482552600000005, 7.391500700000001 51.482669, 7.3914496000000005 51.4826799, 7.391398000000001 51.482691300000006, 7.391342600000001 51.482702, 7.391240300000001 51.482726500000005, 7.3911388 51.482747200000006, 7.3910447 51.4827731, 7.3909324000000005 51.4828003, 7.3908984 51.4828119, 7.3908854 51.482743000000006, 7.390878600000001 51.482706900000004, 7.390779200000001 51.482732600000006, 7.3908804 51.4821923, 7.390889100000001 51.482086800000005, 7.3908933 51.4818523, 7.390895400000001 51.4816171, 7.3908982000000005 51.481253300000006, 7.390899600000001 51.481086700000006, 7.390900500000001 51.480976000000005, 7.3908971 51.480955300000005, 7.3906235 51.480891400000004, 7.3906051 51.480887100000004, 7.390212600000001 51.4808066, 7.389258900000001 51.4806329, 7.3888037 51.480549800000006, 7.3870288 51.480226300000005, 7.387107800000001 51.4800163, 7.387194600000001 51.47978560000001, 7.387289900000001 51.4795681, 7.3874873 51.479234500000004, 7.387613600000001 51.479021100000004, 7.3877695 51.4788652, 7.3878919000000005 51.4788469, 7.388253000000001 51.478908800000006, 7.388320200000001 51.4787698, 7.3884064 51.478591, 7.3883331000000005 51.4785637, 7.3864261 51.4778796, 7.3839363 51.4769871, 7.383654600000001 51.476886))) +List(POLYGON ((7.303199200000001 51.52760000000001, 7.3021425 51.527350000000006, 7.3015676 51.5284799, 7.301100600000001 51.528401800000005, 7.3007016 51.5292657, 7.3004347 51.529211800000006, 7.2996778 51.530899600000005, 7.298596000000001 51.530590700000005, 7.2976691 51.53035070000001, 7.2971845 51.530174900000006, 7.2969477000000005 51.53056, 7.295702400000001 51.529961500000006, 7.295366100000001 51.53060060000001, 7.2950584 51.5309989, 7.294803900000001 51.531375100000005, 7.293814800000001 51.5309602, 7.2929712 51.5305997, 7.291438800000001 51.529968800000006, 7.2912821 51.529875800000006, 7.2907966 51.5298291, 7.2908416 51.5295634, 7.290572 51.529546700000004, 7.2906830000000005 51.528740500000005, 7.2903313 51.5287195, 7.2903796000000005 51.5283978, 7.2890633000000005 51.527642300000004, 7.288990200000001 51.527641, 7.288631400000001 51.527633800000004, 7.2885058 51.5265313, 7.2885042 51.5265252, 7.288504400000001 51.526521, 7.2884779 51.5265229, 7.2882585 51.5265369, 7.288255 51.5265373, 7.2882351000000005 51.5265367, 7.2882028000000005 51.526535900000006, 7.2875787 51.526517600000005, 7.2870865 51.5265034, 7.2860503 51.52647150000001, 7.2859620000000005 51.526469600000006, 7.285620600000001 51.5264776, 7.285453 51.5264767, 7.2854463 51.526281000000004, 7.2852046 51.526155700000004, 7.285167700000001 51.5255093, 7.2851615 51.525396300000004, 7.2851584 51.525338500000004, 7.2851387 51.52497940000001, 7.284404800000001 51.524830400000006, 7.2842459 51.5248074, 7.282969100000001 51.5246094, 7.282804100000001 51.5245824, 7.2825541000000005 51.5245444, 7.2822576 51.5246104, 7.281104900000001 51.52481890000001, 7.2806853 51.524827200000004, 7.2805325000000005 51.5248288, 7.280531000000001 51.5246822, 7.2801669 51.524688600000005, 7.2796424 51.524697800000006, 7.279576700000001 51.5247523, 7.279497 51.5248257, 7.2789327 51.524830400000006, 7.278489700000001 51.5248574, 7.2776699 51.5247274, 7.275684300000001 51.5243866, 7.2755936000000005 51.524371300000006, 7.2755251 51.52435800000001, 7.274267900000001 51.524155300000004, 7.2735225 51.524333500000004, 7.27334 51.5243763, 7.2733091000000005 51.5244251, 7.272221 51.524632100000005, 7.272092300000001 51.5247468, 7.271644 51.524787200000006, 7.2716152 51.52483, 7.2712266 51.52492530000001, 7.2710546 51.524891600000004, 7.2708428000000005 51.524921400000004, 7.2706328000000005 51.52498670000001, 7.2705253 51.52498730000001, 7.2704497 51.524973300000006, 7.2701181 51.524978000000004, 7.2700373 51.525005900000004, 7.269848100000001 51.5250241, 7.269574 51.5250654, 7.268989100000001 51.5251123, 7.2682795 51.5254686, 7.267387800000001 51.5255367, 7.2670766 51.525612100000004, 7.2669597 51.525631800000006, 7.2669508 51.5256728, 7.2666792000000004 51.5256434, 7.2665183 51.52571330000001, 7.2658876 51.525651200000006, 7.265860300000001 51.525739400000006, 7.2654933 51.525688900000006, 7.2651634000000005 51.5257579, 7.2648577 51.525680300000005, 7.2644899 51.5257051, 7.264478 51.5258082, 7.2641814 51.5259268, 7.2639873 51.525905, 7.2636289000000005 51.5259185, 7.2633897 51.5259371, 7.2631369 51.525900400000005, 7.263075700000001 51.525922400000006, 7.2629758 51.5259134, 7.262774800000001 51.5259386, 7.2626965000000006 51.52591150000001, 7.262617700000001 51.525918700000005, 7.262584500000001 51.525942900000004, 7.2623635 51.525949700000005, 7.262249000000001 51.525987900000004, 7.2622184 51.526004900000004, 7.2620982000000005 51.525980000000004, 7.262045400000001 51.5260358, 7.2617953 51.5260405, 7.261622600000001 51.5261347, 7.261509800000001 51.5261325, 7.2614147 51.526160100000006, 7.261324500000001 51.526146100000005, 7.2612677 51.5261725, 7.2612005 51.5261342, 7.260957400000001 51.5261438, 7.2605933 51.5262253, 7.2604796 51.5260059, 7.260037400000001 51.526200900000006, 7.259936300000001 51.5262748, 7.2598149 51.5262788, 7.2597237 51.526281600000004, 7.2596882 51.526307, 7.259505300000001 51.5263186, 7.2594608 51.5262614, 7.2594066 51.5262268, 7.259339400000001 51.5262478, 7.2592425 51.5262954, 7.2591669 51.5263428, 7.2590576 51.526369700000004, 7.258972600000001 51.526373500000005, 7.2588141 51.526515, 7.2587285 51.5265318, 7.2586646 51.5265356, 7.2586116 51.5265688, 7.2585287 51.5265981, 7.2583488 51.5266369, 7.2582376 51.5266378, 7.258132700000001 51.5266607, 7.257970800000001 51.5267095, 7.257902400000001 51.5267702, 7.2576134 51.526898900000006, 7.2575624 51.5268907, 7.257522300000001 51.526863000000006, 7.2573356 51.5269239, 7.257319600000001 51.526992500000006, 7.2574117000000005 51.527031900000004, 7.2574642 51.527083100000006, 7.257573600000001 51.5271148, 7.257604100000001 51.5271648, 7.257486 51.5272495, 7.2573077 51.5272693, 7.2572540000000005 51.5272754, 7.2571232000000006 51.5272634, 7.2567702 51.527328000000004, 7.256671000000001 51.527395600000006, 7.2565961 51.5274082, 7.256445500000001 51.527374900000005, 7.2564877 51.52731970000001, 7.2564561 51.5272318, 7.256317200000001 51.527129900000006, 7.2563287 51.5270638, 7.256299200000001 51.5269526, 7.2563124000000006 51.526790000000005, 7.256203800000001 51.5267732, 7.256196 51.526751700000005, 7.2561898000000005 51.5267344, 7.2561811 51.526710300000005, 7.2561714 51.5266832, 7.256154100000001 51.526639, 7.255979600000001 51.526481600000004, 7.2557818 51.526341800000004, 7.2557881 51.526055500000005, 7.255630300000001 51.5258472, 7.255164300000001 51.525501500000004, 7.2549133 51.525413400000005, 7.2547775 51.5253482, 7.255266000000001 51.525215900000006, 7.2550962000000006 51.52503230000001, 7.2549362 51.5248384, 7.254938200000001 51.5247344, 7.2549413000000005 51.5241934, 7.2548633 51.5240555, 7.2547953000000005 51.5239495, 7.2548443 51.5238765, 7.2549812000000005 51.523666500000004, 7.2551522 51.523472500000004, 7.255128200000001 51.523289500000004, 7.2550542 51.523182600000005, 7.2548133 51.522873600000004, 7.2548143000000005 51.522690600000004, 7.254815300000001 51.522594600000005, 7.2548453 51.5224496, 7.254867300000001 51.5223207, 7.2548943 51.522167700000004, 7.2549063 51.5219807, 7.254804300000001 51.5214088, 7.2549163000000005 51.5214088, 7.2550132000000005 51.5214088, 7.2553222 51.521404800000006, 7.2553352 51.5212068, 7.255389200000001 51.520996800000006, 7.2554182 51.520881800000005, 7.255452200000001 51.520774800000005, 7.2554772000000005 51.520698800000005, 7.255498200000001 51.5205958, 7.2555132 51.520504900000006, 7.255503200000001 51.5204049, 7.2554892 51.520259900000006, 7.255397200000001 51.5200199, 7.2553152 51.519981900000005, 7.2552402 51.519939900000004, 7.2551012 51.519885900000006, 7.254511300000001 51.5198559, 7.2540434000000005 51.5198289, 7.2539734000000005 51.519874900000005, 7.253880400000001 51.5199319, 7.253453500000001 51.51989390000001, 7.253205500000001 51.5199019, 7.2530815 51.519897900000004, 7.2528696 51.519897900000004, 7.2526096 51.5199859, 7.252491600000001 51.519973900000004, 7.2523526 51.519958900000006, 7.252324700000001 51.5200389, 7.252254700000001 51.520237900000005, 7.252227700000001 51.5203179, 7.252190400000001 51.5210288, 7.2524500000000005 51.5212992, 7.2525507000000005 51.5215748, 7.2526706 51.521728700000004, 7.252667300000001 51.5217539, 7.2526850000000005 51.5218507, 7.252672400000001 51.5218877, 7.2526454000000005 51.521943400000005, 7.252643000000001 51.521957, 7.2525588 51.522027800000004, 7.2525376 51.5220466, 7.2521611 51.522264400000005, 7.252066500000001 51.5224783, 7.251781200000001 51.522784200000004, 7.251729200000001 51.5228417, 7.251680100000001 51.5228751, 7.251617400000001 51.522889500000005, 7.2514016 51.5228716, 7.2507824 51.5230217, 7.2505796 51.523093700000004, 7.250444000000001 51.523202700000006, 7.250326 51.5233707, 7.249983800000001 51.523943900000006, 7.249778600000001 51.5242876, 7.2497492 51.5242645, 7.2484146 51.523628, 7.2482787 51.5235709, 7.2483817 51.523442900000006, 7.248592800000001 51.522992, 7.2486253000000005 51.522961200000005, 7.2485445 51.5227068, 7.2485027 51.522585600000006, 7.248469200000001 51.522518600000005, 7.248282400000001 51.5220903, 7.2481879000000005 51.521956200000005, 7.2480495000000005 51.521776300000006, 7.2479962 51.521737300000005, 7.247904200000001 51.521672200000005, 7.247763900000001 51.521587200000006, 7.2464105000000005 51.5213857, 7.245792600000001 51.521289800000005, 7.2457026 51.5212828, 7.2454327 51.5212598, 7.2449348 51.5212178, 7.2448788 51.52119080000001, 7.244733800000001 51.52119080000001, 7.2438719 51.5210998, 7.243456 51.5210578, 7.243358000000001 51.5210458, 7.2426561000000005 51.52108380000001, 7.241441300000001 51.521148800000006, 7.240942400000001 51.5212258, 7.2402715 51.52100780000001, 7.240191500000001 51.520980800000004, 7.2399965 51.5209398, 7.239991000000001 51.520937700000005, 7.2397435 51.5208858, 7.239466200000001 51.520849000000005, 7.238673400000001 51.5206376, 7.2382290000000005 51.5205137, 7.2380022 51.5204388, 7.237988400000001 51.5204261, 7.237969700000001 51.5203963, 7.238035900000001 51.5203069, 7.2380895 51.5200674, 7.238139100000001 51.52004650000001, 7.238652500000001 51.5201021, 7.239234300000001 51.519641, 7.238759600000001 51.519387900000005, 7.238504900000001 51.519020100000006, 7.2385066 51.5187607, 7.238389000000001 51.51861340000001, 7.238101500000001 51.5185924, 7.2379435 51.518586000000006, 7.2379072 51.5185839, 7.237793000000001 51.518579300000006, 7.237763500000001 51.5185777, 7.237743200000001 51.518576800000005, 7.237768000000001 51.518422, 7.2378175 51.518137, 7.2377823 51.518131600000004, 7.237185500000001 51.51803030000001, 7.2372646000000005 51.5182876, 7.237214700000001 51.518485500000004, 7.237082200000001 51.518624900000006, 7.236786800000001 51.518798200000006, 7.2364652000000005 51.518980000000006, 7.236332600000001 51.5190484, 7.235979700000001 51.5192149, 7.235770400000001 51.51928160000001, 7.2356239 51.5193415, 7.2351621 51.519453500000004, 7.2345132 51.5195817, 7.234173500000001 51.5196151, 7.2340156 51.5195924, 7.2336304 51.519135000000006, 7.2332925 51.518982, 7.2330645 51.518677000000004, 7.2328125000000005 51.518207600000004, 7.232716600000001 51.5180291, 7.230657600000001 51.5177321, 7.230371900000001 51.5176974, 7.2303945 51.5175673, 7.2304228 51.5174734, 7.2304567 51.5174402, 7.230235700000001 51.517352200000005, 7.2301495000000005 51.5172846, 7.2301606000000005 51.5172193, 7.230349400000001 51.517219700000005, 7.230372900000001 51.516854200000004, 7.2299937000000005 51.5160537, 7.2301039000000005 51.5159912, 7.230391200000001 51.51583, 7.230939200000001 51.515731, 7.230688300000001 51.5153892, 7.2306783 51.515274700000006, 7.230721900000001 51.5151496, 7.230941100000001 51.5148378, 7.2311363 51.5146067, 7.2312754 51.5144827, 7.231321400000001 51.5142498, 7.2312604 51.514166100000004, 7.231230500000001 51.5141251, 7.231284400000001 51.5139901, 7.231214700000001 51.513855400000004, 7.231203300000001 51.5138459, 7.2310964 51.513722800000004, 7.231065500000001 51.5136474, 7.2310957 51.5136024, 7.2311776000000005 51.513536, 7.2314121 51.5134028, 7.2318617000000005 51.513227900000004, 7.232033800000001 51.5131893, 7.232367000000001 51.5131414, 7.232549100000001 51.513092500000006, 7.2326774 51.5130409, 7.232954800000001 51.5128896, 7.233138800000001 51.5128062, 7.233182200000001 51.512764700000005, 7.233144500000001 51.5124749, 7.2331734 51.512353100000006, 7.2331532 51.5122342, 7.2329955 51.512058, 7.233012700000001 51.512036300000005, 7.2332 51.5119642, 7.233660700000001 51.5119823, 7.234051 51.5120632, 7.2342347 51.512136700000006, 7.2344106 51.5123071, 7.234505800000001 51.5123674, 7.234585900000001 51.512089200000005, 7.2345993 51.512079500000006, 7.234630900000001 51.5120141, 7.234717300000001 51.5119375, 7.234711000000001 51.5118744, 7.234638100000001 51.5118359, 7.2346329 51.5117923, 7.2345692 51.511763, 7.2345246 51.511670900000006, 7.2344800000000005 51.511659200000004, 7.2344454 51.511627100000005, 7.2344575 51.511574700000004, 7.2344384 51.5115634, 7.2343406 51.5115573, 7.234316400000001 51.511515700000004, 7.2343067 51.511515100000004, 7.2343117 51.511408900000006, 7.234287900000001 51.5113971, 7.234115900000001 51.511368600000004, 7.2341224 51.5113026, 7.2322378 51.511351000000005, 7.227424500000001 51.5128974, 7.2298518000000005 51.5100862, 7.230791300000001 51.509814600000006, 7.2312311000000005 51.509720300000005, 7.232407 51.509486, 7.232667800000001 51.509424800000005, 7.232793900000001 51.5093522, 7.2329268 51.509342100000005, 7.233745900000001 51.509121900000004, 7.2440264 51.507326000000006, 7.2468501000000005 51.506705200000006, 7.2498711 51.5059866, 7.250083900000001 51.505936000000005, 7.250666300000001 51.503666700000004, 7.2505826 51.503632800000005, 7.250379400000001 51.5036361, 7.2502829 51.5036518, 7.250155500000001 51.5036585, 7.2500143 51.5036336, 7.2498712 51.503635300000006, 7.2498279000000005 51.5036082, 7.2496442000000005 51.503586500000004, 7.2495305000000005 51.5035481, 7.2492459 51.5034932, 7.2490987 51.503498400000005, 7.2487580000000005 51.5032706, 7.2485626000000005 51.503174300000005, 7.248342 51.5031041, 7.248238300000001 51.5030373, 7.247889300000001 51.5029685, 7.247666700000001 51.5028942, 7.247542 51.5028383, 7.2473871 51.502785300000006, 7.2472959 51.5026208, 7.247174500000001 51.5025983, 7.2470511 51.5026145, 7.246882200000001 51.5026116, 7.2468399 51.5026492, 7.246745400000001 51.502649600000005, 7.246648800000001 51.502622, 7.2464114 51.5026183, 7.246273400000001 51.5025758, 7.2452198 51.5018353, 7.2392666000000006 51.501228700000006, 7.239674300000001 51.500072800000005, 7.2384363 51.500157400000006, 7.2392016 51.499098000000004, 7.240290600000001 51.4976141, 7.2436172 51.495909700000006, 7.247362900000001 51.4955398, 7.247864300000001 51.4946901, 7.2485755 51.493789400000004, 7.248754000000001 51.49354760000001, 7.2490373 51.4931397, 7.249042 51.493113400000006, 7.2490299 51.493087100000004, 7.2490071 51.493068300000004, 7.248982700000001 51.493058600000005, 7.2483921 51.492850600000004, 7.248583000000001 51.4927057, 7.2486477 51.4927385, 7.248869000000001 51.4928187, 7.2491956 51.492920100000006, 7.2495061000000005 51.4930127, 7.2499583 51.4931399, 7.2504135000000005 51.4924521, 7.250428 51.492431, 7.2505353 51.492456700000005, 7.2511073 51.4915948, 7.251218000000001 51.4916246, 7.2514848 51.491230300000005, 7.2517081 51.491301500000006, 7.2521392 51.4908975, 7.2523992 51.489682800000004, 7.2524142000000005 51.4894903, 7.2523767 51.489183800000006, 7.2523118 51.4889589, 7.251596200000001 51.4871872, 7.251475500000001 51.486933300000004, 7.251326000000001 51.486691, 7.2512676 51.486681100000006, 7.2511777 51.4866569, 7.251112000000001 51.486630100000006, 7.2510409000000005 51.486594200000006, 7.2509645 51.4865441, 7.2508746 51.4864765, 7.2507378000000005 51.4863688, 7.2506225 51.4862936, 7.25053 51.4862468, 7.2504213 51.4861992, 7.2503409 51.4861683, 7.2503818 51.486126600000006, 7.2502604 51.4860769, 7.2502181000000006 51.4861178, 7.2473198000000005 51.4849674, 7.247356900000001 51.4849286, 7.2470572 51.4848088, 7.247019000000001 51.4848488, 7.2466629000000005 51.4847127, 7.246293400000001 51.4845904, 7.2456785 51.484417500000006, 7.245721400000001 51.484356500000004, 7.2448155000000005 51.4841093, 7.244720300000001 51.4841327, 7.244707600000001 51.4841519, 7.244484600000001 51.4840901, 7.2453848 51.483131300000004, 7.2478347 51.483945000000006, 7.2497682 51.484292800000006, 7.2503709 51.4844012, 7.2526036000000005 51.484802900000005, 7.255492500000001 51.485174, 7.2557708000000005 51.4851383, 7.2566199000000005 51.4850489, 7.257353800000001 51.4849436, 7.258048400000001 51.4848134, 7.2587918 51.4846492, 7.2593578 51.4845169, 7.2599258 51.484377, 7.261123400000001 51.4841198, 7.262154000000001 51.483872100000006, 7.2626809 51.483787400000004, 7.2626971000000005 51.483759000000006, 7.2630606 51.4836679, 7.2634723 51.483541800000005, 7.264187300000001 51.483374100000006, 7.2650736 51.4831798, 7.2654243 51.48309080000001, 7.265433000000001 51.4830662, 7.2654323000000005 51.483040300000006, 7.265541000000001 51.483012300000006, 7.265552400000001 51.4830228, 7.265571100000001 51.483032400000006, 7.265593900000001 51.4830399, 7.2656147 51.483047000000006, 7.2656704 51.4830533, 7.2656992 51.483051200000006, 7.265728 51.483047000000006, 7.266790200000001 51.482809800000005, 7.2674373 51.4826854, 7.2692437000000005 51.482378000000004, 7.2697970000000005 51.482302000000004, 7.270313300000001 51.482244200000004, 7.271287200000001 51.4821942, 7.271406000000001 51.482228500000005, 7.2720986000000005 51.482218800000005, 7.272047400000001 51.482190300000006, 7.273028500000001 51.482150700000005, 7.2733287 51.482115500000006, 7.2735826 51.48205170000001, 7.2755466 51.4819595, 7.2762221 51.4819546, 7.2773393 51.481930600000005, 7.2782701 51.481963900000004, 7.2775803 51.4868171, 7.2777786 51.4870807, 7.2783519000000005 51.4871477, 7.279870000000001 51.4872613, 7.281894200000001 51.487276300000005, 7.2823864 51.487231300000005, 7.283078400000001 51.487072700000006, 7.2838219 51.4870384, 7.285019900000001 51.4868176, 7.2868580000000005 51.4862605, 7.2880723000000005 51.486944400000006, 7.2875278 51.4875175, 7.288529100000001 51.487980300000004, 7.289297800000001 51.4883499, 7.289148900000001 51.4885047, 7.289867200000001 51.488847500000006, 7.2897587 51.488842000000005, 7.289464400000001 51.488865700000005, 7.2890544 51.4888945, 7.288911400000001 51.489017800000006, 7.2892368 51.4891653, 7.289352 51.489243300000005, 7.2894331 51.4893227, 7.289494400000001 51.4894929, 7.289714600000001 51.4896121, 7.289735 51.4896668, 7.289902700000001 51.4897636, 7.2899067 51.4898158, 7.290061400000001 51.489981300000004, 7.2900764 51.4900305, 7.2900593 51.4901512, 7.2900979 51.490194100000004, 7.290191900000001 51.4902613, 7.2903422 51.4903387, 7.2903494 51.4903721, 7.2904005000000005 51.490391800000005, 7.2904359 51.4904353, 7.290357500000001 51.490489200000006, 7.2903504 51.4905212, 7.290374900000001 51.490564500000005, 7.2903868 51.490574200000005, 7.290575700000001 51.490641100000005, 7.290628300000001 51.490672, 7.290719500000001 51.4907084, 7.290852 51.4908061, 7.2912077 51.4910391, 7.2912663 51.491086200000005, 7.2913126 51.4911418, 7.2913304000000005 51.491188, 7.2913392 51.49127420000001, 7.2913167 51.4915377, 7.291318700000001 51.4916083, 7.291386900000001 51.491694700000004, 7.291767500000001 51.492079600000004, 7.2918148 51.49212300000001, 7.2918348 51.492167200000004, 7.291856500000001 51.4922745, 7.2918776 51.4923182, 7.291933500000001 51.4923914, 7.2919897 51.492463900000004, 7.292025400000001 51.492502, 7.2921974 51.492668800000004, 7.292253700000001 51.4926364, 7.2924122 51.49256870000001, 7.292618200000001 51.4927414, 7.292769000000001 51.4928912, 7.294954100000001 51.4943943, 7.2956548 51.4948856, 7.2955519 51.49490410000001, 7.297786100000001 51.4963953, 7.2977565 51.4964042, 7.297571700000001 51.496407000000005, 7.2981289 51.4967751, 7.298007900000001 51.4967769, 7.298085500000001 51.496821700000005, 7.3008337 51.498685800000004, 7.300907400000001 51.499005000000004, 7.300989100000001 51.499284200000005, 7.3014733000000005 51.500512300000004, 7.302588200000001 51.501477400000006, 7.303134300000001 51.5017683, 7.3033063 51.501912600000004, 7.302973700000001 51.5024273, 7.3035803 51.503090400000005, 7.304094200000001 51.5031199, 7.3039896 51.504295600000006, 7.303823 51.504493700000005, 7.3038473 51.504687800000006, 7.3038419 51.5047742, 7.30402 51.5050705, 7.3042047000000005 51.5054056, 7.3043006 51.5056165, 7.3043271 51.5057668, 7.304330500000001 51.505852000000004, 7.304335200000001 51.5059727, 7.304284200000001 51.506059300000004, 7.3039592 51.5064829, 7.3038319000000005 51.506618200000005, 7.303655300000001 51.5067156, 7.3034585000000005 51.506826800000006, 7.303271400000001 51.506935600000006, 7.303047 51.5072594, 7.3024032000000005 51.507621, 7.302387 51.5076709, 7.3024779 51.5078278, 7.302639 51.5081198, 7.3026774 51.508223900000004, 7.302708300000001 51.508355300000005, 7.3027017 51.50856520000001, 7.302661400000001 51.508809600000006, 7.302611700000001 51.50911120000001, 7.302554700000001 51.5094556, 7.302537500000001 51.509559100000004, 7.3026372 51.510013900000004, 7.3026534000000005 51.5101048, 7.3026672 51.510223700000004, 7.3026786 51.510375800000006, 7.3026809 51.5108692, 7.3026811 51.511030600000005, 7.3026816000000006 51.511332, 7.3026771 51.5115478, 7.3026733 51.5117315, 7.3026702000000006 51.511878800000005, 7.3026432 51.5119436, 7.3026173000000005 51.5120057, 7.302598000000001 51.5120519, 7.302589800000001 51.512207800000006, 7.3025842 51.512315400000006, 7.3026435 51.5124964, 7.3027088000000004 51.5126957, 7.302729 51.512757500000006, 7.3027901 51.512954300000004, 7.302819 51.513047500000006, 7.3031255 51.514298700000005, 7.303455100000001 51.5148382, 7.3036687 51.5151879, 7.303748700000001 51.515322100000006, 7.303770800000001 51.515387100000005, 7.3037619000000005 51.5154488, 7.3037574 51.515530500000004, 7.303618500000001 51.515645000000006, 7.303499 51.515743500000006, 7.3037988 51.5159917, 7.3041087000000005 51.5162482, 7.304320000000001 51.516423, 7.3045634 51.516693100000005, 7.3045967 51.516848100000004, 7.304601900000001 51.516867000000005, 7.3045974000000005 51.516940500000004, 7.3046603 51.516995900000005, 7.304850500000001 51.517252400000004, 7.305017500000001 51.517453200000006, 7.3051712 51.5176364, 7.305466900000001 51.5177234, 7.3055694 51.5177537, 7.305683 51.5177872, 7.3058746 51.5178668, 7.306073700000001 51.5179527, 7.3060982 51.51796220000001, 7.306122500000001 51.5179704, 7.3061479 51.51797800000001, 7.3062103 51.517992500000005, 7.306337200000001 51.518016200000005, 7.3064745 51.518045900000004, 7.3068473 51.517754200000006, 7.3070738 51.5178844, 7.3073011 51.518015000000005, 7.3075986 51.518186, 7.3078308000000005 51.5183194, 7.308206 51.518535, 7.308057700000001 51.5186355, 7.307924900000001 51.51872770000001, 7.307518300000001 51.51864320000001, 7.3075941 51.518827300000005, 7.3076601000000005 51.5188733, 7.3077171000000005 51.5189097, 7.307782100000001 51.518943300000004, 7.307851 51.518973900000006, 7.3079185 51.5190015, 7.3080191 51.519040000000004, 7.3082253 51.5191115, 7.3083803000000005 51.5191601, 7.308508300000001 51.5191961, 7.308620400000001 51.519221800000004, 7.308688 51.5192387, 7.308735 51.519252800000004, 7.3087694 51.51926520000001, 7.3088107 51.5192823, 7.3088759 51.5193154, 7.3089192 51.5193414, 7.3089566 51.5193675, 7.3089962 51.5193972, 7.309031500000001 51.519426800000005, 7.309039500000001 51.519434100000005, 7.3090652 51.519457800000005, 7.309151000000001 51.519547700000004, 7.309183600000001 51.519586700000005, 7.3092189 51.519632, 7.309235900000001 51.519656000000005, 7.309252300000001 51.519684100000006, 7.3092585 51.519697, 7.3092633000000005 51.519709500000005, 7.309271300000001 51.519726500000004, 7.3092816 51.5197433, 7.3092952 51.5197585, 7.309304200000001 51.51976560000001, 7.3093085 51.5197681, 7.3093256 51.5197779, 7.310133 51.520043, 7.310399 51.520111, 7.310459000000001 51.520173, 7.310512 51.5202679, 7.310658900000001 51.520538900000005, 7.3107739 51.520690900000005, 7.310898900000001 51.5206339, 7.3110869 51.5206269, 7.3116479000000005 51.5208224, 7.3125999 51.5212944, 7.3128675 51.521370700000006, 7.3130712 51.5214056, 7.3133115 51.52144680000001, 7.3136415 51.5214768, 7.3136815 51.5214128, 7.3138315 51.5211568, 7.3139551 51.521216900000006, 7.314597300000001 51.521526800000004, 7.3145923 51.5217858, 7.3145923 51.5218628, 7.314656200000001 51.5220604, 7.314380600000001 51.522234600000004, 7.3142407 51.5223336, 7.3140381 51.522575200000006, 7.314316900000001 51.522742400000006, 7.314263700000001 51.522830600000006, 7.3141008 51.5229781, 7.314344800000001 51.523096800000005, 7.3144033 51.523131500000005, 7.3142471 51.5232709, 7.3142054000000005 51.52334320000001, 7.314036400000001 51.5235138, 7.3131208 51.5232905, 7.3131268 51.5237604, 7.313036800000001 51.5241094, 7.3129458000000005 51.5240833, 7.3129289 51.5241674, 7.3120839 51.523938400000006, 7.3112491 51.5237464, 7.3106742 51.5236455, 7.310596100000001 51.5240583, 7.3104591 51.5241291, 7.310446300000001 51.5241357, 7.3095213 51.525989200000005, 7.3089414 51.526382100000006, 7.3087974 51.526330200000004, 7.3085385 51.5264151, 7.3081085 51.526172200000005, 7.3059579 51.525725200000004, 7.3041581 51.5254363, 7.303199200000001 51.52760000000001))) diff --git a/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/Helgoland_boundaries_level8.csv b/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/Helgoland_boundaries_level8.csv new file mode 100644 index 00000000..29c3db79 --- /dev/null +++ b/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/Helgoland_boundaries_level8.csv @@ -0,0 +1,2 @@ +POLYGON ((7.902281 54.186717, 7.902107 54.186856, 7.901841 54.187099, 7.901511 54.187442, 7.900299 54.188538, 7.89973 54.189089, 7.899584 54.1892, 7.89937 54.189346, 7.899315 54.189337, 7.899335 54.189291, 7.899667 54.189015, 7.899838 54.188826, 7.900657 54.188051, 7.901413 54.187365, 7.901947 54.186858, 7.902142 54.186702, 7.90252 54.186317, 7.903058 54.185814, 7.902979 54.185785, 7.902292 54.18554, 7.902283 54.185516, 7.902193 54.185483, 7.902177 54.185477, 7.902162 54.185472, 7.902042 54.185428, 7.900566 54.184891, 7.900542 54.184832, 7.900559 54.184816, 7.900618 54.184759, 7.90073 54.184649, 7.900887 54.184552, 7.901861 54.183569, 7.902252 54.183144, 7.902285 54.183087, 7.902331 54.183036, 7.902411 54.182975, 7.902686 54.182679, 7.902724 54.182669, 7.902771 54.182677, 7.902788 54.182693, 7.90279 54.182715, 7.901958 54.183603, 7.900908 54.184668, 7.901057 54.184989, 7.901419 54.185124, 7.901514 54.18514, 7.901553 54.185171, 7.902104 54.18537, 7.903133 54.185741, 7.903176 54.185756, 7.90374 54.185215, 7.904127 54.184845, 7.903785 54.184718, 7.90376 54.18472, 7.903551 54.184912, 7.90351 54.184952, 7.903473 54.184984, 7.903423 54.185027, 7.90332 54.18499, 7.903363 54.184945, 7.903395 54.18491, 7.903437 54.184871, 7.903653 54.184669, 7.903671 54.184653, 7.903704 54.184623, 7.903729 54.1846, 7.903843 54.184642, 7.90396 54.184686, 7.904204 54.184779, 7.904317 54.184673, 7.904259 54.184643, 7.905919 54.18307, 7.906147 54.182848, 7.906207 54.182543, 7.90618 54.182467, 7.906151 54.182406, 7.906117 54.182368, 7.905784 54.182331, 7.905497 54.182314, 7.905126 54.182313, 7.904702 54.182353, 7.904468 54.182395, 7.904433 54.182376, 7.904421 54.182326, 7.904502 54.182292, 7.90472 54.18225, 7.905133 54.182228, 7.90536 54.182234, 7.905682 54.182221, 7.90612 54.182264, 7.906881 54.182122, 7.907626 54.181423, 7.908446 54.180591, 7.908874 54.180344, 7.909268 54.180276, 7.909812 54.180221, 7.910772 54.180183, 7.911057 54.180147, 7.912301 54.179627, 7.912569 54.179531, 7.912607 54.179597, 7.912484 54.179692, 7.911741 54.180013, 7.911157 54.180241, 7.910877 54.18028, 7.910844 54.180355, 7.911133 54.180471, 7.911757 54.180799, 7.912382 54.180939, 7.912908 54.180985, 7.913203 54.181011, 7.914927 54.181078, 7.916344 54.181101, 7.917004 54.180951, 7.917045 54.180846, 7.917049 54.180704, 7.917242 54.180725, 7.917969 54.181119, 7.918272 54.181301, 7.91839 54.181438, 7.91838 54.181601, 7.918317 54.181693, 7.918048 54.182011, 7.917992 54.182268, 7.918055 54.182578, 7.918104 54.182873, 7.918365 54.183671, 7.918869 54.184267, 7.919249 54.1851, 7.91942 54.185803, 7.919408 54.187068, 7.919032 54.187614, 7.91869 54.188492, 7.918745 54.188688, 7.920405 54.190478, 7.920487 54.190548, 7.920567 54.190551, 7.920648 54.190506, 7.920761 54.190376, 7.920919 54.19025, 7.921076 54.190085, 7.921329 54.189877, 7.921391 54.189857, 7.921434 54.189866, 7.921414 54.189906, 7.920657 54.190643, 7.920623 54.190688, 7.920613 54.190707, 7.920568 54.190757, 7.920262 54.190977, 7.919913 54.191293, 7.919524 54.191664, 7.919457 54.191714, 7.919405 54.191719, 7.919391 54.191711, 7.919409 54.191668, 7.919516 54.191555, 7.919792 54.191284, 7.920195 54.190904, 7.920247 54.190854, 7.920191 54.19083, 7.920262 54.190773, 7.920319 54.190798, 7.920438 54.190697, 7.920401 54.190616, 7.919561 54.189681, 7.919476 54.189655, 7.919345 54.189605, 7.919079 54.189522, 7.918742 54.189446, 7.918285 54.189377, 7.918053 54.189349, 7.917745 54.18931, 7.917293 54.189266, 7.917134 54.189259, 7.916875 54.189221, 7.916733 54.189215, 7.916548 54.189201, 7.916262 54.189171, 7.915947 54.18917, 7.915769 54.189154, 7.915445 54.189115, 7.915139 54.189077, 7.914957 54.189062, 7.914502 54.189032, 7.914145 54.189014, 7.913876 54.188989, 7.913569 54.188948, 7.913305 54.188913, 7.913087 54.188871, 7.912901 54.188832, 7.912673 54.188794, 7.91248 54.188753, 7.912307 54.188716, 7.912144 54.188667, 7.911981 54.188615, 7.911855 54.188575, 7.911733 54.188548, 7.911601 54.188505, 7.911401 54.188432, 7.911298 54.188386, 7.911203 54.188333, 7.911102 54.188252, 7.910978 54.188172, 7.910791 54.188039, 7.910657 54.187967, 7.910378 54.187858, 7.910089 54.187756, 7.909812 54.187669, 7.909552 54.187597, 7.909236 54.187486, 7.909049 54.187431, 7.908876 54.187378, 7.908437 54.18727, 7.908115 54.187195, 7.907642 54.187089, 7.907292 54.187027, 7.907026 54.186992, 7.906731 54.186945, 7.906467 54.186895, 7.906295 54.186874, 7.90557 54.186795, 7.905316 54.186764, 7.905062 54.186743, 7.904888 54.18672, 7.904677 54.186684, 7.904492 54.186661, 7.904335 54.186647, 7.904171 54.186639, 7.903942 54.186633, 7.90363 54.186633, 7.903156 54.186645, 7.902846 54.186662, 7.902639 54.186679, 7.90253 54.186695, 7.902281 54.186717)) +POLYGON ((7.888241 54.178986, 7.888308 54.179114, 7.888355 54.179104, 7.888392 54.179097, 7.88924 54.178921, 7.889865 54.178796, 7.890008 54.179039, 7.889329 54.179179, 7.889338 54.179194, 7.889335 54.17921, 7.889222 54.179267, 7.889114 54.179306, 7.888946 54.179345, 7.889093 54.17962, 7.889257 54.179867, 7.889501 54.180088, 7.8898 54.180301, 7.890217 54.180522, 7.890537 54.180666, 7.890846 54.180478, 7.890926 54.18043, 7.890939 54.180437, 7.890962 54.180451, 7.891235 54.18029, 7.891249 54.180298, 7.891264 54.180306, 7.891583 54.18013, 7.891603 54.180074, 7.891639 54.180054, 7.89167 54.180036, 7.891758 54.180092, 7.891766 54.180097, 7.891773 54.180101, 7.891793 54.180114, 7.89181 54.180125, 7.892111 54.179946, 7.892134 54.179933, 7.892162 54.179916, 7.892494 54.179718, 7.892525 54.179735, 7.892901 54.17952, 7.892863 54.179504, 7.89286 54.179495, 7.892923 54.179458, 7.892949 54.179457, 7.893142 54.179573, 7.893142 54.179585, 7.892657 54.179877, 7.892629 54.17988, 7.892014 54.180247, 7.891998 54.180246, 7.891668 54.180502, 7.891535 54.180666, 7.891483 54.180733, 7.891447 54.180808, 7.891411 54.18088, 7.891379 54.180968, 7.891366 54.181035, 7.891362 54.181138, 7.891357 54.181239, 7.891347 54.181359, 7.891336 54.181488, 7.891303 54.181686, 7.891279 54.181786, 7.891253 54.181844, 7.891209 54.181901, 7.891101 54.181999, 7.890957 54.182172, 7.890839 54.182342, 7.890763 54.182515, 7.890721 54.182687, 7.890714 54.182902, 7.890729 54.183117, 7.890768 54.183296, 7.890808 54.183446, 7.890862 54.183478, 7.891082 54.18361, 7.891161 54.183653, 7.891234 54.183712, 7.891283 54.183789, 7.891336 54.183863, 7.891407 54.183942, 7.891541 54.18402, 7.891454 54.184076, 7.891357 54.184027, 7.891287 54.18397, 7.891135 54.183774, 7.891072 54.183703, 7.890716 54.183501, 7.89036 54.1833, 7.890324 54.18328, 7.890283 54.183257, 7.889982 54.183075, 7.889965 54.183065, 7.889735 54.182938, 7.889695 54.182915, 7.888625 54.183548, 7.888306 54.183726, 7.88835 54.183751, 7.888363 54.183758, 7.888489 54.18383, 7.890016 54.184696, 7.890196 54.184698, 7.890803 54.184289, 7.890878 54.184239, 7.89094 54.184228, 7.891004 54.184237, 7.891047 54.184258, 7.891065 54.184284, 7.891068 54.184311, 7.891054 54.184335, 7.891032 54.184354, 7.891013 54.18437, 7.890779 54.184527, 7.890331 54.184834, 7.887759 54.186551, 7.885241 54.188261, 7.885224 54.188273, 7.885186 54.188263, 7.884284 54.188861, 7.88402 54.189055, 7.883315 54.18955, 7.883236 54.189577, 7.883159 54.189563, 7.883121 54.189527, 7.883141 54.18947, 7.883253 54.189383, 7.88353 54.189184, 7.883528 54.189168, 7.883598 54.189135, 7.883673 54.189093, 7.88379 54.189031, 7.883811 54.189042, 7.883831 54.188951, 7.883819 54.1889, 7.883743 54.188766, 7.883652 54.18867, 7.883473 54.18855, 7.883146 54.188396, 7.882855 54.188294, 7.882546 54.188205, 7.881878 54.188068, 7.880778 54.187943, 7.879781 54.187876, 7.878633 54.187781, 7.877841 54.187691, 7.877117 54.187683, 7.876876 54.18768, 7.876304 54.187688, 7.876052 54.18771, 7.875908 54.187739, 7.875741 54.187865, 7.875623 54.187939, 7.875505 54.187981, 7.875335 54.188002, 7.875035 54.188019, 7.874984 54.188085, 7.874807 54.188132, 7.874716 54.18815, 7.874635 54.188143, 7.874407 54.188036, 7.874263 54.188013, 7.874214 54.18798, 7.874067 54.187983, 7.873875 54.18806, 7.873613 54.188119, 7.873511 54.188171, 7.873447 54.188193, 7.873317 54.188192, 7.873147 54.188248, 7.873 54.188253, 7.872918 54.188232, 7.872889 54.188196, 7.872859 54.188214, 7.872845 54.188254, 7.872769 54.18828, 7.872748 54.188325, 7.872651 54.188364, 7.872625 54.188399, 7.872475 54.188427, 7.872398 54.18841, 7.872376 54.188392, 7.872307 54.188383, 7.872017 54.188418, 7.871798 54.188421, 7.871589 54.188407, 7.871409 54.188382, 7.871249 54.18835, 7.871162 54.18835, 7.870815 54.188412, 7.870739 54.188392, 7.870672 54.188316, 7.870629 54.188264, 7.87055 54.188242, 7.870436 54.188244, 7.870384 54.188231, 7.870347 54.188196, 7.870343 54.188131, 7.870076 54.188094, 7.869988 54.188107, 7.869906 54.188138, 7.869885 54.188182, 7.869794 54.188213, 7.869721 54.188225, 7.869655 54.188208, 7.869603 54.188178, 7.869504 54.188104, 7.869655 54.188031, 7.869752 54.188038, 7.869735 54.187987, 7.869703 54.187918, 7.869675 54.187886, 7.869656 54.187871, 7.869427 54.187907, 7.868524 54.188049, 7.868185 54.188334, 7.868237 54.188434, 7.868112 54.188543, 7.867988 54.188497, 7.866339 54.189827, 7.866261 54.18989, 7.865851 54.190195, 7.865766 54.190259, 7.864883 54.190783, 7.864864 54.190772, 7.864843 54.190759, 7.865713 54.190228, 7.865756 54.190195, 7.86622 54.189841, 7.866481 54.189627, 7.867093 54.189124, 7.867886 54.18849, 7.867929 54.188453, 7.867985 54.188405, 7.86845 54.188009, 7.869194 54.187891, 7.869913 54.187784, 7.871428 54.187561, 7.871493 54.187525, 7.871547 54.187504, 7.871752 54.186988, 7.871815 54.186941, 7.87181 54.186921, 7.871847 54.186878, 7.871921 54.186855, 7.871947 54.18686, 7.871993 54.186842, 7.87218 54.186729, 7.872192 54.186708, 7.872448 54.186505, 7.872524 54.186517, 7.873228 54.186073, 7.873222 54.186047, 7.873311 54.18596, 7.873401 54.185898, 7.873444 54.185896, 7.873598 54.185841, 7.873728 54.185792, 7.873842 54.185767, 7.873872 54.185774, 7.875337 54.185422, 7.877137 54.18457, 7.877812 54.1836, 7.879195 54.182475, 7.879688 54.182387, 7.879688 54.182387, 7.880052 54.18215, 7.880336 54.181641, 7.881158 54.180169, 7.881411 54.179889, 7.881779 54.179735, 7.881825 54.179715, 7.881815 54.179686, 7.881857 54.179617, 7.882621 54.178114, 7.883271 54.177623, 7.883918 54.177188, 7.884023 54.177136, 7.88422 54.177115, 7.884423 54.177109, 7.884559 54.17713, 7.885526 54.177331, 7.885665 54.177371, 7.886216 54.177485, 7.886339 54.177453, 7.886409 54.177409, 7.886964 54.17725, 7.887353 54.17712, 7.887448 54.177086, 7.88749 54.176978, 7.887442 54.176987, 7.887415 54.176967, 7.887524 54.176655, 7.887895 54.175766, 7.887948 54.175558, 7.888015 54.175454, 7.888079 54.17525, 7.888134 54.175127, 7.888315 54.174667, 7.888293 54.174571, 7.88841 54.174488, 7.88854 54.174244, 7.888636 54.174009, 7.888702 54.173932, 7.888675 54.173847, 7.888882 54.173494, 7.888854 54.17341, 7.888925 54.173242, 7.888981 54.173162, 7.889021 54.173011, 7.889116 54.172858, 7.889079 54.172788, 7.889133 54.172583, 7.889177 54.172476, 7.889206 54.1724, 7.889284 54.172358, 7.889343 54.172382, 7.889328 54.172403, 7.889329 54.172425, 7.889401 54.172381, 7.889373 54.172371, 7.889432 54.172245, 7.889443 54.172227, 7.889522 54.172011, 7.889569 54.171883, 7.889618 54.17182, 7.889652 54.171823, 7.889657 54.171796, 7.889729 54.171796, 7.889717 54.171788, 7.889738 54.171774, 7.889783 54.171802, 7.889759 54.171816, 7.889761 54.171841, 7.889754 54.171866, 7.889742 54.171865, 7.889682 54.172019, 7.889711 54.172023, 7.889695 54.172066, 7.889665 54.172064, 7.889588 54.172267, 7.889968 54.17204, 7.890733 54.170031, 7.890669 54.170041, 7.890603 54.170057, 7.890542 54.170079, 7.890468 54.170139, 7.890475 54.170144, 7.890457 54.170164, 7.89043 54.170177, 7.890377 54.17024, 7.890352 54.17025, 7.890341 54.170291, 7.890273 54.170317, 7.890249 54.170364, 7.890215 54.170371, 7.890219 54.17038, 7.890177 54.170392, 7.890159 54.170365, 7.890189 54.170269, 7.890207 54.170192, 7.890225 54.170172, 7.890238 54.170173, 7.890238 54.170179, 7.890317 54.170186, 7.890365 54.170023, 7.890282 54.170013, 7.890298 54.169952, 7.890419 54.169632, 7.890442 54.169594, 7.890449 54.16954, 7.890495 54.169471, 7.890557 54.169309, 7.890626 54.169318, 7.890651 54.169332, 7.890692 54.169338, 7.890676 54.169404, 7.890471 54.169938, 7.890448 54.169997, 7.890472 54.16999, 7.890485 54.170002, 7.890551 54.169981, 7.890612 54.169963, 7.89068 54.169949, 7.890765 54.169938, 7.890916 54.169923, 7.890953 54.169898, 7.891223 54.169861, 7.89141 54.169872, 7.891499 54.169823, 7.892109 54.169766, 7.892183 54.169785, 7.893308 54.169666, 7.893311 54.169645, 7.89375 54.169586, 7.894228 54.16955, 7.894569 54.16951, 7.894738 54.169492, 7.895012 54.169467, 7.895164 54.169458, 7.895544 54.169408, 7.895594 54.169437, 7.895678 54.169428, 7.895847 54.169434, 7.89598 54.169445, 7.89609 54.169474, 7.897904 54.17023, 7.898739 54.170568, 7.898984 54.170676, 7.898984 54.170698, 7.899133 54.171284, 7.899214 54.171917, 7.899583 54.171997, 7.899905 54.172417, 7.900139 54.172712, 7.900162 54.172742, 7.900031 54.173133, 7.899943 54.173435, 7.899861 54.17343, 7.89969 54.173975, 7.899752 54.173982, 7.89966 54.174277, 7.899547 54.174635, 7.899367 54.175211, 7.897158 54.176053, 7.897161 54.176057, 7.89717 54.176066, 7.894811 54.176963, 7.89479 54.176944, 7.894544 54.177038, 7.893562 54.177413, 7.893343 54.177496, 7.892214 54.177924, 7.891846 54.178067, 7.892125 54.178337, 7.892137 54.178332, 7.892187 54.17838, 7.892197 54.17839, 7.892104 54.178423, 7.892045 54.178368, 7.892057 54.178362, 7.891993 54.178301, 7.89179 54.178109, 7.891555 54.178198, 7.890733 54.178511, 7.89059 54.178565, 7.89056 54.178568, 7.890532 54.178558, 7.890519 54.178537, 7.890536 54.178519, 7.890575 54.178504, 7.890183 54.178254, 7.890049 54.178167, 7.889924 54.178089, 7.889523 54.177826, 7.889306 54.177686, 7.889284 54.177673, 7.889246 54.177649, 7.888885 54.177838, 7.888934 54.177869, 7.888954 54.177882, 7.888811 54.177963, 7.888799 54.177955, 7.88889 54.177904, 7.888867 54.177891, 7.888687 54.177991, 7.888679 54.177996, 7.888669 54.178002, 7.888568 54.178059, 7.888396 54.178155, 7.888343 54.178185, 7.888285 54.178288, 7.888197 54.178451, 7.888107 54.178615, 7.888075 54.178673, 7.888139 54.178792, 7.888241 54.178986)) diff --git a/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/helgoland.pbf b/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/helgoland.pbf new file mode 100644 index 00000000..9904a21d Binary files /dev/null and b/src/test/resources/edu/ie3/osmogrid/lv/region_coordinator/helgoland.pbf differ diff --git a/src/test/scala/edu/ie3/osmogrid/lv/region_coordinator/BoundaryFactorySpec.scala b/src/test/scala/edu/ie3/osmogrid/lv/region_coordinator/BoundaryFactorySpec.scala index aedf59aa..d2c1d0d6 100644 --- a/src/test/scala/edu/ie3/osmogrid/lv/region_coordinator/BoundaryFactorySpec.scala +++ b/src/test/scala/edu/ie3/osmogrid/lv/region_coordinator/BoundaryFactorySpec.scala @@ -9,16 +9,37 @@ package edu.ie3.osmogrid.lv.region_coordinator import edu.ie3.osmogrid.io.input.BoundaryAdminLevel import edu.ie3.test.common.UnitSpec +import scala.collection.parallel.ParSet import scala.io.Source +import scala.math.BigDecimal.RoundingMode import scala.util.Using class BoundaryFactorySpec extends UnitSpec { private val osmoGridModel = LvTestModel.osmoGridModel + private val osmoGridModelHelgoland = LvTestModel.osmoGridModelHelgoland - // polygons can be manually validated e.g. in QGIS "Creating boundary polygons from osm data" when { "having proper input data" should { + "result in correct polygons on municipality level with multiple polygons" in { + val rawPolygons = getFileLines("Helgoland_boundaries_level8.csv") + val polygons = rawPolygons.map(truncate(_, 6)) + + val actualPolygons: ParSet[String] = + BoundaryFactory + .buildBoundaryPolygons( + osmoGridModelHelgoland, + BoundaryAdminLevel.MUNICIPALITY_LEVEL + ) + .values + .flatMap(_.toList) + .map(_.toString) + .map(truncate(_, 6)) + .toSet + + actualPolygons.mkString(", ") shouldBe polygons.mkString(", ") + } + "result in correct polygons on county level" in { val polygons = getFileLines("DoBoCas_boundaries_level6.csv") @@ -29,11 +50,15 @@ class BoundaryFactorySpec extends UnitSpec { BoundaryAdminLevel.COUNTY_LEVEL ) .values + .flatMap(_.toList) // Flatten the lists of polygons .map(_.toString) - .seq .toSet - actualPolygons shouldBe polygons + val expectedSet = polygons.map(_.trim) + val actualSet = actualPolygons.map(_.trim) + + actualSet.size shouldBe expectedSet.size + actualSet.forall(expectedSet.contains) shouldBe true } "result in correct polygons on municipality level" in { @@ -72,6 +97,20 @@ class BoundaryFactorySpec extends UnitSpec { } } + private def truncate(polygon: String, precision: Int): String = { + val pattern = "(-?\\d+\\.\\d+) (-?\\d+\\.\\d+)".r + pattern.replaceAllIn( + polygon, + m => + BigDecimal(m.group(1)) + .setScale(precision, RoundingMode.DOWN) + .toString() + " " + + BigDecimal(m.group(2)) + .setScale(precision, RoundingMode.DOWN) + .toString() + ) + } + private def getFileLines(resource: String): Set[String] = { val file = getClass.getResource(resource) assert(file != null) diff --git a/src/test/scala/edu/ie3/osmogrid/lv/region_coordinator/LvRegionCoordinatorIT.scala b/src/test/scala/edu/ie3/osmogrid/lv/region_coordinator/LvRegionCoordinatorIT.scala index 574638ef..34e9e58f 100644 --- a/src/test/scala/edu/ie3/osmogrid/lv/region_coordinator/LvRegionCoordinatorIT.scala +++ b/src/test/scala/edu/ie3/osmogrid/lv/region_coordinator/LvRegionCoordinatorIT.scala @@ -72,36 +72,33 @@ class LvRegionCoordinatorIT _.lvCoordinatorGridGeneratorAdapter shouldBe gridGeneratorReply.ref ) - // Recklinghausen - models.exists { m => - m.buildings.size == 88 && - m.highways.size == 19 && - m.landuses.size == 17 && - m.boundaries.map(_.entity.id).toSet.seq.equals(Set(62770, 56664)) && - m.existingSubstations.isEmpty - } shouldBe true - - // Dortmund - models.exists { m => - m.buildings.size == 318 && - m.highways.size == 128 && - m.landuses.size == 26 && - m.boundaries - .map(_.entity.id) - .toSet - .seq - .equals(Set(10035847, 1829065)) && - m.existingSubstations.size == 2 - } shouldBe true - - // Bochum - models.exists { m => - m.buildings.size == 24 && - m.highways.size == 24 && - m.landuses.size == 21 && - m.boundaries.map(_.entity.id).toSet.seq.equals(Set(1647366, 62644)) && - m.existingSubstations.isEmpty - } shouldBe true + val testCases = Seq( + (Set(1829065, 10035847), 318, 128, 26, 2), + (Set(62644, 1647366), 24, 25, 21, 0), + (Set(56664, 62770), 88, 20, 17, 0) + ) + + testCases.zip(models).foreach { + case ( + ( + expectedBoundaryIds, + expectedBuildings, + expectedHighways, + expectedLanduses, + expectedSubstations + ), + model + ) => + val actualBoundaryIds = model.boundaries.map(_.entity.id).toSet + + model.buildings.size shouldBe expectedBuildings + model.highways.size shouldBe expectedHighways + model.landuses.size shouldBe expectedLanduses + actualBoundaryIds.mkString(", ") shouldBe expectedBoundaryIds + .mkString(", ") + model.existingSubstations.size shouldBe expectedSubstations + } + } } diff --git a/src/test/scala/edu/ie3/osmogrid/lv/region_coordinator/LvTestModel.scala b/src/test/scala/edu/ie3/osmogrid/lv/region_coordinator/LvTestModel.scala index 48b070f8..8577af0e 100644 --- a/src/test/scala/edu/ie3/osmogrid/lv/region_coordinator/LvTestModel.scala +++ b/src/test/scala/edu/ie3/osmogrid/lv/region_coordinator/LvTestModel.scala @@ -6,11 +6,6 @@ package edu.ie3.osmogrid.lv.region_coordinator -import org.apache.pekko.actor.testkit.typed.scaladsl.{ - ActorTestKit, - ScalaTestWithActorTestKit, - TestProbe -} import edu.ie3.datamodel.models.input.connector.`type`.{ LineTypeInput, Transformer2WTypeInput @@ -21,7 +16,11 @@ import edu.ie3.osmogrid.model.OsmoGridModel.LvOsmoGridModel import edu.ie3.osmogrid.model.SourceFilter.LvFilter import edu.ie3.test.common.UnitSpec import edu.ie3.util.quantities.QuantityUtils.RichQuantityDouble -import org.scalatestplus.mockito.MockitoSugar.mock +import org.apache.pekko.actor.testkit.typed.scaladsl.{ + ActorTestKit, + ScalaTestWithActorTestKit, + TestProbe +} import java.util.UUID import scala.concurrent.duration.DurationInt @@ -67,6 +66,8 @@ object LvTestModel extends ScalaTestWithActorTestKit with UnitSpec { Seq.empty ) + lazy val (lvConfigThreeCounties, osmoGridModelHelgoland) = + readOsmModelHelgoland() protected def readOsmModel() : (OsmoGridConfig.Generation.Lv, LvOsmoGridModel) = { val inputResource = getClass.getResource("DoBoCas.pbf") @@ -115,4 +116,53 @@ object LvTestModel extends ScalaTestWithActorTestKit with UnitSpec { case lvModel: LvOsmoGridModel => (cfg.generation.lv.value, lvModel) } } + + protected def readOsmModelHelgoland() + : (OsmoGridConfig.Generation.Lv, LvOsmoGridModel) = { + val inputResource = getClass.getResource("helgoland.pbf") + assert(inputResource != null) + val resourcePath = getResourcePath("helgoland.pbf") + + val cfg = OsmoGridConfigFactory + .parseWithoutFallback( + s"""input.osm.pbf.file = "${resourcePath.replace("\\", "\\\\")}" + |input.asset.file.directory = "${getResourcePath("/lv_assets") + .replace("\\", "\\\\")}" + |input.asset.file.separator = "," + |input.asset.file.hierarchic = false + |output.gridName = "test_grid" + |output.csv.directory = "output_file_path" + |generation.lv.averagePowerDensity = 12.5 + |generation.lv.ratedVoltage = 0.4 + |generation.lv.gridName = "testLvGrid" + |generation.lv.considerHouseConnectionPoints = false + |generation.lv.loadSimultaneousFactor = 0.15 + |generation.lv.boundaryAdminLevel.starting = 2 + |generation.lv.boundaryAdminLevel.lowest = 8 + |generation.lv.minDistance = 10 + |generation.mv.spawnMissingHvNodes = false + |generation.mv.voltageLevel.id = mv + |generation.mv.voltageLevel.default = 10.0 + |""".stripMargin + ) + .success + .value + + val inputActor = actorTestKit.spawn( + InputDataProvider(cfg.input) + ) + + val inputReply = TestProbe[InputResponse]() + + inputActor ! ReqOsm( + inputReply.ref, + filter = LvFilter() + ) + + inputReply + .expectMessageType[RepOsm](30 seconds) + .osmModel match { + case lvModel: LvOsmoGridModel => (cfg.generation.lv.value, lvModel) + } + } }