Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
80 commits
Select commit Hold shift + click to select a range
6cd48bf
json cleanup, tests reformat
leshy May 27, 2025
ba8eab1
check gitconfig before test
leshy May 28, 2025
1cd5915
set-safe-directory on the github action level
leshy May 28, 2025
932d720
workflow fix
leshy May 28, 2025
d3c2ac7
improved tests, verifying workflow config
leshy May 28, 2025
6fa0928
workflow config fix
leshy May 28, 2025
f7e9096
brute forcing config
leshy May 28, 2025
8fbec9a
another fix attempt
leshy May 28, 2025
e0d4e51
dif hashes need to be sorted
leshy May 28, 2025
b418179
testing in-ci pre-commit run
leshy May 28, 2025
01071ce
added pre-commit-config
leshy May 28, 2025
1d51629
forcing CI code cleanup
leshy May 28, 2025
b8f6d92
double pre-commit
leshy May 28, 2025
c24d11b
permissions added for auto-commits
leshy May 28, 2025
f35ed84
CI code cleanup
leshy May 28, 2025
1efa924
attempting to trigger docker builds after pre-commit
leshy May 28, 2025
bf23841
Merge branch 'env/cleanup' of github.com:dimensionalOS/dimos into env…
leshy May 28, 2025
437a7c6
workflow typo
leshy May 28, 2025
f8c1bae
workflow pytest reference fix
leshy May 28, 2025
b850fba
code cleanup needs permissions to call docker build
leshy May 28, 2025
759fe4f
pre-commit hooks in dev container
leshy May 28, 2025
95854ae
Auto-compress test data: test_file.txt
leshy May 28, 2025
ef8fe73
Auto-compress test data: test_file.txt
leshy May 28, 2025
9224f74
lfs hook fixes
leshy May 28, 2025
97319cf
lfs hook fixes 2
leshy May 28, 2025
20866bd
triggering rebuild 2
leshy May 28, 2025
5d6a960
final cleanup of the lfs script
leshy May 28, 2025
1b4f155
removed temp test files
leshy May 28, 2025
226eaaf
CI code cleanup
leshy May 28, 2025
64824ac
cleanup
leshy May 28, 2025
adfaed3
CI code cleanup
leshy May 28, 2025
ec8e3ea
pre-commit doesn't push to LFS, it just checks
leshy May 28, 2025
4a7aed7
null glob fix
leshy May 28, 2025
bf88749
slightly nicer lfs check output
leshy May 28, 2025
2d8049c
small workflow naming fixes
leshy May 28, 2025
2de8581
better lfs_check output
leshy May 28, 2025
022a5bf
renaming actions for better UI view
leshy May 28, 2025
0592c67
even shorter naming
leshy May 28, 2025
adeb3f7
checking explicit action naming
leshy May 28, 2025
1bcb9bd
decoupling workflows
leshy May 28, 2025
0c23a15
re-coupling workflows
leshy May 28, 2025
15aa2d9
sensor replay test
leshy May 28, 2025
72a6482
Merge branch 'dev' into env/datatests
leshy May 29, 2025
792582c
mapping test
leshy May 29, 2025
0f64117
webrtc aio loop fix
leshy May 29, 2025
4140cf5
testing if pre-commit actions work
leshy May 30, 2025
9cb74e3
CI code cleanup
leshy May 30, 2025
e79c1d9
verifying subsequent run
leshy May 30, 2025
3f4760a
Merge branch 'simpleplanner' of github.com:dimensionalOS/dimos into s…
leshy May 30, 2025
bf76df1
CI code cleanup
leshy May 30, 2025
39a7798
local planner checkpoint
leshy May 30, 2025
a7a1cfa
Merge branch 'simpleplanner' of github.com:dimensionalOS/dimos into s…
leshy May 30, 2025
bfec90a
odometry stream test
leshy May 30, 2025
7927d0a
sensor storage class, odometry tests
leshy May 30, 2025
0f29b6f
move cmd vector info
leshy May 30, 2025
bea9447
simple planner experiments
leshy May 30, 2025
b63d985
working version
leshy May 30, 2025
25ec70a
working implementation of simple planner
leshy May 31, 2025
69da4bd
working simple planner, still tuning
leshy May 31, 2025
ba2807a
random fiddling
leshy Jun 2, 2025
77f8289
Merge branch 'dev' into simpleplanner
leshy Jun 2, 2025
51473f8
Merge branch 'simpleplanner' of github.com:dimensionalOS/dimos into s…
leshy Jun 2, 2025
bf202e7
cleanup
leshy Jun 3, 2025
19cf46f
odometry tests
leshy Jun 3, 2025
3cbbaeb
map test cleanup
leshy Jun 3, 2025
5c5bbf5
cleaned up vector
leshy Jun 3, 2025
5240413
vector typing
leshy Jun 3, 2025
2f59478
removed flake, small cleanup
leshy Jun 3, 2025
ade5ea2
removed simple planner
leshy Jun 3, 2025
7ec7ca0
Merge branch 'dev' into simpleplanner
leshy Jun 3, 2025
7c44d47
CI code cleanup
leshy Jun 3, 2025
96369df
removed moved_out vfh planner
leshy Jun 3, 2025
25ae5f4
removed simple planner
leshy Jun 3, 2025
0685155
removed local planner changes
leshy Jun 3, 2025
0c84047
reverted run_webrtc
leshy Jun 3, 2025
09bd561
documentation for stream replay
leshy Jun 3, 2025
ea7b25b
llm-ed the docs to be way better
leshy Jun 3, 2025
b18f81d
further readme cleanup
leshy Jun 3, 2025
d2c5bf5
cleanu
leshy Jun 3, 2025
93f2d04
code comments revert
leshy Jun 3, 2025
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
3 changes: 2 additions & 1 deletion dimos/robot/global_planner/planner.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def set_goal(
if not path:
logger.warning("No path found to the goal.")
return False

print("pathing success", path)
return self.set_local_nav(path, stop_event=stop_event, goal_theta=goal_theta)

Expand All @@ -58,7 +59,7 @@ class AstarPlanner(Planner):
def plan(self, goal: VectorLike) -> Path:
goal = to_vector(goal).to_2d()
pos = self.get_robot_pos().to_2d()
costmap = self.get_costmap().smudge(preserve_unknown=False)
costmap = self.get_costmap().smudge()

# self.vis("costmap", costmap)
self.vis("target", goal)
Expand Down
366 changes: 0 additions & 366 deletions dimos/robot/unitree_webrtc/type/costmap.py

This file was deleted.

Loading
Loading