Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Empty file modified config/fre21_task_1.yaml
100755 → 100644
Empty file.
Empty file modified config/fre21_task_1_fast.yaml
100755 → 100644
Empty file.
Empty file modified config/fre21_task_1_mini.yaml
100755 → 100644
Empty file.
Empty file modified config/fre21_task_2.yaml
100755 → 100644
Empty file.
Empty file modified config/fre21_task_2_fast.yaml
100755 → 100644
Empty file.
Empty file modified config/fre21_task_2_mini.yaml
100755 → 100644
Empty file.
Empty file modified config/fre21_task_3.yaml
100755 → 100644
Empty file.
Empty file modified config/fre21_task_3_fast.yaml
100755 → 100644
Empty file.
Empty file modified config/fre21_task_3_mini.yaml
100755 → 100644
Empty file.
Empty file modified config/fre21_task_4.yaml
100755 → 100644
Empty file.
Empty file modified config/fre21_task_4_fast.yaml
100755 → 100644
Empty file.
Empty file modified config/fre21_task_4_mini.yaml
100755 → 100644
Empty file.
Empty file modified config/fre22_task_mapping.yaml
100755 → 100644
Empty file.
Empty file modified config/fre22_task_mapping_fast.yaml
100755 → 100644
Empty file.
Empty file modified config/fre22_task_mapping_mini.yaml
100755 → 100644
Empty file.
Empty file modified config/fre22_task_navigation.yaml
100755 → 100644
Empty file.
Empty file modified config/fre22_task_navigation_fast.yaml
100755 → 100644
Empty file.
Empty file modified config/fre22_task_navigation_mini.yaml
100755 → 100644
Empty file.
Empty file modified models/beer/materials/textures/beer.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified models/beer/model.config
100755 → 100644
Empty file.
Empty file modified models/beer/model.sdf
100755 → 100644
Empty file.
Empty file modified models/coke_can/materials/textures/coke_can.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified models/coke_can/meshes/coke_can.dae
100755 → 100644
Empty file.
Empty file modified models/coke_can/model.config
100755 → 100644
Empty file.
Empty file modified models/coke_can/model.sdf
100755 → 100644
Empty file.
Empty file modified models/location_marker_a/model.sdf
100755 → 100644
Empty file.
Empty file modified models/location_marker_b/model.sdf
100755 → 100644
Empty file.
Empty file modified models/start/model.sdf
100755 → 100644
Empty file.
4 changes: 2 additions & 2 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<depend>python3-yaml</depend>

<depend>ros2launch</depend>
<depend>ros-gz</depend>
<depend>ros-gz-sim</depend>
<depend>ros_gz_sim</depend>
<depend>ros_gz_bridge</depend>

<export>
<build_type>ament_cmake</build_type>
Expand Down
Empty file modified virtual_maize_field/generate_world.py
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion virtual_maize_field/world_generator/field_2d_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def center_plants(self) -> None:

for i in range(len(self.rows)):
self.rows[i] -= np.array([x_min, y_min])
self.rows[i] -= np.array([x_max, y_max]) / 2
self.rows[i] -= np.array([x_max - x_min, y_max - y_min]) / 2

# The function calculates the placements of the weed plants and
def place_objects(self) -> None:
Expand Down
Empty file modified virtual_maize_field/world_generator/world_description.py
100755 → 100644
Empty file.
Loading