-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.example.toml
More file actions
48 lines (38 loc) · 994 Bytes
/
config.example.toml
File metadata and controls
48 lines (38 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# ============================
# Antares Simulation Config
# ============================
[antares.simulation]
emission_interval = 20
controller_bind_addr = "0.0.0.0:17394"
# ============================
# Ships to add at startup
# ============================
[[antares.simulation.initial_ships]]
type = "line"
initial_position = [0.0, 0.0]
angle = 0.785 # radians (approx. 45 degrees)
speed = 5.0
[[antares.simulation.initial_ships]]
type = "circle"
initial_position = [30.0, -30.0]
radius = 20.0
speed = 4.0
[[antares.simulation.initial_ships]]
type = "random"
initial_position = [-20.0, 20.0]
max_speed = 10.0
[[antares.simulation.initial_ships]]
type = "stationary"
initial_position = [50.0, 50.0]
# ============================
# Antares Radar Config
# ============================
[antares.radar]
bind_addr = "0.0.0.0:17396"
[antares.radar.detector]
range = 1000.0
speed = 0.0
angle = 0.0
start_coordinates = [4.0, -72.0]
[antares.radar.broadcast]
type = "tcp"