Skip to content

Commit

Permalink
fix: fix parameter names of motion_velocity_smoother (tier4#1376)
Browse files Browse the repository at this point in the history
* fix: fix parameter names of motion_velocity_smoother

Signed-off-by: tomoya.kimura <tomoya.kimura@tier4.jp>

* fix indent

Signed-off-by: tomoya.kimura <tomoya.kimura@tier4.jp>
  • Loading branch information
tkimura4 authored and boyali committed Oct 3, 2022
1 parent 492168c commit 3b2c922
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@
# resampling parameters for optimization
max_trajectory_length: 200.0 # max trajectory length for resampling [m]
min_trajectory_length: 150.0 # min trajectory length for resampling [m]
resample_time: 5.0 # resample total time for dense sampling [s]
dense_dt: 0.1 # resample time interval for dense sampling [s]
resample_time: 5.0 # resample total time for dense sampling [s]
dense_resample_dt: 0.1 # resample time interval for dense sampling [s]
dense_min_interval_distance: 0.1 # minimum points-interval length for dense sampling [m]
sparse_dt: 0.5 # resample time interval for sparse sampling [s]
sparse_resample_dt: 0.5 # resample time interval for sparse sampling [s]
sparse_min_interval_distance: 4.0 # minimum points-interval length for sparse sampling [m]

# resampling parameters for post process
post_max_trajectory_length: 300.0 # max trajectory length for resampling [m]
post_min_trajectory_length: 30.0 # min trajectory length for resampling [m]
post_resample_time: 10.0 # resample total time for dense sampling [s]
post_dense_dt: 0.1 # resample time interval for dense sampling [s]
post_resample_time: 10.0 # resample total time for dense sampling [s]
post_dense_resample_dt: 0.1 # resample time interval for dense sampling [s]
post_dense_min_interval_distance: 0.1 # minimum points-interval length for dense sampling [m]
post_sparse_dt: 0.1 # resample time interval for sparse sampling [s]
post_sparse_resample_dt: 0.1 # resample time interval for sparse sampling [s]
post_sparse_min_interval_distance: 1.0 # minimum points-interval length for sparse sampling [m]

# system
Expand Down
8 changes: 4 additions & 4 deletions planning/motion_velocity_smoother/README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@
| `max_trajectory_length` | `double` | Max trajectory length for resampling [m] | 200.0 |
| `min_trajectory_length` | `double` | Min trajectory length for resampling [m] | 30.0 |
| `resample_time` | `double` | Resample total time [s] | 10.0 |
| `dense_dt` | `double` | resample time interval for dense sampling [s] | 0.1 |
| `dense_resample_dt` | `double` | resample time interval for dense sampling [s] | 0.1 |
| `dense_min_interval_distance` | `double` | minimum points-interval length for dense sampling [m] | 0.1 |
| `sparse_dt` | `double` | resample time interval for sparse sampling [s] | 0.5 |
| `sparse_resample_dt` | `double` | resample time interval for sparse sampling [s] | 0.5 |
| `sparse_min_interval_distance` | `double` | minimum points-interval length for sparse sampling [m] | 4.0 |

### Resampling parameters for post process
Expand All @@ -176,9 +176,9 @@
| `post_max_trajectory_length` | `double` | max trajectory length for resampling [m] | 300.0 |
| `post_min_trajectory_length` | `double` | min trajectory length for resampling [m] | 30.0 |
| `post_resample_time` | `double` | resample total time for dense sampling [s] | 10.0 |
| `post_dense_dt` | `double` | resample time interval for dense sampling [s] | 0.1 |
| `post_dense_resample_dt` | `double` | resample time interval for dense sampling [s] | 0.1 |
| `post_dense_min_interval_distance` | `double` | minimum points-interval length for dense sampling [m] | 0.1 |
| `post_sparse_dt` | `double` | resample time interval for sparse sampling [s] | 0.1 |
| `post_sparse_resample_dt` | `double` | resample time interval for sparse sampling [s] | 0.1 |
| `post_sparse_min_interval_distance` | `double` | minimum points-interval length for sparse sampling [m] | 1.0 |

### Weights for optimization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@
max_trajectory_length: 200.0 # max trajectory length for resampling [m]
min_trajectory_length: 150.0 # min trajectory length for resampling [m]
resample_time: 5.0 # resample total time for dense sampling [s]
dense_dt: 0.1 # resample time interval for dense sampling [s]
dense_resample_dt: 0.1 # resample time interval for dense sampling [s]
dense_min_interval_distance: 0.1 # minimum points-interval length for dense sampling [m]
sparse_dt: 0.5 # resample time interval for sparse sampling [s]
sparse_resample_dt: 0.5 # resample time interval for sparse sampling [s]
sparse_min_interval_distance: 4.0 # minimum points-interval length for sparse sampling [m]

# resampling parameters for post process
post_max_trajectory_length: 300.0 # max trajectory length for resampling [m]
post_min_trajectory_length: 30.0 # min trajectory length for resampling [m]
post_min_trajectory_length: 30.0 # min trajectory length for resampling [m]
post_resample_time: 10.0 # resample total time for dense sampling [s]
post_dense_dt: 0.1 # resample time interval for dense sampling [s]
post_dense_resample_dt: 0.1 # resample time interval for dense sampling [s]
post_dense_min_interval_distance: 0.1 # minimum points-interval length for dense sampling [m]
post_sparse_dt: 0.1 # resample time interval for sparse sampling [s]
post_sparse_resample_dt: 0.1 # resample time interval for sparse sampling [s]
post_sparse_min_interval_distance: 1.0 # minimum points-interval length for sparse sampling [m]

# system
Expand Down

0 comments on commit 3b2c922

Please sign in to comment.