{"id":16215019,"url":"https://github.com/xarg/gopathfinding","last_synced_at":"2025-03-19T09:31:31.610Z","repository":{"id":57505508,"uuid":"2149238","full_name":"xarg/gopathfinding","owner":"xarg","description":"Pathfinding implementations in Go lang","archived":false,"fork":false,"pushed_at":"2017-02-23T19:32:24.000Z","size":14,"stargazers_count":33,"open_issues_count":0,"forks_count":7,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-11T02:12:58.387Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xarg.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2011-08-03T15:29:47.000Z","updated_at":"2022-02-06T16:27:22.000Z","dependencies_parsed_at":"2022-08-30T00:00:27.619Z","dependency_job_id":null,"html_url":"https://github.com/xarg/gopathfinding","commit_stats":null,"previous_names":["humanfromearth/gopathfinding"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xarg%2Fgopathfinding","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xarg%2Fgopathfinding/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xarg%2Fgopathfinding/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xarg%2Fgopathfinding/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xarg","download_url":"https://codeload.github.com/xarg/gopathfinding/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243982140,"owners_count":20378605,"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-10-10T11:13:40.408Z","updated_at":"2025-03-19T09:31:31.332Z","avatar_url":"https://github.com/xarg.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":".. image:: https://secure.travis-ci.org/xarg/gopathfinding.png?branch=master\n\ngopathfinding\n=================\n\nA small package that implements pathfinding algorithms.\n\nImplementions\n---------------\n\n * A* (A star) - implemented\n * Dijkstra - not implemented\n\nInstalling\n------------\n\nUsing goinstall\n++++++++++++++++++\n\n::\n\n        $ go get github.com/xarg/gopathfinding\n\nUsing make\n+++++++++++++\n\n::\n\n        $ git clone git://github.com/xarg/gopathfinding\n        $ cd gopathfinding\n        $ make install\n\nExample\n-----------\n\n::\n\n        import (\n                \"fmt\"\n                pathfinding \"github.com/xarg/gopathfinding\"\n        )\n\n        func main() {\n                //A pathfinding.MapData containing the \n                //coordinates(x, y) of LAND, WALL, START and STOP of the map.\n                //If your map is something more than 2d matrix then you might want to modify adjacentNodes\n\n                graph := pathfinding.NewGraph(map_data)\n\n                //Returns a list of nodes from START to STOP avoiding all obstacles if possible\n                shortest_path := pathfinding.Astar(graph)\n        }\n\nDocumentation\n---------------\n\nhttp://gopkgdoc.appspot.com/pkg/github.com/xarg/gopathfinding\n\nOr\n\n::\n\n        $ go doc github.com/xarg/gopathfinding\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxarg%2Fgopathfinding","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxarg%2Fgopathfinding","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxarg%2Fgopathfinding/lists"}