Create a new map folder under APOLLO_ROOT/modules/map/data/ and put base_map.bin in the folder.
在modules/map/data下建立一个自己的地图,比如highway101
可以到LGSVL里library库里找到想加载的地图,然后下载对应apollo格式的.bin地图文件,重命名为base_map.bin
如果是其他格式的,比如OpenDrive的文件,则需要转到Apollo支持的格式.bin文件
具体转换下次介绍。
generate_map.sh如下:
#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "${DIR}/.."
source "$DIR/apollo_base.sh"
if [ $# -eq 0 ]; then
echo "Please specify name of your map directory."
else
dir_name=modules/map/data/$1
bazel-bin/modules/map/tools/sim_map_generator --map_dir=${dir_name} --output_dir=${dir_name}
bash scripts/generate_routing_topo_graph.sh --map_dir ${dir_name}
fi
执行下面的命令:
cd /apollo
generate_map.sh YOUR_MAP_FOLDER_NAME
4.重启生效
重启dreamview:
./scripts/bootstrap.sh stop && ./scripts/bootstrap.sh
或
./scripts/bootstrap.sh restart
个人操作步骤:
首先从库里添加一个地图,比如highway101GE
然后下载对应的base_map.bin
然后docker 环境下,
bash ./scripts/generate_routing_topo_graph.sh --map_dir modules/map/data/highway101
生成routing_map.bin routing_map.txt
bazel-bin/modules/map/tools/sim_map_generator --map_dir=modules/map/data/highway101 --output_dir=modules/map/data/highway101
生成sim_map.bin sim_map.txt
最后重启生效:
bash scripts/bootstrap_lgsvl.sh restart
启动加
bash docker/scripts/dev_start.sh --map dgm
--map_dir=/apollo/modules/map/data/dgm
简单来说,就是一个apollo框架中,用python脚本写一个可视化高精地图的工具。
该工具默认在 “/apollo/modules/tools/mapshow” 目录下。
所有可以运行一下命令将库添加到python运行库中。当然你也可以直接在此目录下运行,就不用添加运行环境了。
source scripts/apollo_base.sh
usage: python mapshow.py [-h] -m MAP [-sl] [-l LANEID [LANEID …]]
optional arguments:
-h, --help show this help message and exit
-m MAP, --map MAP Specify the map file in txt or binary format
-sl, --showlaneids Show all lane ids in map
-l LANEID [LANEID …], --laneid LANEID [LANEID …] Show specific lane id(s) in map
显示基本的道路图
python mapshow.py -m /path/to/map/file
(1) txt文件生成
【OpenDrive 转Apollo】
参考这里。
(2)txt 文件转bin
cd modules/tools/create_map$
python3 convert_map_txt2bin.py -i …/…/map/data/dgm/base_map.txt -o …/…/map/data/dgm/base_map.bin
参考:
https://www.svlsimulator.com/docs/system-under-test/apollo-master-instructions/
https://www.svlsimulator.com/docs/system-under-test/apollo5-0-instructions/#adding-an-hd-map
参考LGSVL 高精地图使用教程
apollo 地图可视化工具MapShow的使用