Skip to content

Commit 8d54793

Browse files
committed
fix: json schema error
Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp>
1 parent 9161d79 commit 8d54793

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/**:
22
ros__parameters:
3-
enable_differential_map_loading: $(var enable_differential_map_loading) # flag to enable loading of differential map
3+
enable_differential_map_loading: false # flag to enable loading of differential map
44
allow_unsupported_version: true # flag to load unsupported format_version anyway. If true, just prints warning.
55
center_line_resolution: 5.0 # [m]
66
use_waypoints: true # "centerline" in the Lanelet2 map will be used as a "waypoints" tag.
77
lanelet2_map_path: $(var lanelet2_map_path) # The lanelet2 map path
8-
dummy_metadata: # When the dynamic map loading is true and the map is a single file, this parameter will generate the metadata.
9-
min_x: 0.0
10-
min_y: 0.0
11-
x_resolution: 100000.0
12-
y_resolution: 100000.0
8+

map/autoware_map_loader/schema/lanelet2_map_loader.schema.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"type": "object",
88
"properties": {
99
"enable_differential_map_loading": {
10-
"type": "string",
10+
"type": "boolean",
1111
"description": "Flag to enable loading of differential map",
12-
"default": "true"
12+
"default": "false"
1313
},
1414
"allow_unsupported_version": {
1515
"type": "boolean",
@@ -26,7 +26,7 @@
2626
"description": "If true, `centerline` in the Lanelet2 map will be used as a `waypoints` tag.",
2727
"default": true
2828
},
29-
"lanelet2_map_paths_or_directory": {
29+
"lanelet2_map_path": {
3030
"type": "string",
3131
"description": "The lanelet2 map path pointing to the .osm file or directory that contains multiple .osm files",
3232
"default": ""

0 commit comments

Comments
 (0)