lookout-config 1.9.0__py3-none-any.whl → 1.11.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lookout_config/generate_urdf.py +1 -1
- lookout_config/launch_parameters.py +62 -2
- lookout_config/schemas/lookout.schema.json +109 -263
- lookout_config/types.py +19 -2
- {lookout_config-1.9.0.dist-info → lookout_config-1.11.0.dist-info}/METADATA +2 -2
- lookout_config-1.11.0.dist-info/RECORD +13 -0
- {lookout_config-1.9.0.dist-info → lookout_config-1.11.0.dist-info}/WHEEL +1 -1
- lookout_config-1.9.0.dist-info/RECORD +0 -13
- {lookout_config-1.9.0.dist-info → lookout_config-1.11.0.dist-info}/top_level.txt +0 -0
- {lookout_config-1.9.0.dist-info → lookout_config-1.11.0.dist-info}/zip-safe +0 -0
lookout_config/generate_urdf.py
CHANGED
@@ -29,7 +29,7 @@ def generate_urdf(
|
|
29
29
|
):
|
30
30
|
mesh_path = f"package://lookout_bringup/meshes/{config.offsets.name}"
|
31
31
|
file_path = f"/tmp/vessel_{config.mode.value}.urdf"
|
32
|
-
camera_links, camera_joints = get_cameras_urdf(config.cameras,
|
32
|
+
camera_links, camera_joints = get_cameras_urdf(config.cameras, add_optical_frame) # type: ignore
|
33
33
|
|
34
34
|
urdf = URDF(
|
35
35
|
name="origins",
|
@@ -2,8 +2,68 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
|
5
|
-
from
|
5
|
+
from typing import List, Optional
|
6
|
+
|
7
|
+
from pydantic import BaseModel, Field
|
8
|
+
|
9
|
+
|
10
|
+
class WebBridgeParameters(BaseModel):
|
11
|
+
address: Optional[str] = Field(
|
12
|
+
None, description="The host address to bind the WebSocket server to"
|
13
|
+
)
|
14
|
+
asset_uri_allowlist: Optional[List[str]] = Field(
|
15
|
+
None,
|
16
|
+
description="List of regular expressions (ECMAScript) of whitelisted parameter names.",
|
17
|
+
)
|
18
|
+
capabilities: Optional[List[str]] = Field(None, description="Server capabilities")
|
19
|
+
certfile: Optional[str] = Field(None, description="Path to the certificate to use for TLS")
|
20
|
+
client_topic_whitelist: Optional[List[str]] = Field(
|
21
|
+
None,
|
22
|
+
description="List of regular expressions (ECMAScript) of whitelisted parameter names.",
|
23
|
+
)
|
24
|
+
disable_load_message: Optional[bool] = Field(
|
25
|
+
None,
|
26
|
+
description="Do not publish as loaned message when publishing a client message",
|
27
|
+
)
|
28
|
+
include_hidden: Optional[bool] = Field(None, description="Include hidden topics and services")
|
29
|
+
keyfile: Optional[str] = Field(None, description="Path to the private key to use for TLS")
|
30
|
+
max_qos_depth: Optional[int] = Field(
|
31
|
+
None, description="Maximum depth used for the QoS profile of subscriptions."
|
32
|
+
)
|
33
|
+
min_qos_depth: Optional[int] = Field(
|
34
|
+
None, description="Minimum depth used for the QoS profile of subscriptions."
|
35
|
+
)
|
36
|
+
param_whitelist: Optional[List[str]] = Field(
|
37
|
+
None,
|
38
|
+
description="List of regular expressions (ECMAScript) of whitelisted parameter names.",
|
39
|
+
)
|
40
|
+
port: Optional[int] = Field(None, description="The TCP port to bind the WebSocket server to")
|
41
|
+
send_buffer_limit: Optional[int] = Field(
|
42
|
+
None,
|
43
|
+
description="Connection send buffer limit in bytes. Messages will be dropped when a connection's send buffer reaches this limit to avoid a queue of outdated messages building up.",
|
44
|
+
)
|
45
|
+
service_whitelist: Optional[List[str]] = Field(
|
46
|
+
None,
|
47
|
+
description="List of regular expressions (ECMAScript) of whitelisted service names.",
|
48
|
+
)
|
49
|
+
tls: Optional[bool] = Field(
|
50
|
+
None, description="Use Transport Layer Security for encrypted communication"
|
51
|
+
)
|
52
|
+
topic_whitelist: Optional[List[str]] = Field(
|
53
|
+
None,
|
54
|
+
description="List of regular expressions (ECMAScript) of whitelisted topic names.",
|
55
|
+
)
|
56
|
+
use_compression: Optional[bool] = Field(
|
57
|
+
None,
|
58
|
+
description="Use websocket compression (permessage-deflate). Suited for connections with smaller bandwidth, at the cost of additional CPU load.",
|
59
|
+
)
|
60
|
+
|
61
|
+
|
62
|
+
class LookoutGreenstreamBringupParameters(BaseModel):
|
63
|
+
launch_package: Optional[str] = Field(None, description="")
|
64
|
+
launch_executable: Optional[str] = Field(None, description="")
|
6
65
|
|
7
66
|
|
8
67
|
class LaunchParameters(BaseModel):
|
9
|
-
|
68
|
+
web_bridge: Optional[WebBridgeParameters] = None
|
69
|
+
lookout_greenstream_bringup: Optional[LookoutGreenstreamBringupParameters] = None
|
@@ -10,116 +10,20 @@
|
|
10
10
|
"title": "Order",
|
11
11
|
"type": "integer"
|
12
12
|
},
|
13
|
-
"elements": {
|
14
|
-
"items": {
|
15
|
-
"type": "string"
|
16
|
-
},
|
17
|
-
"title": "Elements",
|
18
|
-
"type": "array"
|
19
|
-
},
|
20
|
-
"pixel_width": {
|
21
|
-
"title": "Pixel Width",
|
22
|
-
"type": "integer"
|
23
|
-
},
|
24
|
-
"pixel_height": {
|
25
|
-
"title": "Pixel Height",
|
26
|
-
"type": "integer"
|
27
|
-
},
|
28
|
-
"camera_frame_topic": {
|
29
|
-
"anyOf": [
|
30
|
-
{
|
31
|
-
"type": "string"
|
32
|
-
},
|
33
|
-
{
|
34
|
-
"type": "null"
|
35
|
-
}
|
36
|
-
],
|
37
|
-
"title": "Camera Frame Topic"
|
38
|
-
},
|
39
|
-
"camera_info_topic": {
|
40
|
-
"anyOf": [
|
41
|
-
{
|
42
|
-
"type": "string"
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"type": "null"
|
46
|
-
}
|
47
|
-
],
|
48
|
-
"title": "Camera Info Topic"
|
49
|
-
},
|
50
|
-
"k_intrinsic": {
|
51
|
-
"anyOf": [
|
52
|
-
{
|
53
|
-
"items": {
|
54
|
-
"type": "number"
|
55
|
-
},
|
56
|
-
"type": "array"
|
57
|
-
},
|
58
|
-
{
|
59
|
-
"type": "null"
|
60
|
-
}
|
61
|
-
],
|
62
|
-
"title": "K Intrinsic"
|
63
|
-
},
|
64
|
-
"distortion_parameters": {
|
65
|
-
"anyOf": [
|
66
|
-
{
|
67
|
-
"items": {
|
68
|
-
"type": "number"
|
69
|
-
},
|
70
|
-
"type": "array"
|
71
|
-
},
|
72
|
-
{
|
73
|
-
"type": "null"
|
74
|
-
}
|
75
|
-
],
|
76
|
-
"title": "Distortion Parameters"
|
77
|
-
},
|
78
|
-
"distortion_model": {
|
79
|
-
"default": "plumb_bob",
|
80
|
-
"title": "Distortion Model",
|
81
|
-
"type": "string"
|
82
|
-
},
|
83
|
-
"publish_camera_info": {
|
84
|
-
"default": true,
|
85
|
-
"title": "Publish Camera Info",
|
86
|
-
"type": "boolean"
|
87
|
-
},
|
88
|
-
"distortion_kmat_alpha": {
|
89
|
-
"default": 0.5,
|
90
|
-
"title": "Distortion Kmat Alpha",
|
91
|
-
"type": "number"
|
92
|
-
},
|
93
|
-
"offsets": {
|
94
|
-
"anyOf": [
|
95
|
-
{
|
96
|
-
"$ref": "#/$defs/Offsets"
|
97
|
-
},
|
98
|
-
{
|
99
|
-
"type": "null"
|
100
|
-
}
|
101
|
-
],
|
102
|
-
"default": null
|
103
|
-
},
|
104
13
|
"type": {
|
105
14
|
"default": "color",
|
106
15
|
"title": "Type",
|
107
16
|
"type": "string"
|
108
17
|
},
|
109
|
-
"
|
110
|
-
"default": 1e-07,
|
111
|
-
"title": "Ros Throttle Time",
|
112
|
-
"type": "number"
|
113
|
-
},
|
114
|
-
"undistort_image": {
|
18
|
+
"ptz": {
|
115
19
|
"default": false,
|
116
|
-
"title": "
|
20
|
+
"title": "Ptz",
|
117
21
|
"type": "boolean"
|
118
22
|
},
|
119
|
-
"
|
23
|
+
"camera_offsets": {
|
120
24
|
"anyOf": [
|
121
25
|
{
|
122
|
-
"$ref": "#/$defs/
|
26
|
+
"$ref": "#/$defs/Offsets"
|
123
27
|
},
|
124
28
|
{
|
125
29
|
"type": "null"
|
@@ -127,6 +31,14 @@
|
|
127
31
|
],
|
128
32
|
"default": null
|
129
33
|
},
|
34
|
+
"ptz_offsets": {
|
35
|
+
"default": [],
|
36
|
+
"items": {
|
37
|
+
"$ref": "#/$defs/PTZOffsets"
|
38
|
+
},
|
39
|
+
"title": "Ptz Offsets",
|
40
|
+
"type": "array"
|
41
|
+
},
|
130
42
|
"ignore_regions": {
|
131
43
|
"items": {
|
132
44
|
"$ref": "#/$defs/Polygon"
|
@@ -137,12 +49,7 @@
|
|
137
49
|
},
|
138
50
|
"required": [
|
139
51
|
"name",
|
140
|
-
"order"
|
141
|
-
"elements",
|
142
|
-
"pixel_width",
|
143
|
-
"pixel_height",
|
144
|
-
"camera_frame_topic",
|
145
|
-
"camera_info_topic"
|
52
|
+
"order"
|
146
53
|
],
|
147
54
|
"title": "CameraExtended",
|
148
55
|
"type": "object"
|
@@ -261,71 +168,21 @@
|
|
261
168
|
"title": "Offsets",
|
262
169
|
"type": "object"
|
263
170
|
},
|
264
|
-
"
|
171
|
+
"PTZOffsets": {
|
265
172
|
"properties": {
|
266
|
-
"
|
267
|
-
"enum": [
|
268
|
-
"pan",
|
269
|
-
"tilt",
|
270
|
-
"zoom"
|
271
|
-
],
|
272
|
-
"title": "Move Type",
|
273
|
-
"type": "string"
|
274
|
-
},
|
275
|
-
"home": {
|
276
|
-
"title": "Home",
|
277
|
-
"type": "number"
|
278
|
-
},
|
279
|
-
"joint_offsets": {
|
280
|
-
"anyOf": [
|
281
|
-
{
|
282
|
-
"$ref": "#/$defs/Offsets"
|
283
|
-
},
|
284
|
-
{
|
285
|
-
"type": "null"
|
286
|
-
}
|
287
|
-
],
|
288
|
-
"default": null
|
289
|
-
},
|
290
|
-
"joint_limits": {
|
291
|
-
"anyOf": [
|
292
|
-
{
|
293
|
-
"$ref": "#/$defs/PTZLimits"
|
294
|
-
},
|
295
|
-
{
|
296
|
-
"type": "null"
|
297
|
-
}
|
298
|
-
],
|
299
|
-
"default": null
|
300
|
-
},
|
301
|
-
"joystick_axis_index": {
|
173
|
+
"roll": {
|
302
174
|
"anyOf": [
|
303
175
|
{
|
304
|
-
"type": "
|
176
|
+
"type": "number"
|
305
177
|
},
|
306
178
|
{
|
307
179
|
"type": "null"
|
308
180
|
}
|
309
181
|
],
|
310
182
|
"default": null,
|
311
|
-
"title": "
|
183
|
+
"title": "Roll"
|
312
184
|
},
|
313
|
-
"
|
314
|
-
"default": false,
|
315
|
-
"title": "Reverse Joystick Input",
|
316
|
-
"type": "boolean"
|
317
|
-
}
|
318
|
-
},
|
319
|
-
"required": [
|
320
|
-
"move_type",
|
321
|
-
"home"
|
322
|
-
],
|
323
|
-
"title": "PTZComponent",
|
324
|
-
"type": "object"
|
325
|
-
},
|
326
|
-
"PTZControlSettings": {
|
327
|
-
"properties": {
|
328
|
-
"absolute_move_tolerance": {
|
185
|
+
"pitch": {
|
329
186
|
"anyOf": [
|
330
187
|
{
|
331
188
|
"type": "number"
|
@@ -334,22 +191,22 @@
|
|
334
191
|
"type": "null"
|
335
192
|
}
|
336
193
|
],
|
337
|
-
"default":
|
338
|
-
"title": "
|
194
|
+
"default": null,
|
195
|
+
"title": "Pitch"
|
339
196
|
},
|
340
|
-
"
|
197
|
+
"yaw": {
|
341
198
|
"anyOf": [
|
342
199
|
{
|
343
|
-
"type": "
|
200
|
+
"type": "number"
|
344
201
|
},
|
345
202
|
{
|
346
203
|
"type": "null"
|
347
204
|
}
|
348
205
|
],
|
349
|
-
"default":
|
350
|
-
"title": "
|
206
|
+
"default": null,
|
207
|
+
"title": "Yaw"
|
351
208
|
},
|
352
|
-
"
|
209
|
+
"forward": {
|
353
210
|
"anyOf": [
|
354
211
|
{
|
355
212
|
"type": "number"
|
@@ -358,10 +215,10 @@
|
|
358
215
|
"type": "null"
|
359
216
|
}
|
360
217
|
],
|
361
|
-
"default":
|
362
|
-
"title": "
|
218
|
+
"default": null,
|
219
|
+
"title": "Forward"
|
363
220
|
},
|
364
|
-
"
|
221
|
+
"left": {
|
365
222
|
"anyOf": [
|
366
223
|
{
|
367
224
|
"type": "number"
|
@@ -370,106 +227,34 @@
|
|
370
227
|
"type": "null"
|
371
228
|
}
|
372
229
|
],
|
373
|
-
"default":
|
374
|
-
"title": "
|
230
|
+
"default": null,
|
231
|
+
"title": "Left"
|
375
232
|
},
|
376
|
-
"
|
233
|
+
"up": {
|
377
234
|
"anyOf": [
|
378
235
|
{
|
379
|
-
"type": "
|
236
|
+
"type": "number"
|
380
237
|
},
|
381
238
|
{
|
382
239
|
"type": "null"
|
383
240
|
}
|
384
241
|
],
|
385
|
-
"default":
|
386
|
-
"title": "
|
242
|
+
"default": null,
|
243
|
+
"title": "Up"
|
387
244
|
},
|
388
|
-
"
|
389
|
-
"
|
390
|
-
|
391
|
-
|
392
|
-
},
|
393
|
-
{
|
394
|
-
"type": "null"
|
395
|
-
}
|
245
|
+
"type": {
|
246
|
+
"enum": [
|
247
|
+
"pan",
|
248
|
+
"tilt"
|
396
249
|
],
|
397
|
-
"
|
398
|
-
"title": "Continuous State Publishing"
|
399
|
-
},
|
400
|
-
"frd_to_flu_transform": {
|
401
|
-
"default": true,
|
402
|
-
"title": "Frd To Flu Transform",
|
403
|
-
"type": "boolean"
|
404
|
-
}
|
405
|
-
},
|
406
|
-
"title": "PTZControlSettings",
|
407
|
-
"type": "object"
|
408
|
-
},
|
409
|
-
"PTZLimits": {
|
410
|
-
"properties": {
|
411
|
-
"min": {
|
412
|
-
"title": "Min",
|
413
|
-
"type": "number"
|
414
|
-
},
|
415
|
-
"max": {
|
416
|
-
"title": "Max",
|
417
|
-
"type": "number"
|
418
|
-
}
|
419
|
-
},
|
420
|
-
"required": [
|
421
|
-
"min",
|
422
|
-
"max"
|
423
|
-
],
|
424
|
-
"title": "PTZLimits",
|
425
|
-
"type": "object"
|
426
|
-
},
|
427
|
-
"PTZOnvif": {
|
428
|
-
"properties": {
|
429
|
-
"ip_address": {
|
430
|
-
"title": "Ip Address",
|
431
|
-
"type": "string"
|
432
|
-
},
|
433
|
-
"port": {
|
434
|
-
"title": "Port",
|
435
|
-
"type": "integer"
|
436
|
-
},
|
437
|
-
"username": {
|
438
|
-
"title": "Username",
|
439
|
-
"type": "string"
|
440
|
-
},
|
441
|
-
"password": {
|
442
|
-
"title": "Password",
|
250
|
+
"title": "Type",
|
443
251
|
"type": "string"
|
444
|
-
},
|
445
|
-
"ptz_components": {
|
446
|
-
"items": {
|
447
|
-
"$ref": "#/$defs/PTZComponent"
|
448
|
-
},
|
449
|
-
"title": "Ptz Components",
|
450
|
-
"type": "array"
|
451
|
-
},
|
452
|
-
"settings": {
|
453
|
-
"$ref": "#/$defs/PTZControlSettings",
|
454
|
-
"default": {
|
455
|
-
"absolute_move_tolerance": 0.0175,
|
456
|
-
"query_timeout": 2,
|
457
|
-
"check_camera_rate": 1.0,
|
458
|
-
"publish_rate": 10.0,
|
459
|
-
"wsdl_dir": "/home/ros/.local/lib/python3.12/site-packages/wsdl",
|
460
|
-
"continuous_state_publishing": true,
|
461
|
-
"frd_to_flu_transform": true
|
462
|
-
}
|
463
252
|
}
|
464
253
|
},
|
465
254
|
"required": [
|
466
|
-
"
|
467
|
-
"port",
|
468
|
-
"username",
|
469
|
-
"password",
|
470
|
-
"ptz_components"
|
255
|
+
"type"
|
471
256
|
],
|
472
|
-
"title": "
|
257
|
+
"title": "PTZOffsets",
|
473
258
|
"type": "object"
|
474
259
|
},
|
475
260
|
"Point": {
|
@@ -518,21 +303,36 @@
|
|
518
303
|
],
|
519
304
|
"title": "PositioningSystem",
|
520
305
|
"type": "string"
|
306
|
+
},
|
307
|
+
"VesselOffsets": {
|
308
|
+
"properties": {
|
309
|
+
"name": {
|
310
|
+
"title": "Name",
|
311
|
+
"type": "string"
|
312
|
+
},
|
313
|
+
"baselink_to_ins": {
|
314
|
+
"$ref": "#/$defs/Offsets"
|
315
|
+
},
|
316
|
+
"baselink_to_waterline": {
|
317
|
+
"$ref": "#/$defs/Offsets"
|
318
|
+
}
|
319
|
+
},
|
320
|
+
"required": [
|
321
|
+
"name",
|
322
|
+
"baselink_to_ins",
|
323
|
+
"baselink_to_waterline"
|
324
|
+
],
|
325
|
+
"title": "VesselOffsets",
|
326
|
+
"type": "object"
|
521
327
|
}
|
522
328
|
},
|
523
329
|
"properties": {
|
524
330
|
"ros_domain_id": {
|
525
331
|
"default": 0,
|
332
|
+
"description": "ROS domain ID for the vessel. This only applies if 'simple_discovery' is true.",
|
526
333
|
"title": "Ros Domain Id",
|
527
334
|
"type": "integer"
|
528
335
|
},
|
529
|
-
"static_peers": {
|
530
|
-
"items": {
|
531
|
-
"type": "string"
|
532
|
-
},
|
533
|
-
"title": "Static Peers",
|
534
|
-
"type": "array"
|
535
|
-
},
|
536
336
|
"namespace_vessel": {
|
537
337
|
"default": "vessel_1",
|
538
338
|
"title": "Namespace Vessel",
|
@@ -575,6 +375,28 @@
|
|
575
375
|
"$ref": "#/$defs/PositioningSystem",
|
576
376
|
"default": "none"
|
577
377
|
},
|
378
|
+
"offsets": {
|
379
|
+
"$ref": "#/$defs/VesselOffsets",
|
380
|
+
"default": {
|
381
|
+
"name": "mars.stl",
|
382
|
+
"baselink_to_ins": {
|
383
|
+
"forward": 1.416,
|
384
|
+
"left": 0.153,
|
385
|
+
"pitch": null,
|
386
|
+
"roll": null,
|
387
|
+
"up": 0.184,
|
388
|
+
"yaw": null
|
389
|
+
},
|
390
|
+
"baselink_to_waterline": {
|
391
|
+
"forward": null,
|
392
|
+
"left": null,
|
393
|
+
"pitch": null,
|
394
|
+
"roll": null,
|
395
|
+
"up": 0.3,
|
396
|
+
"yaw": null
|
397
|
+
}
|
398
|
+
}
|
399
|
+
},
|
578
400
|
"components": {
|
579
401
|
"title": "Components"
|
580
402
|
},
|
@@ -592,6 +414,30 @@
|
|
592
414
|
"default": "~/greenroom/lookout/recordings",
|
593
415
|
"title": "Recording Directory",
|
594
416
|
"type": "string"
|
417
|
+
},
|
418
|
+
"with_discovery_server": {
|
419
|
+
"default": true,
|
420
|
+
"description": "Run the discovery server. It will bind to 0.0.0.0:11811",
|
421
|
+
"title": "With Discovery Server",
|
422
|
+
"type": "boolean"
|
423
|
+
},
|
424
|
+
"simple_discovery": {
|
425
|
+
"default": false,
|
426
|
+
"description": "Use simple discovery. This should NOT be used in production due to performance issues.",
|
427
|
+
"title": "Simple Discovery",
|
428
|
+
"type": "boolean"
|
429
|
+
},
|
430
|
+
"discovery_server_ip": {
|
431
|
+
"default": "0.0.0.0",
|
432
|
+
"description": "IP/host/interface of the discovery server. Assumes port of 11811",
|
433
|
+
"title": "Discovery Server Ip",
|
434
|
+
"type": "string"
|
435
|
+
},
|
436
|
+
"own_ip": {
|
437
|
+
"default": "0.0.0.0",
|
438
|
+
"description": "IP/host/interface address of the primary network interface. This is where DDS traffic will route to.",
|
439
|
+
"title": "Own Ip",
|
440
|
+
"type": "string"
|
595
441
|
}
|
596
442
|
},
|
597
443
|
"title": "LookoutConfig",
|
lookout_config/types.py
CHANGED
@@ -105,8 +105,10 @@ class LookoutConfig(BaseModel):
|
|
105
105
|
PositioningSystem: lambda v: v.value,
|
106
106
|
},
|
107
107
|
)
|
108
|
-
ros_domain_id: int =
|
109
|
-
|
108
|
+
ros_domain_id: int = Field(
|
109
|
+
default=0,
|
110
|
+
description="ROS domain ID for the vessel. This only applies if 'simple_discovery' is true.",
|
111
|
+
)
|
110
112
|
namespace_vessel: str = "vessel_1"
|
111
113
|
gama_vessel: bool = False
|
112
114
|
mode: Mode = Mode.HARDWARE
|
@@ -127,3 +129,18 @@ class LookoutConfig(BaseModel):
|
|
127
129
|
prod: bool = True
|
128
130
|
log_directory: str = "~/greenroom/lookout/logs"
|
129
131
|
recording_directory: str = "~/greenroom/lookout/recordings"
|
132
|
+
with_discovery_server: bool = Field(
|
133
|
+
default=True, description="Run the discovery server. It will bind to 0.0.0.0:11811"
|
134
|
+
)
|
135
|
+
simple_discovery: bool = Field(
|
136
|
+
default=False,
|
137
|
+
description="Use simple discovery. This should NOT be used in production due to performance issues.",
|
138
|
+
)
|
139
|
+
discovery_server_ip: str = Field(
|
140
|
+
default="0.0.0.0",
|
141
|
+
description="IP/host/interface of the discovery server. Assumes port of 11811",
|
142
|
+
)
|
143
|
+
own_ip: str = Field(
|
144
|
+
default="0.0.0.0",
|
145
|
+
description="IP/host/interface address of the primary network interface. This is where DDS traffic will route to.",
|
146
|
+
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: lookout_config
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.11.0
|
4
4
|
Summary: A library for reading / writing Lookout config files
|
5
5
|
Home-page: https://github.com/Greenroom-Robotics/lookout
|
6
6
|
Author: Greenroom Robotics
|
@@ -19,7 +19,7 @@ Requires-Dist: setuptools
|
|
19
19
|
Requires-Dist: dacite
|
20
20
|
Requires-Dist: PyYAML
|
21
21
|
Requires-Dist: dc-schema
|
22
|
-
Requires-Dist: greenstream-config==3.
|
22
|
+
Requires-Dist: greenstream-config==3.10.0
|
23
23
|
Requires-Dist: gr-urchin
|
24
24
|
|
25
25
|
# Lookout Config
|
@@ -0,0 +1,13 @@
|
|
1
|
+
lookout_config/__init__.py,sha256=3D-vqwfTPSuvLVBo4wiYQglpPUm4Fj6Y5MYGIS-e0fI,1738
|
2
|
+
lookout_config/generate_schemas.py,sha256=yFNvrZ6gie1tnTM_1TO8_wBa0lFHJAABSI3ZAZqw_Wg,457
|
3
|
+
lookout_config/generate_urdf.py,sha256=O5n0hNsRJwTgQnWdPZIg_LgpxlDQOzWv5IccjT7yDS4,2719
|
4
|
+
lookout_config/helpers.py,sha256=3GkGRPDzQ67I5srwcWoI8PI1dgrWvTsUwA8-yRUttLM,603
|
5
|
+
lookout_config/launch_parameters.py,sha256=wvLXQMPi7D3ExesyvSNLPYEb2WChj9YTslnvQYPsXbk,3033
|
6
|
+
lookout_config/types.py,sha256=o--5Mo7ADSCv5k240oyiA-sJDA5BLd6nx5RGzFZFygo,4325
|
7
|
+
lookout_config/schemas/lookout.schema.json,sha256=eH6i8OW-9jBBEusm4qMaACV7fujtrqw1_Bm5YwuQNxw,9390
|
8
|
+
lookout_config/test/lookout_config_test.py,sha256=TdOzIEWnyrckhmK7OtShtoWwSAP8QDCiKalNhvScd2U,73
|
9
|
+
lookout_config-1.11.0.dist-info/METADATA,sha256=uTBXwmSAXX4nN4DU3G_DJxMFlB6EDrcP7rvjgz6QJ54,1438
|
10
|
+
lookout_config-1.11.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
11
|
+
lookout_config-1.11.0.dist-info/top_level.txt,sha256=IiZRgJhNrNL87uLMQm9lQRrMCqJnTOl7aYlA7zRSYyg,15
|
12
|
+
lookout_config-1.11.0.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
13
|
+
lookout_config-1.11.0.dist-info/RECORD,,
|
@@ -1,13 +0,0 @@
|
|
1
|
-
lookout_config/__init__.py,sha256=3D-vqwfTPSuvLVBo4wiYQglpPUm4Fj6Y5MYGIS-e0fI,1738
|
2
|
-
lookout_config/generate_schemas.py,sha256=yFNvrZ6gie1tnTM_1TO8_wBa0lFHJAABSI3ZAZqw_Wg,457
|
3
|
-
lookout_config/generate_urdf.py,sha256=Emve-fVAjCT89Lz2wyyat5t3Yjxa-SdWPgnT9Pu4KPs,2723
|
4
|
-
lookout_config/helpers.py,sha256=3GkGRPDzQ67I5srwcWoI8PI1dgrWvTsUwA8-yRUttLM,603
|
5
|
-
lookout_config/launch_parameters.py,sha256=1q49Abigr6WQ3MCJtRcS-h5wQLFNW0yx-zHXOkjn3QM,180
|
6
|
-
lookout_config/types.py,sha256=RUc34rXcYp3262n9FZIBjSxft5-688A8ArDJwrqzVIU,3596
|
7
|
-
lookout_config/schemas/lookout.schema.json,sha256=wg7hK6vFLk90w4B5cCtOwYYfKMNcggli0S3c1P-vTDs,12750
|
8
|
-
lookout_config/test/lookout_config_test.py,sha256=TdOzIEWnyrckhmK7OtShtoWwSAP8QDCiKalNhvScd2U,73
|
9
|
-
lookout_config-1.9.0.dist-info/METADATA,sha256=jFjbhWKKy5pWcfOeEwZILUKzkuh63QB26RtmueuYpAE,1436
|
10
|
-
lookout_config-1.9.0.dist-info/WHEEL,sha256=a7TGlA-5DaHMRrarXjVbQagU3Man_dCnGIWMJr5kRWo,91
|
11
|
-
lookout_config-1.9.0.dist-info/top_level.txt,sha256=IiZRgJhNrNL87uLMQm9lQRrMCqJnTOl7aYlA7zRSYyg,15
|
12
|
-
lookout_config-1.9.0.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
13
|
-
lookout_config-1.9.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|