forked from Stefal/rtkbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.conf.default
148 lines (126 loc) · 3.95 KB
/
settings.conf.default
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# settings for run_cast.sh
[general]
# Version
version=2.4.1
# Rtkbase upgrade mandatory "checkpoint"
checkpoint_version=2.5.0
# User who runs str2str_file service
user=
# NTRIP caster program
BASEDIR=$(dirname "$0")
#path to the caster application
cast=/usr/local/bin/str2str
#Web frontend port
web_port=80
#set true if you want to enter a password to open the web gui.
web_authentification=true
#enter here your new password for web gui
#(it will be erased during the next web server start)
new_web_password=
#don't touch this one
web_password_hash=pbkdf2:sha256:150000$kWdEE8eU$d30b1a75e5cf898684bad60b47a45a8058b6c33535560be005b6e0110b947cf6
#key needed to add an aerial image layer
maptiler_key=
#Receive prerelease update (beta version)
prerelease=False
[main]
#base coordinates: lat long height
position='47.0983869 -1.2655108 36.4'
#gnss receiver com port
com_port=''
#gnss receiver com port settings
com_port_settings='115200:8:n:1'
#receiver model
receiver='unknown'
#gnss receiver format
receiver_format=''
#gnss receiver firmware release
receiver_firmware=''
#gnss receiver frequency available
receiver_carrier=''
#Antenna info, id, serial number. Without space inside the strings
antenna_info='ADVNULLANTENNA'
#tcp port for RAW stream. If you change this value, edit gpsd conf file to reflect the port in DEVICES.
tcp_port='5015'
#ext_tcp_source is mainly for dev purpose to receive a raw stream from another base
ext_tcp_source=''
#ext_tcp_port is the port used for ext_tcp_source
ext_tcp_port=''
[local_storage]
# File options for local data storage
#gnss data storage directory
datadir=$BASEDIR/data
#gnss data filename
file_name='%Y-%m-%d_%h-%M-%S_GNSS-1'
#file rotate time in hour
file_rotate_time='24'
#file overlap time in seconds
file_overlap_time='30'
#name for the compressed archive
archive_name=$(date -d "-1 days" +"%Y-%m-%d_%S").zip
#archives older than this value (in days) will be deleted by archive_and_clean.sh
archive_rotate='60'
#minum free space on device (in MB) before oldest archives are deleted
min_free_space='500'
[ntrip_A]
# NTRIP A caster options
#ntrip A caster url
svr_addr_a='caster.centipede.fr'
#ntrip A caster port
svr_port_a='2101'
#ntrip A caster password
svr_pwd_a=''
#Mount name
mnt_name_a='Your_mount_name'
rtcm_msg_a='1004,1005(10),1006,1008(10),1012,1019,1020,1033(10),1042,1045,1046,1077,1087,1097,1107,1127,1230'
#Receiver dependent options
ntrip_a_receiver_options=''
[ntrip_B]
# NTRIP B caster options
#ntrip B caster url
svr_addr_b='caster.centipede.fr'
#ntrip B caster port
svr_port_b='2101'
#ntrip B caster password
svr_pwd_b=''
#Mount name
mnt_name_b='Your_mount_name'
rtcm_msg_b='1004,1005(10),1006,1008(10),1012,1019,1020,1033(10),1042,1045,1046,1077,1087,1097,1107,1127,1230'
#Receiver dependent options
ntrip_b_receiver_options=''
[local_ntrip_caster]
# local NTRIP caster options
# These options are needed when you set your base as a NTRIP caster
#user/password credentials to connect to this local caster
local_ntripc_user=''
local_ntripc_pwd=''
#local ntrip port
local_ntripc_port='2101'
#mount point name for this local ntrip caster
local_ntripc_mnt_name=''
local_ntripc_msg='1004,1005(10),1006,1008(10),1012,1019,1020,1033(10),1042,1045,1046,1077,1087,1097,1107,1127,1230'
#Receiver dependent options
local_ntripc_receiver_options=''
[rtcm_svr]
# RTCM server options
#port for rtcm local use
rtcm_svr_port='5016'
#messages for rtcm local use
rtcm_svr_msg='1004,1005(10),1006,1008(10),1012,1019,1020,1033(10),1042,1045,1046,1077,1087,1097,1107,1127,1230'
#Receiver dependent options
rtcm_receiver_options=''
[rtcm_serial]
# Serial output RTCM options
#serial output for rtcm local use
out_com_port=''
#serial output settings
out_com_port_settings='115200:8:n:1'
#messages for rtcm local use
rtcm_serial_msg='1004,1005(10),1006,1008(10),1012,1019,1020,1033(10),1042,1045,1046,1077,1087,1097,1107,1127,1230'
#Receiver dependent options
rtcm_serial_receiver_options=''
[log]
#log directory
logdir=$BASEDIR/logs
#log trace level (0: no trace)
level=0