Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gmsong06 committed Feb 3, 2023
1 parent 83d9888 commit 3edf70e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions autonomous/trajectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

auto_folder_path = "./autonomous/routines/"

# combines trajectory files into one auto_routine.json file
def combine_trajectory_json(routines):
for routine in routines:
output = {}
Expand All @@ -28,6 +29,7 @@ def combine_trajectory_json(routines):
with open(auto_folder_path + routine + "/auto_routine.json", "w") as auto_routine:
json.dump(output, auto_routine, indent=4)

# converts json to trajectories
def get_trajectories(routine):
trajectories = {}

Expand Down

0 comments on commit 3edf70e

Please sign in to comment.