Skip to content

Commit

Permalink
updated paths to ontologies
Browse files Browse the repository at this point in the history
  • Loading branch information
estherag committed Mar 22, 2022
1 parent cbf4689 commit 9698265
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions mros2_reasoner/launch/launch_reasoner.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,19 @@

def generate_launch_description():
# Get the launch directory
tomasys_ontology_bringup_dir = get_package_share_directory('mc_mdl_tomasys')
mros_ontology_bringup_dir = get_package_share_directory('mros_ontology')

# Create the launch configuration variables
working_ontology_file = LaunchConfiguration('model_file')

tomasys_files_array = [os.path.join(mros_ontology_bringup_dir, 'ontologies', 'tomasys.owl'),
os.path.join(mros_ontology_bringup_dir, 'ontologies', 'MROS_ontology.owl'),
os.path.join(mros_ontology_bringup_dir, 'ontologies', 'navigation_domain_ont.owl')]
tomasys_files_array = [os.path.join(tomasys_ontology_bringup_dir, 'owl', 'tomasys.owl'),
os.path.join(mros_ontology_bringup_dir, 'owl', 'mros.owl'),
os.path.join(mros_ontology_bringup_dir, 'owl', 'navigation_domain.owl')]

declare_working_ontology_cmd = DeclareLaunchArgument(
'model_file',
default_value=os.path.join(mros_ontology_bringup_dir, 'ontologies', 'URJCpilot.owl'),
default_value=os.path.join(mros_ontology_bringup_dir, 'owl', 'urjc_pilot.owl'),
description='File name for the Working ontology file')

declare_desired_configuration_cmd = DeclareLaunchArgument(
Expand Down

0 comments on commit 9698265

Please sign in to comment.