Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion config/example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

data:
deskew: False
preprocess: True
max_range: 100.0
min_range: 3.0

Expand Down
1 change: 0 additions & 1 deletion src/mapmos/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

class DataConfig(BaseModel):
deskew: bool = False
preprocess: bool = True
max_range: float = 100.0
min_range: float = 3.0

Expand Down
1 change: 0 additions & 1 deletion src/mapmos/odometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
def parse_config(config_data: DataConfig, config_odometry: OdometryConfig):
kiss_config = KISSConfig()
kiss_config.data.deskew = config_data.deskew
kiss_config.data.preprocess = config_data.preprocess
kiss_config.data.max_range = config_data.max_range
kiss_config.data.min_range = config_data.min_range
kiss_config.mapping.voxel_size = config_odometry.voxel_size
Expand Down