Skip to content

Commit

Permalink
Move .pgm map files inside maps folder
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenadhi committed Apr 20, 2023
1 parent 0167ad0 commit 709465b
Show file tree
Hide file tree
Showing 21 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion pedsim_simulator/CMakeLists.txt
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -130,15 +130,19 @@ ament_target_dependencies(${EXECUTABLE_NAME} ${PEDSIM_SIMULATOR_DEPENDENCIES})
add_executable(pedsim_xml_to_occ_map src/pedsim_xml_to_occ_map.cpp)
ament_target_dependencies(pedsim_xml_to_occ_map ${PEDSIM_SIMULATOR_DEPENDENCIES})

add_executable(agent_pose_publisher src/agent_pose_publisher.cpp)
ament_target_dependencies(agent_pose_publisher ${PEDSIM_SIMULATOR_DEPENDENCIES})

install(DIRECTORY launch DESTINATION share/${PROJECT_NAME})
install(DIRECTORY maps DESTINATION share/${PROJECT_NAME})
install(DIRECTORY rviz DESTINATION share/${PROJECT_NAME})
install(DIRECTORY scenarios DESTINATION share/${PROJECT_NAME})
install(DIRECTORY config DESTINATION share/${PROJECT_NAME})
install(DIRECTORY params DESTINATION share/${PROJECT_NAME})

install(TARGETS
${EXECUTABLE_NAME}
pedsim_xml_to_occ_map
pedsim_xml_to_occ_map agent_pose_publisher
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib
RUNTIME DESTINATION lib/${PROJECT_NAME}
Expand Down
2 changes: 1 addition & 1 deletion pedsim_simulator/config/params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pedsim_simulator:
max_robot_speed: 1.5
update_rate: 25.0
simulation_factor: 1.0
op_mode: 1
op_mode: 2
queue_size: 10
robot_radius: 0.35
agent_radius: 0.35
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file modified pedsim_simulator/package.xml
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion pedsim_simulator/src/simulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void Simulator::initializeParams() {
this->declare_parameter("max_robot_speed", 1.5);
this->declare_parameter("update_rate", 25.0);
this->declare_parameter("simulation_factor", 1.0);
this->declare_parameter("op_mode", 1);
this->declare_parameter("op_mode", 2);
this->declare_parameter("queue_size", 10);
this->declare_parameter("robot_radius", 0.35);
this->declare_parameter("agent_radius", 0.35);
Expand Down

0 comments on commit 709465b

Please sign in to comment.