forked from chichengcn/gici-open
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_storage.yaml
executable file
·92 lines (88 loc) · 2.24 KB
/
data_storage.yaml
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
#Data storage configuration file. You can refer to "2.3.1 Stream Transfer and Format Conversion" in document for more details.
stream:
streamers:
- streamer:
tag: str_gnss_rov
type: serial
port: /dev/ttyUSB0
baudrate: 921600
- streamer:
tag: str_gnss_ref
type: ntrip-client
ip: 101.132.190.162
port: 8001
username: ...
passward: ...
mountpoint: ...
- streamer:
tag: str_gnss_eph
type: ntrip-client
ip: 101.132.190.162
port: 8001
username: ...
passward: ...
mountpoint: ...
- streamer:
tag: str_gnss_ssr
output_tags: [fmt_gnss_ssr]
type: ntrip-client
ip: 112.65.161.226
port: 2101
username: ...
passward: ...
mountpoint: ...
- streamer:
tag: str_imu
type: tcp-client
ip: 192.168.8.138
port: 9011
loop_duration: 0.001
buffer_length: 32768
- streamer:
tag: str_camera
type: tcp-client
ip: 192.168.8.138
port: 9021
buffer_length: 361472 # 752 * 480 + 512
- streamer:
tag: str_gnss_rov_file
input_tags: [str_gnss_rov]
type: file
path: <output-directory>/gnss_rover.bin
- streamer:
tag: str_gnss_ref_file
input_tags: [str_gnss_ref]
type: file
path: <output-directory>/gnss_reference.bin
- streamer:
tag: str_gnss_eph_file
input_tags: [str_gnss_eph]
type: file
path: <output-directory>/gnss_ephemeris.bin
- streamer:
tag: str_gnss_ssr_file
input_tags: [str_gnss_ssr]
type: file
path: <output-directory>/gnss_ssr.bin
- streamer:
tag: str_imu_file
input_tags: [str_imu]
type: file
path: <output-directory>/imu.bin
loop_duration: 0.001
- streamer:
tag: str_camera_file
input_tags: [str_camera]
type: file
path: <output-directory>/camera.bin
buffer_length: 361472 # 752 * 480 + 512
formators:
- formator:
replay:
enable: false
estimate:
logging:
enable: true
min_log_level: 1
log_to_stderr: true
file_directory: <log-directory>