-
Notifications
You must be signed in to change notification settings - Fork 798
feat(autoware_obstacle_cruise_planner): created the schema file and updated the readme file #10147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
vish0012
wants to merge
15
commits into
autowarefoundation:main
Choose a base branch
from
vish0012:add-schema-autoware_obstacle_cruise_planner
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,797
−0
Open
Changes from 3 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
5e5bc09
feat(autoware_obstacle_cruise_planner): Created the schema file,upda…
vish0012 dee9874
style(pre-commit): autofix
pre-commit-ci[bot] 66c4b26
Merge branch 'main' into add-schema-autoware_obstacle_cruise_planner
mitsudome-r e0182f6
fix: typo
mitsudome-r ada28a4
feat: I have updated the .json file with discription for each parameter
vish0012 9b3c283
style(pre-commit): autofix
pre-commit-ci[bot] e59ba4d
Update planning/autoware_obstacle_cruise_planner/schema/obstacle_crui…
mitsudome-r 9aa6493
Merge branch 'main' into add-schema-autoware_obstacle_cruise_planner
vish0012 0586739
fixed the schema file
vish0012 f541475
Merge branch 'main' of https://github.com/autowarefoundation/autoware…
vish0012 b1dacc8
Delete .github/CODEOWNERS
vish0012 ca9d3ac
Revert "Delete .github/CODEOWNERS"
mitsudome-r de82f4a
Merge branch 'main' into add-schema-autoware_obstacle_cruise_planner
vish0012 0e05007
Merge branch 'main' into add-schema-autoware_obstacle_cruise_planner
vish0012 daf351f
Merge branch 'main' into add-schema-autoware_obstacle_cruise_planner
vish0012 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
125 changes: 125 additions & 0 deletions
125
planning/autoware_obstacle_cruise_planner/schema/default_common.schema.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,125 @@ | ||
| { | ||
| "$schema": "http://json-schema.org/draft-07/schema#", | ||
| "title": "autoware_obstacle_cruise_planner parameters", | ||
| "type": "object", | ||
| "definitions": { | ||
| "deafult_common": { | ||
| "type": "object", | ||
| "properties": { | ||
| "max_vel": { | ||
| "type": "number", | ||
| "description": "Maximum velocity limit [m/s].", | ||
| "default": 11.1, | ||
| "minimum": 0.0 | ||
| }, | ||
| "normal": { | ||
| "type": "object", | ||
| "properties": { | ||
| "min_acc": { | ||
| "type": "number", | ||
| "description": "Minimum deceleration for normal driving [m/s²].", | ||
| "default": -1.0, | ||
| "minimum": -10.0, | ||
| "maximum": 0.0 | ||
| }, | ||
| "max_acc": { | ||
| "type": "number", | ||
| "description": "Maximum acceleration for normal driving [m/s²].", | ||
| "default": 1.0, | ||
| "minimum": 0.0, | ||
| "maximum": 10.0 | ||
| }, | ||
| "min_jerk": { | ||
| "type": "number", | ||
| "description": "Minimum jerk for normal driving [m/s³].", | ||
| "default": -1.0, | ||
| "minimum": -10.0, | ||
| "maximum": 0.0 | ||
| }, | ||
| "max_jerk": { | ||
| "type": "number", | ||
| "description": "Maximum jerk for normal driving [m/s³].", | ||
| "default": 1.0, | ||
| "minimum": 0.0, | ||
| "maximum": 10.0 | ||
| } | ||
| }, | ||
| "required": ["min_acc", "max_acc", "min_jerk", "max_jerk"], | ||
| "additionalProperties": false | ||
| }, | ||
| "slow_down": { | ||
| "type": "object", | ||
| "properties": { | ||
| "min_acc": { | ||
| "type": "number", | ||
| "description": "Minimum deceleration for slowing down [m/s²].", | ||
| "default": -1.0, | ||
| "minimum": -10.0, | ||
| "maximum": 0.0 | ||
| }, | ||
| "min_jerk": { | ||
| "type": "number", | ||
| "description": "Minimum jerk for slowing down [m/s³].", | ||
| "default": -1.0, | ||
| "minimum": -10.0, | ||
| "maximum": 0.0 | ||
| } | ||
| }, | ||
| "required": ["min_acc", "min_jerk"], | ||
| "additionalProperties": false | ||
| }, | ||
| "limit": { | ||
| "type": "object", | ||
| "properties": { | ||
| "min_acc": { | ||
| "type": "number", | ||
| "description": "Minimum deceleration limit [m/s²].", | ||
| "default": -2.5, | ||
| "minimum": -10.0, | ||
| "maximum": 0.0 | ||
| }, | ||
| "max_acc": { | ||
| "type": "number", | ||
| "description": "Maximum acceleration limit [m/s²].", | ||
| "default": 1.0, | ||
| "minimum": 0.0, | ||
| "maximum": 10.0 | ||
| }, | ||
| "min_jerk": { | ||
| "type": "number", | ||
| "description": "Minimum jerk limit [m/s³].", | ||
| "default": -1.5, | ||
| "minimum": -10.0, | ||
| "maximum": 0.0 | ||
| }, | ||
| "max_jerk": { | ||
| "type": "number", | ||
| "description": "Maximum jerk limit [m/s³].", | ||
| "default": 1.5, | ||
| "minimum": 0.0, | ||
| "maximum": 10.0 | ||
| } | ||
| }, | ||
| "required": ["min_acc", "max_acc", "min_jerk", "max_jerk"], | ||
| "additionalProperties": false | ||
| } | ||
| }, | ||
| "required": ["max_vel", "normal", "slow_down", "limit"], | ||
| "additionalProperties": false | ||
| } | ||
| }, | ||
| "properties": { | ||
| "/**": { | ||
| "type": "object", | ||
| "properties": { | ||
| "ros__parameters": { | ||
| "$ref": "#/definitions/deafult_common" | ||
mitsudome-r marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| } | ||
| }, | ||
| "required": ["ros__parameters"], | ||
| "additionalProperties": false | ||
| } | ||
| }, | ||
| "required": ["/**"], | ||
| "additionalProperties": false | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.