コード例 #1
0
    def test_trim_redundant_nodes_optional_angle_tolerance(self):
        """Two non-collinear segments, with 45 deg angle difference. Test
        with different angle tolerance"""
        points = [Point(0, 0), Point(100, 0), Point(200, 100)]
        before_trim_expected_nodes = map(lambda point: RoadSimpleNode(point),
                                         points)

        road = Road.from_control_points(points)
        self.assertEqual(road.nodes(), before_trim_expected_nodes)
        road.trim_redundant_nodes(44.5)
        self.assertEqual(road.nodes(), before_trim_expected_nodes)

        road = Road.from_control_points(points)
        self.assertEqual(road.nodes(), before_trim_expected_nodes)
        road.trim_redundant_nodes(45.5)
        self.assertEqual(
            road.nodes(),
            [RoadSimpleNode(Point(0, 0)),
             RoadSimpleNode(Point(200, 100))])

        road = Road.from_control_points(points)
        self.assertEqual(road.nodes(), before_trim_expected_nodes)
        road.trim_redundant_nodes(45.0)
        self.assertEqual(
            road.nodes(),
            [RoadSimpleNode(Point(0, 0)),
             RoadSimpleNode(Point(200, 100))])
コード例 #2
0
    def test_trim_redundant_nodes_multiple_collinear_segments(self):
        """Multiple collinear segments to be trimmed, leaving just two segments"""
        points = [
            Point(0, 0),
            Point(10, 0),
            Point(20, 0),
            Point(50, 0),
            Point(100, 0),
            Point(110, 10),
            Point(150, 50),
            Point(200, 100)
        ]
        road = Road.from_control_points(points)

        before_trim_expected_nodes = map(lambda point: RoadSimpleNode(point),
                                         points)
        self.assertEqual(road.nodes(), before_trim_expected_nodes)

        road.trim_redundant_nodes()

        after_trim_expected_nodes = [
            RoadSimpleNode(Point(0, 0)),
            RoadSimpleNode(Point(100, 0)),
            RoadSimpleNode(Point(200, 100))
        ]
        self.assertEqual(road.nodes(), after_trim_expected_nodes)
コード例 #3
0
 def add_road(self, goal_intersection, direction: Direction):
     """
     Add an outgoing lane to goal_intersection, which is at direction
     """
     road = Road(self, goal_intersection, direction.opposite())
     self.outgoing_roads[direction] = road
     goal_intersection.incoming_roads[direction.opposite()] = road
コード例 #4
0
 def test_trim_redundant_nodes_single_segment(self):
     """Nothing to do in this case, as the road has a single segment"""
     points = [Point(0, 0), Point(100, 0)]
     road = Road.from_control_points(points)
     road.trim_redundant_nodes()
     expected_nodes = map(lambda point: RoadSimpleNode(point), points)
     self.assertEqual(road.nodes(), expected_nodes)
コード例 #5
0
 def test_trim_redundant_nodes_no_collinear_segments(self):
     """Nothing to do in this case, as the existing segments in the road
     are not collinear"""
     points = [Point(0, 0), Point(100, 0), Point(200, 1)]
     road = Road.from_control_points(points)
     road.trim_redundant_nodes()
     expected_nodes = map(lambda point: RoadSimpleNode(point), points)
     self.assertEqual(road.nodes(), expected_nodes)
コード例 #6
0
 def test_bounding_box_with_lanes_with_positive_and_negative_offsets(self):
     road = Road.from_control_points(
         [Point(30, 25), Point(90, -30),
          Point(-25, 50)])
     road.add_lane(20)
     road.add_lane(-30)
     expected_box = BoundingBox(Point(-52, -57), Point(117, 77))
     self.assertEqual(road.bounding_box(), expected_box)
コード例 #7
0
 def _construct_road_row(self, row_index: int) -> List[Road]:
     switcher = {
         0: 2 * self.width,
         1: self.width + 1,
         2: 2 * self.width,
         3: self.width
     }
     return [Road() for i in range(switcher[row_index % 4])]
コード例 #8
0
    def test_trim_redundant_nodes_on_multiple_collinear_segments_with_one_intersection(
            self):
        """Two collinear segments, where the midpoint is an intersection.
        The middle point should not be removed, as that would remove the intersection"""

        city = City()
        city.add_intersection_at(Point(100, 0))
        city.add_road(
            Road.from_control_points([Point(100, 100),
                                      Point(100, 0)]))

        points = [
            Point(0, 0),
            Point(10, 0),
            Point(20, 0),
            Point(50, 0),
            Point(100, 0),
            Point(110, 0),
            Point(150, 0),
            Point(200, 0)
        ]
        road = Road.from_control_points(points)
        city.add_road(road)

        before_trim_expected_nodes = [
            RoadSimpleNode(Point(0, 0)),
            RoadSimpleNode(Point(10, 0)),
            RoadSimpleNode(Point(20, 0)),
            RoadSimpleNode(Point(50, 0)),
            RoadIntersectionNode(Point(100, 0)),
            RoadSimpleNode(Point(110, 0)),
            RoadSimpleNode(Point(150, 0)),
            RoadSimpleNode(Point(200, 0))
        ]
        self.assertEqual(road.nodes(), before_trim_expected_nodes)

        road.trim_redundant_nodes()

        after_trim_expected_nodes = [
            RoadSimpleNode(Point(0, 0)),
            RoadIntersectionNode(Point(100, 0)),
            RoadSimpleNode(Point(200, 0))
        ]

        self.assertEqual(road.nodes(), after_trim_expected_nodes)
コード例 #9
0
 def test_bounding_box(self):
     points_list = [Point(10, 20), Point(-15, 10), Point(40, -20)]
     road = Road.from_control_points(points_list)
     road.add_lane(10)
     road.add_lane(20)
     width = road.width()
     expected_box = BoundingBox(Point(-15 - width / 2, -20 - width / 2),
                                Point(40 + width / 2, 20 + width / 2))
     self.assertEqual(road.bounding_box(), expected_box)
コード例 #10
0
 def test_control_points_distances(self):
     points = [
         Point(0.0, 1.0),
         Point(1.0, 1.0),
         Point(2.0, 1.0),
         Point(0.0, 0.0)
     ]
     distances = [1.0, 1.0, math.sqrt(5)]
     road = Road.from_control_points(points)
     self.assertEqual(road.control_points_distances(), distances)
コード例 #11
0
    def test_trim_redundant_nodes_collinear_segments(self):
        """Two collinear segments, where the midpoint is not an intersection.
        The middle point should be removed"""
        points = [Point(0, 0), Point(100, 0), Point(200, 0)]
        road = Road.from_control_points(points)

        before_trim_expected_nodes = map(lambda point: RoadSimpleNode(point),
                                         points)
        self.assertEqual(road.nodes(), before_trim_expected_nodes)

        road.trim_redundant_nodes()

        after_trim_expected_nodes = [
            RoadSimpleNode(Point(0, 0)),
            RoadSimpleNode(Point(200, 0))
        ]
        self.assertEqual(road.nodes(), after_trim_expected_nodes)
コード例 #12
0
 def test_bounding_box_for_road_with_one_lane_and_positive_offset(self):
     road = Road.from_control_points([Point(-10, 40), Point(5, -20)])
     road.add_lane(10)
     expected_box = BoundingBox(Point(-22, -32), Point(17, 52))
     self.assertEqual(road.bounding_box(), expected_box)
コード例 #13
0
 def test_sum_control_points_distances_empty_road(self):
     road = Road.from_control_points([])
     self.assertEqual(road.sum_control_points_distances(), 0.0)
コード例 #14
0
 def test_sum_control_points_distances_empty(self):
     points = [Point(0.0, 1.0), Point(1.0, 1.0), Point(2.0, 1.0)]
     road = Road.from_control_points(points)
     self.assertEqual(road.sum_control_points_distances(1, 1), 0.0)
コード例 #15
0
 def test_sum_control_points_distances_partial_to_end(self):
     points = [Point(0.0, 1.0), Point(1.0, 1.0), Point(2.0, 1.0)]
     road = Road.from_control_points(points)
     self.assertEqual(road.sum_control_points_distances(1), 1.0)
コード例 #16
0
 def test_control_points_distances_one_point(self):
     road = Road.from_control_points([Point(1.0, 2.0)])
     self.assertEqual(road.control_points_distances(), [0.0])
コード例 #17
0
 def test_control_points_distances_empty(self):
     road = Road.from_control_points([])
     self.assertEqual(road.control_points_distances(), [])
コード例 #18
0
 def test_control_points(self):
     points = [Point(0.0, 1.0), Point(1.0, 1.0), Point(2.0, 1.0)]
     road = Road.from_control_points(points)
     self.assertEqual(road.control_points(), points)
コード例 #19
0
 def test_bounding_box_with_one_lane_with_null_width_and_offset(self):
     road = Road.from_control_points([Point(0, 0), Point(10, 10)])
     road.add_lane(0, 0)
     self.assertEqual(road.bounding_box(),
                      BoundingBox(Point(0, 0), Point(10, 10)))
コード例 #20
0
 def test_bounding_box_for_road_with_one_lane_of_null_offset(self):
     road = Road.from_control_points([Point(15, 50), Point(-20, 10)])
     road.add_lane(0)
     expected_box = BoundingBox(Point(-22, 8), Point(17, 52))
     self.assertEqual(road.bounding_box(), expected_box)
コード例 #21
0
 def test_bounding_box_for_rode_with_one_node_and_null_width(self):
     point = Point(0, 0)
     road = Road.from_control_points([point])
     road.add_lane(0, 0)
     self.assertEqual(road.bounding_box(), BoundingBox(point, point))
コード例 #22
0
 def test_bounding_box_for_road_with_one_node_and_positive_width(self):
     point = Point(10, 10)
     road = Road.from_control_points([point])
     road.add_lane(10)
     expected_box = BoundingBox(Point(-2, -2), Point(22, 22))
     self.assertEqual(road.bounding_box(), expected_box)