Skip to content

Commit

Permalink
Create fetch_maps package
Browse files Browse the repository at this point in the history
  • Loading branch information
ablasdel committed Sep 16, 2015
1 parent 577547a commit d7575a6
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 9 deletions.
10 changes: 10 additions & 0 deletions fetch_maps/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 2.8.3)
project(fetch_maps)

find_package(catkin REQUIRED)
catkin_package()

install(
DIRECTORY maps
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
15 changes: 15 additions & 0 deletions fetch_maps/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0"?>
<package>
<name>fetch_maps</name>
<version>0.0.1</version>
<description>The fetch_maps package</description>

<maintainer email="[email protected]">Michael Ferguson</maintainer>
<maintainer email="[email protected]">Aaron Blasdel</maintainer>
<author>Michael Gregg</author>
<author>Michael Ferguson</author>
<author>Aaron Blasdel</author>
<license>BSD</license>

<buildtool_depend>catkin</buildtool_depend>
</package>
5 changes: 0 additions & 5 deletions fetch_navigation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ install(
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)

install(
DIRECTORY maps
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)

install(
PROGRAMS scripts/tilt_head.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
Expand Down
4 changes: 2 additions & 2 deletions fetch_navigation/launch/fetch_nav.launch
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<!-- Navigation requires at least one map.
In addition, it is sometimes desirable to have a "keepout" map
which is used for costmaps, but not localization -->
<arg name="map_file" default="$(find fetch_navigation)/maps/4_26_15.yaml" />
<arg name="map_keepout_file" default="$(find fetch_navigation)/maps/4_26_15_keepout.yaml" />
<arg name="map_file" default="$(find fetch_maps)/maps/4_26_15.yaml" />
<arg name="map_keepout_file" default="$(find fetch_maps)/maps/4_26_15_keepout.yaml" />
<arg name="use_keepout" default="false" />

<!-- Navigation parameter files -->
Expand Down
4 changes: 2 additions & 2 deletions fetch_navigation/launch/freight_nav.launch
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<!-- Navigation requires at least one map.
In addition, it is sometimes desirable to have a "keepout" map
which is used for costmaps, but not localization -->
<arg name="map_file" default="$(find fetch_navigation)/maps/4_26_15.yaml" />
<arg name="map_keepout_file" default="$(find fetch_navigation)/maps/4_26_15_keepout.yaml" />
<arg name="map_file" default="$(find fetch_maps)/maps/4_26_15.yaml" />
<arg name="map_keepout_file" default="$(find fetch_maps)/maps/4_26_15_keepout.yaml" />
<arg name="use_keepout" default="false" />

<!-- Navigation parameter files -->
Expand Down
1 change: 1 addition & 0 deletions fetch_navigation/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@

<run_depend>fetch_depth_layer</run_depend>
<run_depend>navigation</run_depend>
<run_depend>fetch_maps</run_depend>
<run_depend>slam_karto</run_depend>
</package>

0 comments on commit d7575a6

Please sign in to comment.