/kb/manage#

Caution

This documentation page has been auto-generated.

It may be missing some details.

/kb/manage Quick Facts

Category

Knowledge and reasoning

Message type

knowledge_core/Manage

Service to manage the knowledge base, including clearing all content and loading external ontologies.

See KnowledgeCore documentation for details.

Quick snippets#

Call the service from command-line#
$ rosservice call /kb/manage knowledge_core/Manage
# (tip: press Tab to complete the message prototype)
Call the service from a Python script#
#!/usr/bin/env python

import rospy
from knowledge_core.srv import *


if __name__ == "__main__":

    rospy.wait_for_service("/kb/manage")

    try:
        proxy = rospy.ServiceProxy("/kb/manage", Manage)
        response = proxy(args...) # check the knowledge_core/Manage message type for the expected arguments
        rospy.loginfo(response)

    except rospy.ServiceException as e:
        rospy.logerror("Service call failed: %s" % e)