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
50 changes: 0 additions & 50 deletions CMakeLists.txt

This file was deleted.

1 change: 0 additions & 1 deletion Makefile

This file was deleted.

13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
iai_maps
========

The semantic and ground lab and environment maps for projects in the IAI group in the University of Bremen.

The maps have been split into several packages:

* iai_maps: 2D maps for localization
-> formerly subfolders 'maps', 'launch'
* iai_kitchen_defs: URDF model of the kitchen
-> formerly subfolders 'defs', 'room', 'Media'
* iai_semantic_map: Semantic OWL map of the kitchen
-> formerly subfolders 'prolog', 'owl'
9 changes: 9 additions & 0 deletions iai_kitchen_defs/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

cmake_minimum_required(VERSION 2.8.3)
project(iai_kitchen_defs)

find_package(catkin REQUIRED COMPONENTS xacro)

catkin_package(
DEPENDS xacro
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
17 changes: 17 additions & 0 deletions iai_kitchen_defs/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<package>
<name>iai_kitchen_defs</name>
<version>1.0.0</version>
<description>URDF description of the kitchen laboratory of the IAI in Bremen</description>

<maintainer email="winkler@cs.uni-bremen.de">Jan Winkler</maintainer>

<license>LGPL</license>

<author>Jan Winkler</author>

<buildtool_depend>catkin</buildtool_depend>

<build_depend>xacro</build_depend>
<run_depend>xacro</run_depend>

</package>
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.
7 changes: 7 additions & 0 deletions iai_maps/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

cmake_minimum_required(VERSION 2.8.3)
project(iai_maps)

find_package(catkin)

catkin_package()
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions iai_maps/launch/json.launch
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<launch>
<param name="initial_package" type="string" value="knowrob_map_data" />
<param name="initial_goal" type="string" value="owl_parse('package://iai_semantic_maps/owl/room.owl')" />

<node name="json_prolog" pkg="json_prolog" type="json_prolog_node" cwd="node" output="screen" />
</launch>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<launch>

<param name="kitchen_description"
command="$(find xacro)/xacro.py '$(find iai_maps)/room/kitchen_area.urdf.xml'"
command="$(find xacro)/xacro.py '$(find iai_kitchen_defs)/room/kitchen_area.urdf.xml'"
/>

<node pkg="tf" type="static_transform_publisher" name="kitchen_link_broadcaster"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion launch/room.launch → iai_maps/launch/room.launch
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<launch>

<param name="room_description"
command="$(find xacro)/xacro.py '$(find iai_maps)/room/room.urdf.xml'"
command="$(find xacro)/xacro.py '$(find iai_kitchen_defs)/room/room.urdf.xml'"
/>

<node pkg="tf" type="static_transform_publisher" name="room_link_broadcaster"
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.
14 changes: 14 additions & 0 deletions iai_maps/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<package>
<name>iai_maps</name>
<version>1.0.0</version>
<description>Maps of the kitchen laboratory of the IAI in Bremen</description>

<maintainer email="winkler@cs.uni-bremen.de">Jan Winkler</maintainer>

<license>LGPL</license>

<author>Jan Winkler</author>

<buildtool_depend>catkin</buildtool_depend>

</package>
9 changes: 9 additions & 0 deletions iai_semantic_maps/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

cmake_minimum_required(VERSION 2.8.3)
project(iai_semantic_maps)

find_package(catkin REQUIRED COMPONENTS comp_spatial)

catkin_package(
DEPENDS comp_spatial
)
Loading