{"id":20065050,"url":"https://github.com/ebtech/sbplpara","last_synced_at":"2025-06-16T01:36:37.755Z","repository":{"id":26893715,"uuid":"30355003","full_name":"EbTech/SBPLpara","owner":"EbTech","description":"SBPL code with parallel search algorithms","archived":false,"fork":false,"pushed_at":"2015-03-12T03:58:52.000Z","size":1388,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-05T15:48:28.687Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EbTech.png","metadata":{"files":{"readme":"README.txt","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-05T12:46:05.000Z","updated_at":"2015-03-12T03:58:52.000Z","dependencies_parsed_at":"2022-08-07T12:01:14.812Z","dependency_job_id":null,"html_url":"https://github.com/EbTech/SBPLpara","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/EbTech/SBPLpara","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EbTech%2FSBPLpara","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EbTech%2FSBPLpara/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EbTech%2FSBPLpara/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EbTech%2FSBPLpara/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EbTech","download_url":"https://codeload.github.com/EbTech/SBPLpara/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EbTech%2FSBPLpara/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260081918,"owners_count":22956209,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T13:48:49.185Z","updated_at":"2025-06-16T01:36:37.733Z","avatar_url":"https://github.com/EbTech.png","language":"C++","readme":"I. Building, Installing, and Using SBPL\n\n    SBPL is available as a standalone software library. SBPL itself has no\n    dependencies other than the C/C++ standard library.\n\n    These build and install instructions are primarily for Linux. For other\n    operating systems, CMake can generate the platform-specific build and project\n    files necessary for building SBPL.\n\n    Versions of ROS older than Fuerte may contain packages that depend on a ROS\n    package version of SBPL. The recommended method to install SBPL is to install\n    it as a standard system library. However, if you wish to use the old ROS\n    package version of SBPL, you may follow these instructions.\n\n    1. Building and Installing SBPL from source\n\n        1.1 Build SBPL\n\n            SBPL uses git as its version control system. From the directory where\n            you want the SBPL source to reside, clone the latest source from\n            https://github.com/sbpl/sbpl:\n\n            git clone https://github.com/sbpl/sbpl.git\n\n            In the source directory, build the SBPL library using standard\n            CMake build conventions:\n\n            mkdir build\n            cd build\n            cmake ..\n            make\n\n        1.2 Install SBPL\n\n            Install the built library and headers onto your local system\n            (usually into /usr/local):\n\n            sudo make install\n\n    2. Installing SBPL from pre-built binary package\n\n        A pre-built Debian package exists on Linux for ROS distributions\n        Fuerte and newer. To install the Debian, run:\n\n        sudo apt-get install ros-distro-sbpl\n\n        where distro is the name of your ROS distribution. This will install\n        the SBPL library and associated development headers alongside other\n        ROS components (in /opt/ros/distro on Ubuntu distributions). A\n        pkg-config file is also included to allow you to locate the SBPL\n        library components in your build system.\n\n    3. Build your (ROS) package with SBPL as a dependency (CMake)\n\n        In the CMakeLists.txt for your (ROS) package, the following lines are\n        needed to find the installed SBPL files:\n\n        find_package(PkgConfig REQUIRED)\n        pkg_check_modules(SBPL REQUIRED sbpl)\n        include_directories(${SBPL_INCLUDE_DIRS})\n        link_directories(${SBPL_LIBRARY_DIRS})\n\n        Then, after you've declared your binaries, you need to link them\n        against SBPL with the following line:\n\n        target_link_libraries(your-binary-here ${SBPL_LIBRARIES})\n\n    4. Installing and Using SBPL as a ROS package\n\n        The ROS package version of SBPL was deprecated with the release of ROS\n        Fuerte. However, packages in ROS Electric may still require the ROS\n        package version of SBPL.\n\n        4.1 Install SBPL\n\n            4.1.1 Source install\n\n                SBPL uses git as its version control system. From the\n                directory where you want the SBPL source to reside, clone the\n                latest source from https://github.com/sbpl/sbpl:\n\n                git clone https://github.com/sbpl/sbpl.git\n\n                In the source directory, checkout the electric branch of the\n                repository to revert to the old ROS package version:\n\n                git checkout -b electric\n\n                Ensure that SBPL is on your ROS_PACKAGE_PATH and type:\n\n                rosmake sbpl\n\n            4.1.2 Binary install\n\n                SBPL is also available as a pre-built Debian in ROS Electric.\n                To instal the Debian, run:\n\n                sudo apt-get install ros-electric-arm-navigation\n\n        4.2 Build your ROS package with SBPL as a depency (rosbuild)\n\n            In the manifest.xml for your package, you need to add the\n            following line to declare the SBPL package as a dependency:\n\n            \u003cdepend package=\"sbpl\"/\u003e\n\nII. Usage\n\n    Examples for how to use SBPL are in src/test/main.cpp.  Please follow the\n    examples carefully. The library contains a number of planning problem\n    examples, stored as ascii files.  These files (with extension .cfg) should\n    be passed in as arguments into the main function in main.cpp. The files\n    can be found in env_examples directory.\n\n    Command-line usage for the test_sbpl program can be viewed by passing '-h'\n    as argument to the executable.\n\n    Motion primitives files can be found in sbpl/matlab/mprim directory.\n\n    Finally, few visualization scripts can be found in\n    sbpl/matlab/visualization. In particular, plot_3Dpath.m function can be\n    used to visualize the path found by xytheta lattice planner. This\n    functions takes in .cfg file that specified environment and sol.txt file\n    that was generated within main.cpp by xythetalattice planners.\n\n    Note: If you compile the library with the ROS symbol defined, all text\n    output will be redirected to ROS logging constructions. Without the ROS\n    symbol defined, SBPL will print messages to stdout and test_sbpl will\n    generate a solution file, sol.txt, as well as a debugging information\n    file, debug.txt\n\nIII. Links\n\n    These instructions and more tutorials can be found at www.sbpl.net\n\n    For more information and documentation on SBPL visit:\n\n    http://www.ros.org/wiki/sbpl\n\n    For more information and documentation on using the x,y,theta environment\n    available in ROS visit:\n\n    http://www.ros.org/wiki/sbpl_lattice_planner\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Febtech%2Fsbplpara","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Febtech%2Fsbplpara","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Febtech%2Fsbplpara/lists"}