Skip to content

Commit 8b66b28

Browse files
committed
initialize grid map instance
1 parent 0d99147 commit 8b66b28

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/mapping/binary/binary_map.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ def __init__(self, width_m=60.0, height_m=60.0, resolution_m=1.0,
2525
center_y_m: Center y position of map[m]
2626
"""
2727

28-
pass
28+
self.map = GridMap(width_m, height_m, resolution_m,
29+
center_x_m, center_y_m)
2930

3031
def update_map(self, points_x_list, points_y_list):
3132
"""

0 commit comments

Comments
 (0)