forked from NommonSolutionsAndTechnologies/bluesky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.cfg
114 lines (81 loc) · 3.5 KB
/
settings.cfg
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# Network ports used by BlueSky
event_port = 11000
stream_port = 11001
simevent_port = 12000
simstream_port = 12001
# Select the performance model. options: 'openap', 'bada', 'legacy'
performance_model = 'openap'
# Verbose internal logging
verbose = False
# Indicate the logfile path
log_path = 'output'
# Indicate the scenario path
scenario_path = 'scenario'
# Indicate the root data path
data_path = 'data'
# Indicate the graphics data path
gfx_path = 'data/graphics'
# Indicate the path for cache data
cache_path = 'data/cache\py3'
# Indicate the path for navigation data
navdata_path = 'data/navdata'
# Indicate the path for the aircraft performance data
perf_path = 'data/performance'
# Indicate the path for the BADA aircraft performance data (leave empty if BADA is not available)
perf_path_bada = 'data/performance/BADA'
# Indicate the plugins path
plugin_path = 'plugins'
# Specify a list of plugins that need to be enabled by default
enabled_plugins = ['area', 'datafeed']
# Indicate the start location of the radar screen (e.g. [lat, lon], or airport ICAO code)
start_location = 'EHAM'
# Simulation timestep [seconds]
simdt = 0.05
# Performance timestep [seconds]
performance_dt = 1.0
# FMS timestep [seconds]
fms_dt = 1.0
# Prefer compiled BlueSky modules (cgeo, casas)
prefer_compiled = True
# Limit the max number of cpu nodes for parallel simulation
max_nnodes = 999
#=========================================================================
#= ASAS default settings
#=========================================================================
# ASAS lookahead time [sec]
asas_dtlookahead = 300.0
# ASAS update interval [sec]
asas_dt = 1.0
# ASAS horizontal PZ margin [nm]
asas_pzr = 5.0
# ASAS vertical PZ margin [ft]
asas_pzh = 1000.0
# ASAS factors applied on protected zone for resolution horizontally and vertically [-]
asas_marh = 1.05
asas_marv = 1.05
#=============================================================================
#= QTGL Gui specific settings below
#= Pygame Gui options in /data/graphics/scr_cfg.dat
#=============================================================================
# Radarscreen font size in pixels
text_size = 13
# Radarscreen airport symbol size in pixels
apt_size = 10
# Radarscreen waypoint symbol size in pixels
wpt_size = 10
# Radarscreen aircraft symbol size in pixels
ac_size = 16
# Stack and command line text color
stack_text_color = 0, 255, 0
# Stack and command line background color
stack_background_color = 102, 102, 102
discovery_port = 11000
enable_discovery = False
colour_palette = 'bluesky-default'
asas_vmin = 200.0
asas_vmax = 500.0
tile_array_size = 100
max_download_workers = 2
max_tile_zoom = 18
tile_sources = {'opentopomap': {'source': ['https://a.tile.opentopomap.org/{zoom}/{x}/{y}.png', 'https://b.tile.opentopomap.org/{zoom}/{x}/{y}.png', 'https://c.tile.opentopomap.org/{zoom}/{x}/{y}.png'], 'max_download_workers': 2, 'max_tile_zoom': 17, 'license': 'map data: © OpenStreetMap contributors, SRTM | map style: © OpenTopoMap.org (CC-BY-SA)'}, 'cartodb': {'source': ['https://cartodb-basemaps-b.global.ssl.fastly.net/light_nolabels/{zoom}/{x}/{y}.png'], 'max_tile_zoom': 20, 'license': 'CartoDB Grey and white, no labels'}, 'nasa': {'source': ['https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}.jpg'], 'max_tile_zoom': 13, 'license': 'Satellite images from NASA via ESRI'}}
tilesource = 'opentopomap'