Skip to content
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

Add ApiServerPort to available AirSim settings #3196

Merged
merged 2 commits into from
Apr 19, 2021
Merged
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
5 changes: 5 additions & 0 deletions docs/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Below are complete list of settings available along with their default values. I
"ClockType": "",
"ClockSpeed": 1,
"LocalHostIp": "127.0.0.1",
"ApiServerPort": 41451,
"RecordUIVisible": true,
"LogMessagesVisible": true,
"ViewMode": "",
Expand Down Expand Up @@ -404,6 +405,10 @@ be allowed to talk to each other, in which case the UDP messages from one networ
So the LocalHostIp allows you to configure how you are reaching those machines. The default of 127.0.0.1 is not able to reach external machines,
this default is only used when everything you are talking to is contained on a single PC.

### ApiServerPort
This setting determines the server port that used by airsim clients, default port is 41451.
By specifying different ports, the user can run multiple environments in parallel to accelerate data collection process.

### SpeedUnitFactor
Unit conversion factor for speed related to `m/s`, default is 1. Used in conjunction with SpeedUnitLabel. This may be only used for display purposes for example on-display speed when car is being driven. For example, to get speed in `miles/hr` use factor 2.23694.

Expand Down