bosdyn-api 4.0.2__py3-none-any.whl → 4.1.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.
Files changed (44) hide show
  1. bosdyn/api/autowalk/walks_pb2.py +82 -70
  2. bosdyn/api/data_acquisition_store_pb2.py +88 -57
  3. bosdyn/api/data_acquisition_store_service_pb2.py +2 -2
  4. bosdyn/api/data_acquisition_store_service_pb2_grpc.py +35 -0
  5. bosdyn/api/estop_service_pb2_grpc.py +6 -3
  6. bosdyn/api/geometry_pb2.py +57 -37
  7. bosdyn/api/gps/registration_service_pb2_grpc.py +6 -6
  8. bosdyn/api/graph_nav/area_callback_data_pb2.py +4 -2
  9. bosdyn/api/graph_nav/area_callback_pb2.py +72 -69
  10. bosdyn/api/graph_nav/graph_nav_pb2.py +168 -133
  11. bosdyn/api/graph_nav/graph_nav_service_pb2.py +2 -2
  12. bosdyn/api/graph_nav/graph_nav_service_pb2_grpc.py +90 -11
  13. bosdyn/api/graph_nav/lost_detection_pb2.py +35 -0
  14. bosdyn/api/graph_nav/lost_detection_pb2_grpc.py +4 -0
  15. bosdyn/api/graph_nav/map_pb2.py +90 -65
  16. bosdyn/api/graph_nav/map_processing_pb2.py +53 -42
  17. bosdyn/api/graph_nav/recording_service_pb2_grpc.py +6 -6
  18. bosdyn/api/graph_nav/visual_features_pb2.py +129 -0
  19. bosdyn/api/graph_nav/visual_features_pb2_grpc.py +4 -0
  20. bosdyn/api/image_pb2.py +68 -24
  21. bosdyn/api/license_service_pb2_grpc.py +2 -2
  22. bosdyn/api/local_grid_pb2.py +18 -18
  23. bosdyn/api/log_status/log_status_service_pb2_grpc.py +3 -3
  24. bosdyn/api/mission/mission_pb2.py +72 -71
  25. bosdyn/api/mission/mission_service_pb2_grpc.py +16 -12
  26. bosdyn/api/mission/nodes_pb2.py +141 -109
  27. bosdyn/api/mission/util_pb2.py +26 -15
  28. bosdyn/api/network_compute_bridge_service_pb2_grpc.py +3 -3
  29. bosdyn/api/point_cloud_service_pb2_grpc.py +2 -2
  30. bosdyn/api/robot_state_pb2.py +121 -108
  31. bosdyn/api/robot_state_service_pb2_grpc.py +1 -1
  32. bosdyn/api/spot/choreography_params_pb2.py +115 -82
  33. bosdyn/api/spot/choreography_sequence_pb2.py +62 -62
  34. bosdyn/api/spot/choreography_service_pb2_grpc.py +2 -2
  35. bosdyn/api/spot/robot_command_pb2.py +29 -26
  36. bosdyn/api/spot/spot_check_pb2.py +1 -47
  37. bosdyn/api/spot/spot_check_service_pb2.py +2 -2
  38. bosdyn/api/spot/spot_check_service_pb2_grpc.py +0 -68
  39. bosdyn/api/spot_cam/service_pb2_grpc.py +3 -3
  40. bosdyn/api/world_object_pb2.py +40 -40
  41. {bosdyn_api-4.0.2.dist-info → bosdyn_api-4.1.0.dist-info}/METADATA +6 -6
  42. {bosdyn_api-4.0.2.dist-info → bosdyn_api-4.1.0.dist-info}/RECORD +44 -40
  43. {bosdyn_api-4.0.2.dist-info → bosdyn_api-4.1.0.dist-info}/WHEEL +0 -0
  44. {bosdyn_api-4.0.2.dist-info → bosdyn_api-4.1.0.dist-info}/top_level.txt +0 -0
@@ -6,9 +6,9 @@ from bosdyn.api.graph_nav import graph_nav_pb2 as bosdyn_dot_api_dot_graph__nav_
6
6
 
7
7
 
8
8
  class GraphNavServiceStub(object):
9
- """The GraphNav service service is a place-based localization and locomotion service. The service can
10
- be used to get/set the localization, upload and download the current graph nav maps, and send navigation
11
- requests to move around the map.
9
+ """The GraphNav service service is a place-based localization and locomotion service. The service
10
+ can be used to get/set the localization, upload and download the current graph nav maps, and send
11
+ navigation requests to move around the map.
12
12
  """
13
13
 
14
14
  def __init__(self, channel):
@@ -57,11 +57,21 @@ class GraphNavServiceStub(object):
57
57
  request_serializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.DownloadGraphRequest.SerializeToString,
58
58
  response_deserializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.DownloadGraphResponse.FromString,
59
59
  )
60
+ self.DownloadGraphStreaming = channel.unary_stream(
61
+ '/bosdyn.api.graph_nav.GraphNavService/DownloadGraphStreaming',
62
+ request_serializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.DownloadGraphRequest.SerializeToString,
63
+ response_deserializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.DownloadGraphStreamingResponse.FromString,
64
+ )
60
65
  self.UploadGraph = channel.unary_unary(
61
66
  '/bosdyn.api.graph_nav.GraphNavService/UploadGraph',
62
67
  request_serializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.UploadGraphRequest.SerializeToString,
63
68
  response_deserializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.UploadGraphResponse.FromString,
64
69
  )
70
+ self.UploadGraphStreaming = channel.stream_unary(
71
+ '/bosdyn.api.graph_nav.GraphNavService/UploadGraphStreaming',
72
+ request_serializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.UploadGraphStreamingRequest.SerializeToString,
73
+ response_deserializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.UploadGraphResponse.FromString,
74
+ )
65
75
  self.UploadWaypointSnapshot = channel.stream_unary(
66
76
  '/bosdyn.api.graph_nav.GraphNavService/UploadWaypointSnapshot',
67
77
  request_serializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.UploadWaypointSnapshotRequest.SerializeToString,
@@ -90,9 +100,9 @@ class GraphNavServiceStub(object):
90
100
 
91
101
 
92
102
  class GraphNavServiceServicer(object):
93
- """The GraphNav service service is a place-based localization and locomotion service. The service can
94
- be used to get/set the localization, upload and download the current graph nav maps, and send navigation
95
- requests to move around the map.
103
+ """The GraphNav service service is a place-based localization and locomotion service. The service
104
+ can be used to get/set the localization, upload and download the current graph nav maps, and send
105
+ navigation requests to move around the map.
96
106
  """
97
107
 
98
108
  def SetLocalization(self, request, context):
@@ -151,8 +161,31 @@ class GraphNavServiceServicer(object):
151
161
  context.set_details('Method not implemented!')
152
162
  raise NotImplementedError('Method not implemented!')
153
163
 
164
+ def DownloadGraphStreaming(self, request, context):
165
+ """This is a streaming version of the DownloadGraph RPC.
166
+ """
167
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
168
+ context.set_details('Method not implemented!')
169
+ raise NotImplementedError('Method not implemented!')
170
+
154
171
  def UploadGraph(self, request, context):
155
172
  """Upload the full list of waypoint IDs, graph topology and other small info.
173
+ Note: if multiple clients/RPCs are attempting to upload a graph at the same time, uploads
174
+ will be performed synchronously in the order in which they are received, and the later
175
+ UploadGraph request will block until the earlier completes.
176
+ """
177
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
178
+ context.set_details('Method not implemented!')
179
+ raise NotImplementedError('Method not implemented!')
180
+
181
+ def UploadGraphStreaming(self, request_iterator, context):
182
+ """This is a streaming version of UploadGraph to allow uploading larger graphs.
183
+ Note: as with UploadWaypointSnapshot, this streaming process involves serializing a full
184
+ UploadGraph message from chunks. After all the chunks have been uploaded, a regular
185
+ UploadGraph RPC will be performed internally, so UploadGraphStreaming has the same semantics
186
+ as UploadGraph when it completes. That is, UploadGraphStreaming is *not* to be used for
187
+ incrementally uploading graph data as the robot is navigating -- this is merely a streaming
188
+ wrapper around UploadGraph.
156
189
  """
157
190
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
158
191
  context.set_details('Method not implemented!')
@@ -173,7 +206,8 @@ class GraphNavServiceServicer(object):
173
206
  raise NotImplementedError('Method not implemented!')
174
207
 
175
208
  def DownloadWaypointSnapshot(self, request, context):
176
- """Download waypoint data from the server. If the snapshot exists in disk cache, it will be loaded.
209
+ """Download waypoint data from the server. If the snapshot exists in disk cache, it will be
210
+ loaded.
177
211
  """
178
212
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
179
213
  context.set_details('Method not implemented!')
@@ -188,7 +222,8 @@ class GraphNavServiceServicer(object):
188
222
 
189
223
  def ValidateGraph(self, request, context):
190
224
  """Verify that the graph is still valid and all required external services are still available.
191
- A map that was valid at upload time may not still be valid if required services are no longer running.
225
+ A map that was valid at upload time may not still be valid if required services are no longer
226
+ running.
192
227
  """
193
228
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
194
229
  context.set_details('Method not implemented!')
@@ -237,11 +272,21 @@ def add_GraphNavServiceServicer_to_server(servicer, server):
237
272
  request_deserializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.DownloadGraphRequest.FromString,
238
273
  response_serializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.DownloadGraphResponse.SerializeToString,
239
274
  ),
275
+ 'DownloadGraphStreaming': grpc.unary_stream_rpc_method_handler(
276
+ servicer.DownloadGraphStreaming,
277
+ request_deserializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.DownloadGraphRequest.FromString,
278
+ response_serializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.DownloadGraphStreamingResponse.SerializeToString,
279
+ ),
240
280
  'UploadGraph': grpc.unary_unary_rpc_method_handler(
241
281
  servicer.UploadGraph,
242
282
  request_deserializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.UploadGraphRequest.FromString,
243
283
  response_serializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.UploadGraphResponse.SerializeToString,
244
284
  ),
285
+ 'UploadGraphStreaming': grpc.stream_unary_rpc_method_handler(
286
+ servicer.UploadGraphStreaming,
287
+ request_deserializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.UploadGraphStreamingRequest.FromString,
288
+ response_serializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.UploadGraphResponse.SerializeToString,
289
+ ),
245
290
  'UploadWaypointSnapshot': grpc.stream_unary_rpc_method_handler(
246
291
  servicer.UploadWaypointSnapshot,
247
292
  request_deserializer=bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.UploadWaypointSnapshotRequest.FromString,
@@ -275,9 +320,9 @@ def add_GraphNavServiceServicer_to_server(servicer, server):
275
320
 
276
321
  # This class is part of an EXPERIMENTAL API.
277
322
  class GraphNavService(object):
278
- """The GraphNav service service is a place-based localization and locomotion service. The service can
279
- be used to get/set the localization, upload and download the current graph nav maps, and send navigation
280
- requests to move around the map.
323
+ """The GraphNav service service is a place-based localization and locomotion service. The service
324
+ can be used to get/set the localization, upload and download the current graph nav maps, and send
325
+ navigation requests to move around the map.
281
326
  """
282
327
 
283
328
  @staticmethod
@@ -416,6 +461,23 @@ class GraphNavService(object):
416
461
  options, channel_credentials,
417
462
  insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
418
463
 
464
+ @staticmethod
465
+ def DownloadGraphStreaming(request,
466
+ target,
467
+ options=(),
468
+ channel_credentials=None,
469
+ call_credentials=None,
470
+ insecure=False,
471
+ compression=None,
472
+ wait_for_ready=None,
473
+ timeout=None,
474
+ metadata=None):
475
+ return grpc.experimental.unary_stream(request, target, '/bosdyn.api.graph_nav.GraphNavService/DownloadGraphStreaming',
476
+ bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.DownloadGraphRequest.SerializeToString,
477
+ bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.DownloadGraphStreamingResponse.FromString,
478
+ options, channel_credentials,
479
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
480
+
419
481
  @staticmethod
420
482
  def UploadGraph(request,
421
483
  target,
@@ -433,6 +495,23 @@ class GraphNavService(object):
433
495
  options, channel_credentials,
434
496
  insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
435
497
 
498
+ @staticmethod
499
+ def UploadGraphStreaming(request_iterator,
500
+ target,
501
+ options=(),
502
+ channel_credentials=None,
503
+ call_credentials=None,
504
+ insecure=False,
505
+ compression=None,
506
+ wait_for_ready=None,
507
+ timeout=None,
508
+ metadata=None):
509
+ return grpc.experimental.stream_unary(request_iterator, target, '/bosdyn.api.graph_nav.GraphNavService/UploadGraphStreaming',
510
+ bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.UploadGraphStreamingRequest.SerializeToString,
511
+ bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2.UploadGraphResponse.FromString,
512
+ options, channel_credentials,
513
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
514
+
436
515
  @staticmethod
437
516
  def UploadWaypointSnapshot(request_iterator,
438
517
  target,
@@ -0,0 +1,35 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: bosdyn/api/graph_nav/lost_detection.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf.internal import enum_type_wrapper
6
+ from google.protobuf import descriptor as _descriptor
7
+ from google.protobuf import descriptor_pool as _descriptor_pool
8
+ from google.protobuf import message as _message
9
+ from google.protobuf import reflection as _reflection
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ # @@protoc_insertion_point(imports)
12
+
13
+ _sym_db = _symbol_database.Default()
14
+
15
+
16
+
17
+
18
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)bosdyn/api/graph_nav/lost_detection.proto\x12\x14\x62osdyn.api.graph_nav*\xd9\x01\n\x16LostDetectorStrictness\x12$\n LOST_DETECTOR_STRICTNESS_UNKNOWN\x10\x00\x12%\n!LOST_DETECTOR_STRICTNESS_DISABLED\x10\x01\x12\'\n#LOST_DETECTOR_STRICTNESS_PERMISSIVE\x10\x02\x12$\n LOST_DETECTOR_STRICTNESS_DEFAULT\x10\x03\x12#\n\x1fLOST_DETECTOR_STRICTNESS_STRICT\x10\x04\x42\x14\x42\x12LostDetectionProtob\x06proto3')
19
+
20
+ _LOSTDETECTORSTRICTNESS = DESCRIPTOR.enum_types_by_name['LostDetectorStrictness']
21
+ LostDetectorStrictness = enum_type_wrapper.EnumTypeWrapper(_LOSTDETECTORSTRICTNESS)
22
+ LOST_DETECTOR_STRICTNESS_UNKNOWN = 0
23
+ LOST_DETECTOR_STRICTNESS_DISABLED = 1
24
+ LOST_DETECTOR_STRICTNESS_PERMISSIVE = 2
25
+ LOST_DETECTOR_STRICTNESS_DEFAULT = 3
26
+ LOST_DETECTOR_STRICTNESS_STRICT = 4
27
+
28
+
29
+ if _descriptor._USE_C_DESCRIPTORS == False:
30
+
31
+ DESCRIPTOR._options = None
32
+ DESCRIPTOR._serialized_options = b'B\022LostDetectionProto'
33
+ _LOSTDETECTORSTRICTNESS._serialized_start=68
34
+ _LOSTDETECTORSTRICTNESS._serialized_end=285
35
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,4 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+
@@ -13,6 +13,8 @@ from google.protobuf import symbol_database as _symbol_database
13
13
  _sym_db = _symbol_database.Default()
14
14
 
15
15
 
16
+ from bosdyn.api.graph_nav import lost_detection_pb2 as bosdyn_dot_api_dot_graph__nav_dot_lost__detection__pb2
17
+ from bosdyn.api.graph_nav import visual_features_pb2 as bosdyn_dot_api_dot_graph__nav_dot_visual__features__pb2
16
18
  from bosdyn.api import geometry_pb2 as bosdyn_dot_api_dot_geometry__pb2
17
19
  from bosdyn.api.graph_nav import area_callback_data_pb2 as bosdyn_dot_api_dot_graph__nav_dot_area__callback__data__pb2
18
20
  from bosdyn.api import image_pb2 as bosdyn_dot_api_dot_image__pb2
@@ -29,7 +31,7 @@ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__
29
31
  from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
30
32
 
31
33
 
32
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1e\x62osdyn/api/graph_nav/map.proto\x12\x14\x62osdyn.api.graph_nav\x1a\x19\x62osdyn/api/geometry.proto\x1a-bosdyn/api/graph_nav/area_callback_data.proto\x1a\x16\x62osdyn/api/image.proto\x1a\x1b\x62osdyn/api/local_grid.proto\x1a\x18\x62osdyn/api/payload.proto\x1a\x1c\x62osdyn/api/point_cloud.proto\x1a\x19\x62osdyn/api/robot_id.proto\x1a\x1c\x62osdyn/api/robot_state.proto\x1a#bosdyn/api/spot/robot_command.proto\x1a\x17\x62osdyn/api/stairs.proto\x1a\x1d\x62osdyn/api/world_object.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\xfc\x0b\n\x08Waypoint\x12\n\n\x02id\x18\x01 \x01(\t\x12\x13\n\x0bsnapshot_id\x18\x02 \x01(\t\x12.\n\x11waypoint_tform_ko\x18\x03 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12?\n\x0b\x61nnotations\x18\x04 \x01(\x0b\x32*.bosdyn.api.graph_nav.Waypoint.Annotations\x1a\xbe\t\n\x0b\x41nnotations\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x31\n\rcreation_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0cicp_variance\x18\x02 \x01(\x0b\x32\x19.bosdyn.api.SE3Covariance\x12T\n\x11scan_match_region\x18\x03 \x01(\x0b\x32\x39.bosdyn.api.graph_nav.Waypoint.Annotations.LocalizeRegion\x12\x46\n\x0fwaypoint_source\x18\x05 \x01(\x0e\x32-.bosdyn.api.graph_nav.Waypoint.WaypointSource\x12=\n\x0f\x63lient_metadata\x18\x06 \x01(\x0b\x32$.bosdyn.api.graph_nav.ClientMetadata\x12]\n\x15loop_closure_settings\x18\x07 \x01(\x0b\x32>.bosdyn.api.graph_nav.Waypoint.Annotations.LoopClosureSettings\x12L\n\x0cgps_settings\x18\x08 \x01(\x0b\x32\x36.bosdyn.api.graph_nav.Waypoint.Annotations.GPSSettings\x1a\x86\x03\n\x0eLocalizeRegion\x12\x34\n\x05state\x18\x01 \x01(\x0e\x32%.bosdyn.api.graph_nav.AnnotationState\x12[\n\x0e\x64\x65\x66\x61ult_region\x18\x02 \x01(\x0b\x32\x41.bosdyn.api.graph_nav.Waypoint.Annotations.LocalizeRegion.DefaultH\x00\x12P\n\x05\x65mpty\x18\x03 \x01(\x0b\x32?.bosdyn.api.graph_nav.Waypoint.Annotations.LocalizeRegion.EmptyH\x00\x12T\n\x06\x63ircle\x18\x04 \x01(\x0b\x32\x42.bosdyn.api.graph_nav.Waypoint.Annotations.LocalizeRegion.Circle2DH\x00\x1a\t\n\x07\x44\x65\x66\x61ult\x1a\x07\n\x05\x45mpty\x1a\x1b\n\x08\x43ircle2D\x12\x0f\n\x07\x64ist_2d\x18\x01 \x01(\x01\x42\x08\n\x06region\x1a\x8f\x01\n\x13LoopClosureSettings\x12\x1c\n\x14\x64isable_loop_closure\x18\x01 \x01(\x08\x12\x1f\n\x17\x64isable_collision_check\x18\x02 \x01(\x08\x12\x17\n\x0fmax_edge_length\x18\x03 \x01(\x01\x12 \n\x18max_odometry_path_length\x18\x04 \x01(\x01\x1a\x97\x01\n\x0bGPSSettings\x12\x34\n\x05state\x18\x01 \x01(\x0e\x32%.bosdyn.api.graph_nav.AnnotationState\x12\x30\n\x13\x65\x63\x65\x66_tform_waypoint\x18\x02 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12 \n\x18\x64isable_gps_localization\x18\x05 \x01(\x08\"\x9c\x01\n\x0eWaypointSource\x12\x1b\n\x17WAYPOINT_SOURCE_UNKNOWN\x10\x00\x12\x1e\n\x1aWAYPOINT_SOURCE_ROBOT_PATH\x10\x01\x12 \n\x1cWAYPOINT_SOURCE_USER_REQUEST\x10\x02\x12+\n\'WAYPOINT_SOURCE_ALTERNATE_ROUTE_FINDING\x10\x03\"\x88\x01\n\x0e\x43lientMetadata\x12\x14\n\x0csession_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63lient_username\x18\x02 \x01(\t\x12\x1f\n\x17\x63lient_software_version\x18\x03 \x01(\t\x12\x11\n\tclient_id\x18\x04 \x01(\t\x12\x13\n\x0b\x63lient_type\x18\x05 \x01(\t\"\xa7\x04\n\x10WaypointSnapshot\x12\n\n\x02id\x18\x01 \x01(\t\x12)\n\x06images\x18\x02 \x03(\x0b\x32\x19.bosdyn.api.ImageResponse\x12+\n\x0bpoint_cloud\x18\x03 \x01(\x0b\x32\x16.bosdyn.api.PointCloud\x12(\n\x07objects\x18\x04 \x03(\x0b\x32\x17.bosdyn.api.WorldObject\x12+\n\x0brobot_state\x18\x05 \x01(\x0b\x32\x16.bosdyn.api.RobotState\x12\x30\n\x11robot_local_grids\x18\x06 \x03(\x0b\x32\x15.bosdyn.api.LocalGrid\x12 \n\x18is_point_cloud_processed\x18\x08 \x01(\x08\x12\x12\n\nversion_id\x18\t \x01(\t\x12%\n\x1dhas_remote_point_cloud_sensor\x18\n \x01(\x08\x12\x41\n$body_tform_remote_point_cloud_sensor\x18\x0b \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12%\n\x08payloads\x18\x0c \x03(\x0b\x32\x13.bosdyn.api.Payload\x12%\n\x08robot_id\x18\x0e \x01(\x0b\x32\x13.bosdyn.api.RobotId\x12\x38\n\x14recording_started_on\x18\x0f \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x93\x12\n\x04\x45\x64ge\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x1d.bosdyn.api.graph_nav.Edge.Id\x12\x13\n\x0bsnapshot_id\x18\x02 \x01(\t\x12*\n\rfrom_tform_to\x18\x03 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12;\n\x0b\x61nnotations\x18\x04 \x01(\x0b\x32&.bosdyn.api.graph_nav.Edge.Annotations\x1a\x30\n\x02Id\x12\x15\n\rfrom_waypoint\x18\x01 \x01(\t\x12\x13\n\x0bto_waypoint\x18\x02 \x01(\t\x1a\xbd\x0e\n\x0b\x41nnotations\x12@\n\x06stairs\x18\x02 \x01(\x0b\x32\x30.bosdyn.api.graph_nav.Edge.Annotations.StairData\x12X\n\x14\x64irection_constraint\x18\x04 \x01(\x0e\x32:.bosdyn.api.graph_nav.Edge.Annotations.DirectionConstraint\x12\x35\n\x11require_alignment\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x33\n\x0b\x66lat_ground\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.BoolValueB\x02\x18\x01\x12<\n\x18override_mobility_params\x18\t \x01(\x0b\x32\x1a.google.protobuf.FieldMask\x12\x38\n\x0fmobility_params\x18\n \x01(\x0b\x32\x1f.bosdyn.api.spot.MobilityParams\x12*\n\x04\x63ost\x18\x0b \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12:\n\x0b\x65\x64ge_source\x18\x0c \x01(\x0e\x32%.bosdyn.api.graph_nav.Edge.EdgeSource\x12\'\n\x1f\x64isable_alternate_route_finding\x18\r \x01(\x08\x12U\n\x13path_following_mode\x18\x0e \x01(\x0e\x32\x38.bosdyn.api.graph_nav.Edge.Annotations.PathFollowingMode\x12$\n\x1c\x64isable_directed_exploration\x18\x0f \x01(\x08\x12Q\n\x0e\x61rea_callbacks\x18\x10 \x03(\x0b\x32\x39.bosdyn.api.graph_nav.Edge.Annotations.AreaCallbacksEntry\x12^\n\x13ground_clutter_mode\x18\x11 \x01(\x0e\x32\x41.bosdyn.api.graph_nav.Edge.Annotations.GroundClutterAvoidanceMode\x1a\xff\x03\n\tStairData\x12\x34\n\x05state\x18\x01 \x01(\x0e\x32%.bosdyn.api.graph_nav.AnnotationState\x12=\n\x12straight_staircase\x18\x02 \x01(\x0b\x32\x1d.bosdyn.api.StraightStaircaseB\x02\x18\x01\x12\x42\n\x17staircase_with_landings\x18\x03 \x01(\x0b\x32!.bosdyn.api.StaircaseWithLandings\x12^\n\x12\x64\x65scent_preference\x18\x04 \x01(\x0e\x32\x42.bosdyn.api.graph_nav.Edge.Annotations.StairData.DescentPreference\x12\x38\n\x12traversal_y_offset\x18\x05 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\"\x9e\x01\n\x11\x44\x65scentPreference\x12\x1e\n\x1a\x44\x45SCENT_PREFERENCE_UNKNOWN\x10\x00\x12%\n!DESCENT_PREFERENCE_PREFER_REVERSE\x10\x01\x12%\n!DESCENT_PREFERENCE_ALWAYS_REVERSE\x10\x02\x12\x1b\n\x17\x44\x45SCENT_PREFERENCE_NONE\x10\x03\x1a^\n\x12\x41reaCallbacksEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x37\n\x05value\x18\x02 \x01(\x0b\x32(.bosdyn.api.graph_nav.AreaCallbackRegion:\x02\x38\x01\"\xbc\x01\n\x13\x44irectionConstraint\x12 \n\x1c\x44IRECTION_CONSTRAINT_UNKNOWN\x10\x00\x12 \n\x1c\x44IRECTION_CONSTRAINT_NO_TURN\x10\x01\x12 \n\x1c\x44IRECTION_CONSTRAINT_FORWARD\x10\x02\x12 \n\x1c\x44IRECTION_CONSTRAINT_REVERSE\x10\x03\x12\x1d\n\x19\x44IRECTION_CONSTRAINT_NONE\x10\x04\"W\n\x11PathFollowingMode\x12\x15\n\x11PATH_MODE_UNKNOWN\x10\x00\x12\x15\n\x11PATH_MODE_DEFAULT\x10\x01\x12\x14\n\x10PATH_MODE_STRICT\x10\x02\"s\n\x1aGroundClutterAvoidanceMode\x12\x1a\n\x16GROUND_CLUTTER_UNKNOWN\x10\x00\x12\x16\n\x12GROUND_CLUTTER_OFF\x10\x01\x12!\n\x1dGROUND_CLUTTER_FROM_FOOTFALLS\x10\x02\"\xef\x01\n\nEdgeSource\x12\x17\n\x13\x45\x44GE_SOURCE_UNKNOWN\x10\x00\x12\x18\n\x14\x45\x44GE_SOURCE_ODOMETRY\x10\x01\x12\"\n\x1e\x45\x44GE_SOURCE_SMALL_LOOP_CLOSURE\x10\x02\x12%\n!EDGE_SOURCE_FIDUCIAL_LOOP_CLOSURE\x10\x03\x12\'\n#EDGE_SOURCE_ALTERNATE_ROUTE_FINDING\x10\x04\x12\x1c\n\x18\x45\x44GE_SOURCE_USER_REQUEST\x10\x05\x12\x1c\n\x18\x45\x44GE_SOURCE_LOCALIZATION\x10\x06\"\xf8\x03\n\x0c\x45\x64geSnapshot\x12\n\n\x02id\x18\x01 \x01(\t\x12:\n\x07stances\x18\x02 \x03(\x0b\x32).bosdyn.api.graph_nav.EdgeSnapshot.Stance\x12M\n\x0e\x61rea_callbacks\x18\x10 \x03(\x0b\x32\x35.bosdyn.api.graph_nav.EdgeSnapshot.AreaCallbacksEntry\x1a\xf2\x01\n\x06Stance\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12*\n\x0b\x66oot_states\x18\x02 \x03(\x0b\x32\x15.bosdyn.api.FootState\x12*\n\rko_tform_body\x18\x03 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12.\n\x11vision_tform_body\x18\x05 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12\x31\n\rplanar_ground\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x1a\\\n\x12\x41reaCallbacksEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.bosdyn.api.graph_nav.AreaCallbackData:\x02\x38\x01\"F\n\x06\x41nchor\x12\n\n\x02id\x18\x01 \x01(\t\x12\x30\n\x13seed_tform_waypoint\x18\x02 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\"Q\n\x13\x41nchoredWorldObject\x12\n\n\x02id\x18\x01 \x01(\t\x12.\n\x11seed_tform_object\x18\x02 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\"v\n\tAnchoring\x12-\n\x07\x61nchors\x18\x01 \x03(\x0b\x32\x1c.bosdyn.api.graph_nav.Anchor\x12:\n\x07objects\x18\x02 \x03(\x0b\x32).bosdyn.api.graph_nav.AnchoredWorldObject\"~\n\x12\x41reaCallbackRegion\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12=\n\rrecorded_data\x18\x04 \x01(\x0b\x32&.bosdyn.api.graph_nav.AreaCallbackData\"\x99\x01\n\x05Graph\x12\x31\n\twaypoints\x18\x01 \x03(\x0b\x32\x1e.bosdyn.api.graph_nav.Waypoint\x12)\n\x05\x65\x64ges\x18\x02 \x03(\x0b\x32\x1a.bosdyn.api.graph_nav.Edge\x12\x32\n\tanchoring\x18\x03 \x01(\x0b\x32\x1f.bosdyn.api.graph_nav.Anchoring\"\xb5\x04\n\x08MapStats\x12\x36\n\twaypoints\x18\x01 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12?\n\x12waypoint_snapshots\x18\x02 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12@\n\x13\x61lternate_waypoints\x18\x03 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12\x32\n\x05\x65\x64ges\x18\x04 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12;\n\x0e\x65\x64ge_snapshots\x18\x05 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12<\n\x0f\x61lternate_edges\x18\x06 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12=\n\x10waypoint_anchors\x18\x07 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12;\n\x0eobject_anchors\x18\x08 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12\x19\n\x11total_path_length\x18\t \x01(\x01\x1a(\n\x04Stat\x12\r\n\x05\x63ount\x18\x01 \x01(\x05\x12\x11\n\tnum_bytes\x18\x02 \x01(\x03*d\n\x0f\x41nnotationState\x12\x1c\n\x18\x41NNOTATION_STATE_UNKNOWN\x10\x00\x12\x18\n\x14\x41NNOTATION_STATE_SET\x10\x01\x12\x19\n\x15\x41NNOTATION_STATE_NONE\x10\x02\x42\nB\x08MapProtob\x06proto3')
34
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1e\x62osdyn/api/graph_nav/map.proto\x12\x14\x62osdyn.api.graph_nav\x1a)bosdyn/api/graph_nav/lost_detection.proto\x1a*bosdyn/api/graph_nav/visual_features.proto\x1a\x19\x62osdyn/api/geometry.proto\x1a-bosdyn/api/graph_nav/area_callback_data.proto\x1a\x16\x62osdyn/api/image.proto\x1a\x1b\x62osdyn/api/local_grid.proto\x1a\x18\x62osdyn/api/payload.proto\x1a\x1c\x62osdyn/api/point_cloud.proto\x1a\x19\x62osdyn/api/robot_id.proto\x1a\x1c\x62osdyn/api/robot_state.proto\x1a#bosdyn/api/spot/robot_command.proto\x1a\x17\x62osdyn/api/stairs.proto\x1a\x1d\x62osdyn/api/world_object.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\x84\r\n\x08Waypoint\x12\n\n\x02id\x18\x01 \x01(\t\x12\x13\n\x0bsnapshot_id\x18\x02 \x01(\t\x12.\n\x11waypoint_tform_ko\x18\x03 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12?\n\x0b\x61nnotations\x18\x04 \x01(\x0b\x32*.bosdyn.api.graph_nav.Waypoint.Annotations\x1a\xc6\n\n\x0b\x41nnotations\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x31\n\rcreation_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0cicp_variance\x18\x02 \x01(\x0b\x32\x19.bosdyn.api.SE3Covariance\x12T\n\x11scan_match_region\x18\x03 \x01(\x0b\x32\x39.bosdyn.api.graph_nav.Waypoint.Annotations.LocalizeRegion\x12\x46\n\x0fwaypoint_source\x18\x05 \x01(\x0e\x32-.bosdyn.api.graph_nav.Waypoint.WaypointSource\x12=\n\x0f\x63lient_metadata\x18\x06 \x01(\x0b\x32$.bosdyn.api.graph_nav.ClientMetadata\x12]\n\x15loop_closure_settings\x18\x07 \x01(\x0b\x32>.bosdyn.api.graph_nav.Waypoint.Annotations.LoopClosureSettings\x12L\n\x0cgps_settings\x18\x08 \x01(\x0b\x32\x36.bosdyn.api.graph_nav.Waypoint.Annotations.GPSSettings\x12\x36\n\x07regions\x18\t \x03(\x0b\x32%.bosdyn.api.graph_nav.RegionWithFrame\x12N\n\x18lost_detector_strictness\x18\n \x01(\x0e\x32,.bosdyn.api.graph_nav.LostDetectorStrictness\x1a\x86\x03\n\x0eLocalizeRegion\x12\x34\n\x05state\x18\x01 \x01(\x0e\x32%.bosdyn.api.graph_nav.AnnotationState\x12[\n\x0e\x64\x65\x66\x61ult_region\x18\x02 \x01(\x0b\x32\x41.bosdyn.api.graph_nav.Waypoint.Annotations.LocalizeRegion.DefaultH\x00\x12P\n\x05\x65mpty\x18\x03 \x01(\x0b\x32?.bosdyn.api.graph_nav.Waypoint.Annotations.LocalizeRegion.EmptyH\x00\x12T\n\x06\x63ircle\x18\x04 \x01(\x0b\x32\x42.bosdyn.api.graph_nav.Waypoint.Annotations.LocalizeRegion.Circle2DH\x00\x1a\t\n\x07\x44\x65\x66\x61ult\x1a\x07\n\x05\x45mpty\x1a\x1b\n\x08\x43ircle2D\x12\x0f\n\x07\x64ist_2d\x18\x01 \x01(\x01\x42\x08\n\x06region\x1a\x8f\x01\n\x13LoopClosureSettings\x12\x1c\n\x14\x64isable_loop_closure\x18\x01 \x01(\x08\x12\x1f\n\x17\x64isable_collision_check\x18\x02 \x01(\x08\x12\x17\n\x0fmax_edge_length\x18\x03 \x01(\x01\x12 \n\x18max_odometry_path_length\x18\x04 \x01(\x01\x1a\x97\x01\n\x0bGPSSettings\x12\x34\n\x05state\x18\x01 \x01(\x0e\x32%.bosdyn.api.graph_nav.AnnotationState\x12\x30\n\x13\x65\x63\x65\x66_tform_waypoint\x18\x02 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12 \n\x18\x64isable_gps_localization\x18\x05 \x01(\x08\"\x9c\x01\n\x0eWaypointSource\x12\x1b\n\x17WAYPOINT_SOURCE_UNKNOWN\x10\x00\x12\x1e\n\x1aWAYPOINT_SOURCE_ROBOT_PATH\x10\x01\x12 \n\x1cWAYPOINT_SOURCE_USER_REQUEST\x10\x02\x12+\n\'WAYPOINT_SOURCE_ALTERNATE_ROUTE_FINDING\x10\x03\"\x88\x01\n\x0e\x43lientMetadata\x12\x14\n\x0csession_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63lient_username\x18\x02 \x01(\t\x12\x1f\n\x17\x63lient_software_version\x18\x03 \x01(\t\x12\x11\n\tclient_id\x18\x04 \x01(\t\x12\x13\n\x0b\x63lient_type\x18\x05 \x01(\t\"\xa7\x04\n\x10WaypointSnapshot\x12\n\n\x02id\x18\x01 \x01(\t\x12)\n\x06images\x18\x02 \x03(\x0b\x32\x19.bosdyn.api.ImageResponse\x12+\n\x0bpoint_cloud\x18\x03 \x01(\x0b\x32\x16.bosdyn.api.PointCloud\x12(\n\x07objects\x18\x04 \x03(\x0b\x32\x17.bosdyn.api.WorldObject\x12+\n\x0brobot_state\x18\x05 \x01(\x0b\x32\x16.bosdyn.api.RobotState\x12\x30\n\x11robot_local_grids\x18\x06 \x03(\x0b\x32\x15.bosdyn.api.LocalGrid\x12 \n\x18is_point_cloud_processed\x18\x08 \x01(\x08\x12\x12\n\nversion_id\x18\t \x01(\t\x12%\n\x1dhas_remote_point_cloud_sensor\x18\n \x01(\x08\x12\x41\n$body_tform_remote_point_cloud_sensor\x18\x0b \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12%\n\x08payloads\x18\x0c \x03(\x0b\x32\x13.bosdyn.api.Payload\x12%\n\x08robot_id\x18\x0e \x01(\x0b\x32\x13.bosdyn.api.RobotId\x12\x38\n\x14recording_started_on\x18\x0f \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xb2\x12\n\x04\x45\x64ge\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x1d.bosdyn.api.graph_nav.Edge.Id\x12\x13\n\x0bsnapshot_id\x18\x02 \x01(\t\x12*\n\rfrom_tform_to\x18\x03 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12;\n\x0b\x61nnotations\x18\x04 \x01(\x0b\x32&.bosdyn.api.graph_nav.Edge.Annotations\x1a\x30\n\x02Id\x12\x15\n\rfrom_waypoint\x18\x01 \x01(\t\x12\x13\n\x0bto_waypoint\x18\x02 \x01(\t\x1a\xdc\x0e\n\x0b\x41nnotations\x12@\n\x06stairs\x18\x02 \x01(\x0b\x32\x30.bosdyn.api.graph_nav.Edge.Annotations.StairData\x12X\n\x14\x64irection_constraint\x18\x04 \x01(\x0e\x32:.bosdyn.api.graph_nav.Edge.Annotations.DirectionConstraint\x12\x35\n\x11require_alignment\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x33\n\x0b\x66lat_ground\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.BoolValueB\x02\x18\x01\x12<\n\x18override_mobility_params\x18\t \x01(\x0b\x32\x1a.google.protobuf.FieldMask\x12\x38\n\x0fmobility_params\x18\n \x01(\x0b\x32\x1f.bosdyn.api.spot.MobilityParams\x12*\n\x04\x63ost\x18\x0b \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12:\n\x0b\x65\x64ge_source\x18\x0c \x01(\x0e\x32%.bosdyn.api.graph_nav.Edge.EdgeSource\x12\'\n\x1f\x64isable_alternate_route_finding\x18\r \x01(\x08\x12U\n\x13path_following_mode\x18\x0e \x01(\x0e\x32\x38.bosdyn.api.graph_nav.Edge.Annotations.PathFollowingMode\x12\x1d\n\x15max_corridor_distance\x18\x12 \x01(\x01\x12$\n\x1c\x64isable_directed_exploration\x18\x0f \x01(\x08\x12Q\n\x0e\x61rea_callbacks\x18\x10 \x03(\x0b\x32\x39.bosdyn.api.graph_nav.Edge.Annotations.AreaCallbacksEntry\x12^\n\x13ground_clutter_mode\x18\x11 \x01(\x0e\x32\x41.bosdyn.api.graph_nav.Edge.Annotations.GroundClutterAvoidanceMode\x1a\xff\x03\n\tStairData\x12\x34\n\x05state\x18\x01 \x01(\x0e\x32%.bosdyn.api.graph_nav.AnnotationState\x12=\n\x12straight_staircase\x18\x02 \x01(\x0b\x32\x1d.bosdyn.api.StraightStaircaseB\x02\x18\x01\x12\x42\n\x17staircase_with_landings\x18\x03 \x01(\x0b\x32!.bosdyn.api.StaircaseWithLandings\x12^\n\x12\x64\x65scent_preference\x18\x04 \x01(\x0e\x32\x42.bosdyn.api.graph_nav.Edge.Annotations.StairData.DescentPreference\x12\x38\n\x12traversal_y_offset\x18\x05 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\"\x9e\x01\n\x11\x44\x65scentPreference\x12\x1e\n\x1a\x44\x45SCENT_PREFERENCE_UNKNOWN\x10\x00\x12%\n!DESCENT_PREFERENCE_PREFER_REVERSE\x10\x01\x12%\n!DESCENT_PREFERENCE_ALWAYS_REVERSE\x10\x02\x12\x1b\n\x17\x44\x45SCENT_PREFERENCE_NONE\x10\x03\x1a^\n\x12\x41reaCallbacksEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x37\n\x05value\x18\x02 \x01(\x0b\x32(.bosdyn.api.graph_nav.AreaCallbackRegion:\x02\x38\x01\"\xbc\x01\n\x13\x44irectionConstraint\x12 \n\x1c\x44IRECTION_CONSTRAINT_UNKNOWN\x10\x00\x12 \n\x1c\x44IRECTION_CONSTRAINT_NO_TURN\x10\x01\x12 \n\x1c\x44IRECTION_CONSTRAINT_FORWARD\x10\x02\x12 \n\x1c\x44IRECTION_CONSTRAINT_REVERSE\x10\x03\x12\x1d\n\x19\x44IRECTION_CONSTRAINT_NONE\x10\x04\"W\n\x11PathFollowingMode\x12\x15\n\x11PATH_MODE_UNKNOWN\x10\x00\x12\x15\n\x11PATH_MODE_DEFAULT\x10\x01\x12\x14\n\x10PATH_MODE_STRICT\x10\x02\"s\n\x1aGroundClutterAvoidanceMode\x12\x1a\n\x16GROUND_CLUTTER_UNKNOWN\x10\x00\x12\x16\n\x12GROUND_CLUTTER_OFF\x10\x01\x12!\n\x1dGROUND_CLUTTER_FROM_FOOTFALLS\x10\x02\"\xef\x01\n\nEdgeSource\x12\x17\n\x13\x45\x44GE_SOURCE_UNKNOWN\x10\x00\x12\x18\n\x14\x45\x44GE_SOURCE_ODOMETRY\x10\x01\x12\"\n\x1e\x45\x44GE_SOURCE_SMALL_LOOP_CLOSURE\x10\x02\x12%\n!EDGE_SOURCE_FIDUCIAL_LOOP_CLOSURE\x10\x03\x12\'\n#EDGE_SOURCE_ALTERNATE_ROUTE_FINDING\x10\x04\x12\x1c\n\x18\x45\x44GE_SOURCE_USER_REQUEST\x10\x05\x12\x1c\n\x18\x45\x44GE_SOURCE_LOCALIZATION\x10\x06\"\xf8\x03\n\x0c\x45\x64geSnapshot\x12\n\n\x02id\x18\x01 \x01(\t\x12:\n\x07stances\x18\x02 \x03(\x0b\x32).bosdyn.api.graph_nav.EdgeSnapshot.Stance\x12M\n\x0e\x61rea_callbacks\x18\x10 \x03(\x0b\x32\x35.bosdyn.api.graph_nav.EdgeSnapshot.AreaCallbacksEntry\x1a\xf2\x01\n\x06Stance\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12*\n\x0b\x66oot_states\x18\x02 \x03(\x0b\x32\x15.bosdyn.api.FootState\x12*\n\rko_tform_body\x18\x03 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12.\n\x11vision_tform_body\x18\x05 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12\x31\n\rplanar_ground\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x1a\\\n\x12\x41reaCallbacksEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.bosdyn.api.graph_nav.AreaCallbackData:\x02\x38\x01\"F\n\x06\x41nchor\x12\n\n\x02id\x18\x01 \x01(\t\x12\x30\n\x13seed_tform_waypoint\x18\x02 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\"Q\n\x13\x41nchoredWorldObject\x12\n\n\x02id\x18\x01 \x01(\t\x12.\n\x11seed_tform_object\x18\x02 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\"v\n\tAnchoring\x12-\n\x07\x61nchors\x18\x01 \x03(\x0b\x32\x1c.bosdyn.api.graph_nav.Anchor\x12:\n\x07objects\x18\x02 \x03(\x0b\x32).bosdyn.api.graph_nav.AnchoredWorldObject\"~\n\x12\x41reaCallbackRegion\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12=\n\rrecorded_data\x18\x04 \x01(\x0b\x32&.bosdyn.api.graph_nav.AreaCallbackData\"\x99\x01\n\x05Graph\x12\x31\n\twaypoints\x18\x01 \x03(\x0b\x32\x1e.bosdyn.api.graph_nav.Waypoint\x12)\n\x05\x65\x64ges\x18\x02 \x03(\x0b\x32\x1a.bosdyn.api.graph_nav.Edge\x12\x32\n\tanchoring\x18\x03 \x01(\x0b\x32\x1f.bosdyn.api.graph_nav.Anchoring\"\xb5\x04\n\x08MapStats\x12\x36\n\twaypoints\x18\x01 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12?\n\x12waypoint_snapshots\x18\x02 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12@\n\x13\x61lternate_waypoints\x18\x03 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12\x32\n\x05\x65\x64ges\x18\x04 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12;\n\x0e\x65\x64ge_snapshots\x18\x05 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12<\n\x0f\x61lternate_edges\x18\x06 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12=\n\x10waypoint_anchors\x18\x07 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12;\n\x0eobject_anchors\x18\x08 \x01(\x0b\x32#.bosdyn.api.graph_nav.MapStats.Stat\x12\x19\n\x11total_path_length\x18\t \x01(\x01\x1a(\n\x04Stat\x12\r\n\x05\x63ount\x18\x01 \x01(\x05\x12\x11\n\tnum_bytes\x18\x02 \x01(\x03\"\xff\x01\n\x06Region\x12\x11\n\tregion_id\x18\x01 \x01(\t\x12(\n\x0c\x62ounding_box\x18\x02 \x01(\x0b\x32\x10.bosdyn.api.Box3H\x00\x12<\n\x0b\x64\x61ta_filter\x18\x03 \x01(\x0e\x32\'.bosdyn.api.graph_nav.Region.DataFilter\"q\n\nDataFilter\x12\x17\n\x13\x44\x41TA_FILTER_UNKNOWN\x10\x00\x12\x14\n\x10\x44\x41TA_FILTER_NONE\x10\x01\x12\x16\n\x12\x44\x41TA_FILTER_IGNORE\x10\x02\x12\x1c\n\x18\x44\x41TA_FILTER_INCLUDE_ONLY\x10\x03\x42\x07\n\x05shape\"\x8e\x01\n\x0fRegionWithFrame\x12,\n\x06region\x18\x01 \x01(\x0b\x32\x1c.bosdyn.api.graph_nav.Region\x12\x17\n\x0f\x62\x61se_frame_name\x18\x02 \x01(\t\x12\x34\n\x17\x62\x61se_frame_tform_region\x18\x03 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose*d\n\x0f\x41nnotationState\x12\x1c\n\x18\x41NNOTATION_STATE_UNKNOWN\x10\x00\x12\x18\n\x14\x41NNOTATION_STATE_SET\x10\x01\x12\x19\n\x15\x41NNOTATION_STATE_NONE\x10\x02\x42\nB\x08MapProtob\x06proto3')
33
35
 
34
36
  _ANNOTATIONSTATE = DESCRIPTOR.enum_types_by_name['AnnotationState']
35
37
  AnnotationState = enum_type_wrapper.EnumTypeWrapper(_ANNOTATIONSTATE)
@@ -63,12 +65,15 @@ _AREACALLBACKREGION = DESCRIPTOR.message_types_by_name['AreaCallbackRegion']
63
65
  _GRAPH = DESCRIPTOR.message_types_by_name['Graph']
64
66
  _MAPSTATS = DESCRIPTOR.message_types_by_name['MapStats']
65
67
  _MAPSTATS_STAT = _MAPSTATS.nested_types_by_name['Stat']
68
+ _REGION = DESCRIPTOR.message_types_by_name['Region']
69
+ _REGIONWITHFRAME = DESCRIPTOR.message_types_by_name['RegionWithFrame']
66
70
  _WAYPOINT_WAYPOINTSOURCE = _WAYPOINT.enum_types_by_name['WaypointSource']
67
71
  _EDGE_ANNOTATIONS_STAIRDATA_DESCENTPREFERENCE = _EDGE_ANNOTATIONS_STAIRDATA.enum_types_by_name['DescentPreference']
68
72
  _EDGE_ANNOTATIONS_DIRECTIONCONSTRAINT = _EDGE_ANNOTATIONS.enum_types_by_name['DirectionConstraint']
69
73
  _EDGE_ANNOTATIONS_PATHFOLLOWINGMODE = _EDGE_ANNOTATIONS.enum_types_by_name['PathFollowingMode']
70
74
  _EDGE_ANNOTATIONS_GROUNDCLUTTERAVOIDANCEMODE = _EDGE_ANNOTATIONS.enum_types_by_name['GroundClutterAvoidanceMode']
71
75
  _EDGE_EDGESOURCE = _EDGE.enum_types_by_name['EdgeSource']
76
+ _REGION_DATAFILTER = _REGION.enum_types_by_name['DataFilter']
72
77
  Waypoint = _reflection.GeneratedProtocolMessageType('Waypoint', (_message.Message,), {
73
78
 
74
79
  'Annotations' : _reflection.GeneratedProtocolMessageType('Annotations', (_message.Message,), {
@@ -258,6 +263,20 @@ MapStats = _reflection.GeneratedProtocolMessageType('MapStats', (_message.Messag
258
263
  _sym_db.RegisterMessage(MapStats)
259
264
  _sym_db.RegisterMessage(MapStats.Stat)
260
265
 
266
+ Region = _reflection.GeneratedProtocolMessageType('Region', (_message.Message,), {
267
+ 'DESCRIPTOR' : _REGION,
268
+ '__module__' : 'bosdyn.api.graph_nav.map_pb2'
269
+ # @@protoc_insertion_point(class_scope:bosdyn.api.graph_nav.Region)
270
+ })
271
+ _sym_db.RegisterMessage(Region)
272
+
273
+ RegionWithFrame = _reflection.GeneratedProtocolMessageType('RegionWithFrame', (_message.Message,), {
274
+ 'DESCRIPTOR' : _REGIONWITHFRAME,
275
+ '__module__' : 'bosdyn.api.graph_nav.map_pb2'
276
+ # @@protoc_insertion_point(class_scope:bosdyn.api.graph_nav.RegionWithFrame)
277
+ })
278
+ _sym_db.RegisterMessage(RegionWithFrame)
279
+
261
280
  if _descriptor._USE_C_DESCRIPTORS == False:
262
281
 
263
282
  DESCRIPTOR._options = None
@@ -270,68 +289,74 @@ if _descriptor._USE_C_DESCRIPTORS == False:
270
289
  _EDGE_ANNOTATIONS.fields_by_name['flat_ground']._serialized_options = b'\030\001'
271
290
  _EDGESNAPSHOT_AREACALLBACKSENTRY._options = None
272
291
  _EDGESNAPSHOT_AREACALLBACKSENTRY._serialized_options = b'8\001'
273
- _ANNOTATIONSTATE._serialized_start=6676
274
- _ANNOTATIONSTATE._serialized_end=6776
275
- _WAYPOINT._serialized_start=489
276
- _WAYPOINT._serialized_end=2021
277
- _WAYPOINT_ANNOTATIONS._serialized_start=648
278
- _WAYPOINT_ANNOTATIONS._serialized_end=1862
279
- _WAYPOINT_ANNOTATIONS_LOCALIZEREGION._serialized_start=1172
280
- _WAYPOINT_ANNOTATIONS_LOCALIZEREGION._serialized_end=1562
281
- _WAYPOINT_ANNOTATIONS_LOCALIZEREGION_DEFAULT._serialized_start=1505
282
- _WAYPOINT_ANNOTATIONS_LOCALIZEREGION_DEFAULT._serialized_end=1514
283
- _WAYPOINT_ANNOTATIONS_LOCALIZEREGION_EMPTY._serialized_start=1516
284
- _WAYPOINT_ANNOTATIONS_LOCALIZEREGION_EMPTY._serialized_end=1523
285
- _WAYPOINT_ANNOTATIONS_LOCALIZEREGION_CIRCLE2D._serialized_start=1525
286
- _WAYPOINT_ANNOTATIONS_LOCALIZEREGION_CIRCLE2D._serialized_end=1552
287
- _WAYPOINT_ANNOTATIONS_LOOPCLOSURESETTINGS._serialized_start=1565
288
- _WAYPOINT_ANNOTATIONS_LOOPCLOSURESETTINGS._serialized_end=1708
289
- _WAYPOINT_ANNOTATIONS_GPSSETTINGS._serialized_start=1711
290
- _WAYPOINT_ANNOTATIONS_GPSSETTINGS._serialized_end=1862
291
- _WAYPOINT_WAYPOINTSOURCE._serialized_start=1865
292
- _WAYPOINT_WAYPOINTSOURCE._serialized_end=2021
293
- _CLIENTMETADATA._serialized_start=2024
294
- _CLIENTMETADATA._serialized_end=2160
295
- _WAYPOINTSNAPSHOT._serialized_start=2163
296
- _WAYPOINTSNAPSHOT._serialized_end=2714
297
- _EDGE._serialized_start=2717
298
- _EDGE._serialized_end=5040
299
- _EDGE_ID._serialized_start=2894
300
- _EDGE_ID._serialized_end=2942
301
- _EDGE_ANNOTATIONS._serialized_start=2945
302
- _EDGE_ANNOTATIONS._serialized_end=4798
303
- _EDGE_ANNOTATIONS_STAIRDATA._serialized_start=3794
304
- _EDGE_ANNOTATIONS_STAIRDATA._serialized_end=4305
305
- _EDGE_ANNOTATIONS_STAIRDATA_DESCENTPREFERENCE._serialized_start=4147
306
- _EDGE_ANNOTATIONS_STAIRDATA_DESCENTPREFERENCE._serialized_end=4305
307
- _EDGE_ANNOTATIONS_AREACALLBACKSENTRY._serialized_start=4307
308
- _EDGE_ANNOTATIONS_AREACALLBACKSENTRY._serialized_end=4401
309
- _EDGE_ANNOTATIONS_DIRECTIONCONSTRAINT._serialized_start=4404
310
- _EDGE_ANNOTATIONS_DIRECTIONCONSTRAINT._serialized_end=4592
311
- _EDGE_ANNOTATIONS_PATHFOLLOWINGMODE._serialized_start=4594
312
- _EDGE_ANNOTATIONS_PATHFOLLOWINGMODE._serialized_end=4681
313
- _EDGE_ANNOTATIONS_GROUNDCLUTTERAVOIDANCEMODE._serialized_start=4683
314
- _EDGE_ANNOTATIONS_GROUNDCLUTTERAVOIDANCEMODE._serialized_end=4798
315
- _EDGE_EDGESOURCE._serialized_start=4801
316
- _EDGE_EDGESOURCE._serialized_end=5040
317
- _EDGESNAPSHOT._serialized_start=5043
318
- _EDGESNAPSHOT._serialized_end=5547
319
- _EDGESNAPSHOT_STANCE._serialized_start=5211
320
- _EDGESNAPSHOT_STANCE._serialized_end=5453
321
- _EDGESNAPSHOT_AREACALLBACKSENTRY._serialized_start=5455
322
- _EDGESNAPSHOT_AREACALLBACKSENTRY._serialized_end=5547
323
- _ANCHOR._serialized_start=5549
324
- _ANCHOR._serialized_end=5619
325
- _ANCHOREDWORLDOBJECT._serialized_start=5621
326
- _ANCHOREDWORLDOBJECT._serialized_end=5702
327
- _ANCHORING._serialized_start=5704
328
- _ANCHORING._serialized_end=5822
329
- _AREACALLBACKREGION._serialized_start=5824
330
- _AREACALLBACKREGION._serialized_end=5950
331
- _GRAPH._serialized_start=5953
332
- _GRAPH._serialized_end=6106
333
- _MAPSTATS._serialized_start=6109
334
- _MAPSTATS._serialized_end=6674
335
- _MAPSTATS_STAT._serialized_start=6634
336
- _MAPSTATS_STAT._serialized_end=6674
292
+ _ANNOTATIONSTATE._serialized_start=7333
293
+ _ANNOTATIONSTATE._serialized_end=7433
294
+ _WAYPOINT._serialized_start=576
295
+ _WAYPOINT._serialized_end=2244
296
+ _WAYPOINT_ANNOTATIONS._serialized_start=735
297
+ _WAYPOINT_ANNOTATIONS._serialized_end=2085
298
+ _WAYPOINT_ANNOTATIONS_LOCALIZEREGION._serialized_start=1395
299
+ _WAYPOINT_ANNOTATIONS_LOCALIZEREGION._serialized_end=1785
300
+ _WAYPOINT_ANNOTATIONS_LOCALIZEREGION_DEFAULT._serialized_start=1728
301
+ _WAYPOINT_ANNOTATIONS_LOCALIZEREGION_DEFAULT._serialized_end=1737
302
+ _WAYPOINT_ANNOTATIONS_LOCALIZEREGION_EMPTY._serialized_start=1739
303
+ _WAYPOINT_ANNOTATIONS_LOCALIZEREGION_EMPTY._serialized_end=1746
304
+ _WAYPOINT_ANNOTATIONS_LOCALIZEREGION_CIRCLE2D._serialized_start=1748
305
+ _WAYPOINT_ANNOTATIONS_LOCALIZEREGION_CIRCLE2D._serialized_end=1775
306
+ _WAYPOINT_ANNOTATIONS_LOOPCLOSURESETTINGS._serialized_start=1788
307
+ _WAYPOINT_ANNOTATIONS_LOOPCLOSURESETTINGS._serialized_end=1931
308
+ _WAYPOINT_ANNOTATIONS_GPSSETTINGS._serialized_start=1934
309
+ _WAYPOINT_ANNOTATIONS_GPSSETTINGS._serialized_end=2085
310
+ _WAYPOINT_WAYPOINTSOURCE._serialized_start=2088
311
+ _WAYPOINT_WAYPOINTSOURCE._serialized_end=2244
312
+ _CLIENTMETADATA._serialized_start=2247
313
+ _CLIENTMETADATA._serialized_end=2383
314
+ _WAYPOINTSNAPSHOT._serialized_start=2386
315
+ _WAYPOINTSNAPSHOT._serialized_end=2937
316
+ _EDGE._serialized_start=2940
317
+ _EDGE._serialized_end=5294
318
+ _EDGE_ID._serialized_start=3117
319
+ _EDGE_ID._serialized_end=3165
320
+ _EDGE_ANNOTATIONS._serialized_start=3168
321
+ _EDGE_ANNOTATIONS._serialized_end=5052
322
+ _EDGE_ANNOTATIONS_STAIRDATA._serialized_start=4048
323
+ _EDGE_ANNOTATIONS_STAIRDATA._serialized_end=4559
324
+ _EDGE_ANNOTATIONS_STAIRDATA_DESCENTPREFERENCE._serialized_start=4401
325
+ _EDGE_ANNOTATIONS_STAIRDATA_DESCENTPREFERENCE._serialized_end=4559
326
+ _EDGE_ANNOTATIONS_AREACALLBACKSENTRY._serialized_start=4561
327
+ _EDGE_ANNOTATIONS_AREACALLBACKSENTRY._serialized_end=4655
328
+ _EDGE_ANNOTATIONS_DIRECTIONCONSTRAINT._serialized_start=4658
329
+ _EDGE_ANNOTATIONS_DIRECTIONCONSTRAINT._serialized_end=4846
330
+ _EDGE_ANNOTATIONS_PATHFOLLOWINGMODE._serialized_start=4848
331
+ _EDGE_ANNOTATIONS_PATHFOLLOWINGMODE._serialized_end=4935
332
+ _EDGE_ANNOTATIONS_GROUNDCLUTTERAVOIDANCEMODE._serialized_start=4937
333
+ _EDGE_ANNOTATIONS_GROUNDCLUTTERAVOIDANCEMODE._serialized_end=5052
334
+ _EDGE_EDGESOURCE._serialized_start=5055
335
+ _EDGE_EDGESOURCE._serialized_end=5294
336
+ _EDGESNAPSHOT._serialized_start=5297
337
+ _EDGESNAPSHOT._serialized_end=5801
338
+ _EDGESNAPSHOT_STANCE._serialized_start=5465
339
+ _EDGESNAPSHOT_STANCE._serialized_end=5707
340
+ _EDGESNAPSHOT_AREACALLBACKSENTRY._serialized_start=5709
341
+ _EDGESNAPSHOT_AREACALLBACKSENTRY._serialized_end=5801
342
+ _ANCHOR._serialized_start=5803
343
+ _ANCHOR._serialized_end=5873
344
+ _ANCHOREDWORLDOBJECT._serialized_start=5875
345
+ _ANCHOREDWORLDOBJECT._serialized_end=5956
346
+ _ANCHORING._serialized_start=5958
347
+ _ANCHORING._serialized_end=6076
348
+ _AREACALLBACKREGION._serialized_start=6078
349
+ _AREACALLBACKREGION._serialized_end=6204
350
+ _GRAPH._serialized_start=6207
351
+ _GRAPH._serialized_end=6360
352
+ _MAPSTATS._serialized_start=6363
353
+ _MAPSTATS._serialized_end=6928
354
+ _MAPSTATS_STAT._serialized_start=6888
355
+ _MAPSTATS_STAT._serialized_end=6928
356
+ _REGION._serialized_start=6931
357
+ _REGION._serialized_end=7186
358
+ _REGION_DATAFILTER._serialized_start=7064
359
+ _REGION_DATAFILTER._serialized_end=7177
360
+ _REGIONWITHFRAME._serialized_start=7189
361
+ _REGIONWITHFRAME._serialized_end=7331
337
362
  # @@protoc_insertion_point(module_scope)
@@ -18,12 +18,13 @@ from bosdyn.api import header_pb2 as bosdyn_dot_api_dot_header__pb2
18
18
  from bosdyn.api.graph_nav import map_pb2 as bosdyn_dot_api_dot_graph__nav_dot_map__pb2
19
19
 
20
20
 
21
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)bosdyn/api/graph_nav/map_processing.proto\x12\x14\x62osdyn.api.graph_nav\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x19\x62osdyn/api/geometry.proto\x1a\x17\x62osdyn/api/header.proto\x1a\x1e\x62osdyn/api/graph_nav/map.proto\"\xbb\x0e\n\x16ProcessTopologyRequest\x12)\n\x06header\x18\x01 \x01(\x0b\x32\x19.bosdyn.api.RequestHeader\x12\x43\n\x06params\x18\x02 \x01(\x0b\x32\x33.bosdyn.api.graph_nav.ProcessTopologyRequest.Params\x12\x1c\n\x14modify_map_on_server\x18\x03 \x01(\x08\x1a{\n\tICPParams\x12.\n\ticp_iters\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12>\n\x18max_point_match_distance\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x1a\xa6\x03\n\x19OdometryLoopClosureParams\x12\x42\n\x1cmax_loop_closure_path_length\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x42\n\x1cmin_loop_closure_path_length\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x44\n\x1emax_loop_closure_height_change\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x42\n\x1cmax_loop_closure_edge_length\x18\x04 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x46\n!num_extra_loop_closure_iterations\x18\x05 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12/\n\x0bprune_edges\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x1a\xd7\x02\n\x19\x46iducialLoopClosureParams\x12\x42\n\x1cmin_loop_closure_path_length\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x42\n\x1cmax_loop_closure_edge_length\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12;\n\x15max_fiducial_distance\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x44\n\x1emax_loop_closure_height_change\x18\x04 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12/\n\x0bprune_edges\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x1a\xe4\x01\n\x17\x43ollisionCheckingParams\x12=\n\x19\x63heck_edges_for_collision\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x42\n\x1c\x63ollision_check_robot_radius\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x46\n collision_check_height_variation\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x1a\xab\x04\n\x06Params\x12<\n\x18\x64o_odometry_loop_closure\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12l\n\x1codometry_loop_closure_params\x18\x02 \x01(\x0b\x32\x46.bosdyn.api.graph_nav.ProcessTopologyRequest.OdometryLoopClosureParams\x12J\n\nicp_params\x18\x03 \x01(\x0b\x32\x36.bosdyn.api.graph_nav.ProcessTopologyRequest.ICPParams\x12<\n\x18\x64o_fiducial_loop_closure\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12l\n\x1c\x66iducial_loop_closure_params\x18\x05 \x01(\x0b\x32\x46.bosdyn.api.graph_nav.ProcessTopologyRequest.FiducialLoopClosureParams\x12\x64\n\x16\x63ollision_check_params\x18\x06 \x01(\x0b\x32\x44.bosdyn.api.graph_nav.ProcessTopologyRequest.CollisionCheckingParams\x12\x17\n\x0ftimeout_seconds\x18\x07 \x01(\x01\"\xcb\x03\n\x17ProcessTopologyResponse\x12*\n\x06header\x18\x01 \x01(\x0b\x32\x1a.bosdyn.api.ResponseHeader\x12\x44\n\x06status\x18\x02 \x01(\x0e\x32\x34.bosdyn.api.graph_nav.ProcessTopologyResponse.Status\x12\x31\n\x0cnew_subgraph\x18\x03 \x01(\x0b\x32\x1b.bosdyn.api.graph_nav.Graph\x12\"\n\x1amap_on_server_was_modified\x18\x04 \x01(\x08\x12\x1c\n\x14missing_snapshot_ids\x18\n \x03(\t\x12\x1c\n\x14missing_waypoint_ids\x18\x0b \x03(\t\x12\x11\n\ttimed_out\x18\x0c \x01(\x08\"\x97\x01\n\x06Status\x12\x12\n\x0eSTATUS_UNKNOWN\x10\x00\x12\r\n\tSTATUS_OK\x10\x01\x12%\n!STATUS_MISSING_WAYPOINT_SNAPSHOTS\x10\x02\x12\x18\n\x14STATUS_INVALID_GRAPH\x10\x03\x12)\n%STATUS_MAP_MODIFIED_DURING_PROCESSING\x10\x04\"V\n\nPoseBounds\x12\x10\n\x08x_bounds\x18\x01 \x01(\x01\x12\x10\n\x08y_bounds\x18\x02 \x01(\x01\x12\x10\n\x08z_bounds\x18\x03 \x01(\x01\x12\x12\n\nyaw_bounds\x18\x04 \x01(\x01\"\x9a\x01\n\x15\x41nchorHintUncertainty\x12\x33\n\x0ese3_covariance\x18\x01 \x01(\x0b\x32\x19.bosdyn.api.SE3CovarianceH\x00\x12=\n\x11\x63onfidence_bounds\x18\x02 \x01(\x0b\x32 .bosdyn.api.graph_nav.PoseBoundsH\x00\x42\r\n\x0buncertainty\"\xeb\x01\n\x12WaypointAnchorHint\x12\x35\n\x0fwaypoint_anchor\x18\x01 \x01(\x0b\x32\x1c.bosdyn.api.graph_nav.Anchor\x12T\n\x1fseed_tform_waypoint_uncertainty\x18\x02 \x01(\x0b\x32+.bosdyn.api.graph_nav.AnchorHintUncertainty\x12H\n\x1eseed_tform_waypoint_constraint\x18\x03 \x01(\x0b\x32 .bosdyn.api.graph_nav.PoseBounds\"\xf5\x01\n\x15WorldObjectAnchorHint\x12@\n\robject_anchor\x18\x01 \x01(\x0b\x32).bosdyn.api.graph_nav.AnchoredWorldObject\x12R\n\x1dseed_tform_object_uncertainty\x18\x02 \x01(\x0b\x32+.bosdyn.api.graph_nav.AnchorHintUncertainty\x12\x46\n\x1cseed_tform_object_constraint\x18\x03 \x01(\x0b\x32 .bosdyn.api.graph_nav.PoseBounds\"\x97\x01\n\rAnchoringHint\x12\x42\n\x10waypoint_anchors\x18\x01 \x03(\x0b\x32(.bosdyn.api.graph_nav.WaypointAnchorHint\x12\x42\n\rworld_objects\x18\x02 \x03(\x0b\x32+.bosdyn.api.graph_nav.WorldObjectAnchorHint\"\xf8\n\n\x17ProcessAnchoringRequest\x12)\n\x06header\x18\x01 \x01(\x0b\x32\x19.bosdyn.api.RequestHeader\x12\x44\n\x06params\x18\x02 \x01(\x0b\x32\x34.bosdyn.api.graph_nav.ProcessAnchoringRequest.Params\x12\x39\n\x0cinitial_hint\x18\x03 \x01(\x0b\x32#.bosdyn.api.graph_nav.AnchoringHint\x12\"\n\x1amodify_anchoring_on_server\x18\x04 \x01(\x08\x12#\n\x1bstream_intermediate_results\x18\x05 \x01(\x08\x12/\n\'apply_gps_result_to_waypoints_on_server\x18\x06 \x01(\x08\x1a\xb6\x08\n\x06Params\x12^\n\x10optimizer_params\x18\x01 \x01(\x0b\x32\x44.bosdyn.api.graph_nav.ProcessAnchoringRequest.Params.OptimizerParams\x12\x62\n\x12measurement_params\x18\x02 \x01(\x0b\x32\x46.bosdyn.api.graph_nav.ProcessAnchoringRequest.Params.MeasurementParams\x12M\n\x07weights\x18\x03 \x01(\x0b\x32<.bosdyn.api.graph_nav.ProcessAnchoringRequest.Params.Weights\x12?\n\x1boptimize_existing_anchoring\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12+\n\x11gravity_ewrt_seed\x18\x05 \x01(\x0b\x32\x10.bosdyn.api.Vec3\x1ay\n\x0fOptimizerParams\x12.\n\tmax_iters\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12\x36\n\x10max_time_seconds\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x1a\xe3\x02\n\x11MeasurementParams\x12:\n\x16use_kinematic_odometry\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x37\n\x13use_visual_odometry\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12>\n\x1ause_gyroscope_measurements\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x35\n\x11use_loop_closures\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x35\n\x11use_world_objects\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12+\n\x07use_gps\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x1a\xc9\x01\n\x07Weights\x12!\n\x19kinematic_odometry_weight\x18\x01 \x01(\x01\x12\x1e\n\x16visual_odometry_weight\x18\x02 \x01(\x01\x12\x1b\n\x13world_object_weight\x18\x03 \x01(\x01\x12\x13\n\x0bhint_weight\x18\x04 \x01(\x01\x12\x18\n\x10gyroscope_weight\x18\x05 \x01(\x01\x12\x1b\n\x13loop_closure_weight\x18\x06 \x01(\x01\x12\x12\n\ngps_weight\x18\x07 \x01(\x01\"\xe7\n\n\x18ProcessAnchoringResponse\x12*\n\x06header\x18\x01 \x01(\x0b\x32\x1a.bosdyn.api.ResponseHeader\x12\x45\n\x06status\x18\x02 \x01(\x0e\x32\x35.bosdyn.api.graph_nav.ProcessAnchoringResponse.Status\x12\x36\n\x10waypoint_results\x18\x03 \x03(\x0b\x32\x1c.bosdyn.api.graph_nav.Anchor\x12G\n\x14world_object_results\x18\x04 \x03(\x0b\x32).bosdyn.api.graph_nav.AnchoredWorldObject\x12(\n anchoring_on_server_was_modified\x18\x05 \x01(\x08\x12\x11\n\titeration\x18\x06 \x01(\x05\x12\x0c\n\x04\x63ost\x18\x07 \x01(\x01\x12\x17\n\x0f\x66inal_iteration\x18\x08 \x01(\x08\x12O\n\x1dviolated_waypoint_constraints\x18\t \x03(\x0b\x32(.bosdyn.api.graph_nav.WaypointAnchorHint\x12P\n\x1bviolated_object_constraints\x18\n \x03(\x0b\x32+.bosdyn.api.graph_nav.WorldObjectAnchorHint\x12\x1c\n\x14missing_snapshot_ids\x18\x0b \x03(\t\x12\x1c\n\x14missing_waypoint_ids\x18\x0c \x03(\t\x12\x15\n\rinvalid_hints\x18\r \x03(\t\x12\x39\n\x12inconsistent_edges\x18\x0e \x03(\x0b\x32\x1d.bosdyn.api.graph_nav.Edge.Id\x12L\n\ngps_result\x18\x0f \x01(\x0b\x32\x38.bosdyn.api.graph_nav.ProcessAnchoringResponse.GPSResult\x1a\x8c\x02\n\tGPSResult\x12R\n\x06status\x18\x01 \x01(\x0e\x32\x42.bosdyn.api.graph_nav.ProcessAnchoringResponse.GPSResult.GPSStatus\x12,\n\x0f\x65\x63\x65\x66_tform_seed\x18\x02 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12\x1d\n\x15num_measurements_used\x18\x03 \x01(\x05\"^\n\tGPSStatus\x12\x16\n\x12GPS_STATUS_UNKNOWN\x10\x00\x12\x11\n\rGPS_STATUS_OK\x10\x01\x12&\n\"GPS_STATUS_NOT_ENOUGH_MEASUREMENTS\x10\x02\"\xe4\x02\n\x06Status\x12\x12\n\x0eSTATUS_UNKNOWN\x10\x00\x12\r\n\tSTATUS_OK\x10\x01\x12%\n!STATUS_MISSING_WAYPOINT_SNAPSHOTS\x10\x02\x12\x18\n\x14STATUS_INVALID_GRAPH\x10\x03\x12\x1f\n\x1bSTATUS_OPTIMIZATION_FAILURE\x10\x04\x12\x19\n\x15STATUS_INVALID_PARAMS\x10\x05\x12\x1f\n\x1bSTATUS_CONSTRAINT_VIOLATION\x10\x06\x12\x19\n\x15STATUS_MAX_ITERATIONS\x10\x07\x12\x13\n\x0fSTATUS_MAX_TIME\x10\x08\x12\x18\n\x14STATUS_INVALID_HINTS\x10\t\x12)\n%STATUS_MAP_MODIFIED_DURING_PROCESSING\x10\n\x12$\n STATUS_INVALID_GRAVITY_ALIGNMENT\x10\x0b\x62\x06proto3')
21
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)bosdyn/api/graph_nav/map_processing.proto\x12\x14\x62osdyn.api.graph_nav\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x19\x62osdyn/api/geometry.proto\x1a\x17\x62osdyn/api/header.proto\x1a\x1e\x62osdyn/api/graph_nav/map.proto\"\xf2\x0f\n\x16ProcessTopologyRequest\x12)\n\x06header\x18\x01 \x01(\x0b\x32\x19.bosdyn.api.RequestHeader\x12\x43\n\x06params\x18\x02 \x01(\x0b\x32\x33.bosdyn.api.graph_nav.ProcessTopologyRequest.Params\x12\x1c\n\x14modify_map_on_server\x18\x03 \x01(\x08\x1a{\n\tICPParams\x12.\n\ticp_iters\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12>\n\x18max_point_match_distance\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x1aP\n\x15\x46\x65\x61tureMatchingParams\x12\x37\n\x13\x64o_feature_matching\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x1a\xa6\x03\n\x19OdometryLoopClosureParams\x12\x42\n\x1cmax_loop_closure_path_length\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x42\n\x1cmin_loop_closure_path_length\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x44\n\x1emax_loop_closure_height_change\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x42\n\x1cmax_loop_closure_edge_length\x18\x04 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x46\n!num_extra_loop_closure_iterations\x18\x05 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12/\n\x0bprune_edges\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x1a\xd7\x02\n\x19\x46iducialLoopClosureParams\x12\x42\n\x1cmin_loop_closure_path_length\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x42\n\x1cmax_loop_closure_edge_length\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12;\n\x15max_fiducial_distance\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x44\n\x1emax_loop_closure_height_change\x18\x04 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12/\n\x0bprune_edges\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x1a\xe4\x01\n\x17\x43ollisionCheckingParams\x12=\n\x19\x63heck_edges_for_collision\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x42\n\x1c\x63ollision_check_robot_radius\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x46\n collision_check_height_variation\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x1a\x90\x05\n\x06Params\x12<\n\x18\x64o_odometry_loop_closure\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12l\n\x1codometry_loop_closure_params\x18\x02 \x01(\x0b\x32\x46.bosdyn.api.graph_nav.ProcessTopologyRequest.OdometryLoopClosureParams\x12J\n\nicp_params\x18\x03 \x01(\x0b\x32\x36.bosdyn.api.graph_nav.ProcessTopologyRequest.ICPParams\x12<\n\x18\x64o_fiducial_loop_closure\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12l\n\x1c\x66iducial_loop_closure_params\x18\x05 \x01(\x0b\x32\x46.bosdyn.api.graph_nav.ProcessTopologyRequest.FiducialLoopClosureParams\x12\x64\n\x16\x63ollision_check_params\x18\x06 \x01(\x0b\x32\x44.bosdyn.api.graph_nav.ProcessTopologyRequest.CollisionCheckingParams\x12\x17\n\x0ftimeout_seconds\x18\x07 \x01(\x01\x12\x63\n\x17\x66\x65\x61ture_matching_params\x18\x08 \x01(\x0b\x32\x42.bosdyn.api.graph_nav.ProcessTopologyRequest.FeatureMatchingParams\"\xcb\x03\n\x17ProcessTopologyResponse\x12*\n\x06header\x18\x01 \x01(\x0b\x32\x1a.bosdyn.api.ResponseHeader\x12\x44\n\x06status\x18\x02 \x01(\x0e\x32\x34.bosdyn.api.graph_nav.ProcessTopologyResponse.Status\x12\x31\n\x0cnew_subgraph\x18\x03 \x01(\x0b\x32\x1b.bosdyn.api.graph_nav.Graph\x12\"\n\x1amap_on_server_was_modified\x18\x04 \x01(\x08\x12\x1c\n\x14missing_snapshot_ids\x18\n \x03(\t\x12\x1c\n\x14missing_waypoint_ids\x18\x0b \x03(\t\x12\x11\n\ttimed_out\x18\x0c \x01(\x08\"\x97\x01\n\x06Status\x12\x12\n\x0eSTATUS_UNKNOWN\x10\x00\x12\r\n\tSTATUS_OK\x10\x01\x12%\n!STATUS_MISSING_WAYPOINT_SNAPSHOTS\x10\x02\x12\x18\n\x14STATUS_INVALID_GRAPH\x10\x03\x12)\n%STATUS_MAP_MODIFIED_DURING_PROCESSING\x10\x04\"V\n\nPoseBounds\x12\x10\n\x08x_bounds\x18\x01 \x01(\x01\x12\x10\n\x08y_bounds\x18\x02 \x01(\x01\x12\x10\n\x08z_bounds\x18\x03 \x01(\x01\x12\x12\n\nyaw_bounds\x18\x04 \x01(\x01\"\x9a\x01\n\x15\x41nchorHintUncertainty\x12\x33\n\x0ese3_covariance\x18\x01 \x01(\x0b\x32\x19.bosdyn.api.SE3CovarianceH\x00\x12=\n\x11\x63onfidence_bounds\x18\x02 \x01(\x0b\x32 .bosdyn.api.graph_nav.PoseBoundsH\x00\x42\r\n\x0buncertainty\"\xeb\x01\n\x12WaypointAnchorHint\x12\x35\n\x0fwaypoint_anchor\x18\x01 \x01(\x0b\x32\x1c.bosdyn.api.graph_nav.Anchor\x12T\n\x1fseed_tform_waypoint_uncertainty\x18\x02 \x01(\x0b\x32+.bosdyn.api.graph_nav.AnchorHintUncertainty\x12H\n\x1eseed_tform_waypoint_constraint\x18\x03 \x01(\x0b\x32 .bosdyn.api.graph_nav.PoseBounds\"\xf5\x01\n\x15WorldObjectAnchorHint\x12@\n\robject_anchor\x18\x01 \x01(\x0b\x32).bosdyn.api.graph_nav.AnchoredWorldObject\x12R\n\x1dseed_tform_object_uncertainty\x18\x02 \x01(\x0b\x32+.bosdyn.api.graph_nav.AnchorHintUncertainty\x12\x46\n\x1cseed_tform_object_constraint\x18\x03 \x01(\x0b\x32 .bosdyn.api.graph_nav.PoseBounds\"\x97\x01\n\rAnchoringHint\x12\x42\n\x10waypoint_anchors\x18\x01 \x03(\x0b\x32(.bosdyn.api.graph_nav.WaypointAnchorHint\x12\x42\n\rworld_objects\x18\x02 \x03(\x0b\x32+.bosdyn.api.graph_nav.WorldObjectAnchorHint\"\xf8\n\n\x17ProcessAnchoringRequest\x12)\n\x06header\x18\x01 \x01(\x0b\x32\x19.bosdyn.api.RequestHeader\x12\x44\n\x06params\x18\x02 \x01(\x0b\x32\x34.bosdyn.api.graph_nav.ProcessAnchoringRequest.Params\x12\x39\n\x0cinitial_hint\x18\x03 \x01(\x0b\x32#.bosdyn.api.graph_nav.AnchoringHint\x12\"\n\x1amodify_anchoring_on_server\x18\x04 \x01(\x08\x12#\n\x1bstream_intermediate_results\x18\x05 \x01(\x08\x12/\n\'apply_gps_result_to_waypoints_on_server\x18\x06 \x01(\x08\x1a\xb6\x08\n\x06Params\x12^\n\x10optimizer_params\x18\x01 \x01(\x0b\x32\x44.bosdyn.api.graph_nav.ProcessAnchoringRequest.Params.OptimizerParams\x12\x62\n\x12measurement_params\x18\x02 \x01(\x0b\x32\x46.bosdyn.api.graph_nav.ProcessAnchoringRequest.Params.MeasurementParams\x12M\n\x07weights\x18\x03 \x01(\x0b\x32<.bosdyn.api.graph_nav.ProcessAnchoringRequest.Params.Weights\x12?\n\x1boptimize_existing_anchoring\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12+\n\x11gravity_ewrt_seed\x18\x05 \x01(\x0b\x32\x10.bosdyn.api.Vec3\x1ay\n\x0fOptimizerParams\x12.\n\tmax_iters\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12\x36\n\x10max_time_seconds\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x1a\xe3\x02\n\x11MeasurementParams\x12:\n\x16use_kinematic_odometry\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x37\n\x13use_visual_odometry\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12>\n\x1ause_gyroscope_measurements\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x35\n\x11use_loop_closures\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x35\n\x11use_world_objects\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12+\n\x07use_gps\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x1a\xc9\x01\n\x07Weights\x12!\n\x19kinematic_odometry_weight\x18\x01 \x01(\x01\x12\x1e\n\x16visual_odometry_weight\x18\x02 \x01(\x01\x12\x1b\n\x13world_object_weight\x18\x03 \x01(\x01\x12\x13\n\x0bhint_weight\x18\x04 \x01(\x01\x12\x18\n\x10gyroscope_weight\x18\x05 \x01(\x01\x12\x1b\n\x13loop_closure_weight\x18\x06 \x01(\x01\x12\x12\n\ngps_weight\x18\x07 \x01(\x01\"\xe7\n\n\x18ProcessAnchoringResponse\x12*\n\x06header\x18\x01 \x01(\x0b\x32\x1a.bosdyn.api.ResponseHeader\x12\x45\n\x06status\x18\x02 \x01(\x0e\x32\x35.bosdyn.api.graph_nav.ProcessAnchoringResponse.Status\x12\x36\n\x10waypoint_results\x18\x03 \x03(\x0b\x32\x1c.bosdyn.api.graph_nav.Anchor\x12G\n\x14world_object_results\x18\x04 \x03(\x0b\x32).bosdyn.api.graph_nav.AnchoredWorldObject\x12(\n anchoring_on_server_was_modified\x18\x05 \x01(\x08\x12\x11\n\titeration\x18\x06 \x01(\x05\x12\x0c\n\x04\x63ost\x18\x07 \x01(\x01\x12\x17\n\x0f\x66inal_iteration\x18\x08 \x01(\x08\x12O\n\x1dviolated_waypoint_constraints\x18\t \x03(\x0b\x32(.bosdyn.api.graph_nav.WaypointAnchorHint\x12P\n\x1bviolated_object_constraints\x18\n \x03(\x0b\x32+.bosdyn.api.graph_nav.WorldObjectAnchorHint\x12\x1c\n\x14missing_snapshot_ids\x18\x0b \x03(\t\x12\x1c\n\x14missing_waypoint_ids\x18\x0c \x03(\t\x12\x15\n\rinvalid_hints\x18\r \x03(\t\x12\x39\n\x12inconsistent_edges\x18\x0e \x03(\x0b\x32\x1d.bosdyn.api.graph_nav.Edge.Id\x12L\n\ngps_result\x18\x0f \x01(\x0b\x32\x38.bosdyn.api.graph_nav.ProcessAnchoringResponse.GPSResult\x1a\x8c\x02\n\tGPSResult\x12R\n\x06status\x18\x01 \x01(\x0e\x32\x42.bosdyn.api.graph_nav.ProcessAnchoringResponse.GPSResult.GPSStatus\x12,\n\x0f\x65\x63\x65\x66_tform_seed\x18\x02 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\x12\x1d\n\x15num_measurements_used\x18\x03 \x01(\x05\"^\n\tGPSStatus\x12\x16\n\x12GPS_STATUS_UNKNOWN\x10\x00\x12\x11\n\rGPS_STATUS_OK\x10\x01\x12&\n\"GPS_STATUS_NOT_ENOUGH_MEASUREMENTS\x10\x02\"\xe4\x02\n\x06Status\x12\x12\n\x0eSTATUS_UNKNOWN\x10\x00\x12\r\n\tSTATUS_OK\x10\x01\x12%\n!STATUS_MISSING_WAYPOINT_SNAPSHOTS\x10\x02\x12\x18\n\x14STATUS_INVALID_GRAPH\x10\x03\x12\x1f\n\x1bSTATUS_OPTIMIZATION_FAILURE\x10\x04\x12\x19\n\x15STATUS_INVALID_PARAMS\x10\x05\x12\x1f\n\x1bSTATUS_CONSTRAINT_VIOLATION\x10\x06\x12\x19\n\x15STATUS_MAX_ITERATIONS\x10\x07\x12\x13\n\x0fSTATUS_MAX_TIME\x10\x08\x12\x18\n\x14STATUS_INVALID_HINTS\x10\t\x12)\n%STATUS_MAP_MODIFIED_DURING_PROCESSING\x10\n\x12$\n STATUS_INVALID_GRAVITY_ALIGNMENT\x10\x0b\x62\x06proto3')
22
22
 
23
23
 
24
24
 
25
25
  _PROCESSTOPOLOGYREQUEST = DESCRIPTOR.message_types_by_name['ProcessTopologyRequest']
26
26
  _PROCESSTOPOLOGYREQUEST_ICPPARAMS = _PROCESSTOPOLOGYREQUEST.nested_types_by_name['ICPParams']
27
+ _PROCESSTOPOLOGYREQUEST_FEATUREMATCHINGPARAMS = _PROCESSTOPOLOGYREQUEST.nested_types_by_name['FeatureMatchingParams']
27
28
  _PROCESSTOPOLOGYREQUEST_ODOMETRYLOOPCLOSUREPARAMS = _PROCESSTOPOLOGYREQUEST.nested_types_by_name['OdometryLoopClosureParams']
28
29
  _PROCESSTOPOLOGYREQUEST_FIDUCIALLOOPCLOSUREPARAMS = _PROCESSTOPOLOGYREQUEST.nested_types_by_name['FiducialLoopClosureParams']
29
30
  _PROCESSTOPOLOGYREQUEST_COLLISIONCHECKINGPARAMS = _PROCESSTOPOLOGYREQUEST.nested_types_by_name['CollisionCheckingParams']
@@ -53,6 +54,13 @@ ProcessTopologyRequest = _reflection.GeneratedProtocolMessageType('ProcessTopolo
53
54
  })
54
55
  ,
55
56
 
57
+ 'FeatureMatchingParams' : _reflection.GeneratedProtocolMessageType('FeatureMatchingParams', (_message.Message,), {
58
+ 'DESCRIPTOR' : _PROCESSTOPOLOGYREQUEST_FEATUREMATCHINGPARAMS,
59
+ '__module__' : 'bosdyn.api.graph_nav.map_processing_pb2'
60
+ # @@protoc_insertion_point(class_scope:bosdyn.api.graph_nav.ProcessTopologyRequest.FeatureMatchingParams)
61
+ })
62
+ ,
63
+
56
64
  'OdometryLoopClosureParams' : _reflection.GeneratedProtocolMessageType('OdometryLoopClosureParams', (_message.Message,), {
57
65
  'DESCRIPTOR' : _PROCESSTOPOLOGYREQUEST_ODOMETRYLOOPCLOSUREPARAMS,
58
66
  '__module__' : 'bosdyn.api.graph_nav.map_processing_pb2'
@@ -86,6 +94,7 @@ ProcessTopologyRequest = _reflection.GeneratedProtocolMessageType('ProcessTopolo
86
94
  })
87
95
  _sym_db.RegisterMessage(ProcessTopologyRequest)
88
96
  _sym_db.RegisterMessage(ProcessTopologyRequest.ICPParams)
97
+ _sym_db.RegisterMessage(ProcessTopologyRequest.FeatureMatchingParams)
89
98
  _sym_db.RegisterMessage(ProcessTopologyRequest.OdometryLoopClosureParams)
90
99
  _sym_db.RegisterMessage(ProcessTopologyRequest.FiducialLoopClosureParams)
91
100
  _sym_db.RegisterMessage(ProcessTopologyRequest.CollisionCheckingParams)
@@ -191,47 +200,49 @@ if _descriptor._USE_C_DESCRIPTORS == False:
191
200
 
192
201
  DESCRIPTOR._options = None
193
202
  _PROCESSTOPOLOGYREQUEST._serialized_start=184
194
- _PROCESSTOPOLOGYREQUEST._serialized_end=2035
203
+ _PROCESSTOPOLOGYREQUEST._serialized_end=2218
195
204
  _PROCESSTOPOLOGYREQUEST_ICPPARAMS._serialized_start=352
196
205
  _PROCESSTOPOLOGYREQUEST_ICPPARAMS._serialized_end=475
197
- _PROCESSTOPOLOGYREQUEST_ODOMETRYLOOPCLOSUREPARAMS._serialized_start=478
198
- _PROCESSTOPOLOGYREQUEST_ODOMETRYLOOPCLOSUREPARAMS._serialized_end=900
199
- _PROCESSTOPOLOGYREQUEST_FIDUCIALLOOPCLOSUREPARAMS._serialized_start=903
200
- _PROCESSTOPOLOGYREQUEST_FIDUCIALLOOPCLOSUREPARAMS._serialized_end=1246
201
- _PROCESSTOPOLOGYREQUEST_COLLISIONCHECKINGPARAMS._serialized_start=1249
202
- _PROCESSTOPOLOGYREQUEST_COLLISIONCHECKINGPARAMS._serialized_end=1477
203
- _PROCESSTOPOLOGYREQUEST_PARAMS._serialized_start=1480
204
- _PROCESSTOPOLOGYREQUEST_PARAMS._serialized_end=2035
205
- _PROCESSTOPOLOGYRESPONSE._serialized_start=2038
206
- _PROCESSTOPOLOGYRESPONSE._serialized_end=2497
207
- _PROCESSTOPOLOGYRESPONSE_STATUS._serialized_start=2346
208
- _PROCESSTOPOLOGYRESPONSE_STATUS._serialized_end=2497
209
- _POSEBOUNDS._serialized_start=2499
210
- _POSEBOUNDS._serialized_end=2585
211
- _ANCHORHINTUNCERTAINTY._serialized_start=2588
212
- _ANCHORHINTUNCERTAINTY._serialized_end=2742
213
- _WAYPOINTANCHORHINT._serialized_start=2745
214
- _WAYPOINTANCHORHINT._serialized_end=2980
215
- _WORLDOBJECTANCHORHINT._serialized_start=2983
216
- _WORLDOBJECTANCHORHINT._serialized_end=3228
217
- _ANCHORINGHINT._serialized_start=3231
218
- _ANCHORINGHINT._serialized_end=3382
219
- _PROCESSANCHORINGREQUEST._serialized_start=3385
220
- _PROCESSANCHORINGREQUEST._serialized_end=4785
221
- _PROCESSANCHORINGREQUEST_PARAMS._serialized_start=3707
222
- _PROCESSANCHORINGREQUEST_PARAMS._serialized_end=4785
223
- _PROCESSANCHORINGREQUEST_PARAMS_OPTIMIZERPARAMS._serialized_start=4102
224
- _PROCESSANCHORINGREQUEST_PARAMS_OPTIMIZERPARAMS._serialized_end=4223
225
- _PROCESSANCHORINGREQUEST_PARAMS_MEASUREMENTPARAMS._serialized_start=4226
226
- _PROCESSANCHORINGREQUEST_PARAMS_MEASUREMENTPARAMS._serialized_end=4581
227
- _PROCESSANCHORINGREQUEST_PARAMS_WEIGHTS._serialized_start=4584
228
- _PROCESSANCHORINGREQUEST_PARAMS_WEIGHTS._serialized_end=4785
229
- _PROCESSANCHORINGRESPONSE._serialized_start=4788
230
- _PROCESSANCHORINGRESPONSE._serialized_end=6171
231
- _PROCESSANCHORINGRESPONSE_GPSRESULT._serialized_start=5544
232
- _PROCESSANCHORINGRESPONSE_GPSRESULT._serialized_end=5812
233
- _PROCESSANCHORINGRESPONSE_GPSRESULT_GPSSTATUS._serialized_start=5718
234
- _PROCESSANCHORINGRESPONSE_GPSRESULT_GPSSTATUS._serialized_end=5812
235
- _PROCESSANCHORINGRESPONSE_STATUS._serialized_start=5815
236
- _PROCESSANCHORINGRESPONSE_STATUS._serialized_end=6171
206
+ _PROCESSTOPOLOGYREQUEST_FEATUREMATCHINGPARAMS._serialized_start=477
207
+ _PROCESSTOPOLOGYREQUEST_FEATUREMATCHINGPARAMS._serialized_end=557
208
+ _PROCESSTOPOLOGYREQUEST_ODOMETRYLOOPCLOSUREPARAMS._serialized_start=560
209
+ _PROCESSTOPOLOGYREQUEST_ODOMETRYLOOPCLOSUREPARAMS._serialized_end=982
210
+ _PROCESSTOPOLOGYREQUEST_FIDUCIALLOOPCLOSUREPARAMS._serialized_start=985
211
+ _PROCESSTOPOLOGYREQUEST_FIDUCIALLOOPCLOSUREPARAMS._serialized_end=1328
212
+ _PROCESSTOPOLOGYREQUEST_COLLISIONCHECKINGPARAMS._serialized_start=1331
213
+ _PROCESSTOPOLOGYREQUEST_COLLISIONCHECKINGPARAMS._serialized_end=1559
214
+ _PROCESSTOPOLOGYREQUEST_PARAMS._serialized_start=1562
215
+ _PROCESSTOPOLOGYREQUEST_PARAMS._serialized_end=2218
216
+ _PROCESSTOPOLOGYRESPONSE._serialized_start=2221
217
+ _PROCESSTOPOLOGYRESPONSE._serialized_end=2680
218
+ _PROCESSTOPOLOGYRESPONSE_STATUS._serialized_start=2529
219
+ _PROCESSTOPOLOGYRESPONSE_STATUS._serialized_end=2680
220
+ _POSEBOUNDS._serialized_start=2682
221
+ _POSEBOUNDS._serialized_end=2768
222
+ _ANCHORHINTUNCERTAINTY._serialized_start=2771
223
+ _ANCHORHINTUNCERTAINTY._serialized_end=2925
224
+ _WAYPOINTANCHORHINT._serialized_start=2928
225
+ _WAYPOINTANCHORHINT._serialized_end=3163
226
+ _WORLDOBJECTANCHORHINT._serialized_start=3166
227
+ _WORLDOBJECTANCHORHINT._serialized_end=3411
228
+ _ANCHORINGHINT._serialized_start=3414
229
+ _ANCHORINGHINT._serialized_end=3565
230
+ _PROCESSANCHORINGREQUEST._serialized_start=3568
231
+ _PROCESSANCHORINGREQUEST._serialized_end=4968
232
+ _PROCESSANCHORINGREQUEST_PARAMS._serialized_start=3890
233
+ _PROCESSANCHORINGREQUEST_PARAMS._serialized_end=4968
234
+ _PROCESSANCHORINGREQUEST_PARAMS_OPTIMIZERPARAMS._serialized_start=4285
235
+ _PROCESSANCHORINGREQUEST_PARAMS_OPTIMIZERPARAMS._serialized_end=4406
236
+ _PROCESSANCHORINGREQUEST_PARAMS_MEASUREMENTPARAMS._serialized_start=4409
237
+ _PROCESSANCHORINGREQUEST_PARAMS_MEASUREMENTPARAMS._serialized_end=4764
238
+ _PROCESSANCHORINGREQUEST_PARAMS_WEIGHTS._serialized_start=4767
239
+ _PROCESSANCHORINGREQUEST_PARAMS_WEIGHTS._serialized_end=4968
240
+ _PROCESSANCHORINGRESPONSE._serialized_start=4971
241
+ _PROCESSANCHORINGRESPONSE._serialized_end=6354
242
+ _PROCESSANCHORINGRESPONSE_GPSRESULT._serialized_start=5727
243
+ _PROCESSANCHORINGRESPONSE_GPSRESULT._serialized_end=5995
244
+ _PROCESSANCHORINGRESPONSE_GPSRESULT_GPSSTATUS._serialized_start=5901
245
+ _PROCESSANCHORINGRESPONSE_GPSRESULT_GPSSTATUS._serialized_end=5995
246
+ _PROCESSANCHORINGRESPONSE_STATUS._serialized_start=5998
247
+ _PROCESSANCHORINGRESPONSE_STATUS._serialized_end=6354
237
248
  # @@protoc_insertion_point(module_scope)