repo_id
stringlengths
19
138
file_path
stringlengths
32
200
content
stringlengths
1
12.9M
__index_level_0__
int64
0
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/third_party_perception/third_party_perception_component.cc
/****************************************************************************** * Copyright 2018 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/third_party_perception/third_party_perception_component.h" #include "modules/common/adapters/adapter_gflags.h" #include "modules/third_party_perception/proto/third_party_perception_component.pb.h" DECLARE_string(flagfile); namespace apollo { namespace third_party_perception { bool ThirdPartyPerceptionComponent::Init() { apollo::third_party_perception::ThirdPartyPerceptionDevice third_party_perception_param; if (!GetProtoConfig(&third_party_perception_param)) { AINFO << "load third party perception param failed"; return false; } ThirdPartyPerceptionDeviceType device_type = third_party_perception_param.device_type(); if (device_type == ThirdPartyPerceptionDeviceType::SMARTEREYE) { perception_ = std::make_shared<ThirdPartyPerceptionSmartereye>(node_.get()); } else if (device_type == ThirdPartyPerceptionDeviceType::MOBILEYE) { perception_ = std::make_shared<ThirdPartyPerceptionMobileye>(node_.get()); } else { perception_ = std::make_shared<ThirdPartyPerception>(node_.get()); } if (!perception_->Init().ok()) { return false; } writer_ = node_->CreateWriter<apollo::perception::PerceptionObstacles>( FLAGS_perception_obstacle_topic); return perception_->Start().ok(); } bool ThirdPartyPerceptionComponent::Proc() { auto response = std::make_shared<apollo::perception::PerceptionObstacles>(); if (!perception_->Process(response.get())) { return false; } writer_->Write(response); return true; } } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/third_party_perception/README.md
# Third Party Perception ## Introduction In Apollo 2.5, the third_party_perception module incorporates third-party sensors like Mobileye and Conti/Delphi Radar output with simple fusion and creates a similar perception output produced as obstacle/lane detection information as defined in [Perception Obstacles Interface](https://github.com/ApolloAuto/apollo/blob/master/modules/perception/proto/perception_obstacle.proto). This module was only intend to serve for the Prediction/Planning/Control algorithm in real vehicle before perception modules fully ready before 2.5. We recommend using 'modules/perception' instead for your own test purpose after Apollo 2.5 officially released. ## Input The perception module inputs are: - Radar data (ROS topic _/apollo/sensor/conti_radar_ or _/apollo/sensor/delphi_esr_ ) - Mobileye data (ROS topic _/apollo/sensor/mobileye_) ## Output The perception module outputs are: * The 3D obstacle tracks with the heading, velocity and classification information (ROS topic _/apollo/perception/obstacles_) * The lane marker information with fitted curve parameter, spatial information(l0,r0, etc) as well as semantic information (lane type) (ROS topic _/apollo/perception/obstacles_)
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/third_party_perception/third_party_perception_base.h
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #pragma once #include <memory> #include <mutex> #include <string> #include "cyber/node/node.h" #include "cyber/node/reader.h" #include "modules/common_msgs/chassis_msgs/chassis.pb.h" #include "modules/common/status/status.h" #include "modules/common_msgs/sensor_msgs/sensor_image.pb.h" #include "modules/common_msgs/localization_msgs/localization.pb.h" #include "modules/common_msgs/perception_msgs/perception_obstacle.pb.h" #include "modules/third_party_perception/common/third_party_perception_gflags.h" #include "modules/third_party_perception/proto/radar_obstacle.pb.h" /** * @namespace apollo::third_party_perception * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { class ThirdPartyPerception { public: explicit ThirdPartyPerception(apollo::cyber::Node* const node); ThirdPartyPerception() = default; virtual ~ThirdPartyPerception() = default; std::string Name() const; apollo::common::Status Init(); apollo::common::Status Start(); void Stop(); // Upon receiving localization data void OnLocalization( const apollo::localization::LocalizationEstimate& message); // Upon receiving chassis data void OnChassis(const apollo::canbus::Chassis& message); // publish perception obstacles when timer is triggered virtual bool Process(apollo::perception::PerceptionObstacles* const response); protected: std::mutex third_party_perception_mutex_; apollo::localization::LocalizationEstimate localization_; apollo::canbus::Chassis chassis_; RadarObstacles current_radar_obstacles_; RadarObstacles last_radar_obstacles_; std::shared_ptr<apollo::cyber::Node> node_ = nullptr; std::shared_ptr< apollo::cyber::Reader<apollo::localization::LocalizationEstimate>> localization_reader_ = nullptr; std::shared_ptr<apollo::cyber::Reader<apollo::canbus::Chassis>> chassis_reader_ = nullptr; }; } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/third_party_perception/third_party_perception_component.h
/****************************************************************************** * Copyright 2018 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #pragma once #include <memory> #include <string> #include <vector> #include "cyber/component/component.h" #include "cyber/component/timer_component.h" #include "modules/common_msgs/sensor_msgs/sensor_image.pb.h" #include "modules/third_party_perception/third_party_perception_base.h" #include "modules/third_party_perception/third_party_perception_mobileye.h" #include "modules/third_party_perception/third_party_perception_smartereye.h" namespace apollo { namespace third_party_perception { class ThirdPartyPerceptionComponent final : public apollo::cyber::TimerComponent { public: ThirdPartyPerceptionComponent() = default; ~ThirdPartyPerceptionComponent() = default; public: bool Init() override; bool Proc() override; private: std::shared_ptr< apollo::cyber::Writer<apollo::perception::PerceptionObstacles>> writer_ = nullptr; std::shared_ptr<ThirdPartyPerception> perception_ = nullptr; }; CYBER_REGISTER_COMPONENT(ThirdPartyPerceptionComponent) } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/third_party_perception/third-party-perception.BUILD
load("@rules_cc//cc:defs.bzl", "cc_library") cc_library( name = "third_party_perception", includes = ["include"], hdrs = glob(["include/**/*.h"]), srcs = glob(["lib/**/*.so*"]), include_prefix = "modules/third_party_perception", strip_include_prefix = "include", visibility = ["//visibility:public"], )
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/third_party_perception/BUILD
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library") load("//tools/install:install.bzl", "install", "install_files", "install_src_files") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) cc_library( name = "third_party_perception_lib", srcs = ["third_party_perception_base.cc"], hdrs = ["third_party_perception_base.h"], alwayslink = True, deps = [ "//cyber", "//modules/common/adapters:adapter_gflags", "//modules/common/util:util_tool", "//modules/third_party_perception/tools:third_party_perception_filter", "//modules/third_party_perception/tools:third_party_perception_fusion", "//modules/third_party_perception/tools:third_party_perception_mobileye_conversion", "//modules/third_party_perception/tools:third_party_perception_radar_conversion", "//modules/third_party_perception/tools:third_party_perception_smartereye_conversion", ], ) cc_library( name = "third_party_perception_mobileye_lib", srcs = ["third_party_perception_mobileye.cc"], hdrs = ["third_party_perception_mobileye.h"], alwayslink = True, deps = [ ":third_party_perception_lib", "//cyber", "//modules/common/adapters:adapter_gflags", "//modules/common/util:util_tool", "//modules/third_party_perception/tools:third_party_perception_filter", "//modules/third_party_perception/tools:third_party_perception_fusion", "//modules/third_party_perception/tools:third_party_perception_mobileye_conversion", "//modules/third_party_perception/tools:third_party_perception_radar_conversion", "//modules/third_party_perception/tools:third_party_perception_smartereye_conversion", ], ) cc_library( name = "third_party_perception_smartereye_lib", srcs = ["third_party_perception_smartereye.cc"], hdrs = ["third_party_perception_smartereye.h"], alwayslink = True, deps = [ ":third_party_perception_lib", "//cyber", "//modules/common/adapters:adapter_gflags", "//modules/common/util:util_tool", "//modules/third_party_perception/tools:third_party_perception_filter", "//modules/third_party_perception/tools:third_party_perception_fusion", "//modules/third_party_perception/tools:third_party_perception_mobileye_conversion", "//modules/third_party_perception/tools:third_party_perception_radar_conversion", "//modules/third_party_perception/tools:third_party_perception_smartereye_conversion", ], ) cc_library( name = "third_party_perception_component_lib", srcs = ["third_party_perception_component.cc"], hdrs = ["third_party_perception_component.h"], copts = ['-DMODULE_NAME=\\"third_party_perception\\"'], deps = [ ":third_party_perception_lib", ":third_party_perception_mobileye_lib", ":third_party_perception_smartereye_lib", ], alwayslink = True, ) cc_binary( name = "libthird_party_perception_component.so", linkshared = True, linkstatic = True, deps = [":third_party_perception_component_lib"], ) filegroup( name = "runtime_data", srcs = glob([ "conf/**", "dag/*.dag", "launch/*.launch", ]), ) install( name = "install", library_dest = "third-party-perception/lib", data_dest = "third-party-perception", data = [ ":runtime_data", ":cyberfile.xml", ":third-party-perception.BUILD", ], targets = [ ":libthird_party_perception_component.so", ], deps = [ ":pb_hdrs", ], ) install( name = "pb_hdrs", data_dest = "third-party-perception/include", data = [ "//modules/third_party_perception/proto:radar_obstacle_cc_proto", "//modules/third_party_perception/proto:third_party_perception_component_cc_proto", ], ) install_src_files( name = "install_src", deps = [ ":install_third-party-perception_src", ":install_third-party-perception_hdrs" ], ) install_src_files( name = "install_third-party-perception_src", src_dir = ["."], dest = "third-party-perception/src", filter = "*", ) install_src_files( name = "install_third-party-perception_hdrs", src_dir = ["."], dest = "third-party-perception/include", filter = "*.h", ) cpplint()
0
apollo_public_repos/apollo/modules/third_party_perception/testdata
apollo_public_repos/apollo/modules/third_party_perception/testdata/simple_fusion/1_perception_obstacles.pb.txt
perception_obstacle { id: 5 position { x: 76.184221246053838 y: -8.74886039049188 } theta: -1 velocity { x: -0.84422235291896841 y: 1.3147984137623383 } length: 5 width: 1.4000000000000001 height: 3 polygon_point { x: 76.945947321358659 y: -11.230749466619319 } polygon_point { x: 78.124006700089723 y: -10.474326238403922 } polygon_point { x: 75.422495170749016 y: -6.26697131436444 } polygon_point { x: 74.244435792017953 y: -7.0233945425798368 } type: VEHICLE confidence: 0.5 } perception_obstacle { id: 1000 position { x: 77.600000000000023 y: -3.7999999999999829 } theta: -1 velocity { x: -13.75 y: 0.75 } length: 5 width: 2 height: 3 polygon_point { x: 78.109284779862477 y: -6.4439797678878641 } polygon_point { x: 79.792226749478274 y: -5.3633751561515837 } polygon_point { x: 77.090715220137568 y: -1.1560202321121018 } polygon_point { x: 75.407773250521771 y: -2.2366248438483813 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1003 position { x: 193.20000000000005 y: -19.199999999999989 } theta: -1 velocity { x: -14 y: -4.25 } length: 5 width: 2 height: 3 polygon_point { x: 193.70928477986249 y: -21.84397976788787 } polygon_point { x: 195.39222674947828 y: -20.763375156151593 } polygon_point { x: 192.69071522013761 y: -16.556020232112107 } polygon_point { x: 191.00777325052181 y: -17.636624843848384 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1006 position { x: 98 y: -0.39999999999997726 } theta: -1 velocity { x: -13.75 y: -0.25 } length: 5 width: 2 height: 3 polygon_point { x: 98.509284779862455 y: -3.0439797678878584 } polygon_point { x: 100.19222674947825 y: -1.9633751561515789 } polygon_point { x: 97.490715220137545 y: 2.2439797678879039 } polygon_point { x: 95.807773250521748 y: 1.1633751561516243 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1009 position { x: 142.40000000000009 y: -8.9999999999999716 } theta: -1 velocity { x: -13.75 y: 0.5 } length: 5 width: 2 height: 3 polygon_point { x: 142.90928477986253 y: -11.643979767887853 } polygon_point { x: 144.59222674947833 y: -10.563375156151572 } polygon_point { x: 141.89071522013765 y: -6.35602023211209 } polygon_point { x: 140.20777325052185 y: -7.4366248438483709 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1012 position { x: 115.80000000000007 y: 11.000000000000028 } theta: -1 velocity { x: 2.75 y: 3.5 } length: 5 width: 2 height: 3 polygon_point { x: 116.30928477986252 y: 8.3560202321121473 } polygon_point { x: 117.99222674947832 y: 9.4366248438484277 } polygon_point { x: 115.29071522013761 y: 13.64397976788791 } polygon_point { x: 113.60777325052182 y: 12.563375156151629 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1015 position { x: 246.60000000000002 y: 21.400000000000006 } theta: -1 velocity { x: -13.75 y: 0 } length: 5 width: 2 height: 3 polygon_point { x: 247.10928477986246 y: 18.756020232112125 } polygon_point { x: 248.79222674947826 y: 19.8366248438484 } polygon_point { x: 246.09071522013758 y: 24.043979767887887 } polygon_point { x: 244.40777325052179 y: 22.96337515615161 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1018 position { x: 45.800000000000068 y: -33.799999999999983 } theta: -1 velocity { x: -13.75 y: 0 } length: 5 width: 2 height: 3 polygon_point { x: 46.309284779862516 y: -36.443979767887861 } polygon_point { x: 47.992226749478313 y: -35.363375156151584 } polygon_point { x: 45.290715220137621 y: -31.156020232112102 } polygon_point { x: 43.607773250521824 y: -32.236624843848382 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1021 position { x: 22.399999999999977 y: -3.9999999999999716 } theta: -1 velocity { x: -13.75 y: 0 } length: 5 width: 2 height: 3 polygon_point { x: 22.909284779862432 y: -6.6439797678878527 } polygon_point { x: 24.592226749478222 y: -5.5633751561515723 } polygon_point { x: 21.890715220137523 y: -1.3560202321120904 } polygon_point { x: 20.207773250521733 y: -2.43662484384837 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1024 position { x: 59.600000000000023 y: -3.5999999999999943 } theta: -1 velocity { x: -14 y: 1 } length: 5 width: 2 height: 3 polygon_point { x: 60.10928477986247 y: -6.2439797678878755 } polygon_point { x: 61.792226749478267 y: -5.163375156151595 } polygon_point { x: 59.090715220137575 y: -0.95602023211211318 } polygon_point { x: 57.407773250521778 y: -2.0366248438483927 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1027 position { x: 27.800000000000068 y: -4.3999999999999773 } theta: -1 velocity { x: -13.75 y: 0.75 } length: 5 width: 2 height: 3 polygon_point { x: 28.309284779862523 y: -7.0439797678878584 } polygon_point { x: 29.992226749478313 y: -5.963375156151578 } polygon_point { x: 27.290715220137614 y: -1.7560202321120961 } polygon_point { x: 25.607773250521824 y: -2.8366248438483757 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1036 position { x: 212.60000000000002 y: 23.000000000000028 } theta: -1 velocity { x: -13.75 y: 0.25 } length: 5 width: 2 height: 3 polygon_point { x: 213.10928477986246 y: 20.356020232112147 } polygon_point { x: 214.79222674947826 y: 21.436624843848424 } polygon_point { x: 212.09071522013758 y: 25.64397976788791 } polygon_point { x: 210.40777325052179 y: 24.563375156151633 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1051 position { x: 64.200000000000045 y: 30.600000000000023 } theta: -1 velocity { x: -13.75 y: -1 } length: 5 width: 2 height: 3 polygon_point { x: 64.7092847798625 y: 27.956020232112142 } polygon_point { x: 66.3922267494783 y: 29.036624843848418 } polygon_point { x: 63.6907152201376 y: 33.2439797678879 } polygon_point { x: 62.0077732505218 y: 32.163375156151623 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1054 position { x: 112 y: 13.600000000000023 } theta: -1 velocity { x: 7.25 y: 4.25 } length: 5 width: 2 height: 3 polygon_point { x: 112.50928477986245 y: 10.956020232112142 } polygon_point { x: 114.19222674947825 y: 12.036624843848422 } polygon_point { x: 111.49071522013755 y: 16.243979767887904 } polygon_point { x: 109.80777325052175 y: 15.163375156151623 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1002 position { x: 37.200000000000045 y: -26.999999999999972 } theta: -1 velocity { x: -0.25 y: 14.5 } length: 5 width: 2 height: 3 polygon_point { x: 37.709284779862493 y: -29.643979767887853 } polygon_point { x: 39.39222674947829 y: -28.563375156151576 } polygon_point { x: 36.6907152201376 y: -24.35602023211209 } polygon_point { x: 35.0077732505218 y: -25.436624843848367 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1005 position { x: 168.20000000000005 y: 11.200000000000017 } theta: -1 velocity { x: -13.75 y: 1.75 } length: 5 width: 2 height: 3 polygon_point { x: 168.70928477986249 y: 8.5560202321121359 } polygon_point { x: 170.39222674947828 y: 9.6366248438484163 } polygon_point { x: 167.69071522013761 y: 13.843979767887898 } polygon_point { x: 166.00777325052181 y: 12.763375156151618 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1008 position { x: 108.80000000000007 y: 0.80000000000001137 } theta: -1 velocity { x: -13.75 y: -0.25 } length: 5 width: 2 height: 3 polygon_point { x: 109.30928477986252 y: -1.8439797678878698 } polygon_point { x: 110.99222674947832 y: -0.76337515615159024 } polygon_point { x: 108.29071522013761 y: 3.4439797678878925 } polygon_point { x: 106.60777325052182 y: 2.363375156151613 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1011 position { x: 97.200000000000045 y: -3.5999999999999943 } theta: -1 velocity { x: -13.75 y: 0.5 } length: 5 width: 2 height: 3 polygon_point { x: 97.7092847798625 y: -6.2439797678878755 } polygon_point { x: 99.3922267494783 y: -5.163375156151595 } polygon_point { x: 96.690715220137591 y: -0.95602023211211318 } polygon_point { x: 95.0077732505218 y: -2.0366248438483927 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1014 position { x: 3.8000000000000114 y: -10.199999999999989 } theta: -1 velocity { x: -14 y: 0 } length: 5 width: 2 height: 3 polygon_point { x: 4.3092847798624643 y: -12.84397976788787 } polygon_point { x: 5.9922267494782577 y: -11.763375156151589 } polygon_point { x: 3.2907152201375585 y: -7.5560202321121075 } polygon_point { x: 1.6077732505217652 y: -8.6366248438483879 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1017 position { x: 15 y: -5.1999999999999886 } theta: -1 velocity { x: -13.75 y: 0.25 } length: 5 width: 2 height: 3 polygon_point { x: 15.509284779862453 y: -7.84397976788787 } polygon_point { x: 17.192226749478245 y: -6.7633751561515894 } polygon_point { x: 14.490715220137547 y: -2.5560202321121075 } polygon_point { x: 12.807773250521754 y: -3.636624843848387 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1020 position { x: 209.40000000000009 y: -7.3999999999999773 } theta: -1 velocity { x: -13.75 y: -0.25 } length: 5 width: 2 height: 3 polygon_point { x: 209.90928477986253 y: -10.043979767887858 } polygon_point { x: 211.59222674947833 y: -8.963375156151578 } polygon_point { x: 208.89071522013765 y: -4.7560202321120961 } polygon_point { x: 207.20777325052185 y: -5.8366248438483765 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1023 position { x: 167.20000000000005 y: 0.60000000000002274 } theta: -1 velocity { x: -13.75 y: 1 } length: 5 width: 2 height: 3 polygon_point { x: 167.70928477986249 y: -2.0439797678878584 } polygon_point { x: 169.39222674947828 y: -0.96337515615157887 } polygon_point { x: 166.69071522013761 y: 3.2439797678879039 } polygon_point { x: 165.00777325052181 y: 2.1633751561516243 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1026 position { x: 217.20000000000005 y: 7.2000000000000171 } theta: -1 velocity { x: -13.75 y: 2.75 } length: 5 width: 2 height: 3 polygon_point { x: 217.70928477986249 y: 4.5560202321121359 } polygon_point { x: 219.39222674947828 y: 5.6366248438484163 } polygon_point { x: 216.69071522013761 y: 9.8439797678878982 } polygon_point { x: 215.00777325052181 y: 8.7633751561516178 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1029 position { x: 31.800000000000068 y: -6.3999999999999773 } theta: -1 velocity { x: -13.75 y: 0 } length: 5 width: 2 height: 3 polygon_point { x: 32.309284779862516 y: -9.0439797678878584 } polygon_point { x: 33.992226749478313 y: -7.963375156151578 } polygon_point { x: 31.290715220137614 y: -3.7560202321120966 } polygon_point { x: 29.607773250521824 y: -4.8366248438483765 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1032 position { x: 38.399999999999977 y: -34.199999999999989 } theta: -1 velocity { x: -13.75 y: -0.75 } length: 5 width: 2 height: 3 polygon_point { x: 38.909284779862425 y: -36.843979767887866 } polygon_point { x: 40.592226749478222 y: -35.763375156151589 } polygon_point { x: 37.89071522013753 y: -31.556020232112111 } polygon_point { x: 36.207773250521733 y: -32.636624843848388 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1038 position { x: 118.60000000000002 y: 8.6000000000000227 } theta: -1 velocity { x: -13.75 y: 1 } length: 5 width: 2 height: 3 polygon_point { x: 119.10928477986248 y: 5.9560202321121416 } polygon_point { x: 120.79222674947827 y: 7.036624843848422 } polygon_point { x: 118.09071522013757 y: 11.243979767887904 } polygon_point { x: 116.40777325052177 y: 10.163375156151623 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1044 position { x: 25 y: 9.2000000000000171 } theta: -1 velocity { x: -13.5 y: -0.25 } length: 5 width: 2 height: 3 polygon_point { x: 25.509284779862455 y: 6.5560202321121359 } polygon_point { x: 27.192226749478245 y: 7.6366248438484163 } polygon_point { x: 24.490715220137545 y: 11.843979767887898 } polygon_point { x: 22.807773250521755 y: 10.763375156151618 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1050 position { x: 61.800000000000068 y: -8.9999999999999716 } theta: -1 velocity { x: -13.75 y: -1.25 } length: 5 width: 2 height: 3 polygon_point { x: 62.309284779862516 y: -11.643979767887853 } polygon_point { x: 63.992226749478313 y: -10.563375156151572 } polygon_point { x: 61.290715220137621 y: -6.35602023211209 } polygon_point { x: 59.607773250521824 y: -7.4366248438483709 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1053 position { x: 95 y: -21.999999999999972 } theta: -1 velocity { x: -13.75 y: -0.75 } length: 5 width: 2 height: 3 polygon_point { x: 95.509284779862455 y: -24.643979767887853 } polygon_point { x: 97.192226749478252 y: -23.563375156151576 } polygon_point { x: 94.490715220137545 y: -19.35602023211209 } polygon_point { x: 92.807773250521748 y: -20.436624843848367 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1001 position { x: 84.200000000000045 y: 14.800000000000011 } theta: -1 velocity { x: -13.75 y: 0.25 } length: 5 width: 2 height: 3 polygon_point { x: 84.7092847798625 y: 12.15602023211213 } polygon_point { x: 86.3922267494783 y: 13.236624843848411 } polygon_point { x: 83.690715220137591 y: 17.443979767887893 } polygon_point { x: 82.0077732505218 y: 16.363375156151616 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1004 position { x: 132.60000000000002 y: -3.9999999999999716 } theta: -1 velocity { x: -13.75 y: 1.5 } length: 5 width: 2 height: 3 polygon_point { x: 133.10928477986246 y: -6.6439797678878527 } polygon_point { x: 134.79222674947826 y: -5.5633751561515723 } polygon_point { x: 132.09071522013758 y: -1.3560202321120904 } polygon_point { x: 130.40777325052179 y: -2.43662484384837 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1007 position { x: 3.8000000000000114 y: -7.9999999999999716 } theta: -1 velocity { x: -13.75 y: -1.75 } length: 5 width: 2 height: 3 polygon_point { x: 4.3092847798624643 y: -10.643979767887853 } polygon_point { x: 5.9922267494782577 y: -9.5633751561515723 } polygon_point { x: 3.2907152201375585 y: -5.35602023211209 } polygon_point { x: 1.6077732505217652 y: -6.4366248438483709 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1010 position { x: 63.800000000000068 y: -6.5999999999999943 } theta: -1 velocity { x: -13.75 y: -2 } length: 5 width: 2 height: 3 polygon_point { x: 64.309284779862523 y: -9.2439797678878755 } polygon_point { x: 65.99222674947832 y: -8.163375156151595 } polygon_point { x: 63.290715220137621 y: -3.9560202321121136 } polygon_point { x: 61.607773250521824 y: -5.0366248438483936 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1013 position { x: 5.6000000000000227 y: -4.3999999999999773 } theta: -1 velocity { x: -14.25 y: -0.25 } length: 5 width: 2 height: 3 polygon_point { x: 6.1092847798624756 y: -7.0439797678878584 } polygon_point { x: 7.7922267494782691 y: -5.963375156151578 } polygon_point { x: 5.09071522013757 y: -1.7560202321120961 } polygon_point { x: 3.4077732505217764 y: -2.8366248438483757 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1016 position { x: 24 y: -27.599999999999994 } theta: -1 velocity { x: 0 y: 9.5 } length: 5 width: 2 height: 3 polygon_point { x: 24.509284779862455 y: -30.243979767887875 } polygon_point { x: 26.192226749478245 y: -29.1633751561516 } polygon_point { x: 23.490715220137545 y: -24.956020232112113 } polygon_point { x: 21.807773250521755 y: -26.03662484384839 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1019 position { x: 225.40000000000009 y: -12.599999999999994 } theta: -1 velocity { x: -13.5 y: 0 } length: 5 width: 2 height: 3 polygon_point { x: 225.90928477986253 y: -15.243979767887875 } polygon_point { x: 227.59222674947833 y: -14.163375156151595 } polygon_point { x: 224.89071522013765 y: -9.9560202321121132 } polygon_point { x: 223.20777325052185 y: -11.036624843848394 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1022 position { x: 91 y: -2.1999999999999886 } theta: -1 velocity { x: -13.75 y: -0.25 } length: 5 width: 2 height: 3 polygon_point { x: 91.509284779862455 y: -4.84397976788787 } polygon_point { x: 93.192226749478252 y: -3.76337515615159 } polygon_point { x: 90.490715220137545 y: 0.44397976788789251 } polygon_point { x: 88.807773250521748 y: -0.636624843848387 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1025 position { x: 180.80000000000007 y: 18.200000000000017 } theta: -1 velocity { x: -13.75 y: 0.75 } length: 5 width: 2 height: 3 polygon_point { x: 181.30928477986251 y: 15.556020232112134 } polygon_point { x: 182.99222674947831 y: 16.636624843848413 } polygon_point { x: 180.29071522013763 y: 20.843979767887898 } polygon_point { x: 178.60777325052183 y: 19.763375156151621 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1028 position { x: 8.6000000000000227 y: -17.399999999999977 } theta: -1 velocity { x: -13.75 y: -1 } length: 5 width: 2 height: 3 polygon_point { x: 9.1092847798624756 y: -20.043979767887858 } polygon_point { x: 10.792226749478269 y: -18.963375156151582 } polygon_point { x: 8.09071522013757 y: -14.756020232112096 } polygon_point { x: 6.4077732505217764 y: -15.836624843848377 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1031 position { x: 63 y: -23.999999999999972 } theta: -1 velocity { x: -13.75 y: -0.5 } length: 5 width: 2 height: 3 polygon_point { x: 63.509284779862455 y: -26.643979767887853 } polygon_point { x: 65.192226749478252 y: -25.563375156151576 } polygon_point { x: 62.490715220137552 y: -21.35602023211209 } polygon_point { x: 60.807773250521755 y: -22.436624843848367 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1034 position { x: 197.60000000000002 y: 25.000000000000028 } theta: -1 velocity { x: -13.75 y: 0 } length: 5 width: 2 height: 3 polygon_point { x: 198.10928477986246 y: 22.356020232112147 } polygon_point { x: 199.79222674947826 y: 23.436624843848424 } polygon_point { x: 197.09071522013758 y: 27.64397976788791 } polygon_point { x: 195.40777325052179 y: 26.563375156151633 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1037 position { x: 29.600000000000023 y: 29.200000000000017 } theta: -1 velocity { x: -13.5 y: 0.25 } length: 5 width: 2 height: 3 polygon_point { x: 30.109284779862477 y: 26.556020232112136 } polygon_point { x: 31.792226749478267 y: 27.636624843848413 } polygon_point { x: 29.090715220137568 y: 31.843979767887898 } polygon_point { x: 27.407773250521778 y: 30.763375156151621 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1043 position { x: 120.80000000000007 y: -0.59999999999999432 } theta: -1 velocity { x: -13.75 y: 1.5 } length: 5 width: 2 height: 3 polygon_point { x: 121.30928477986252 y: -3.2439797678878755 } polygon_point { x: 122.99222674947832 y: -2.1633751561515959 } polygon_point { x: 120.29071522013761 y: 2.0439797678878868 } polygon_point { x: 118.60777325052182 y: 0.96337515615160729 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1049 position { x: 41.800000000000068 y: 9.8000000000000114 } theta: -1 velocity { x: -13.75 y: 0.25 } length: 5 width: 2 height: 3 polygon_point { x: 42.309284779862516 y: 7.15602023211213 } polygon_point { x: 43.992226749478313 y: 8.23662484384841 } polygon_point { x: 41.290715220137621 y: 12.443979767887893 } polygon_point { x: 39.607773250521824 y: 11.363375156151612 } type: VEHICLE confidence: 0.01 } perception_obstacle { id: 1052 position { x: 36.200000000000045 y: 10.600000000000023 } theta: -1 velocity { x: -13.5 y: 0.25 } length: 5 width: 2 height: 3 polygon_point { x: 36.709284779862493 y: 7.9560202321121416 } polygon_point { x: 38.39222674947829 y: 9.036624843848422 } polygon_point { x: 35.6907152201376 y: 13.243979767887904 } polygon_point { x: 34.0077732505218 y: 12.163375156151623 } type: VEHICLE confidence: 0.01 } header { timestamp_sec: 1520482621.3659558 module_name: "third_party_perception" sequence_num: 35441 } lane_marker { left_lane_marker { lane_type: DOTTED_YELLOW quality: 0.75 model_degree: 3 c0_position: 1.765625 c1_heading_angle: -0.01171875 c2_curvature: 0.00016308593799999743 c3_curvature_derivative: 6.1169266691875042e-06 view_range: 31.40234375 } right_lane_marker { lane_type: SOLID_YELLOW quality: 0.75 model_degree: 3 c0_position: -1.30078125 c1_heading_angle: -0.01171875 c2_curvature: 0.00016308593799999743 c3_curvature_derivative: 6.1169266691875042e-06 view_range: 58.58984375 } }
0
apollo_public_repos/apollo/modules/third_party_perception/testdata
apollo_public_repos/apollo/modules/third_party_perception/testdata/simple_fusion/1_conti_radar.pb.txt
header { timestamp_sec: 1520381229.4073982 module_name: "conti_radar" sequence_num: 689 } contiobs { header { timestamp_sec: 1520381229.4074028 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 0 longitude_dist: 76.600000000000023 lateral_dist: -3.5999999999999943 longitude_vel: -14 lateral_vel: 1 rcs: 5 dynprop: 2 longitude_dist_rms: 0.288 lateral_dist_rms: 0.478 longitude_vel_rms: 0.371 lateral_vel_rms: 0.794 probexist: 1 meas_state: 2 longitude_accel: -1.0600000000000005 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4074042 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 1 longitude_dist: 83.200000000000045 lateral_dist: 14.800000000000011 longitude_vel: -13.75 lateral_vel: 0.25 rcs: 8 dynprop: 2 longitude_dist_rms: 0.288 lateral_dist_rms: 0.616 longitude_vel_rms: 0.371 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -1.0299999999999994 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4074049 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 2 longitude_dist: 37.200000000000045 lateral_dist: -25.999999999999972 longitude_vel: -0.25 lateral_vel: 14.5 rcs: 8.5 dynprop: 4 longitude_dist_rms: 0.794 lateral_dist_rms: 1.023 longitude_vel_rms: 1.023 lateral_vel_rms: 1.317 probexist: 0.999 meas_state: 3 longitude_accel: 0 lateral_accel: 0 oritation_angle: 1.6000000000000227 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 5 width: 2 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4074056 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 3 longitude_dist: 192 lateral_dist: -19.399999999999977 longitude_vel: -14 lateral_vel: -4 rcs: 22 dynprop: 2 longitude_dist_rms: 0.616 lateral_dist_rms: 0.794 longitude_vel_rms: 0.478 lateral_vel_rms: 0.794 probexist: 1 meas_state: 2 longitude_accel: -1.0499999999999989 lateral_accel: 0 oritation_angle: -2.7999999999999829 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 0.4 width: 0.60000000000000009 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4074063 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 4 longitude_dist: 131.60000000000002 lateral_dist: -3.9999999999999716 longitude_vel: -14 lateral_vel: 1.5 rcs: 2 dynprop: 2 longitude_dist_rms: 0.616 lateral_dist_rms: 1.023 longitude_vel_rms: 0.616 lateral_vel_rms: 1.317 probexist: 0.999 meas_state: 2 longitude_accel: -1.1099999999999994 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4074073 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 5 longitude_dist: 167.40000000000009 lateral_dist: 11.400000000000006 longitude_vel: -14 lateral_vel: 1.75 rcs: 10 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.794 longitude_vel_rms: 0.478 lateral_vel_rms: 0.794 probexist: 0.999 meas_state: 2 longitude_accel: -1.2699999999999996 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.407408 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 6 longitude_dist: 96.800000000000068 lateral_dist: -0.39999999999997726 longitude_vel: -13.75 lateral_vel: -0.25 rcs: 10.5 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.478 longitude_vel_rms: 0.371 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -1.08 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.407409 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 7 longitude_dist: 2.8000000000000114 lateral_dist: -8.1999999999999886 longitude_vel: -14 lateral_vel: -0.75 rcs: -4.5 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.616 longitude_vel_rms: 0.794 lateral_vel_rms: 0.794 probexist: 0.999 meas_state: 2 longitude_accel: -1.1400000000000006 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4074097 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 8 longitude_dist: 107.60000000000002 lateral_dist: 0.80000000000001137 longitude_vel: -13.75 lateral_vel: -0.25 rcs: 6 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.616 longitude_vel_rms: 0.371 lateral_vel_rms: 0.794 probexist: 1 meas_state: 2 longitude_accel: -0.99000000000000021 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4074156 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 9 longitude_dist: 141.40000000000009 lateral_dist: -8.7999999999999829 longitude_vel: -14 lateral_vel: 0.5 rcs: -2.5 dynprop: 2 longitude_dist_rms: 0.616 lateral_dist_rms: 1.317 longitude_vel_rms: 0.794 lateral_vel_rms: 1.317 probexist: 0.99 meas_state: 3 longitude_accel: -1.1899999999999995 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.317 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4074166 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 10 longitude_dist: 62.600000000000023 lateral_dist: -6.7999999999999829 longitude_vel: -13.75 lateral_vel: -2 rcs: 4 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.616 longitude_vel_rms: 0.478 lateral_vel_rms: 1.317 probexist: 1 meas_state: 2 longitude_accel: -0.59999999999999964 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.317 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.4074175 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 11 longitude_dist: 96.200000000000045 lateral_dist: -3.5999999999999943 longitude_vel: -14 lateral_vel: 0.5 rcs: 15.5 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.478 longitude_vel_rms: 0.371 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -1.0999999999999996 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4074183 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 12 longitude_dist: 116 lateral_dist: 11.200000000000017 longitude_vel: 2.75 lateral_vel: 3.5 rcs: 15 dynprop: 4 longitude_dist_rms: 0.371 lateral_dist_rms: 0.616 longitude_vel_rms: 0.371 lateral_vel_rms: 0.794 probexist: 1 meas_state: 2 longitude_accel: -1.129999999999999 lateral_accel: 0 oritation_angle: 0.80000000000001137 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.407419 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 13 longitude_dist: 4.4000000000000341 lateral_dist: -4.5999999999999943 longitude_vel: -14.5 lateral_vel: -0.25 rcs: -6 dynprop: 2 longitude_dist_rms: 0.224 lateral_dist_rms: 0.288 longitude_vel_rms: 0.478 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -2.25 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4076686 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 14 longitude_dist: 2.8000000000000114 lateral_dist: -10.199999999999989 longitude_vel: -14 lateral_vel: 0 rcs: -3.5 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.616 longitude_vel_rms: 0.794 lateral_vel_rms: 0.616 probexist: 0.999 meas_state: 3 longitude_accel: -1.2400000000000002 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.317 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.4079216 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 15 longitude_dist: 245.60000000000002 lateral_dist: 21.400000000000006 longitude_vel: -13.75 lateral_vel: 0 rcs: 4 dynprop: 2 longitude_dist_rms: 1.023 lateral_dist_rms: 2.187 longitude_vel_rms: 1.317 lateral_vel_rms: 2.187 probexist: 0.75 meas_state: 3 longitude_accel: 0 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 4.676 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4081764 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 16 longitude_dist: 24 lateral_dist: -26.799999999999983 longitude_vel: 0 lateral_vel: 9.5 rcs: 12.5 dynprop: 4 longitude_dist_rms: 1.023 lateral_dist_rms: 1.023 longitude_vel_rms: 1.023 lateral_vel_rms: 1.023 probexist: 0.75 meas_state: 3 longitude_accel: 0 lateral_accel: 0 oritation_angle: 1.6000000000000227 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 1 width: 1 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4084597 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 17 longitude_dist: 13.600000000000023 lateral_dist: -5.1999999999999886 longitude_vel: -13.75 lateral_vel: 0.5 rcs: -8.5 dynprop: 2 longitude_dist_rms: 0.288 lateral_dist_rms: 0.371 longitude_vel_rms: 0.288 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -0.16000000000000014 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 0.794 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.4087553 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 18 longitude_dist: 44.800000000000068 lateral_dist: -33.799999999999983 longitude_vel: -13.75 lateral_vel: 0 rcs: 7 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.616 longitude_vel_rms: 0.478 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -1.0399999999999991 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 0.60000000000000009 width: 0.2 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4089549 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 19 longitude_dist: 224.20000000000005 lateral_dist: -12.599999999999994 longitude_vel: -13.5 lateral_vel: 0 rcs: 3 dynprop: 2 longitude_dist_rms: 1.317 lateral_dist_rms: 2.187 longitude_vel_rms: 2.187 lateral_vel_rms: 2.187 probexist: 0.25 meas_state: 3 longitude_accel: 0 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 4.676 lateral_accel_rms: 0.005 oritation_angle_rms: 0.669 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4092133 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 20 longitude_dist: 208.40000000000009 lateral_dist: -7.3999999999999773 longitude_vel: -13.75 lateral_vel: -0.25 rcs: 8.5 dynprop: 2 longitude_dist_rms: 1.023 lateral_dist_rms: 1.317 longitude_vel_rms: 1.697 lateral_vel_rms: 2.187 probexist: 0.5 meas_state: 3 longitude_accel: -0.91000000000000014 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 2.817 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4094675 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 21 longitude_dist: 21.399999999999977 lateral_dist: -3.9999999999999716 longitude_vel: -14 lateral_vel: 0 rcs: 11 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.478 longitude_vel_rms: 0.371 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -0.76999999999999957 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.409754 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 22 longitude_dist: 89.800000000000068 lateral_dist: -1.9999999999999716 longitude_vel: -14 lateral_vel: 0 rcs: 12.5 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.478 longitude_vel_rms: 0.371 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -1.1099999999999994 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4099884 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 23 longitude_dist: 166.20000000000005 lateral_dist: 0.80000000000001137 longitude_vel: -14 lateral_vel: 1 rcs: 10 dynprop: 2 longitude_dist_rms: 0.616 lateral_dist_rms: 1.317 longitude_vel_rms: 0.794 lateral_vel_rms: 1.317 probexist: 0.99 meas_state: 3 longitude_accel: -1.1999999999999993 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.317 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4102688 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 24 longitude_dist: 58.399999999999977 lateral_dist: -3.5999999999999943 longitude_vel: -14 lateral_vel: 1 rcs: 8 dynprop: 2 longitude_dist_rms: 0.288 lateral_dist_rms: 0.478 longitude_vel_rms: 0.371 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -0.78999999999999915 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.410497 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 25 longitude_dist: 179.80000000000007 lateral_dist: 18.600000000000023 longitude_vel: -14 lateral_vel: 1 rcs: 13 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.794 longitude_vel_rms: 0.478 lateral_vel_rms: 1.023 probexist: 1 meas_state: 2 longitude_accel: -1.1400000000000006 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4107494 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 26 longitude_dist: 216 lateral_dist: 7.4000000000000057 longitude_vel: -14 lateral_vel: 2.75 rcs: 10.5 dynprop: 2 longitude_dist_rms: 0.616 lateral_dist_rms: 1.023 longitude_vel_rms: 0.616 lateral_vel_rms: 1.023 probexist: 0.75 meas_state: 2 longitude_accel: -1.2899999999999991 lateral_accel: 0 oritation_angle: 2.8000000000000114 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4110062 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 27 longitude_dist: 26.800000000000068 lateral_dist: -4.3999999999999773 longitude_vel: -14 lateral_vel: 0.75 rcs: 5 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.478 longitude_vel_rms: 0.478 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -0.82000000000000028 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.4113131 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 28 longitude_dist: 7.6000000000000227 lateral_dist: -17.399999999999977 longitude_vel: -13.75 lateral_vel: -0.5 rcs: -2 dynprop: 2 longitude_dist_rms: 0.794 lateral_dist_rms: 1.317 longitude_vel_rms: 1.317 lateral_vel_rms: 1.317 probexist: 0.999 meas_state: 3 longitude_accel: -0.91000000000000014 lateral_accel: 0 oritation_angle: -2.7999999999999829 longitude_accel_rms: 1.697 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.4115584 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 29 longitude_dist: 30.399999999999977 lateral_dist: -6.3999999999999773 longitude_vel: -13.75 lateral_vel: -0.25 rcs: -4.5 dynprop: 2 longitude_dist_rms: 0.794 lateral_dist_rms: 0.794 longitude_vel_rms: 1.317 lateral_vel_rms: 2.187 probexist: 0.9 meas_state: 2 longitude_accel: -0.42999999999999972 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 3.63 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.4120359 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 30 longitude_dist: 49.800000000000068 lateral_dist: 30.000000000000028 longitude_vel: -13.75 lateral_vel: 0 rcs: 5.5 dynprop: 2 longitude_dist_rms: 0.616 lateral_dist_rms: 0.794 longitude_vel_rms: 0.616 lateral_vel_rms: 1.317 probexist: 0.75 meas_state: 3 longitude_accel: -1.17 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.317 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4121079 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 31 longitude_dist: 62 lateral_dist: -23.999999999999972 longitude_vel: -13.75 lateral_vel: -0.5 rcs: -1 dynprop: 2 longitude_dist_rms: 0.794 lateral_dist_rms: 1.023 longitude_vel_rms: 1.317 lateral_vel_rms: 1.697 probexist: 0.75 meas_state: 2 longitude_accel: -0.85999999999999943 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 2.187 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.412302 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 32 longitude_dist: 37.399999999999977 lateral_dist: -34.199999999999989 longitude_vel: -13.75 lateral_vel: -0.75 rcs: 18 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.616 longitude_vel_rms: 0.478 lateral_vel_rms: 1.023 probexist: 1 meas_state: 2 longitude_accel: -1.0399999999999991 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.41256 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 33 longitude_dist: 59 lateral_dist: -30.799999999999983 longitude_vel: -13.75 lateral_vel: 0.25 rcs: 0 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.616 longitude_vel_rms: 0.478 lateral_vel_rms: 0.794 probexist: 0.75 meas_state: 2 longitude_accel: -1.1199999999999992 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4128692 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 34 longitude_dist: 196.60000000000002 lateral_dist: 25.000000000000028 longitude_vel: -14 lateral_vel: 0 rcs: 15 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.794 longitude_vel_rms: 0.478 lateral_vel_rms: 0.794 probexist: 1 meas_state: 2 longitude_accel: -1.1199999999999992 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4130781 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 35 longitude_dist: 11.800000000000011 lateral_dist: 11.200000000000017 longitude_vel: -13.75 lateral_vel: 0.5 rcs: -2 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.478 longitude_vel_rms: 0.478 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -0.92999999999999972 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.413378 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 36 longitude_dist: 211.40000000000009 lateral_dist: 22.800000000000011 longitude_vel: -14 lateral_vel: 0 rcs: 16.5 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 1.023 longitude_vel_rms: 0.478 lateral_vel_rms: 1.023 probexist: 1 meas_state: 2 longitude_accel: -1.1500000000000004 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4136341 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 37 longitude_dist: 28.600000000000023 lateral_dist: 29.200000000000017 longitude_vel: -13.75 lateral_vel: 0.25 rcs: 8.5 dynprop: 2 longitude_dist_rms: 0.616 lateral_dist_rms: 0.616 longitude_vel_rms: 0.616 lateral_vel_rms: 0.478 probexist: 1 meas_state: 2 longitude_accel: 0 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4138653 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 38 longitude_dist: 117.60000000000002 lateral_dist: 8.6000000000000227 longitude_vel: -14 lateral_vel: 1 rcs: 13.5 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.616 longitude_vel_rms: 0.478 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -1.08 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 0.2 width: 0.2 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4141726 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 39 longitude_dist: 43.600000000000023 lateral_dist: -40.799999999999983 longitude_vel: 0 lateral_vel: 14.5 rcs: 13.5 dynprop: 4 longitude_dist_rms: 1.023 lateral_dist_rms: 1.023 longitude_vel_rms: 1.317 lateral_vel_rms: 1.317 probexist: 0.5 meas_state: 3 longitude_accel: 0 lateral_accel: 0 oritation_angle: 1.6000000000000227 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 1 width: 1 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4143703 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 40 longitude_dist: 86 lateral_dist: -23.599999999999994 longitude_vel: -13.75 lateral_vel: 0 rcs: 3.5 dynprop: 2 longitude_dist_rms: 0.794 lateral_dist_rms: 1.023 longitude_vel_rms: 1.317 lateral_vel_rms: 2.187 probexist: 0.75 meas_state: 2 longitude_accel: -0.16999999999999993 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 4.676 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4152904 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 41 longitude_dist: 192.20000000000005 lateral_dist: -29.599999999999994 longitude_vel: -26.25 lateral_vel: 0 rcs: 7 dynprop: 2 longitude_dist_rms: 1.023 lateral_dist_rms: 2.187 longitude_vel_rms: 0.616 lateral_vel_rms: 2.187 probexist: 0.75 meas_state: 1 longitude_accel: 0 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 4.676 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4153113 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 42 longitude_dist: 57 lateral_dist: 11.800000000000011 longitude_vel: -13.75 lateral_vel: 0.5 rcs: 13.5 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.616 longitude_vel_rms: 0.478 lateral_vel_rms: 0.794 probexist: 1 meas_state: 2 longitude_accel: -1.1199999999999992 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4153125 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 43 longitude_dist: 119.80000000000007 lateral_dist: -0.799999999999983 longitude_vel: -14 lateral_vel: 1.25 rcs: 12.5 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.616 longitude_vel_rms: 0.371 lateral_vel_rms: 0.794 probexist: 1 meas_state: 2 longitude_accel: -1.08 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4153929 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 44 longitude_dist: 24 lateral_dist: 9.2000000000000171 longitude_vel: -13.75 lateral_vel: -0.25 rcs: -3.5 dynprop: 2 longitude_dist_rms: 0.794 lateral_dist_rms: 1.023 longitude_vel_rms: 1.317 lateral_vel_rms: 1.697 probexist: 0.75 meas_state: 2 longitude_accel: -1.0399999999999991 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 2.187 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.4156625 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 45 longitude_dist: 203.20000000000005 lateral_dist: -4.7999999999999829 longitude_vel: -14 lateral_vel: 0.75 rcs: 15 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.616 longitude_vel_rms: 0.478 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -1.1199999999999992 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4159331 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 46 longitude_dist: -1.5999999999999659 lateral_dist: 10.800000000000011 longitude_vel: -13.25 lateral_vel: 0 rcs: 0.5 dynprop: 2 longitude_dist_rms: 0.616 lateral_dist_rms: 0.616 longitude_vel_rms: 1.023 lateral_vel_rms: 0.794 probexist: 0.999 meas_state: 3 longitude_accel: -0.72000000000000064 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.317 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.41663 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 47 longitude_dist: 32.200000000000045 lateral_dist: -31.799999999999983 longitude_vel: -13.75 lateral_vel: -0.5 rcs: 7.5 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.616 longitude_vel_rms: 0.478 lateral_vel_rms: 0.794 probexist: 1 meas_state: 2 longitude_accel: -1.0299999999999994 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 1 width: 0.2 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4166362 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 48 longitude_dist: 71.399999999999977 lateral_dist: -58.199999999999989 longitude_vel: 0 lateral_vel: 19 rcs: 9 dynprop: 4 longitude_dist_rms: 1.023 lateral_dist_rms: 1.023 longitude_vel_rms: 1.317 lateral_vel_rms: 2.187 probexist: 0.75 meas_state: 3 longitude_accel: 0 lateral_accel: 0 oritation_angle: 1.6000000000000227 longitude_accel_rms: 4.676 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 1 width: 1 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4167986 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 49 longitude_dist: 40.800000000000068 lateral_dist: 9.6000000000000227 longitude_vel: -13.75 lateral_vel: 0 rcs: -2 dynprop: 2 longitude_dist_rms: 0.794 lateral_dist_rms: 1.023 longitude_vel_rms: 1.697 lateral_vel_rms: 2.187 probexist: 0.75 meas_state: 2 longitude_accel: -0.41999999999999993 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 3.63 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.4170556 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 50 longitude_dist: 60.600000000000023 lateral_dist: -8.3999999999999773 longitude_vel: -14 lateral_vel: 0 rcs: 1 dynprop: 2 longitude_dist_rms: 0.616 lateral_dist_rms: 0.794 longitude_vel_rms: 0.478 lateral_vel_rms: 1.317 probexist: 1 meas_state: 2 longitude_accel: -1.0899999999999999 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 0.4 width: 0.4 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4172163 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 51 longitude_dist: 63.200000000000045 lateral_dist: 30.600000000000023 longitude_vel: -13.75 lateral_vel: -1 rcs: 4.5 dynprop: 2 longitude_dist_rms: 0.616 lateral_dist_rms: 1.317 longitude_vel_rms: 1.023 lateral_vel_rms: 1.317 probexist: 0.99 meas_state: 3 longitude_accel: -1.0499999999999989 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.317 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.417505 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 52 longitude_dist: 35 lateral_dist: 10.600000000000023 longitude_vel: -13.75 lateral_vel: 0.5 rcs: 6.5 dynprop: 2 longitude_dist_rms: 0.288 lateral_dist_rms: 0.478 longitude_vel_rms: 0.371 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -0.91999999999999993 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4177046 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 53 longitude_dist: 94 lateral_dist: -21.999999999999972 longitude_vel: -13.75 lateral_vel: -0.75 rcs: 4.5 dynprop: 2 longitude_dist_rms: 0.794 lateral_dist_rms: 1.317 longitude_vel_rms: 1.317 lateral_vel_rms: 1.697 probexist: 0.5 meas_state: 3 longitude_accel: -1.0999999999999996 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 2.187 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4183695 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 54 longitude_dist: 112.39999999999998 lateral_dist: 14.000000000000028 longitude_vel: 7.25 lateral_vel: 4.25 rcs: 12 dynprop: 0 longitude_dist_rms: 0.371 lateral_dist_rms: 0.616 longitude_vel_rms: 0.371 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -0.79999999999999893 lateral_accel: 0 oritation_angle: 0.40000000000000568 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4183762 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 55 longitude_dist: 58.800000000000068 lateral_dist: -36.599999999999994 longitude_vel: -13.75 lateral_vel: -0.5 rcs: 1 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.616 longitude_vel_rms: 0.478 lateral_vel_rms: 0.794 probexist: 0.99 meas_state: 2 longitude_accel: -1.0299999999999994 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4186356 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 56 longitude_dist: 157.20000000000005 lateral_dist: 10.000000000000028 longitude_vel: -14 lateral_vel: 0.5 rcs: 18.5 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.616 longitude_vel_rms: 0.478 lateral_vel_rms: 0.794 probexist: 1 meas_state: 2 longitude_accel: -1.1500000000000004 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4188435 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 57 longitude_dist: 17.399999999999977 lateral_dist: 10.000000000000028 longitude_vel: -13.75 lateral_vel: -0.25 rcs: 5.5 dynprop: 2 longitude_dist_rms: 0.288 lateral_dist_rms: 0.478 longitude_vel_rms: 0.371 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -0.91000000000000014 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4189823 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 58 longitude_dist: 54.600000000000023 lateral_dist: -2.9999999999999716 longitude_vel: -14 lateral_vel: 4 rcs: 8.5 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.616 longitude_vel_rms: 0.478 lateral_vel_rms: 1.023 probexist: 1 meas_state: 2 longitude_accel: -1.17 lateral_accel: 0 oritation_angle: 2.8000000000000114 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4192731 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 59 longitude_dist: 5.8000000000000114 lateral_dist: 11.200000000000017 longitude_vel: -13.75 lateral_vel: 0.75 rcs: -1 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.616 longitude_vel_rms: 0.794 lateral_vel_rms: 0.794 probexist: 0.999 meas_state: 3 longitude_accel: -0.97000000000000064 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.4196296 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 60 longitude_dist: 91 lateral_dist: -5.3999999999999773 longitude_vel: -14 lateral_vel: -0.5 rcs: 8.5 dynprop: 2 longitude_dist_rms: 0.794 lateral_dist_rms: 1.023 longitude_vel_rms: 1.023 lateral_vel_rms: 2.187 probexist: 0.9 meas_state: 2 longitude_accel: -1.0099999999999998 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 2.817 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4197581 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 61 longitude_dist: 216.80000000000007 lateral_dist: 3.4000000000000057 longitude_vel: -14 lateral_vel: 0 rcs: 14.5 dynprop: 2 longitude_dist_rms: 1.023 lateral_dist_rms: 1.023 longitude_vel_rms: 0.616 lateral_vel_rms: 2.187 probexist: 0.75 meas_state: 1 longitude_accel: 0 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 4.676 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4200118 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 62 longitude_dist: 43 lateral_dist: 30.000000000000028 longitude_vel: -13.75 lateral_vel: 0.5 rcs: 7.5 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.616 longitude_vel_rms: 0.478 lateral_vel_rms: 0.616 probexist: 0.75 meas_state: 2 longitude_accel: -1.0999999999999996 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4202714 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 63 longitude_dist: 39 lateral_dist: -5.5999999999999943 longitude_vel: -14 lateral_vel: 0.25 rcs: 2 dynprop: 2 longitude_dist_rms: 0.371 lateral_dist_rms: 0.478 longitude_vel_rms: 0.371 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -1.129999999999999 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.4205225 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 64 longitude_dist: 6.2000000000000455 lateral_dist: 9.0000000000000284 longitude_vel: -13.5 lateral_vel: 0.5 rcs: -7.5 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.616 longitude_vel_rms: 0.616 lateral_vel_rms: 0.794 probexist: 0.999 meas_state: 3 longitude_accel: -0.23000000000000043 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.4208286 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 65 longitude_dist: 13.600000000000023 lateral_dist: 28.800000000000011 longitude_vel: -13 lateral_vel: 0 rcs: 6.5 dynprop: 2 longitude_dist_rms: 0.794 lateral_dist_rms: 0.616 longitude_vel_rms: 0.794 lateral_vel_rms: 0.616 probexist: 0.999 meas_state: 3 longitude_accel: -0.11999999999999922 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.317 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4210615 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 66 longitude_dist: 103 lateral_dist: -21.799999999999983 longitude_vel: -14 lateral_vel: 0.25 rcs: 15.5 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.616 longitude_vel_rms: 0.478 lateral_vel_rms: 1.023 probexist: 1 meas_state: 2 longitude_accel: -1.129999999999999 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.234 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.421375 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 67 longitude_dist: 33.399999999999977 lateral_dist: 29.400000000000006 longitude_vel: -13.75 lateral_vel: 0.25 rcs: 6.5 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.616 longitude_vel_rms: 0.616 lateral_vel_rms: 0.616 probexist: 1 meas_state: 2 longitude_accel: -0.69999999999999929 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.165 length: 1.6 width: 1.6 obstacle_class: 4 } contiobs { header { timestamp_sec: 1520381229.4216049 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 68 longitude_dist: 50.800000000000068 lateral_dist: 11.200000000000017 longitude_vel: -13.75 lateral_vel: -0.5 rcs: 3.5 dynprop: 2 longitude_dist_rms: 0.616 lateral_dist_rms: 0.794 longitude_vel_rms: 0.478 lateral_vel_rms: 1.697 probexist: 0.75 meas_state: 2 longitude_accel: -1.1400000000000006 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.317 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4218309 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 69 longitude_dist: 16.600000000000023 lateral_dist: -5.3999999999999773 longitude_vel: -13.75 lateral_vel: 0 rcs: -1.5 dynprop: 2 longitude_dist_rms: 0.794 lateral_dist_rms: 0.794 longitude_vel_rms: 0.616 lateral_vel_rms: 2.187 probexist: 0.75 meas_state: 1 longitude_accel: 0 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 4.676 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4220691 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 70 longitude_dist: 53.600000000000023 lateral_dist: 30.200000000000017 longitude_vel: -13.75 lateral_vel: -0.25 rcs: 0.5 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 1.023 longitude_vel_rms: 0.794 lateral_vel_rms: 1.317 probexist: 0.75 meas_state: 3 longitude_accel: -0.99000000000000021 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.317 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4223826 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 71 longitude_dist: 85 lateral_dist: -0.59999999999999432 longitude_vel: -14 lateral_vel: -1.25 rcs: 1.5 dynprop: 2 longitude_dist_rms: 0.794 lateral_dist_rms: 1.023 longitude_vel_rms: 1.023 lateral_vel_rms: 1.697 probexist: 0.75 meas_state: 2 longitude_accel: -1.17 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.697 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 4.4 width: 1.8 obstacle_class: 1 } contiobs { header { timestamp_sec: 1520381229.4225767 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 72 longitude_dist: 70.200000000000045 lateral_dist: 12.800000000000011 longitude_vel: -13.75 lateral_vel: 0 rcs: 2 dynprop: 2 longitude_dist_rms: 0.478 lateral_dist_rms: 0.794 longitude_vel_rms: 0.478 lateral_vel_rms: 1.317 probexist: 0.75 meas_state: 2 longitude_accel: -1.0899999999999999 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 0.8 width: 0.4 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.422828 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 73 longitude_dist: 107.20000000000005 lateral_dist: 19.600000000000023 longitude_vel: -13.75 lateral_vel: -0.75 rcs: 4 dynprop: 2 longitude_dist_rms: 0.616 lateral_dist_rms: 1.023 longitude_vel_rms: 0.478 lateral_vel_rms: 1.317 probexist: 0.75 meas_state: 2 longitude_accel: -1.129999999999999 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 1.023 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4230931 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 74 longitude_dist: 44.200000000000045 lateral_dist: -7.9999999999999716 longitude_vel: -14 lateral_vel: 0.5 rcs: -5 dynprop: 2 longitude_dist_rms: 0.616 lateral_dist_rms: 1.023 longitude_vel_rms: 0.794 lateral_vel_rms: 1.317 probexist: 0.999 meas_state: 2 longitude_accel: -1.1199999999999992 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 1.317 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 0.2 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4233356 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 75 longitude_dist: 96.200000000000045 lateral_dist: -22.599999999999994 longitude_vel: -14 lateral_vel: -0.25 rcs: 5.5 dynprop: 2 longitude_dist_rms: 0.794 lateral_dist_rms: 1.317 longitude_vel_rms: 1.317 lateral_vel_rms: 1.697 probexist: 0.5 meas_state: 3 longitude_accel: -1 lateral_accel: 0 oritation_angle: -3.1999999999999886 longitude_accel_rms: 2.817 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4236133 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 76 longitude_dist: 26 lateral_dist: -30.599999999999994 longitude_vel: 0 lateral_vel: 10.5 rcs: 7.5 dynprop: 4 longitude_dist_rms: 1.023 lateral_dist_rms: 1.317 longitude_vel_rms: 1.317 lateral_vel_rms: 2.187 probexist: 0.25 meas_state: 3 longitude_accel: 0 lateral_accel: 0 oritation_angle: 1.6000000000000227 longitude_accel_rms: 2.187 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 1 width: 1 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4239194 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 77 longitude_dist: 34.200000000000045 lateral_dist: -29.799999999999983 longitude_vel: 0 lateral_vel: 13.5 rcs: 28 dynprop: 4 longitude_dist_rms: 0.794 lateral_dist_rms: 1.023 longitude_vel_rms: 1.317 lateral_vel_rms: 1.317 probexist: 0.75 meas_state: 3 longitude_accel: 0 lateral_accel: 0 oritation_angle: 1.6000000000000227 longitude_accel_rms: 1.317 lateral_accel_rms: 0.005 oritation_angle_rms: 0.332 length: 1 width: 1 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4241116 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 78 longitude_dist: 74.800000000000068 lateral_dist: 12.600000000000023 longitude_vel: -13.5 lateral_vel: 0 rcs: 2.5 dynprop: 2 longitude_dist_rms: 1.023 lateral_dist_rms: 1.317 longitude_vel_rms: 2.187 lateral_vel_rms: 2.187 probexist: 0.25 meas_state: 3 longitude_accel: 0 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 4.676 lateral_accel_rms: 0.005 oritation_angle_rms: 0.669 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4243667 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 79 longitude_dist: 223.80000000000007 lateral_dist: 25.200000000000017 longitude_vel: -13.75 lateral_vel: 0 rcs: 7 dynprop: 2 longitude_dist_rms: 1.023 lateral_dist_rms: 2.187 longitude_vel_rms: 2.187 lateral_vel_rms: 2.187 probexist: 0.5 meas_state: 3 longitude_accel: 0 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 4.676 lateral_accel_rms: 0.005 oritation_angle_rms: 0.669 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4246397 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 80 longitude_dist: 238.20000000000005 lateral_dist: 5.2000000000000171 longitude_vel: -13.75 lateral_vel: 0 rcs: 4 dynprop: 2 longitude_dist_rms: 1.023 lateral_dist_rms: 2.187 longitude_vel_rms: 2.187 lateral_vel_rms: 2.187 probexist: 0.5 meas_state: 3 longitude_accel: 0 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 4.676 lateral_accel_rms: 0.005 oritation_angle_rms: 0.669 length: 0 width: 0 obstacle_class: 0 } contiobs { header { timestamp_sec: 1520381229.4249284 module_name: "conti_radar" sequence_num: 689 } clusterortrack: false obstacle_id: 81 longitude_dist: 31.600000000000023 lateral_dist: -9.1999999999999886 longitude_vel: -13.75 lateral_vel: 0 rcs: 2.5 dynprop: 2 longitude_dist_rms: 0.794 lateral_dist_rms: 0.794 longitude_vel_rms: 0.616 lateral_vel_rms: 2.187 probexist: 0.75 meas_state: 1 longitude_accel: 0 lateral_accel: 0 oritation_angle: 3.2000000000000171 longitude_accel_rms: 4.676 lateral_accel_rms: 0.005 oritation_angle_rms: 0.471 length: 0 width: 0 obstacle_class: 0 } object_list_status { nof_objects: 82 meas_counter: 28432 interface_version: 0 }
0
apollo_public_repos/apollo/modules/third_party_perception/testdata
apollo_public_repos/apollo/modules/third_party_perception/testdata/simple_fusion/1_mobileye.pb.txt
header { timestamp_sec: 1520381229.531209 module_name: "mobileye" sequence_num: 641 } aftermarket_669 { lane_conf_left: -1 ldw_availability_left: false lane_type_left: 0 distance_to_lane_l: -1.78 lane_conf_right: -1 ldw_availability_right: false lane_type_right: 1 distance_to_lane_r: 1.3 } details_737 { lane_curvature: 0.000192 lane_heading: -0.0135 ca_construction_area: false right_ldw_availability: true left_ldw_availability: true reserved_1: false yaw_angle: 31.9990234375 pitch_angle: 0.05572484544 } details_738 { num_obstacles: 1 timestamp: 28 application_version: 0 active_version_number_section: 2 left_close_rang_cut_in: false right_close_rang_cut_in: false go: 15 protocol_version: 3 close_car: false failsafe: 0 reserved_10: 0 } details_739 { obstacle_id: 5 obstacle_pos_x: 67.125 reseved_2: 0 obstacle_pos_y: 9.125 blinker_info: 0 cut_in_and_out: 0 obstacle_rel_vel_x: -1.625 obstacle_type: 0 reserved_3: false obstacle_status: 3 obstacle_brake_lights: false reserved_4: 0 obstacle_valid: 2 } details_73a { obstacle_length: 31.5 obstacle_width: 1.35 obstacle_age: 61 obstacle_lane: 2 cipv_flag: false reserved_5: false radar_pos_x: 255.9375 radar_vel_x: -128 radar_match_confidence: 0 reserved_6: false matched_radar_id: 127 reserved_7: false } details_73b { obstacle_angle_rate: -19.41 obstacle_scale_change: -0.0182 object_accel_x: -0.57 reserved_8: 0 obstacle_replaced: false reserved_9: 0 obstacle_angle: -7.78 } lka_766 { lane_type: 0 quality: 3 model_degree: 3 position: -1.77734375 curvature: -0.0001855468755000006 curvature_derivative: -7.0370733729170024e-06 width_left_marking: 0.1 } lka_767 { heading_angle: 0.013671875 view_range: 30.4453125 view_range_availability: true } lka_768 { lane_type: 1 quality: 3 model_degree: 3 position: 1.30859375 curvature: -0.0001855468755000006 curvature_derivative: -7.0370733729170024e-06 width_right_marking: 0.13 } lka_769 { heading_angle: 0.013671875 view_range: 46.1015625 view_range_availability: true } reference_76a { ref_point_1_position: -0.0081919999999939819 ref_point_1_distance: 0 ref_point_1_validity: false ref_point_2_position: -127.996094 ref_point_2_distance: 0 ref_point_2_validity: false } num_76b { num_of_next_lane_mark_reported: 2 } next_76c { lane_type: 1 quality: 0 model_degree: 3 position: -4.40625 curvature: -4.9999587803384316e-13 curvature_derivative: 9.4949005255418051e-16 lane_mark_width: 0 } next_76c { lane_type: 1 quality: 0 model_degree: 3 position: 2.55078125 curvature: -4.9999587803384316e-13 curvature_derivative: 9.4949005255418051e-16 lane_mark_width: 0 } next_76d { heading_angle: -0.001953125 view_range: 0 view_range_availability: true } next_76d { heading_angle: 0.009765625 view_range: 0 view_range_availability: true }
0
apollo_public_repos/apollo/modules/third_party_perception/testdata
apollo_public_repos/apollo/modules/third_party_perception/testdata/simple_fusion/1_localization.pb.txt
header { timestamp_sec: 1520381229.5445321 module_name: "localization" sequence_num: 6483 } pose { position { x: 587252.205154835 y: 4141518.553248974 z: -31.249301665462554 } orientation { qx: 0.017207722113691738 qy: 0.0084583018348819757 qz: -0.78496797434882637 qw: 0.619239558391119 } linear_velocity { x: 13.665269032972535 y: -3.492169250451866 z: 0.055830427202965494 } linear_acceleration { x: 1.2508588125809506 y: 0.098219872135130448 z: -0.55928357841802534 } angular_velocity { x: -0.011706170607563599 y: -0.00050808780545420014 z: 0.0039424764548820022 } heading: -0.23510918482010634 linear_acceleration_vrf { x: -0.36530500491569606 y: 1.1890351878088341 z: -0.5829584967368544 } angular_velocity_vrf { x: 0.0030675899781269947 y: -0.011233731459512918 z: 0.0041507678001040721 } euler_angles { x: 0.0375004499822374 y: -0.0080324987469275744 z: -0.23510918482010582 } } measurement_time: 1520381229.52
0
apollo_public_repos/apollo/modules/third_party_perception/testdata
apollo_public_repos/apollo/modules/third_party_perception/testdata/mobileye_obstacles/1_perception_obstacles.pb.txt
perception_obstacle { id: 5 position { x: 59.57345466233091 y: -10.946227927702031 } theta: -1 velocity { x: -4.1535739763613249 y: 6.4688081957107046 } length: 5 width: 1.6 height: 3 polygon_point { x: 60.25103363915494 y: -13.482147234416283 } polygon_point { x: 61.597387214847572 y: -12.617663545027261 } polygon_point { x: 58.89587568550688 y: -8.4103086209877791 } polygon_point { x: 57.549522109814248 y: -9.2747923103768013 } type: VEHICLE confidence: 0.5 } header { timestamp_sec: 1520552697.5661659 module_name: "third_party_perception" sequence_num: 21973 } lane_marker { left_lane_marker { lane_type: DOTTED_YELLOW quality: 0.5 model_degree: 3 c0_position: 1.7578125 c1_heading_angle: -0.0400390625 c2_curvature: -0.0017343749995000005 c3_curvature_derivative: 6.01410865780345e-05 view_range: 25.76953125 } right_lane_marker { lane_type: SOLID_YELLOW quality: 0.5 model_degree: 3 c0_position: -1.21875 c1_heading_angle: -0.06640625 c2_curvature: 0.00016601562549999754 c3_curvature_derivative: -5.7667493830275e-06 view_range: 28.62109375 } }
0
apollo_public_repos/apollo/modules/third_party_perception/testdata
apollo_public_repos/apollo/modules/third_party_perception/testdata/mobileye_obstacles/1_mobileye.pb.txt
header { timestamp_sec: 1520552697.5361128 module_name: "mobileye" sequence_num: 22097 } aftermarket_669 { lane_conf_left: -2 ldw_availability_left: false lane_type_left: 0 distance_to_lane_l: -1.76 lane_conf_right: -2 ldw_availability_right: false lane_type_right: 1 distance_to_lane_r: 1.22 } details_737 { lane_curvature: -5.2e-05 lane_heading: -0.0635 ca_construction_area: false right_ldw_availability: true left_ldw_availability: true reserved_1: false yaw_angle: 31.9990234375 pitch_angle: -0.05693219166 } details_738 { num_obstacles: 1 timestamp: 120 application_version: 0 active_version_number_section: 2 left_close_rang_cut_in: false right_close_rang_cut_in: false go: 15 protocol_version: 3 close_car: false failsafe: 0 reserved_10: 0 } details_739 { obstacle_id: 5 obstacle_pos_x: 53.5625 reseved_2: 0 obstacle_pos_y: 1 blinker_info: 0 cut_in_and_out: 0 obstacle_rel_vel_x: -7.6875 obstacle_type: 0 reserved_3: false obstacle_status: 1 obstacle_brake_lights: false reserved_4: 0 obstacle_valid: 2 } details_73a { obstacle_length: 31.5 obstacle_width: 1.6 obstacle_age: 30 obstacle_lane: 2 cipv_flag: false reserved_5: false radar_pos_x: 255.9375 radar_vel_x: -128 radar_match_confidence: 0 reserved_6: false matched_radar_id: 127 reserved_7: false } details_73b { obstacle_angle_rate: -33.65 obstacle_scale_change: 0.14120000000000002 object_accel_x: -0.3 reserved_8: 0 obstacle_replaced: false reserved_9: 0 obstacle_angle: -1.09 } lka_766 { lane_type: 0 quality: 2 model_degree: 3 position: -1.7578125 curvature: 0.0017343749995000005 curvature_derivative: -6.01410865780345e-05 width_left_marking: 0.1 } lka_767 { heading_angle: 0.0400390625 view_range: 25.76953125 view_range_availability: true } lka_768 { lane_type: 1 quality: 2 model_degree: 3 position: 1.21875 curvature: -0.00016601562549999754 curvature_derivative: 5.7667493830275e-06 width_right_marking: 0.2 } lka_769 { heading_angle: 0.06640625 view_range: 28.62109375 view_range_availability: true } reference_76a { ref_point_1_position: -0.0081919999999939819 ref_point_1_distance: 0 ref_point_1_validity: false ref_point_2_position: -127.996094 ref_point_2_distance: 0 ref_point_2_validity: false } num_76b { num_of_next_lane_mark_reported: 2 } next_76c { lane_type: 2 quality: 0 model_degree: 3 position: -3.078125 curvature: -4.9999587803384316e-13 curvature_derivative: 9.4949005255418051e-16 lane_mark_width: 0.07 } next_76c { lane_type: 2 quality: 0 model_degree: 3 position: 5.41015625 curvature: -4.9999587803384316e-13 curvature_derivative: 9.4949005255418051e-16 lane_mark_width: 0 } next_76d { heading_angle: 0.056640625 view_range: 0 view_range_availability: true } next_76d { heading_angle: 0.03515625 view_range: 0 view_range_availability: true }
0
apollo_public_repos/apollo/modules/third_party_perception/testdata
apollo_public_repos/apollo/modules/third_party_perception/testdata/mobileye_obstacles/2_perception_obstacles.pb.txt
perception_obstacle { id: 41 position { x: 14.375 y: -0.0625 } theta: 0.34 velocity { x: -4.75 y: 0 } length: 5 width: 1.75 height: 3 polygon_point { x: 17.398687869444078 y: -0.05369260198526693 } polygon_point { x: 16.815085458197654 y: 1.5961280626893388 } polygon_point { x: 12.101312130555922 y: -0.07130739801473307 } polygon_point { x: 12.684914541802346 y: -1.7211280626893388 } type: VEHICLE confidence: 0.5 } header { timestamp_sec: 1520575862.9623015 module_name: "third_party_perception" sequence_num: 2928 } lane_marker { left_lane_marker { lane_type: UNKNOWN quality: 0 model_degree: 3 c0_position: 1.875 c1_heading_angle: -0 c2_curvature: 4.9999587803384316e-13 c3_curvature_derivative: -9.4949005255418051e-16 view_range: 0 } right_lane_marker { lane_type: UNKNOWN quality: 0 model_degree: 3 c0_position: -1.875 c1_heading_angle: -0 c2_curvature: 4.9999587803384316e-13 c3_curvature_derivative: -9.4949005255418051e-16 view_range: 0 } }
0
apollo_public_repos/apollo/modules/third_party_perception/testdata
apollo_public_repos/apollo/modules/third_party_perception/testdata/mobileye_obstacles/2_localization.pb.txt
header { timestamp_sec: 1520551003.7316802 module_name: "localization" sequence_num: 51666 } pose { position { x: 587242.2712578458 y: 4141477.4049897976 z: -33.347965505905449 } orientation { qx: 0.00085075192116691387 qy: 0.0092156589064149412 qz: -0.13824535708904695 qw: 0.99035476931017563 } linear_velocity { x: 1.1942697167699405 y: 4.6376871405045854 z: -0.0047735927322376526 } linear_acceleration { x: -0.35533452367609714 y: -1.2614812715641519 z: 0.23016663542996973 } angular_velocity { x: -0.0324857477825644 y: -0.018328242600236549 z: -0.0029008029073252441 } heading: 1.2934132676531691 linear_acceleration_vrf { x: -0.00054357803408017213 y: -1.3107644222327413 z: 0.22906469876471536 } angular_velocity_vrf { x: -0.026166453310543979 y: -0.026521025642883708 z: -0.0034080585836054689 } euler_angles { x: 0.018489828904295732 y: 0.00086295177450613049 z: 1.2934132676531693 } } measurement_time: 1520551003.71
0
apollo_public_repos/apollo/modules/third_party_perception/testdata
apollo_public_repos/apollo/modules/third_party_perception/testdata/mobileye_obstacles/1_localization.pb.txt
header { timestamp_sec: 1520552697.6060355 module_name: "localization" sequence_num: 221051 } pose { position { x: 587680.27030016342 y: 4141461.3713872195 z: -31.345884411595762 } orientation { qx: -0.00085719570979996993 qy: 0.0067058662407370635 qz: -0.774534023732551 qw: 0.63249612066331318 } linear_velocity { x: 8.8342633464306815 y: -1.8523446287690539 z: -0.059195302536360184 } linear_acceleration { x: -1.7446457805301716 y: -0.29446382691937473 z: 0.57459200898123786 } angular_velocity { x: -0.014559446098338855 y: -0.017458021324307696 z: -0.041367965918841176 } heading: -0.20117475049513089 linear_acceleration_vrf { x: 0.63314924414295737 y: -1.6571039498936402 z: 0.56016279380098966 } angular_velocity_vrf { x: 0.020311573814547391 y: -0.010302057301582769 z: -0.041344602647067734 } euler_angles { x: 0.0071555462303405726 y: 0.011472440705812062 z: -0.20117475049513114 } } measurement_time: 1520552697.59
0
apollo_public_repos/apollo/modules/third_party_perception/testdata
apollo_public_repos/apollo/modules/third_party_perception/testdata/mobileye_obstacles/2_mobileye.pb.txt
header { timestamp_sec: 1520551003.7355325 module_name: "mobileye" sequence_num: 5159 } aftermarket_669 { lane_conf_left: 0 ldw_availability_left: false lane_type_left: 2 distance_to_lane_l: -1.8800000000000001 lane_conf_right: 0 ldw_availability_right: false lane_type_right: 2 distance_to_lane_r: 1.8800000000000001 } details_737 { lane_curvature: -0.131072 lane_heading: -1.024 ca_construction_area: false right_ldw_availability: false left_ldw_availability: false reserved_1: false yaw_angle: 31.9990234375 pitch_angle: 0.06132861036 } details_738 { num_obstacles: 1 timestamp: 201 application_version: 0 active_version_number_section: 2 left_close_rang_cut_in: false right_close_rang_cut_in: false go: 15 protocol_version: 3 close_car: false failsafe: 0 reserved_10: 0 } details_739 { obstacle_id: 41 obstacle_pos_x: 14.375 reseved_2: 0 obstacle_pos_y: -0.0625 blinker_info: 1 cut_in_and_out: 0 obstacle_rel_vel_x: -4.75 obstacle_type: 0 reserved_3: false obstacle_status: 1 obstacle_brake_lights: false reserved_4: 0 obstacle_valid: 2 } details_73a { obstacle_length: 31.5 obstacle_width: 1.75 obstacle_age: 92 obstacle_lane: 0 cipv_flag: true reserved_5: false radar_pos_x: 255.9375 radar_vel_x: -128 radar_match_confidence: 0 reserved_6: false matched_radar_id: 127 reserved_7: false } details_73b { obstacle_angle_rate: -0.38 obstacle_scale_change: 0.29500000000000004 object_accel_x: -0.65999999999999992 reserved_8: 0 obstacle_replaced: false reserved_9: 0 obstacle_angle: 0.33 } lka_766 { lane_type: 2 quality: 0 model_degree: 3 position: -1.875 curvature: -4.9999587803384316e-13 curvature_derivative: 9.4949005255418051e-16 width_left_marking: 0 } lka_767 { heading_angle: 0 view_range: 0 view_range_availability: true } lka_768 { lane_type: 2 quality: 0 model_degree: 3 position: 1.875 curvature: -4.9999587803384316e-13 curvature_derivative: 9.4949005255418051e-16 width_right_marking: 0 } lka_769 { heading_angle: 0 view_range: 0 view_range_availability: true } reference_76a { ref_point_1_position: -0.0081919999999939819 ref_point_1_distance: 0 ref_point_1_validity: false ref_point_2_position: -127.996094 ref_point_2_distance: 0 ref_point_2_validity: false } num_76b { num_of_next_lane_mark_reported: 2 } next_76c { lane_type: 2 quality: 0 model_degree: 3 position: -5.60546875 curvature: -4.9999587803384316e-13 curvature_derivative: 9.4949005255418051e-16 lane_mark_width: 0 } next_76c { lane_type: 1 quality: 0 model_degree: 3 position: 2.3359375 curvature: -4.9999587803384316e-13 curvature_derivative: 9.4949005255418051e-16 lane_mark_width: 0.09 } next_76d { heading_angle: -0.0205078125 view_range: 0 view_range_availability: true } next_76d { heading_angle: -0.005859375 view_range: 0 view_range_availability: true }
0
apollo_public_repos/apollo/modules/third_party_perception/testdata
apollo_public_repos/apollo/modules/third_party_perception/testdata/conf/third_party_perception.conf
--flagfile=modules/common/data/global_flagfile.txt --alsologtostderr=1 --node_namespace=/apollo/third_party_perception --node_name=third_party_perception --module_name=third_party_perception --third_party_perception_freq=10 --radar_pos_adjust=4.0 --mobileye_pos_adjust=4.5 --default_unknown_length=5.0 --default_unknown_width=2.0 --default_bike_width=2.0 --default_bike_length=5.0 --enable_radar=true --movable_heading_threshold=0.8
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/tools/conversion_radar.h
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #pragma once #include "modules/common_msgs/chassis_msgs/chassis.pb.h" #include "modules/common_msgs/sensor_msgs/conti_radar.pb.h" #include "modules/common_msgs/sensor_msgs/delphi_esr.pb.h" #include "modules/common_msgs/localization_msgs/localization.pb.h" #include "modules/third_party_perception/proto/radar_obstacle.pb.h" /** * @namespace apollo::third_party_perception::conversion_radar * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { namespace conversion_radar { RadarObstacles DelphiToRadarObstacles( const apollo::drivers::DelphiESR& delphi_esr, const apollo::localization::LocalizationEstimate& localization, const RadarObstacles& last_radar_obstacles); RadarObstacles ContiToRadarObstacles( const apollo::drivers::ContiRadar& conti_radar, const apollo::localization::LocalizationEstimate& localization, const RadarObstacles& last_radar_obstacles, const apollo::canbus::Chassis& chassis); apollo::perception::PerceptionObstacles RadarObstaclesToPerceptionObstacles( const RadarObstacles& radar_obstacles); } // namespace conversion_radar } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/tools/conversion_mobileye.cc
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #include <cmath> #include <iostream> #include <map> #include <vector> #include "cyber/common/log.h" #include "modules/common/configs/config_gflags.h" #include "modules/third_party_perception/common/third_party_perception_gflags.h" #include "modules/third_party_perception/common/third_party_perception_util.h" #include "modules/third_party_perception/tools/conversion_base.h" #include "modules/third_party_perception/tools/conversion_mobileye.h" /** * @namespace apollo::third_party_perception::conversion_mobileye * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { namespace conversion_mobileye { using apollo::canbus::Chassis; using apollo::drivers::Mobileye; using apollo::localization::LocalizationEstimate; using apollo::perception::PerceptionObstacle; using apollo::perception::PerceptionObstacles; using Point = apollo::common::Point3D; PerceptionObstacles MobileyeToPerceptionObstacles( const Mobileye& mobileye, const LocalizationEstimate& localization, const Chassis& chassis) { PerceptionObstacles obstacles; // retrieve position and velocity of the main vehicle from the localization // position obstacles.mutable_header()->CopyFrom(mobileye.header()); // Fullfill lane_type information std::int32_t mob_left_lane_type = mobileye.lka_766().lane_type(); std::int32_t mob_right_lane_type = mobileye.lka_768().lane_type(); obstacles.mutable_lane_marker()->mutable_left_lane_marker()->set_lane_type( conversion_base::lane_conversion_map[mob_left_lane_type]); obstacles.mutable_lane_marker()->mutable_right_lane_marker()->set_lane_type( conversion_base::lane_conversion_map[mob_right_lane_type]); obstacles.mutable_lane_marker()->mutable_left_lane_marker()->set_quality( mobileye.lka_766().quality() / 4.0); obstacles.mutable_lane_marker()->mutable_left_lane_marker()->set_model_degree( mobileye.lka_766().model_degree()); // Convert everything to FLU obstacles.mutable_lane_marker()->mutable_left_lane_marker()->set_c0_position( -mobileye.lka_766().position()); obstacles.mutable_lane_marker() ->mutable_left_lane_marker() ->set_c1_heading_angle(-mobileye.lka_767().heading_angle()); obstacles.mutable_lane_marker()->mutable_left_lane_marker()->set_c2_curvature( -mobileye.lka_766().curvature()); obstacles.mutable_lane_marker() ->mutable_left_lane_marker() ->set_c3_curvature_derivative(-mobileye.lka_766().curvature_derivative()); obstacles.mutable_lane_marker()->mutable_left_lane_marker()->set_view_range( mobileye.lka_767().view_range()); obstacles.mutable_lane_marker()->mutable_right_lane_marker()->set_quality( mobileye.lka_768().quality() / 4.0); obstacles.mutable_lane_marker() ->mutable_right_lane_marker() ->set_model_degree(mobileye.lka_768().model_degree()); obstacles.mutable_lane_marker()->mutable_right_lane_marker()->set_c0_position( -mobileye.lka_768().position()); obstacles.mutable_lane_marker() ->mutable_right_lane_marker() ->set_c1_heading_angle(-mobileye.lka_769().heading_angle()); obstacles.mutable_lane_marker() ->mutable_right_lane_marker() ->set_c2_curvature(-mobileye.lka_768().curvature()); obstacles.mutable_lane_marker() ->mutable_right_lane_marker() ->set_c3_curvature_derivative(-mobileye.lka_768().curvature_derivative()); obstacles.mutable_lane_marker()->mutable_right_lane_marker()->set_view_range( mobileye.lka_769().view_range()); double adc_x = localization.pose().position().x(); double adc_y = localization.pose().position().y(); double adc_z = localization.pose().position().z(); // heading auto adc_quaternion = localization.pose().orientation(); double adc_theta = GetAngleFromQuaternion(adc_quaternion); // velocity double adc_vx = localization.pose().linear_velocity().x(); double adc_vy = localization.pose().linear_velocity().y(); double adc_velocity = Speed(adc_vx, adc_vy); for (int index = 0; index < mobileye.details_738().num_obstacles() && index < mobileye.details_739_size(); ++index) { auto* mob = obstacles.add_perception_obstacle(); const auto& data_739 = mobileye.details_739(index); int mob_id = data_739.obstacle_id() + FLAGS_mobileye_id_offset; double mob_x = data_739.obstacle_pos_x(); double mob_y = -data_739.obstacle_pos_y(); double mob_vel_x = data_739.obstacle_rel_vel_x(); int mob_type = data_739.obstacle_type(); double mob_l = 0.0; double mob_w = 0.0; if (mobileye.details_73a_size() <= index) { mob_l = GetDefaultObjectLength(mob_type); mob_w = GetDefaultObjectWidth(mob_type); } else { if (mobileye.details_73a(index).obstacle_length() > FLAGS_max_mobileye_obstacle_length) { mob_l = GetDefaultObjectLength(mob_type); } else { mob_l = mobileye.details_73a(index).obstacle_length(); } if (mobileye.details_73a(index).obstacle_width() > FLAGS_max_mobileye_obstacle_width) { mob_w = GetDefaultObjectWidth(mob_type); } else { mob_w = mobileye.details_73a(index).obstacle_width(); } } mob_x += FLAGS_mobileye_pos_adjust; // offset: imu <-> mobileye mob_x += mob_l / 2.0; // make x the middle point of the vehicle. Point xy_point = SLtoXY(mob_x, mob_y, adc_theta); // TODO(QiL) : Clean this up after data collection and validation double converted_x = 0.0; double converted_y = 0.0; double converted_speed = 0.0; double converted_vx = 0.0; double converted_vy = 0.0; double path_c1 = 0.0; double path_c2 = 0.0; double path_c3 = 0.0; if (obstacles.lane_marker().left_lane_marker().quality() >= obstacles.lane_marker().right_lane_marker().quality()) { path_c1 = obstacles.lane_marker().left_lane_marker().c1_heading_angle(); path_c2 = obstacles.lane_marker().left_lane_marker().c2_curvature(); path_c3 = obstacles.lane_marker().left_lane_marker().c3_curvature_derivative(); } else { path_c1 = obstacles.lane_marker().right_lane_marker().c1_heading_angle(); path_c2 = obstacles.lane_marker().right_lane_marker().c2_curvature(); path_c3 = obstacles.lane_marker().right_lane_marker().c3_curvature_derivative(); } if (!FLAGS_use_navigation_mode) { converted_x = adc_x + xy_point.x(); converted_y = adc_y + xy_point.y(); mob->set_theta(GetNearestLaneHeading(converted_x, converted_y, adc_z)); converted_speed = adc_velocity + mob_vel_x; converted_vx = converted_speed * std::cos(mob->theta()); converted_vy = converted_speed * std::sin(mob->theta()); } else { converted_x = mobileye.details_739(index).obstacle_pos_x() + FLAGS_mobileye_pos_adjust; converted_y = mobileye.details_739(index).obstacle_pos_y(); converted_vx = mob_vel_x + chassis.speed_mps(); converted_vy = 0.0; if (mobileye.details_73b_size() <= index) { mob->set_theta(0.0); } else { if (!FLAGS_overwrite_mobileye_theta) { mob->set_theta(mobileye.details_73b(index).obstacle_angle() / 180 * M_PI); } else { double nearest_lane_heading = converted_vx > 0 ? std::atan2(3 * path_c3 * converted_x * converted_x + 2 * path_c2 * converted_x + path_c1, 1) : std::atan2(3 * path_c3 * converted_x * converted_x + 2 * path_c2 * converted_x + path_c1, 1) + M_PI; AINFO << "nearest lane heading is" << nearest_lane_heading; mob->set_theta(nearest_lane_heading); } } } mob->set_id(mob_id); mob->mutable_position()->set_x(converted_x); mob->mutable_position()->set_y(converted_y); switch (mob_type) { case 0: case 1: { mob->set_type(PerceptionObstacle::VEHICLE); // VEHICLE break; } case 2: case 4: { mob->set_type(PerceptionObstacle::BICYCLE); // BIKE break; } case 3: { mob->set_type(PerceptionObstacle::PEDESTRIAN); // PED break; } default: { mob->set_type(PerceptionObstacle::UNKNOWN); // UNKNOWN break; } } mob->mutable_velocity()->set_x(converted_vx); mob->mutable_velocity()->set_y(converted_vy); mob->set_length(mob_l); mob->set_width(mob_w); mob->set_height(FLAGS_default_height); mob->clear_polygon_point(); // create polygon FillPerceptionPolygon(mob, mob->position().x(), mob->position().y(), mob->position().z(), mob->length(), mob->width(), mob->height(), mob->theta()); mob->set_confidence(0.5); } return obstacles; } } // namespace conversion_mobileye } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/tools/conversion_base.h
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #pragma once #include <map> /** * @namespace apollo::third_party_perception::conversion_base * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { namespace conversion_base { std::map<std::int32_t, apollo::hdmap::LaneBoundaryType_Type> lane_conversion_map = {{0, apollo::hdmap::LaneBoundaryType::DOTTED_YELLOW}, {1, apollo::hdmap::LaneBoundaryType::SOLID_YELLOW}, {2, apollo::hdmap::LaneBoundaryType::UNKNOWN}, {3, apollo::hdmap::LaneBoundaryType::CURB}, {4, apollo::hdmap::LaneBoundaryType::SOLID_YELLOW}, {5, apollo::hdmap::LaneBoundaryType::DOTTED_YELLOW}, {6, apollo::hdmap::LaneBoundaryType::UNKNOWN}}; } // namespace conversion_base } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/tools/filter.cc
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #include "modules/third_party_perception/tools/filter.h" #include "modules/third_party_perception/common/third_party_perception_gflags.h" #include "modules/third_party_perception/common/third_party_perception_util.h" /** * @namespace apollo::third_party_perception::filter * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { namespace filter { bool IsPreserved(const RadarObstacle& radar_obstacle) { if (!radar_obstacle.movable()) { return false; } double nearest_l = GetLateralDistanceToNearestLane(radar_obstacle.absolute_position()); if (std::abs(nearest_l) > FLAGS_filter_y_distance) { return false; } if (radar_obstacle.count() < FLAGS_keep_radar_frames) { return false; } return true; } RadarObstacles FilterRadarObstacles(const RadarObstacles& radar_obstacles) { RadarObstacles filtered_radar_obstacles; for (const auto& iter : radar_obstacles.radar_obstacle()) { if (IsPreserved(iter.second)) { filtered_radar_obstacles.mutable_radar_obstacle()->insert(iter); } } filtered_radar_obstacles.mutable_header()->CopyFrom(radar_obstacles.header()); return filtered_radar_obstacles; } } // namespace filter } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/tools/conversion_radar.cc
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #include <cmath> #include <iostream> #include <map> #include <vector> #include "cyber/common/log.h" #include "modules/common/configs/config_gflags.h" #include "modules/third_party_perception/common/third_party_perception_gflags.h" #include "modules/third_party_perception/common/third_party_perception_util.h" #include "modules/third_party_perception/tools/conversion_radar.h" /** * @namespace apollo::third_party_perception::conversion_radar * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { namespace conversion_radar { using apollo::canbus::Chassis; using apollo::drivers::DelphiESR; using apollo::localization::LocalizationEstimate; using apollo::perception::PerceptionObstacle; using apollo::perception::PerceptionObstacles; using Point = apollo::common::Point3D; RadarObstacles ContiToRadarObstacles( const apollo::drivers::ContiRadar& conti_radar, const apollo::localization::LocalizationEstimate& localization, const RadarObstacles& last_radar_obstacles, const Chassis& chassis) { RadarObstacles obstacles; const double last_timestamp = last_radar_obstacles.header().timestamp_sec(); const double current_timestamp = conti_radar.header().timestamp_sec(); const auto adc_pos = localization.pose().position(); const auto adc_vel = localization.pose().linear_velocity(); const auto adc_quaternion = localization.pose().orientation(); const double adc_theta = GetAngleFromQuaternion(adc_quaternion); for (int index = 0; index < conti_radar.contiobs_size(); ++index) { const auto& contiobs = conti_radar.contiobs(index); RadarObstacle rob; rob.set_id(contiobs.obstacle_id()); rob.set_rcs(contiobs.rcs()); rob.set_length(GetDefaultObjectLength(4)); rob.set_width(GetDefaultObjectWidth(4)); rob.set_height(3.0); Point relative_pos_sl; // TODO(QiL): load the radar configs here relative_pos_sl.set_x(contiobs.longitude_dist()); relative_pos_sl.set_y(contiobs.lateral_dist()); rob.mutable_relative_position()->CopyFrom(relative_pos_sl); Point relative_pos_xy = SLtoXY(relative_pos_sl, adc_theta); Point absolute_pos; absolute_pos.set_x(adc_pos.x() + relative_pos_xy.x()); absolute_pos.set_y(adc_pos.y() + relative_pos_xy.y()); absolute_pos.set_z(adc_pos.z()); rob.mutable_absolute_position()->CopyFrom(absolute_pos); rob.mutable_relative_velocity()->set_x(contiobs.longitude_vel()); rob.mutable_relative_velocity()->set_y(contiobs.lateral_vel()); const auto iter = last_radar_obstacles.radar_obstacle().find(index); Point absolute_vel; if (iter == last_radar_obstacles.radar_obstacle().end()) { rob.set_count(0); rob.set_movable(false); rob.set_moving_frames_count(0); absolute_vel.set_x(0.0); absolute_vel.set_y(0.0); absolute_vel.set_z(0.0); } else if (!FLAGS_use_navigation_mode) { rob.set_count(iter->second.count() + 1); rob.set_movable(iter->second.movable()); absolute_vel.set_x( (absolute_pos.x() - iter->second.absolute_position().x()) / (current_timestamp - last_timestamp)); absolute_vel.set_y( (absolute_pos.y() - iter->second.absolute_position().y()) / (current_timestamp - last_timestamp)); absolute_vel.set_z(0.0); double v_heading = std::atan2(absolute_vel.y(), absolute_vel.x()); double heading_diff = HeadingDifference(v_heading, rob.theta()); if (heading_diff < FLAGS_movable_heading_threshold && Speed(absolute_vel) * std::cos(heading_diff) > FLAGS_movable_speed_threshold) { rob.set_moving_frames_count(iter->second.moving_frames_count() + 1); } else { rob.set_moving_frames_count(0); } } else { rob.set_count(iter->second.count() + 1); rob.set_movable(iter->second.movable()); absolute_vel.set_x(contiobs.longitude_vel() + chassis.speed_mps()); absolute_vel.set_y(contiobs.lateral_vel()); absolute_vel.set_z(0.0); // Overwrite heading here with relative headings // TODO(QiL) : refind the logic here. if (contiobs.clusterortrack() == 0) { rob.set_theta(contiobs.oritation_angle() / 180 * M_PI); } else { // in FLU rob.set_theta(std::atan2(rob.relative_position().x(), rob.relative_position().y())); } } rob.mutable_absolute_velocity()->CopyFrom(absolute_vel); if (rob.moving_frames_count() >= FLAGS_movable_frames_count_threshold) { rob.set_movable(true); } (*obstacles.mutable_radar_obstacle())[index] = rob; } obstacles.mutable_header()->CopyFrom(conti_radar.header()); return obstacles; } RadarObstacles DelphiToRadarObstacles( const DelphiESR& delphi_esr, const LocalizationEstimate& localization, const RadarObstacles& last_radar_obstacles) { RadarObstacles obstacles; const double last_timestamp = last_radar_obstacles.header().timestamp_sec(); const double current_timestamp = delphi_esr.header().timestamp_sec(); // assign motion power from 540 std::vector<apollo::drivers::Esr_trackmotionpower_540::Motionpower> motionpowers(64); for (const auto& esr_trackmotionpower_540 : delphi_esr.esr_trackmotionpower_540()) { if (!esr_trackmotionpower_540.has_can_tx_track_can_id_group()) { AERROR << "ESR track motion power 540 does not have " "can_tx_track_can_id_group()"; continue; } const int can_tx_track_can_id_group = esr_trackmotionpower_540.can_tx_track_can_id_group(); const int can_tx_track_motion_power_size = esr_trackmotionpower_540.can_tx_track_motion_power_size(); for (int index = 0; index < (can_tx_track_can_id_group < 9 ? 7 : 1) && index < can_tx_track_motion_power_size; ++index) { std::size_t motion_powers_index = can_tx_track_can_id_group * 7 + index; if (motion_powers_index < motionpowers.size()) { motionpowers[motion_powers_index].CopyFrom( esr_trackmotionpower_540.can_tx_track_motion_power(index)); } } } const auto adc_pos = localization.pose().position(); const auto adc_vel = localization.pose().linear_velocity(); const auto adc_quaternion = localization.pose().orientation(); const double adc_theta = GetAngleFromQuaternion(adc_quaternion); for (int index = 0; index < delphi_esr.esr_track01_500_size() && index < static_cast<int>(motionpowers.size()); ++index) { const auto& data_500 = delphi_esr.esr_track01_500(index); // ignore invalid target if (data_500.can_tx_track_status() == apollo::drivers::Esr_track01_500::CAN_TX_TRACK_STATUS_NO_TARGET) { continue; } RadarObstacle rob; rob.set_id(index); rob.set_rcs(static_cast<double>(motionpowers[index].can_tx_track_power()) - 10.0); rob.set_length(GetDefaultObjectLength(4)); rob.set_width(GetDefaultObjectWidth(4)); rob.set_height(3.0); const double range = data_500.can_tx_track_range(); const double angle = data_500.can_tx_track_angle() * M_PI / 180.0; Point relative_pos_sl; relative_pos_sl.set_x(range * std::cos(angle) + FLAGS_radar_pos_adjust + // offset: imu <-> mobileye rob.length() / 2.0); // make x the middle point of the vehicle relative_pos_sl.set_y(range * std::sin(angle)); rob.mutable_relative_position()->CopyFrom(relative_pos_sl); Point relative_pos_xy = SLtoXY(relative_pos_sl, adc_theta); Point absolute_pos; absolute_pos.set_x(adc_pos.x() + relative_pos_xy.x()); absolute_pos.set_y(adc_pos.y() + relative_pos_xy.y()); absolute_pos.set_z(adc_pos.z()); rob.mutable_absolute_position()->CopyFrom(absolute_pos); double theta = GetNearestLaneHeading(rob.absolute_position()); rob.set_theta(theta); const double range_vel = data_500.can_tx_track_range_rate(); const double lateral_vel = data_500.can_tx_track_lat_rate(); rob.mutable_relative_velocity()->set_x(range_vel * std::cos(angle) - lateral_vel * std::sin(angle)); rob.mutable_relative_velocity()->set_y(range_vel * std::sin(angle) + lateral_vel * std::cos(angle)); const auto iter = last_radar_obstacles.radar_obstacle().find(index); Point absolute_vel; if (iter == last_radar_obstacles.radar_obstacle().end()) { rob.set_count(0); rob.set_movable(false); rob.set_moving_frames_count(0); absolute_vel.set_x(0.0); absolute_vel.set_y(0.0); absolute_vel.set_z(0.0); } else { rob.set_count(iter->second.count() + 1); rob.set_movable(iter->second.movable()); absolute_vel.set_x( (absolute_pos.x() - iter->second.absolute_position().x()) / (current_timestamp - last_timestamp)); absolute_vel.set_y( (absolute_pos.y() - iter->second.absolute_position().y()) / (current_timestamp - last_timestamp)); absolute_vel.set_z(0.0); double v_heading = std::atan2(absolute_vel.y(), absolute_vel.x()); double heading_diff = HeadingDifference(v_heading, rob.theta()); if (heading_diff < FLAGS_movable_heading_threshold && Speed(absolute_vel) * std::cos(heading_diff) > FLAGS_movable_speed_threshold) { rob.set_moving_frames_count(iter->second.moving_frames_count() + 1); } else { rob.set_moving_frames_count(0); } } rob.mutable_absolute_velocity()->CopyFrom(absolute_vel); if (rob.moving_frames_count() >= FLAGS_movable_frames_count_threshold) { rob.set_movable(true); } (*obstacles.mutable_radar_obstacle())[index] = rob; } obstacles.mutable_header()->CopyFrom(delphi_esr.header()); return obstacles; } PerceptionObstacles RadarObstaclesToPerceptionObstacles( const RadarObstacles& radar_obstacles) { PerceptionObstacles obstacles; for (const auto& iter : radar_obstacles.radar_obstacle()) { auto* pob = obstacles.add_perception_obstacle(); const auto& radar_obstacle = iter.second; pob->set_id(radar_obstacle.id() + FLAGS_radar_id_offset); pob->set_type(PerceptionObstacle::VEHICLE); pob->set_length(radar_obstacle.length()); pob->set_width(radar_obstacle.width()); pob->set_height(radar_obstacle.height()); if (!FLAGS_use_navigation_mode) { pob->mutable_position()->CopyFrom(radar_obstacle.absolute_position()); pob->mutable_velocity()->CopyFrom(radar_obstacle.absolute_velocity()); } else { pob->mutable_position()->CopyFrom(radar_obstacle.relative_position()); pob->mutable_velocity()->CopyFrom(radar_obstacle.relative_velocity()); } pob->set_theta(radar_obstacle.theta()); // create polygon FillPerceptionPolygon(pob, pob->position().x(), pob->position().y(), pob->position().z(), pob->length(), pob->width(), pob->height(), pob->theta()); pob->set_confidence(0.01); } obstacles.mutable_header()->CopyFrom(radar_obstacles.header()); return obstacles; } } // namespace conversion_radar } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/tools/fusion.h
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #pragma once #include "modules/common_msgs/perception_msgs/perception_obstacle.pb.h" /** * @namespace apollo::third_party_perception::fusion * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { namespace fusion { apollo::perception::PerceptionObstacles EyeRadarFusion( const apollo::perception::PerceptionObstacles& eye_obstacles, const apollo::perception::PerceptionObstacles& radar_obstacles); } // namespace fusion } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/tools/conversion_smartereye.cc
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #include <cmath> #include <iostream> #include <map> #include <vector> #include "cyber/common/log.h" #include "modules/common/configs/config_gflags.h" #include "modules/third_party_perception/common/third_party_perception_gflags.h" #include "modules/third_party_perception/common/third_party_perception_util.h" #include "modules/third_party_perception/tools/conversion_base.h" #include "modules/third_party_perception/tools/conversion_smartereye.h" /** * @namespace apollo::third_party_perception::conversion_smartereye * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { namespace conversion_smartereye { using apollo::canbus::Chassis; using apollo::localization::LocalizationEstimate; using apollo::perception::PerceptionObstacle; using apollo::perception::PerceptionObstacles; using Point = apollo::common::Point3D; apollo::perception::PerceptionObstacles SmartereyeToPerceptionObstacles( const apollo::drivers::SmartereyeObstacles& smartereye_obstacles, const apollo::drivers::SmartereyeLanemark& smartereye_lanemark, const apollo::localization::LocalizationEstimate& localization, const apollo::canbus::Chassis& chassis) { PerceptionObstacles obstacles; // retrieve position and velocity of the main vehicle from the localization // position obstacles.mutable_header()->CopyFrom(smartereye_obstacles.header()); // Fullfill lane_type information std::int32_t sma_left_lane_type = smartereye_lanemark.lane_road_data().roadway().left_lane().style(); std::int32_t sma_right_lane_type = smartereye_lanemark.lane_road_data().roadway().right_lane().style(); obstacles.mutable_lane_marker()->mutable_left_lane_marker()->set_lane_type( conversion_base::lane_conversion_map[sma_left_lane_type]); obstacles.mutable_lane_marker()->mutable_right_lane_marker()->set_lane_type( conversion_base::lane_conversion_map[sma_right_lane_type]); obstacles.mutable_lane_marker()->mutable_left_lane_marker()->set_quality( smartereye_lanemark.lane_road_data().roadway() .left_lane().quality() / 4.0); obstacles.mutable_lane_marker()->mutable_left_lane_marker() ->set_model_degree(smartereye_lanemark.lane_road_data().roadway() .left_lane().right_boundary().degree()); // Convert everything to FLU obstacles.mutable_lane_marker()->mutable_left_lane_marker()->set_c0_position( smartereye_lanemark.lane_road_data().roadway() .left_lane().right_boundary().c0_position()); obstacles.mutable_lane_marker()->mutable_left_lane_marker() ->set_c1_heading_angle(smartereye_lanemark.lane_road_data().roadway() .left_lane().right_boundary().c1_heading_angle()); obstacles.mutable_lane_marker()->mutable_left_lane_marker() ->set_c2_curvature(smartereye_lanemark.lane_road_data().roadway() .left_lane().right_boundary().c2_curvature()); obstacles.mutable_lane_marker()->mutable_left_lane_marker() ->set_c3_curvature_derivative( smartereye_lanemark.lane_road_data().roadway() .left_lane().right_boundary().c3_curvature_derivative()); // obstacles.mutable_lane_marker()->mutable_left_lane_marker() // ->set_view_range( // smartereye_lanemark.lane_road_data().roadway().left_lane().width()); obstacles.mutable_lane_marker()->mutable_right_lane_marker()->set_quality( smartereye_lanemark.lane_road_data().roadway() .right_lane().quality() / 4.0); obstacles.mutable_lane_marker()->mutable_right_lane_marker() ->set_model_degree(smartereye_lanemark.lane_road_data().roadway() .right_lane().left_boundary().degree()); obstacles.mutable_lane_marker()->mutable_right_lane_marker() ->set_c0_position(smartereye_lanemark.lane_road_data().roadway() .right_lane().left_boundary().c0_position()); obstacles.mutable_lane_marker()->mutable_right_lane_marker() ->set_c1_heading_angle(smartereye_lanemark.lane_road_data().roadway() .right_lane().left_boundary().c1_heading_angle()); obstacles.mutable_lane_marker()->mutable_right_lane_marker() ->set_c2_curvature(smartereye_lanemark.lane_road_data().roadway() .right_lane().left_boundary().c2_curvature()); obstacles.mutable_lane_marker()->mutable_right_lane_marker() ->set_c3_curvature_derivative( smartereye_lanemark.lane_road_data().roadway() .right_lane().left_boundary().c3_curvature_derivative()); // obstacles.mutable_lane_marker()->mutable_right_lane_marker() // ->set_view_range( // smartereye_lanemark.lane_road_data().roadway().right_lane().width()); double adc_x = localization.pose().position().x(); double adc_y = localization.pose().position().y(); double adc_z = localization.pose().position().z(); // heading auto adc_quaternion = localization.pose().orientation(); double adc_theta = GetAngleFromQuaternion(adc_quaternion); // velocity double adc_vx = localization.pose().linear_velocity().x(); double adc_vy = localization.pose().linear_velocity().y(); double adc_velocity = Speed(adc_vx, adc_vy); for (int index = 0; index < smartereye_obstacles.num_obstacles() && index < smartereye_obstacles.output_obstacles_size(); ++index) { auto* sma = obstacles.add_perception_obstacle(); const auto& data_obstacle = smartereye_obstacles.output_obstacles().at(index); int sma_id = data_obstacle.trackid() + FLAGS_smartereye_id_offset; double sma_x = data_obstacle.avgdistancez(); double sma_y = data_obstacle.real3dcenterx(); double sma_z = (data_obstacle.real3dupy() + data_obstacle.real3dlowy()) / 2.0; // relative speed double sma_vel_x = data_obstacle.fuzzyrelativespeedz(); int sma_type = data_obstacle.obstacletype(); double sma_w = data_obstacle.real3drightx() - data_obstacle.real3dleftx(); double sma_l = data_obstacle.real3dlowy() - data_obstacle.real3dupy(); switch (sma_type) { case 1: case 6: case 7: { sma->set_type(PerceptionObstacle::VEHICLE); // VEHICLE break; } case 4: case 5: { sma->set_type(PerceptionObstacle::BICYCLE); // BIKE break; } case 2: case 3: { sma->set_type(PerceptionObstacle::PEDESTRIAN); // PED break; } default: { sma->set_type(PerceptionObstacle::UNKNOWN); // UNKNOWN break; } } if (sma_l > FLAGS_max_mobileye_obstacle_length) { sma_l = GetDefaultObjectLength(sma_type); } if (sma_w > FLAGS_max_mobileye_obstacle_width) { sma_w = GetDefaultObjectWidth(sma_type); } Point xy_point = SLtoXY(sma_x, sma_y, adc_theta); // TODO(QiL) : Clean this up after data collection and validation double converted_x = 0.0; double converted_y = 0.0; double converted_z = 0.0; double converted_speed = 0.0; double converted_vx = 0.0; double converted_vy = 0.0; double path_c1 = 0.0; double path_c2 = 0.0; double path_c3 = 0.0; if (obstacles.lane_marker().left_lane_marker().quality() >= obstacles.lane_marker().right_lane_marker().quality()) { path_c1 = obstacles.lane_marker().left_lane_marker().c1_heading_angle(); path_c2 = obstacles.lane_marker().left_lane_marker().c2_curvature(); path_c3 = obstacles.lane_marker().left_lane_marker().c3_curvature_derivative(); } else { path_c1 = obstacles.lane_marker().right_lane_marker().c1_heading_angle(); path_c2 = obstacles.lane_marker().right_lane_marker().c2_curvature(); path_c3 = obstacles.lane_marker().right_lane_marker().c3_curvature_derivative(); } if (!FLAGS_use_navigation_mode) { converted_x = adc_x + xy_point.x(); converted_y = adc_y + xy_point.y(); converted_z = adc_z + sma_z; sma->set_theta(GetNearestLaneHeading(converted_x, converted_y, adc_z)); converted_speed = adc_velocity + sma_vel_x; converted_vx = converted_speed * std::cos(sma->theta()); converted_vy = converted_speed * std::sin(sma->theta()); } else { converted_x = data_obstacle.real3dcenterx() - sma_l / 2.0; converted_y = sma_y; converted_vx = sma_vel_x + chassis.speed_mps(); converted_vy = 0.0; converted_z = data_obstacle.avgdistancez(); double nearest_lane_heading = converted_vx > 0 ? std::atan2(3 * path_c3 * converted_x * converted_x + 2 * path_c2 * converted_x + path_c1, 1) : std::atan2(3 * path_c3 * converted_x * converted_x + 2 * path_c2 * converted_x + path_c1, 1) + M_PI; AINFO << "nearest lane heading is" << nearest_lane_heading; sma->set_theta(nearest_lane_heading); } sma->set_id(sma_id); sma->mutable_position()->set_x(converted_x); sma->mutable_position()->set_y(converted_y); sma->mutable_position()->set_z(converted_z); sma->mutable_velocity()->set_x(converted_vx); sma->mutable_velocity()->set_y(converted_vy); sma->set_length(sma_l); sma->set_width(sma_w); sma->set_height(FLAGS_default_height); sma->clear_polygon_point(); // create polygon FillPerceptionPolygon(sma, sma->position().x(), sma->position().y(), sma->position().z(), sma->length(), sma->width(), sma->height(), sma->theta()); sma->set_confidence(0.5); } return obstacles; } } // namespace conversion_smartereye } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/tools/fusion.cc
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #include "modules/third_party_perception/tools/fusion.h" #include <vector> #include "modules/common/math/polygon2d.h" /** * @namespace apollo::third_party_perception::fusion * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { namespace fusion { using apollo::common::math::Vec2d; using apollo::perception::PerceptionObstacle; using apollo::perception::PerceptionObstacles; std::vector<Vec2d> PerceptionObstacleToVectorVec2d( const PerceptionObstacle& obstacle) { std::vector<Vec2d> result; for (const auto& vertex : obstacle.polygon_point()) { result.emplace_back(vertex.x(), vertex.y()); } return result; } bool HasOverlap(const PerceptionObstacle& obstacle_1, const PerceptionObstacle& obstacle_2) { common::math::Polygon2d polygon_1( PerceptionObstacleToVectorVec2d(obstacle_1)); common::math::Polygon2d polygon_2( PerceptionObstacleToVectorVec2d(obstacle_2)); return polygon_1.HasOverlap(polygon_2); } bool HasOverlap(const PerceptionObstacle& obstacle, const PerceptionObstacles& obstacles) { for (const auto& current_obstacle : obstacles.perception_obstacle()) { if (HasOverlap(obstacle, current_obstacle)) { return true; } } return false; } PerceptionObstacles EyeRadarFusion(const PerceptionObstacles& eye_obstacles, const PerceptionObstacles& radar_obstacles) { PerceptionObstacles eye_obstacles_fusion = eye_obstacles; PerceptionObstacles radar_obstacles_fusion = radar_obstacles; for (auto& eye_obstacle : *(eye_obstacles_fusion.mutable_perception_obstacle())) { for (auto& radar_obstacle : *(radar_obstacles_fusion.mutable_perception_obstacle())) { if (HasOverlap(eye_obstacle, radar_obstacle)) { eye_obstacle.set_confidence(0.99); eye_obstacle.mutable_velocity()->CopyFrom(radar_obstacle.velocity()); } } } // mobileye_obstacles_fusion.MergeFrom(radar_obstacles_fusion); return eye_obstacles_fusion; } } // namespace fusion } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/tools/conversion_mobileye.h
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #pragma once #include "modules/common_msgs/chassis_msgs/chassis.pb.h" #include "modules/common_msgs/sensor_msgs/mobileye.pb.h" #include "modules/common_msgs/localization_msgs/localization.pb.h" /** * @namespace apollo::third_party_perception::conversion_mobileye * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { namespace conversion_mobileye { apollo::perception::PerceptionObstacles MobileyeToPerceptionObstacles( const apollo::drivers::Mobileye& mobileye, const apollo::localization::LocalizationEstimate& localization, const apollo::canbus::Chassis& chassis); } // namespace conversion_mobileye } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/tools/conversion_smartereye.h
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #pragma once #include "modules/common_msgs/chassis_msgs/chassis.pb.h" #include "modules/common_msgs/sensor_msgs/smartereye.pb.h" #include "modules/common_msgs/localization_msgs/localization.pb.h" /** * @namespace apollo::third_party_perception::conversion_smartereye * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { namespace conversion_smartereye { apollo::perception::PerceptionObstacles SmartereyeToPerceptionObstacles( const apollo::drivers::SmartereyeObstacles& smartereye_obstacles, const apollo::drivers::SmartereyeLanemark& smartereye_lanemark, const apollo::localization::LocalizationEstimate& localization, const apollo::canbus::Chassis& chassis); } // namespace conversion_smartereye } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/tools/BUILD
load("@rules_cc//cc:defs.bzl", "cc_library") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) cc_library( name = "third_party_perception_radar_conversion", srcs = ["conversion_radar.cc"], hdrs = ["conversion_radar.h"], deps = [ "//modules/common_msgs/chassis_msgs:chassis_cc_proto", "//modules/common_msgs/config_msgs:vehicle_config_cc_proto", "//modules/common_msgs/basic_msgs:drive_state_cc_proto", "//modules/common_msgs/basic_msgs:vehicle_signal_cc_proto", "//modules/common_msgs/sensor_msgs:conti_radar_cc_proto", "//modules/common_msgs/sensor_msgs:delphi_esr_cc_proto", "//modules/third_party_perception/common:third_party_perception_util", "//modules/third_party_perception/proto:radar_obstacle_cc_proto", ], ) cc_library( name = "third_party_perception_smartereye_conversion", srcs = ["conversion_smartereye.cc"], hdrs = [ "conversion_base.h", "conversion_smartereye.h", ], linkopts = ["-Wl,--allow-multiple-definition"], deps = [ "//modules/common_msgs/chassis_msgs:chassis_cc_proto", "//modules/common_msgs/config_msgs:vehicle_config_cc_proto", "//modules/common_msgs/basic_msgs:drive_state_cc_proto", "//modules/common_msgs/basic_msgs:vehicle_signal_cc_proto", "//modules/common_msgs/sensor_msgs:smartereye_cc_proto", "//modules/third_party_perception/common:third_party_perception_util", ], ) cc_library( name = "third_party_perception_mobileye_conversion", srcs = ["conversion_mobileye.cc"], hdrs = [ "conversion_base.h", "conversion_mobileye.h", ], linkopts = ["-Wl,--allow-multiple-definition"], deps = [ "//modules/common_msgs/chassis_msgs:chassis_cc_proto", "//modules/common_msgs/config_msgs:vehicle_config_cc_proto", "//modules/common_msgs/basic_msgs:drive_state_cc_proto", "//modules/common_msgs/basic_msgs:vehicle_signal_cc_proto", "//modules/common_msgs/sensor_msgs:mobileye_cc_proto", "//modules/common_msgs/sensor_msgs:sensor_image_cc_proto", "//modules/third_party_perception/common:third_party_perception_util", ], ) cc_library( name = "third_party_perception_fusion", srcs = ["fusion.cc"], hdrs = ["fusion.h"], deps = [ "//modules/common/math", "//modules/common_msgs/perception_msgs:perception_obstacle_cc_proto", "//modules/third_party_perception/proto:third_party_perception_component_cc_proto", ], ) cc_library( name = "third_party_perception_filter", srcs = ["filter.cc"], hdrs = ["filter.h"], deps = [ "//modules/third_party_perception/common:third_party_perception_util", "//modules/third_party_perception/proto:radar_obstacle_cc_proto", ], ) cpplint()
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/tools/filter.h
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #pragma once #include "modules/third_party_perception/proto/radar_obstacle.pb.h" /** * @namespace apollo::third_party_perception::filter * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { namespace filter { RadarObstacles FilterRadarObstacles(const RadarObstacles& radar_obstacles); bool IsPreserved(const RadarObstacle& radar_obstacle); } // namespace filter } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/proto/radar_obstacle.proto
syntax = "proto2"; package apollo.third_party_perception; import "modules/common_msgs/basic_msgs/error_code.proto"; import "modules/common_msgs/basic_msgs/header.proto"; // import "modules/common_msgs/perception_msgs/perception_obstacle.proto"; import "modules/common_msgs/basic_msgs/geometry.proto"; message RadarObstacle { optional int32 id = 1; // obstacle ID. optional apollo.common.Point3D relative_position = 2; // obstacle position in the sl coordinate system. optional apollo.common.Point3D relative_velocity = 3; // obstacle relative velocity. optional double rcs = 4; // radar signal intensity. optional bool movable = 5; // whether this obstacle is able to move. optional double width = 6; optional double length = 7; optional double height = 8; optional double theta = 9; optional apollo.common.Point3D absolute_position = 10; optional apollo.common.Point3D absolute_velocity = 11; optional int32 count = 12; optional int32 moving_frames_count = 13; } message RadarObstacles { map<int32, RadarObstacle> radar_obstacle = 1; // An array of obstacles optional apollo.common.Header header = 2; // Header optional apollo.common.ErrorCode error_code = 3 [default = OK]; }
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/proto/third_party_perception_component.proto
syntax = "proto2"; package apollo.third_party_perception; enum ThirdPartyPerceptionDeviceType { SMARTEREYE = 0; MOBILEYE = 1; }; message ThirdPartyPerceptionDevice { optional ThirdPartyPerceptionDeviceType device_type = 1; }
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/proto/BUILD
## Auto generated by `proto_build_generator.py` load("@rules_proto//proto:defs.bzl", "proto_library") load("@rules_cc//cc:defs.bzl", "cc_proto_library") load("//tools:python_rules.bzl", "py_proto_library") package(default_visibility = ["//visibility:public"]) cc_proto_library( name = "radar_obstacle_cc_proto", deps = [ ":radar_obstacle_proto", ], ) proto_library( name = "radar_obstacle_proto", srcs = ["radar_obstacle.proto"], deps = [ "//modules/common_msgs/basic_msgs:error_code_proto", "//modules/common_msgs/basic_msgs:header_proto", "//modules/common_msgs/perception_msgs:perception_obstacle_proto", "//modules/common_msgs/basic_msgs:geometry_proto", ], ) py_proto_library( name = "radar_obstacle_py_pb2", deps = [ ":radar_obstacle_proto", "//modules/common_msgs/basic_msgs:error_code_py_pb2", "//modules/common_msgs/basic_msgs:header_py_pb2", "//modules/common_msgs/perception_msgs:perception_obstacle_py_pb2", "//modules/common_msgs/basic_msgs:geometry_py_pb2", ], ) cc_proto_library( name = "third_party_perception_component_cc_proto", deps = [ ":third_party_perception_component_proto", ], ) proto_library( name = "third_party_perception_component_proto", srcs = ["third_party_perception_component.proto"], ) py_proto_library( name = "third_party_perception_component_py_pb2", deps = [ ":third_party_perception_component_proto", ], )
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/integration_tests/third_party_perception_test_base.cc
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/third_party_perception/integration_tests/third_party_perception_test_base.h" DEFINE_string(test_data_dir, "", "the test data folder"); DEFINE_string(test_localization_file, "", "localization input file"); DEFINE_string(test_monitor_file, "", "montor input file"); DEFINE_bool(test_update_golden_log, false, "true to update golden log file."); namespace apollo { namespace third_party_perception { uint32_t ThirdPartyPerceptionTestBase::s_seq_num_ = 0; void ThirdPartyPerceptionTestBase::SetUp() { ++s_seq_num_; } } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/integration_tests/third_party_perception_test_base.h
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #pragma once #include "gtest/gtest.h" #include "modules/third_party_perception/common/third_party_perception_gflags.h" #define RUN_GOLDEN_TEST \ { \ const ::testing::TestInfo *const test_info = \ ::testing::UnitTest::GetInstance()->current_test_info(); \ bool run_third_party_perception_success = \ test_third_party_perception(test_info->name(), 0); \ EXPECT_TRUE(run_third_party_perception_success); \ } DECLARE_string(test_localization_file); DECLARE_string(test_chassis_file); DECLARE_string(test_data_dir); DECLARE_string(test_monitor_file); /** * @namespace apollo::third_party_perception * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { class ThirdPartyPerceptionTestBase : public ::testing::Test { public: virtual void SetUp(); private: static uint32_t s_seq_num_; }; } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/integration_tests/BUILD
load("@rules_cc//cc:defs.bzl", "cc_library") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) cc_library( name = "third_party_perception_test_base", srcs = ["third_party_perception_test_base.cc"], hdrs = ["third_party_perception_test_base.h"], deps = [ "//modules/third_party_perception:third_party_perception_lib", "@com_google_googletest//:gtest", ], ) cpplint()
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/launch/third_party_perception.launch
<cyber> <module> <name>third_party_perception</name> <dag_conf>/apollo/modules/third_party_perception/dag/third_party_perception.dag</dag_conf> <process_name>third_party_perception</process_name> </module> </cyber>
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/dag/third_party_perception.dag
module_config { module_library : "/apollo/bazel-bin/modules/third_party_perception/libthird_party_perception_component.so" timer_components { class_name : "ThirdPartyPerceptionComponent" config { name: "third_party_perception" config_file_path: "/apollo/modules/third_party_perception/conf/third_party_perception_component.pb.txt" flag_file_path: "/apollo/modules/third_party_perception/conf/third_party_perception.conf" interval: 100 } } }
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/common/third_party_perception_gflags.h
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #pragma once #include "gflags/gflags.h" DECLARE_string(third_party_perception_node_name); DECLARE_double(third_party_perception_freq); DECLARE_bool(enable_radar); // flags to calibrate mobileye, radar and localization DECLARE_double(mobileye_pos_adjust); DECLARE_double(smartereye_pos_adjust); DECLARE_double(radar_pos_adjust); // object id offset DECLARE_int32(mobileye_id_offset); DECLARE_int32(smartereye_id_offset); DECLARE_int32(radar_id_offset); // flags to create fake bounding box DECLARE_double(default_car_length); DECLARE_double(default_truck_length); DECLARE_double(default_bike_length); DECLARE_double(default_ped_length); DECLARE_double(default_unknown_length); DECLARE_double(default_car_width); DECLARE_double(default_truck_width); DECLARE_double(default_bike_width); DECLARE_double(default_ped_width); DECLARE_double(default_unknown_width); DECLARE_double(default_height); // flags to filter radar obstacles DECLARE_double(filter_y_distance); DECLARE_double(movable_speed_threshold); DECLARE_double(movable_heading_threshold); DECLARE_int32(movable_frames_count_threshold); DECLARE_int32(keep_radar_frames); // TODO(QiL) : remove this temporary gflags DECLARE_bool(use_conti_radar); DECLARE_double(max_mobileye_obstacle_length); DECLARE_double(max_mobileye_obstacle_width); DECLARE_bool(overwrite_mobileye_theta);
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/common/third_party_perception_gflags.cc
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/third_party_perception/common/third_party_perception_gflags.h" DEFINE_string(third_party_perception_node_name, "third_party_perception", "Node name"); DEFINE_double(third_party_perception_freq, 10, "third party perception timer frequency."); DEFINE_bool(enable_radar, true, "switch to turn on/off radar obstacles"); // flags to calibrate mobileye, radar and localization DEFINE_double(mobileye_pos_adjust, 3.0, "adjust mobileye objects's position due to distance between " "mobileye and gps."); DEFINE_double(smartereye_pos_adjust, 3.0, "adjust smartereye objects's position due to distance between " "smartereye and gps."); DEFINE_double( radar_pos_adjust, 3.0, "adjust radar objects's position due to distance between radar and gps."); // object id offset DEFINE_int32(mobileye_id_offset, 0, "id offset for mobileye"); DEFINE_int32(smartereye_id_offset, 0, "id offset for smartereye"); DEFINE_int32(radar_id_offset, 1000, "id offset for radar"); // flags to create fake bounding box DEFINE_double(default_car_length, 5.0, "default car length for bounding box."); DEFINE_double(default_truck_length, 10.0, "default truck length for bounding box."); DEFINE_double(default_bike_length, 2.0, "default bike length for bounding box."); DEFINE_double(default_ped_length, 0.5, "default ped length for bounding box."); DEFINE_double(default_unknown_length, 5.0, "default unknown length for bounding box."); DEFINE_double(default_car_width, 3.0, "default car width for bounding box."); DEFINE_double(default_truck_width, 5.0, "default truck width for bounding box."); DEFINE_double(default_bike_width, 1.0, "default bike width for bounding box."); DEFINE_double(default_ped_width, 0.5, "default ped width for bounding box."); DEFINE_double(default_unknown_width, 3.0, "default unknown width for bounding box."); DEFINE_double(default_height, 3.0, "default height for bounding box."); // flags to filter radar obstacles DEFINE_double( filter_y_distance, 7.5, "fiter the radar objects far away from the main vehicle on y-axis."); DEFINE_double(movable_speed_threshold, 6.7, "a radar object is considered as moving in a frame " "if its speed > movable_speed_threshold"); DEFINE_double( movable_heading_threshold, 1.5, "a radar object is considered as moving in a frame " "if the difference between its heading and the main vehicle's heading " "< movable_speed_threshold"); DEFINE_int32( movable_frames_count_threshold, 5, "a radar object is considered as a movable " "if it is moving for consecutive movable_frames_count_threshold frames"); DEFINE_int32(keep_radar_frames, 5, "number of delphi esr frames to keep"); // TODO(QiL) : remove this temporary gflags DEFINE_bool(use_conti_radar, true, "use conti or delphi radar, true is conti, false is delphi"); DEFINE_double(max_mobileye_obstacle_length, 31.2, "maximum mobileye obstacle length"); DEFINE_double(max_mobileye_obstacle_width, 12.7, "maximum mobileye obstacle length"); DEFINE_bool(overwrite_mobileye_theta, true, "overrite mobileye raw theta output");
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/common/third_party_perception_util.h
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #pragma once #include "modules/common_msgs/perception_msgs/perception_obstacle.pb.h" /** * @namespace apollo::third_party_perception * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { double GetAngleFromQuaternion(const apollo::common::Quaternion quaternion); void FillPerceptionPolygon( apollo::perception::PerceptionObstacle* const perception_obstacle, const double mid_x, const double mid_y, const double mid_z, const double length, const double width, const double height, const double heading); // TODO(lizh): change it to PerceptionObstacle::VEHICLE or so // when perception obstacle type is extended. // object type | int // car | 0 // truck | 1 // bike | 2 // ped | 3 // unknown | 4 double GetDefaultObjectLength(const int object_type); double GetDefaultObjectWidth(const int object_type); apollo::common::Point3D SLtoXY(const double x, const double y, const double theta); apollo::common::Point3D SLtoXY(const apollo::common::Point3D& point, const double theta); double Distance(const apollo::common::Point3D& point1, const apollo::common::Point3D& point2); double Speed(const apollo::common::Point3D& point); double Speed(const double vx, const double vy); double GetNearestLaneHeading(const apollo::common::PointENU& point_enu); double GetNearestLaneHeading(const apollo::common::Point3D& point); double GetNearestLaneHeading(const double x, const double y, const double z); double GetLateralDistanceToNearestLane(const apollo::common::Point3D& point); double HeadingDifference(const double theta1, const double theta2); } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/common/BUILD
load("@rules_cc//cc:defs.bzl", "cc_library") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) cc_library( name = "third_party_perception_util", srcs = ["third_party_perception_util.cc"], hdrs = ["third_party_perception_util.h"], deps = [ ":third_party_perception_gflags", "//modules/map/hdmap:hdmap_util", ], ) cc_library( name = "third_party_perception_gflags", srcs = ["third_party_perception_gflags.cc"], hdrs = ["third_party_perception_gflags.h"], deps = [ "@com_github_gflags_gflags//:gflags", ], ) cpplint()
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/common/third_party_perception_util.cc
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #include "modules/third_party_perception/common/third_party_perception_util.h" #include "modules/map/hdmap/hdmap_util.h" #include "modules/third_party_perception/common/third_party_perception_gflags.h" /** * @namespace apollo::third_party_perception * @brief apollo::third_party_perception */ namespace apollo { namespace third_party_perception { using apollo::common::PointENU; using apollo::common::Quaternion; using apollo::hdmap::HDMapUtil; using apollo::perception::PerceptionObstacle; using Point = apollo::common::Point3D; double GetAngleFromQuaternion(const Quaternion quaternion) { double theta = std::atan2(2.0 * (quaternion.qw() * quaternion.qz() + quaternion.qx() * quaternion.qy()), 1.0 - 2.0 * (quaternion.qy() * quaternion.qy() + quaternion.qz() * quaternion.qz())) + std::acos(-1.0) / 2.0; return theta; } void FillPerceptionPolygon(PerceptionObstacle* const perception_obstacle, const double mid_x, const double mid_y, const double mid_z, const double length, const double width, const double height, const double heading) { // Generate a 2D cube whose vertices are given in counter-clock order when // viewed from top const int sign_l[4] = {1, 1, -1, -1}; const int sign_w[4] = {1, -1, -1, 1}; for (int i = 0; i < 4; ++i) { perception_obstacle->add_polygon_point(); perception_obstacle->mutable_polygon_point(i)->set_x( mid_x + sign_l[i] * length * std::cos(heading) / 2.0 + sign_w[i] * width * std::sin(heading) / 2.0); perception_obstacle->mutable_polygon_point(i)->set_y( mid_y + sign_l[i] * length * std::sin(heading) / 2.0 - sign_w[i] * width * std::cos(heading) / 2.0); perception_obstacle->mutable_polygon_point(i)->set_z(mid_z); } } double GetDefaultObjectLength(const int object_type) { double default_object_length = 0.0; switch (object_type) { case 0: { default_object_length = FLAGS_default_car_length; break; } case 1: { default_object_length = FLAGS_default_truck_length; break; } case 2: { default_object_length = FLAGS_default_bike_length; break; } case 3: { default_object_length = FLAGS_default_ped_length; break; } case 4: { default_object_length = FLAGS_default_unknown_length; break; } } return default_object_length; } double GetDefaultObjectWidth(const int object_type) { double default_object_width = 0.0; switch (object_type) { case 0: { default_object_width = FLAGS_default_car_width; break; } case 1: { default_object_width = FLAGS_default_truck_width; break; } case 2: { default_object_width = FLAGS_default_bike_width; break; } case 3: { default_object_width = FLAGS_default_ped_width; break; } case 4: { default_object_width = FLAGS_default_unknown_width; break; } } return default_object_width; } Point SLtoXY(const Point& point, const double theta) { return SLtoXY(point.x(), point.y(), theta); } Point SLtoXY(const double x, const double y, const double theta) { Point converted_point; converted_point.set_x(x * std::cos(theta) + y * std::sin(theta)); converted_point.set_y(x * std::sin(theta) - y * std::cos(theta)); return converted_point; } double Distance(const Point& point1, const Point& point2) { double distance = std::sqrt((point1.x() - point2.x()) * (point1.x() - point2.x()) + (point1.y() - point2.y()) * (point1.y() - point2.y())); return distance; } double GetNearestLaneHeading(const PointENU& point_enu) { auto* hdmap = HDMapUtil::BaseMapPtr(); if (hdmap == nullptr) { AERROR << "Failed to get nearest lane for point " << point_enu.DebugString(); return -1.0; } hdmap::LaneInfoConstPtr nearest_lane; double nearest_s; double nearest_l; int status = hdmap->GetNearestLane(point_enu, &nearest_lane, &nearest_s, &nearest_l); // TODO(lizh): make it a formal status below if (status != 0) { AERROR << "Failed to get nearest lane for point " << point_enu.DebugString(); return -1.0; } double lane_heading = nearest_lane->Heading(nearest_s); return lane_heading; } double GetNearestLaneHeading(const Point& point) { auto* hdmap = HDMapUtil::BaseMapPtr(); if (hdmap == nullptr) { AERROR << "Failed to get nearest lane for point " << point.DebugString(); return -1.0; } PointENU point_enu; point_enu.set_x(point.x()); point_enu.set_y(point.y()); point_enu.set_z(point.z()); return GetNearestLaneHeading(point_enu); } double GetNearestLaneHeading(const double x, const double y, const double z) { auto* hdmap = HDMapUtil::BaseMapPtr(); if (hdmap == nullptr) { AERROR << "Failed to get nearest lane for point (" << x << ", " << y << ", " << z << ")"; return -1.0; } PointENU point_enu; point_enu.set_x(x); point_enu.set_y(y); point_enu.set_z(z); return GetNearestLaneHeading(point_enu); } double GetLateralDistanceToNearestLane(const Point& point) { auto* hdmap = HDMapUtil::BaseMapPtr(); if (hdmap == nullptr) { AERROR << "Failed to get nearest lane for point " << point.DebugString(); return -1.0; } PointENU point_enu; point_enu.set_x(point.x()); point_enu.set_y(point.y()); point_enu.set_z(point.z()); hdmap::LaneInfoConstPtr nearest_lane; double nearest_s; double nearest_l; int status = hdmap->GetNearestLane(point_enu, &nearest_lane, &nearest_s, &nearest_l); // TODO(lizh): make it a formal status below if (status != 0) { AERROR << "Failed to get nearest lane for point " << point.DebugString(); return -1.0; } AINFO << "Dist: " << nearest_l; return nearest_l; } double Speed(const Point& point) { return std::sqrt(point.x() * point.x() + point.y() + point.y()); } double Speed(const double vx, const double vy) { return std::sqrt(vx * vx + vy * vy); } double HeadingDifference(const double theta1, const double theta2) { double theta_diff = std::abs(theta1 - theta2); return theta_diff > M_PI ? (2 * M_PI - theta_diff) : theta_diff; } } // namespace third_party_perception } // namespace apollo
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/conf/third_party_perception.conf
--flagfile=/apollo/modules/common/data/global_flagfile.txt --alsologtostderr=1 --node_namespace=/apollo/third_party_perception --node_name=third_party_perception --module_name=third_party_perception --third_party_perception_freq=10 --radar_pos_adjust=4.0 --mobileye_pos_adjust=4.5 --default_unknown_length=5.0 --default_unknown_width=2.0 --default_bike_width=2.0 --default_bike_length=5.0 --enable_radar=false --movable_heading_threshold=0.8 --nouse_navigation_mode
0
apollo_public_repos/apollo/modules/third_party_perception
apollo_public_repos/apollo/modules/third_party_perception/conf/third_party_perception_component.pb.txt
device_type: SMARTEREYE
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/audio/audio_component.cc
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/audio/audio_component.h" #include "modules/audio/proto/audio_conf.pb.h" #include "modules/common_msgs/basic_msgs/geometry.pb.h" #include "modules/common/util/message_util.h" namespace apollo { namespace audio { using apollo::common::Point3D; using apollo::common::util::FillHeader; using apollo::drivers::microphone::config::AudioData; AudioComponent::~AudioComponent() {} std::string AudioComponent::Name() const { // TODO(all) implement return ""; } bool AudioComponent::Init() { AudioConf audio_conf; if (!ComponentBase::GetProtoConfig(&audio_conf)) { AERROR << "Unable to load audio conf file: " << ComponentBase::ConfigFilePath(); return false; } localization_reader_ = node_->CreateReader<localization::LocalizationEstimate>( audio_conf.topic_conf().localization_topic_name(), nullptr); audio_writer_ = node_->CreateWriter<AudioDetection>( audio_conf.topic_conf().audio_detection_topic_name()); respeaker_extrinsics_file_ = audio_conf.respeaker_extrinsics_path(); return true; } bool AudioComponent::Proc(const std::shared_ptr<AudioData>& audio_data) { // TODO(all) remove GetSignals() multiple calls AudioDetection audio_detection; MessageProcess::OnMicrophone(*audio_data, respeaker_extrinsics_file_, &audio_info_, &direction_detection_, &moving_detection_, &siren_detection_, &audio_detection); FillHeader(node_->Name(), &audio_detection); audio_writer_->Write(audio_detection); return true; } } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/audio/audio_component.h
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file */ #pragma once #include <memory> #include <string> #include "cyber/component/component.h" #include "modules/audio/common/message_process.h" #include "modules/common_msgs/localization_msgs/localization.pb.h" /** * @namespace apollo::audio * @brief apollo::audio */ namespace apollo { namespace audio { class AudioComponent : public cyber::Component<apollo::drivers::microphone::config::AudioData> { public: ~AudioComponent(); std::string Name() const; bool Init() override; bool Proc( const std::shared_ptr<apollo::drivers::microphone::config::AudioData>&) override; private: std::shared_ptr<cyber::Reader<localization::LocalizationEstimate>> localization_reader_; std::shared_ptr<cyber::Writer<AudioDetection>> audio_writer_; AudioInfo audio_info_; DirectionDetection direction_detection_; MovingDetection moving_detection_; SirenDetection siren_detection_; std::string respeaker_extrinsics_file_; }; CYBER_REGISTER_COMPONENT(AudioComponent) } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/audio/cyberfile.xml
<package format="2"> <name>audio</name> <version>local</version> <description> The Audio module detect the siren sound coming from the active emergency vehicle. It detects and output siren on/off status, moving status and the relative position of the siren. When active emergency vehicles detected, you can also see active alerts on Dreamview. </description> <maintainer email="apollo-support@baidu.com">Apollo</maintainer> <license>Apache License 2.0</license> <url type="website">https://www.apollo.auto/</url> <url type="repository">https://github.com/ApolloAuto/apollo</url> <url type="bugtracker">https://github.com/ApolloAuto/apollo/issues</url> <type>module</type> <src_path url="https://github.com/ApolloAuto/apollo">//modules/audio</src_path> <depend repo_name="common-msgs" lib_names="common-msgs">common-msgs-dev</depend> <depend type="binary" repo_name="cyber">cyber-dev</depend> <depend type="binary" repo_name="common" lib_names="common">common-dev</depend> <depend type="binary" repo_name="drivers">drivers-dev</depend> <depend repo_name="com_github_gflags_gflags" lib_names="gflags">3rd-gflags-dev</depend> <depend repo_name="boost">3rd-boost-dev</depend> <depend repo_name="eigen">3rd-eigen3-dev</depend> <depend repo_name="fftw3">3rd-fftw3-dev</depend> <depend repo_name="com_github_jbeder_yaml_cpp" lib_names="yaml-cpp">3rd-yaml-cpp-dev</depend> <depend repo_name="com_google_googletest" lib_names="gtest,gtest_main">3rd-gtest-dev</depend> <depend repo_name="libtorch_cpu" lib_names="libtorch_cpu">3rd-libtorch-cpu-dev</depend> <depend>3rd-mkl-dev</depend> <depend expose="False">3rd-rules-python-dev</depend> <depend expose="False">3rd-grpc-dev</depend> <depend expose="False">3rd-bazel-skylib-dev</depend> <depend expose="False">3rd-rules-proto-dev</depend> <depend expose="False">3rd-py-dev</depend> </package>
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/audio/README.md
# Audio ## Introduction The Audio module detect the siren sound coming from the active emergency vehicle. It detects and output siren on/off status, moving status and the relative position of the siren. When active emergency vehicles detected, you can also see active alerts on Dreamview. ## Input * Audio signal data (cyber channel `/apollo/sensor/microphone`) ## Output * Audio detection result, including the siren active/inactive status, moving status(approaching/departing/stationary), and the positions (cyber channel `apollo/audio/audio_detection`).
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/audio/audio.BUILD
load("@rules_cc//cc:defs.bzl", "cc_library") cc_library( name = "audio", includes = ["include"], hdrs = glob(["include/**/*.h"]), srcs = glob(["lib/**/*.so*"]), include_prefix = "modules/audio", strip_include_prefix = "include", visibility = ["//visibility:public"], )
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/audio/BUILD
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library") load("//tools/install:install.bzl", "install", "install_files", "install_src_files") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) cc_library( name = "audio_component_lib", srcs = ["audio_component.cc"], hdrs = ["audio_component.h"], copts = [ "-DMODULE_NAME=\\\"audio\\\"", ], deps = [ "//cyber", "//modules/audio/common:message_process", "//modules/audio/proto:audio_conf_cc_proto", "//modules/common_msgs/basic_msgs:geometry_cc_proto", "//modules/common_msgs/localization_msgs:localization_cc_proto", "//modules/common/util:util_tool", ], alwayslink = True, ) cc_binary( name = "libaudio_component.so", linkshared = True, linkstatic = True, deps = [":audio_component_lib"], ) filegroup( name = "runtime_data", srcs = glob([ "conf/**", "dag/*.dag", "launch/*.launch", ]), ) # Data->Models: # modules/audio/data/torch_siren_detection_model.pt install( name = "install", library_dest = "audio/lib", data_dest = "audio", data = [ ":runtime_data", ":cyberfile.xml", ":audio.BUILD", ], targets = [ ":libaudio_component.so", ], deps = [ ":pb_hdrs", "//modules/audio/tools:install", ], ) install( name = "pb_hdrs", data_dest = "audio/include", data = [ "//modules/audio/proto:audio_conf_cc_proto", ], ) install_src_files( name = "install_src", deps = [ ":install_audio_src", ":install_audio_hdrs", ":install_audio_model", "//modules/audio/proto:py_pb_audio", ], ) install_src_files( name = "install_audio_src", src_dir = ["."], dest = "audio/src", filter = "*", ) install_src_files( name = "install_audio_model", src_dir = ["data"], dest = "audio/data", filter = "*" ) install_src_files( name = "install_audio_hdrs", src_dir = ["."], dest = "audio/include", filter = "*.h", ) cpplint()
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/tools/audio_offline_processing.cc
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include <string> #include <boost/filesystem.hpp> #include <boost/range/iterator_range.hpp> #include "cyber/common/file.h" #include "cyber/record/record_reader.h" #include "cyber/record/record_writer.h" #include "modules/audio/common/audio_gflags.h" #include "modules/audio/common/message_process.h" #include "modules/audio/proto/audio_conf.pb.h" #include "modules/common_msgs/audio_msgs/audio_event.pb.h" #include "modules/common_msgs/localization_msgs/localization.pb.h" #include "modules/common_msgs/perception_msgs/perception_obstacle.pb.h" namespace apollo { namespace audio { using apollo::cyber::record::RecordReader; using apollo::cyber::record::RecordMessage; using apollo::cyber::record::RecordWriter; using apollo::drivers::microphone::config::AudioData; using apollo::localization::LocalizationEstimate; using apollo::perception::PerceptionObstacles; void GetRecordFileNames(const boost::filesystem::path& p, std::vector<std::string>* record_files) { if (!boost::filesystem::exists(p)) { return; } if (boost::filesystem::is_regular_file(p)) { AINFO << "Found record file: " << p.c_str(); record_files->push_back(p.c_str()); return; } if (boost::filesystem::is_directory(p)) { for (auto& entry : boost::make_iterator_range( boost::filesystem::directory_iterator(p), {})) { GetRecordFileNames(entry.path(), record_files); } } } void ProcessSingleRecordFile(const AudioConf& audio_conf, const std::string& input_record_filepath, const std::string& output_record_filepath, AudioInfo* audio_info, DirectionDetection* direction_detection, MovingDetection* moving_detection, SirenDetection* siren_detection) { RecordReader reader(input_record_filepath); RecordMessage message; RecordWriter writer; writer.Open(output_record_filepath); while (reader.ReadMessage(&message)) { if (message.channel_name == audio_conf.topic_conf().audio_data_topic_name()) { AudioData audio_data; if (audio_data.ParseFromString(message.content)) { AudioDetection audio_detection; std::string respeaker_extrinsics_file = audio_conf.respeaker_extrinsics_path(); MessageProcess::OnMicrophone(audio_data, respeaker_extrinsics_file, audio_info, direction_detection, moving_detection, siren_detection, &audio_detection); writer.WriteMessage<AudioDetection>( audio_conf.topic_conf().audio_detection_topic_name(), audio_detection, message.time); AINFO << "Generate a new audio detection message."; } } else if (message.channel_name == audio_conf.topic_conf().audio_event_topic_name()) { AudioEvent audio_event; if (audio_event.ParseFromString(message.content)) { writer.WriteMessage<AudioEvent>(message.channel_name, audio_event, message.time); AINFO << "Save an audio even message."; } } else if (message.channel_name == audio_conf.topic_conf().localization_topic_name()) { LocalizationEstimate localization; if (localization.ParseFromString(message.content)) { writer.WriteMessage<LocalizationEstimate>( message.channel_name, localization, message.time); AINFO << "Save a localization message."; } } else if (message.channel_name == audio_conf.topic_conf().perception_topic_name()) { PerceptionObstacles perception_obstacles; if (perception_obstacles.ParseFromString(message.content)) { writer.WriteMessage<PerceptionObstacles>( message.channel_name, perception_obstacles, message.time); AINFO << "Save a perception message."; } } } writer.Close(); } void ProcessFolder() { if (FLAGS_audio_records_dir.empty()) { AERROR << "The input folder is empty"; return; } AudioConf audio_conf; if (!cyber::common::GetProtoFromFile(FLAGS_audio_conf_file, &audio_conf)) { return; } AudioInfo audio_info; DirectionDetection direction_detection; MovingDetection moving_detection; SirenDetection siren_detection; std::vector<std::string> offline_bags; GetRecordFileNames(boost::filesystem::path(FLAGS_audio_records_dir), &offline_bags); std::sort(offline_bags.begin(), offline_bags.end()); for (std::size_t i = 0; i < offline_bags.size(); ++i) { const std::string& input_record_filepath = offline_bags[i]; std::string output_record_filepath = input_record_filepath + ".new_audio_detection"; ProcessSingleRecordFile(audio_conf, input_record_filepath, output_record_filepath, &audio_info, &direction_detection, &moving_detection, &siren_detection); } } } // namespace audio } // namespace apollo int main(int argc, char* argv[]) { google::ParseCommandLineFlags(&argc, &argv, true); apollo::audio::ProcessFolder(); return 0; }
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/tools/README.md
## Dump audio to wave We provide tools to dump audio data from topic `/apollo/sensor/microphone` to wave files. ### How To do so, 1. Change `WAV_SAVING_PATH` in `audiosaver.py` to the directory for saving wave files, which is default to `/tmp`. 2. Run command `python3 audiosaver.py` to start to listen to audio data from the topic `/apollo/sensor/microphone` (while playing a record, etc.). 3. Terminate the program with `Ctrl + C` when you want to stop listening & save data to wave files under the target directory. By default, there are 6 audio channels, so 6 files will be generated -- one for each audio channel. For information of the audio channel, refer to [Microphone](../../drivers/microphone/README.md) and [Microphone Configuration](../../drivers/microphone/conf/respeaker.pb.txt). ### Other References * Hardware Specification -- [Respeaker](../../../docs/specs/Microphone/Re_Speaker_USB_Mic_Array_Guide.md) * Driver Configuration -- [Microphone](../../drivers/microphone/README.md)
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/tools/audiosaver.py
#!/usr/bin/env python3 # **************************************************************************** # Copyright 2020 The Apollo Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # **************************************************************************** # -*- coding: utf-8 -*- import atexit import os import wave from cyber.python.cyber_py3 import cyber from modules.drivers.microphone.proto.audio_pb2 import AudioData RESPEAKER_CHANNEL = "/apollo/sensor/microphone" WAV_SAVING_PATH = "/tmp" frames = [b"" for _ in range(6)] sample_width = 0 sample_rate = 0 def save_to_wave(frames, filepath, sample_width, sample_rate, n_channels=1): """Save frame to file.wave""" with wave.open(filepath, 'wb') as wf: wf.setnchannels(n_channels) wf.setsampwidth(sample_width) wf.setframerate(sample_rate) wf.writeframes(frames) def before_exit(): for idx, data in enumerate(frames): file_path = os.path.join(WAV_SAVING_PATH, "channel_{}.wav".format(idx)) save_to_wave(data, file_path, sample_width, sample_rate, 1) print("Done...") def callback(audio): global frames, sample_width, sample_rate sample_width = audio.microphone_config.sample_width sample_rate = audio.microphone_config.sample_rate print("=" * 40) print(audio.header) for idx, channel_data in enumerate(audio.channel_data): frames[idx] += channel_data.data def run(): print("=" * 120) test_node = cyber.Node("audiosaver") test_node.create_reader(RESPEAKER_CHANNEL, AudioData, callback) test_node.spin() if __name__ == '__main__': atexit.register(before_exit) cyber.init() run() cyber.shutdown()
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/tools/BUILD
load("@rules_cc//cc:defs.bzl", "cc_binary") load("//tools:cpplint.bzl", "cpplint") load("@rules_python//python:defs.bzl", "py_binary") load("//tools/install:install.bzl", "install") package(default_visibility = ["//visibility:public"]) install( name = "install", runtime_dest = "audio/bin", targets = [ ":audio_offline_processing", ], visibility = ["//visibility:public"], ) py_binary( name = "audiosaver", srcs = ["audiosaver.py"], deps = [ "//cyber/python/cyber_py3:cyber", "//modules/common_msgs/basic_msgs:header_py_pb2", "//modules/drivers/microphone/proto:audio_py_pb2", "//modules/drivers/microphone/proto:microphone_config_py_pb2", ], tags = ["exclude"] ) cc_binary( name = "audio_offline_processing", srcs = ["audio_offline_processing.cc"], copts = [ "-DMODULE_NAME=\\\"audio\\\"", ], linkopts = [ "-lgomp", ], deps = [ "//cyber", "//modules/audio/common:audio_gflags", "//modules/audio/common:message_process", "//modules/audio/proto:audio_conf_cc_proto", "//modules/common_msgs/audio_msgs:audio_event_cc_proto", "//modules/common_msgs/localization_msgs:localization_cc_proto", "//modules/common_msgs/perception_msgs:perception_obstacle_cc_proto", "@boost", ], ) cpplint()
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/proto/audio_conf.proto
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ syntax = "proto2"; package apollo.audio; message TopicConf { optional string audio_data_topic_name = 1; optional string audio_detection_topic_name = 2; optional string localization_topic_name = 3; optional string audio_event_topic_name = 4; optional string perception_topic_name = 5; } message AudioConf { optional TopicConf topic_conf = 1; optional string respeaker_extrinsics_path = 2; }
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/proto/BUILD
## Auto generated by `proto_build_generator.py` load("@rules_proto//proto:defs.bzl", "proto_library") load("@rules_cc//cc:defs.bzl", "cc_proto_library") load("//tools:python_rules.bzl", "py_proto_library") load("//tools/install:install.bzl", "install", "install_files") package(default_visibility = ["//visibility:public"]) cc_proto_library( name = "audio_conf_cc_proto", deps = [ ":audio_conf_proto", ], ) proto_library( name = "audio_conf_proto", srcs = ["audio_conf.proto"], ) py_proto_library( name = "audio_conf_py_pb2", deps = [ ":audio_conf_proto", ], ) install_files( name = "py_pb_audio", dest = "audio/python/modules/audio/proto", files = [ "audio_conf_py_pb2", ] )
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/launch/audio.launch
<cyber> <module> <name>audio</name> <dag_conf>/apollo/modules/audio/dag/audio.dag</dag_conf> <process_name>audio</process_name> </module> </cyber>
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/dag/audio.dag
module_config { module_library : "/apollo/bazel-bin/modules/audio/libaudio_component.so" components { class_name : "AudioComponent" config { name: "audio" config_file_path: "/apollo/modules/audio/conf/audio_conf.pb.txt" flag_file_path: "/apollo/modules/audio/conf/audio.conf" readers: [ { channel: "/apollo/sensor/microphone" qos_profile: { depth : 1 } } ] } } }
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/common/message_process.cc
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/audio/common/message_process.h" namespace apollo { namespace audio { using apollo::drivers::microphone::config::AudioData; void MessageProcess::OnMicrophone( const AudioData& audio_data, const std::string& respeaker_extrinsics_file, AudioInfo* audio_info, DirectionDetection* direction_detection, MovingDetection* moving_detection, SirenDetection* siren_detection, AudioDetection* audio_detection) { audio_info->Insert(audio_data); auto direction_result = direction_detection->EstimateSoundSource( audio_info->GetSignals(audio_data.microphone_config().chunk()), respeaker_extrinsics_file, audio_data.microphone_config().sample_rate(), audio_data.microphone_config().mic_distance()); *(audio_detection->mutable_position()) = direction_result.first; audio_detection->set_source_degree(direction_result.second); bool is_siren = siren_detection->Evaluate(audio_info->GetSignals(72000)); audio_detection->set_is_siren(is_siren); auto signals = audio_info->GetSignals(audio_data.microphone_config().chunk()); MovingResult moving_result = moving_detection->Detect(signals); audio_detection->set_moving_result(moving_result); } } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/common/audio_info.h
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include <deque> #include <memory> #include <string> #include <vector> #include "modules/drivers/microphone/proto/audio.pb.h" #include "modules/drivers/microphone/proto/microphone_config.pb.h" namespace apollo { namespace audio { class AudioInfo { public: AudioInfo() = default; void Insert( const apollo::drivers::microphone::config::AudioData&); std::vector<std::vector<double>> GetSignals(const int signal_length); private: void InsertChannelData( const std::size_t index, const apollo::drivers::microphone::config::ChannelData& channel_data, const apollo::drivers::microphone::config::MicrophoneConfig& microphone_config); std::vector<std::deque<double>> signals_; }; } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/common/message_process.h
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #pragma once #include <string> #include "modules/audio/common/audio_info.h" #include "modules/audio/inference/direction_detection.h" #include "modules/audio/inference/moving_detection.h" #include "modules/audio/inference/siren_detection.h" #include "modules/common_msgs/audio_msgs/audio.pb.h" #include "modules/drivers/microphone/proto/audio.pb.h" namespace apollo { namespace audio { class MessageProcess { public: MessageProcess() = delete; static void OnMicrophone( const apollo::drivers::microphone::config::AudioData& audio_data, const std::string& respeaker_extrinsics_file, AudioInfo* audio_info, DirectionDetection* direction_detection, MovingDetection* moving_detection, SirenDetection* siren_detection, AudioDetection* audio_detection); }; } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/common/BUILD
load("@rules_cc//cc:defs.bzl", "cc_library") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) cc_library( name = "audio_gflags", srcs = ["audio_gflags.cc"], hdrs = ["audio_gflags.h"], deps = [ "@com_github_gflags_gflags//:gflags", ], ) cc_library( name = "audio_info", srcs = ["audio_info.cc"], hdrs = ["audio_info.h"], deps = [ ":audio_gflags", "//modules/drivers/microphone/proto:audio_cc_proto", "//modules/drivers/microphone/proto:microphone_config_cc_proto", ], ) cc_library( name = "message_process", srcs = ["message_process.cc"], hdrs = ["message_process.h"], deps = [ ":audio_info", "//modules/audio/inference:direction_detection", "//modules/audio/inference:moving_detection", "//modules/audio/inference:siren_detection", "//modules/common_msgs/audio_msgs:audio_cc_proto", "//modules/drivers/microphone/proto:audio_cc_proto", ], ) cpplint()
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/common/audio_gflags.h
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #pragma once #include "gflags/gflags.h" DECLARE_int32(cache_signal_time); DECLARE_string(torch_siren_detection_model); DECLARE_string(audio_records_dir); DECLARE_string(audio_conf_file);
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/common/audio_gflags.cc
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/audio/common/audio_gflags.h" DEFINE_int32(cache_signal_time, 3, "The time to cache signal"); DEFINE_string(torch_siren_detection_model, "/apollo/modules/audio/data/torch_siren_detection_model.pt", "Siren detection model file"); DEFINE_string(audio_records_dir, "", "The dir path to offline cyber records"); DEFINE_string(audio_conf_file, "/apollo/modules/audio/conf/audio_conf.pb.txt", "Default conf file for audio module");
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/common/audio_info.cc
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/audio/common/audio_info.h" #include <algorithm> #include "modules/audio/common/audio_gflags.h" namespace apollo { namespace audio { using apollo::drivers::microphone::config::AudioData; using apollo::drivers::microphone::config::ChannelData; using apollo::drivers::microphone::config::ChannelType; using apollo::drivers::microphone::config::MicrophoneConfig; void AudioInfo::Insert(const AudioData& audio_data) { std::size_t index = 0; for (const auto& channel_data : audio_data.channel_data()) { if (channel_data.channel_type() == ChannelType::RAW) { InsertChannelData(index, channel_data, audio_data.microphone_config()); ++index; } } } void AudioInfo::InsertChannelData(const std::size_t index, const ChannelData& channel_data, const MicrophoneConfig& microphone_config) { while (index >= signals_.size()) { signals_.push_back(std::deque<double>()); } int width = microphone_config.sample_width(); const std::string& data = channel_data.data(); for (std::size_t i = 0; i < data.length(); i += width) { int16_t signal = ((int16_t(data[i + 1])) << 8) | (0x00ff & data[i]); signals_[index].push_back(static_cast<double>(signal)); } std::size_t max_signal_length = static_cast<std::size_t>( FLAGS_cache_signal_time * microphone_config.sample_rate()); while (signals_[index].size() > max_signal_length) { signals_[index].pop_front(); } } std::vector<std::vector<double>> AudioInfo::GetSignals( const int signal_length) { std::vector<std::vector<double>> signals; for (std::size_t i = 0; i < signals_.size(); ++i) { int start_index = static_cast<int>(signals_[i].size()) - signal_length; start_index = std::max(0, start_index); std::deque<double>::iterator iter = signals_[i].begin(); iter += start_index; std::vector<double> signal(iter, signals_[i].end()); signals.push_back(signal); } return signals; } } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/inference/direction_detection.h
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #pragma once #include <algorithm> #include <cmath> #include <memory> #include <string> #include <utility> #include <vector> #include "Eigen/Eigen" // Eigen 3.3.7: #define ALIVE (0) // fastrtps: enum ChangeKind_t { ALIVE, ... }; #if defined(ALIVE) #undef ALIVE #endif #include "ATen/ATen.h" #include "torch/torch.h" #include "modules/common_msgs/basic_msgs/geometry.pb.h" namespace apollo { namespace audio { using apollo::common::Point3D; class DirectionDetection { public: DirectionDetection(); ~DirectionDetection(); // Estimates the position of the source of the sound std::pair<Point3D, double> EstimateSoundSource( std::vector<std::vector<double>>&& channels_vec, const std::string& respeaker_extrinsic_file, const int sample_rate, const double mic_distance); private: const double kSoundSpeed = 343.2; const int kDistance = 50; std::unique_ptr<Eigen::Matrix4d> respeaker2imu_ptr_; // Estimates the direction of the source of the sound double EstimateDirection(std::vector<std::vector<double>>&& channels_vec, const int sample_rate, const double mic_distance); bool LoadExtrinsics(const std::string& yaml_file, Eigen::Matrix4d* respeaker_extrinsic); // Computes the offset between the signal sig and the reference signal refsig // using the Generalized Cross Correlation - Phase Transform (GCC-PHAT)method. double GccPhat(const torch::Tensor& sig, const torch::Tensor& refsig, int fs, double max_tau, int interp); // Libtorch does not support Complex type currently. void ConjugateTensor(torch::Tensor* tensor); torch::Tensor ComplexMultiply(const torch::Tensor& a, const torch::Tensor& b); torch::Tensor ComplexAbsolute(const torch::Tensor& tensor); }; } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/inference/siren_detection.cc
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/audio/inference/siren_detection.h" #include <utility> #include <vector> #include <omp.h> #include "cyber/common/log.h" #include "modules/audio/common/audio_gflags.h" namespace apollo { namespace audio { SirenDetection::SirenDetection() : device_(torch::kCPU) { LoadModel(); } bool SirenDetection::Evaluate(const std::vector<std::vector<double>>& signals) { // Sanity checks. omp_set_num_threads(1); if (signals.size() == 0) { AERROR << "Got no channel in signals!"; return false; } if (signals[0].size() == 0) { AERROR << "Got no signal in channel 0!"; return false; } if (signals[0].size() != 72000) { AERROR << "signals[0].size() = " << signals[0].size() << ", skiping!"; return false; } torch::Tensor audio_tensor = torch::empty(4 * 1 * 72000); float* data = audio_tensor.data_ptr<float>(); for (const auto& channel : signals) { for (const auto& i : channel) { *data++ = static_cast<float>(i) / 32767.0; } } torch::Tensor torch_input = torch::from_blob(audio_tensor.data_ptr<float>(), {4, 1, 72000}); std::vector<torch::jit::IValue> torch_inputs; torch_inputs.push_back(torch_input.to(device_)); auto start_time = std::chrono::system_clock::now(); at::Tensor torch_output_tensor = torch_model_.forward(torch_inputs).toTensor() .to(torch::kCPU); auto end_time = std::chrono::system_clock::now(); std::chrono::duration<double> diff = end_time - start_time; AINFO << "SirenDetection used time: " << diff.count() * 1000 << " ms."; auto torch_output = torch_output_tensor.accessor<float, 2>(); // majority vote with 4 channels float neg_score = torch_output[0][0] + torch_output[1][0] + torch_output[2][0] + torch_output[3][0]; float pos_score = torch_output[0][1] + torch_output[1][1] + torch_output[2][1] + torch_output[3][1]; ADEBUG << "neg_score = " << neg_score << ", pos_score = " << pos_score; if (neg_score < pos_score) { return true; } else { return false; } } void SirenDetection::LoadModel() { if (torch::cuda::is_available()) { AINFO << "CUDA is available"; device_ = torch::Device(torch::kCUDA); } torch::set_num_threads(1); torch_model_ = torch::jit::load(FLAGS_torch_siren_detection_model, device_); } } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/inference/direction_detection.cc
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/audio/inference/direction_detection.h" #include "yaml-cpp/yaml.h" #include "cyber/common/file.h" #include "cyber/common/log.h" #include "modules/common/math/math_utils.h" namespace apollo { namespace audio { using torch::indexing::None; using torch::indexing::Slice; using apollo::common::math::NormalizeAngle; DirectionDetection::DirectionDetection() {} DirectionDetection::~DirectionDetection() {} std::pair<Point3D, double> DirectionDetection::EstimateSoundSource( std::vector<std::vector<double>>&& channels_vec, const std::string& respeaker_extrinsic_file, const int sample_rate, const double mic_distance) { if (!respeaker2imu_ptr_.get()) { respeaker2imu_ptr_.reset(new Eigen::Matrix4d); LoadExtrinsics(respeaker_extrinsic_file, respeaker2imu_ptr_.get()); } double degree = EstimateDirection(move(channels_vec), sample_rate, mic_distance); Eigen::Vector4d source_position(kDistance * sin(degree), kDistance * cos(degree), 0, 1); source_position = (*respeaker2imu_ptr_) * source_position; Point3D source_position_p3d; source_position_p3d.set_x(source_position[0]); source_position_p3d.set_y(source_position[1]); source_position_p3d.set_z(source_position[2]); degree = NormalizeAngle(degree); return {source_position_p3d, degree}; } double DirectionDetection::EstimateDirection( std::vector<std::vector<double>>&& channels_vec, const int sample_rate, const double mic_distance) { std::vector<torch::Tensor> channels_ts; auto options = torch::TensorOptions().dtype(torch::kFloat64); int size = static_cast<int>(channels_vec[0].size()); for (auto& signal : channels_vec) { channels_ts.push_back(torch::from_blob(signal.data(), {size}, options)); } double tau0, tau1; double theta0, theta1; const double max_tau = mic_distance / kSoundSpeed; tau0 = GccPhat(channels_ts[0], channels_ts[2], sample_rate, max_tau, 1); theta0 = asin(tau0 / max_tau) * 180 / M_PI; tau1 = GccPhat(channels_ts[1], channels_ts[3], sample_rate, max_tau, 1); theta1 = asin(tau1 / max_tau) * 180 / M_PI; int best_guess = 0; if (fabs(theta0) < fabs(theta1)) { best_guess = theta1 > 0 ? std::fmod(theta0 + 360, 360) : (180 - theta0); } else { best_guess = theta0 < 0 ? std::fmod(theta1 + 360, 360) : (180 - theta1); best_guess = (best_guess + 90 + 180) % 360; } best_guess = (-best_guess + 480) % 360; return static_cast<double>(best_guess) / 180 * M_PI; } bool DirectionDetection::LoadExtrinsics(const std::string& yaml_file, Eigen::Matrix4d* respeaker_extrinsic) { if (!apollo::cyber::common::PathExists(yaml_file)) { AINFO << yaml_file << " does not exist!"; return false; } YAML::Node node = YAML::LoadFile(yaml_file); double qw = 0.0; double qx = 0.0; double qy = 0.0; double qz = 0.0; double tx = 0.0; double ty = 0.0; double tz = 0.0; try { if (node.IsNull()) { AINFO << "Load " << yaml_file << " failed! please check!"; return false; } qw = node["transform"]["rotation"]["w"].as<double>(); qx = node["transform"]["rotation"]["x"].as<double>(); qy = node["transform"]["rotation"]["y"].as<double>(); qz = node["transform"]["rotation"]["z"].as<double>(); tx = node["transform"]["translation"]["x"].as<double>(); ty = node["transform"]["translation"]["y"].as<double>(); tz = node["transform"]["translation"]["z"].as<double>(); } catch (YAML::Exception& e) { AERROR << "load camera extrinsic file " << yaml_file << " with error, YAML exception:" << e.what(); return false; } respeaker_extrinsic->setConstant(0); Eigen::Quaterniond q; q.x() = qx; q.y() = qy; q.z() = qz; q.w() = qw; (*respeaker_extrinsic).block<3, 3>(0, 0) = q.normalized().toRotationMatrix(); (*respeaker_extrinsic)(0, 3) = tx; (*respeaker_extrinsic)(1, 3) = ty; (*respeaker_extrinsic)(2, 3) = tz; (*respeaker_extrinsic)(3, 3) = 1; return true; } double DirectionDetection::GccPhat(const torch::Tensor& sig, const torch::Tensor& refsig, int fs, double max_tau, int interp) { const int n_sig = sig.size(0), n_refsig = refsig.size(0), n = n_sig + n_refsig; torch::Tensor psig = at::constant_pad_nd(sig, {0, n_refsig}, 0); torch::Tensor prefsig = at::constant_pad_nd(refsig, {0, n_sig}, 0); psig = at::view_as_real(at::fft_rfft(psig, at::nullopt, 1)); prefsig = at::view_as_real(at::fft_rfft(prefsig, at::nullopt, 1)); ConjugateTensor(&prefsig); torch::Tensor r = ComplexMultiply(psig, prefsig); torch::Tensor cc = at::fft_ifftn(at::view_as_complex(r / ComplexAbsolute(r)), {interp * n}); int max_shift = static_cast<int>(interp * n / 2); if (max_tau != 0) max_shift = std::min(static_cast<int>(interp * fs * max_tau), max_shift); auto begin = cc.index({Slice(cc.size(0) - max_shift, None)}); auto end = cc.index({Slice(None, max_shift + 1)}); cc = at::cat({begin, end}); // find max cross correlation index const int shift = at::argmax(at::abs(cc), 0).item<int>() - max_shift; const double tau = shift / static_cast<double>(interp * fs); return tau; } void DirectionDetection::ConjugateTensor(torch::Tensor* tensor) { tensor->index_put_({"...", 1}, -tensor->index({"...", 1})); } torch::Tensor DirectionDetection::ComplexMultiply(const torch::Tensor& a, const torch::Tensor& b) { torch::Tensor real = a.index({"...", 0}) * b.index({"...", 0}) - a.index({"...", 1}) * b.index({"...", 1}); torch::Tensor imag = a.index({"...", 0}) * b.index({"...", 1}) + a.index({"...", 1}) * b.index({"...", 0}); return at::cat({real.reshape({-1, 1}), imag.reshape({-1, 1})}, 1); } torch::Tensor DirectionDetection::ComplexAbsolute(const torch::Tensor& tensor) { torch::Tensor res = tensor * tensor; res = at::sqrt(res.sum(1)).reshape({-1, 1}); return res; } } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/inference/siren_detection.h
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #pragma once #include <vector> #include "torch/script.h" #include "torch/torch.h" namespace apollo { namespace audio { /** * @file moving_detection.h * @description detect if the sound is approaching or departing */ class SirenDetection { public: SirenDetection(); ~SirenDetection() = default; bool Evaluate(const std::vector<std::vector<double>>& signals); private: void LoadModel(); private: torch::jit::script::Module torch_model_; torch::Device device_; }; } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/inference/siren_detection_test.cc
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/audio/inference/siren_detection.h" #include "gtest/gtest.h" namespace apollo { namespace audio { class SirenDetectionTest : public ::testing::Test { public: virtual void SetUp() {} protected: SirenDetection siren_detection_; }; TEST_F(SirenDetectionTest, is_siren) { std::vector<std::vector<double>> signals(4, (std::vector<double> (72000, 0.01))); bool result = siren_detection_.Evaluate(signals); EXPECT_EQ(result, false); } } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/inference/moving_detection_test.cc
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/audio/inference/moving_detection.h" #include "gtest/gtest.h" namespace apollo { namespace audio { class MovingDetectionTest : public ::testing::Test { public: virtual void SetUp() {} protected: MovingDetection moving_detection_; }; TEST_F(MovingDetectionTest, fft1d) { std::vector<double> signal{1.0, 2.0, 3.0, 4.0, -1.0, -2.0}; std::vector<std::complex<double>> fft_result = moving_detection_.fft1d(signal); } TEST_F(MovingDetectionTest, moving) { std::vector<std::vector<double>> signals{ {1.0, 2.0, 3.0, 4.0, -1.0, -2.0}, {-1.0, -2.0, 3.0, 4.0, 1.0, -2.0}}; MovingResult result = moving_detection_.Detect(signals); EXPECT_EQ(result, UNKNOWN); } } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/inference/BUILD
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) cc_library( name = "moving_detection", srcs = ["moving_detection.cc"], hdrs = ["moving_detection.h"], deps = [ "//modules/common_msgs/audio_msgs:audio_cc_proto", "@fftw3", ], ) cc_library( name = "direction_detection", srcs = ["direction_detection.cc"], hdrs = ["direction_detection.h"], deps = [ "//cyber", "//modules/common/math", "//modules/common_msgs/basic_msgs:geometry_cc_proto", "//third_party:libtorch", "@com_github_jbeder_yaml_cpp//:yaml-cpp", "@eigen", ], ) cc_library( name = "siren_detection", srcs = ["siren_detection.cc"], hdrs = ["siren_detection.h"], deps = [ "//cyber", "//modules/audio/common:audio_gflags", "//third_party:libtorch", ], ) # cc_test( # name = "siren_detection_test", # size = "small", # srcs = ["siren_detection_test.cc"], # deps = [ # ":siren_detection", # "@com_google_googletest//:gtest_main", # ], # ) cc_test( name = "moving_detection_test", size = "small", srcs = ["moving_detection_test.cc"], deps = [ ":moving_detection", "@com_google_googletest//:gtest_main", ], ) cpplint()
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/inference/moving_detection.h
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include <deque> #include <vector> #include <complex> #include "modules/common_msgs/audio_msgs/audio.pb.h" namespace apollo { namespace audio { /** * @file moving_detection.h * @description detect if the sound is approaching or departing */ class MovingDetection { public: MovingDetection() = default; std::vector<std::complex<double>> fft1d(const std::vector<double>& signals); MovingResult Detect(const std::vector<std::vector<double>>& signals); MovingResult DetectSingleChannel( const std::size_t channel_index, const std::vector<double>& signal); private: class SignalStat { public: SignalStat(double power, int top_frequency) : power_(power), top_frequency_(top_frequency) {} double power() const { return power_; } int top_frequency() const { return top_frequency_; } private: double power_; int top_frequency_; }; SignalStat GetSignalStat( const std::vector<std::complex<double>>& fft_results, const int start_frequency); MovingResult AnalyzePower(const std::deque<SignalStat>& signal_stats); MovingResult AnalyzeTopFrequence(const std::deque<SignalStat>& signal_stats); std::vector<std::deque<SignalStat>> signal_stats_; }; } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/inference/moving_detection.cc
/****************************************************************************** * Copyright 2020 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/audio/inference/moving_detection.h" #include <fftw3.h> namespace apollo { namespace audio { MovingResult MovingDetection::Detect( const std::vector<std::vector<double>>& signals) { int approaching_count = 0; int departing_count = 0; for (std::size_t i = 0; i < signals.size(); ++i) { while (signal_stats_.size() <= i) { signal_stats_.push_back({}); } MovingResult result = DetectSingleChannel(i, signals[i]); if (result == APPROACHING) { ++approaching_count; } else if (result == DEPARTING) { ++departing_count; } } if (approaching_count > departing_count) { return APPROACHING; } if (approaching_count < departing_count) { return DEPARTING; } return UNKNOWN; } MovingResult MovingDetection::DetectSingleChannel( const std::size_t channel_index, const std::vector<double>& signals) { static constexpr int kStartFrequency = 3; static constexpr int kFrameNumStored = 10; std::vector<std::complex<double>> fft_results = fft1d(signals); SignalStat signal_stat = GetSignalStat(fft_results, kStartFrequency); signal_stats_[channel_index].push_back(signal_stat); while (static_cast<int>(signal_stats_[channel_index].size()) > kFrameNumStored) { signal_stats_[channel_index].pop_front(); } // TODO(kechxu) refactor the following initial version MovingResult power_result = AnalyzePower(signal_stats_[channel_index]); if (power_result != UNKNOWN) { return power_result; } MovingResult top_frequency_result = AnalyzeTopFrequence(signal_stats_[channel_index]); return top_frequency_result; } MovingResult MovingDetection::AnalyzePower( const std::deque<SignalStat>& signal_stats) { int n = static_cast<int>(signal_stats.size()); if (n < 3) { return UNKNOWN; } double first = signal_stats[n - 3].power(); double second = signal_stats[n - 2].power(); double third = signal_stats[n - 1].power(); if (first < second && second < third) { return APPROACHING; } if (first > second && second > third) { return DEPARTING; } return UNKNOWN; } MovingResult MovingDetection::AnalyzeTopFrequence( const std::deque<SignalStat>& signal_stats) { int n = static_cast<int>(signal_stats.size()); if (n < 3) { return UNKNOWN; } int first = signal_stats[n - 3].top_frequency(); int second = signal_stats[n - 2].top_frequency(); int third = signal_stats[n - 1].top_frequency(); if (first < second && second < third) { return APPROACHING; } if (first > second && second > third) { return DEPARTING; } return UNKNOWN; } std::vector<std::complex<double>> MovingDetection::fft1d( const std::vector<double>& signal) { int n = static_cast<int>(signal.size()); fftw_complex in[n]; // NOLINT fftw_complex out[n]; // NOLINT for (int i = 0; i < n; ++i) { in[i][0] = signal[i]; in[i][1] = 0.0; } fftw_plan p = fftw_plan_dft_1d(n, in, out, FFTW_FORWARD, FFTW_ESTIMATE); fftw_execute(p); std::vector<std::complex<double>> output; output.reserve(n); for (int i = 0; i < n; ++i) { output.emplace_back(out[i][0], out[i][1]); } return output; } MovingDetection::SignalStat MovingDetection::GetSignalStat( const std::vector<std::complex<double>>& fft_results, const int start_frequency) { double total_power = 0.0; int top_frequency = -1; double max_power = -1.0; for (int i = start_frequency; i < static_cast<int>(fft_results.size()); ++i) { double power = std::abs(fft_results[i]); total_power += power; if (power > max_power) { max_power = power; top_frequency = i; } } return {total_power, top_frequency}; } } // namespace audio } // namespace apollo
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/conf/respeaker_extrinsics.yaml
header: stamp: secs: 0 nsecs: 0 seq: 0 frame_id: novatel child_frame_id: microphone transform: rotation: x: 0 y: 0 z: 0 w: 1 translation: x: 0.0 y: 0.68 z: 0.72
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/conf/audio_conf.pb.txt
topic_conf { audio_data_topic_name: "/apollo/sensor/microphone" audio_detection_topic_name: "/apollo/audio_detection" localization_topic_name: "/apollo/localization/pose" audio_event_topic_name: "/apollo/audio_event" perception_topic_name: "/apollo/perception/obstacles" } respeaker_extrinsics_path: "/apollo/modules/audio/conf/respeaker_extrinsics.yaml"
0
apollo_public_repos/apollo/modules/audio
apollo_public_repos/apollo/modules/audio/conf/audio.conf
--flagfile=/apollo/modules/common/data/global_flagfile.txt
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/map/cyberfile.xml
<package format="2"> <name>map</name> <version>local</version> <description> Apollo map module. </description> <maintainer email="apollo-support@baidu.com">Apollo</maintainer> <license>Apache License 2.0</license> <url type="website">https://www.apollo.auto/</url> <url type="repository">https://github.com/ApolloAuto/apollo</url> <url type="bugtracker">https://github.com/ApolloAuto/apollo/issues</url> <depend expose="False">3rd-rules-python-dev</depend> <depend expose="False">3rd-grpc-dev</depend> <depend expose="False">3rd-bazel-skylib-dev</depend> <depend expose="False">3rd-rules-proto-dev</depend> <depend lib_names="protobuf" repo_name="com_google_protobuf">3rd-protobuf-dev</depend> <depend type="binary" repo_name="common" lib_names="common">common-dev</depend> <depend type="binary" repo_name="cyber">cyber-dev</depend> <depend repo_name="common-msgs" lib_names="common-msgs">common-msgs-dev</depend> <depend repo_name="proj">3rd-proj-dev</depend> <depend repo_name="tinyxml2" so_names="tinyxml2">libtinyxml2-dev</depend> <depend repo_name="com_github_jbeder_yaml_cpp" lib_names="yaml-cpp">3rd-yaml-cpp-dev</depend> <depend repo_name="eigen">3rd-eigen3-dev</depend> <depend repo_name="com_google_absl" lib_names="absl">3rd-absl-dev</depend> <depend repo_name="com_github_google_glog" lib_names="glog">3rd-glog-dev</depend> <depend repo_name="com_google_googletest" lib_names="gtest,gtest_main">3rd-gtest-dev</depend> <depend repo_name="com_github_gflags_gflags" lib_names="gflags">3rd-gflags-dev</depend> <depend repo_name="com_github_nlohmann_json" lib_names="single_json,json">3rd-nlohmann-json-dev</depend> <depend repo_name="boost">3rd-boost-dev</depend> <type>module</type> <depend expose="False">3rd-gpus-dev</depend> <depend expose="False">3rd-rules-python-dev</depend> <depend expose="False">3rd-grpc-dev</depend> <depend expose="False">3rd-bazel-skylib-dev</depend> <depend expose="False">3rd-rules-proto-dev</depend> <depend repo_name="common-msgs" lib_names="common-msgs">common-msgs-dev</depend> <src_path url="https://github.com/ApolloAuto/apollo">//modules/map</src_path> </package>
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/map/map.BUILD
load("@rules_cc//cc:defs.bzl", "cc_library") cc_library( name = "map", includes = ["include"], hdrs = glob(["include/**/*.h"]), srcs = glob(["lib/**/*.so*"]), include_prefix = "modules/map", strip_include_prefix = "include", visibility = ["//visibility:public"], )
0
apollo_public_repos/apollo/modules
apollo_public_repos/apollo/modules/map/BUILD
load("//tools/install:install.bzl", "install", "install_files", "install_src_files") package( default_visibility = ["//visibility:public"], ) filegroup( name = "testdata", srcs = glob([ "testdata/**/*", ]), ) install( name = "map_testdata", data_dest = "map/addition_data", data = [":testdata"], ) install( name = "install", data_dest = "map", data = [ ":cyberfile.xml", ":map.BUILD", ], deps = [ ":pb_map", ":pb_hdrs", "//modules/map/data:install", "//modules/map/relative_map:install", "//modules/map/tools:install", "//modules/map/hdmap/adapter:install", "//modules/map/hdmap:install", "//modules/map/pnc_map:install", "//modules/map/relative_map/tools:install", ":map_testdata" ], ) install( name = "pb_hdrs", data_dest = "map/include", data = [ "//modules/map/relative_map/proto:navigator_config_cc_proto", "//modules/map/relative_map/proto:relative_map_config_cc_proto", ], ) install_files( name = "pb_map", dest = "map", files = [ "//modules/common_msgs/map_msgs:map_clear_area_py_pb2", "//modules/common_msgs/map_msgs:map_crosswalk_py_pb2", "//modules/common_msgs/map_msgs:map_geometry_py_pb2", "//modules/common_msgs/map_msgs:map_id_py_pb2", "//modules/common_msgs/map_msgs:map_junction_py_pb2", "//modules/common_msgs/map_msgs:map_lane_py_pb2", "//modules/common_msgs/map_msgs:map_overlap_py_pb2", "//modules/common_msgs/map_msgs:map_parking_space_py_pb2", "//modules/common_msgs/map_msgs:map_pnc_junction_py_pb2", "//modules/common_msgs/map_msgs:map_proto", "//modules/common_msgs/map_msgs:map_py_pb2", "//modules/common_msgs/map_msgs:map_road_py_pb2", "//modules/common_msgs/map_msgs:map_rsu_py_pb2", "//modules/common_msgs/map_msgs:map_signal_py_pb2", "//modules/common_msgs/map_msgs:map_speed_bump_py_pb2", "//modules/common_msgs/map_msgs:map_stop_sign_py_pb2", "//modules/common_msgs/map_msgs:map_yield_sign_py_pb2", "//modules/common_msgs/planning_msgs:navigation_py_pb2", "//modules/map/relative_map/proto:navigator_config_py_pb2", "//modules/map/relative_map/proto:relative_map_config_py_pb2", ], ) install_src_files( name = "install_src", deps = [ ":install_map_src", ":install_map_hdrs" ], ) install_src_files( name = "install_map_src", src_dir = ["."], dest = "map/src", filter = "*", ) install_src_files( name = "install_map_hdrs", src_dir = ["."], dest = "map/include", filter = "*.h", )
0
apollo_public_repos/apollo/modules/map/testdata
apollo_public_repos/apollo/modules/map/testdata/navigation_dummy/navigation_info.pb.txt
navigation_path { path { path_point { x: 587561.282296 y: 4141480.09692 z: 0.0 theta: -6.52312060112 kappa: 0.000226565029691 s: 164.796327455 dkappa: -9.70327000343e-05 } path_point { x: 587561.667274 y: 4141480.00275 z: 0.0 theta: -6.52303815275 kappa: 0.000190288653507 s: 165.192654595 dkappa: -8.50569112851e-05 } path_point { x: 587562.006507 y: 4141479.9198 z: 0.0 theta: -6.52297720383 kappa: 0.000157956476913 s: 165.541882491 dkappa: -9.88893068303e-05 } path_point { x: 587562.345745 y: 4141479.83687 z: 0.0 theta: -6.52292824473 kappa: 0.000122028931959 s: 165.891110387 dkappa: -0.000105762742934 } path_point { x: 587562.684986 y: 4141479.75395 z: 0.0 theta: -6.52289212078 kappa: 8.48153294964e-05 s: 166.240338283 dkappa: -0.000106369901459 } path_point { x: 587563.02423 y: 4141479.67104 z: 0.0 theta: -6.52286891308 kappa: 4.83830765451e-05 s: 166.589566179 dkappa: -0.000101403464264 } path_point { x: 587563.363475 y: 4141479.58814 z: 0.0 theta: -6.52285802294 kappa: 1.45576762972e-05 s: 166.938794075 dkappa: -9.15561132126e-05 } path_point { x: 587563.70272 y: 4141479.50524 z: 0.0 theta: -6.52285825644 kappa: -1.50772718844e-05 s: 167.288021971 dkappa: -7.75205301647e-05 } path_point { x: 587564.027455 y: 4141479.42588 z: 0.0 theta: -6.52286780592 kappa: -4.25052891369e-05 s: 167.622312509 dkappa: -8.56054439707e-05 } path_point { x: 587564.352189 y: 4141479.34652 z: 0.0 theta: -6.52288687128 kappa: -7.17065964234e-05 s: 167.956603048 dkappa: -8.8262247018e-05 } path_point { x: 587564.67692 y: 4141479.26715 z: 0.0 theta: -6.52291575681 kappa: -0.0001009994504 s: 168.290893586 dkappa: -8.62855937073e-05 } path_point { x: 587565.001649 y: 4141479.18777 z: 0.0 theta: -6.52295424902 kappa: -0.00012896775317 s: 168.625184124 dkappa: -8.04701384395e-05 } path_point { x: 587565.326375 y: 4141479.10838 z: 0.0 theta: -6.52300170543 kappa: -0.000154461052285 s: 168.959474663 dkappa: -7.16105356153e-05 } path_point { x: 587565.651097 y: 4141479.02896 z: 0.0 theta: -6.52305714339 kappa: -0.000176594540744 s: 169.293765201 dkappa: -6.05014396357e-05 } path_point { x: 587565.977288 y: 4141478.94917 z: 0.0 theta: -6.52312001544 kappa: -0.000198233789364 s: 169.629573552 dkappa: -6.72504919836e-05 } path_point { x: 587566.303474 y: 4141478.86936 z: 0.0 theta: -6.52319041456 kappa: -0.00022108710273 s: 169.965381904 dkappa: -6.79783266917e-05 } path_point { x: 587566.629654 y: 4141478.78952 z: 0.0 theta: -6.5232684367 kappa: -0.000243380520548 s: 170.301190256 dkappa: -6.41620653114e-05 } path_point { x: 587566.955827 y: 4141478.70966 z: 0.0 theta: -6.52335366541 kappa: -0.000263836112279 s: 170.636998607 dkappa: -5.72788293943e-05 } path_point { x: 587567.281993 y: 4141478.62977 z: 0.0 theta: -6.52344533835 kappa: -0.000281671977135 s: 170.972806959 dkappa: -4.88057404917e-05 } path_point { x: 587567.608152 y: 4141478.54985 z: 0.0 theta: -6.52354251392 kappa: -0.000296602244082 s: 171.30861531 dkappa: -4.02199201551e-05 } path_point { x: 587567.995959 y: 4141478.45477 z: 0.0 theta: -6.52366428514 kappa: -0.000313533830327 s: 171.707906148 dkappa: -4.32515493572e-05 } path_point { x: 587568.383754 y: 4141478.35965 z: 0.0 theta: -6.52379286424 kappa: -0.000330262080192 s: 172.107196986 dkappa: -3.96710159533e-05 } path_point { x: 587568.771536 y: 4141478.26447 z: 0.0 theta: -6.5239277178 kappa: -0.000344709318749 s: 172.506487824 dkappa: -3.22958201897e-05 } path_point { x: 587569.159305 y: 4141478.16925 z: 0.0 theta: -6.5240677074 kappa: -0.000355922873102 s: 172.905778662 dkappa: -2.39434623126e-05 } path_point { x: 587569.547061 y: 4141478.07396 z: 0.0 theta: -6.52421153884 kappa: -0.000364075072388 s: 173.305069499 dkappa: -1.74314425683e-05 } path_point { x: 587569.871229 y: 4141477.99426 z: 0.0 theta: -6.52433406225 kappa: -0.000369967033765 s: 173.638892411 dkappa: -1.7096794486e-05 } path_point { x: 587570.195388 y: 4141477.91452 z: 0.0 theta: -6.52445845596 kappa: -0.000375071084824 s: 173.972715322 dkappa: -1.3000352582e-05 } path_point { x: 587570.519536 y: 4141477.83473 z: 0.0 theta: -6.52458427959 kappa: -0.000378421316422 s: 174.306538234 dkappa: -6.87874913322e-06 } path_point { x: 587570.843675 y: 4141477.75491 z: 0.0 theta: -6.52471086709 kappa: -0.000379631547057 s: 174.640361145 dkappa: -4.6861641642e-07 } path_point { x: 587571.167803 y: 4141477.67504 z: 0.0 theta: -6.52483752026 kappa: -0.00037889532287 s: 174.974184057 dkappa: 4.49341329158e-06 } path_point { x: 587571.491921 y: 4141477.59514 z: 0.0 theta: -6.52496370227 kappa: -0.000376985917644 s: 175.308006968 dkappa: 6.27070771398e-06 } path_point { x: 587571.878833 y: 4141477.49969 z: 0.0 theta: -6.52511333326 kappa: -0.00037363744029 s: 175.706516574 dkappa: 1.11878086488e-05 } path_point { x: 587572.26573 y: 4141477.40419 z: 0.0 theta: -6.52526115383 kappa: -0.00036773085802 s: 176.10502618 dkappa: 1.86506037887e-05 } path_point { x: 587572.652613 y: 4141477.30863 z: 0.0 theta: -6.52540601521 kappa: -0.00035879979423 s: 176.503535785 dkappa: 2.59083088021e-05 } path_point { x: 587573.039482 y: 4141477.21302 z: 0.0 theta: -6.52554680121 kappa: -0.000347474086293 s: 176.902045391 dkappa: 3.02101393575e-05 } path_point { x: 587573.426338 y: 4141477.11735 z: 0.0 theta: -6.52568286506 kappa: -0.000335479785566 s: 177.300554997 dkappa: 2.88053111236e-05 } path_point { x: 587573.813678 y: 4141477.02151 z: 0.0 theta: -6.52581422358 kappa: -0.000322373267644 s: 177.699575553 dkappa: 3.70648243844e-05 } path_point { x: 587574.201005 y: 4141476.92562 z: 0.0 theta: -6.52593968131 kappa: -0.000305906226475 s: 178.098596109 dkappa: 4.52815234218e-05 } path_point { x: 587574.58832 y: 4141476.82968 z: 0.0 theta: -6.52605795926 kappa: -0.000286535843113 s: 178.497616665 dkappa: 5.12495203905e-05 } path_point { x: 587574.975625 y: 4141476.7337 z: 0.0 theta: -6.5261681365 kappa: -0.000265599493204 s: 178.896637221 dkappa: 5.27629274453e-05 } path_point { x: 587575.362919 y: 4141476.63767 z: 0.0 theta: -6.52627000134 kappa: -0.000245314746991 s: 179.295657777 dkappa: 4.76158567407e-05 } path_point { x: 587575.688194 y: 4141476.557 z: 0.0 theta: -6.52634936665 kappa: -0.000227821158357 s: 179.630788848 dkappa: 5.65801332727e-05 } path_point { x: 587576.013463 y: 4141476.47629 z: 0.0 theta: -6.52642239265 kappa: -0.00020757472719 s: 179.965919918 dkappa: 6.39017557248e-05 } path_point { x: 587576.338726 y: 4141476.39557 z: 0.0 theta: -6.52648826505 kappa: -0.000185269280824 s: 180.301050989 dkappa: 6.87253995527e-05 } path_point { x: 587576.663984 y: 4141476.31482 z: 0.0 theta: -6.52654645008 kappa: -0.000161885292427 s: 180.636182059 dkappa: 7.01957402121e-05 } path_point { x: 587576.989238 y: 4141476.23406 z: 0.0 theta: -6.52659679063 kappa: -0.000138689880993 s: 180.97131313 dkappa: 6.74574531588e-05 } path_point { x: 587577.314488 y: 4141476.15328 z: 0.0 theta: -6.52663960223 kappa: -0.000117236811349 s: 181.306444201 dkappa: 5.96552138486e-05 } path_point { x: 587577.638104 y: 4141476.07289 z: 0.0 theta: -6.52667519092 kappa: -9.56979767836e-05 s: 181.639894154 dkappa: 6.90539899176e-05 } path_point { x: 587577.961716 y: 4141475.9925 z: 0.0 theta: -6.52670312981 kappa: -7.15234334129e-05 s: 181.973344107 dkappa: 7.54053387691e-05 } path_point { x: 587578.285327 y: 4141475.91209 z: 0.0 theta: -6.52672271596 kappa: -4.57879632766e-05 s: 182.30679406 dkappa: 7.83576779483e-05 } path_point { x: 587578.608937 y: 4141475.83168 z: 0.0 theta: -6.52673362436 kappa: -1.96835835677e-05 s: 182.640244014 dkappa: 7.75594249999e-05 } path_point { x: 587578.932546 y: 4141475.75127 z: 0.0 theta: -6.52673594702 kappa: 5.48045336752e-06 s: 182.973693967 dkappa: 7.26589974691e-05 } path_point { x: 587579.256155 y: 4141475.67086 z: 0.0 theta: -6.52673023208 kappa: 2.82776600296e-05 s: 183.30714392 dkappa: 6.33048129008e-05 } path_point { x: 587579.642161 y: 4141475.57495 z: 0.0 theta: -6.52671367012 kappa: 5.56781757394e-05 s: 183.704886109 dkappa: 7.35052626912e-05 } path_point { x: 587580.028168 y: 4141475.47905 z: 0.0 theta: -6.52668555481 kappa: 8.59945990481e-05 s: 184.102628298 dkappa: 7.80084352814e-05 } path_point { x: 587580.414179 y: 4141475.38316 z: 0.0 theta: -6.52664517049 kappa: 0.000117010189717 s: 184.500370488 dkappa: 7.70622664878e-05 } path_point { x: 587580.800194 y: 4141475.28729 z: 0.0 theta: -6.52659266359 kappa: 0.000146606822043 s: 184.898112677 dkappa: 7.09146921268e-05 } path_point { x: 587581.186214 y: 4141475.19144 z: 0.0 theta: -6.52652900337 kappa: 0.000172764984855 s: 185.295854866 dkappa: 5.98136480148e-05 } path_point { x: 587581.570274 y: 4141475.09611 z: 0.0 theta: -6.52645568297 kappa: 0.000198382804697 s: 185.691569438 dkappa: 6.8556476121e-05 } path_point { x: 587581.954341 y: 4141475.0008 z: 0.0 theta: -6.52637170815 kappa: 0.000226205440451 s: 186.08728401 dkappa: 7.1104402614e-05 } path_point { x: 587582.338416 y: 4141474.90554 z: 0.0 theta: -6.52627666839 kappa: 0.000253956332173 s: 186.482998582 dkappa: 6.83411599053e-05 } path_point { x: 587582.722501 y: 4141474.81031 z: 0.0 theta: -6.52617098487 kappa: 0.000279708625713 s: 186.878713154 dkappa: 6.11504804062e-05 } path_point { x: 587583.106596 y: 4141474.71512 z: 0.0 theta: -6.52605577203 kappa: 0.000301885172712 s: 187.274427726 dkappa: 5.04160965281e-05 } path_point { x: 587583.482923 y: 4141474.6219 z: 0.0 theta: -6.52593474204 kappa: 0.000322867705614 s: 187.662127085 dkappa: 5.66826978203e-05 } path_point { x: 587583.859261 y: 4141474.52873 z: 0.0 theta: -6.52580526784 kappa: 0.000345054804857 s: 188.049826443 dkappa: 5.68977616757e-05 } path_point { x: 587584.235612 y: 4141474.43562 z: 0.0 theta: -6.52566729696 kappa: 0.000366411707476 s: 188.437525802 dkappa: 5.26677607962e-05 } path_point { x: 587584.611976 y: 4141474.34255 z: 0.0 theta: -6.52552144511 kappa: 0.00038552647894 s: 188.825225161 dkappa: 4.55991678838e-05 } path_point { x: 587584.988354 y: 4141474.24954 z: 0.0 theta: -6.52536875464 kappa: 0.000401610013157 s: 189.21292452 dkappa: 3.72984556405e-05 } path_point { x: 587585.37294 y: 4141474.15457 z: 0.0 theta: -6.52520657313 kappa: 0.000417477459729 s: 189.60906336 dkappa: 4.1522180239e-05 } path_point { x: 587585.757541 y: 4141474.05966 z: 0.0 theta: -6.52503795987 kappa: 0.000433657302009 s: 190.0052022 dkappa: 3.93102236278e-05 } path_point { x: 587586.142159 y: 4141473.96482 z: 0.0 theta: -6.52486322787 kappa: 0.000448116560767 s: 190.401341039 dkappa: 3.32699749599e-05 } path_point { x: 587586.526794 y: 4141473.87005 z: 0.0 theta: -6.52468329092 kappa: 0.000459855144887 s: 190.797479879 dkappa: 2.60088233886e-05 } path_point { x: 587586.911445 y: 4141473.77534 z: 0.0 theta: -6.52449925437 kappa: 0.000468905851364 s: 191.193618719 dkappa: 2.01341580672e-05 } path_point { x: 587587.252191 y: 4141473.69151 z: 0.0 theta: -6.52433343181 kappa: 0.000476241627977 s: 191.544525096 dkappa: 2.08052954527e-05 } path_point { x: 587587.592951 y: 4141473.60774 z: 0.0 theta: -6.52416509147 kappa: 0.000483004607305 s: 191.895431473 dkappa: 1.71789981279e-05 } path_point { x: 587587.933725 y: 4141473.52402 z: 0.0 theta: -6.52399466083 kappa: 0.000488012622412 s: 192.246337849 dkappa: 1.11123443796e-05 } path_point { x: 587588.274513 y: 4141473.44036 z: 0.0 theta: -6.52382286785 kappa: 0.000490735166973 s: 192.597244226 dkappa: 4.46241249491e-06 } path_point { x: 587588.615316 y: 4141473.35676 z: 0.0 theta: -6.52365051233 kappa: 0.000491293395277 s: 192.948150603 dkappa: -9.1371923926e-07 } path_point { x: 587588.956133 y: 4141473.27322 z: 0.0 theta: -6.52347823719 kappa: 0.000490460122227 s: 193.29905698 dkappa: -3.15897253592e-06 } path_point { x: 587589.280574 y: 4141473.19375 z: 0.0 theta: -6.52331463205 kappa: 0.000488930661491 s: 193.633089112 dkappa: -6.48250431772e-06 } path_point { x: 587589.605028 y: 4141473.11434 z: 0.0 theta: -6.52315176995 kappa: 0.00048589295495 s: 193.967121244 dkappa: -1.19295245801e-05 } path_point { x: 587589.929496 y: 4141473.03498 z: 0.0 theta: -6.52299024416 kappa: 0.000480898225438 s: 194.301153377 dkappa: -1.79400862819e-05 } path_point { x: 587590.253976 y: 4141472.95566 z: 0.0 theta: -6.52283071082 kappa: 0.000474018768225 s: 194.635185509 dkappa: -2.29542423819e-05 } path_point { x: 587590.578468 y: 4141472.8764 z: 0.0 theta: -6.52267371488 kappa: 0.000465847951017 s: 194.969217642 dkappa: -2.5412045839e-05 } path_point { x: 587590.902973 y: 4141472.7972 z: 0.0 theta: -6.52251951608 kappa: 0.000457500213956 s: 195.303249774 dkappa: -2.3753549612e-05 } path_point { x: 587591.273713 y: 4141472.70676 z: 0.0 theta: -6.52234680506 kappa: 0.000447271787613 s: 195.684859751 dkappa: -2.9990380442e-05 } path_point { x: 587591.644469 y: 4141472.6164 z: 0.0 theta: -6.5221784615 kappa: 0.000434609976712 s: 196.066469727 dkappa: -3.62349194025e-05 } path_point { x: 587592.01524 y: 4141472.52609 z: 0.0 theta: -6.522015375 kappa: 0.000419823101411 s: 196.448079703 dkappa: -4.08558587308e-05 } path_point { x: 587592.386025 y: 4141472.43584 z: 0.0 theta: -6.52185819869 kappa: 0.000403842005186 s: 196.82968968 dkappa: -4.22218906644e-05 } path_point { x: 587592.756824 y: 4141472.34565 z: 0.0 theta: -6.52170711168 kappa: 0.00038822005483 s: 197.211299656 dkappa: -3.87017074407e-05 } path_point { x: 587593.082279 y: 4141472.26654 z: 0.0 theta: -6.52157941315 kappa: 0.000373867976662 s: 197.54623138 dkappa: -4.6697824735e-05 } path_point { x: 587593.407743 y: 4141472.18747 z: 0.0 theta: -6.52145693445 kappa: 0.0003571620019 s: 197.881163105 dkappa: -5.26955079806e-05 } path_point { x: 587593.733217 y: 4141472.10844 z: 0.0 theta: -6.52134034494 kappa: 0.000338833945836 s: 198.216094829 dkappa: -5.6321688131e-05 } path_point { x: 587594.058699 y: 4141472.02944 z: 0.0 theta: -6.52123004789 kappa: 0.000319740576419 s: 198.551026553 dkappa: -5.72032961396e-05 } path_point { x: 587594.38419 y: 4141471.95048 z: 0.0 theta: -6.52112613872 kappa: 0.000300863614261 s: 198.885958278 dkappa: -5.49672629596e-05 } path_point { x: 587594.709689 y: 4141471.87155 z: 0.0 theta: -6.5210283631 kappa: 0.000283309732628 s: 199.220890002 dkappa: -4.92405195445e-05 } path_point { x: 587595.047087 y: 4141471.78978 z: 0.0 theta: -6.52093315955 kappa: 0.000264658797166 s: 199.568056743 dkappa: -5.77316454451e-05 } path_point { x: 587595.384492 y: 4141471.70803 z: 0.0 theta: -6.52084488439 kappa: 0.000243567052814 s: 199.915223485 dkappa: -6.32645273688e-05 } path_point { x: 587595.721903 y: 4141471.62631 z: 0.0 theta: -6.52076420221 kappa: 0.00022110034954 s: 200.262390226 dkappa: -6.56153763303e-05 } path_point { x: 587596.059321 y: 4141471.54462 z: 0.0 theta: -6.52069139409 kappa: 0.000198402229404 s: 200.609556968 dkappa: -6.45604033443e-05 } path_point { x: 587596.396745 y: 4141471.46295 z: 0.0 theta: -6.52062633065 kappa: 0.000176693926562 s: 200.956723709 dkappa: -5.98758194255e-05 } path_point { x: 587596.734174 y: 4141471.3813 z: 0.0 theta: -6.52056844503 kappa: 0.000157274367259 s: 201.303890451 dkappa: -5.13378355885e-05 } path_point { x: 587597.121838 y: 4141471.28751 z: 0.0 theta: -6.52051001841 kappa: 0.000135222214374 s: 201.70273713 dkappa: -5.85774291465e-05 } path_point { x: 587597.509508 y: 4141471.19375 z: 0.0 theta: -6.52046085726 kappa: 0.000111078542384 s: 202.101583809 dkappa: -6.18229970821e-05 } path_point { x: 587597.897182 y: 4141471.10001 z: 0.0 theta: -6.52042147767 kappa: 8.6439554255e-05 s: 202.500430488 dkappa: -6.10584975807e-05 } path_point { x: 587598.284859 y: 4141471.00628 z: 0.0 theta: -6.52039175781 kappa: 6.29078511802e-05 s: 202.899277167 dkappa: -5.62678888279e-05 } path_point { x: 587598.672538 y: 4141470.91256 z: 0.0 theta: -6.5203709354 kappa: 4.2092432576e-05 s: 203.298123846 dkappa: -4.74351290091e-05 } path_point { x: 587599.056567 y: 4141470.81973 z: 0.0 theta: -6.52035821657 kappa: 2.18451023579e-05 s: 203.693213113 dkappa: -5.42340019704e-05 } path_point { x: 587599.440596 y: 4141470.7269 z: 0.0 theta: -6.52035390284 kappa: -1.48758205638e-07 s: 204.08830238 dkappa: -5.63755470581e-05 } path_point { x: 587599.824625 y: 4141470.63408 z: 0.0 theta: -6.52035833625 kappa: -2.21666964334e-05 s: 204.483391647 dkappa: -5.44551111249e-05 } path_point { x: 587600.208654 y: 4141470.54125 z: 0.0 theta: -6.52037122477 kappa: -4.27214747962e-05 s: 204.878480915 dkappa: -4.90680410237e-05 } path_point { x: 587600.592681 y: 4141470.44841 z: 0.0 theta: -6.52039173523 kappa: -6.05610709164e-05 s: 205.273570182 dkappa: -4.08096836071e-05 } path_point { x: 587600.971499 y: 4141470.35682 z: 0.0 theta: -6.52041860945 kappa: -7.77015104188e-05 s: 205.663302895 dkappa: -4.62433432396e-05 } path_point { x: 587601.350315 y: 4141470.26522 z: 0.0 theta: -6.52045244694 kappa: -9.59830977891e-05 s: 206.053035607 dkappa: -4.68809441324e-05 } path_point { x: 587601.729127 y: 4141470.17361 z: 0.0 theta: -6.52049336089 kappa: -0.000113788271338 s: 206.44276832 dkappa: -4.40137265882e-05 } path_point { x: 587602.107935 y: 4141470.08198 z: 0.0 theta: -6.52054093213 kappa: -0.000130002707961 s: 206.832501032 dkappa: -3.893293091e-05 } path_point { x: 587602.486739 y: 4141469.99033 z: 0.0 theta: -6.52059440529 kappa: -0.000144015323141 s: 207.222233745 dkappa: -3.29297974005e-05 } path_point { x: 587602.823952 y: 4141469.90872 z: 0.0 theta: -6.52064646582 kappa: -0.000156349830749 s: 207.569180606 dkappa: -3.74180868438e-05 } path_point { x: 587603.16116 y: 4141469.8271 z: 0.0 theta: -6.52070299035 kappa: -0.000169517332657 s: 207.916127467 dkappa: -3.79100925824e-05 } path_point { x: 587603.498364 y: 4141469.74546 z: 0.0 theta: -6.52076404886 kappa: -0.000182317058311 s: 208.263074328 dkappa: -3.54764542552e-05 } path_point { x: 587603.835563 y: 4141469.66379 z: 0.0 theta: -6.52082935914 kappa: -0.000193919692218 s: 208.610021189 dkappa: -3.11878115012e-05 } path_point { x: 587604.172756 y: 4141469.58211 z: 0.0 theta: -6.5208984157 kappa: -0.000203867373944 s: 208.95696805 dkappa: -2.61148039594e-05 } path_point { x: 587604.509944 y: 4141469.50039 z: 0.0 theta: -6.52097061861 kappa: -0.000212073698119 s: 209.303914911 dkappa: -2.13280712686e-05 } path_point { x: 587604.896528 y: 4141469.40668 z: 0.0 theta: -6.52105670917 kappa: -0.000220825846332 s: 209.701696083 dkappa: -2.20408421573e-05 } path_point { x: 587605.283104 y: 4141469.31293 z: 0.0 theta: -6.52114624617 kappa: -0.000229195524227 s: 210.099477256 dkappa: -1.96385486911e-05 } path_point { x: 587605.669672 y: 4141469.21915 z: 0.0 theta: -6.52123886797 kappa: -0.000236222258939 s: 210.497258429 dkappa: -1.55221676198e-05 } path_point { x: 587606.056231 y: 4141469.12533 z: 0.0 theta: -6.52133394171 kappa: -0.000241502859777 s: 210.895039602 dkappa: -1.10926756936e-05 } path_point { x: 587606.442781 y: 4141469.03147 z: 0.0 theta: -6.52143078499 kappa: -0.000245191418226 s: 211.292820775 dkappa: -7.75104966226e-06 } path_point { x: 587606.81764 y: 4141468.94042 z: 0.0 theta: -6.52152593498 kappa: -0.000248048788829 s: 211.678580737 dkappa: -6.6563322472e-06 } path_point { x: 587607.19249 y: 4141468.84932 z: 0.0 theta: -6.52162205277 kappa: -0.000250091149126 s: 212.064340699 dkappa: -3.72812713654e-06 } path_point { x: 587607.567332 y: 4141468.75819 z: 0.0 theta: -6.52171871767 kappa: -0.000250845627485 s: 212.450100661 dkappa: -1.81773058356e-07 } path_point { x: 587607.942165 y: 4141468.66703 z: 0.0 theta: -6.52181541703 kappa: -0.000250308181295 s: 212.835860623 dkappa: 2.7673912593e-06 } path_point { x: 587608.316989 y: 4141468.57583 z: 0.0 theta: -6.52191172705 kappa: -0.000248943596966 s: 213.221620585 dkappa: 3.90402708836e-06 } path_point { x: 587608.700375 y: 4141468.48251 z: 0.0 theta: -6.52200959832 kappa: -0.00024698127139 s: 213.616200791 dkappa: 6.21657052309e-06 } path_point { x: 587609.083751 y: 4141468.38914 z: 0.0 theta: -6.52210649389 kappa: -0.000243958526943 s: 214.010780997 dkappa: 9.13126273398e-06 } path_point { x: 587609.467118 y: 4141468.29575 z: 0.0 theta: -6.52220197146 kappa: -0.000239812589704 s: 214.405361204 dkappa: 1.17619869571e-05 } path_point { x: 587609.850476 y: 4141468.20231 z: 0.0 theta: -6.52229563296 kappa: -0.000234830329889 s: 214.79994141 dkappa: 1.32226264286e-05 } path_point { x: 587610.233826 y: 4141468.10884 z: 0.0 theta: -6.52238726245 kappa: -0.000229648261847 s: 215.194521616 dkappa: 1.26270643845e-05 } path_point { x: 587610.572988 y: 4141468.02612 z: 0.0 theta: -6.52246660836 kappa: -0.000224759612682 s: 215.543626438 dkappa: 1.53691290984e-05 } path_point { x: 587610.912143 y: 4141467.94337 z: 0.0 theta: -6.52254408392 kappa: -0.000218948927852 s: 215.89273126 dkappa: 1.78401564023e-05 } path_point { x: 587611.251292 y: 4141467.86059 z: 0.0 theta: -6.5226193922 kappa: -0.00021238329513 s: 216.241836082 dkappa: 1.96249855663e-05 } path_point { x: 587611.590434 y: 4141467.77778 z: 0.0 theta: -6.52269231988 kappa: -0.000205374736903 s: 216.590940904 dkappa: 2.03084558603e-05 } path_point { x: 587611.929571 y: 4141467.69496 z: 0.0 theta: -6.52276278789 kappa: -0.000198380210169 s: 216.940045726 dkappa: 1.94754065542e-05 } path_point { x: 587612.268702 y: 4141467.6121 z: 0.0 theta: -6.52283090197 kappa: -0.000192001606538 s: 217.289150547 dkappa: 1.67106769182e-05 } path_point { x: 587612.654786 y: 4141467.51775 z: 0.0 theta: -6.52290581449 kappa: -0.00018478393908 s: 217.686596308 dkappa: 1.94848951398e-05 } path_point { x: 587613.040863 y: 4141467.42337 z: 0.0 theta: -6.52297766161 kappa: -0.000176639067452 s: 218.084042068 dkappa: 2.13092566389e-05 } path_point { x: 587613.426934 y: 4141467.32897 z: 0.0 theta: -6.52304616047 kappa: -0.00016802467516 s: 218.481487828 dkappa: 2.17803505041e-05 } path_point { x: 587613.812998 y: 4141467.23453 z: 0.0 theta: -6.52311124197 kappa: -0.000159558779665 s: 218.878933589 dkappa: 2.04947658242e-05 } path_point { x: 587614.199056 y: 4141467.14008 z: 0.0 theta: -6.52317311448 kappa: -0.000152019732386 s: 219.276379349 dkappa: 1.70490916877e-05 } path_point { x: 587614.571729 y: 4141467.04887 z: 0.0 theta: -6.52323010277 kappa: -0.000144862974094 s: 219.660050424 dkappa: 1.99583942349e-05 } path_point { x: 587614.944397 y: 4141466.95764 z: 0.0 theta: -6.52328417374 kappa: -0.000136919774464 s: 220.0437215 dkappa: 2.11868880436e-05 } path_point { x: 587615.317059 y: 4141466.8664 z: 0.0 theta: -6.52333514373 kappa: -0.000128791000885 s: 220.427392575 dkappa: 2.09639899803e-05 } path_point { x: 587615.689718 y: 4141466.77513 z: 0.0 theta: -6.52338304273 kappa: -0.000120989500129 s: 220.81106365 dkappa: 1.95191169118e-05 } path_point { x: 587616.062372 y: 4141466.68385 z: 0.0 theta: -6.52342808063 kappa: -0.000113940098352 s: 221.194734726 dkappa: 1.70816857047e-05 } path_point { x: 587616.390028 y: 4141466.60358 z: 0.0 theta: -6.52346548667 kappa: -0.000107676057064 s: 221.532080663 dkappa: 1.97637488666e-05 } path_point { x: 587616.717681 y: 4141466.52329 z: 0.0 theta: -6.52350065868 kappa: -0.000100784969809 s: 221.869426601 dkappa: 2.08511974368e-05 } path_point { x: 587617.045331 y: 4141466.44299 z: 0.0 theta: -6.52353346993 kappa: -9.37521607323e-05 s: 222.206772539 dkappa: 2.06559522228e-05 } path_point { x: 587617.372979 y: 4141466.36269 z: 0.0 theta: -6.5235639397 kappa: -8.6957728764e-05 s: 222.544118477 dkappa: 1.94899340324e-05 } path_point { x: 587617.700624 y: 4141466.28237 z: 0.0 theta: -6.52359219771 kappa: -8.06765476153e-05 s: 222.881464415 dkappa: 1.76650636733e-05 } path_point { x: 587618.028268 y: 4141466.20204 z: 0.0 theta: -6.52361844869 kappa: -7.50782657802e-05 s: 223.218810353 dkappa: 1.54932619531e-05 } path_point { x: 587618.363378 y: 4141466.11988 z: 0.0 theta: -6.52364339208 kappa: -6.94122352912e-05 s: 223.563846441 dkappa: 1.71260796675e-05 } path_point { x: 587618.698486 y: 4141466.03771 z: 0.0 theta: -6.52366630882 kappa: -6.34017716117e-05 s: 223.908882528 dkappa: 1.75265316493e-05 } path_point { x: 587619.033592 y: 4141465.95553 z: 0.0 theta: -6.52368714908 kappa: -5.74340302719e-05 s: 224.253918616 dkappa: 1.69152042212e-05 } path_point { x: 587619.368697 y: 4141465.87334 z: 0.0 theta: -6.52370598343 kappa: -5.182005656e-05 s: 224.598954704 dkappa: 1.55126837056e-05 } path_point { x: 587619.7038 y: 4141465.79114 z: 0.0 theta: -6.52372297666 kappa: -4.67947855229e-05 s: 224.943990791 dkappa: 1.35395564249e-05 } path_point { x: 587620.038902 y: 4141465.70895 z: 0.0 theta: -6.52373836148 kappa: -4.25170419654e-05 s: 225.289026879 dkappa: 1.12164087016e-05 } path_point { x: 587620.365895 y: 4141465.62873 z: 0.0 theta: -6.52375201798 kappa: -3.85514551931e-05 s: 225.625715636 dkappa: 1.21801142364e-05 } path_point { x: 587620.692888 y: 4141465.54851 z: 0.0 theta: -6.52376430198 kappa: -3.44129889825e-05 s: 225.962404393 dkappa: 1.22727298673e-05 } path_point { x: 587621.01988 y: 4141465.46829 z: 0.0 theta: -6.52377520131 kappa: -3.036525176e-05 s: 226.29909315 dkappa: 1.16705474949e-05 } path_point { x: 587621.346871 y: 4141465.38806 z: 0.0 theta: -6.52378478258 kappa: -2.66124964512e-05 s: 226.635781907 dkappa: 1.05498590198e-05 } path_point { x: 587621.673861 y: 4141465.30783 z: 0.0 theta: -6.52379317116 kappa: -2.32996204808e-05 s: 226.972470664 dkappa: 9.08695634248e-06 } path_point { x: 587622.000851 y: 4141465.2276 z: 0.0 theta: -6.52380053121 kappa: -2.05121657728e-05 s: 227.30915942 dkappa: 7.4581313634e-06 } path_point { x: 587622.385978 y: 4141465.1331 z: 0.0 theta: -6.52380804744 kappa: -1.73342931215e-05 s: 227.70571173 dkappa: 8.39166583022e-06 } path_point { x: 587622.771106 y: 4141465.0386 z: 0.0 theta: -6.52381425612 kappa: -1.39786079434e-05 s: 228.10226404 dkappa: 8.40291766521e-06 } path_point { x: 587623.156232 y: 4141464.94409 z: 0.0 theta: -6.52381915173 kappa: -1.07537471375e-05 s: 228.498816349 dkappa: 7.77985093859e-06 } path_point { x: 587623.541359 y: 4141464.84959 z: 0.0 theta: -6.52382282847 kappa: -7.85415478589e-06 s: 228.895368659 dkappa: 6.81042972054e-06 } path_point { x: 587623.926485 y: 4141464.75508 z: 0.0 theta: -6.523825435 kappa: -5.36008215352e-06 s: 229.291920968 dkappa: 5.78261808127e-06 } path_point { x: 587624.250761 y: 4141464.6755 z: 0.0 theta: -6.52382688612 kappa: -3.2913944553e-06 s: 229.625818166 dkappa: 6.5120664536e-06 } path_point { x: 587624.575037 y: 4141464.59593 z: 0.0 theta: -6.52382761611 kappa: -1.06994680834e-06 s: 229.959715365 dkappa: 6.71512998433e-06 } path_point { x: 587624.899313 y: 4141464.51635 z: 0.0 theta: -6.52382760136 kappa: 1.14603200627e-06 s: 230.293612563 dkappa: 6.49680891177e-06 } path_point { x: 587625.223589 y: 4141464.43677 z: 0.0 theta: -6.52382686524 kappa: 3.23337249282e-06 s: 230.627509761 dkappa: 5.9621034742e-06 } path_point { x: 587625.547865 y: 4141464.3572 z: 0.0 theta: -6.52382546638 kappa: 5.10396444098e-06 s: 230.961406959 dkappa: 5.21601390993e-06 } path_point { x: 587625.872141 y: 4141464.27762 z: 0.0 theta: -6.523823487 kappa: 6.70475692578e-06 s: 231.295304157 dkappa: 4.36354045724e-06 } path_point { x: 587626.241325 y: 4141464.18703 z: 0.0 theta: -6.52382060792 kappa: 8.46714236368e-06 s: 231.675441382 dkappa: 4.7525932128e-06 } path_point { x: 587626.61051 y: 4141464.09643 z: 0.0 theta: -6.52381705151 kappa: 1.02186915951e-05 s: 232.055578607 dkappa: 4.35766180364e-06 } path_point { x: 587626.979694 y: 4141464.00584 z: 0.0 theta: -6.52381287115 kappa: 1.17196962089e-05 s: 232.435715832 dkappa: 3.48554677356e-06 } path_point { x: 587627.34888 y: 4141463.91525 z: 0.0 theta: -6.52380818916 kappa: 1.28470741013e-05 s: 232.815853057 dkappa: 2.44304866634e-06 } path_point { x: 587627.718065 y: 4141463.82466 z: 0.0 theta: -6.5238031525 kappa: 1.35943694758e-05 s: 233.195990282 dkappa: 1.53696802575e-06 } path_point { x: 587628.044775 y: 4141463.7445 z: 0.0 theta: -6.52379848851 kappa: 1.41278548075e-05 s: 233.532391362 dkappa: 1.42901681159e-06 } path_point { x: 587628.371485 y: 4141463.66434 z: 0.0 theta: -6.52379367212 kappa: 1.44450551064e-05 s: 233.868792442 dkappa: 3.3331639525e-07 } path_point { x: 587628.698196 y: 4141463.58417 z: 0.0 theta: -6.52378882268 kappa: 1.42966715469e-05 s: 234.205193521 dkappa: -1.25678717051e-06 } path_point { x: 587629.024907 y: 4141463.50401 z: 0.0 theta: -6.52378411546 kappa: 1.3599367448e-05 s: 234.541594601 dkappa: -2.84794783292e-06 } path_point { x: 587629.351618 y: 4141463.42386 z: 0.0 theta: -6.5237797259 kappa: 1.24357682738e-05 s: 234.877995681 dkappa: -3.94681953919e-06 } path_point { x: 587629.67833 y: 4141463.3437 z: 0.0 theta: -6.52377577369 kappa: 1.1054461633e-05 s: 235.21439676 dkappa: -4.06005623656e-06 } path_point { x: 587630.065617 y: 4141463.24868 z: 0.0 theta: -6.52377174018 kappa: 9.03007992909e-06 s: 235.613169277 dkappa: -6.22987422587e-06 } path_point { x: 587630.452904 y: 4141463.15367 z: 0.0 theta: -6.52376870325 kappa: 6.02672345566e-06 s: 236.011941794 dkappa: -8.84455435047e-06 } path_point { x: 587630.840192 y: 4141463.05865 z: 0.0 theta: -6.52376706869 kappa: 2.01706297592e-06 s: 236.41071431 dkappa: -1.11514391418e-05 } path_point { x: 587631.22748 y: 4141462.96364 z: 0.0 theta: -6.52376719338 kappa: -2.72609163402e-06 s: 236.809486827 dkappa: -1.23978711311e-05 } path_point { x: 587631.614767 y: 4141462.86862 z: 0.0 theta: -6.52376926554 kappa: -7.62979138514e-06 s: 237.208259343 dkappa: -1.183119285e-05 } path_point { x: 587631.954431 y: 4141462.78529 z: 0.0 theta: -6.52377272596 kappa: -1.23488015365e-05 s: 237.557996313 dkappa: -1.50846044288e-05 } path_point { x: 587632.294095 y: 4141462.70196 z: 0.0 theta: -6.52377802584 kappa: -1.81167170763e-05 s: 237.907733283 dkappa: -1.7785926879e-05 } path_point { x: 587632.633758 y: 4141462.61862 z: 0.0 theta: -6.52378549294 kappa: -2.46947915991e-05 s: 238.257470253 dkappa: -1.96740472462e-05 } path_point { x: 587632.973421 y: 4141462.53528 z: 0.0 theta: -6.52379535553 kappa: -3.17529578457e-05 s: 238.607207222 dkappa: -2.04878525759e-05 } path_point { x: 587633.313082 y: 4141462.45194 z: 0.0 theta: -6.5238077105 kappa: -3.88698277038e-05 s: 238.956944192 dkappa: -1.99662299135e-05 } path_point { x: 587633.652743 y: 4141462.36859 z: 0.0 theta: -6.52382249139 kappa: -4.55326922074e-05 s: 239.306681162 dkappa: -1.78480663046e-05 } path_point { x: 587634.038629 y: 4141462.27389 z: 0.0 theta: -6.52384205561 kappa: -5.30916086824e-05 s: 239.704016676 dkappa: -2.0067865183e-05 } path_point { x: 587634.424512 y: 4141462.17919 z: 0.0 theta: -6.5238647762 kappa: -6.13607228533e-05 s: 240.101352191 dkappa: -2.13867596876e-05 } path_point { x: 587634.810394 y: 4141462.08447 z: 0.0 theta: -6.52389085853 kappa: -6.99390329104e-05 s: 240.498687706 dkappa: -2.15881041607e-05 } path_point { x: 587635.196273 y: 4141461.98975 z: 0.0 theta: -6.52392033154 kappa: -7.83394560297e-05 s: 240.89602322 dkappa: -2.04552529445e-05 } path_point { x: 587635.582149 y: 4141461.89501 z: 0.0 theta: -6.52395301353 kappa: -8.59888283735e-05 s: 241.293358735 dkappa: -1.77715603813e-05 } path_point { x: 587635.968611 y: 4141461.80011 z: 0.0 theta: -6.52398868655 kappa: -9.34123308643e-05 s: 241.691301408 dkappa: -1.94818374801e-05 } path_point { x: 587636.35507 y: 4141461.7052 z: 0.0 theta: -6.52402743732 kappa: -0.000101420157977 s: 242.089244082 dkappa: -2.06344007271e-05 } path_point { x: 587636.741525 y: 4141461.61028 z: 0.0 theta: -6.52406944252 kappa: -0.000109702162863 s: 242.487186755 dkappa: -2.07859264352e-05 } path_point { x: 587637.127976 y: 4141461.51534 z: 0.0 theta: -6.52411472028 kappa: -0.000117771781262 s: 242.885129429 dkappa: -1.94930909173e-05 } path_point { x: 587637.514423 y: 4141461.42038 z: 0.0 theta: -6.52416306002 kappa: -0.000124966031499 s: 243.283072102 dkappa: -1.63125704863e-05 } path_point { x: 587637.841053 y: 4141461.3401 z: 0.0 theta: -6.5242060704 kappa: -0.000130944712995 s: 243.619423185 dkappa: -1.92272223005e-05 } path_point { x: 587638.16768 y: 4141461.25981 z: 0.0 theta: -6.52425125327 kappa: -0.000137867895949 s: 243.955774268 dkappa: -2.18535179635e-05 } path_point { x: 587638.494304 y: 4141461.1795 z: 0.0 theta: -6.52429890151 kappa: -0.00014556269376 s: 244.292125351 dkappa: -2.37401570165e-05 } path_point { x: 587638.820923 y: 4141461.09918 z: 0.0 theta: -6.52434922429 kappa: -0.000153704424426 s: 244.628476434 dkappa: -2.44358390007e-05 } path_point { x: 587639.147538 y: 4141461.01883 z: 0.0 theta: -6.52440229606 kappa: -0.000161816610548 s: 244.964827517 dkappa: -2.34892634572e-05 } path_point { x: 587639.474149 y: 4141460.93848 z: 0.0 theta: -6.52445800549 kappa: -0.00016927097933 s: 245.3011786 dkappa: -2.04491299272e-05 } path_point { x: 587639.797928 y: 4141460.8588 z: 0.0 theta: -6.52451568869 kappa: -0.000177014834159 s: 245.634617684 dkappa: -2.57791659213e-05 } path_point { x: 587640.121702 y: 4141460.7791 z: 0.0 theta: -6.52457622504 kappa: -0.000186306329367 s: 245.968056768 dkappa: -2.97037317711e-05 } path_point { x: 587640.44547 y: 4141460.69938 z: 0.0 theta: -6.5246400493 kappa: -0.000196648521883 s: 246.301495851 dkappa: -3.20530549818e-05 } path_point { x: 587640.769234 y: 4141460.61964 z: 0.0 theta: -6.52470742111 kappa: -0.000207487859853 s: 246.634934935 dkappa: -3.26573630583e-05 } path_point { x: 587641.092992 y: 4141460.53987 z: 0.0 theta: -6.52477840608 kappa: -0.000218214182637 s: 246.968374019 dkappa: -3.13468835059e-05 } path_point { x: 587641.416745 y: 4141460.46008 z: 0.0 theta: -6.52485285692 kappa: -0.00022816072081 s: 247.301813103 dkappa: -2.79518438296e-05 } path_point { x: 587641.789471 y: 4141460.3682 z: 0.0 theta: -6.52494264913 kappa: -0.000239959122466 s: 247.68569871 dkappa: -3.28555257863e-05 } path_point { x: 587642.162188 y: 4141460.27627 z: 0.0 theta: -6.52503724011 kappa: -0.000252937404273 s: 248.069584317 dkappa: -3.42515731736e-05 } path_point { x: 587642.534897 y: 4141460.18431 z: 0.0 theta: -6.52513684686 kappa: -0.000265924881178 s: 248.453469924 dkappa: -3.3056120239e-05 } path_point { x: 587642.907596 y: 4141460.09232 z: 0.0 theta: -6.52524130446 kappa: -0.000278102558883 s: 248.837355532 dkappa: -3.018530123e-05 } path_point { x: 587643.280285 y: 4141460.00028 z: 0.0 theta: -6.52535020108 kappa: -0.000289003133842 s: 249.221241139 dkappa: -2.65552503942e-05 } path_point { x: 587643.663832 y: 4141459.90551 z: 0.0 theta: -6.52546650082 kappa: -0.000299786460949 s: 249.61632152 dkappa: -2.73373274104e-05 } path_point { x: 587644.047368 y: 4141459.8107 z: 0.0 theta: -6.5255870226 kappa: -0.000310148302596 s: 250.011401901 dkappa: -2.46589842193e-05 } path_point { x: 587644.430892 y: 4141459.71585 z: 0.0 theta: -6.52571136688 kappa: -0.000319002894721 s: 250.406482282 dkappa: -1.99446401807e-05 } path_point { x: 587644.814404 y: 4141459.62094 z: 0.0 theta: -6.52583881633 kappa: -0.000325827233403 s: 250.801562664 dkappa: -1.46187146546e-05 } path_point { x: 587645.197904 y: 4141459.52599 z: 0.0 theta: -6.52596855817 kappa: -0.000330661074868 s: 251.196643045 dkappa: -1.01056270007e-05 } path_point { x: 587645.537988 y: 4141459.44174 z: 0.0 theta: -6.52608499311 kappa: -0.000333859265504 s: 251.547007928 dkappa: -7.90146338779e-06 } path_point { x: 587645.878063 y: 4141459.35745 z: 0.0 theta: -6.52620238582 kappa: -0.00033605866012 s: 251.897372811 dkappa: -4.50535378414e-06 } path_point { x: 587646.218128 y: 4141459.27312 z: 0.0 theta: -6.52632032559 kappa: -0.000336948001608 s: 252.247737694 dkappa: -5.24430439034e-07 } path_point { x: 587646.558183 y: 4141459.18875 z: 0.0 theta: -6.52643832998 kappa: -0.000336428750679 s: 252.598102577 dkappa: 3.43417439831e-06 } path_point { x: 587646.898228 y: 4141459.10434 z: 0.0 theta: -6.52655591923 kappa: -0.000334615085865 s: 252.94846746 dkappa: 6.76332847867e-06 } path_point { x: 587647.238263 y: 4141459.01989 z: 0.0 theta: -6.5266726909 kappa: -0.000331833903517 s: 253.298832343 dkappa: 8.85589955282e-06 } path_point { x: 587647.625555 y: 4141458.92366 z: 0.0 theta: -6.52680441468 kappa: -0.000328312099631 s: 253.697901625 dkappa: 8.97712657102e-06 } path_point { x: 587648.012834 y: 4141458.82737 z: 0.0 theta: -6.52693469939 kappa: -0.000324574704279 s: 254.096970907 dkappa: 9.80656386546e-06 } path_point { x: 587648.4001 y: 4141458.73103 z: 0.0 theta: -6.52706342329 kappa: -0.000320494498519 s: 254.49604019 dkappa: 1.05653691051e-05 } path_point { x: 587648.787355 y: 4141458.63464 z: 0.0 theta: -6.52719047586 kappa: -0.000316255075458 s: 254.895109472 dkappa: 1.04746999591e-05 } path_point { x: 587649.174597 y: 4141458.53821 z: 0.0 theta: -6.52731588187 kappa: -0.000312350840257 s: 255.294178754 dkappa: 8.75571409635e-06 } path_point { x: 587649.543561 y: 4141458.44628 z: 0.0 theta: -6.52743406998 kappa: -0.000309397064005 s: 255.674423393 dkappa: 7.07451339012e-06 } path_point { x: 587649.912514 y: 4141458.3543 z: 0.0 theta: -6.52755122046 kappa: -0.000306815497322 s: 256.054668033 dkappa: 6.61819267482e-06 } path_point { x: 587650.281457 y: 4141458.26228 z: 0.0 theta: -6.52766741229 kappa: -0.000304345471935 s: 256.434912672 dkappa: 6.3080475636e-06 } path_point { x: 587650.650389 y: 4141458.17022 z: 0.0 theta: -6.52778270329 kappa: -0.000302136491137 s: 256.815157311 dkappa: 5.06537366964e-06 } path_point { x: 587651.01931 y: 4141458.07812 z: 0.0 theta: -6.52789728614 kappa: -0.000300748229778 s: 257.195401951 dkappa: 1.8114666061e-06 } path_point { x: 587651.346125 y: 4141457.99649 z: 0.0 theta: -6.52799845604 kappa: -0.000299812212224 s: 257.532256451 dkappa: 3.83092884155e-06 } path_point { x: 587651.672931 y: 4141457.91483 z: 0.0 theta: -6.52809918838 kappa: -0.0002981332617 s: 257.869110951 dkappa: 6.1535205154e-06 } path_point { x: 587651.999729 y: 4141457.83313 z: 0.0 theta: -6.52819922352 kappa: -0.000295678944317 s: 258.205965451 dkappa: 8.36555188288e-06 } path_point { x: 587652.326519 y: 4141457.75141 z: 0.0 theta: -6.52829831437 kappa: -0.000292556179436 s: 258.542819951 dkappa: 1.00533331992e-05 } path_point { x: 587652.653301 y: 4141457.66965 z: 0.0 theta: -6.52839627333 kappa: -0.000289011239674 s: 258.879674451 dkappa: 1.08031747197e-05 } path_point { x: 587652.980075 y: 4141457.58786 z: 0.0 theta: -6.52849301922 kappa: -0.000285429750896 s: 259.216528951 dkappa: 1.02013866995e-05 } path_point { x: 587653.317652 y: 4141457.50333 z: 0.0 theta: -6.52859161091 kappa: -0.000280843233293 s: 259.564528547 dkappa: 1.61684776372e-05 } path_point { x: 587653.655221 y: 4141457.41876 z: 0.0 theta: -6.52868824657 kappa: -0.00027419982007 s: 259.912528143 dkappa: 2.19345635891e-05 } path_point { x: 587653.992782 y: 4141457.33417 z: 0.0 theta: -6.52878223324 kappa: -0.000265661412142 s: 260.260527739 dkappa: 2.69711884196e-05 } path_point { x: 587654.330335 y: 4141457.24954 z: 0.0 theta: -6.52887296628 kappa: -0.000255573812945 s: 260.608527336 dkappa: 3.07498959929e-05 } path_point { x: 587654.66788 y: 4141457.16489 z: 0.0 theta: -6.52895999343 kappa: -0.000244466728438 s: 260.956526932 dkappa: 3.27422301735e-05 } path_point { x: 587655.005419 y: 4141457.0802 z: 0.0 theta: -6.52904307874 kappa: -0.000233053767102 s: 261.304526528 dkappa: 3.24197348257e-05 } path_point { x: 587655.391823 y: 4141456.98322 z: 0.0 theta: -6.52913321334 kappa: -0.000219081334331 s: 261.702914971 dkappa: 3.78306133415e-05 } path_point { x: 587655.778218 y: 4141456.88621 z: 0.0 theta: -6.52921734566 kappa: -0.000202930589402 s: 262.101303414 dkappa: 4.30955494221e-05 } path_point { x: 587656.164606 y: 4141456.78916 z: 0.0 theta: -6.52929466068 kappa: -0.000184970183578 s: 262.499691857 dkappa: 4.66557153004e-05 } path_point { x: 587656.550987 y: 4141456.69209 z: 0.0 theta: -6.52936461399 kappa: -0.000166189787089 s: 262.8980803 dkappa: 4.69522832087e-05 } path_point { x: 587656.937361 y: 4141456.59499 z: 0.0 theta: -6.52942717912 kappa: -0.000148200089133 s: 263.296468743 dkappa: 4.24264253799e-05 } path_point { x: 587657.324973 y: 4141456.49755 z: 0.0 theta: -6.52948286515 kappa: -0.000130089712589 s: 263.696139609 dkappa: 4.79570768032e-05 } path_point { x: 587657.71258 y: 4141456.4001 z: 0.0 theta: -6.52953091759 kappa: -0.000110135359993 s: 264.095810475 dkappa: 5.14658367424e-05 } path_point { x: 587658.100183 y: 4141456.30262 z: 0.0 theta: -6.52957079097 kappa: -8.93706106711e-05 s: 264.495481341 dkappa: 5.18243357134e-05 } path_point { x: 587658.487782 y: 4141456.20514 z: 0.0 theta: -6.52960244306 kappa: -6.92800203566e-05 s: 264.895152208 dkappa: 4.79042042323e-05 } path_point { x: 587658.875379 y: 4141456.10764 z: 0.0 theta: -6.52962651505 kappa: -5.17991211929e-05 s: 265.294823074 dkappa: 3.85770728151e-05 } path_point { x: 587659.200633 y: 4141456.02582 z: 0.0 theta: -6.52964158395 kappa: -3.77043840919e-05 s: 265.63021071 dkappa: 4.495067945e-05 } path_point { x: 587659.525886 y: 4141455.94399 z: 0.0 theta: -6.529651625 kappa: -2.19863527932e-05 s: 265.965598346 dkappa: 4.82916533298e-05 } path_point { x: 587659.851138 y: 4141455.86216 z: 0.0 theta: -6.52965626046 kappa: -5.62744943021e-06 s: 266.300985982 dkappa: 4.8806832119e-05 } path_point { x: 587660.17639 y: 4141455.78033 z: 0.0 theta: -6.52965543044 kappa: 1.04592746595e-05 s: 266.636373618 dkappa: 4.67030534824e-05 } path_point { x: 587660.501642 y: 4141455.69851 z: 0.0 theta: -6.52964936965 kappa: 2.54301389334e-05 s: 266.971761254 dkappa: 4.21871550847e-05 } path_point { x: 587660.826895 y: 4141455.61668 z: 0.0 theta: -6.52963858411 kappa: 3.85108336446e-05 s: 267.30714889 dkappa: 3.54659745906e-05 } path_point { x: 587661.201796 y: 4141455.52237 z: 0.0 theta: -6.5296208619 kappa: 5.35845630933e-05 s: 267.693729877 dkappa: 4.18221239462e-05 } path_point { x: 587661.576699 y: 4141455.42807 z: 0.0 theta: -6.52959693556 kappa: 7.03704377071e-05 s: 268.080310864 dkappa: 4.44868981325e-05 } path_point { x: 587661.951604 y: 4141455.33378 z: 0.0 theta: -6.52956639467 kappa: 8.76305236111e-05 s: 268.46689185 dkappa: 4.44385220846e-05 } path_point { x: 587662.326512 y: 4141455.2395 z: 0.0 theta: -6.52952923428 kappa: 0.000104505050091 s: 268.853472837 dkappa: 4.26552207378e-05 } path_point { x: 587662.701425 y: 4141455.14524 z: 0.0 theta: -6.52948570871 kappa: 0.000120512409594 s: 269.240053824 dkappa: 4.01152190273e-05 } path_point { x: 587663.086923 y: 4141455.04833 z: 0.0 theta: -6.52943451857 kappa: 0.000137359351953 s: 269.637545125 dkappa: 4.47092695844e-05 } path_point { x: 587663.472426 y: 4141454.95145 z: 0.0 theta: -6.52937626789 kappa: 0.000156020460033 s: 270.035036427 dkappa: 4.90388532485e-05 } path_point { x: 587663.857935 y: 4141454.85459 z: 0.0 theta: -6.52931028873 kappa: 0.000176146817171 s: 270.432527729 dkappa: 5.18773098584e-05 } path_point { x: 587664.243451 y: 4141454.75775 z: 0.0 theta: -6.52923614877 kappa: 0.000196901919962 s: 270.830019031 dkappa: 5.19979792532e-05 } path_point { x: 587664.628974 y: 4141454.66095 z: 0.0 theta: -6.5291538451 kappa: 0.000216961678255 s: 271.227510332 dkappa: 4.81742012717e-05 } path_point { x: 587664.962966 y: 4141454.57711 z: 0.0 theta: -6.52907613887 kappa: 0.00023479442949 s: 271.571863449 dkappa: 5.57830670237e-05 } path_point { x: 587665.296965 y: 4141454.4933 z: 0.0 theta: -6.52899180696 kappa: 0.000255507367993 s: 271.916216566 dkappa: 6.45030923615e-05 } path_point { x: 587665.630971 y: 4141454.40952 z: 0.0 theta: -6.52889983902 kappa: 0.000279070715044 s: 272.260569683 dkappa: 7.19390035637e-05 } path_point { x: 587665.964986 y: 4141454.32578 z: 0.0 theta: -6.52879937697 kappa: 0.000304629871953 s: 272.604922799 dkappa: 7.56955269086e-05 } path_point { x: 587666.299008 y: 4141454.24207 z: 0.0 theta: -6.52868999905 kappa: 0.000330505420057 s: 272.949275916 dkappa: 7.33773886747e-05 } path_point { x: 587666.633041 y: 4141454.15839 z: 0.0 theta: -6.52857200381 kappa: 0.000354193120724 s: 273.293629033 dkappa: 6.25893151405e-05 } path_point { x: 587666.95753 y: 4141454.07715 z: 0.0 theta: -6.52844971322 kappa: 0.000377859628974 s: 273.628133637 dkappa: 7.83341214549e-05 } path_point { x: 587667.282029 y: 4141453.99595 z: 0.0 theta: -6.52831869321 kappa: 0.000406173180698 s: 273.962638241 dkappa: 9.02566610341e-05 } path_point { x: 587667.606539 y: 4141453.91479 z: 0.0 theta: -6.52817761628 kappa: 0.00043773751299 s: 274.297142845 dkappa: 9.76532240674e-05 } path_point { x: 587667.931061 y: 4141453.83368 z: 0.0 theta: -6.52802566137 kappa: 0.00047092096877 s: 274.63164745 dkappa: 9.98201007439e-05 } path_point { x: 587668.255596 y: 4141453.75262 z: 0.0 theta: -6.52786259258 kappa: 0.000503856496788 s: 274.966152054 dkappa: 9.60535812527e-05 } path_point { x: 587668.580145 y: 4141453.67162 z: 0.0 theta: -6.52768883793 kappa: 0.000534441651621 s: 275.300656658 dkappa: 8.56499557831e-05 } path_point { x: 587668.904362 y: 4141453.59076 z: 0.0 theta: -6.52750513512 kappa: 0.000565975839639 s: 275.634804766 dkappa: 0.000101624076733 } path_point { x: 587669.228594 y: 4141453.50996 z: 0.0 theta: -6.52731016065 kappa: 0.000601456760601 s: 275.968952874 dkappa: 0.000109519053139 } path_point { x: 587669.552843 y: 4141453.42923 z: 0.0 theta: -6.52710301926 kappa: 0.000638431827139 s: 276.303100982 dkappa: 0.000110813531673 } path_point { x: 587669.877109 y: 4141453.34857 z: 0.0 theta: -6.52688355264 kappa: 0.00067494253887 s: 276.63724909 dkappa: 0.000106986159009 } path_point { x: 587670.201393 y: 4141453.26798 z: 0.0 theta: -6.52665217438 kappa: 0.000709524482402 s: 276.971397198 dkappa: 9.95155818194e-05 } path_point { x: 587670.525696 y: 4141453.18746 z: 0.0 theta: -6.52640970485 kappa: 0.000741207331329 s: 277.305545306 dkappa: 8.98804467777e-05 } path_point { x: 587670.84959 y: 4141453.10714 z: 0.0 theta: -6.52615724859 kappa: 0.000772067129035 s: 277.639250986 dkappa: 9.39816972044e-05 } path_point { x: 587671.173504 y: 4141453.02689 z: 0.0 theta: -6.52589438176 kappa: 0.000803270218401 s: 277.972956666 dkappa: 9.21355034243e-05 } path_point { x: 587671.49744 y: 4141452.94674 z: 0.0 theta: -6.52562129896 kappa: 0.000833029729186 s: 278.306662346 dkappa: 8.55274950734e-05 } path_point { x: 587671.821398 y: 4141452.86667 z: 0.0 theta: -6.52533872505 kappa: 0.000859954442492 s: 278.640368027 dkappa: 7.53433017875e-05 } path_point { x: 587672.145379 y: 4141452.7867 z: 0.0 theta: -6.52504778314 kappa: 0.000883048790763 s: 278.974073707 dkappa: 6.27685532026e-05 } path_point { x: 587672.469383 y: 4141452.70682 z: 0.0 theta: -6.52474986253 kappa: 0.000901712857791 s: 279.307779387 dkappa: 4.89888789545e-05 } path_point { x: 587672.855382 y: 4141452.61179 z: 0.0 theta: -6.52438755204 kappa: 0.000920980172011 s: 279.705302572 dkappa: 4.6804916415e-05 } path_point { x: 587673.241415 y: 4141452.51691 z: 0.0 theta: -6.52401792476 kappa: 0.000938124578935 s: 280.102825758 dkappa: 3.85808699818e-05 } path_point { x: 587673.627483 y: 4141452.42216 z: 0.0 theta: -6.52364225874 kappa: 0.000951070174306 s: 280.500348943 dkappa: 2.59527153388e-05 } path_point { x: 587674.013587 y: 4141452.32757 z: 0.0 theta: -6.52326252801 kappa: 0.00095839139213 s: 280.897872129 dkappa: 1.05564281699e-05 } path_point { x: 587674.399727 y: 4141452.23312 z: 0.0 theta: -6.52288114402 kappa: 0.000959313004682 s: 281.295395314 dkappa: -5.97201584109e-06 } path_point { x: 587674.783807 y: 4141452.13933 z: 0.0 theta: -6.52250210002 kappa: 0.000958410657237 s: 281.690761145 dkappa: -1.45281091359e-06 } path_point { x: 587675.167923 y: 4141452.04569 z: 0.0 theta: -6.5221234568 kappa: 0.000956407051687 s: 282.086126976 dkappa: -1.02668477957e-05 } path_point { x: 587675.552074 y: 4141451.95219 z: 0.0 theta: -6.52174649238 kappa: 0.000949544139028 s: 282.481492806 dkappa: -2.4758132469e-05 } path_point { x: 587675.93626 y: 4141451.85883 z: 0.0 theta: -6.52137337223 kappa: 0.000937090788688 s: 282.876858637 dkappa: -3.72706709154e-05 } path_point { x: 587676.320481 y: 4141451.76562 z: 0.0 theta: -6.52100595252 kappa: 0.00092134278853 s: 283.272224467 dkappa: -4.01484691165e-05 } path_point { x: 587676.320481 y: 4141451.76562 z: 0.0 theta: -6.52100595252 kappa: 0.00092134278853 s: 0.0 dkappa: -4.01484691165e-05 } path_point { x: 587676.698417 y: 4141451.67408 z: 0.0 theta: -6.52065070789 kappa: 0.000905335967168 s: 0.388865203929 dkappa: -4.61632055164e-05 } path_point { x: 587677.076386 y: 4141451.58266 z: 0.0 theta: -6.5203026572 kappa: 0.000883245968102 s: 0.777730407858 dkappa: -6.91063666115e-05 } path_point { x: 587677.454386 y: 4141451.49138 z: 0.0 theta: -6.51996509374 kappa: 0.000851206826088 s: 1.16659561179 dkappa: -9.50044209573e-05 } path_point { x: 587677.832416 y: 4141451.40023 z: 0.0 theta: -6.51964175764 kappa: 0.000810786396039 s: 1.55546081572 dkappa: -0.000109883837109 } path_point { x: 587678.210475 y: 4141451.30919 z: 0.0 theta: -6.51933472281 kappa: 0.000768986353018 s: 1.94432601965 dkappa: -9.97710836214e-05 } path_point { x: 587678.597815 y: 4141451.21604 z: 0.0 theta: -6.51903739857 kappa: 0.000720581210773 s: 2.34270854614 dkappa: -0.000146040041052 } path_point { x: 587678.985181 y: 4141451.12301 z: 0.0 theta: -6.51876337068 kappa: 0.000651436526827 s: 2.74109107264 dkappa: -0.000201271930307 } path_point { x: 587679.372572 y: 4141451.03007 z: 0.0 theta: -6.51852119718 kappa: 0.000561110384725 s: 3.13947359914 dkappa: -0.000249759441151 } path_point { x: 587679.759983 y: 4141450.93722 z: 0.0 theta: -6.51831836573 kappa: 0.000455418385945 s: 3.53785612564 dkappa: -0.000275795263348 } path_point { x: 587680.147411 y: 4141450.84444 z: 0.0 theta: -6.51815880068 kappa: 0.000346433649902 s: 3.93623865214 dkappa: -0.000263672086663 } path_point { x: 587680.536178 y: 4141450.7514 z: 0.0 theta: -6.51804347706 kappa: 0.000225154405205 s: 4.33598437319 dkappa: -0.000344413906609 } path_point { x: 587680.924953 y: 4141450.65839 z: 0.0 theta: -6.51798318909 kappa: 7.10830110684e-05 s: 4.73573009423 dkappa: -0.00042511571082 } path_point { x: 587681.31373 y: 4141450.56539 z: 0.0 theta: -6.51799062321 kappa: -0.000112620833593 s: 5.13547581528 dkappa: -0.000490048986745 } path_point { x: 587681.702503 y: 4141450.47237 z: 0.0 theta: -6.51807594608 kappa: -0.000316510024276 s: 5.53522153633 dkappa: -0.000523485221836 } path_point { x: 587682.091265 y: 4141450.37931 z: 0.0 theta: -6.51824429126 kappa: -0.000524850050885 s: 5.93496725738 dkappa: -0.000509695903543 } path_point { x: 587682.425663 y: 4141450.29919 z: 0.0 theta: -6.518456474 kappa: -0.000714170754646 s: 6.27882968817 dkappa: -0.000594950223073 } path_point { x: 587682.760042 y: 4141450.21899 z: 0.0 theta: -6.5187391047 kappa: -0.000935178043846 s: 6.62269211897 dkappa: -0.000690376632155 } path_point { x: 587683.094394 y: 4141450.13868 z: 0.0 theta: -6.51910325285 kappa: -0.0011876381489 s: 6.96655454976 dkappa: -0.000774271282445 } path_point { x: 587683.428714 y: 4141450.05823 z: 0.0 theta: -6.51955862442 kappa: -0.00146385416218 s: 7.31041698055 dkappa: -0.000824930325601 } path_point { x: 587683.762993 y: 4141449.97762 z: 0.0 theta: -6.52011099553 kappa: -0.00174866603799 s: 7.65427941134 dkappa: -0.000820649913279 } path_point { x: 587684.097224 y: 4141449.8968 z: 0.0 theta: -6.52075964622 kappa: -0.00201945059261 s: 7.99814184214 dkappa: -0.000739726197136 } path_point { x: 587684.485597 y: 4141449.80258 z: 0.0 theta: -6.52162933823 kappa: -0.00234234746883 s: 8.39777959418 dkappa: -0.000880026411938 } path_point { x: 587684.873881 y: 4141449.708 z: 0.0 theta: -6.52263957462 kappa: -0.00272278476315 s: 8.79741734622 dkappa: -0.00101995591501 } path_point { x: 587685.262062 y: 4141449.613 z: 0.0 theta: -6.52381208604 kappa: -0.00315134294005 s: 9.19705509825 dkappa: -0.00111311576092 } path_point { x: 587685.650123 y: 4141449.5175 z: 0.0 theta: -6.52516113355 kappa: -0.00360005969375 s: 9.59669285029 dkappa: -0.00111310700421 } path_point { x: 587686.038046 y: 4141449.42145 z: 0.0 theta: -6.52668609822 kappa: -0.00402242994821 s: 9.99633060233 dkappa: -0.00097353069943 } path_point { x: 587686.425384 y: 4141449.32488 z: 0.0 theta: -6.52837580601 kappa: -0.0044587993808 s: 10.3955248544 dkappa: -0.00120799845089 } path_point { x: 587686.812549 y: 4141449.22762 z: 0.0 theta: -6.530257413 kappa: -0.00498084318208 s: 10.7947191064 dkappa: -0.00139708346772 } path_point { x: 587687.199519 y: 4141449.12959 z: 0.0 theta: -6.53236059817 kappa: -0.00556363810475 s: 11.1939133585 dkappa: -0.00150668345288 } path_point { x: 587687.586271 y: 4141449.03071 z: 0.0 theta: -6.53470237405 kappa: -0.00616864746057 s: 11.5931076105 dkappa: -0.0015026961093 } path_point { x: 587687.972779 y: 4141448.93087 z: 0.0 theta: -6.53728165238 kappa: -0.00674372112031 s: 11.9923018625 dkappa: -0.00135101913993 } path_point { x: 587688.296732 y: 4141448.84633 z: 0.0 theta: -6.53961985237 kappa: -0.00723747088886 s: 12.3271026387 dkappa: -0.0015923166188 } path_point { x: 587688.620479 y: 4141448.76101 z: 0.0 theta: -6.54213610061 kappa: -0.00780471769052 s: 12.6619034149 dkappa: -0.00178683007034 } path_point { x: 587688.944002 y: 4141448.67485 z: 0.0 theta: -6.54485201891 kappa: -0.00842654551129 s: 12.996704191 dkappa: -0.00191512892235 } path_point { x: 587689.26728 y: 4141448.58777 z: 0.0 theta: -6.54778180699 kappa: -0.00907753296654 s: 13.3315049672 dkappa: -0.00195778260263 } path_point { x: 587689.590293 y: 4141448.49971 z: 0.0 theta: -6.55093006446 kappa: -0.00972575330095 s: 13.6663057434 dkappa: -0.00189536053895 } path_point { x: 587689.913017 y: 4141448.4106 z: 0.0 theta: -6.55428961285 kappa: -0.0103327743886 s: 14.0011065196 dkappa: -0.00170843215914 } path_point { x: 587690.234603 y: 4141448.32061 z: 0.0 theta: -6.55784019689 kappa: -0.0109456347745 s: 14.3350478336 dkappa: -0.00195406371605 } path_point { x: 587690.555858 y: 4141448.22944 z: 0.0 theta: -6.56160815007 kappa: -0.0116313697969 s: 14.6689891476 dkappa: -0.00214139339687 } path_point { x: 587690.876757 y: 4141448.13702 z: 0.0 theta: -6.56561416816 kappa: -0.0123670131661 s: 15.0029304616 dkappa: -0.00224947809465 } path_point { x: 587691.197271 y: 4141448.04328 z: 0.0 theta: -6.56987010979 kappa: -0.0131226048242 s: 15.3368717756 dkappa: -0.00225737470243 } path_point { x: 587691.517371 y: 4141447.94813 z: 0.0 theta: -6.57437666095 kappa: -0.0138611909444 s: 15.6708130896 dkappa: -0.00214414011328 } path_point { x: 587691.837027 y: 4141447.85151 z: 0.0 theta: -6.57912099945 kappa: -0.0145388239314 s: 16.0047544036 dkappa: -0.00188883122025 } path_point { x: 587692.155909 y: 4141447.75343 z: 0.0 theta: -6.58408237846 kappa: -0.0152193477126 s: 16.3383803733 dkappa: -0.00217652984447 } path_point { x: 587692.474289 y: 4141447.65373 z: 0.0 theta: -6.58928517227 kappa: -0.0159809669079 s: 16.6720063431 dkappa: -0.00237295154966 } path_point { x: 587692.792133 y: 4141447.55233 z: 0.0 theta: -6.59475113116 kappa: -0.0167912020253 s: 17.0056323128 dkappa: -0.00246594415707 } path_point { x: 587693.109404 y: 4141447.44915 z: 0.0 theta: -6.60049049306 kappa: -0.0176135192908 s: 17.3392582826 dkappa: -0.00244335548794 } path_point { x: 587693.426063 y: 4141447.34411 z: 0.0 theta: -6.60650063099 kappa: -0.0184073306475 s: 17.6728842523 dkappa: -0.00229303336354 } path_point { x: 587693.742071 y: 4141447.23713 z: 0.0 theta: -6.61276470045 kappa: -0.0191279937565 s: 18.006510222 dkappa: -0.00200282560512 } path_point { x: 587694.057384 y: 4141447.12814 z: 0.0 theta: -6.61926405513 kappa: -0.019852075174 s: 18.3401307941 dkappa: -0.00231783592297 } path_point { x: 587694.371969 y: 4141447.01706 z: 0.0 theta: -6.62602027408 kappa: -0.0206611557235 s: 18.6737513662 dkappa: -0.00251240828958 } path_point { x: 587694.68578 y: 4141446.90381 z: 0.0 theta: -6.63305501525 kappa: -0.021515081835 s: 19.0073719382 dkappa: -0.00258670461368 } path_point { x: 587694.99877 y: 4141446.78832 z: 0.0 theta: -6.64037654949 kappa: -0.0223737539542 s: 19.3409925103 dkappa: -0.00254088680396 } path_point { x: 587695.31089 y: 4141446.67049 z: 0.0 theta: -6.64797977868 kappa: -0.0231971265431 s: 19.6746130823 dkappa: -0.00237511676914 } path_point { x: 587695.622089 y: 4141446.55025 z: 0.0 theta: -6.65584625367 kappa: -0.02394520808 s: 20.0082336544 dkappa: -0.00208955641792 } path_point { x: 587695.932493 y: 4141446.42746 z: 0.0 theta: -6.66396194695 kappa: -0.024695934731 s: 20.3420438628 dkappa: -0.00238703608121 } path_point { x: 587696.241874 y: 4141446.30211 z: 0.0 theta: -6.67234245527 kappa: -0.0255248148787 s: 20.6758540713 dkappa: -0.00255845107215 } path_point { x: 587696.550175 y: 4141446.17413 z: 0.0 theta: -6.68100691514 kappa: -0.026390411335 s: 21.0096642797 dkappa: -0.00260766278478 } path_point { x: 587696.857337 y: 4141446.04344 z: 0.0 theta: -6.68996084604 kappa: -0.0272525758844 s: 21.3434744881 dkappa: -0.00253853261318 } path_point { x: 587697.163298 y: 4141445.90996 z: 0.0 theta: -6.69919658069 kappa: -0.0280724492843 s: 21.6772846965 dkappa: -0.00235492195141 } path_point { x: 587697.467994 y: 4141445.77362 z: 0.0 theta: -6.70869369536 kappa: -0.0288124612648 s: 22.011094905 dkappa: -0.00206069219352 } path_point { x: 587697.831133 y: 4141445.6065 z: 0.0 theta: -6.7203855531 kappa: -0.0297031648064 s: 22.4108480465 dkappa: -0.00236462715812 } path_point { x: 587698.192261 y: 4141445.43507 z: 0.0 theta: -6.7324528872 kappa: -0.0306790094061 s: 22.810601188 dkappa: -0.00248855506727 } path_point { x: 587698.55126 y: 4141445.25923 z: 0.0 theta: -6.74491565307 kappa: -0.0316703089134 s: 23.2103543295 dkappa: -0.00244384411413 } path_point { x: 587698.908003 y: 4141445.07885 z: 0.0 theta: -6.75776685717 kappa: -0.0326119216488 s: 23.6101074711 dkappa: -0.00224186249188 } path_point { x: 587699.262366 y: 4141444.89385 z: 0.0 theta: -6.77097437369 kappa: -0.0334432504037 s: 24.0098606126 dkappa: -0.00189397839368 } path_point { x: 587699.613637 y: 4141444.70444 z: 0.0 theta: -6.78448060579 kappa: -0.0342613732877 s: 24.4089450591 dkappa: -0.00217308334092 } path_point { x: 587699.962285 y: 4141444.51025 z: 0.0 theta: -6.79833047901 kappa: -0.0351530575797 s: 24.8080295055 dkappa: -0.00226666102367 } path_point { x: 587700.308174 y: 4141444.31119 z: 0.0 theta: -6.81253921837 kappa: -0.036049089309 s: 25.207113952 dkappa: -0.00219890218632 } path_point { x: 587700.651164 y: 4141444.10717 z: 0.0 theta: -6.8270963531 kappa: -0.0368899086547 s: 25.6061983985 dkappa: -0.00199399757329 } path_point { x: 587700.991114 y: 4141443.89812 z: 0.0 theta: -6.84196956945 kappa: -0.0376256099459 s: 26.0052828449 dkappa: -0.00167613792899 } path_point { x: 587701.328282 y: 4141443.68374 z: 0.0 theta: -6.85714478966 kappa: -0.0383513838957 s: 26.4048381729 dkappa: -0.00192371954822 } path_point { x: 587701.662125 y: 4141443.46422 z: 0.0 theta: -6.8726247115 kappa: -0.0391387524904 s: 26.8043935008 dkappa: -0.00199018298206 } path_point { x: 587701.992494 y: 4141443.2395 z: 0.0 theta: -6.8884204028 kappa: -0.0399222162472 s: 27.2039488287 dkappa: -0.00190990270982 } path_point { x: 587702.319237 y: 4141443.00955 z: 0.0 theta: -6.90451950455 kappa: -0.0406500101897 s: 27.6035041566 dkappa: -0.00171725321078 } path_point { x: 587702.642203 y: 4141442.77432 z: 0.0 theta: -6.92089171864 kappa: -0.0412841038478 s: 28.0030594846 dkappa: -0.00144660896425 } path_point { x: 587702.961452 y: 4141442.53363 z: 0.0 theta: -6.9375197707 kappa: -0.0419073090507 s: 28.4028754955 dkappa: -0.00164070794903 } path_point { x: 587703.276623 y: 4141442.28763 z: 0.0 theta: -6.95440793268 kappa: -0.0425744373794 s: 28.8026915064 dkappa: -0.0016725141616 } path_point { x: 587703.587561 y: 4141442.0363 z: 0.0 theta: -6.97156178351 kappa: -0.0432280243751 s: 29.2025075173 dkappa: -0.00157915863163 } path_point { x: 587703.894109 y: 4141441.77964 z: 0.0 theta: -6.98896689468 kappa: -0.0438254511593 s: 29.6023235283 dkappa: -0.00139777238878 } path_point { x: 587704.196114 y: 4141441.51764 z: 0.0 theta: -7.00659476569 kappa: -0.0443389444337 s: 30.0021395392 dkappa: -0.0011654864627 } path_point { x: 587704.493515 y: 4141441.25025 z: 0.0 theta: -7.02442529126 kappa: -0.0448371034889 s: 30.4020741094 dkappa: -0.00129869723944 } path_point { x: 587704.786073 y: 4141440.97758 z: 0.0 theta: -7.04246164755 kappa: -0.0453588004948 s: 30.8020086795 dkappa: -0.00128989641155 } path_point { x: 587705.073637 y: 4141440.69964 z: 0.0 theta: -7.06070296277 kappa: -0.0458552799157 s: 31.2019432497 dkappa: -0.00117928962791 } path_point { x: 587705.356056 y: 4141440.41647 z: 0.0 theta: -7.07913208155 kappa: -0.046293865845 s: 31.6018778199 dkappa: -0.00100708253736 } path_point { x: 587705.633185 y: 4141440.12813 z: 0.0 theta: -7.09772199565 kappa: -0.0466579620047 s: 32.0018123901 dkappa: -0.000813480788766 } path_point { x: 587705.860041 y: 4141439.88386 z: 0.0 theta: -7.11332301361 kappa: -0.0469439607879 s: 32.335174716 dkappa: -0.000885128183782 } path_point { x: 587706.083047 y: 4141439.63608 z: 0.0 theta: -7.12902156241 kappa: -0.0472380936189 s: 32.6685370419 dkappa: -0.000866736916634 } path_point { x: 587706.302124 y: 4141439.38482 z: 0.0 theta: -7.14481584583 kappa: -0.0475148014731 s: 33.0018993677 dkappa: -0.000785043501888 } path_point { x: 587706.517193 y: 4141439.13011 z: 0.0 theta: -7.16069703286 kappa: -0.0477574382728 s: 33.3352616936 dkappa: -0.000666784454108 } path_point { x: 587706.728181 y: 4141438.87202 z: 0.0 theta: -7.17665222891 kappa: -0.0479582708868 s: 33.6686240195 dkappa: -0.000538696287861 } path_point { x: 587706.935016 y: 4141438.61059 z: 0.0 theta: -7.19266744709 kappa: -0.0481184791307 s: 34.0019863454 dkappa: -0.000427515517712 } path_point { x: 587707.137631 y: 4141438.34587 z: 0.0 theta: -7.20873279125 kappa: -0.0482663866917 s: 34.3353479533 dkappa: -0.000445571805085 } path_point { x: 587707.33596 y: 4141438.07793 z: 0.0 theta: -7.22484699175 kappa: -0.0484076323747 s: 34.6687095612 dkappa: -0.000392355733145 } path_point { x: 587707.52994 y: 4141437.80682 z: 0.0 theta: -7.24100440184 kappa: -0.0485232652126 s: 35.0020711691 dkappa: -0.000296715862866 } path_point { x: 587707.71951 y: 4141437.53261 z: 0.0 theta: -7.25719466024 kappa: -0.0486039512413 s: 35.335432777 dkappa: -0.000187500755221 } path_point { x: 587707.904612 y: 4141437.25537 z: 0.0 theta: -7.27340589704 kappa: -0.048649973499 s: 35.6687943849 dkappa: -9.35589711845e-05 } path_point { x: 587708.085194 y: 4141436.97516 z: 0.0 theta: -7.28962793964 kappa: -0.0486712320269 s: 36.0021559928 dkappa: -4.37390717302e-05 } path_point { x: 587708.261427 y: 4141436.69169 z: 0.0 theta: -7.30587565588 kappa: -0.048680724194 s: 36.3359414901 dkappa: -3.19708474099e-06 } path_point { x: 587708.433031 y: 4141436.4054 z: 0.0 theta: -7.3221233027 kappa: -0.0486682659352 s: 36.6697269873 dkappa: 8.31860736387e-05 } path_point { x: 587708.599962 y: 4141436.11636 z: 0.0 theta: -7.33836151212 kappa: -0.0486231613694 s: 37.0035124845 dkappa: 0.000187816412184 } path_point { x: 587708.762181 y: 4141435.82465 z: 0.0 theta: -7.35457888317 kappa: -0.0485439250895 s: 37.3372979817 dkappa: 0.00028309993967 } path_point { x: 587708.919652 y: 4141435.53035 z: 0.0 theta: -7.37076505625 kappa: -0.0484382821625 s: 37.671083479 dkappa: 0.000341442664873 } path_point { x: 587709.072344 y: 4141435.23354 z: 0.0 theta: -7.38691378743 kappa: -0.0483231681295 s: 38.0048689762 dkappa: 0.000335250596567 } path_point { x: 587709.220424 y: 4141434.93391 z: 0.0 theta: -7.40304448306 kappa: -0.0481959485047 s: 38.3390991218 dkappa: 0.000431146568183 } path_point { x: 587709.363658 y: 4141434.63193 z: 0.0 theta: -7.41912684033 kappa: -0.0480328686549 s: 38.6733292674 dkappa: 0.000545847972047 } path_point { x: 587709.502026 y: 4141434.32769 z: 0.0 theta: -7.43514826865 kappa: -0.047831640613 s: 39.007559413 dkappa: 0.000655434911688 } path_point { x: 587709.635513 y: 4141434.02128 z: 0.0 theta: -7.45109674875 kappa: -0.0475979711624 s: 39.3417895587 dkappa: 0.000735987490635 } path_point { x: 587709.764109 y: 4141433.71278 z: 0.0 theta: -7.46696350481 kappa: -0.047345561837 s: 39.6760197043 dkappa: 0.000763585812419 } path_point { x: 587709.887807 y: 4141433.40228 z: 0.0 theta: -7.48274567649 kappa: -0.0470961089211 s: 40.0102498499 dkappa: 0.000714309980568 } path_point { x: 587710.009168 y: 4141433.08297 z: 0.0 theta: -7.4987892893 kappa: -0.0468269731206 s: 40.3518519254 dkappa: 0.000863290254017 } path_point { x: 587710.125406 y: 4141432.76176 z: 0.0 theta: -7.51473217945 kappa: -0.0465064975027 s: 40.6934540008 dkappa: 0.0010105837704 } path_point { x: 587710.236527 y: 4141432.43874 z: 0.0 theta: -7.5305574104 kappa: -0.0461396739476 s: 41.0350560763 dkappa: 0.00113033775515 } path_point { x: 587710.342544 y: 4141432.11401 z: 0.0 theta: -7.5462512592 kappa: -0.0457403256973 s: 41.3766581517 dkappa: 0.00119669943372 } path_point { x: 587710.443474 y: 4141431.78766 z: 0.0 theta: -7.56180623338 kappa: -0.0453311073551 s: 41.7182602272 dkappa: 0.00118381603155 } path_point { x: 587710.539339 y: 4141431.45979 z: 0.0 theta: -7.57722408773 kappa: -0.0449435048858 s: 42.0598623026 dkappa: 0.00106583477406 } path_point { x: 587710.628584 y: 4141431.13636 z: 0.0 theta: -7.59223995073 kappa: -0.0445558127395 s: 42.3953774069 dkappa: 0.00124413963845 } path_point { x: 587710.712985 y: 4141430.81164 z: 0.0 theta: -7.60711593682 kappa: -0.0441107522438 s: 42.7308925112 dkappa: 0.00140364380778 } path_point { x: 587710.792572 y: 4141430.48571 z: 0.0 theta: -7.62183432485 kappa: -0.043618821313 s: 43.0664076155 dkappa: 0.00151937077752 } path_point { x: 587710.867381 y: 4141430.15864 z: 0.0 theta: -7.6363823217 kappa: -0.0430988978561 s: 43.4019227198 dkappa: 0.00156634404313 } path_point { x: 587710.937452 y: 4141429.83053 z: 0.0 theta: -7.65075487387 kappa: -0.0425782397766 s: 43.737437824 dkappa: 0.0015195871001 } path_point { x: 587711.002829 y: 4141429.50144 z: 0.0 theta: -7.66495747911 kappa: -0.0420924849725 s: 44.0729529283 dkappa: 0.00135412344388 } path_point { x: 587711.074688 y: 4141429.10799 z: 0.0 theta: -7.68167740986 kappa: -0.0414962830223 s: 44.4729208003 dkappa: 0.00161761557278 } path_point { x: 587711.140008 y: 4141428.7134 z: 0.0 theta: -7.69813954227 kappa: -0.0408082829398 s: 44.8728886723 dkappa: 0.00180770317499 } path_point { x: 587711.19888 y: 4141428.31779 z: 0.0 theta: -7.71431390296 kappa: -0.0400643810113 s: 45.2728565444 dkappa: 0.00189169945634 } path_point { x: 587711.251406 y: 4141427.92129 z: 0.0 theta: -7.73018749043 kappa: -0.0393135471902 s: 45.6728244164 dkappa: 0.00183691762264 } path_point { x: 587711.297689 y: 4141427.52401 z: 0.0 theta: -7.74576950412 kappa: -0.0386178250977 s: 46.0727922884 dkappa: 0.00161067087972 } path_point { x: 587711.331602 y: 4141427.19204 z: 0.0 theta: -7.75856160997 kappa: -0.0380353067618 s: 46.4064955595 dkappa: 0.00186965533556 } path_point { x: 587711.361298 y: 4141426.85966 z: 0.0 theta: -7.77114618522 kappa: -0.0373780389142 s: 46.7401988307 dkappa: 0.00205641377481 } path_point { x: 587711.386847 y: 4141426.52694 z: 0.0 theta: -7.78350255851 kappa: -0.0366723830958 s: 47.0739021019 dkappa: 0.0021574043305 } path_point { x: 587711.408323 y: 4141426.19393 z: 0.0 theta: -7.79561960943 kappa: -0.0359492198125 s: 47.407605373 dkappa: 0.00215908513567 } path_point { x: 587711.425802 y: 4141425.86069 z: 0.0 theta: -7.80749727646 kappa: -0.0352439485355 s: 47.7413086442 dkappa: 0.00204791432336 } path_point { x: 587711.43936 y: 4141425.52726 z: 0.0 theta: -7.81914806501 kappa: -0.0345964877014 s: 48.0750119153 dkappa: 0.00181035002658 } path_point { x: 587711.45053 y: 4141425.12809 z: 0.0 theta: -7.83280993326 kappa: -0.0338064593357 s: 48.4743419274 dkappa: 0.00212566715055 } path_point { x: 587711.456312 y: 4141424.72881 z: 0.0 theta: -7.84613458533 kappa: -0.0329163536847 s: 48.8736719395 dkappa: 0.0023091282115 } path_point { x: 587711.456846 y: 4141424.32948 z: 0.0 theta: -7.8590929609 kappa: -0.0319817572477 s: 49.2730019516 dkappa: 0.00234604652865 } path_point { x: 587711.45228 y: 4141423.93018 z: 0.0 theta: -7.87167936795 kappa: -0.0310641213567 s: 49.6723319637 dkappa: 0.00222173542119 } path_point { x: 587711.44276 y: 4141423.53096 z: 0.0 theta: -7.88391382486 kappa: -0.030230762176 s: 50.0716619758 dkappa: 0.00192150820832 } path_point { x: 587711.428407 y: 4141423.13155 z: 0.0 theta: -7.89583323252 kappa: -0.0293932341154 s: 50.4713370524 dkappa: 0.00224409470311 } path_point { x: 587711.409364 y: 4141422.73233 z: 0.0 theta: -7.90739622548 kappa: -0.028457535176 s: 50.871012129 dkappa: 0.00241212731684 } path_point { x: 587711.385782 y: 4141422.33335 z: 0.0 theta: -7.91857601286 kappa: -0.0274861972753 s: 51.2706872056 dkappa: 0.00242180004156 } path_point { x: 587711.357818 y: 4141421.93466 z: 0.0 theta: -7.9293711002 kappa: -0.0265432734974 s: 51.6703622822 dkappa: 0.00226930686929 } path_point { x: 587711.325626 y: 4141421.53629 z: 0.0 theta: -7.93980589745 kappa: -0.0256943380929 s: 52.0700373588 dkappa: 0.00195084179205 } path_point { x: 587711.295565 y: 4141421.20348 z: 0.0 theta: -7.94827731331 kappa: -0.024992319429 s: 52.404200771 dkappa: 0.00223059723374 } path_point { x: 587711.262727 y: 4141420.87093 z: 0.0 theta: -7.95650075942 kappa: -0.0242168608063 s: 52.7383641831 dkappa: 0.00239103369769 } path_point { x: 587711.227199 y: 4141420.53866 z: 0.0 theta: -7.96445828452 kappa: -0.0234071859263 s: 53.0725275953 dkappa: 0.00243603153341 } path_point { x: 587711.189073 y: 4141420.20668 z: 0.0 theta: -7.97214482781 kappa: -0.0226012218194 s: 53.4066910074 dkappa: 0.00236947109042 } path_point { x: 587711.148441 y: 4141419.875 z: 0.0 theta: -7.97956778565 kappa: -0.0218355988453 s: 53.7408544195 dkappa: 0.00219523271824 } path_point { x: 587711.105389 y: 4141419.54362 z: 0.0 theta: -7.98674657831 kappa: -0.0211456506928 s: 54.0750178317 dkappa: 0.00191719676638 } path_point { x: 587711.059842 y: 4141419.21146 z: 0.0 theta: -7.99372275048 kappa: -0.0204543253575 s: 54.410290232 dkappa: 0.00218531607612 } path_point { x: 587711.012019 y: 4141418.87962 z: 0.0 theta: -8.00045444344 kappa: -0.0196942198543 s: 54.7455626323 dkappa: 0.00232886658045 } path_point { x: 587710.962006 y: 4141418.5481 z: 0.0 theta: -8.00692544369 kappa: -0.0189057150934 s: 55.0808350326 dkappa: 0.00235610170033 } path_point { x: 587710.909892 y: 4141418.2169 z: 0.0 theta: -8.01313261249 kappa: -0.0181264248407 s: 55.4161074329 dkappa: 0.00227527485669 } path_point { x: 587710.855767 y: 4141417.88602 z: 0.0 theta: -8.01908495809 kappa: -0.0173911957181 s: 55.7513798332 dkappa: 0.00209463947051 } path_point { x: 587710.799712 y: 4141417.55547 z: 0.0 theta: -8.02480270795 kappa: -0.0167321072031 s: 56.0866522336 dkappa: 0.00182244896272 } path_point { x: 587710.741867 y: 4141417.2256 z: 0.0 theta: -8.03029913934 kappa: -0.0160778716331 s: 56.4215615316 dkappa: 0.00206313181903 } path_point { x: 587710.682248 y: 4141416.89604 z: 0.0 theta: -8.03556530603 kappa: -0.015363857404 s: 56.7564708296 dkappa: 0.00218132545559 } path_point { x: 587710.620934 y: 4141416.56679 z: 0.0 theta: -8.04058784479 kappa: -0.0146291860265 s: 57.0913801277 dkappa: 0.00218838379939 } path_point { x: 587710.558007 y: 4141416.23784 z: 0.0 theta: -8.04536585782 kappa: -0.0139091764756 s: 57.4262894257 dkappa: 0.00209566077742 } path_point { x: 587710.493548 y: 4141415.9092 z: 0.0 theta: -8.04990963918 kappa: -0.0132353451905 s: 57.7611987238 dkappa: 0.00191451031664 } path_point { x: 587710.427633 y: 4141415.58084 z: 0.0 theta: -8.05423940136 kappa: -0.012635406075 s: 58.0961080218 dkappa: 0.00165628634405 } path_point { x: 587710.360553 y: 4141415.25385 z: 0.0 theta: -8.05836042724 kappa: -0.0120446678112 s: 58.4299087782 dkappa: 0.00186246899996 } path_point { x: 587710.29216 y: 4141414.92713 z: 0.0 theta: -8.06227501785 kappa: -0.0114050388761 s: 58.7637095346 dkappa: 0.00195163643437 } path_point { x: 587710.222524 y: 4141414.60067 z: 0.0 theta: -8.06597310325 kappa: -0.0107531588162 s: 59.0975102911 dkappa: 0.00193828965125 } path_point { x: 587710.151716 y: 4141414.27447 z: 0.0 theta: -8.06945603594 kappa: -0.0101208267317 s: 59.4313110475 dkappa: 0.00183692965459 } path_point { x: 587710.079806 y: 4141413.9485 z: 0.0 theta: -8.07273497509 kappa: -0.00953500127685 s: 59.7651118039 dkappa: 0.00166205744835 } path_point { x: 587710.006858 y: 4141413.62277 z: 0.0 theta: -8.07582927084 kappa: -0.00901780065976 s: 60.0989125604 dkappa: 0.00142817403651 } path_point { x: 587709.918372 y: 4141413.23367 z: 0.0 theta: -8.07930786152 kappa: -0.00840460840247 s: 60.4979482087 dkappa: 0.0016177856257 } path_point { x: 587709.828583 y: 4141412.84487 z: 0.0 theta: -8.08253084174 kappa: -0.00774662709338 s: 60.896983857 dkappa: 0.0016575256005 } path_point { x: 587709.737592 y: 4141412.45635 z: 0.0 theta: -8.0854914964 kappa: -0.00709783680999 s: 61.2960195053 dkappa: 0.0015765845325 } path_point { x: 587709.6455 y: 4141412.06808 z: 0.0 theta: -8.08820232638 kappa: -0.0065005695511 s: 61.6950551536 dkappa: 0.00140415299334 } path_point { x: 587709.552401 y: 4141411.68006 z: 0.0 theta: -8.09069040052 kappa: -0.00598550923685 s: 62.0940908019 dkappa: 0.00116942155463 } path_point { x: 587709.458778 y: 4141411.29392 z: 0.0 theta: -8.09297147244 kappa: -0.00548677562292 s: 62.4914209339 dkappa: 0.0013166254231 } path_point { x: 587709.364314 y: 4141410.90798 z: 0.0 theta: -8.09504640406 kappa: -0.0049565244547 s: 62.8887510658 dkappa: 0.00133331975371 } path_point { x: 587709.269091 y: 4141410.52223 z: 0.0 theta: -8.09691214529 kappa: -0.0044403513506 s: 63.2860811977 dkappa: 0.00125101362664 } path_point { x: 587709.173186 y: 4141410.13665 z: 0.0 theta: -8.09858127537 kappa: -0.00397133242204 s: 63.6834113297 dkappa: 0.00110121612206 } path_point { x: 587709.076672 y: 4141409.75122 z: 0.0 theta: -8.10007702848 kappa: -0.00357002427346 s: 64.0807414616 dkappa: 0.00091543632014 } path_point { x: 587708.979255 y: 4141409.36452 z: 0.0 theta: -8.10142413391 kappa: -0.00317875281247 s: 64.4795246895 dkappa: 0.00102582137852 } path_point { x: 587708.881349 y: 4141408.97794 z: 0.0 theta: -8.10260957069 kappa: -0.00276656561502 s: 64.8783079173 dkappa: 0.00102560452375 } path_point { x: 587708.783016 y: 4141408.59147 z: 0.0 theta: -8.10363295423 kappa: -0.00237126359225 s: 65.2770911452 dkappa: 0.000946408333522 } path_point { x: 587708.684316 y: 4141408.20509 z: 0.0 theta: -8.10450645987 kappa: -0.00201803710167 s: 65.6758743731 dkappa: 0.000819855385566 } path_point { x: 587708.585306 y: 4141407.8188 z: 0.0 theta: -8.10524979401 kappa: -0.0017194659472 s: 66.0746576009 dkappa: 0.000677568257593 } path_point { x: 587708.502107 y: 4141407.49505 z: 0.0 theta: -8.1057851088 kappa: -0.00147971615103 s: 66.4089245657 dkappa: 0.000744897836588 } path_point { x: 587708.418749 y: 4141407.17134 z: 0.0 theta: -8.10623778699 kappa: -0.00122858582135 s: 66.7431915305 dkappa: 0.000748421960262 } path_point { x: 587708.335257 y: 4141406.84767 z: 0.0 theta: -8.10660728053 kappa: -0.000984634058677 s: 67.0774584953 dkappa: 0.000704707957602 } path_point { x: 587708.251659 y: 4141406.52403 z: 0.0 theta: -8.10689831954 kappa: -0.000760882052721 s: 67.41172546 dkappa: 0.000630323157596 } path_point { x: 587708.167978 y: 4141406.2004 z: 0.0 theta: -8.10711906108 kappa: -0.000564813082432 s: 67.7459924248 dkappa: 0.000541834889231 } path_point { x: 587708.084236 y: 4141405.8768 z: 0.0 theta: -8.10727923808 kappa: -0.000398372515986 s: 68.0802593896 dkappa: 0.000455810481494 } path_point { x: 587708.000036 y: 4141405.5516 z: 0.0 theta: -8.10738638198 kappa: -0.000237450526218 s: 68.4161810634 dkappa: 0.000493319982813 } path_point { x: 587707.91581 y: 4141405.22641 z: 0.0 theta: -8.1074382978 kappa: -7.21758127973e-05 s: 68.7521027373 dkappa: 0.000484059246106 } path_point { x: 587707.831576 y: 4141404.90122 z: 0.0 theta: -8.10743589888 kappa: 8.40922625954e-05 s: 69.0880244111 dkappa: 0.00044203019591 } path_point { x: 587707.747351 y: 4141404.57603 z: 0.0 theta: -8.10738379626 kappa: 0.000222697888207 s: 69.423946085 dkappa: 0.000381234756759 } path_point { x: 587707.66315 y: 4141404.25083 z: 0.0 theta: -8.10728871863 kappa: 0.000339688802212 s: 69.7598677588 dkappa: 0.00031567485319 } path_point { x: 587707.578987 y: 4141403.92562 z: 0.0 theta: -8.10715793231 kappa: 0.000435816292712 s: 70.0957894326 dkappa: 0.000259352409739 } path_point { x: 587707.495236 y: 4141403.60182 z: 0.0 theta: -8.10699725147 kappa: 0.000525744511078 s: 70.4302493511 dkappa: 0.000272505354204 } path_point { x: 587707.411543 y: 4141403.278 z: 0.0 theta: -8.10680636653 kappa: 0.000614760417171 s: 70.7647092696 dkappa: 0.000255698541452 } path_point { x: 587707.327916 y: 4141402.95416 z: 0.0 theta: -8.10658705678 kappa: 0.000694651329202 s: 71.0991691881 dkappa: 0.000219741375346 } path_point { x: 587707.244364 y: 4141402.63031 z: 0.0 theta: -8.10634324377 kappa: 0.000760819877717 s: 71.4336291066 dkappa: 0.000175443259751 } path_point { x: 587707.160894 y: 4141402.30643 z: 0.0 theta: -8.10607978206 kappa: 0.000812284005598 s: 71.7680890251 dkappa: 0.000133613598533 } path_point { x: 587707.077513 y: 4141401.98253 z: 0.0 theta: -8.10580125009 kappa: 0.000851676968061 s: 72.1025489436 dkappa: 0.000105061795555 } path_point { x: 587706.994487 y: 4141401.65963 z: 0.0 theta: -8.10551141426 kappa: 0.000886851466264 s: 72.4359482535 dkappa: 0.000102624491638 } path_point { x: 587706.911557 y: 4141401.33671 z: 0.0 theta: -8.10521032067 kappa: 0.000918313429997 s: 72.7693475633 dkappa: 8.40497148694e-05 } path_point { x: 587706.828726 y: 4141401.01377 z: 0.0 theta: -8.10489996405 kappa: 0.000941941604172 s: 73.1027468732 dkappa: 5.68897737713e-05 } path_point { x: 587706.745996 y: 4141400.69079 z: 0.0 theta: -8.10458329341 kappa: 0.000956132668152 s: 73.436146183 dkappa: 2.86969768664e-05 } path_point { x: 587706.663369 y: 4141400.3678 z: 0.0 theta: -8.10426337257 kappa: 0.000961801235749 s: 73.7695454929 dkappa: 7.02363267731e-06 } path_point { x: 587706.580845 y: 4141400.04477 z: 0.0 theta: -8.10394254067 kappa: 0.000962379855222 s: 74.1029448027 dkappa: -5.77950273566e-07 } path_point { x: 587706.481989 y: 4141399.65725 z: 0.0 theta: -8.10355801326 kappa: 0.000959593639249 s: 74.502879892 dkappa: -1.50865203258e-05 } path_point { x: 587706.383282 y: 4141399.26968 z: 0.0 theta: -8.10317598644 kappa: 0.000949437237482 s: 74.9028149812 dkappa: -3.61613561984e-05 } path_point { x: 587706.284722 y: 4141398.88208 z: 0.0 theta: -8.10279972924 kappa: 0.00093081252671 s: 75.3027500704 dkappa: -5.61614334429e-05 } path_point { x: 587706.186306 y: 4141398.49445 z: 0.0 theta: -8.10243233877 kappa: 0.00090567729752 s: 75.7026851596 dkappa: -6.74457276107e-05 } path_point { x: 587706.088031 y: 4141398.10677 z: 0.0 theta: -8.1020755181 kappa: 0.00087904525429 s: 76.1026202488 dkappa: -6.23732142533e-05 } path_point { x: 587705.989917 y: 4141397.71917 z: 0.0 theta: -8.1017295198 kappa: 0.000850487236458 s: 76.5024497834 dkappa: -8.0273309366e-05 } path_point { x: 587705.891936 y: 4141397.33153 z: 0.0 theta: -8.10139631553 kappa: 0.000815241684526 s: 76.9022793179 dkappa: -9.52643391656e-05 } path_point { x: 587705.79408 y: 4141396.94386 z: 0.0 theta: -8.10107825699 kappa: 0.000775144403831 s: 77.3021088525 dkappa: -0.000103981494163 } path_point { x: 587705.696345 y: 4141396.55616 z: 0.0 theta: -8.10077669291 kappa: 0.000733376549919 s: 77.701938387 dkappa: -0.00010305996487 } path_point { x: 587705.598723 y: 4141396.16843 z: 0.0 theta: -8.10049143113 kappa: 0.000694464628551 s: 78.1017679216 dkappa: -8.91349417973e-05 } path_point { x: 587705.501563 y: 4141395.78208 z: 0.0 theta: -8.10022234643 kappa: 0.000655284796116 s: 78.5001498965 dkappa: -0.000106273573663 } path_point { x: 587705.404502 y: 4141395.3957 z: 0.0 theta: -8.09997002291 kappa: 0.000610847030628 s: 78.8985318715 dkappa: -0.00011544983926 } path_point { x: 587705.307536 y: 4141395.0093 z: 0.0 theta: -8.09973591045 kappa: 0.000564420851143 s: 79.2969138464 dkappa: -0.000116174480218 } path_point { x: 587705.210657 y: 4141394.62288 z: 0.0 theta: -8.09952011758 kappa: 0.000519470688434 s: 79.6952958214 dkappa: -0.00010795823817 } path_point { x: 587705.113858 y: 4141394.23644 z: 0.0 theta: -8.09932133385 kappa: 0.000479655884989 s: 80.0936777963 dkappa: -9.03118547467e-05 } path_point { x: 587705.019159 y: 4141393.85808 z: 0.0 theta: -8.0991415248 kappa: 0.000441508174581 s: 80.4837089548 dkappa: -0.000103568782297 } path_point { x: 587704.924526 y: 4141393.4797 z: 0.0 theta: -8.09897734971 kappa: 0.00040011043972 s: 80.8737401133 dkappa: -0.000107252174561 } path_point { x: 587704.829951 y: 4141393.10131 z: 0.0 theta: -8.09882938983 kappa: 0.000358875046493 s: 81.2637712719 dkappa: -0.000103011186819 } path_point { x: 587704.73543 y: 4141392.7229 z: 0.0 theta: -8.0986970209 kappa: 0.000320571139041 s: 81.6538024304 dkappa: -9.2494974354e-05 } path_point { x: 587704.640956 y: 4141392.34449 z: 0.0 theta: -8.09857866406 kappa: 0.00028732463956 s: 82.0438335889 dkappa: -7.73526924486e-05 } path_point { x: 587704.545029 y: 4141391.96007 z: 0.0 theta: -8.09847124154 kappa: 0.0002542484823 s: 82.440042666 dkappa: -8.76773786459e-05 } path_point { x: 587704.44914 y: 4141391.57563 z: 0.0 theta: -8.09837745019 kappa: 0.000219185872518 s: 82.8362517432 dkappa: -8.78681764643e-05 } path_point { x: 587704.353285 y: 4141391.1912 z: 0.0 theta: -8.09829735827 kappa: 0.000185571673256 s: 83.2324608204 dkappa: -8.08542238379e-05 } path_point { x: 587704.257459 y: 4141390.80675 z: 0.0 theta: -8.09822990306 kappa: 0.000155680196523 s: 83.6286698975 dkappa: -6.95646587008e-05 } path_point { x: 587704.161656 y: 4141390.4223 z: 0.0 theta: -8.0981733506 kappa: 0.000130625203285 s: 84.0248789747 dkappa: -5.69286189871e-05 } path_point { x: 587704.065426 y: 4141390.03605 z: 0.0 theta: -8.09812606538 kappa: 0.000106603583447 s: 84.4229370971 dkappa: -6.2260560344e-05 } path_point { x: 587703.969212 y: 4141389.64979 z: 0.0 theta: -8.09808854425 kappa: 8.20745221564e-05 s: 84.8209952195 dkappa: -5.99356120409e-05 } path_point { x: 587703.873012 y: 4141389.26353 z: 0.0 theta: -8.09806045508 kappa: 5.95396812211e-05 s: 85.219053342 dkappa: -5.26982241162e-05 } path_point { x: 587703.77682 y: 4141388.87727 z: 0.0 theta: -8.09804068733 kappa: 4.04082718181e-05 s: 85.6171114644 dkappa: -4.3292846608e-05 } path_point { x: 587703.680635 y: 4141388.49101 z: 0.0 theta: -8.09802778695 kappa: 2.49970544961e-05 s: 86.0151695868 dkappa: -3.44639295543e-05 } path_point { x: 587703.584014 y: 4141388.10298 z: 0.0 theta: -8.09802064472 kappa: 1.05814222712e-05 s: 86.41504342 dkappa: -3.66578000242e-05 } path_point { x: 587703.487396 y: 4141387.71496 z: 0.0 theta: -8.09801929958 kappa: -3.67502767494e-06 s: 86.8149172532 dkappa: -3.40133354853e-05 } path_point { x: 587703.390776 y: 4141387.32693 z: 0.0 theta: -8.09802335629 kappa: -1.62521231161e-05 s: 87.2147910865 dkappa: -2.86039466277e-05 } path_point { x: 587703.294155 y: 4141386.93891 z: 0.0 theta: -8.09803197754 kappa: -2.64587945065e-05 s: 87.6146649197 dkappa: -2.25030441412e-05 } path_point { x: 587703.197529 y: 4141386.55088 z: 0.0 theta: -8.09804421541 kappa: -3.44330749809e-05 s: 88.0145387529 dkappa: -1.77840387158e-05 } path_point { x: 587703.1164 y: 4141386.22511 z: 0.0 theta: -8.09805680594 kappa: -4.06281193585e-05 s: 88.3502626678 dkappa: -1.87932087771e-05 } path_point { x: 587703.035267 y: 4141385.89934 z: 0.0 theta: -8.09807149892 kappa: -4.68641215723e-05 s: 88.6859865826 dkappa: -1.81258882991e-05 } path_point { x: 587702.954129 y: 4141385.57356 z: 0.0 theta: -8.09808822464 kappa: -5.26767978787e-05 s: 89.0217104975 dkappa: -1.63691919854e-05 } path_point { x: 587702.872985 y: 4141385.24779 z: 0.0 theta: -8.09810679063 kappa: -5.77989729807e-05 s: 89.3574344124 dkappa: -1.41102345391e-05 } path_point { x: 587702.791835 y: 4141384.92203 z: 0.0 theta: -8.09812694779 kappa: -6.2160580028e-05 s: 89.6931583272 dkappa: -1.19361306636e-05 } path_point { x: 587702.710678 y: 4141384.59626 z: 0.0 theta: -8.09814845659 kappa: -6.58886606168e-05 s: 90.0288822421 dkappa: -1.04339950624e-05 } path_point { x: 587702.61498 y: 4141384.21216 z: 0.0 theta: -8.09817539067 kappa: -7.0274721087e-05 s: 90.4247208815 dkappa: -1.16070817508e-05 } path_point { x: 587702.519271 y: 4141383.82807 z: 0.0 theta: -8.09820413505 kappa: -7.49929148574e-05 s: 90.820559521 dkappa: -1.21374167169e-05 } path_point { x: 587702.42355 y: 4141383.44398 z: 0.0 theta: -8.09823477481 kappa: -7.98188564901e-05 s: 91.2163981604 dkappa: -1.21767816537e-05 } path_point { x: 587702.327818 y: 4141383.05989 z: 0.0 theta: -8.0982673181 kappa: -8.45882416061e-05 s: 91.6122367999 dkappa: -1.18769582539e-05 } path_point { x: 587702.232072 y: 4141382.67581 z: 0.0 theta: -8.09830171992 kappa: -8.91968468852e-05 s: 92.0080754393 dkappa: -1.13897282105e-05 } path_point { x: 587702.147696 y: 4141382.33738 z: 0.0 theta: -8.09833356016 kappa: -9.34883119491e-05 s: 92.3568646623 dkappa: -1.32638084306e-05 } path_point { x: 587702.063309 y: 4141381.99895 z: 0.0 theta: -8.09836701488 kappa: -9.84595151152e-05 s: 92.7056538853 dkappa: -1.52249443009e-05 } path_point { x: 587701.97891 y: 4141381.66053 z: 0.0 theta: -8.09840231886 kappa: -0.000104075437963 s: 93.0544431083 dkappa: -1.68982246233e-05 } path_point { x: 587701.894499 y: 4141381.3221 z: 0.0 theta: -8.09843967186 kappa: -0.000110170297088 s: 93.4032323312 dkappa: -1.79087381996e-05 } path_point { x: 587701.810074 y: 4141380.98369 z: 0.0 theta: -8.098479193 kappa: -0.000116447544098 s: 93.7520215542 dkappa: -1.78815738316e-05 } path_point { x: 587701.725636 y: 4141380.64527 z: 0.0 theta: -8.09852087518 kappa: -0.000122479865616 s: 94.1008107772 dkappa: -1.64418203211e-05 } path_point { x: 587701.629985 y: 4141380.26199 z: 0.0 theta: -8.0985706003 kappa: -0.00012943748884 s: 94.4958478104 dkappa: -1.89762233384e-05 } path_point { x: 587701.534314 y: 4141379.87871 z: 0.0 theta: -8.09862329369 kappa: -0.000137542966867 s: 94.8908848436 dkappa: -2.20458620963e-05 } path_point { x: 587701.438621 y: 4141379.49544 z: 0.0 theta: -8.09867941822 kappa: -0.000146762020931 s: 95.2859218768 dkappa: -2.44067180169e-05 } path_point { x: 587701.342907 y: 4141379.11218 z: 0.0 theta: -8.09873932612 kappa: -0.000156568938859 s: 95.68095891 dkappa: -2.48147725226e-05 } path_point { x: 587701.247169 y: 4141378.72892 z: 0.0 theta: -8.09880306491 kappa: -0.00016594657507 s: 96.0759959432 dkappa: -2.20260070355e-05 } path_point { x: 587701.15364 y: 4141378.3546 z: 0.0 theta: -8.09886884565 kappa: -0.000175337949447 s: 96.4618204932 dkappa: -2.66259709061e-05 } path_point { x: 587701.060085 y: 4141377.98029 z: 0.0 theta: -8.09893858256 kappa: -0.000186415900467 s: 96.8476450431 dkappa: -3.06304743325e-05 } path_point { x: 587700.966503 y: 4141377.60599 z: 0.0 theta: -8.09901286146 kappa: -0.00019879066918 s: 97.2334695931 dkappa: -3.32100434333e-05 } path_point { x: 587700.872892 y: 4141377.23169 z: 0.0 theta: -8.09909205607 kappa: -0.000211752465246 s: 97.619294143 dkappa: -3.35352043271e-05 } path_point { x: 587700.779251 y: 4141376.8574 z: 0.0 theta: -8.09917620449 kappa: -0.00022427146694 s: 98.0051186929 dkappa: -3.07764831325e-05 } path_point { x: 587700.694613 y: 4141376.51922 z: 0.0 theta: -8.09925640599 kappa: -0.000236251183959 s: 98.3537340308 dkappa: -3.77883060088e-05 } path_point { x: 587700.609947 y: 4141376.18104 z: 0.0 theta: -8.0993411868 kappa: -0.000250467025133 s: 98.7023493686 dkappa: -4.34954708236e-05 } path_point { x: 587700.525252 y: 4141375.84287 z: 0.0 theta: -8.09943123385 kappa: -0.000266349524291 s: 99.0509647064 dkappa: -4.72402763879e-05 } path_point { x: 587700.440525 y: 4141375.5047 z: 0.0 theta: -8.0995269956 kappa: -0.000283099930538 s: 99.3995800442 dkappa: -4.83650215127e-05 } path_point { x: 587700.355765 y: 4141375.16655 z: 0.0 theta: -8.09962860208 kappa: -0.000299690208258 s: 99.748195382 dkappa: -4.62120050091e-05 } path_point { x: 587700.270969 y: 4141374.8284 z: 0.0 theta: -8.09973578498 kappa: -0.000314863037113 s: 100.09681072 dkappa: -4.01235256881e-05 } path_point { x: 587700.176704 y: 4141374.45268 z: 0.0 theta: -8.09986093817 kappa: -0.00033173596037 s: 100.484176363 dkappa: -4.66646183833e-05 } path_point { x: 587700.082391 y: 4141374.07697 z: 0.0 theta: -8.09999306496 kappa: -0.000350720931175 s: 100.871542006 dkappa: -5.09237913185e-05 } path_point { x: 587699.988027 y: 4141373.70128 z: 0.0 theta: -8.10013279661 kappa: -0.00037081268246 s: 101.25890765 dkappa: -5.22746092262e-05 } path_point { x: 587699.893609 y: 4141373.3256 z: 0.0 theta: -8.10028032797 kappa: -0.000390763287659 s: 101.646273293 dkappa: -5.00906368394e-05 } path_point { x: 587699.799134 y: 4141372.94993 z: 0.0 theta: -8.1004353235 kappa: -0.000409082160707 s: 102.033638936 dkappa: -4.37454388906e-05 } path_point { x: 587699.70245 y: 4141372.56574 z: 0.0 theta: -8.10060106416 kappa: -0.000428148092442 s: 102.429809655 dkappa: -5.15889967091e-05 } path_point { x: 587699.605701 y: 4141372.18156 z: 0.0 theta: -8.1007748356 kappa: -0.000449290085197 s: 102.825980373 dkappa: -5.43728017101e-05 } path_point { x: 587699.508884 y: 4141371.7974 z: 0.0 theta: -8.10095708625 kappa: -0.000470677996835 s: 103.222151092 dkappa: -5.29772004851e-05 } path_point { x: 587699.411995 y: 4141371.41326 z: 0.0 theta: -8.1011476086 kappa: -0.000490830452757 s: 103.61832181 dkappa: -4.82825396256e-05 } path_point { x: 587699.315031 y: 4141371.02914 z: 0.0 theta: -8.10134567731 kappa: -0.000508614845909 s: 104.014492529 dkappa: -4.11691657231e-05 } path_point { x: 587699.229836 y: 4141370.69191 z: 0.0 theta: -8.10152521741 kappa: -0.000524067787104 s: 104.362318212 dkappa: -4.68082399968e-05 } path_point { x: 587699.14458 y: 4141370.35469 z: 0.0 theta: -8.10171037299 kappa: -0.000540630633636 s: 104.710143896 dkappa: -4.77343637628e-05 } path_point { x: 587699.05926 y: 4141370.0175 z: 0.0 theta: -8.10190126716 kappa: -0.000556855301736 s: 105.057969579 dkappa: -4.50469467095e-05 } path_point { x: 587698.973875 y: 4141369.68031 z: 0.0 theta: -8.10209758589 kappa: -0.000571676110563 s: 105.405795263 dkappa: -3.98453985252e-05 } path_point { x: 587698.888423 y: 4141369.34315 z: 0.0 theta: -8.10229871097 kappa: -0.000584409782201 s: 105.753620946 dkappa: -3.3229128898e-05 } path_point { x: 587698.802902 y: 4141369.006 z: 0.0 theta: -8.10250385301 kappa: -0.00059475544166 s: 106.10144663 dkappa: -2.62975475165e-05 } path_point { x: 587698.705003 y: 4141368.62041 z: 0.0 theta: -8.10274260668 kappa: -0.000605605791622 s: 106.499269978 dkappa: -2.72596824767e-05 } path_point { x: 587698.607011 y: 4141368.23484 z: 0.0 theta: -8.10298561112 kappa: -0.000615806589162 s: 106.897093326 dkappa: -2.34111737681e-05 } path_point { x: 587698.508924 y: 4141367.8493 z: 0.0 theta: -8.10323228725 kappa: -0.000623896561836 s: 107.294916673 dkappa: -1.70269704514e-05 } path_point { x: 587698.410742 y: 4141367.46378 z: 0.0 theta: -8.10348165468 kappa: -0.000629319465053 s: 107.692740021 dkappa: -1.03820215873e-05 } path_point { x: 587698.312463 y: 4141367.07829 z: 0.0 theta: -8.10373269178 kappa: -0.00063242408207 s: 108.090563369 dkappa: -5.75127623667e-06 } path_point { x: 587698.214565 y: 4141366.69469 z: 0.0 theta: -8.10398348476 kappa: -0.00063439243957 s: 108.486455195 dkappa: -3.35969417548e-06 } path_point { x: 587698.116571 y: 4141366.31112 z: 0.0 theta: -8.1042347567 kappa: -0.000634603309957 s: 108.882347022 dkappa: 2.67623974831e-06 } path_point { x: 587698.018481 y: 4141365.92758 z: 0.0 theta: -8.10448559695 kappa: -0.000632149692709 s: 109.278238848 dkappa: 9.64988420321e-06 } path_point { x: 587697.920294 y: 4141365.54405 z: 0.0 theta: -8.10473494788 kappa: -0.000627196124479 s: 109.674130674 dkappa: 1.48545978578e-05 } path_point { x: 587697.822013 y: 4141365.16055 z: 0.0 theta: -8.10498202909 kappa: -0.000620978679103 s: 110.0700225 dkappa: 1.55837393805e-05 } path_point { x: 587697.723494 y: 4141364.77652 z: 0.0 theta: -8.10522685804 kappa: -0.000613671646594 s: 110.466487932 dkappa: 2.17173348853e-05 } path_point { x: 587697.624883 y: 4141364.39252 z: 0.0 theta: -8.10546825425 kappa: -0.000603565698975 s: 110.862953363 dkappa: 2.93085735896e-05 } path_point { x: 587697.526179 y: 4141364.00854 z: 0.0 theta: -8.10570505552 kappa: -0.000590552154828 s: 111.259418794 dkappa: 3.59904207607e-05 } path_point { x: 587697.427385 y: 4141363.62458 z: 0.0 theta: -8.10593624255 kappa: -0.000575460780184 s: 111.655884225 dkappa: 3.93958416659e-05 } path_point { x: 587697.328504 y: 4141363.24064 z: 0.0 theta: -8.10616131108 kappa: -0.000560059788517 s: 112.052349657 dkappa: 3.71578015722e-05 } path_point { x: 587697.243361 y: 4141362.91033 z: 0.0 theta: -8.10635003866 kappa: -0.000546027175313 s: 112.393459669 dkappa: 4.5269137491e-05 } path_point { x: 587697.158156 y: 4141362.58003 z: 0.0 theta: -8.10653349781 kappa: -0.000529163588848 s: 112.734569682 dkappa: 5.34920578402e-05 } path_point { x: 587697.072891 y: 4141362.24975 z: 0.0 theta: -8.10671074714 kappa: -0.000509701471017 s: 113.075679695 dkappa: 6.0240537881e-05 } path_point { x: 587696.987569 y: 4141361.91948 z: 0.0 theta: -8.1068810168 kappa: -0.000488414272631 s: 113.416789708 dkappa: 6.39285528746e-05 } path_point { x: 587696.902192 y: 4141361.58923 z: 0.0 theta: -8.10704389303 kappa: -0.000466616453422 s: 113.757899721 dkappa: 6.29700780822e-05 } path_point { x: 587696.816763 y: 4141361.25899 z: 0.0 theta: -8.10719950275 kappa: -0.00044616348204 s: 114.099009734 dkappa: 5.5779088765e-05 } path_point { x: 587696.720311 y: 4141360.88639 z: 0.0 theta: -8.10736684557 kappa: -0.000422787368955 s: 114.48388985 dkappa: 6.5617783335e-05 } path_point { x: 587696.623798 y: 4141360.51381 z: 0.0 theta: -8.1075244865 kappa: -0.000395843067824 s: 114.868769966 dkappa: 7.39790367454e-05 } path_point { x: 587696.527229 y: 4141360.14124 z: 0.0 theta: -8.10767121227 kappa: -0.000366293950378 s: 115.253650082 dkappa: 7.88116440038e-05 } path_point { x: 587696.430608 y: 4141359.76869 z: 0.0 theta: -8.10780633234 kappa: -0.000335892856367 s: 115.638530198 dkappa: 7.80644001178e-05 } path_point { x: 587696.333938 y: 4141359.39614 z: 0.0 theta: -8.10792998271 kappa: -0.000307182093554 s: 116.023410314 dkappa: 6.96861000948e-05 } path_point { x: 587696.234399 y: 4141359.01273 z: 0.0 theta: -8.10804578682 kappa: -0.000276542067689 s: 116.419530972 dkappa: 8.43107532231e-05 } path_point { x: 587696.134818 y: 4141358.62933 z: 0.0 theta: -8.10814842497 kappa: -0.000241027657794 s: 116.81565163 dkappa: 9.40881991701e-05 } path_point { x: 587696.0352 y: 4141358.24594 z: 0.0 theta: -8.10823637933 kappa: -0.000202806720328 s: 117.211772288 dkappa: 9.77674172853e-05 } path_point { x: 587695.935552 y: 4141357.86256 z: 0.0 theta: -8.10830908896 kappa: -0.000164542666874 s: 117.607892945 dkappa: 9.40973869185e-05 } path_point { x: 587695.835878 y: 4141357.47919 z: 0.0 theta: -8.10836714607 kappa: -0.000129394464136 s: 118.004013603 dkappa: 8.18270874194e-05 } path_point { x: 587695.735996 y: 4141357.09509 z: 0.0 theta: -8.10841159442 kappa: -9.35617589986e-05 s: 118.400886328 dkappa: 9.75043098248e-05 } path_point { x: 587695.6361 y: 4141356.71099 z: 0.0 theta: -8.10844078149 kappa: -5.29727862313e-05 s: 118.797759052 dkappa: 0.000105834661131 } path_point { x: 587695.536195 y: 4141356.3269 z: 0.0 theta: -8.10845339213 kappa: -1.04970708105e-05 s: 119.194631776 dkappa: 0.000107051202314 } path_point { x: 587695.436289 y: 4141355.94281 z: 0.0 theta: -8.10844923167 kappa: 3.10883578329e-05 s: 119.591504501 dkappa: 0.000101386994353 } path_point { x: 587695.336387 y: 4141355.55872 z: 0.0 theta: -8.10842918921 kappa: 6.90989658125e-05 s: 119.988377225 dkappa: 8.90750982253e-05 } path_point { x: 587695.249027 y: 4141355.2228 z: 0.0 theta: -8.1083995084 kappa: 0.000102780252184 s: 120.335462127 dkappa: 0.000103780670252 } path_point { x: 587695.161679 y: 4141354.88689 z: 0.0 theta: -8.10835739605 kappa: 0.000140325484752 s: 120.682547029 dkappa: 0.000111442819275 } path_point { x: 587695.074347 y: 4141354.55097 z: 0.0 theta: -8.10830192295 kappa: 0.000179396815363 s: 121.029631931 dkappa: 0.000112677058267 } path_point { x: 587694.987036 y: 4141354.21505 z: 0.0 theta: -8.10823293422 kappa: 0.000217870031123 s: 121.376716833 dkappa: 0.0001080989002 } path_point { x: 587694.89975 y: 4141353.87912 z: 0.0 theta: -8.10815097522 kappa: 0.000253834554399 s: 121.723801735 dkappa: 9.83238580469e-05 } path_point { x: 587694.812494 y: 4141353.54318 z: 0.0 theta: -8.10805721733 kappa: 0.000285593442817 s: 122.070886637 dkappa: 8.39674447793e-05 } path_point { x: 587694.728308 y: 4141353.21893 z: 0.0 theta: -8.1079566423 kappa: 0.000315341871469 s: 122.405885812 dkappa: 9.26786794491e-05 } path_point { x: 587694.644156 y: 4141352.89467 z: 0.0 theta: -8.10784571774 kappa: 0.000347075662753 s: 122.740884986 dkappa: 9.59062387352e-05 } path_point { x: 587694.560041 y: 4141352.57041 z: 0.0 theta: -8.10772407663 kappa: 0.000379044072504 s: 123.07588416 dkappa: 9.41652436696e-05 } path_point { x: 587694.475968 y: 4141352.24613 z: 0.0 theta: -8.10759190951 kappa: 0.000409668921676 s: 123.410883334 dkappa: 8.79708152845e-05 } path_point { x: 587694.39194 y: 4141351.92184 z: 0.0 theta: -8.10744990676 kappa: 0.000437544596345 s: 123.745882509 dkappa: 7.78380746118e-05 } path_point { x: 587694.307958 y: 4141351.59754 z: 0.0 theta: -8.10729920068 kappa: 0.000461438047707 s: 124.080881683 dkappa: 6.42821426837e-05 } path_point { x: 587694.212269 y: 4141351.22777 z: 0.0 theta: -8.10711806347 kappa: 0.00048745004415 s: 124.462828093 dkappa: 7.04880335756e-05 } path_point { x: 587694.116649 y: 4141350.85799 z: 0.0 theta: -8.10692673434 kappa: 0.000514329275358 s: 124.844774503 dkappa: 6.92001366504e-05 } path_point { x: 587694.021102 y: 4141350.48819 z: 0.0 theta: -8.10672537371 kappa: 0.00053964533781 s: 125.226720913 dkappa: 6.26796164264e-05 } path_point { x: 587693.92563 y: 4141350.11836 z: 0.0 theta: -8.1065149053 kappa: 0.000561831471657 s: 125.608667324 dkappa: 5.31876374217e-05 } path_point { x: 587693.830238 y: 4141349.74852 z: 0.0 theta: -8.10629668635 kappa: 0.00058018456072 s: 125.990613734 dkappa: 4.29853641545e-05 } path_point { x: 587693.74679 y: 4141349.42471 z: 0.0 theta: -8.10610015076 kappa: 0.000595557488291 s: 126.325005697 dkappa: 4.77171798737e-05 } path_point { x: 587693.663406 y: 4141349.10088 z: 0.0 theta: -8.10589833902 kappa: 0.000611385502402 s: 126.659397661 dkappa: 4.60653979049e-05 } path_point { x: 587693.580089 y: 4141348.77704 z: 0.0 theta: -8.10569141579 kappa: 0.000625893275645 s: 126.993789624 dkappa: 4.01789715467e-05 } path_point { x: 587693.496839 y: 4141348.45317 z: 0.0 theta: -8.10548001927 kappa: 0.000638024073325 s: 127.328181588 dkappa: 3.22068540979e-05 } path_point { x: 587693.413659 y: 4141348.12929 z: 0.0 theta: -8.10526502086 kappa: 0.00064743975346 s: 127.662573551 dkappa: 2.42979988573e-05 } path_point { x: 587693.330548 y: 4141347.80539 z: 0.0 theta: -8.10504728487 kappa: 0.000654520766779 s: 127.996965515 dkappa: 1.86013591235e-05 } path_point { x: 587693.231653 y: 4141347.41959 z: 0.0 theta: -8.10478511602 kappa: 0.000661905133278 s: 128.395241467 dkappa: 1.72627680107e-05 } path_point { x: 587693.132859 y: 4141347.03376 z: 0.0 theta: -8.1045202825 kappa: 0.000667532172213 s: 128.793517419 dkappa: 1.03555355858e-05 } path_point { x: 587693.034167 y: 4141346.64791 z: 0.0 theta: -8.10425383404 kappa: 0.000669875653379 s: 129.191793372 dkappa: 1.35275990193e-06 } path_point { x: 587692.935578 y: 4141346.26203 z: 0.0 theta: -8.1039871528 kappa: 0.000668792598005 s: 129.590069324 dkappa: -6.27246098742e-06 } path_point { x: 587692.837093 y: 4141345.87612 z: 0.0 theta: -8.10372140239 kappa: 0.000665523278759 s: 129.988345277 dkappa: -9.04702902897e-06 } path_point { x: 587692.738307 y: 4141345.48861 z: 0.0 theta: -8.10345611382 kappa: 0.000660807837006 s: 130.388251305 dkappa: -1.53428487082e-05 } path_point { x: 587692.639623 y: 4141345.10107 z: 0.0 theta: -8.10319332063 kappa: 0.000652834999205 s: 130.788157333 dkappa: -2.47660344745e-05 } path_point { x: 587692.54104 y: 4141344.7135 z: 0.0 theta: -8.1029344841 kappa: 0.000641040113996 s: 131.188063361 dkappa: -3.38857743837e-05 } path_point { x: 587692.442557 y: 4141344.32591 z: 0.0 theta: -8.10268101698 kappa: 0.000626230532394 s: 131.587969389 dkappa: -3.92712564916e-05 } path_point { x: 587692.344171 y: 4141343.9383 z: 0.0 theta: -8.10243373482 kappa: 0.000610585607794 s: 131.987875417 dkappa: -3.74916688539e-05 } path_point { x: 587692.245912 y: 4141343.55079 z: 0.0 theta: -8.10219290766 kappa: 0.000593516808391 s: 132.387649155 dkappa: -4.81714735519e-05 } path_point { x: 587692.147745 y: 4141343.16325 z: 0.0 theta: -8.10195978106 kappa: 0.000572051799404 s: 132.787422894 dkappa: -5.89895680903e-05 } path_point { x: 587692.049666 y: 4141342.7757 z: 0.0 theta: -8.10173604436 kappa: 0.000546729667028 s: 133.187196633 dkappa: -6.69724162702e-05 } path_point { x: 587691.951672 y: 4141342.38812 z: 0.0 theta: -8.10152293376 kappa: 0.000519278239142 s: 133.586970372 dkappa: -6.91464818924e-05 } path_point { x: 587691.853759 y: 4141342.00052 z: 0.0 theta: -8.10132075712 kappa: 0.000492614085309 s: 133.986744111 dkappa: -6.25382287581e-05 } path_point { x: 587691.771881 y: 4141341.67616 z: 0.0 theta: -8.10115968312 kappa: 0.000469683862979 s: 134.321285036 dkappa: -7.43113043071e-05 } path_point { x: 587691.690055 y: 4141341.35178 z: 0.0 theta: -8.1010069072 kappa: 0.000443116843546 s: 134.65582596 dkappa: -8.40836993162e-05 } path_point { x: 587691.608276 y: 4141341.02739 z: 0.0 theta: -8.10086351206 kappa: 0.000413779594204 s: 134.990366885 dkappa: -9.06761399811e-05 } path_point { x: 587691.526542 y: 4141340.70298 z: 0.0 theta: -8.10073022454 kappa: 0.000382933197493 s: 135.32490781 dkappa: -9.29093524975e-05 } path_point { x: 587691.44485 y: 4141340.37857 z: 0.0 theta: -8.10060728355 kappa: 0.000352233251306 s: 135.659448735 dkappa: -8.96040630611e-05 } path_point { x: 587691.363196 y: 4141340.05415 z: 0.0 theta: -8.10049430818 kappa: 0.000323729868882 s: 135.99398966 dkappa: -7.95809978678e-05 } path_point { x: 587691.281332 y: 4141339.72874 z: 0.0 theta: -8.10039042329 kappa: 0.000294741501398 s: 136.32953657 dkappa: -9.25545246271e-05 } path_point { x: 587691.1995 y: 4141339.40332 z: 0.0 theta: -8.10029692038 kappa: 0.000262080857502 s: 136.66508348 dkappa: -0.000101381762774 } path_point { x: 587691.117696 y: 4141339.0779 z: 0.0 theta: -8.10021478838 kappa: 0.000227227332096 s: 137.00063039 dkappa: -0.000105537476831 } path_point { x: 587691.035918 y: 4141338.75247 z: 0.0 theta: -8.10014449027 kappa: 0.000191836561226 s: 137.3361773 dkappa: -0.000104496431318 } path_point { x: 587690.95416 y: 4141338.42704 z: 0.0 theta: -8.1000859039 kappa: 0.000157740422078 s: 137.67172421 dkappa: -9.77333907575e-05 } path_point { x: 587690.87242 y: 4141338.1016 z: 0.0 theta: -8.10003826289 kappa: 0.00012694703298 s: 138.00727112 dkappa: -8.47231196704e-05 } path_point { x: 587690.775705 y: 4141337.71647 z: 0.0 theta: -8.09999495387 kappa: 9.02764378689e-05 s: 138.404361688 dkappa: -9.84666506002e-05 } path_point { x: 587690.679003 y: 4141337.33133 z: 0.0 theta: -8.09996706018 kappa: 4.9864542132e-05 s: 138.801452256 dkappa: -0.000103764760812 } path_point { x: 587690.58231 y: 4141336.94619 z: 0.0 theta: -8.09995543286 kappa: 8.8289781316e-06 s: 139.198542825 dkappa: -0.000101805917465 } path_point { x: 587690.485618 y: 4141336.56105 z: 0.0 theta: -8.09995977864 kappa: -3.01845508695e-05 s: 139.595633393 dkappa: -9.37785877181e-05 } path_point { x: 587690.388921 y: 4141336.17592 z: 0.0 theta: -8.0999788474 kappa: -6.5002270708e-05 s: 139.992723961 dkappa: -8.08712387309e-05 } path_point { x: 587690.303531 y: 4141335.83585 z: 0.0 theta: -8.10000690698 kappa: -9.57719552927e-05 s: 140.343348392 dkappa: -9.32041710909e-05 } path_point { x: 587690.21813 y: 4141335.49578 z: 0.0 theta: -8.10004634356 kappa: -0.000129434289454 s: 140.693972823 dkappa: -9.76029711998e-05 } path_point { x: 587690.132713 y: 4141335.15572 z: 0.0 theta: -8.10009771216 kappa: -0.000163451137665 s: 141.044597255 dkappa: -9.54581016657e-05 } path_point { x: 587690.047277 y: 4141334.81567 z: 0.0 theta: -8.10016076335 kappa: -0.000195771894559 s: 141.395221686 dkappa: -8.81600250968e-05 } path_point { x: 587689.961817 y: 4141334.47562 z: 0.0 theta: -8.10023461416 kappa: -0.000224833484931 s: 141.745846117 dkappa: -7.70992041012e-05 } path_point { x: 587689.876331 y: 4141334.13557 z: 0.0 theta: -8.10031791906 kappa: -0.000249560363739 s: 142.096470548 dkappa: -6.36661012869e-05 } path_point { x: 587689.77957 y: 4141333.75083 z: 0.0 theta: -8.10042213307 kappa: -0.000276162407571 s: 142.493191838 dkappa: -6.894511444e-05 } path_point { x: 587689.682767 y: 4141333.3661 z: 0.0 theta: -8.10053709665 kappa: -0.000303240404675 s: 142.889913128 dkappa: -6.64810451796e-05 } path_point { x: 587689.585917 y: 4141332.98139 z: 0.0 theta: -8.10066245468 kappa: -0.000328217034292 s: 143.286634418 dkappa: -5.87669529731e-05 } path_point { x: 587689.489017 y: 4141332.59668 z: 0.0 theta: -8.10079702574 kappa: -0.000349504025429 s: 143.683355708 dkappa: -4.82958972875e-05 } path_point { x: 587689.392064 y: 4141332.21199 z: 0.0 theta: -8.10093919453 kappa: -0.000366502156863 s: 144.080076998 dkappa: -3.75609375903e-05 } path_point { x: 587689.310113 y: 4141331.887 z: 0.0 theta: -8.10106422223 kappa: -0.000379714574235 s: 144.415236624 dkappa: -4.0074132786e-05 } path_point { x: 587689.22812 y: 4141331.56203 z: 0.0 theta: -8.10119369448 kappa: -0.00039268385214 s: 144.75039625 dkappa: -3.64938069714e-05 } path_point { x: 587689.146084 y: 4141331.23706 z: 0.0 theta: -8.10132723068 kappa: -0.000403753547866 s: 145.085555875 dkappa: -2.91225018533e-05 } path_point { x: 587689.064004 y: 4141330.91211 z: 0.0 theta: -8.10146402432 kappa: -0.000412038937716 s: 145.420715501 dkappa: -2.02627591386e-05 } path_point { x: 587688.98188 y: 4141330.58717 z: 0.0 theta: -8.10160310175 kappa: -0.00041742701701 s: 145.755875127 dkappa: -1.22171205344e-05 } path_point { x: 587688.89971 y: 4141330.26223 z: 0.0 theta: -8.10174358072 kappa: -0.000420576500087 s: 146.091034752 dkappa: -7.28812774765e-06 } path_point { x: 587688.817388 y: 4141329.9369 z: 0.0 theta: -8.10188510579 kappa: -0.000422692338742 s: 146.426627801 dkappa: -4.40015701862e-06 } path_point { x: 587688.73502 y: 4141329.61157 z: 0.0 theta: -8.10202708598 kappa: -0.000423047939461 s: 146.762220849 dkappa: 2.79557435117e-06 } path_point { x: 587688.652605 y: 4141329.28625 z: 0.0 theta: -8.1021687338 kappa: -0.00042060701435 s: 147.097813898 dkappa: 1.18594053846e-05 } path_point { x: 587688.570145 y: 4141328.96095 z: 0.0 theta: -8.10230905134 kappa: -0.000415152008781 s: 147.433406947 dkappa: 2.03516751046e-05 } path_point { x: 587688.487639 y: 4141328.63565 z: 0.0 theta: -8.10244710508 kappa: -0.000407284101388 s: 147.768999995 dkappa: 2.58327225341e-05 } path_point { x: 587688.405089 y: 4141328.31037 z: 0.0 theta: -8.10258230063 kappa: -0.000398423204074 s: 148.104593044 dkappa: 2.58628866959e-05 } path_point { x: 587688.306868 y: 4141327.92358 z: 0.0 theta: -8.10273901213 kappa: -0.000386309574685 s: 148.50366644 dkappa: 3.54835717177e-05 } path_point { x: 587688.208586 y: 4141327.53679 z: 0.0 theta: -8.10289004657 kappa: -0.000369841932464 s: 148.902739836 dkappa: 4.70600824007e-05 } path_point { x: 587688.110248 y: 4141327.15003 z: 0.0 theta: -8.10303360993 kappa: -0.000348986125771 s: 149.301813232 dkappa: 5.68519221159e-05 } path_point { x: 587688.011856 y: 4141326.76327 z: 0.0 theta: -8.1031681924 kappa: -0.000325200735655 s: 149.700886629 dkappa: 6.11185942341e-05 } path_point { x: 587687.913414 y: 4141326.37653 z: 0.0 theta: -8.10329316413 kappa: -0.000301437075861 s: 150.099960025 dkappa: 5.61196021263e-05 } path_point { x: 587687.81508 y: 4141325.99041 z: 0.0 theta: -8.1034084474 kappa: -0.000276311926843 s: 150.49840595 dkappa: 6.98639534337e-05 } path_point { x: 587687.716704 y: 4141325.6043 z: 0.0 theta: -8.10351266671 kappa: -0.00024603988569 s: 150.896851876 dkappa: 8.15240194896e-05 } path_point { x: 587687.61829 y: 4141325.2182 z: 0.0 theta: -8.10360400507 kappa: -0.000211965920418 s: 151.295297801 dkappa: 8.85173015631e-05 } path_point { x: 587687.519843 y: 4141324.83211 z: 0.0 theta: -8.10368138641 kappa: -0.000176463985136 s: 151.693743726 dkappa: 8.82613009236e-05 } path_point { x: 587687.421369 y: 4141324.44602 z: 0.0 theta: -8.10374488553 kappa: -0.000142937020052 s: 152.092189652 dkappa: 7.81735188401e-05 } path_point { x: 587687.338786 y: 4141324.12231 z: 0.0 theta: -8.10378800738 kappa: -0.00011446464545 s: 152.426268965 dkappa: 9.1663265927e-05 } path_point { x: 587687.25619 y: 4141323.7986 z: 0.0 theta: -8.10382093596 kappa: -8.21366591482e-05 s: 152.760348277 dkappa: 0.000101154792928 } path_point { x: 587687.173586 y: 4141323.47489 z: 0.0 theta: -8.10384261757 kappa: -4.73897492047e-05 s: 153.09442759 dkappa: 0.0001060436599 } path_point { x: 587687.090977 y: 4141323.15119 z: 0.0 theta: -8.10385251219 kappa: -1.18625345594e-05 s: 153.428506903 dkappa: 0.000105725426902 } path_point { x: 587687.008366 y: 4141322.82749 z: 0.0 theta: -8.10385066095 kappa: 2.26044349676e-05 s: 153.762586216 dkappa: 9.95956539896e-05 } path_point { x: 587686.925757 y: 4141322.50378 z: 0.0 theta: -8.10383775361 kappa: 5.39686786755e-05 s: 154.096665528 dkappa: 8.70499012215e-05 } path_point { x: 587686.843006 y: 4141322.17949 z: 0.0 theta: -8.1038145458 kappa: 8.54369646995e-05 s: 154.431346867 dkappa: 9.99566634445e-05 } path_point { x: 587686.760264 y: 4141321.8552 z: 0.0 theta: -8.10378019841 kappa: 0.000120197942515 s: 154.766028206 dkappa: 0.000106786038717 } path_point { x: 587686.677535 y: 4141321.5309 z: 0.0 theta: -8.10373394313 kappa: 0.000156277424119 s: 155.100709544 dkappa: 0.000107895381871 } path_point { x: 587686.594823 y: 4141321.2066 z: 0.0 theta: -8.10367565238 kappa: 0.000191820821502 s: 155.435390883 dkappa: 0.000103642047739 } path_point { x: 587686.512132 y: 4141320.8823 z: 0.0 theta: -8.10360579924 kappa: 0.000225093146649 s: 155.770072221 dkappa: 9.43833911534e-05 } path_point { x: 587686.429465 y: 4141320.55799 z: 0.0 theta: -8.10352541745 kappa: 0.000254479011539 s: 156.10475356 dkappa: 8.0476766946e-05 } path_point { x: 587686.331148 y: 4141320.17213 z: 0.0 theta: -8.1034173395 kappa: 0.000289108785619 s: 156.502940314 dkappa: 9.16247193054e-05 } path_point { x: 587686.232876 y: 4141319.78626 z: 0.0 theta: -8.10329486434 kappa: 0.000326139213185 s: 156.901127069 dkappa: 9.29232912771e-05 } path_point { x: 587686.134654 y: 4141319.40038 z: 0.0 theta: -8.10315775528 kappa: 0.000362112603896 s: 157.299313824 dkappa: 8.67040645303e-05 } path_point { x: 587686.036488 y: 4141319.01448 z: 0.0 theta: -8.10300696757 kappa: 0.000394499672346 s: 157.697500578 dkappa: 7.52986207343e-05 } path_point { x: 587685.938382 y: 4141318.62857 z: 0.0 theta: -8.10284427879 kappa: 0.000421699538069 s: 158.095687333 dkappa: 6.10385415582e-05 } path_point { x: 587685.839995 y: 4141318.24128 z: 0.0 theta: -8.10267064546 kappa: 0.000447777869927 s: 158.495279918 dkappa: 6.74926464585e-05 } path_point { x: 587685.741677 y: 4141317.85397 z: 0.0 theta: -8.10248636893 kappa: 0.000474300856905 s: 158.894872503 dkappa: 6.39029968527e-05 } path_point { x: 587685.643433 y: 4141317.46664 z: 0.0 theta: -8.10229197138 kappa: 0.000498021003746 s: 159.294465088 dkappa: 5.41030701233e-05 } path_point { x: 587685.545265 y: 4141317.0793 z: 0.0 theta: -8.10208896658 kappa: 0.000517222644329 s: 159.694057672 dkappa: 4.19263436526e-05 } path_point { x: 587685.447178 y: 4141316.69193 z: 0.0 theta: -8.10187924785 kappa: 0.000531721941672 s: 160.093650257 dkappa: 3.12062948232e-05 } path_point { x: 587685.36516 y: 4141316.36776 z: 0.0 theta: -8.10169965366 kappa: 0.000542479856817 s: 160.428037075 dkappa: 3.18184325731e-05 } path_point { x: 587685.2832 y: 4141316.04357 z: 0.0 theta: -8.10151656234 kappa: 0.000552275922806 s: 160.762423892 dkappa: 2.59230081351e-05 } path_point { x: 587685.201301 y: 4141315.71937 z: 0.0 theta: -8.10133060683 kappa: 0.000559405207302 s: 161.096810709 dkappa: 1.63377801459e-05 } path_point { x: 587685.119462 y: 4141315.39515 z: 0.0 theta: -8.10114283264 kappa: 0.00056310499931 s: 161.431197527 dkappa: 5.88050724225e-06 } path_point { x: 587685.037684 y: 4141315.07092 z: 0.0 theta: -8.1009543828 kappa: 0.000563554809177 s: 161.765584344 dkappa: -2.6310519392e-06 } path_point { x: 587684.955967 y: 4141314.74667 z: 0.0 theta: -8.10076618277 kappa: 0.000561876368595 s: 162.099971161 dkappa: -6.37913876168e-06 } path_point { x: 587684.862134 y: 4141314.37403 z: 0.0 theta: -8.10055087045 kappa: 0.000558281912928 s: 162.484245378 dkappa: -1.34843365668e-05 } path_point { x: 587684.76838 y: 4141314.00137 z: 0.0 theta: -8.10033760745 kappa: 0.000550907942538 s: 162.868519595 dkappa: -2.53131948034e-05 } path_point { x: 587684.674706 y: 4141313.62868 z: 0.0 theta: -8.10012808609 kappa: 0.000538788756164 s: 163.252793813 dkappa: -3.7444497504e-05 } path_point { x: 587684.581109 y: 4141313.25598 z: 0.0 theta: -8.09992404335 kappa: 0.000522657611848 s: 163.63706803 dkappa: -4.54570287013e-05 } path_point { x: 587684.487586 y: 4141312.88326 z: 0.0 theta: -8.09972660801 kappa: 0.000504946726938 s: 164.021342247 dkappa: -4.49295724277e-05 } path_point { x: 587684.390572 y: 4141312.4963 z: 0.0 theta: -8.09952912426 kappa: 0.000484111054722 s: 164.420276264 dkappa: -5.98978622831e-05 } path_point { x: 587684.293633 y: 4141312.10933 z: 0.0 theta: -8.09934117749 kappa: 0.000457112625317 s: 164.819210281 dkappa: -7.5193364115e-05 } path_point { x: 587684.196765 y: 4141311.72233 z: 0.0 theta: -8.09916515165 kappa: 0.000424577677902 s: 165.218144298 dkappa: -8.70220912808e-05 } path_point { x: 587684.099962 y: 4141311.33532 z: 0.0 theta: -8.09900287893 kappa: 0.000388646001985 s: 165.617078315 dkappa: -9.15900571379e-05 } path_point { x: 587684.003218 y: 4141310.9483 z: 0.0 theta: -8.09885503601 kappa: 0.000352970937409 s: 166.016012332 dkappa: -8.51032750437e-05 } path_point { x: 587683.918992 y: 4141310.61116 z: 0.0 theta: -8.09873788611 kappa: 0.000320219016612 s: 166.36351452 dkappa: -0.000103192756509 } path_point { x: 587683.834804 y: 4141310.27401 z: 0.0 theta: -8.0986331739 kappa: 0.000281523447567 s: 166.711016709 dkappa: -0.000118934676219 } path_point { x: 587683.750648 y: 4141309.93685 z: 0.0 theta: -8.09854277763 kappa: 0.000238092444755 s: 167.058518897 dkappa: -0.000130070449081 } path_point { x: 587683.66652 y: 4141309.59968 z: 0.0 theta: -8.0984680193 kappa: 0.000191919085916 s: 167.406021086 dkappa: -0.000134341490002 } path_point { x: 587683.582415 y: 4141309.26251 z: 0.0 theta: -8.09840939194 kappa: 0.000145781312057 s: 167.753523274 dkappa: -0.000129489213888 } path_point { x: 587683.498327 y: 4141308.92534 z: 0.0 theta: -8.09836628686 kappa: 0.000103241927444 s: 168.101025463 dkappa: -0.000113255035647 } path_point { x: 587683.402301 y: 4141308.54023 z: 0.0 theta: -8.09833475789 kappa: 5.43887607933e-05 s: 168.49791904 dkappa: -0.000132080932735 } path_point { x: 587683.306284 y: 4141308.15513 z: 0.0 theta: -8.0983239524 kappa: -7.70732024721e-07 s: 168.894812617 dkappa: -0.000144621858575 } path_point { x: 587683.210267 y: 4141307.77003 z: 0.0 theta: -8.09833581347 kappa: -5.92520009431e-05 s: 169.291706194 dkappa: -0.000148408207332 } path_point { x: 587683.11424 y: 4141307.38492 z: 0.0 theta: -8.09837090514 kappa: -0.000117090325201 s: 169.688599771 dkappa: -0.000140970373174 } path_point { x: 587683.018196 y: 4141306.99983 z: 0.0 theta: -8.09842802333 kappa: -0.000169340813346 s: 170.085493348 dkappa: -0.000119838750266 } path_point { x: 587682.923834 y: 4141306.62158 z: 0.0 theta: -8.09850371308 kappa: -0.000220233867717 s: 170.475331096 dkappa: -0.000139260536581 } path_point { x: 587682.82944 y: 4141306.24335 z: 0.0 theta: -8.09860042232 kappa: -0.000276437101957 s: 170.865168843 dkappa: -0.000147279585914 } path_point { x: 587682.735004 y: 4141305.86512 z: 0.0 theta: -8.09871938477 kappa: -0.000333736640206 s: 171.25500659 dkappa: -0.000145082758384 } path_point { x: 587682.64052 y: 4141305.4869 z: 0.0 theta: -8.0988602816 kappa: -0.000388381289481 s: 171.644844337 dkappa: -0.000133856914114 } path_point { x: 587682.545978 y: 4141305.1087 z: 0.0 theta: -8.09902142182 kappa: -0.000437082539674 s: 172.034682084 dkappa: -0.000114788913224 } path_point { x: 587682.463506 y: 4141304.77901 z: 0.0 theta: -8.0991769849 kappa: -0.000479357679905 s: 172.374536681 dkappa: -0.000131977977091 } path_point { x: 587682.38098 y: 4141304.44933 z: 0.0 theta: -8.09934768485 kappa: -0.00052553277121 s: 172.714391278 dkappa: -0.000138076302704 } path_point { x: 587682.298395 y: 4141304.11966 z: 0.0 theta: -8.09953424546 kappa: -0.00057218184785 s: 173.054245874 dkappa: -0.0001351040048 } path_point { x: 587682.215746 y: 4141303.79001 z: 0.0 theta: -8.09973634288 kappa: -0.00061656548937 s: 173.394100471 dkappa: -0.000125081198116 } path_point { x: 587682.133028 y: 4141303.46037 z: 0.0 theta: -8.0999528389 kappa: -0.000656630820593 s: 173.733955067 dkappa: -0.00011002799739 } path_point { x: 587682.050237 y: 4141303.13076 z: 0.0 theta: -8.10018201431 kappa: -0.000691011511618 s: 174.073809664 dkappa: -9.1964517357e-05 } path_point { x: 587681.953091 y: 4141302.74441 z: 0.0 theta: -8.10046493567 kappa: -0.000729984733556 s: 174.472182098 dkappa: -0.000101223477395 } path_point { x: 587681.855833 y: 4141302.35809 z: 0.0 theta: -8.10076375316 kappa: -0.000769973012279 s: 174.870554532 dkappa: -9.77723297055e-05 } path_point { x: 587681.758456 y: 4141301.9718 z: 0.0 theta: -8.10107797557 kappa: -0.000806763667554 s: 175.268926967 dkappa: -8.58818332575e-05 } path_point { x: 587681.660956 y: 4141301.58555 z: 0.0 theta: -8.10140577235 kappa: -0.000837845371797 s: 175.667299401 dkappa: -6.98227470191e-05 } path_point { x: 587681.563326 y: 4141301.19932 z: 0.0 theta: -8.10174465138 kappa: -0.000862408150069 s: 176.065671835 dkappa: -5.38658299585e-05 } path_point { x: 587681.465466 y: 4141300.81274 z: 0.0 theta: -8.10209300069 kappa: -0.000884845323019 s: 176.464445673 dkappa: -5.62409899074e-05 } path_point { x: 587681.367469 y: 4141300.4262 z: 0.0 theta: -8.10245013946 kappa: -0.000905718208422 s: 176.86321951 dkappa: -4.69944314855e-05 } path_point { x: 587681.269332 y: 4141300.03969 z: 0.0 theta: -8.10281467475 kappa: -0.000921557692502 s: 177.261993348 dkappa: -3.19706878516e-05 } path_point { x: 587681.171053 y: 4141299.65321 z: 0.0 theta: -8.10318429493 kappa: -0.0009312253084 s: 177.660767186 dkappa: -1.70142921643e-05 } path_point { x: 587681.072631 y: 4141299.26678 z: 0.0 theta: -8.10355669908 kappa: -0.000935913236173 s: 178.059541024 dkappa: -7.96977758252e-06 } path_point { x: 587680.977274 y: 4141298.89295 z: 0.0 theta: -8.1039182675 kappa: -0.000938033664085 s: 178.445342931 dkappa: -1.42639384611e-06 } path_point { x: 587680.881781 y: 4141298.51915 z: 0.0 theta: -8.10427996278 kappa: -0.000936127942795 s: 178.831144839 dkappa: 1.20057918429e-05 } path_point { x: 587680.786153 y: 4141298.14539 z: 0.0 theta: -8.10463985232 kappa: -0.000928575416211 s: 179.216946747 dkappa: 2.69506689709e-05 } path_point { x: 587680.690391 y: 4141297.77166 z: 0.0 theta: -8.10499577835 kappa: -0.000915829541939 s: 179.602748654 dkappa: 3.80321270241e-05 } path_point { x: 587680.594498 y: 4141297.39796 z: 0.0 theta: -8.10534615817 kappa: -0.000900417891272 s: 179.988550562 dkappa: 3.9874055489e-05 } path_point { x: 587680.511177 y: 4141297.0737 z: 0.0 theta: -8.10564516057 kappa: -0.00088504216909 s: 180.323347776 dkappa: 5.25531631018e-05 } path_point { x: 587680.427759 y: 4141296.74946 z: 0.0 theta: -8.10593825329 kappa: -0.000865001039157 s: 180.65814499 dkappa: 6.72712387227e-05 } path_point { x: 587680.344248 y: 4141296.42525 z: 0.0 theta: -8.10622381308 kappa: -0.000840086805322 s: 180.992942204 dkappa: 8.11910744064e-05 } path_point { x: 587680.260646 y: 4141296.10106 z: 0.0 theta: -8.10650030619 kappa: -0.000811041660751 s: 181.327739418 dkappa: 9.14754622076e-05 } path_point { x: 587680.176955 y: 4141295.77689 z: 0.0 theta: -8.10676660635 kappa: -0.000779557687923 s: 181.662536632 dkappa: 9.52871941808e-05 } path_point { x: 587680.09318 y: 4141295.45274 z: 0.0 theta: -8.10702231281 kappa: -0.000748276858633 s: 181.997333846 dkappa: 8.97890623807e-05 } path_point { x: 587680.005335 y: 4141295.1132 z: 0.0 theta: -8.10727881936 kappa: -0.000713312152156 s: 182.348051579 dkappa: 0.000109634304102 } path_point { x: 587679.917404 y: 4141294.77369 z: 0.0 theta: -8.10752185438 kappa: -0.000671533096521 s: 182.698769312 dkappa: 0.000128131220812 } path_point { x: 587679.829393 y: 4141294.43419 z: 0.0 theta: -8.10774917452 kappa: -0.000623956843469 s: 183.049487046 dkappa: 0.000142176061571 } path_point { x: 587679.741309 y: 4141294.09472 z: 0.0 theta: -8.10795908404 kappa: -0.000572689085232 s: 183.400204779 dkappa: 0.000148665075435 } path_point { x: 587679.653156 y: 4141293.75526 z: 0.0 theta: -8.10815081658 kappa: -0.000520924054542 s: 183.750922513 dkappa: 0.000144494511465 } path_point { x: 587679.564941 y: 4141293.41581 z: 0.0 theta: -8.10832491695 kappa: -0.000472944524623 s: 184.101640246 dkappa: 0.000126560618718 } path_point { x: 587679.464627 y: 4141293.0301 z: 0.0 theta: -8.10850274503 kappa: -0.000417974360079 s: 184.500188001 dkappa: 0.00014850842241 } path_point { x: 587679.36425 y: 4141292.6444 z: 0.0 theta: -8.10865706734 kappa: -0.000355405695394 s: 184.898735755 dkappa: 0.00016415910874 } path_point { x: 587679.263817 y: 4141292.25871 z: 0.0 theta: -8.10878544021 kappa: -0.000288384852082 s: 185.29728351 dkappa: 0.00017031798136 } path_point { x: 587679.163341 y: 4141291.87304 z: 0.0 theta: -8.10888692764 kappa: -0.000221331390709 s: 185.695831264 dkappa: 0.000163790343926 } path_point { x: 587679.06283 y: 4141291.48737 z: 0.0 theta: -8.10896260878 kappa: -0.000159938110898 s: 186.094379019 dkappa: 0.000141381500092 } path_point { x: 587678.962029 y: 4141291.10069 z: 0.0 theta: -8.10901446952 kappa: -9.79334456795e-05 s: 186.493980733 dkappa: 0.000166770650003 } path_point { x: 587678.861213 y: 4141290.71402 z: 0.0 theta: -8.10903987209 kappa: -2.83764691348e-05 s: 186.893582447 dkappa: 0.000179231676404 } path_point { x: 587678.760392 y: 4141290.32734 z: 0.0 theta: -8.10903682264 kappa: 4.36278364654e-05 s: 187.293184161 dkappa: 0.000179070474101 } path_point { x: 587678.659578 y: 4141289.94067 z: 0.0 theta: -8.10900534284 kappa: 0.000113096724939 s: 187.692785875 dkappa: 0.000166592937896 } path_point { x: 587678.558782 y: 4141289.55399 z: 0.0 theta: -8.10894742104 kappa: 0.000175169686192 s: 188.092387589 dkappa: 0.000142104962594 } path_point { x: 587678.474292 y: 4141289.22978 z: 0.0 theta: -8.10888034175 kappa: 0.000226348508724 s: 188.42742309 dkappa: 0.000161591972962 } path_point { x: 587678.389827 y: 4141288.90557 z: 0.0 theta: -8.10879522134 kappa: 0.000282285022394 s: 188.762458591 dkappa: 0.000170667319252 } path_point { x: 587678.305393 y: 4141288.58135 z: 0.0 theta: -8.10869103208 kappa: 0.000339653013702 s: 189.097494092 dkappa: 0.000170298442764 } path_point { x: 587678.220995 y: 4141288.25711 z: 0.0 theta: -8.10856780632 kappa: 0.000395450396328 s: 189.432529593 dkappa: 0.000161452784798 } path_point { x: 587678.136641 y: 4141287.93287 z: 0.0 theta: -8.10842652792 kappa: 0.000446999211132 s: 189.767565094 dkappa: 0.000145097786654 } path_point { x: 587678.052335 y: 4141287.60862 z: 0.0 theta: -8.10826902366 kappa: 0.000491945626158 s: 190.102600595 dkappa: 0.000122200889632 } path_point { x: 587677.955192 y: 4141287.23472 z: 0.0 theta: -8.10806942193 kappa: 0.000542307301992 s: 190.488914628 dkappa: 0.000136043895952 } path_point { x: 587677.858127 y: 4141286.8608 z: 0.0 theta: -8.10784968227 kappa: 0.000595347902487 s: 190.875228662 dkappa: 0.000136614880972 } path_point { x: 587677.761149 y: 4141286.48685 z: 0.0 theta: -8.10760967881 kappa: 0.000646571692998 s: 191.261542695 dkappa: 0.000127182860992 } path_point { x: 587677.664264 y: 4141286.11288 z: 0.0 theta: -8.10735077851 kappa: 0.000692745805751 s: 191.647856729 dkappa: 0.000111016852311 } path_point { x: 587677.567479 y: 4141285.73889 z: 0.0 theta: -8.10707535331 kappa: 0.000731900239848 s: 192.034170762 dkappa: 9.13858712286e-05 } path_point { x: 587677.467802 y: 4141285.35327 z: 0.0 theta: -8.1067761873 kappa: 0.000771039504855 s: 192.432467822 dkappa: 0.000102236081553 } path_point { x: 587677.368244 y: 4141284.96761 z: 0.0 theta: -8.10646099731 kappa: 0.000811384605579 s: 192.830764881 dkappa: 9.83513436085e-05 } path_point { x: 587677.26881 y: 4141284.58193 z: 0.0 theta: -8.10613032738 kappa: 0.000848154622655 s: 193.22906194 dkappa: 8.51947517149e-05 } path_point { x: 587677.169507 y: 4141284.19621 z: 0.0 theta: -8.10578619246 kappa: 0.000878744571125 s: 193.627358999 dkappa: 6.82294001929e-05 } path_point { x: 587677.070339 y: 4141283.81045 z: 0.0 theta: -8.10543121171 kappa: 0.000902725400431 s: 194.025656058 dkappa: 5.2918383363e-05 } path_point { x: 587676.971178 y: 4141283.42415 z: 0.0 theta: -8.10506683589 kappa: 0.000924629352911 s: 194.424482105 dkappa: 5.47064097346e-05 } path_point { x: 587676.872159 y: 4141283.03781 z: 0.0 theta: -8.10469389904 kappa: 0.000944950970644 s: 194.823308151 dkappa: 4.58799437593e-05 } path_point { x: 587676.773286 y: 4141282.65144 z: 0.0 theta: -8.10431373382 kappa: 0.000960529586974 s: 195.222134198 dkappa: 3.18181193835e-05 } path_point { x: 587676.674561 y: 4141282.26502 z: 0.0 theta: -8.10392850564 kappa: 0.000970349873973 s: 195.620960244 dkappa: 1.79000705531e-05 } path_point { x: 587676.575985 y: 4141281.87857 z: 0.0 theta: -8.10354035702 kappa: 0.000975541842433 s: 196.019786291 dkappa: 9.50493121429e-06 } path_point { x: 587676.491796 y: 4141281.54802 z: 0.0 theta: -8.10320708356 kappa: 0.000978321463016 s: 196.360890076 dkappa: 5.60106690792e-06 } path_point { x: 587676.407716 y: 4141281.21744 z: 0.0 theta: -8.10287321194 kappa: 0.000978735083509 s: 196.701993861 dkappa: -3.82471651789e-06 } path_point { x: 587676.323747 y: 4141280.88684 z: 0.0 theta: -8.10253980729 kappa: 0.000975454777054 s: 197.043097646 dkappa: -1.55146383994e-05 } path_point { x: 587676.239889 y: 4141280.5562 z: 0.0 theta: -8.10220819816 kappa: 0.000968263858114 s: 197.384201431 dkappa: -2.6210918073e-05 } path_point { x: 587676.156139 y: 4141280.22554 z: 0.0 theta: -8.1018795975 kappa: 0.000958056882464 s: 197.725305217 dkappa: -3.2655774875e-05 } path_point { x: 587676.072497 y: 4141279.89485 z: 0.0 theta: -8.10155472358 kappa: 0.000946839647195 s: 198.066409002 dkappa: -3.15914281417e-05 } path_point { x: 587675.97695 y: 4141279.51654 z: 0.0 theta: -8.10118792961 kappa: 0.000932548696726 s: 198.456598385 dkappa: -4.21930494177e-05 } path_point { x: 587675.881541 y: 4141279.13819 z: 0.0 theta: -8.10082757688 kappa: 0.000913734316801 s: 198.846787768 dkappa: -5.4169161277e-05 } path_point { x: 587675.786266 y: 4141278.75981 z: 0.0 theta: -8.10047544243 kappa: 0.000890571997229 s: 199.236977151 dkappa: -6.38712716236e-05 } path_point { x: 587675.691123 y: 4141278.3814 z: 0.0 theta: -8.1001329571 kappa: 0.000864660830695 s: 199.627166534 dkappa: -6.76508883614e-05 } path_point { x: 587675.596107 y: 4141278.00296 z: 0.0 theta: -8.09980065004 kappa: 0.000839023512769 s: 200.017355917 dkappa: -6.18595193943e-05 } path_point { x: 587675.498913 y: 4141277.61529 z: 0.0 theta: -8.09947068845 kappa: 0.000811150671201 s: 200.41701947 dkappa: -7.71772431347e-05 } path_point { x: 587675.401845 y: 4141277.2276 z: 0.0 theta: -8.09915300537 kappa: 0.000777824943104 s: 200.816683023 dkappa: -8.88071693657e-05 } path_point { x: 587675.304897 y: 4141276.83987 z: 0.0 theta: -8.09884943133 kappa: 0.000740927545307 s: 201.216346577 dkappa: -9.47108906777e-05 } path_point { x: 587675.208063 y: 4141276.45211 z: 0.0 theta: -8.09856088219 kappa: 0.000703154371788 s: 201.61601013 dkappa: -9.28499996605e-05 } path_point { x: 587675.111339 y: 4141276.06433 z: 0.0 theta: -8.09828703359 kappa: 0.000668015993672 s: 202.015673683 dkappa: -8.11860889045e-05 } path_point { x: 587675.014728 y: 4141275.67656 z: 0.0 theta: -8.09802700687 kappa: 0.000632329902832 s: 202.415297301 dkappa: -9.63726497198e-05 } path_point { x: 587674.918215 y: 4141275.28877 z: 0.0 theta: -8.09778228342 kappa: 0.000591864781602 s: 202.814920918 dkappa: -0.00010499532061 } path_point { x: 587674.821794 y: 4141274.90095 z: 0.0 theta: -8.09755423161 kappa: 0.000549373703827 s: 203.214544536 dkappa: -0.000106403547399 } path_point { x: 587674.725457 y: 4141274.51311 z: 0.0 theta: -8.09734306767 kappa: 0.000507869720165 s: 203.614168154 dkappa: -9.9946775912e-05 } path_point { x: 587674.6292 y: 4141274.12526 z: 0.0 theta: -8.09714775181 kappa: 0.000470625858091 s: 204.013791772 dkappa: -8.49744519722e-05 } path_point { x: 587674.533821 y: 4141273.74063 z: 0.0 theta: -8.09696833132 kappa: 0.000434027624021 s: 204.41006891 dkappa: -9.82661245315e-05 } path_point { x: 587674.438507 y: 4141273.35598 z: 0.0 theta: -8.0968042326 kappa: 0.000393849989587 s: 204.806346048 dkappa: -0.000103189648342 } path_point { x: 587674.343254 y: 4141272.97133 z: 0.0 theta: -8.0966562406 kappa: 0.000353230665359 s: 205.202623186 dkappa: -0.000100645380487 } path_point { x: 587674.248055 y: 4141272.58665 z: 0.0 theta: -8.09652396756 kappa: 0.000314950570982 s: 205.598900324 dkappa: -9.15336780486e-05 } path_point { x: 587674.152903 y: 4141272.20197 z: 0.0 theta: -8.09640599441 kappa: 0.000281433835175 s: 205.995177462 dkappa: -7.67548981092e-05 } path_point { x: 587674.057149 y: 4141271.81466 z: 0.0 theta: -8.0963001885 kappa: 0.000248221083967 s: 206.394148456 dkappa: -8.79122714246e-05 } path_point { x: 587673.961432 y: 4141271.42734 z: 0.0 theta: -8.09620824818 kappa: 0.000212569312214 s: 206.79311945 dkappa: -8.94120276695e-05 } path_point { x: 587673.865749 y: 4141271.04001 z: 0.0 theta: -8.09613044643 kappa: 0.00017781626958 s: 207.192090444 dkappa: -8.38376098805e-05 } path_point { x: 587673.770092 y: 4141270.65268 z: 0.0 theta: -8.09606593021 kappa: 0.000146268986896 s: 207.591061438 dkappa: -7.37724610941e-05 } path_point { x: 587673.674459 y: 4141270.26534 z: 0.0 theta: -8.09601313162 kappa: 0.000119203776152 s: 207.990032433 dkappa: -6.18000243471e-05 } path_point { x: 587673.59106 y: 4141269.92749 z: 0.0 theta: -8.09597558439 kappa: 9.61527593374e-05 s: 208.338025099 dkappa: -6.93606509488e-05 } path_point { x: 587673.507673 y: 4141269.58963 z: 0.0 theta: -8.09594636616 kappa: 7.17400682981e-05 s: 208.686017765 dkappa: -6.99358904028e-05 } path_point { x: 587673.424294 y: 4141269.25178 z: 0.0 theta: -8.09592556537 kappa: 4.80729467205e-05 s: 209.034010431 dkappa: -6.53856658761e-05 } path_point { x: 587673.340921 y: 4141268.91392 z: 0.0 theta: -8.09591264975 kappa: 2.66113986692e-05 s: 209.382003097 dkappa: -5.75699005356e-05 } path_point { x: 587673.257551 y: 4141268.57606 z: 0.0 theta: -8.0959066916 kappa: 8.16818858729e-06 s: 209.729995763 dkappa: -4.83485175483e-05 } path_point { x: 587673.174181 y: 4141268.2382 z: 0.0 theta: -8.09590659299 kappa: -7.09115870358e-06 s: 210.077988429 dkappa: -3.95814400812e-05 } path_point { x: 587673.093703 y: 4141267.91206 z: 0.0 theta: -8.09591126606 kappa: -2.08345212857e-05 s: 210.413911867 dkappa: -4.14516510947e-05 } path_point { x: 587673.013222 y: 4141267.58592 z: 0.0 theta: -8.09592057841 kappa: -3.44841679124e-05 s: 210.749835304 dkappa: -3.92481388005e-05 } path_point { x: 587672.932738 y: 4141267.25978 z: 0.0 theta: -8.09593429407 kappa: -4.68980440431e-05 s: 211.085758742 dkappa: -3.4318856757e-05 } path_point { x: 587672.852248 y: 4141266.93364 z: 0.0 theta: -8.09595186948 kappa: -5.73869043302e-05 s: 211.421682179 dkappa: -2.80117585225e-05 } path_point { x: 587672.771752 y: 4141266.60751 z: 0.0 theta: -8.09597260557 kappa: -6.5714312619e-05 s: 211.757605617 dkappa: -2.16747976554e-05 } path_point { x: 587672.691249 y: 4141266.28137 z: 0.0 theta: -8.09599579994 kappa: -7.20966419478e-05 s: 212.093529054 dkappa: -1.66559277141e-05 } path_point { x: 587672.600148 y: 4141265.91235 z: 0.0 theta: -8.09602440528 kappa: -7.83511391008e-05 s: 212.47363496 dkappa: -1.56623354315e-05 } path_point { x: 587672.509036 y: 4141265.54332 z: 0.0 theta: -8.09605524077 kappa: -8.36586335029e-05 s: 212.853740866 dkappa: -1.1948178969e-05 } path_point { x: 587672.417913 y: 4141265.1743 z: 0.0 theta: -8.09608778965 kappa: -8.7298709845e-05 s: 213.233846772 dkappa: -7.16398360471e-06 } path_point { x: 587672.326777 y: 4141264.80528 z: 0.0 theta: -8.09612138057 kappa: -8.9178327224e-05 s: 213.613952677 dkappa: -2.96027461654e-06 } path_point { x: 587672.235629 y: 4141264.43627 z: 0.0 theta: -8.09615542606 kappa: -8.98318191427e-05 s: 213.994058583 dkappa: -9.87577282557e-07 } path_point { x: 587672.15536 y: 4141264.11134 z: 0.0 theta: -8.09618552243 kappa: -8.99246661546e-05 s: 214.328749593 dkappa: 6.01380178635e-07 } path_point { x: 587672.075082 y: 4141263.78642 z: 0.0 theta: -8.09621554483 kappa: -8.93503897287e-05 s: 214.663440602 dkappa: 2.89734500273e-06 } path_point { x: 587671.994794 y: 4141263.4615 z: 0.0 theta: -8.09624524177 kappa: -8.79743558008e-05 s: 214.998131611 dkappa: 5.290829986e-06 } path_point { x: 587671.914497 y: 4141263.13659 z: 0.0 theta: -8.09627435082 kappa: -8.58659201941e-05 s: 215.332822621 dkappa: 7.17234792473e-06 } path_point { x: 587671.83419 y: 4141262.81167 z: 0.0 theta: -8.0963026669 kappa: -8.32984286192e-05 s: 215.66751363 dkappa: 7.93241161519e-06 } path_point { x: 587671.753875 y: 4141262.48676 z: 0.0 theta: -8.09633011057 kappa: -8.07492166741e-05 s: 216.002204639 dkappa: 6.96153385368e-06 } path_point { x: 587671.658354 y: 4141262.10039 z: 0.0 theta: -8.09636164263 kappa: -7.75834423681e-05 s: 216.400210079 dkappa: 8.73902035894e-06 } path_point { x: 587671.562821 y: 4141261.71402 z: 0.0 theta: -8.09639180599 kappa: -7.39499082808e-05 s: 216.798215519 dkappa: 9.33275253258e-06 } path_point { x: 587671.467277 y: 4141261.32765 z: 0.0 theta: -8.09642050495 kappa: -7.02950399643e-05 s: 217.196220959 dkappa: 8.86692521637e-06 } path_point { x: 587671.371722 y: 4141260.94129 z: 0.0 theta: -8.09644781167 kappa: -6.70158327477e-05 s: 217.594226398 dkappa: 7.46573325212e-06 } path_point { x: 587671.276157 y: 4141260.55492 z: 0.0 theta: -8.09647394645 kappa: -6.4459851738e-05 s: 217.992231838 dkappa: 5.25337148162e-06 } path_point { x: 587671.18036 y: 4141260.16767 z: 0.0 theta: -8.09649921877 kappa: -6.22272672089e-05 s: 218.391161568 dkappa: 5.47507014549e-06 } path_point { x: 587671.084554 y: 4141259.78041 z: 0.0 theta: -8.09652364899 kappa: -6.03847579345e-05 s: 218.790091297 dkappa: 3.4915480765e-06 } path_point { x: 587670.988738 y: 4141259.39316 z: 0.0 theta: -8.09654753739 kappa: -5.95801317026e-05 s: 219.189021027 dkappa: 4.65517932881e-07 } path_point { x: 587670.892912 y: 4141259.00591 z: 0.0 theta: -8.0965713501 kappa: -5.99973556542e-05 s: 219.587950757 dkappa: -2.44030762717e-06 } path_point { x: 587670.797078 y: 4141258.61866 z: 0.0 theta: -8.09659553416 kappa: -6.13565562842e-05 s: 219.986880487 dkappa: -4.06321594543e-06 } path_point { x: 587670.716911 y: 4141258.29476 z: 0.0 theta: -8.09661625722 kappa: -6.29545682948e-05 s: 220.320559642 dkappa: -5.87341989348e-06 } path_point { x: 587670.636738 y: 4141257.97085 z: 0.0 theta: -8.09663764926 kappa: -6.54564726244e-05 s: 220.654238797 dkappa: -9.30410954489e-06 } path_point { x: 587670.556557 y: 4141257.64695 z: 0.0 theta: -8.09666008244 kappa: -6.9225968502e-05 s: 220.987917952 dkappa: -1.32942472622e-05 } path_point { x: 587670.476369 y: 4141257.32305 z: 0.0 theta: -8.09668399117 kappa: -7.42727090142e-05 s: 221.321597107 dkappa: -1.67827954079e-05 } path_point { x: 587670.396173 y: 4141256.99915 z: 0.0 theta: -8.09670975402 kappa: -8.02523011056e-05 s: 221.655276262 dkappa: -1.87087163447e-05 } path_point { x: 587670.315968 y: 4141256.67526 z: 0.0 theta: -8.09673757559 kappa: -8.64663055785e-05 s: 221.988955417 dkappa: -1.8010972435e-05 } path_point { x: 587670.219866 y: 4141256.28721 z: 0.0 theta: -8.09677371579 kappa: -9.4707251653e-05 s: 222.388720872 dkappa: -2.34809945629e-05 } path_point { x: 587670.123749 y: 4141255.89917 z: 0.0 theta: -8.09681361713 kappa: -0.000105325907661 s: 222.788486327 dkappa: -2.95950526701e-05 } path_point { x: 587670.027616 y: 4141255.51114 z: 0.0 theta: -8.09685823181 kappa: -0.00011820622267 s: 223.188251783 dkappa: -3.44844796984e-05 } path_point { x: 587669.931465 y: 4141255.12311 z: 0.0 theta: -8.09690831634 kappa: -0.000132485117211 s: 223.588017238 dkappa: -3.62806085895e-05 } path_point { x: 587669.835293 y: 4141254.73508 z: 0.0 theta: -8.09696413288 kappa: -0.000146552483276 s: 223.987782694 dkappa: -3.31147722851e-05 } path_point { x: 587669.755084 y: 4141254.41154 z: 0.0 theta: -8.09701494793 kappa: -0.000158701687151 s: 224.321120388 dkappa: -3.97226733428e-05 } path_point { x: 587669.674858 y: 4141254.088 z: 0.0 theta: -8.09707016978 kappa: -0.000172951218425 s: 224.654458082 dkappa: -4.55800424539e-05 } path_point { x: 587669.594614 y: 4141253.76447 z: 0.0 theta: -8.09713044167 kappa: -0.000188914365364 s: 224.987795776 dkappa: -4.98677034658e-05 } path_point { x: 587669.514349 y: 4141253.44094 z: 0.0 theta: -8.09719623244 kappa: -0.000205931353944 s: 225.32113347 dkappa: -5.17664802258e-05 } path_point { x: 587669.434062 y: 4141253.11741 z: 0.0 theta: -8.09726774549 kappa: -0.000223069347854 s: 225.654471165 dkappa: -5.04571965811e-05 } path_point { x: 587669.353751 y: 4141252.79389 z: 0.0 theta: -8.09734482775 kappa: -0.000239122448489 s: 225.987808859 dkappa: -4.51206763792e-05 } path_point { x: 587669.273366 y: 4141252.47019 z: 0.0 theta: -8.09742724372 kappa: -0.00025549383378 s: 226.321345796 dkappa: -5.27114384942e-05 } path_point { x: 587669.192953 y: 4141252.14649 z: 0.0 theta: -8.09751550321 kappa: -0.000274039424905 s: 226.654882733 dkappa: -5.80945253678e-05 } path_point { x: 587669.112511 y: 4141251.8228 z: 0.0 theta: -8.09761020154 kappa: -0.000293959419185 s: 226.98841967 dkappa: -6.08894007861e-05 } path_point { x: 587669.032037 y: 4141251.49912 z: 0.0 theta: -8.0977116461 kappa: -0.000314327091056 s: 227.321956607 dkappa: -6.07155285352e-05 } path_point { x: 587668.951529 y: 4141251.17544 z: 0.0 theta: -8.09781981403 kappa: -0.000334088792072 s: 227.655493544 dkappa: -5.71923724012e-05 } path_point { x: 587668.870986 y: 4141250.85178 z: 0.0 theta: -8.09793430985 kappa: -0.000352063950903 s: 227.989030482 dkappa: -4.99393961703e-05 } path_point { x: 587668.790294 y: 4141250.52768 z: 0.0 theta: -8.09805483853 kappa: -0.000370099922569 s: 228.323022139 dkappa: -5.74386288728e-05 } path_point { x: 587668.709562 y: 4141250.20359 z: 0.0 theta: -8.09818174089 kappa: -0.000390029267879 s: 228.657013797 dkappa: -6.13204468392e-05 } path_point { x: 587668.628788 y: 4141249.87951 z: 0.0 theta: -8.09831545236 kappa: -0.000410687086566 s: 228.991005455 dkappa: -6.18440546102e-05 } path_point { x: 587668.547969 y: 4141249.55545 z: 0.0 theta: -8.09845603374 kappa: -0.000430995050516 s: 229.324997113 dkappa: -5.92686567263e-05 } path_point { x: 587668.467104 y: 4141249.23139 z: 0.0 theta: -8.09860320018 kappa: -0.000449961403769 s: 229.658988771 dkappa: -5.38534577281e-05 } path_point { x: 587668.38619 y: 4141248.90735 z: 0.0 theta: -8.09875635 kappa: -0.000466680962522 s: 229.992980428 dkappa: -4.58576621562e-05 } path_point { x: 587668.305168 y: 4141248.58309 z: 0.0 theta: -8.09891502763 kappa: -0.000483166457933 s: 230.32721063 dkappa: -5.19148172558e-05 } path_point { x: 587668.224094 y: 4141248.25884 z: 0.0 theta: -8.09907946088 kappa: -0.0005008600969 s: 230.661440832 dkappa: -5.32698360406e-05 } path_point { x: 587668.142965 y: 4141247.93461 z: 0.0 theta: -8.09924981133 kappa: -0.000518373539233 s: 230.995671034 dkappa: -5.10193027077e-05 } path_point { x: 587668.06178 y: 4141247.61039 z: 0.0 theta: -8.09942583779 kappa: -0.000534684956299 s: 231.329901236 dkappa: -4.62598014543e-05 } path_point { x: 587667.980537 y: 4141247.28618 z: 0.0 theta: -8.09960701877 kappa: -0.000549139031022 s: 231.664131438 dkappa: -4.00879164773e-05 } path_point { x: 587667.899235 y: 4141246.96199 z: 0.0 theta: -8.09979267502 kappa: -0.000561446957884 s: 231.99836164 dkappa: -3.36002319737e-05 } path_point { x: 587667.814857 y: 4141246.62581 z: 0.0 theta: -8.09998939049 kappa: -0.000573832798764 s: 232.344968647 dkappa: -3.68742480885e-05 } path_point { x: 587667.730413 y: 4141246.28965 z: 0.0 theta: -8.10019048487 kappa: -0.000586419769838 s: 232.691575655 dkappa: -3.50508458817e-05 } path_point { x: 587667.6459 y: 4141245.9535 z: 0.0 theta: -8.10039575653 kappa: -0.000597742667869 s: 233.038182663 dkappa: -2.98703114348e-05 } path_point { x: 587667.561318 y: 4141245.61737 z: 0.0 theta: -8.10060460051 kappa: -0.000606939484973 s: 233.384789671 dkappa: -2.3072930829e-05 } path_point { x: 587667.476665 y: 4141245.28126 z: 0.0 theta: -8.10081621762 kappa: -0.000613751408616 s: 233.731396679 dkappa: -1.63989901459e-05 } path_point { x: 587667.391941 y: 4141244.94517 z: 0.0 theta: -8.10102982351 kappa: -0.000618522821615 s: 234.078003686 dkappa: -1.15887754667e-05 } path_point { x: 587667.294756 y: 4141244.56002 z: 0.0 theta: -8.10127640103 kappa: -0.000622825276296 s: 234.475223962 dkappa: -9.11312134565e-06 } path_point { x: 587667.197476 y: 4141244.1749 z: 0.0 theta: -8.10152436005 kappa: -0.000625194707511 s: 234.872444237 dkappa: -2.34805443484e-06 } path_point { x: 587667.100101 y: 4141243.7898 z: 0.0 theta: -8.10177267197 kappa: -0.000624513609067 s: 235.269664512 dkappa: 5.75423188131e-06 } path_point { x: 587667.002629 y: 4141243.40472 z: 0.0 theta: -8.1020200972 kappa: -0.000620837145837 s: 235.666884787 dkappa: 1.22415442184e-05 } path_point { x: 587666.905063 y: 4141243.01967 z: 0.0 theta: -8.10226565096 kappa: -0.000615393153765 s: 236.064105063 dkappa: 1.4161689192e-05 } path_point { x: 587666.809335 y: 4141242.64226 z: 0.0 theta: -8.10250405797 kappa: -0.000608800245695 s: 236.453469872 dkappa: 2.02961417754e-05 } path_point { x: 587666.713518 y: 4141242.26487 z: 0.0 theta: -8.10273936075 kappa: -0.000599308198885 s: 236.842834681 dkappa: 2.85860136854e-05 } path_point { x: 587666.617613 y: 4141241.8875 z: 0.0 theta: -8.10297033794 kappa: -0.000586623628285 s: 237.23219949 dkappa: 3.62274594087e-05 } path_point { x: 587666.521621 y: 4141241.51015 z: 0.0 theta: -8.10319586648 kappa: -0.000571544867622 s: 237.621564299 dkappa: 4.04166334324e-05 } path_point { x: 587666.425546 y: 4141241.13282 z: 0.0 theta: -8.1034153467 kappa: -0.000555961969392 s: 238.010929108 dkappa: 3.83496902432e-05 } path_point { x: 587666.327178 y: 4141240.74685 z: 0.0 theta: -8.10363348519 kappa: -0.000538669037651 s: 238.409242199 dkappa: 4.85627742195e-05 } path_point { x: 587666.228727 y: 4141240.36089 z: 0.0 theta: -8.10384392842 kappa: -0.000517369874728 s: 238.80755529 dkappa: 5.80657427247e-05 } path_point { x: 587666.130197 y: 4141239.97496 z: 0.0 theta: -8.10404520044 kappa: -0.000492825230578 s: 239.205868382 dkappa: 6.44589675327e-05 } path_point { x: 587666.031591 y: 4141239.58905 z: 0.0 theta: -8.10423631867 kappa: -0.000466751658495 s: 239.604181473 dkappa: 6.53428204178e-05 } path_point { x: 587665.932913 y: 4141239.20315 z: 0.0 theta: -8.10441717462 kappa: -0.000441821515108 s: 240.002494564 dkappa: 5.83176731539e-05 } path_point { x: 587665.849788 y: 4141238.87829 z: 0.0 theta: -8.10456183198 kappa: -0.000420361430766 s: 240.337816376 dkappa: 6.92970330662e-05 } path_point { x: 587665.766617 y: 4141238.55345 z: 0.0 theta: -8.10469872222 kappa: -0.000395642463736 s: 240.673138188 dkappa: 7.76410557608e-05 } path_point { x: 587665.683403 y: 4141238.22862 z: 0.0 theta: -8.10482691355 kappa: -0.000368662941188 s: 241.00846 dkappa: 8.26659734931e-05 } path_point { x: 587665.600149 y: 4141237.9038 z: 0.0 theta: -8.10494584736 kappa: -0.000340650472533 s: 241.343781812 dkappa: 8.36880185187e-05 } path_point { x: 587665.516858 y: 4141237.57898 z: 0.0 theta: -8.10505541514 kappa: -0.000313061949418 s: 241.679103624 dkappa: 8.0023423093e-05 } path_point { x: 587665.433532 y: 4141237.25418 z: 0.0 theta: -8.10515603536 kappa: -0.000287583545733 s: 242.014425436 dkappa: 7.09884194716e-05 } path_point { x: 587665.348494 y: 4141236.92283 z: 0.0 theta: -8.10525000119 kappa: -0.000261101975266 s: 242.356509383 dkappa: 8.30461026732e-05 } path_point { x: 587665.263427 y: 4141236.5915 z: 0.0 theta: -8.10533429497 kappa: -0.000231305269609 s: 242.69859333 dkappa: 9.03751129369e-05 } path_point { x: 587665.178333 y: 4141236.26016 z: 0.0 theta: -8.10540805875 kappa: -0.000199806213147 s: 243.040677277 dkappa: 9.30036229895e-05 } path_point { x: 587665.093217 y: 4141235.92884 z: 0.0 theta: -8.10547098469 kappa: -0.000168207952824 s: 243.382761224 dkappa: 9.09598055577e-05 } path_point { x: 587665.008081 y: 4141235.59752 z: 0.0 theta: -8.10552331167 kappa: -0.00013810399815 s: 243.72484517 dkappa: 8.42718333684e-05 } path_point { x: 587664.92293 y: 4141235.2662 z: 0.0 theta: -8.10556582205 kappa: -0.000111078221196 s: 244.066929117 dkappa: 7.29678791483e-05 } path_point { x: 587664.838873 y: 4141234.93919 z: 0.0 theta: -8.10559896166 kappa: -8.46931470315e-05 s: 244.404568542 dkappa: 8.24032447753e-05 } path_point { x: 587664.754807 y: 4141234.61219 z: 0.0 theta: -8.10562275704 kappa: -5.60227312067e-05 s: 244.742207967 dkappa: 8.6599189406e-05 } path_point { x: 587664.670734 y: 4141234.28518 z: 0.0 theta: -8.1056367245 kappa: -2.6740655508e-05 s: 245.079847392 dkappa: 8.61205363303e-05 } path_point { x: 587664.586658 y: 4141233.95818 z: 0.0 theta: -8.10564091322 kappa: 1.67010488865e-06 s: 245.417486817 dkappa: 8.15321088378e-05 } path_point { x: 587664.502583 y: 4141233.63117 z: 0.0 theta: -8.10563584093 kappa: 2.7917281418e-05 s: 245.755126242 dkappa: 7.33987302184e-05 } path_point { x: 587664.41851 y: 4141233.30417 z: 0.0 theta: -8.10562242947 kappa: 5.08993121256e-05 s: 246.092765667 dkappa: 6.22852237617e-05 } path_point { x: 587664.335185 y: 4141232.98005 z: 0.0 theta: -8.10560175235 kappa: 7.30490894024e-05 s: 246.427426226 dkappa: 6.90755081953e-05 } path_point { x: 587664.251868 y: 4141232.65592 z: 0.0 theta: -8.10557339044 kappa: 9.6517406872e-05 s: 246.762086784 dkappa: 7.03473511061e-05 } path_point { x: 587664.168561 y: 4141232.3318 z: 0.0 theta: -8.10553719109 kappa: 0.000119640446778 s: 247.096747343 dkappa: 6.71943200601e-05 } path_point { x: 587664.085268 y: 4141232.00767 z: 0.0 theta: -8.10549349722 kappa: 0.000141120365296 s: 247.431407901 dkappa: 6.07099826234e-05 } path_point { x: 587664.001989 y: 4141231.68353 z: 0.0 theta: -8.10544302486 kappa: 0.000160025292534 s: 247.76606846 dkappa: 5.19879063619e-05 } path_point { x: 587663.918728 y: 4141231.3594 z: 0.0 theta: -8.10538674065 kappa: 0.000175789332535 s: 248.100729019 dkappa: 4.21216588416e-05 } path_point { x: 587663.822942 y: 4141230.9864 z: 0.0 theta: -8.10531579872 kappa: 0.000192835616169 s: 248.485827994 dkappa: 4.51275810186e-05 } path_point { x: 587663.727183 y: 4141230.6134 z: 0.0 theta: -8.10523824319 kappa: 0.000209727225408 s: 248.870926969 dkappa: 4.17511632818e-05 } path_point { x: 587663.631455 y: 4141230.24039 z: 0.0 theta: -8.10515454269 kappa: 0.000224506341679 s: 249.256025944 dkappa: 3.45892132962e-05 } path_point { x: 587663.535759 y: 4141229.86737 z: 0.0 theta: -8.10506572727 kappa: 0.000236215174378 s: 249.641124919 dkappa: 2.62385387271e-05 } path_point { x: 587663.440097 y: 4141229.49434 z: 0.0 theta: -8.10497300323 kappa: 0.00024489596087 s: 250.026223894 dkappa: 1.92959472395e-05 } path_point { x: 587663.341571 y: 4141229.10999 z: 0.0 theta: -8.10487427526 kappa: 0.000252733109655 s: 250.42299754 dkappa: 1.8977614786e-05 } path_point { x: 587663.243084 y: 4141228.72564 z: 0.0 theta: -8.10477263424 kappa: 0.000259203703274 s: 250.819771187 dkappa: 1.29742341437e-05 } path_point { x: 587663.144636 y: 4141228.34127 z: 0.0 theta: -8.10466898068 kappa: 0.000262726527948 s: 251.216544833 dkappa: 4.6855448135e-06 } path_point { x: 587663.046229 y: 4141227.95689 z: 0.0 theta: -8.10456457485 kappa: 0.000263069296935 s: 251.613318479 dkappa: -2.48871370387e-06 } path_point { x: 587662.947861 y: 4141227.57251 z: 0.0 theta: -8.1044605016 kappa: 0.000261348650532 s: 252.010092126 dkappa: -5.14880190761e-06 } path_point { x: 587662.849777 y: 4141227.18906 z: 0.0 theta: -8.10435758355 kappa: 0.000258348641319 s: 252.405886162 dkappa: -1.05843349861e-05 } path_point { x: 587662.751731 y: 4141226.8056 z: 0.0 theta: -8.10425635227 kappa: 0.000252680252319 s: 252.801680198 dkappa: -1.82177148421e-05 } path_point { x: 587662.653723 y: 4141226.42213 z: 0.0 theta: -8.10415797105 kappa: 0.000243966074209 s: 253.197474235 dkappa: -2.5560347516e-05 } path_point { x: 587662.555753 y: 4141226.03866 z: 0.0 theta: -8.10406355764 kappa: 0.000232813668313 s: 253.593268271 dkappa: -3.01236390482e-05 } path_point { x: 587662.457818 y: 4141225.65517 z: 0.0 theta: -8.10397379443 kappa: 0.000220815566605 s: 253.989062307 dkappa: -2.94189954791e-05 } path_point { x: 587662.371365 y: 4141225.31653 z: 0.0 theta: -8.10389857262 kappa: 0.000209178279866 s: 254.338564087 dkappa: -3.72564907513e-05 } path_point { x: 587662.284938 y: 4141224.97788 z: 0.0 theta: -8.10382789999 kappa: 0.000194793132265 s: 254.688065867 dkappa: -4.49224391611e-05 } path_point { x: 587662.198533 y: 4141224.63923 z: 0.0 theta: -8.10376269947 kappa: 0.000177951801435 s: 255.037567646 dkappa: -5.10908291497e-05 } path_point { x: 587662.112149 y: 4141224.30057 z: 0.0 theta: -8.10370371103 kappa: 0.000159409408408 s: 255.387069426 dkappa: -5.44356491583e-05 } path_point { x: 587662.025784 y: 4141223.96191 z: 0.0 theta: -8.10365132974 kappa: 0.000140384517619 s: 255.736571206 dkappa: -5.36308876282e-05 } path_point { x: 587661.939436 y: 4141223.62324 z: 0.0 theta: -8.1036054438 kappa: 0.0001225591369 s: 256.086072986 dkappa: -4.73505330007e-05 } path_point { x: 587661.841241 y: 4141223.23804 z: 0.0 theta: -8.10356069069 kappa: 0.000102060682653 s: 256.483595119 dkappa: -5.54892993529e-05 } path_point { x: 587661.743062 y: 4141222.85283 z: 0.0 theta: -8.10352467516 kappa: 7.87549925247e-05 s: 256.881117253 dkappa: -6.12711783562e-05 } path_point { x: 587661.644895 y: 4141222.46762 z: 0.0 theta: -8.10349829487 kappa: 5.38211027666e-05 s: 257.278639386 dkappa: -6.34780171359e-05 } path_point { x: 587661.546736 y: 4141222.08241 z: 0.0 theta: -8.10348188249 kappa: 2.8922292361e-05 s: 257.67616152 dkappa: -6.08916628178e-05 } path_point { x: 587661.448581 y: 4141221.69719 z: 0.0 theta: -8.10347501329 kappa: 6.20608301963e-06 s: 258.073683653 dkappa: -5.22939625272e-05 } path_point { x: 587661.366265 y: 4141221.37414 z: 0.0 theta: -8.10347601514 kappa: -1.26582389197e-05 s: 258.407064976 dkappa: -6.02505951244e-05 } path_point { x: 587661.283947 y: 4141221.05108 z: 0.0 theta: -8.10348367958 kappa: -3.35606092458e-05 s: 258.740446298 dkappa: -6.45523689757e-05 } path_point { x: 587661.201626 y: 4141220.72802 z: 0.0 theta: -8.10349848649 kappa: -5.53144472504e-05 s: 259.07382762 dkappa: -6.53905421457e-05 } path_point { x: 587661.119299 y: 4141220.40496 z: 0.0 theta: -8.1035205308 kappa: -7.67969340915e-05 s: 259.407208943 dkappa: -6.29563726989e-05 } path_point { x: 587661.036964 y: 4141220.08191 z: 0.0 theta: -8.10354954373 kappa: -9.69490127937e-05 s: 259.740590265 dkappa: -5.74411186997e-05 } path_point { x: 587660.954618 y: 4141219.75886 z: 0.0 theta: -8.10358491409 kappa: -0.000114775388248 s: 260.073971587 dkappa: -4.90360382127e-05 } path_point { x: 587660.872161 y: 4141219.43542 z: 0.0 theta: -8.10362610187 kappa: -0.000132390863706 s: 260.407750274 dkappa: -5.56887476535e-05 } path_point { x: 587660.789691 y: 4141219.11199 z: 0.0 theta: -8.10367345179 kappa: -0.000151446827921 s: 260.741528961 dkappa: -5.7811559457e-05 } path_point { x: 587660.707204 y: 4141218.78857 z: 0.0 theta: -8.10372720835 kappa: -0.000170575610931 s: 261.075307647 dkappa: -5.62691982233e-05 } path_point { x: 587660.624698 y: 4141218.46515 z: 0.0 theta: -8.10378720777 kappa: -0.000188698169413 s: 261.409086334 dkappa: -5.19263885526e-05 } path_point { x: 587660.542173 y: 4141218.14173 z: 0.0 theta: -8.10385297424 kappa: -0.000205024086687 s: 261.74286502 dkappa: -4.5647855045e-05 } path_point { x: 587660.459625 y: 4141217.81832 z: 0.0 theta: -8.10392381632 kappa: -0.000219051572714 s: 262.076643707 dkappa: -3.82983223006e-05 } path_point { x: 587660.360763 y: 4141217.43113 z: 0.0 theta: -8.10401456641 kappa: -0.000235400418962 s: 262.476261037 dkappa: -4.23444446351e-05 } path_point { x: 587660.261864 y: 4141217.04394 z: 0.0 theta: -8.10411199929 kappa: -0.000252100231959 s: 262.875878367 dkappa: -4.04261966604e-05 } path_point { x: 587660.162927 y: 4141216.65676 z: 0.0 theta: -8.10421583827 kappa: -0.000267212751889 s: 263.275495697 dkappa: -3.47717396327e-05 } path_point { x: 587660.063949 y: 4141216.2696 z: 0.0 theta: -8.10432521001 kappa: -0.000279690130794 s: 263.675113028 dkappa: -2.76092348083e-05 } path_point { x: 587659.964927 y: 4141215.88244 z: 0.0 theta: -8.10443900037 kappa: -0.000289374932566 s: 264.074730358 dkappa: -2.11668434431e-05 } path_point { x: 587659.882173 y: 4141215.55903 z: 0.0 theta: -8.10453680972 kappa: -0.000296634901205 s: 264.408558379 dkappa: -2.16119379824e-05 } path_point { x: 587659.799387 y: 4141215.23563 z: 0.0 theta: -8.10463699437 kappa: -0.000303407052949 s: 264.7423864 dkappa: -1.84873448555e-05 } path_point { x: 587659.716568 y: 4141214.91224 z: 0.0 theta: -8.10473921966 kappa: -0.000308743152268 s: 265.076214421 dkappa: -1.32514571502e-05 } path_point { x: 587659.633716 y: 4141214.58886 z: 0.0 theta: -8.10484291565 kappa: -0.00031218181611 s: 265.410042442 dkappa: -7.36266795411e-06 } path_point { x: 587659.55083 y: 4141214.26549 z: 0.0 theta: -8.10494743963 kappa: -0.000313748513901 s: 265.743870463 dkappa: -2.27937035503e-06 } path_point { x: 587659.46791 y: 4141213.94212 z: 0.0 theta: -8.10505223864 kappa: -0.000313955567547 s: 266.077698484 dkappa: 5.40042559336e-07 } path_point { x: 587659.384303 y: 4141213.61622 z: 0.0 theta: -8.1051578067 kappa: -0.000313422811823 s: 266.414155569 dkappa: 3.1750711923e-06 } path_point { x: 587659.300662 y: 4141213.29032 z: 0.0 theta: -8.10526299173 kappa: -0.000311538513855 s: 266.750612654 dkappa: 8.31119111571e-06 } path_point { x: 587659.216986 y: 4141212.96443 z: 0.0 theta: -8.10536722719 kappa: -0.000307726443248 s: 267.087069739 dkappa: 1.43715029252e-05 } path_point { x: 587659.133277 y: 4141212.63856 z: 0.0 theta: -8.10546984191 kappa: -0.00030194092858 s: 267.423526824 dkappa: 1.97791072164e-05 } path_point { x: 587659.049535 y: 4141212.31269 z: 0.0 theta: -8.10557023859 kappa: -0.00029466685741 s: 267.759983909 dkappa: 2.29571045851e-05 } path_point { x: 587658.96576 y: 4141211.98683 z: 0.0 theta: -8.10566807237 kappa: -0.000286919676273 s: 268.096440994 dkappa: 2.23285956268e-05 } path_point { x: 587658.882674 y: 4141211.66377 z: 0.0 theta: -8.10576244835 kappa: -0.000278640417885 s: 268.430010152 dkappa: 2.76180846604e-05 } path_point { x: 587658.799557 y: 4141211.34072 z: 0.0 theta: -8.10585374145 kappa: -0.000268376245427 s: 268.763579309 dkappa: 3.39719561993e-05 } path_point { x: 587658.716412 y: 4141211.01768 z: 0.0 theta: -8.10594125901 kappa: -0.000256030000221 s: 269.097148466 dkappa: 3.98439851641e-05 } path_point { x: 587658.633239 y: 4141210.69465 z: 0.0 theta: -8.106024362 kappa: -0.000242020296588 s: 269.430717624 dkappa: 4.36879464753e-05 } path_point { x: 587658.550039 y: 4141210.37162 z: 0.0 theta: -8.10610263705 kappa: -0.000227281521844 s: 269.764286781 dkappa: 4.39576150536e-05 } path_point { x: 587658.466816 y: 4141210.0486 z: 0.0 theta: -8.10617606848 kappa: -0.000213263836302 s: 270.097855938 dkappa: 3.91067658194e-05 } path_point { x: 587658.370685 y: 4141209.6756 z: 0.0 theta: -8.10625510093 kappa: -0.000196550388066 s: 270.483044787 dkappa: 4.75349037391e-05 } path_point { x: 587658.274526 y: 4141209.30261 z: 0.0 theta: -8.10632710007 kappa: -0.000176846208577 s: 270.868233637 dkappa: 5.43882140739e-05 } path_point { x: 587658.178341 y: 4141208.92962 z: 0.0 theta: -8.10639106742 kappa: -0.000155043560972 s: 271.253422486 dkappa: 5.81834913275e-05 } path_point { x: 587658.082134 y: 4141208.55664 z: 0.0 theta: -8.10644645821 kappa: -0.000132606022601 s: 271.638611335 dkappa: 5.74375300033e-05 } path_point { x: 587657.985908 y: 4141208.18367 z: 0.0 theta: -8.10649340146 kappa: -0.000111568485036 s: 272.023800184 dkappa: 5.06671246048e-05 } path_point { x: 587657.887238 y: 4141207.80128 z: 0.0 theta: -8.10653318903 kappa: -8.92050170542e-05 s: 272.41870994 dkappa: 6.17415223941e-05 } path_point { x: 587657.788553 y: 4141207.4189 z: 0.0 theta: -8.10656341243 kappa: -6.34585213727e-05 s: 272.813619697 dkappa: 6.7842413331e-05 } path_point { x: 587657.689859 y: 4141207.03652 z: 0.0 theta: -8.1065831169 kappa: -3.62431833149e-05 s: 273.208529453 dkappa: 6.92225187251e-05 } path_point { x: 587657.59116 y: 4141206.65415 z: 0.0 theta: -8.10659208392 kappa: -9.37338609354e-06 s: 273.603439209 dkappa: 6.61345598861e-05 } path_point { x: 587657.492459 y: 4141206.27177 z: 0.0 theta: -8.1065907918 kappa: 1.54362891895e-05 s: 273.998348966 dkappa: 5.88312581237e-05 } path_point { x: 587657.405054 y: 4141205.93315 z: 0.0 theta: -8.10658157156 kappa: 3.78651739328e-05 s: 274.34807069 dkappa: 6.86568732849e-05 } path_point { x: 587657.317654 y: 4141205.59452 z: 0.0 theta: -8.10656400047 kappa: 6.29289321209e-05 s: 274.697792415 dkappa: 7.39449607011e-05 } path_point { x: 587657.230261 y: 4141205.25589 z: 0.0 theta: -8.10653742899 kappa: 8.90882214521e-05 s: 275.04751414 dkappa: 7.49673349252e-05 } path_point { x: 587657.142878 y: 4141204.91727 z: 0.0 theta: -8.10650172932 kappa: 0.000114898759079 s: 275.397235864 dkappa: 7.19958105098e-05 } path_point { x: 587657.055509 y: 4141204.57863 z: 0.0 theta: -8.10645726212 kappa: 0.000139011321608 s: 275.746957589 dkappa: 6.53022020074e-05 } path_point { x: 587656.968157 y: 4141204.24 z: 0.0 theta: -8.10640484327 kappa: 0.000160171745099 s: 276.096679314 dkappa: 5.51583239709e-05 } path_point { x: 587656.86966 y: 4141203.85806 z: 0.0 theta: -8.10633719583 kappa: 0.000183218318996 s: 276.491109819 dkappa: 6.0897138085e-05 } path_point { x: 587656.771191 y: 4141203.47612 z: 0.0 theta: -8.10626013415 kappa: 0.000207604022243 s: 276.885540325 dkappa: 6.20184028085e-05 } path_point { x: 587656.672753 y: 4141203.09417 z: 0.0 theta: -8.10617347835 kappa: 0.000231590249488 s: 277.27997083 dkappa: 5.89414416337e-05 } path_point { x: 587656.57435 y: 4141202.71221 z: 0.0 theta: -8.10607770171 kappa: 0.000253603789357 s: 277.674401336 dkappa: 5.20855780527e-05 } path_point { x: 587656.475985 y: 4141202.33024 z: 0.0 theta: -8.1059738654 kappa: 0.000272236824452 s: 278.068831841 dkappa: 4.18701355578e-05 } path_point { x: 587656.380043 y: 4141201.95752 z: 0.0 theta: -8.1058658259 kappa: 0.000289504414408 s: 278.453705473 dkappa: 4.6776643143e-05 } path_point { x: 587656.284142 y: 4141201.58479 z: 0.0 theta: -8.10575092675 kappa: 0.000307523121439 s: 278.838579105 dkappa: 4.60717289726e-05 } path_point { x: 587656.188286 y: 4141201.21204 z: 0.0 theta: -8.10562925027 kappa: 0.000324477802379 s: 279.223452737 dkappa: 4.15458254332e-05 } path_point { x: 587656.092476 y: 4141200.83928 z: 0.0 theta: -8.10550144476 kappa: 0.000339242404281 s: 279.608326369 dkappa: 3.49893649112e-05 } path_point { x: 587655.996715 y: 4141200.46651 z: 0.0 theta: -8.10536845933 kappa: 0.000351379964412 s: 279.993200001 dkappa: 2.81927797932e-05 } path_point { x: 587655.913622 y: 4141200.14289 z: 0.0 theta: -8.10524940356 kappa: 0.000361434282935 s: 280.327320983 dkappa: 3.11552365059e-05 } path_point { x: 587655.830569 y: 4141199.81926 z: 0.0 theta: -8.10512690943 kappa: 0.000371723735766 s: 280.661441965 dkappa: 2.98485951729e-05 } path_point { x: 587655.747555 y: 4141199.49561 z: 0.0 theta: -8.10500110896 kappa: 0.000381070849804 s: 280.995562947 dkappa: 2.57628677525e-05 } path_point { x: 587655.664583 y: 4141199.17196 z: 0.0 theta: -8.10487244439 kappa: 0.000388795996206 s: 281.329683929 dkappa: 2.03880662029e-05 } path_point { x: 587655.581653 y: 4141198.84829 z: 0.0 theta: -8.1047415019 kappa: 0.000394717390387 s: 281.663804911 dkappa: 1.52142024826e-05 } path_point { x: 587655.498766 y: 4141198.52461 z: 0.0 theta: -8.10460884521 kappa: 0.000399151092021 s: 281.997925893 dkappa: 1.17312885497e-05 } path_point { x: 587655.399695 y: 4141198.13751 z: 0.0 theta: -8.10444841992 kappa: 0.000403713116243 s: 282.397510274 dkappa: 1.03200138558e-05 } path_point { x: 587655.300687 y: 4141197.75038 z: 0.0 theta: -8.10428639393 kappa: 0.000406927323063 s: 282.797094656 dkappa: 5.37105090478e-06 } path_point { x: 587655.201742 y: 4141197.36324 z: 0.0 theta: -8.10412352662 kappa: 0.000407842657048 s: 283.196679037 dkappa: -8.00447060033e-07 } path_point { x: 587655.10286 y: 4141196.97609 z: 0.0 theta: -8.10396077258 kappa: 0.000406433161837 s: 283.596263418 dkappa: -5.87932679514e-06 } path_point { x: 587655.00404 y: 4141196.58891 z: 0.0 theta: -8.10379891193 kappa: 0.000403597980148 s: 283.995847799 dkappa: -7.55043505711e-06 } path_point { x: 587654.905572 y: 4141196.20286 z: 0.0 theta: -8.10363881907 kappa: 0.000399740579215 s: 284.394262293 dkappa: -1.22068767519e-05 } path_point { x: 587654.807166 y: 4141195.81679 z: 0.0 theta: -8.10348068297 kappa: 0.000393679316214 s: 284.792676787 dkappa: -1.83080753065e-05 } path_point { x: 587654.70882 y: 4141195.4307 z: 0.0 theta: -8.10332544784 kappa: 0.000385203752102 s: 285.19109128 dkappa: -2.40208994582e-05 } path_point { x: 587654.610534 y: 4141195.0446 z: 0.0 theta: -8.10317399627 kappa: 0.000374833793904 s: 285.589505774 dkappa: -2.75122179447e-05 } path_point { x: 587654.512305 y: 4141194.65849 z: 0.0 theta: -8.10302685819 kappa: 0.000363819694706 s: 285.987920268 dkappa: -2.69488995036e-05 } path_point { x: 587654.425855 y: 4141194.31848 z: 0.0 theta: -8.10290100642 kappa: 0.000353265878012 s: 286.338746734 dkappa: -3.33124673365e-05 } path_point { x: 587654.339447 y: 4141193.97846 z: 0.0 theta: -8.10277925455 kappa: 0.000340447849335 s: 286.689573199 dkappa: -3.96594030808e-05 } path_point { x: 587654.25308 y: 4141193.63843 z: 0.0 theta: -8.10266237161 kappa: 0.000325579172406 s: 287.040399665 dkappa: -4.48054816262e-05 } path_point { x: 587654.166752 y: 4141193.29839 z: 0.0 theta: -8.10255097884 kappa: 0.000309288868468 s: 287.391226131 dkappa: -4.75664778623e-05 } path_point { x: 587654.080461 y: 4141192.95834 z: 0.0 theta: -8.1024454039 kappa: 0.000292621416274 s: 287.742052597 dkappa: -4.67581666788e-05 } path_point { x: 587653.994204 y: 4141192.61828 z: 0.0 theta: -8.10234553516 kappa: 0.000277036752084 s: 288.092879063 dkappa: -4.11963229653e-05 } path_point { x: 587653.911976 y: 4141192.29398 z: 0.0 theta: -8.10225527275 kappa: 0.000262191346925 s: 288.427446269 dkappa: -4.74416234719e-05 } path_point { x: 587653.829777 y: 4141191.96967 z: 0.0 theta: -8.10217031083 kappa: 0.000245410350858 s: 288.762013476 dkappa: -5.26250594821e-05 } path_point { x: 587653.747604 y: 4141191.64535 z: 0.0 theta: -8.10209122165 kappa: 0.000227191533005 s: 289.096580683 dkappa: -5.58947598007e-05 } path_point { x: 587653.665455 y: 4141191.32102 z: 0.0 theta: -8.10201836327 kappa: 0.000208317670654 s: 289.43114789 dkappa: -5.63988532326e-05 } path_point { x: 587653.58333 y: 4141190.99669 z: 0.0 theta: -8.10195178416 kappa: 0.00018985654926 s: 289.765715097 dkappa: -5.32854685827e-05 } path_point { x: 587653.501224 y: 4141190.67236 z: 0.0 theta: -8.10189112788 kappa: 0.000173160962444 s: 290.100282304 dkappa: -4.57027346557e-05 } path_point { x: 587653.406286 y: 4141190.29723 z: 0.0 theta: -8.10182775861 kappa: 0.000153874627468 s: 290.487237028 dkappa: -5.33394710777e-05 } path_point { x: 587653.311371 y: 4141189.9221 z: 0.0 theta: -8.10177232818 kappa: 0.000132376083708 s: 290.874191753 dkappa: -5.71382240447e-05 } path_point { x: 587653.216474 y: 4141189.54696 z: 0.0 theta: -8.1017254055 kappa: 0.000110148659756 s: 291.261146477 dkappa: -5.71082826965e-05 } path_point { x: 587653.121594 y: 4141189.17181 z: 0.0 theta: -8.10168698622 kappa: 8.86720897299e-05 s: 291.648101202 dkappa: -5.3258936173e-05 } path_point { x: 587653.026726 y: 4141188.79667 z: 0.0 theta: -8.10165649407 kappa: 6.94225132673e-05 s: 292.035055926 dkappa: -4.55994736142e-05 } path_point { x: 587652.92966 y: 4141188.41279 z: 0.0 theta: -8.10163282515 kappa: 4.96125000684e-05 s: 292.431022016 dkappa: -5.34275545118e-05 } path_point { x: 587652.832601 y: 4141188.0289 z: 0.0 theta: -8.10161746041 kappa: 2.78457867251e-05 s: 292.826988105 dkappa: -5.56924838728e-05 } path_point { x: 587652.735546 y: 4141187.64501 z: 0.0 theta: -8.1016107714 kappa: 6.07592405307e-06 s: 293.222954195 dkappa: -5.365330155e-05 } path_point { x: 587652.638492 y: 4141187.26112 z: 0.0 theta: -8.10161245486 kappa: -1.42420742189e-05 s: 293.618920284 dkappa: -4.85690473957e-05 } path_point { x: 587652.541436 y: 4141186.87724 z: 0.0 theta: -8.10162173009 kappa: -3.21517314491e-05 s: 294.014886374 dkappa: -4.16987612626e-05 } path_point { x: 587652.456177 y: 4141186.54002 z: 0.0 theta: -8.10163557295 kappa: -4.77705235422e-05 s: 294.362710807 dkappa: -4.73273621879e-05 } path_point { x: 587652.370911 y: 4141186.20281 z: 0.0 theta: -8.10165509879 kappa: -6.45830797325e-05 s: 294.71053524 dkappa: -4.87134989071e-05 } path_point { x: 587652.285638 y: 4141185.8656 z: 0.0 theta: -8.10168048442 kappa: -8.12708741645e-05 s: 295.058359673 dkappa: -4.67605401156e-05 } path_point { x: 587652.200356 y: 4141185.5284 z: 0.0 theta: -8.10171150266 kappa: -9.68295946869e-05 s: 295.406184107 dkappa: -4.23718545086e-05 } path_point { x: 587652.115062 y: 4141185.19119 z: 0.0 theta: -8.10174763168 kappa: -0.000110569142853 s: 295.75400854 dkappa: -3.64508107813e-05 } path_point { x: 587652.029755 y: 4141184.85399 z: 0.0 theta: -8.10178816425 kappa: -0.000122113633921 s: 296.101832973 dkappa: -2.99007776291e-05 } path_point { x: 587651.933109 y: 4141184.47204 z: 0.0 theta: -8.10183867437 kappa: -0.000134413738187 s: 296.495819837 dkappa: -3.17853585146e-05 } path_point { x: 587651.836443 y: 4141184.0901 z: 0.0 theta: -8.10189406875 kappa: -0.000146655634645 s: 296.889806701 dkappa: -2.9832044453e-05 } path_point { x: 587651.739755 y: 4141183.70816 z: 0.0 theta: -8.10195406179 kappa: -0.000157595250044 s: 297.283793565 dkappa: -2.54013221454e-05 } path_point { x: 587651.643043 y: 4141183.32623 z: 0.0 theta: -8.10201798331 kappa: -0.000166524525022 s: 297.67778043 dkappa: -1.98536782927e-05 } path_point { x: 587651.546306 y: 4141182.9443 z: 0.0 theta: -8.10208498978 kappa: -0.000173271414107 s: 298.071767294 dkappa: -1.45495995961e-05 } path_point { x: 587651.451687 y: 4141182.57084 z: 0.0 theta: -8.10215285634 kappa: -0.000179050666136 s: 298.457029864 dkappa: -1.47179173022e-05 } path_point { x: 587651.357041 y: 4141182.19738 z: 0.0 theta: -8.10222286458 kappa: -0.000184166922201 s: 298.842292434 dkappa: -1.14209318166e-05 } path_point { x: 587651.262369 y: 4141181.82393 z: 0.0 theta: -8.10229454837 kappa: -0.000187647030694 s: 299.227555005 dkappa: -6.53736187358e-06 } path_point { x: 587651.16767 y: 4141181.45049 z: 0.0 theta: -8.1023672061 kappa: -0.000189241640012 s: 299.612817575 dkappa: -1.94592620703e-06 } path_point { x: 587651.072943 y: 4141181.07705 z: 0.0 theta: -8.1024401795 kappa: -0.000189425198562 s: 299.998080145 dkappa: 4.74656448951e-07 } path_point { x: 587650.987236 y: 4141180.73927 z: 0.0 theta: -8.1025061336 kappa: -0.000188967983169 s: 300.346564883 dkappa: 2.62182726345e-06 } path_point { x: 587650.901507 y: 4141180.4015 z: 0.0 theta: -8.10257174783 kappa: -0.000187351493386 s: 300.69504962 dkappa: 6.88993691345e-06 } path_point { x: 587650.815756 y: 4141180.06373 z: 0.0 theta: -8.10263651832 kappa: -0.000184085378755 s: 301.043534358 dkappa: 1.18512938572e-05 } path_point { x: 587650.729983 y: 4141179.72596 z: 0.0 theta: -8.102699857 kappa: -0.000179176817531 s: 301.392019095 dkappa: 1.6078206553e-05 } path_point { x: 587650.644188 y: 4141179.3882 z: 0.0 theta: -8.10276126501 kappa: -0.000173130516682 s: 301.740503833 dkappa: 1.81429834591e-05 } path_point { x: 587650.558374 y: 4141179.05045 z: 0.0 theta: -8.10282050602 kappa: -0.000166948711885 s: 302.088988571 dkappa: 1.66179330339e-05 } path_point { x: 587650.463505 y: 4141178.67716 z: 0.0 theta: -8.10288346011 kappa: -0.000159636686746 s: 302.474149886 dkappa: 2.14547129612e-05 } path_point { x: 587650.368613 y: 4141178.30387 z: 0.0 theta: -8.10294323162 kappa: -0.000150423850144 s: 302.859311202 dkappa: 2.62744413754e-05 } path_point { x: 587650.2737 y: 4141177.93058 z: 0.0 theta: -8.1029991214 kappa: -0.00013956369807 s: 303.244472517 dkappa: 2.97949105489e-05 } path_point { x: 587650.178766 y: 4141177.5573 z: 0.0 theta: -8.10305062304 kappa: -0.00012780358333 s: 303.629633833 dkappa: 3.07339127536e-05 } path_point { x: 587650.083815 y: 4141177.18403 z: 0.0 theta: -8.10309761309 kappa: -0.000116384715546 s: 304.014795148 dkappa: 2.78092402617e-05 } path_point { x: 587649.986479 y: 4141176.80146 z: 0.0 theta: -8.10314120669 kappa: -0.000104051804098 s: 304.409556722 dkappa: 3.42500456173e-05 } path_point { x: 587649.889127 y: 4141176.41889 z: 0.0 theta: -8.10317949638 kappa: -8.96831242472e-05 s: 304.804318296 dkappa: 3.81099573455e-05 } path_point { x: 587649.791762 y: 4141176.03632 z: 0.0 theta: -8.10321188169 kappa: -7.43131421671e-05 s: 305.19907987 dkappa: 3.93097957964e-05 } path_point { x: 587649.694386 y: 4141175.65376 z: 0.0 theta: -8.10323817667 kappa: -5.90075811132e-05 s: 305.593841445 dkappa: 3.77703813199e-05 } path_point { x: 587649.597 y: 4141175.2712 z: 0.0 theta: -8.10325862223 kappa: -4.48634214247e-05 s: 305.988603019 dkappa: 3.3412534266e-05 } path_point { x: 587649.510763 y: 4141174.93245 z: 0.0 theta: -8.10327213488 kappa: -3.21319813852e-05 s: 306.338151738 dkappa: 3.89009741494e-05 } path_point { x: 587649.424522 y: 4141174.59371 z: 0.0 theta: -8.10328092512 kappa: -1.80189734043e-05 s: 306.687700458 dkappa: 4.13758995044e-05 } path_point { x: 587649.338279 y: 4141174.25497 z: 0.0 theta: -8.10328468698 kappa: -3.51642290926e-06 s: 307.037249177 dkappa: 4.11883041341e-05 } path_point { x: 587649.252035 y: 4141173.91623 z: 0.0 theta: -8.10328343982 kappa: 1.05063341069e-05 s: 307.386797897 dkappa: 3.86891818416e-05 } path_point { x: 587649.165793 y: 4141173.57748 z: 0.0 theta: -8.10327748541 kappa: 2.33026510856e-05 s: 307.736346616 dkappa: 3.42295264297e-05 } path_point { x: 587649.079553 y: 4141173.23874 z: 0.0 theta: -8.10326736508 kappa: 3.42485709026e-05 s: 308.085895336 dkappa: 2.81603317015e-05 } path_point { x: 587648.996746 y: 4141172.91346 z: 0.0 theta: -8.10325421943 kappa: 4.42252381779e-05 s: 308.421548762 dkappa: 3.07656469563e-05 } path_point { x: 587648.913943 y: 4141172.58818 z: 0.0 theta: -8.10323763384 kappa: 5.45894464119e-05 s: 308.757202188 dkappa: 3.05795640212e-05 } path_point { x: 587648.831146 y: 4141172.2629 z: 0.0 theta: -8.10321762306 kappa: 6.45150783372e-05 s: 309.092855615 dkappa: 2.82624372416e-05 } path_point { x: 587648.748356 y: 4141171.93762 z: 0.0 theta: -8.10319444195 kappa: 7.33976668849e-05 s: 309.428509041 dkappa: 2.44746209631e-05 } path_point { x: 587648.665574 y: 4141171.61233 z: 0.0 theta: -8.10316851106 kappa: 8.0854395185e-05 s: 309.764162467 dkappa: 1.98764695312e-05 } path_point { x: 587648.582801 y: 4141171.28704 z: 0.0 theta: -8.10314034223 kappa: 8.67240965659e-05 s: 310.099815894 dkappa: 1.51283372913e-05 } path_point { x: 587648.48911 y: 4141170.9188 z: 0.0 theta: -8.10310626248 kappa: 9.26752046367e-05 s: 310.479791879 dkappa: 1.54870133972e-05 } path_point { x: 587648.395431 y: 4141170.55055 z: 0.0 theta: -8.10306998731 kappa: 9.80659444085e-05 s: 310.859767864 dkappa: 1.24701721872e-05 } path_point { x: 587648.301766 y: 4141170.1823 z: 0.0 theta: -8.10303193125 kappa: 0.000101945793444 s: 311.23974385 dkappa: 7.82578244399e-06 } path_point { x: 587648.208116 y: 4141169.81405 z: 0.0 theta: -8.10299274384 kappa: 0.000104028415465 s: 311.619719835 dkappa: 3.30181295015e-06 } path_point { x: 587648.114479 y: 4141169.44579 z: 0.0 theta: -8.10295305723 kappa: 0.000104691660356 s: 311.99969582 dkappa: 6.46232488303e-07 } path_point { x: 587648.016166 y: 4141169.05907 z: 0.0 theta: -8.10291127231 kappa: 0.000104576450543 s: 312.398715127 dkappa: -1.87306470424e-06 } path_point { x: 587647.917869 y: 4141168.67235 z: 0.0 theta: -8.10286982272 kappa: 0.000102824883572 s: 312.797734434 dkappa: -7.18921019638e-06 } path_point { x: 587647.819588 y: 4141168.28562 z: 0.0 theta: -8.10282952571 kappa: 9.87596271919e-05 s: 313.196753741 dkappa: -1.3103492231e-05 } path_point { x: 587647.721322 y: 4141167.89889 z: 0.0 theta: -8.10279129375 kappa: 9.2580677596e-05 s: 313.595773048 dkappa: -1.7417199051e-05 } path_point { x: 587647.62307 y: 4141167.51216 z: 0.0 theta: -8.10275578448 kappa: 8.53653594177e-05 s: 313.994792355 dkappa: -1.79316188992e-05 } path_point { x: 587647.53664 y: 4141167.17191 z: 0.0 theta: -8.10272702398 kappa: 7.81634515107e-05 s: 314.345845178 dkappa: -2.34438650477e-05 } path_point { x: 587647.45022 y: 4141166.83166 z: 0.0 theta: -8.10270116576 kappa: 6.87558614376e-05 s: 314.696898 dkappa: -3.02330813406e-05 } path_point { x: 587647.363807 y: 4141166.49141 z: 0.0 theta: -8.10267903022 kappa: 5.69730088903e-05 s: 315.047950823 dkappa: -3.67114516565e-05 } path_point { x: 587647.277402 y: 4141166.15116 z: 0.0 theta: -8.10266139943 kappa: 4.3202720892e-05 s: 315.399003645 dkappa: -4.12911598743e-05 } path_point { x: 587647.191001 y: 4141165.8109 z: 0.0 theta: -8.10264882148 kappa: 2.83902317965e-05 s: 315.750056468 dkappa: -4.23843898728e-05 } path_point { x: 587647.104604 y: 4141165.47065 z: 0.0 theta: -8.10264141478 kappa: 1.40381832887e-05 s: 316.10110929 dkappa: -3.84033255305e-05 } path_point { x: 587647.00632 y: 4141165.08357 z: 0.0 theta: -8.10263908092 kappa: -2.89795121561e-06 s: 316.500470437 dkappa: -4.65902354556e-05 } path_point { x: 587646.908036 y: 4141164.69649 z: 0.0 theta: -8.10264417482 kappa: -2.31457049726e-05 s: 316.899831585 dkappa: -5.45610139906e-05 } path_point { x: 587646.809747 y: 4141164.30942 z: 0.0 theta: -8.10265793371 kappa: -4.6107306982e-05 s: 317.299192732 dkappa: -5.97542876814e-05 } path_point { x: 587646.711452 y: 4141163.92234 z: 0.0 theta: -8.10268115182 kappa: -7.01620732026e-05 s: 317.698553879 dkappa: -5.96086830738e-05 } path_point { x: 587646.613146 y: 4141163.53527 z: 0.0 theta: -8.10271377187 kappa: -9.26664065521e-05 s: 318.097915026 dkappa: -5.15628267134e-05 } path_point { x: 587646.519756 y: 4141163.16761 z: 0.0 theta: -8.10275287052 kappa: -0.00011406239581 s: 318.47724753 dkappa: -6.07924653351e-05 } path_point { x: 587646.426351 y: 4141162.79996 z: 0.0 theta: -8.10280067944 kappa: -0.000138393739071 s: 318.856580035 dkappa: -6.69078146376e-05 } path_point { x: 587646.332927 y: 4141162.43231 z: 0.0 theta: -8.10285806914 kappa: -0.000164329519243 s: 319.235912539 dkappa: -6.91203003572e-05 } path_point { x: 587646.239479 y: 4141162.06467 z: 0.0 theta: -8.10292534852 kappa: -0.000190239687385 s: 319.615245043 dkappa: -6.66413482301e-05 } path_point { x: 587646.146005 y: 4141161.69703 z: 0.0 theta: -8.10300215142 kappa: -0.000214195062704 s: 319.994577548 dkappa: -5.86823839926e-05 } path_point { x: 587646.063669 y: 4141161.37331 z: 0.0 theta: -8.1030771995 kappa: -0.00023574587773 s: 320.328610859 dkappa: -6.94015883434e-05 } path_point { x: 587645.981308 y: 4141161.04959 z: 0.0 theta: -8.10315994179 kappa: -0.000259967227765 s: 320.66264417 dkappa: -7.47974945069e-05 } path_point { x: 587645.898918 y: 4141160.72587 z: 0.0 theta: -8.10325098735 kappa: -0.000285206695012 s: 320.996677481 dkappa: -7.56229682524e-05 } path_point { x: 587645.816497 y: 4141160.40217 z: 0.0 theta: -8.1033504353 kappa: -0.000310063343919 s: 321.330710792 dkappa: -7.26308753491e-05 } path_point { x: 587645.734043 y: 4141160.07847 z: 0.0 theta: -8.10345795878 kappa: -0.000333387721182 s: 321.664744103 dkappa: -6.65740815662e-05 } path_point { x: 587645.651553 y: 4141159.75478 z: 0.0 theta: -8.10357288898 kappa: -0.00035428185574 s: 321.998777414 dkappa: -5.82054526731e-05 } path_point { x: 587645.564976 y: 4141159.41523 z: 0.0 theta: -8.10370081933 kappa: -0.000376377048394 s: 322.349193862 dkappa: -6.67395842091e-05 } path_point { x: 587645.478354 y: 4141159.07569 z: 0.0 theta: -8.10383688007 kappa: -0.000400316950793 s: 322.69961031 dkappa: -6.89537984227e-05 } path_point { x: 587645.391685 y: 4141158.73616 z: 0.0 theta: -8.10398135659 kappa: -0.000424117892896 s: 323.050026758 dkappa: -6.61661438145e-05 } path_point { x: 587645.304965 y: 4141158.39664 z: 0.0 theta: -8.10413392006 kappa: -0.000446258070536 s: 323.400443205 dkappa: -5.96946688846e-05 } path_point { x: 587645.218192 y: 4141158.05714 z: 0.0 theta: -8.10429378933 kappa: -0.000465677545417 s: 323.750859653 dkappa: -5.08574221336e-05 } path_point { x: 587645.131363 y: 4141157.71765 z: 0.0 theta: -8.10445989275 kappa: -0.000481778245119 s: 324.101276101 dkappa: -4.09724520616e-05 } path_point { x: 587645.033432 y: 4141157.33504 z: 0.0 theta: -8.10465346448 kappa: -0.000498584943842 s: 324.49622287 dkappa: -4.28567699267e-05 } path_point { x: 587644.935425 y: 4141156.95245 z: 0.0 theta: -8.10485363877 kappa: -0.000514796378257 s: 324.89116964 dkappa: -3.84048982417e-05 } path_point { x: 587644.837341 y: 4141156.56987 z: 0.0 theta: -8.10505975605 kappa: -0.000528439535359 s: 325.286116409 dkappa: -3.02979304078e-05 } path_point { x: 587644.739177 y: 4141156.18732 z: 0.0 theta: -8.10527058664 kappa: -0.00053860029132 s: 325.681063179 dkappa: -2.12169598262e-05 } path_point { x: 587644.640932 y: 4141155.80479 z: 0.0 theta: -8.1054847489 kappa: -0.000545423411491 s: 326.076009948 dkappa: -1.38430798979e-05 } path_point { x: 587644.544695 y: 4141155.43041 z: 0.0 theta: -8.10569660321 kappa: -0.000550556951209 s: 326.46255875 dkappa: -1.15425115727e-05 } path_point { x: 587644.44838 y: 4141155.05605 z: 0.0 theta: -8.10591011586 kappa: -0.000553660417761 s: 326.849107552 dkappa: -3.91416758036e-06 } path_point { x: 587644.351984 y: 4141154.68172 z: 0.0 theta: -8.10612418996 kappa: -0.000553340777365 s: 327.235656354 dkappa: 5.59394491356e-06 } path_point { x: 587644.255508 y: 4141154.3074 z: 0.0 theta: -8.10633744774 kappa: -0.000549537819279 s: 327.622205156 dkappa: 1.35338187435e-05 } path_point { x: 587644.158953 y: 4141153.93311 z: 0.0 theta: -8.10654874576 kappa: -0.000543524155798 s: 328.008753958 dkappa: 1.64574467439e-05 } path_point { x: 587644.059744 y: 4141153.54886 z: 0.0 theta: -8.10676297884 kappa: -0.000535657735601 s: 328.405595239 dkappa: 2.40959598664e-05 } path_point { x: 587643.960455 y: 4141153.16465 z: 0.0 theta: -8.10697337202 kappa: -0.000523943976788 s: 328.802436521 dkappa: 3.51789418679e-05 } path_point { x: 587643.861085 y: 4141152.78045 z: 0.0 theta: -8.10717823253 kappa: -0.00050781161725 s: 329.199277803 dkappa: 4.56965007741e-05 } path_point { x: 587643.761638 y: 4141152.39627 z: 0.0 theta: -8.10737595667 kappa: -0.000488280685547 s: 329.596119085 dkappa: 5.16387446109e-05 } path_point { x: 587643.662117 y: 4141152.01211 z: 0.0 theta: -8.10756566124 kappa: -0.000467962500912 s: 329.992960366 dkappa: 4.89957814038e-05 } path_point { x: 587643.561852 y: 4141151.62538 z: 0.0 theta: -8.10774837753 kappa: -0.000445840124009 s: 330.392479181 dkappa: 6.21337089375e-05 } path_point { x: 587643.461518 y: 4141151.23866 z: 0.0 theta: -8.10792117156 kappa: -0.000418267642305 s: 330.791997995 dkappa: 7.56297208914e-05 } path_point { x: 587643.36112 y: 4141150.85196 z: 0.0 theta: -8.108081941 kappa: -0.000385880343364 s: 331.191516809 dkappa: 8.55873848589e-05 } path_point { x: 587643.260662 y: 4141150.46528 z: 0.0 theta: -8.10822914828 kappa: -0.000350870212808 s: 331.591035624 dkappa: 8.81102684336e-05 } path_point { x: 587643.16015 y: 4141150.07861 z: 0.0 theta: -8.10836244253 kappa: -0.00031698593431 s: 331.990554438 dkappa: 7.93019392091e-05 } path_point { x: 587643.076197 y: 4141149.7558 z: 0.0 theta: -8.10846347303 kappa: -0.000287959117003 s: 332.324102234 dkappa: 9.45317612882e-05 } path_point { x: 587642.992214 y: 4141149.433 z: 0.0 theta: -8.10855400645 kappa: -0.000254163502673 s: 332.65765003 dkappa: 0.000107609361597 } path_point { x: 587642.908203 y: 4141149.11021 z: 0.0 theta: -8.10863260379 kappa: -0.000216604107248 s: 332.991197826 dkappa: 0.000116812965292 } path_point { x: 587642.824169 y: 4141148.78742 z: 0.0 theta: -8.10869825709 kappa: -0.000176860240865 s: 333.324745622 dkappa: 0.000120420797527 } path_point { x: 587642.740116 y: 4141148.46463 z: 0.0 theta: -8.10875058092 kappa: -0.000137085507863 s: 333.658293418 dkappa: 0.000116711083458 } path_point { x: 587642.656048 y: 4141148.14185 z: 0.0 theta: -8.10879000396 kappa: -0.000100007806783 s: 333.991841214 dkappa: 0.00010396204824 } path_point { x: 587642.555287 y: 4141147.75504 z: 0.0 theta: -8.10882108154 kappa: -5.41150039763e-05 s: 334.391564064 dkappa: 0.000124543625326 } path_point { x: 587642.454518 y: 4141147.36823 z: 0.0 theta: -8.10883235895 kappa: -1.43469162061e-06 s: 334.791286914 dkappa: 0.000137674409932 } path_point { x: 587642.353749 y: 4141146.98141 z: 0.0 theta: -8.10882175804 kappa: 5.47566249132e-05 s: 335.191009765 dkappa: 0.000141862101268 } path_point { x: 587642.252988 y: 4141146.5946 z: 0.0 theta: -8.10878862958 kappa: 0.000110585933529 s: 335.590732615 dkappa: 0.000135614398546 } path_point { x: 587642.152244 y: 4141146.20778 z: 0.0 theta: -8.1087339917 kappa: 0.000161583715407 s: 335.990455466 dkappa: 0.000117439000974 } path_point { x: 587642.051633 y: 4141145.82137 z: 0.0 theta: -8.10865950352 kappa: 0.000212853262797 s: 336.389750091 dkappa: 0.000137553458284 } path_point { x: 587641.951056 y: 4141145.43495 z: 0.0 theta: -8.10856322599 kappa: 0.000270013500098 s: 336.789044717 dkappa: 0.000147007151807 } path_point { x: 587641.850519 y: 4141145.04852 z: 0.0 theta: -8.10844364685 kappa: 0.000328882713308 s: 337.188339343 dkappa: 0.000146176103051 } path_point { x: 587641.750034 y: 4141144.66207 z: 0.0 theta: -8.10830089359 kappa: 0.000385429331795 s: 337.587633968 dkappa: 0.000135436333526 } path_point { x: 587641.649608 y: 4141144.27562 z: 0.0 theta: -8.10813667354 kappa: 0.000435771928292 s: 337.986928594 dkappa: 0.000115163864739 } path_point { x: 587641.565213 y: 4141143.95063 z: 0.0 theta: -8.10798352444 kappa: 0.000477357170189 s: 338.32268947 dkappa: 0.000130877629459 } path_point { x: 587641.48087 y: 4141143.62564 z: 0.0 theta: -8.1078157084 kappa: 0.000522615564929 s: 338.658450346 dkappa: 0.000137267450567 } path_point { x: 587641.396584 y: 4141143.30063 z: 0.0 theta: -8.10763249243 kappa: 0.000568642138022 s: 338.994211223 dkappa: 0.000135677385719 } path_point { x: 587641.31236 y: 4141142.9756 z: 0.0 theta: -8.10743404316 kappa: 0.000612983196954 s: 339.329972099 dkappa: 0.000127451492573 } path_point { x: 587641.228203 y: 4141142.65056 z: 0.0 theta: -8.10722127532 kappa: 0.000653636331189 s: 339.665732976 dkappa: 0.000113933828785 } path_point { x: 587641.144117 y: 4141142.3255 z: 0.0 theta: -8.10699570019 kappa: 0.000689050412167 s: 340.001493852 dkappa: 9.64684520139e-05 } path_point { x: 587641.060191 y: 4141142.00074 z: 0.0 theta: -8.10675889207 kappa: 0.00072355603094 s: 340.33691827 dkappa: 0.000107516229853 } path_point { x: 587640.976343 y: 4141141.67597 z: 0.0 theta: -8.10651007585 kappa: 0.000760122317866 s: 340.672342687 dkappa: 0.00010912612719 } path_point { x: 587640.892579 y: 4141141.35117 z: 0.0 theta: -8.10624904952 kappa: 0.000795956648429 s: 341.007767105 dkappa: 0.000103522615683 } path_point { x: 587640.8089 y: 4141141.02635 z: 0.0 theta: -8.10597642269 kappa: 0.000829012540225 s: 341.343191522 dkappa: 9.29301669907e-05 } path_point { x: 587640.725313 y: 4141140.70151 z: 0.0 theta: -8.10569336625 kappa: 0.000857989652958 s: 341.67861594 dkappa: 7.95732527702e-05 } path_point { x: 587640.641818 y: 4141140.37664 z: 0.0 theta: -8.10540136212 kappa: 0.000882333788444 s: 342.014040357 dkappa: 6.56763446798e-05 } path_point { x: 587640.558846 y: 4141140.05341 z: 0.0 theta: -8.10510312161 kappa: 0.000905379023563 s: 342.34774952 dkappa: 7.08480521402e-05 } path_point { x: 587640.475972 y: 4141139.73016 z: 0.0 theta: -8.10479706731 kappa: 0.000928708612325 s: 342.681458683 dkappa: 6.78348080497e-05 } path_point { x: 587640.393198 y: 4141139.40688 z: 0.0 theta: -8.10448350945 kappa: 0.000950045936552 s: 343.015167846 dkappa: 5.93621902578e-05 } path_point { x: 587640.310526 y: 4141139.08357 z: 0.0 theta: -8.10416336629 kappa: 0.000968023928369 s: 343.348877008 dkappa: 4.81557766139e-05 } path_point { x: 587640.227959 y: 4141138.76024 z: 0.0 theta: -8.10383786049 kappa: 0.000982185070202 s: 343.682586171 dkappa: 3.69411449676e-05 } path_point { x: 587640.145498 y: 4141138.43688 z: 0.0 theta: -8.10350821564 kappa: 0.000992981394778 s: 344.016295334 dkappa: 2.84438731682e-05 } path_point { x: 587640.062145 y: 4141138.10957 z: 0.0 theta: -8.10317118085 kappa: 0.00100268969758 s: 344.354053898 dkappa: 2.77275911111e-05 } path_point { x: 587639.978903 y: 4141137.78223 z: 0.0 theta: -8.1028310437 kappa: 0.0010109916298 s: 344.691812463 dkappa: 2.061418588e-05 } path_point { x: 587639.895773 y: 4141137.45486 z: 0.0 theta: -8.10248858727 kappa: 0.00101623109994 s: 345.029571027 dkappa: 1.00915409916e-05 } path_point { x: 587639.812755 y: 4141137.12746 z: 0.0 theta: -8.10214498359 kappa: 0.00101776119972 s: 345.367329592 dkappa: -8.52460037519e-07 } path_point { x: 587639.72985 y: 4141136.80003 z: 0.0 theta: -8.10180145277 kappa: 0.00101594420412 s: 345.705088156 dkappa: -9.22993369073e-06 } path_point { x: 587639.647057 y: 4141136.47258 z: 0.0 theta: -8.1014589221 kappa: 0.00101215157136 s: 346.042846721 dkappa: -1.20529964514e-05 } path_point { x: 587639.551032 y: 4141136.0922 z: 0.0 theta: -8.10106293826 kappa: 0.00100602729555 s: 346.435159108 dkappa: -2.02090321447e-05 } path_point { x: 587639.455157 y: 4141135.71178 z: 0.0 theta: -8.1006701165 kappa: 0.00099576765874 s: 346.827471495 dkappa: -3.23981191569e-05 } path_point { x: 587639.35943 y: 4141135.33133 z: 0.0 theta: -8.10028227613 kappa: 0.000980657679984 s: 347.219783883 dkappa: -4.41991120786e-05 } path_point { x: 587639.26385 y: 4141134.95084 z: 0.0 theta: -8.09990117672 kappa: 0.000961716848462 s: 347.61209627 dkappa: -5.11908655004e-05 } path_point { x: 587639.168414 y: 4141134.57031 z: 0.0 theta: -8.09952783765 kappa: 0.000941699123457 s: 348.004408657 dkappa: -4.8952234013e-05 } path_point { x: 587639.071967 y: 4141134.18515 z: 0.0 theta: -8.09915815862 kappa: 0.000919471681343 s: 348.401461739 dkappa: -6.31526297274e-05 } path_point { x: 587638.975661 y: 4141133.79995 z: 0.0 theta: -8.09879842673 kappa: 0.000891639239436 s: 348.798514822 dkappa: -7.66729510342e-05 } path_point { x: 587638.879491 y: 4141133.41472 z: 0.0 theta: -8.09845073311 kappa: 0.000859082033724 s: 349.195567904 dkappa: -8.6439501371e-05 } path_point { x: 587638.783453 y: 4141133.02946 z: 0.0 theta: -8.09811657708 kappa: 0.000823900720888 s: 349.592620986 dkappa: -8.93785841754e-05 } path_point { x: 587638.687541 y: 4141132.64417 z: 0.0 theta: -8.09779638161 kappa: 0.000789416378301 s: 349.989674068 dkappa: -8.24165028848e-05 } path_point { x: 587638.60338 y: 4141132.30566 z: 0.0 theta: -8.09752639412 kappa: 0.00075761523141 s: 350.338489137 dkappa: -9.95042026168e-05 } path_point { x: 587638.51931 y: 4141131.96712 z: 0.0 theta: -8.09726848006 kappa: 0.000720382595821 s: 350.687304206 dkappa: -0.000113294899319 } path_point { x: 587638.435324 y: 4141131.62857 z: 0.0 theta: -8.09702430132 kappa: 0.00067914489812 s: 351.036119275 dkappa: -0.000122203900858 } path_point { x: 587638.351418 y: 4141131.29 z: 0.0 theta: -8.09679492581 kappa: 0.00063588132939 s: 351.384934344 dkappa: -0.000124646515101 } path_point { x: 587638.267588 y: 4141130.95141 z: 0.0 theta: -8.09658063464 kappa: 0.000593123845209 s: 351.733749413 dkappa: -0.000119038049916 } path_point { x: 587638.183828 y: 4141130.6128 z: 0.0 theta: -8.09638072937 kappa: 0.000553957165652 s: 352.082564482 dkappa: -0.000103793813168 } path_point { x: 587638.10357 y: 4141130.28808 z: 0.0 theta: -8.09620152919 kappa: 0.000516734667976 s: 352.417050752 dkappa: -0.000118180982303 } path_point { x: 587638.023368 y: 4141129.96335 z: 0.0 theta: -8.09603551268 kappa: 0.000475358250381 s: 352.751537022 dkappa: -0.000128434200542 } path_point { x: 587637.943217 y: 4141129.63861 z: 0.0 theta: -8.09588381595 kappa: 0.000431408568415 s: 353.086023292 dkappa: -0.000133370126446 } path_point { x: 587637.863114 y: 4141129.31386 z: 0.0 theta: -8.09574698021 kappa: 0.000386862089088 s: 353.420509562 dkappa: -0.000131805418575 } path_point { x: 587637.783052 y: 4141128.9891 z: 0.0 theta: -8.09562481935 kappa: 0.000344091090875 s: 353.754995831 dkappa: -0.000122556735487 } path_point { x: 587637.703028 y: 4141128.66432 z: 0.0 theta: -8.0955162876 kappa: 0.000305863663716 s: 354.089482101 dkappa: -0.000104440735745 } path_point { x: 587637.611632 y: 4141128.29322 z: 0.0 theta: -8.09540744059 kappa: 0.000262788068055 s: 354.471670991 dkappa: -0.000119317575554 } path_point { x: 587637.520273 y: 4141127.92211 z: 0.0 theta: -8.09531590893 kappa: 0.000215844412986 s: 354.85385988 dkappa: -0.000124897028689 } path_point { x: 587637.428945 y: 4141127.551 z: 0.0 theta: -8.09524252327 kappa: 0.000168339909201 s: 355.236048769 dkappa: -0.000122467186989 } path_point { x: 587637.33764 y: 4141127.17987 z: 0.0 theta: -8.09518694439 kappa: 0.000123089473004 s: 355.618237659 dkappa: -0.000113316142287 } path_point { x: 587637.246353 y: 4141126.80875 z: 0.0 theta: -8.09514785127 kappa: 8.24157263112e-05 s: 356.000426548 dkappa: -9.87319864216e-05 } path_point { x: 587637.16388 y: 4141126.47341 z: 0.0 theta: -8.09512565407 kappa: 4.52124473607e-05 s: 356.345756829 dkappa: -0.000114891146406 } path_point { x: 587637.081413 y: 4141126.13807 z: 0.0 theta: -8.09511705778 kappa: 4.22561533397e-06 s: 356.69108711 dkappa: -0.000120967152761 } path_point { x: 587636.998945 y: 4141125.80273 z: 0.0 theta: -8.09512280621 kappa: -3.73968617539e-05 s: 357.036417391 dkappa: -0.0001188950241 } path_point { x: 587636.916474 y: 4141125.4674 z: 0.0 theta: -8.09514267149 kappa: -7.71752964088e-05 s: 357.381747672 dkappa: -0.000110609779035 } path_point { x: 587636.833993 y: 4141125.13206 z: 0.0 theta: -8.09517568479 kappa: -0.000113298221658 s: 357.727077953 dkappa: -9.80464361773e-05 } path_point { x: 587636.7515 y: 4141124.79673 z: 0.0 theta: -8.09522036715 kappa: -0.000144622391049 s: 358.072408234 dkappa: -8.31400141399e-05 } path_point { x: 587636.670287 y: 4141124.46667 z: 0.0 theta: -8.09527452886 kappa: -0.000174547354958 s: 358.412309552 dkappa: -9.16191845168e-05 } path_point { x: 587636.589054 y: 4141124.13662 z: 0.0 theta: -8.0953392065 kappa: -0.000206092134114 s: 358.752210871 dkappa: -9.29207996159e-05 } path_point { x: 587636.507798 y: 4141123.80657 z: 0.0 theta: -8.09541456488 kappa: -0.000237071682171 s: 359.092112189 dkappa: -8.85430245975e-05 } path_point { x: 587636.426516 y: 4141123.47653 z: 0.0 theta: -8.09550011262 kappa: -0.000265810181097 s: 359.432013508 dkappa: -7.99840246221e-05 } path_point { x: 587636.345204 y: 4141123.1465 z: 0.0 theta: -8.09559487533 kappa: -0.000291141041172 s: 359.771914826 dkappa: -6.87419648498e-05 } path_point { x: 587636.263859 y: 4141122.81648 z: 0.0 theta: -8.09569756858 kappa: -0.00031240690099 s: 360.111816145 dkappa: -5.63150104412e-05 } path_point { x: 587636.170348 y: 4141122.43728 z: 0.0 theta: -8.09582403932 kappa: -0.000335492692346 s: 360.502375703 dkappa: -6.03735406252e-05 } path_point { x: 587636.076786 y: 4141122.05809 z: 0.0 theta: -8.09595962169 kappa: -0.000358566719767 s: 360.892935261 dkappa: -5.67576359729e-05 } path_point { x: 587635.983172 y: 4141121.67892 z: 0.0 theta: -8.09610380249 kappa: -0.000379220857876 s: 361.28349482 dkappa: -4.84844982882e-05 } path_point { x: 587635.889502 y: 4141121.29976 z: 0.0 theta: -8.09625535811 kappa: -0.000396225378296 s: 361.674054378 dkappa: -3.85713293751e-05 } path_point { x: 587635.795773 y: 4141120.92061 z: 0.0 theta: -8.09641281478 kappa: -0.000409528949659 s: 362.064613937 dkappa: -3.00353310374e-05 } path_point { x: 587635.71486 y: 4141120.59352 z: 0.0 theta: -8.09655256275 kappa: -0.000420027174888 s: 362.401563741 dkappa: -3.12760351121e-05 } path_point { x: 587635.633902 y: 4141120.26644 z: 0.0 theta: -8.09669581442 kappa: -0.00043004522838 s: 362.738513545 dkappa: -2.75252322385e-05 } path_point { x: 587635.552896 y: 4141119.93937 z: 0.0 theta: -8.09684216326 kappa: -0.000438244921372 s: 363.07546335 dkappa: -2.08229801461e-05 } path_point { x: 587635.471842 y: 4141119.61232 z: 0.0 theta: -8.0969908676 kappa: -0.000443975462154 s: 363.412413154 dkappa: -1.32093365643e-05 } path_point { x: 587635.390739 y: 4141119.28527 z: 0.0 theta: -8.09714108236 kappa: -0.000447273456068 s: 363.749362958 dkappa: -6.72435922238e-06 } path_point { x: 587635.309587 y: 4141118.95824 z: 0.0 theta: -8.09729209054 kappa: -0.000448862905508 s: 364.086312762 dkappa: -3.40810584987e-06 } path_point { x: 587635.228623 y: 4141118.63218 z: 0.0 theta: -8.09744304815 kappa: -0.000449623188933 s: 364.422278711 dkappa: -5.40100019855e-07 } path_point { x: 587635.147609 y: 4141118.30612 z: 0.0 theta: -8.09759404208 kappa: -0.00044893246974 s: 364.758244659 dkappa: 4.94733376975e-06 } path_point { x: 587635.066546 y: 4141117.98008 z: 0.0 theta: -8.09774446889 kappa: -0.000446195295454 s: 365.094210607 dkappa: 1.13600588054e-05 } path_point { x: 587634.985434 y: 4141117.65406 z: 0.0 theta: -8.09789362069 kappa: -0.000441385385849 s: 365.430176555 dkappa: 1.70039383736e-05 } path_point { x: 587634.904274 y: 4141117.32804 z: 0.0 theta: -8.09804087636 kappa: -0.000435045632945 s: 365.766142503 dkappa: 2.01848357607e-05 } path_point { x: 587634.823067 y: 4141117.00204 z: 0.0 theta: -8.09818589281 kappa: -0.000428288101008 s: 366.102108452 dkappa: 1.92086142532e-05 } path_point { x: 587634.730237 y: 4141116.62962 z: 0.0 theta: -8.09834872724 kappa: -0.000419856445213 s: 366.48592009 dkappa: 2.49269063044e-05 } path_point { x: 587634.637347 y: 4141116.25722 z: 0.0 theta: -8.09850788571 kappa: -0.000409112527215 s: 366.869731729 dkappa: 3.09664519104e-05 } path_point { x: 587634.544398 y: 4141115.88483 z: 0.0 theta: -8.09866249996 kappa: -0.000396268234561 s: 367.253543367 dkappa: 3.55806213951e-05 } path_point { x: 587634.451393 y: 4141115.51246 z: 0.0 theta: -8.09881191173 kappa: -0.000382205831595 s: 367.637355006 dkappa: 3.70227850823e-05 } path_point { x: 587634.358333 y: 4141115.1401 z: 0.0 theta: -8.09895593 kappa: -0.000368477959457 s: 368.021166645 dkappa: 3.3546313296e-05 } path_point { x: 587634.262344 y: 4141114.75625 z: 0.0 theta: -8.09909888073 kappa: -0.000353580833499 s: 368.416835295 dkappa: 4.14078318526e-05 } path_point { x: 587634.1663 y: 4141114.37242 z: 0.0 theta: -8.09923538089 kappa: -0.000336033572763 s: 368.812503945 dkappa: 4.68190032214e-05 } path_point { x: 587634.070206 y: 4141113.9886 z: 0.0 theta: -8.09936459296 kappa: -0.000316951749557 s: 369.208172596 dkappa: 4.9041599877e-05 } path_point { x: 587633.974063 y: 4141113.60479 z: 0.0 theta: -8.09948617861 kappa: -0.000297743029679 s: 369.603841246 dkappa: 4.7337394294e-05 } path_point { x: 587633.877876 y: 4141113.22099 z: 0.0 theta: -8.09960041428 kappa: -0.000280107172415 s: 369.999509896 dkappa: 4.0968158947e-05 } path_point { x: 587633.781331 y: 4141112.83595 z: 0.0 theta: -8.09970815844 kappa: -0.000262251569831 s: 370.396469866 dkappa: 4.83427136611e-05 } path_point { x: 587633.684747 y: 4141112.45092 z: 0.0 theta: -8.0998083352 kappa: -0.000242233786761 s: 370.793429837 dkappa: 5.18867155882e-05 } path_point { x: 587633.588125 y: 4141112.06589 z: 0.0 theta: -8.09990038412 kappa: -0.000221544792483 s: 371.190389807 dkappa: 5.17493326274e-05 } path_point { x: 587633.49147 y: 4141111.68088 z: 0.0 theta: -8.09998432492 kappa: -0.00020161634259 s: 371.587349777 dkappa: 4.8079732678e-05 } path_point { x: 587633.394784 y: 4141111.29588 z: 0.0 theta: -8.10006073387 kappa: -0.000183820978991 s: 371.984309748 dkappa: 4.10270836392e-05 } path_point { x: 587633.312836 y: 4141110.96965 z: 0.0 theta: -8.10012011751 kappa: -0.000168951003984 s: 372.32066928 dkappa: 4.68181669637e-05 } path_point { x: 587633.230869 y: 4141110.64343 z: 0.0 theta: -8.10017423468 kappa: -0.000152687308216 s: 372.657028811 dkappa: 4.93823222612e-05 } path_point { x: 587633.148886 y: 4141110.31722 z: 0.0 theta: -8.10022279141 kappa: -0.000136046531799 s: 372.993388343 dkappa: 4.91284446665e-05 } path_point { x: 587633.066888 y: 4141109.991 z: 0.0 theta: -8.10026581258 kappa: -0.00011990777907 s: 373.329747875 dkappa: 4.64654293146e-05 } path_point { x: 587632.984876 y: 4141109.6648 z: 0.0 theta: -8.10030359561 kappa: -0.000105012618589 s: 373.666107407 dkappa: 4.18021713404e-05 } path_point { x: 587632.902853 y: 4141109.33859 z: 0.0 theta: -8.10033666424 kappa: -9.19650831394e-05 s: 374.002466939 dkappa: 3.55475658787e-05 } path_point { x: 587632.821442 y: 4141109.01486 z: 0.0 theta: -8.10036528712 kappa: -7.92907961865e-05 s: 374.336275432 dkappa: 3.98167353452e-05 } path_point { x: 587632.740023 y: 4141108.69114 z: 0.0 theta: -8.10038950231 kappa: -6.57305385906e-05 s: 374.670083926 dkappa: 4.09603013172e-05 } path_point { x: 587632.658597 y: 4141108.36741 z: 0.0 theta: -8.10040917659 kappa: -5.22230360164e-05 s: 375.003892419 dkappa: 3.96051341775e-05 } path_point { x: 587632.577164 y: 4141108.04369 z: 0.0 theta: -8.10042445511 kappa: -3.94977594705e-05 s: 375.337700913 dkappa: 3.63781043087e-05 } path_point { x: 587632.495728 y: 4141107.71996 z: 0.0 theta: -8.10043569166 kappa: -2.80749253013e-05 s: 375.671509406 dkappa: 3.19060820937e-05 } path_point { x: 587632.414288 y: 4141107.39624 z: 0.0 theta: -8.10044337871 kappa: -1.82654951993e-05 s: 376.0053179 dkappa: 2.68159379152e-05 } path_point { x: 587632.332617 y: 4141107.07161 z: 0.0 theta: -8.10044792076 kappa: -8.71252324744e-06 s: 376.340069081 dkappa: 2.96785994454e-05 } path_point { x: 587632.250945 y: 4141106.74697 z: 0.0 theta: -8.10044916541 kappa: 1.26593746594e-06 s: 376.674820263 dkappa: 2.9508024741e-05 } path_point { x: 587632.169272 y: 4141106.42234 z: 0.0 theta: -8.10044712335 kappa: 1.0805112696e-05 s: 377.009571445 dkappa: 2.72040174605e-05 } path_point { x: 587632.087601 y: 4141106.0977 z: 0.0 theta: -8.10044204438 kappa: 1.9341438536e-05 s: 377.344322626 dkappa: 2.36663812625e-05 } path_point { x: 587632.005932 y: 4141105.77307 z: 0.0 theta: -8.10043431651 kappa: 2.66125614168e-05 s: 377.679073808 dkappa: 1.97949198054e-05 } path_point { x: 587631.924266 y: 4141105.44843 z: 0.0 theta: -8.10042436517 kappa: 3.26573381075e-05 s: 378.01382499 dkappa: 1.64894367477e-05 } path_point { x: 587631.839829 y: 4141105.11276 z: 0.0 theta: -8.10041204233 kappa: 3.85960016686e-05 s: 378.359949642 dkappa: 1.73492609027e-05 } path_point { x: 587631.755396 y: 4141104.77709 z: 0.0 theta: -8.10039766495 kappa: 4.43907348682e-05 s: 378.706074293 dkappa: 1.58115353296e-05 } path_point { x: 587631.670969 y: 4141104.44142 z: 0.0 theta: -8.10038140803 kappa: 4.9371353633e-05 s: 379.052198945 dkappa: 1.27988582369e-05 } path_point { x: 587631.586547 y: 4141104.10575 z: 0.0 theta: -8.1003636233 kappa: 5.31870078737e-05 s: 379.398323597 dkappa: 9.23382783323e-06 } path_point { x: 587631.502132 y: 4141103.77008 z: 0.0 theta: -8.10034472864 kappa: 5.58061814846e-05 s: 379.744448249 dkappa: 6.03904232704e-06 } path_point { x: 587631.417723 y: 4141103.4344 z: 0.0 theta: -8.10032509757 kappa: 5.7516692344e-05 s: 380.090572901 dkappa: 4.13709992685e-06 } path_point { x: 587631.336061 y: 4141103.10963 z: 0.0 theta: -8.10030561875 kappa: 5.87511836525e-05 s: 380.425455829 dkappa: 2.99686391654e-06 } path_point { x: 587631.254407 y: 4141102.78486 z: 0.0 theta: -8.10028581417 kappa: 5.94005813332e-05 s: 380.760338757 dkappa: 7.5198989036e-07 } path_point { x: 587631.172758 y: 4141102.46008 z: 0.0 theta: -8.10026592945 kappa: 5.92046760567e-05 s: 381.095221685 dkappa: -1.94227773826e-06 } path_point { x: 587631.091116 y: 4141102.1353 z: 0.0 theta: -8.10024626062 kappa: 5.81226886616e-05 s: 381.430104614 dkappa: -4.43069455591e-06 } path_point { x: 587631.009481 y: 4141101.81052 z: 0.0 theta: -8.10022708064 kappa: 5.6333270154e-05 s: 381.764987542 dkappa: -6.05801614916e-06 } path_point { x: 587630.927851 y: 4141101.48574 z: 0.0 theta: -8.10020856587 kappa: 5.42345017079e-05 s: 382.09987047 dkappa: -6.16899810461e-06 } path_point { x: 587630.835008 y: 4141101.11631 z: 0.0 theta: -8.10018839724 kappa: 5.1537345005e-05 s: 382.480786953 dkappa: -8.1016900878e-06 } path_point { x: 587630.742172 y: 4141100.74688 z: 0.0 theta: -8.10016940785 kappa: 4.80234330662e-05 s: 382.861703436 dkappa: -1.03410166168e-05 } path_point { x: 587630.649342 y: 4141100.37745 z: 0.0 theta: -8.10015191419 kappa: 4.37089232972e-05 s: 383.242619919 dkappa: -1.21888742253e-05 } path_point { x: 587630.556519 y: 4141100.00801 z: 0.0 theta: -8.10013617592 kappa: 3.88758922211e-05 s: 383.623536402 dkappa: -1.29471594472e-05 } path_point { x: 587630.463702 y: 4141099.63858 z: 0.0 theta: -8.10012229463 kappa: 3.4072335478e-05 s: 384.004452885 dkappa: -1.19177688162e-05 } path_point { x: 587630.366933 y: 4141099.25339 z: 0.0 theta: -8.10010977928 kappa: 2.87706450173e-05 s: 384.401605419 dkappa: -1.4669330855e-05 } path_point { x: 587630.270168 y: 4141098.86821 z: 0.0 theta: -8.1000995671 kappa: 2.25273663086e-05 s: 384.798757954 dkappa: -1.66129815681e-05 } path_point { x: 587630.173407 y: 4141098.48303 z: 0.0 theta: -8.10009196101 kappa: 1.57187459419e-05 s: 385.195910488 dkappa: -1.74698227751e-05 } path_point { x: 587630.076649 y: 4141098.09784 z: 0.0 theta: -8.10008709248 kappa: 8.83179562621e-06 s: 385.593063022 dkappa: -1.69609562958e-05 } path_point { x: 587629.979892 y: 4141097.71265 z: 0.0 theta: -8.10008487759 kappa: 2.46429218941e-06 s: 385.990215556 dkappa: -1.48074839502e-05 } path_point { x: 587629.894555 y: 4141097.37293 z: 0.0 theta: -8.10008498669 kappa: -3.25367495171e-06 s: 386.340493786 dkappa: -1.76589315315e-05 } path_point { x: 587629.809217 y: 4141097.03321 z: 0.0 theta: -8.10008725124 kappa: -9.77881719775e-06 s: 386.690772017 dkappa: -1.94143715991e-05 } path_point { x: 587629.723879 y: 4141096.69348 z: 0.0 theta: -8.10009188651 kappa: -1.67252537077e-05 s: 387.041050247 dkappa: -2.00625372896e-05 } path_point { x: 587629.638538 y: 4141096.35376 z: 0.0 theta: -8.10009897191 kappa: -2.37031571037e-05 s: 387.391328478 dkappa: -1.95921617397e-05 } path_point { x: 587629.553195 y: 4141096.01404 z: 0.0 theta: -8.10010844962 kappa: -3.03187534708e-05 s: 387.741606708 dkappa: -1.79919780863e-05 } path_point { x: 587629.467848 y: 4141095.67432 z: 0.0 theta: -8.10012012318 kappa: -3.61743223573e-05 s: 388.091884939 dkappa: -1.5250719466e-05 } path_point { x: 587629.370781 y: 4141095.28796 z: 0.0 theta: -8.10013581043 kappa: -4.27297415361e-05 s: 388.490243476 dkappa: -1.74308057178e-05 } path_point { x: 587629.273707 y: 4141094.90161 z: 0.0 theta: -8.10015424603 kappa: -4.98837572678e-05 s: 388.888602014 dkappa: -1.82704992224e-05 } path_point { x: 587629.176625 y: 4141094.51527 z: 0.0 theta: -8.10017556439 kappa: -5.71196984812e-05 s: 389.286960551 dkappa: -1.78565852312e-05 } path_point { x: 587629.079535 y: 4141094.12892 z: 0.0 theta: -8.10019970098 kappa: -6.39554657506e-05 s: 389.685319088 dkappa: -1.62758489958e-05 } path_point { x: 587628.982435 y: 4141093.74258 z: 0.0 theta: -8.10022640609 kappa: -6.99435312965e-05 s: 390.083677626 dkappa: -1.36150757677e-05 } path_point { x: 587628.889482 y: 4141093.37278 z: 0.0 theta: -8.10025411071 kappa: -7.54663864046e-05 s: 390.464978779 dkappa: -1.50952657653e-05 } path_point { x: 587628.796519 y: 4141093.00298 z: 0.0 theta: -8.10028399325 kappa: -8.12791650468e-05 s: 390.846279932 dkappa: -1.51903243408e-05 } path_point { x: 587628.703545 y: 4141092.63319 z: 0.0 theta: -8.10031607151 kappa: -8.6916106102e-05 s: 391.227581085 dkappa: -1.42275050933e-05 } path_point { x: 587628.610558 y: 4141092.2634 z: 0.0 theta: -8.10035020946 kappa: -9.20362306237e-05 s: 391.608882238 dkappa: -1.25340616214e-05 } path_point { x: 587628.517558 y: 4141091.89362 z: 0.0 theta: -8.10038616485 kappa: -9.64233418399e-05 s: 391.990183391 dkappa: -1.04372475242e-05 } path_point { x: 587628.435658 y: 4141091.56801 z: 0.0 theta: -8.10041915684 kappa: -0.000100173093867 s: 392.325929159 dkappa: -1.16382119238e-05 } path_point { x: 587628.353747 y: 4141091.24241 z: 0.0 theta: -8.1004534479 kappa: -0.000104085166544 s: 392.661674926 dkappa: -1.14708545737e-05 } path_point { x: 587628.271825 y: 4141090.91681 z: 0.0 theta: -8.10048902292 kappa: -0.000107767315313 s: 392.997420693 dkappa: -1.03352619925e-05 } path_point { x: 587628.189891 y: 4141090.59122 z: 0.0 theta: -8.10052575764 kappa: -0.00011096162297 s: 393.33316646 dkappa: -8.63152069869e-06 } path_point { x: 587628.107944 y: 4141090.26563 z: 0.0 theta: -8.10056346378 kappa: -0.000113544499668 s: 393.668912227 dkappa: -6.75971721093e-06 } path_point { x: 587628.025986 y: 4141089.94004 z: 0.0 theta: -8.10060193409 kappa: -0.000115526682914 s: 394.004657995 dkappa: -5.11993804779e-06 } path_point { x: 587627.940707 y: 4141089.60132 z: 0.0 theta: -8.10064261209 kappa: -0.00011740542698 s: 394.353948883 dkappa: -5.37819557136e-06 } path_point { x: 587627.855415 y: 4141089.2626 z: 0.0 theta: -8.10068393328 kappa: -0.000119135210833 s: 394.703239772 dkappa: -4.36031187812e-06 } path_point { x: 587627.770108 y: 4141088.92389 z: 0.0 theta: -8.10072577916 kappa: -0.000120368059754 s: 395.05253066 dkappa: -2.6261056354e-06 } path_point { x: 587627.684788 y: 4141088.58518 z: 0.0 theta: -8.10076794384 kappa: -0.000120951538581 s: 395.401821549 dkappa: -7.35395510548e-07 } path_point { x: 587627.599453 y: 4141088.24647 z: 0.0 theta: -8.10081020235 kappa: -0.000120928751716 s: 395.751112437 dkappa: 7.51999829091e-07 } path_point { x: 587627.514103 y: 4141087.90777 z: 0.0 theta: -8.10085237891 kappa: -0.000120538343118 s: 396.100403326 dkappa: 1.27626171617e-06 } path_point { x: 587627.416597 y: 4141087.5209 z: 0.0 theta: -8.10090034338 kappa: -0.000119819997438 s: 396.499373223 dkappa: 2.51492903152e-06 } path_point { x: 587627.319073 y: 4141087.13403 z: 0.0 theta: -8.1009478977 kappa: -0.000118432895191 s: 396.898343121 dkappa: 4.49565209708e-06 } path_point { x: 587627.22153 y: 4141086.74717 z: 0.0 theta: -8.10099473716 kappa: -0.000116240198321 s: 397.297313019 dkappa: 6.42027620317e-06 } path_point { x: 587627.12397 y: 4141086.36031 z: 0.0 theta: -8.10104056598 kappa: -0.000113423508476 s: 397.696282917 dkappa: 7.49064664008e-06 } path_point { x: 587627.026392 y: 4141085.97346 z: 0.0 theta: -8.10108522439 kappa: -0.000110482867007 s: 398.095252815 dkappa: 6.90860869812e-06 } path_point { x: 587626.930426 y: 4141085.59307 z: 0.0 theta: -8.10112798111 kappa: -0.000107348212462 s: 398.4875619 dkappa: 9.09681887478e-06 } path_point { x: 587626.834444 y: 4141085.21268 z: 0.0 theta: -8.10116933894 kappa: -0.00010335720156 s: 398.879870985 dkappa: 1.11943051741e-05 } path_point { x: 587626.738447 y: 4141084.8323 z: 0.0 theta: -8.10120898122 kappa: -9.86396112529e-05 s: 399.27218007 dkappa: 1.27209097152e-05 } path_point { x: 587626.642436 y: 4141084.45192 z: 0.0 theta: -8.10124667914 kappa: -9.35135887894e-05 s: 399.664489155 dkappa: 1.31964746174e-05 } path_point { x: 587626.54641 y: 4141084.07154 z: 0.0 theta: -8.10128236568 kappa: -8.84856517183e-05 s: 400.05679824 dkappa: 1.21408419997e-05 } path_point { x: 587626.463585 y: 4141083.7435 z: 0.0 theta: -8.10131155923 kappa: -8.3946143028e-05 s: 400.395130988 dkappa: 1.46410024778e-05 } path_point { x: 587626.380752 y: 4141083.41547 z: 0.0 theta: -8.10133908086 kappa: -7.86262650983e-05 s: 400.733463735 dkappa: 1.67184320627e-05 } path_point { x: 587626.297909 y: 4141083.08743 z: 0.0 theta: -8.10136469482 kappa: -7.27050112018e-05 s: 401.071796482 dkappa: 1.81605023978e-05 } path_point { x: 587626.215058 y: 4141082.7594 z: 0.0 theta: -8.10138823804 kappa: -6.64333137471e-05 s: 401.41012923 dkappa: 1.87545851265e-05 } path_point { x: 587626.1322 y: 4141082.43137 z: 0.0 theta: -8.10140964457 kappa: -6.01340442789e-05 s: 401.748461977 dkappa: 1.8288051892e-05 } path_point { x: 587626.049336 y: 4141082.10334 z: 0.0 theta: -8.10142896982 kappa: -5.42020134783e-05 s: 402.086794725 dkappa: 1.65482743378e-05 } path_point { x: 587625.967151 y: 4141081.77803 z: 0.0 theta: -8.10144618011 kappa: -4.82516781257e-05 s: 402.422325298 dkappa: 1.889971764e-05 } path_point { x: 587625.884962 y: 4141081.45273 z: 0.0 theta: -8.10146126554 kappa: -4.15534307372e-05 s: 402.757855871 dkappa: 2.09446305351e-05 } path_point { x: 587625.802768 y: 4141081.12742 z: 0.0 theta: -8.10147399935 kappa: -3.42722581087e-05 s: 403.093386444 dkappa: 2.23126356093e-05 } path_point { x: 587625.72057 y: 4141080.80211 z: 0.0 theta: -8.10148423101 kappa: -2.66974199824e-05 s: 403.428917017 dkappa: 2.26333554486e-05 } path_point { x: 587625.638369 y: 4141080.47681 z: 0.0 theta: -8.10149192789 kappa: -1.92424490462e-05 s: 403.76444759 dkappa: 2.15364126392e-05 } path_point { x: 587625.556166 y: 4141080.1515 z: 0.0 theta: -8.10149721696 kappa: -1.24451509342e-05 s: 404.099978163 dkappa: 1.86514297671e-05 } path_point { x: 587625.46308 y: 4141079.78313 z: 0.0 theta: -8.10150052412 kappa: -4.77868487901e-06 s: 404.479924178 dkappa: 2.15635197289e-05 } path_point { x: 587625.369994 y: 4141079.41477 z: 0.0 theta: -8.10150073031 kappa: 3.81523660964e-06 s: 404.859870193 dkappa: 2.34842118541e-05 } path_point { x: 587625.276908 y: 4141079.0464 z: 0.0 theta: -8.10149756183 kappa: 1.29037921541e-05 s: 405.239816207 dkappa: 2.41179708899e-05 } path_point { x: 587625.183823 y: 4141078.67803 z: 0.0 theta: -8.10149093074 kappa: 2.19418729352e-05 s: 405.619762222 dkappa: 2.3169261583e-05 } path_point { x: 587625.090742 y: 4141078.30967 z: 0.0 theta: -8.10148097755 kappa: 3.02720826922e-05 s: 405.999708236 dkappa: 2.03425486803e-05 } path_point { x: 587625.008549 y: 4141077.98437 z: 0.0 theta: -8.10146959377 kappa: 3.78068229565e-05 s: 406.335224111 dkappa: 2.42882328948e-05 } path_point { x: 587624.92636 y: 4141077.65908 z: 0.0 theta: -8.10145549128 kappa: 4.63862313388e-05 s: 406.670739986 dkappa: 2.65884500097e-05 } path_point { x: 587624.844177 y: 4141077.33379 z: 0.0 theta: -8.10143841009 kappa: 5.54770159464e-05 s: 407.006255861 dkappa: 2.73551973542e-05 } path_point { x: 587624.761999 y: 4141077.00849 z: 0.0 theta: -8.10141826283 kappa: 6.45834617684e-05 s: 407.341771736 dkappa: 2.67004722573e-05 } path_point { x: 587624.679828 y: 4141076.68319 z: 0.0 theta: -8.10139512216 kappa: 7.32474306758e-05 s: 407.677287611 dkappa: 2.47362720481e-05 } path_point { x: 587624.597665 y: 4141076.35789 z: 0.0 theta: -8.10136920814 kappa: 8.10483614213e-05 s: 408.012803486 dkappa: 2.15745940557e-05 } path_point { x: 587624.500212 y: 4141075.972 z: 0.0 theta: -8.10133514012 kappa: 9.03612210608e-05 s: 408.410808704 dkappa: 2.4832423059e-05 } path_point { x: 587624.402772 y: 4141075.58611 z: 0.0 theta: -8.10129716729 kappa: 0.000100525372161 s: 408.808813921 dkappa: 2.59054279124e-05 } path_point { x: 587624.305347 y: 4141075.20021 z: 0.0 theta: -8.10125511546 kappa: 0.000110734577959 s: 409.206819139 dkappa: 2.51118690008e-05 } path_point { x: 587624.20794 y: 4141074.81431 z: 0.0 theta: -8.10120910615 kappa: 0.000120309270983 s: 409.604824356 dkappa: 2.27700067096e-05 } path_point { x: 587624.110551 y: 4141074.4284 z: 0.0 theta: -8.10115950612 kappa: 0.000128696553057 s: 410.002829574 dkappa: 1.9198101424e-05 } path_point { x: 587624.01338 y: 4141074.04328 z: 0.0 theta: -8.10110679979 kappa: 0.000136842846742 s: 410.400023545 dkappa: 2.14128389364e-05 } path_point { x: 587623.91623 y: 4141073.65815 z: 0.0 theta: -8.10105074383 kappa: 0.000145419394943 s: 410.797217517 dkappa: 2.1457912172e-05 } path_point { x: 587623.819102 y: 4141073.27301 z: 0.0 theta: -8.10099132376 kappa: 0.000153675642607 s: 411.194411488 dkappa: 1.98933624445e-05 } path_point { x: 587623.721998 y: 4141072.88787 z: 0.0 theta: -8.10092877906 kappa: 0.000161083479713 s: 411.591605459 dkappa: 1.72792310675e-05 } path_point { x: 587623.624919 y: 4141072.50273 z: 0.0 theta: -8.10086351477 kappa: 0.000167337241275 s: 411.988799431 dkappa: 1.41755593548e-05 } path_point { x: 587623.539638 y: 4141072.1643 z: 0.0 theta: -8.10080420392 kappa: 0.000172646235376 s: 412.33780642 dkappa: 1.5904230765e-05 } path_point { x: 587623.454377 y: 4141071.82587 z: 0.0 theta: -8.10074297422 kappa: 0.000178228085747 s: 412.686813408 dkappa: 1.58232172009e-05 } path_point { x: 587623.369138 y: 4141071.48743 z: 0.0 theta: -8.10067983041 kappa: 0.000183539194372 s: 413.035820397 dkappa: 1.44367761089e-05 } path_point { x: 587623.28392 y: 4141071.14898 z: 0.0 theta: -8.10061493624 kappa: 0.000188211952607 s: 413.384827386 dkappa: 1.22491649354e-05 } path_point { x: 587623.198724 y: 4141070.81054 z: 0.0 theta: -8.10054855307 kappa: 0.00019205474118 s: 413.733834374 dkappa: 9.76464112654e-06 } path_point { x: 587623.113551 y: 4141070.47208 z: 0.0 theta: -8.1004809784 kappa: 0.000195051930193 s: 414.082841363 dkappa: 7.4874621288e-06 } path_point { x: 587623.032013 y: 4141070.14798 z: 0.0 theta: -8.10041535753 kappa: 0.000197675851685 s: 414.417042285 dkappa: 7.93966094296e-06 } path_point { x: 587622.950497 y: 4141069.82387 z: 0.0 theta: -8.10034886267 kappa: 0.00020020574276 s: 414.751243208 dkappa: 7.01779304879e-06 } path_point { x: 587622.869002 y: 4141069.49976 z: 0.0 theta: -8.10028159158 kappa: 0.000202275680043 s: 415.08544413 dkappa: 5.28015126602e-06 } path_point { x: 587622.787529 y: 4141069.17564 z: 0.0 theta: -8.10021373314 kappa: 0.000203706322136 s: 415.419645052 dkappa: 3.2850284144e-06 } path_point { x: 587622.706078 y: 4141068.85152 z: 0.0 theta: -8.100145505 kappa: 0.000204504909616 s: 415.753845975 dkappa: 1.59071731364e-06 } path_point { x: 587622.624649 y: 4141068.52739 z: 0.0 theta: -8.10007709119 kappa: 0.000204865265036 s: 416.088046897 dkappa: 7.55510783491e-07 } path_point { x: 587622.542987 y: 4141068.20224 z: 0.0 theta: -8.10000837629 kappa: 0.00020501671817 s: 416.423299256 dkappa: -8.31361110709e-08 } path_point { x: 587622.461346 y: 4141067.87708 z: 0.0 theta: -8.09993968068 kappa: 0.000204690718484 s: 416.758551616 dkappa: -1.98489316919e-06 } path_point { x: 587622.379728 y: 4141067.55191 z: 0.0 theta: -8.09987121206 kappa: 0.000203639392036 s: 417.093803975 dkappa: -4.30227055436e-06 } path_point { x: 587622.298133 y: 4141067.22674 z: 0.0 theta: -8.09980322481 kappa: 0.000201831937378 s: 417.429056334 dkappa: -6.38777843004e-06 } path_point { x: 587622.216559 y: 4141066.90156 z: 0.0 theta: -8.09973594728 kappa: 0.000199454625557 s: 417.764308693 dkappa: -7.59392695973e-06 } path_point { x: 587622.135007 y: 4141066.57638 z: 0.0 theta: -8.09966950896 kappa: 0.000196910800116 s: 418.099561053 dkappa: -7.2732263069e-06 } path_point { x: 587622.041546 y: 4141066.2036 z: 0.0 theta: -8.09959442856 kappa: 0.000193641725328 s: 418.483877392 dkappa: -9.9020371865e-06 } path_point { x: 587621.948113 y: 4141065.83082 z: 0.0 theta: -8.09952081705 kappa: 0.000189233460533 s: 418.868193732 dkappa: -1.30484701878e-05 } path_point { x: 587621.854707 y: 4141065.45802 z: 0.0 theta: -8.09944912785 kappa: 0.000183663653367 s: 419.252510071 dkappa: -1.57936038093e-05 } path_point { x: 587621.761327 y: 4141065.08522 z: 0.0 theta: -8.09937975509 kappa: 0.000177263108013 s: 419.636826411 dkappa: -1.72185165492e-05 } path_point { x: 587621.667973 y: 4141064.71242 z: 0.0 theta: -8.09931289794 kappa: 0.000170715785199 s: 420.02114275 dkappa: -1.64042869061e-05 } path_point { x: 587621.571757 y: 4141064.32807 z: 0.0 theta: -8.09924666156 kappa: 0.000163349504276 s: 420.417346292 dkappa: -2.07829089917e-05 } path_point { x: 587621.475566 y: 4141063.94373 z: 0.0 theta: -8.09918368264 kappa: 0.000154297625461 s: 420.813549834 dkappa: -2.47801773015e-05 } path_point { x: 587621.379398 y: 4141063.55937 z: 0.0 theta: -8.09912457822 kappa: 0.000143869157499 s: 421.209753376 dkappa: -2.75989509125e-05 } path_point { x: 587621.283252 y: 4141063.17501 z: 0.0 theta: -8.09906978037 kappa: 0.000132688939192 s: 421.605956918 dkappa: -2.8442088902e-05 } path_point { x: 587621.187126 y: 4141062.79064 z: 0.0 theta: -8.09901941101 kappa: 0.000121697639399 s: 422.00216046 dkappa: -2.65124503472e-05 } path_point { x: 587621.102372 y: 4141062.45168 z: 0.0 theta: -8.09897861628 kappa: 0.000111513592531 s: 422.351555869 dkappa: -3.17359429408e-05 } path_point { x: 587621.017632 y: 4141062.11272 z: 0.0 theta: -8.09894168933 kappa: 9.95947778154e-05 s: 422.700951277 dkappa: -3.63247054388e-05 } path_point { x: 587620.932903 y: 4141061.77375 z: 0.0 theta: -8.09890918315 kappa: 8.62865034786e-05 s: 423.050346686 dkappa: -3.95715937832e-05 } path_point { x: 587620.848184 y: 4141061.43478 z: 0.0 theta: -8.09888148691 kappa: 7.21811506322e-05 s: 423.399742095 dkappa: -4.07694639156e-05 } path_point { x: 587620.763474 y: 4141061.09581 z: 0.0 theta: -8.09885873965 kappa: 5.81181732755e-05 s: 423.749137504 dkappa: -3.92111717778e-05 } path_point { x: 587620.678771 y: 4141060.75684 z: 0.0 theta: -8.09884074394 kappa: 4.5184098295e-05 s: 424.098532912 dkappa: -3.41895733117e-05 } path_point { x: 587620.583124 y: 4141060.37405 z: 0.0 theta: -8.0988257265 kappa: 3.05696058799e-05 s: 424.493096124 dkappa: -3.97691623177e-05 } path_point { x: 587620.487482 y: 4141059.99125 z: 0.0 theta: -8.09881688366 kappa: 1.39702140074e-05 s: 424.887659335 dkappa: -4.40636909888e-05 } path_point { x: 587620.391842 y: 4141059.60845 z: 0.0 theta: -8.09881486942 kappa: -3.88553378734e-06 s: 425.282222547 dkappa: -4.59503683705e-05 } path_point { x: 587620.296201 y: 4141059.22566 z: 0.0 theta: -8.09881996293 kappa: -2.18260819647e-05 s: 425.676785758 dkappa: -4.4306403508e-05 } path_point { x: 587620.200557 y: 4141058.84286 z: 0.0 theta: -8.0988318937 kappa: -3.82368629801e-05 s: 426.071348969 dkappa: -3.80090054469e-05 } path_point { x: 587620.107408 y: 4141058.47007 z: 0.0 theta: -8.09884957141 kappa: -5.41992730821e-05 s: 426.455597679 dkappa: -4.46316538418e-05 } path_point { x: 587620.014251 y: 4141058.09729 z: 0.0 theta: -8.09887380499 kappa: -7.21836559344e-05 s: 426.839846388 dkappa: -4.85020394683e-05 } path_point { x: 587619.921083 y: 4141057.72451 z: 0.0 theta: -8.09890516358 kappa: -9.10964259554e-05 s: 427.224095097 dkappa: -4.9432616269e-05 } path_point { x: 587619.827903 y: 4141057.35173 z: 0.0 theta: -8.09894378228 kappa: -0.000109771933233 s: 427.608343806 dkappa: -4.72358381864e-05 } path_point { x: 587619.734707 y: 4141056.97895 z: 0.0 theta: -8.09898933442 kappa: -0.000126972463525 s: 427.992592516 dkappa: -4.17241591631e-05 } path_point { x: 587619.653359 y: 4141056.65363 z: 0.0 theta: -8.09903440662 kappa: -0.000142243814748 s: 428.327926929 dkappa: -4.88295646175e-05 } path_point { x: 587619.571997 y: 4141056.32832 z: 0.0 theta: -8.09908494117 kappa: -0.000159381136273 s: 428.663261343 dkappa: -5.28950723727e-05 } path_point { x: 587619.490617 y: 4141056.00301 z: 0.0 theta: -8.0991413976 kappa: -0.00017740719887 s: 428.998595757 dkappa: -5.41720916455e-05 } path_point { x: 587619.409217 y: 4141055.67771 z: 0.0 theta: -8.09920392187 kappa: -0.000195429079467 s: 429.333930171 dkappa: -5.29120316529e-05 } path_point { x: 587619.327796 y: 4141055.35241 z: 0.0 theta: -8.09927237463 kappa: -0.00021263816116 s: 429.669264584 dkappa: -4.93663016121e-05 } path_point { x: 587619.246352 y: 4141055.02711 z: 0.0 theta: -8.09934635952 kappa: -0.000228310133203 s: 430.004598998 dkappa: -4.378631074e-05 } path_point { x: 587619.1621 y: 4141054.69071 z: 0.0 theta: -8.0994283134 kappa: -0.000244707635982 s: 430.351389473 dkappa: -5.02883403504e-05 } path_point { x: 587619.077819 y: 4141054.35432 z: 0.0 theta: -8.09951628568 kappa: -0.000262849531569 s: 430.698179948 dkappa: -5.38522573181e-05 } path_point { x: 587618.993507 y: 4141054.01793 z: 0.0 theta: -8.09961070533 kappa: -0.00028172287682 s: 431.044970423 dkappa: -5.45124705162e-05 } path_point { x: 587618.909162 y: 4141053.68156 z: 0.0 theta: -8.09971165209 kappa: -0.00030032666126 s: 431.391760898 dkappa: -5.23033888181e-05 } path_point { x: 587618.824783 y: 4141053.34519 z: 0.0 theta: -8.09981886064 kappa: -0.000317671807085 s: 431.738551373 dkappa: -4.72594210969e-05 } path_point { x: 587618.740366 y: 4141053.00883 z: 0.0 theta: -8.09993172471 kappa: -0.00033278116916 s: 432.085341847 dkappa: -3.94149762259e-05 } path_point { x: 587618.647391 y: 4141052.63856 z: 0.0 theta: -8.10006176651 kappa: -0.000348762409747 s: 432.467104128 dkappa: -4.37078731596e-05 } path_point { x: 587618.554368 y: 4141052.26831 z: 0.0 theta: -8.1001981382 kappa: -0.00036573199818 s: 432.848866408 dkappa: -4.46908126827e-05 } path_point { x: 587618.461292 y: 4141051.89806 z: 0.0 theta: -8.10034099018 kappa: -0.000382538576568 s: 433.230628688 dkappa: -4.29519042329e-05 } path_point { x: 587618.368162 y: 4141051.52783 z: 0.0 theta: -8.10049007615 kappa: -0.000398255305024 s: 433.612390969 dkappa: -3.90792572482e-05 } path_point { x: 587618.274976 y: 4141051.15762 z: 0.0 theta: -8.10064483887 kappa: -0.000412179861658 s: 433.994153249 dkappa: -3.36609811665e-05 } path_point { x: 587618.190468 y: 4141050.82209 z: 0.0 theta: -8.10078959775 kappa: -0.000424866459868 s: 434.340158891 dkappa: -3.8937959061e-05 } path_point { x: 587618.105911 y: 4141050.48658 z: 0.0 theta: -8.10093897908 kappa: -0.000438672165561 s: 434.686164532 dkappa: -4.02854941736e-05 } path_point { x: 587618.021302 y: 4141050.15108 z: 0.0 theta: -8.10109315351 kappa: -0.000452399081085 s: 435.032170174 dkappa: -3.86383210724e-05 } path_point { x: 587617.936641 y: 4141049.81559 z: 0.0 theta: -8.10125193316 kappa: -0.000465172732218 s: 435.378175816 dkappa: -3.49311743259e-05 } path_point { x: 587617.851926 y: 4141049.48011 z: 0.0 theta: -8.10141488355 kappa: -0.000476442068175 s: 435.724181458 dkappa: -3.00987885021e-05 } path_point { x: 587617.767156 y: 4141049.14465 z: 0.0 theta: -8.10158143545 kappa: -0.000485979461603 s: 436.070187099 dkappa: -2.50758981695e-05 } path_point { x: 587617.685296 y: 4141048.82093 z: 0.0 theta: -8.10174515074 kappa: -0.000494713146363 s: 436.404095342 dkappa: -2.67449046586e-05 } path_point { x: 587617.603383 y: 4141048.49723 z: 0.0 theta: -8.10191182412 kappa: -0.000503554815098 s: 436.738003585 dkappa: -2.58503198691e-05 } path_point { x: 587617.521415 y: 4141048.17354 z: 0.0 theta: -8.10208136297 kappa: -0.000511776317068 s: 437.071911828 dkappa: -2.31579441202e-05 } path_point { x: 587617.439392 y: 4141047.84986 z: 0.0 theta: -8.10225347422 kappa: -0.000518905208571 s: 437.405820071 dkappa: -1.94335777311e-05 } path_point { x: 587617.357313 y: 4141047.5262 z: 0.0 theta: -8.10242774974 kappa: -0.000524724752945 s: 437.739728314 dkappa: -1.54430210209e-05 } path_point { x: 587617.275177 y: 4141047.20255 z: 0.0 theta: -8.10260375172 kappa: -0.000529273920568 s: 438.073636558 dkappa: -1.19520743091e-05 } path_point { x: 587617.192599 y: 4141046.8774 z: 0.0 theta: -8.10278199677 kappa: -0.000533385196672 s: 438.409108304 dkappa: -1.20753764742e-05 } path_point { x: 587617.109963 y: 4141046.55227 z: 0.0 theta: -8.10296157839 kappa: -0.000537108552901 s: 438.744580051 dkappa: -9.80864478865e-06 } path_point { x: 587617.027268 y: 4141046.22715 z: 0.0 theta: -8.103142251 kappa: -0.000539812539536 s: 439.080051798 dkappa: -6.1673991066e-06 } path_point { x: 587616.944514 y: 4141045.90204 z: 0.0 theta: -8.10332361433 kappa: -0.000541206385073 s: 439.415523545 dkappa: -2.16715928216e-06 } path_point { x: 587616.861702 y: 4141045.57695 z: 0.0 theta: -8.10350522771 kappa: -0.000541339996231 s: 439.750995291 dkappa: 1.17655483054e-06 } path_point { x: 587616.77883 y: 4141045.25188 z: 0.0 theta: -8.10368672436 kappa: -0.000540603957947 s: 440.086467038 dkappa: 2.84822337736e-06 } path_point { x: 587616.695659 y: 4141044.92588 z: 0.0 theta: -8.10386841922 kappa: -0.000539377655349 s: 440.422909775 dkappa: 4.82962088271e-06 } path_point { x: 587616.612429 y: 4141044.59989 z: 0.0 theta: -8.10404955089 kappa: -0.00053715800111 s: 440.759352511 dkappa: 8.56027687631e-06 } path_point { x: 587616.529141 y: 4141044.27392 z: 0.0 theta: -8.10422970802 kappa: -0.000533551243034 s: 441.095795248 dkappa: 1.28823532099e-05 } path_point { x: 587616.445793 y: 4141043.94796 z: 0.0 theta: -8.10440841228 kappa: -0.000528553175162 s: 441.432237984 dkappa: 1.66380117353e-05 } path_point { x: 587616.362388 y: 4141043.62202 z: 0.0 theta: -8.1045852495 kappa: -0.000522549137767 s: 441.768680721 dkappa: 1.86694143041e-05 } path_point { x: 587616.278925 y: 4141043.2961 z: 0.0 theta: -8.10476000064 kappa: -0.000516314017361 s: 442.105123457 dkappa: 1.78187227683e-05 } path_point { x: 587616.179864 y: 4141042.90956 z: 0.0 theta: -8.10496448039 kappa: -0.000508233778442 s: 442.504150689 dkappa: 2.29512873299e-05 } path_point { x: 587616.080724 y: 4141042.52305 z: 0.0 theta: -8.10516529664 kappa: -0.000497906106416 s: 442.903177921 dkappa: 2.87720278044e-05 } path_point { x: 587615.981508 y: 4141042.13655 z: 0.0 theta: -8.10536154738 kappa: -0.000485428998031 s: 443.302205153 dkappa: 3.34134141179e-05 } path_point { x: 587615.882216 y: 4141041.75008 z: 0.0 theta: -8.10555251837 kappa: -0.000471645645392 s: 443.701232385 dkappa: 3.50079161967e-05 } path_point { x: 587615.782852 y: 4141041.36362 z: 0.0 theta: -8.10573798051 kappa: -0.000458144435958 s: 444.100259617 dkappa: 3.1688003967e-05 } path_point { x: 587615.683905 y: 4141040.97907 z: 0.0 theta: -8.10591720089 kappa: -0.00044406836126 s: 444.497332464 dkappa: 3.91445237369e-05 } path_point { x: 587615.584889 y: 4141040.59454 z: 0.0 theta: -8.1060902637 kappa: -0.000427201333515 s: 444.894405312 dkappa: 4.55179734611e-05 } path_point { x: 587615.485809 y: 4141040.21003 z: 0.0 theta: -8.10625618201 kappa: -0.000408244612607 s: 445.291478159 dkappa: 4.94423459714e-05 } path_point { x: 587615.386666 y: 4141039.82553 z: 0.0 theta: -8.10641435503 kappa: -0.000388441862779 s: 445.688551007 dkappa: 4.95516340994e-05 } path_point { x: 587615.287463 y: 4141039.44105 z: 0.0 theta: -8.10656478347 kappa: -0.000369579152627 s: 446.085623854 dkappa: 4.4479830677e-05 } path_point { x: 587615.203299 y: 4141039.11504 z: 0.0 theta: -8.10668654354 kappa: -0.000353222117333 s: 446.422326474 dkappa: 5.24631527465e-05 } path_point { x: 587615.119097 y: 4141038.78903 z: 0.0 theta: -8.10680237146 kappa: -0.000334434685309 s: 446.759029094 dkappa: 5.88026387738e-05 } path_point { x: 587615.034857 y: 4141038.46304 z: 0.0 theta: -8.10691155498 kappa: -0.000313885139805 s: 447.095731714 dkappa: 6.28163852578e-05 } path_point { x: 587614.950583 y: 4141038.13705 z: 0.0 theta: -8.1070136455 kappa: -0.000292471362767 s: 447.432434334 dkappa: 6.3822488697e-05 } path_point { x: 587614.866277 y: 4141037.81108 z: 0.0 theta: -8.10710853541 kappa: -0.000271320834834 s: 447.769136954 dkappa: 6.11390455902e-05 } path_point { x: 587614.781942 y: 4141037.48511 z: 0.0 theta: -8.10719653537 kappa: -0.000251790635342 s: 448.105839574 dkappa: 5.40841524362e-05 } path_point { x: 587614.682289 y: 4141037.10008 z: 0.0 theta: -8.10729213558 kappa: -0.000228338180568 s: 448.503552524 dkappa: 6.34317832292e-05 } path_point { x: 587614.582601 y: 4141036.71506 z: 0.0 theta: -8.10737774369 kappa: -0.000201750443181 s: 448.901265474 dkappa: 6.96483283925e-05 } path_point { x: 587614.482883 y: 4141036.33006 z: 0.0 theta: -8.10745239242 kappa: -0.000173514169157 s: 449.298978424 dkappa: 7.15194816178e-05 } path_point { x: 587614.383137 y: 4141035.94505 z: 0.0 theta: -8.1075158018 kappa: -0.000145599049814 s: 449.696691374 dkappa: 6.78309365964e-05 } path_point { x: 587614.28337 y: 4141035.56006 z: 0.0 theta: -8.10756857127 kappa: -0.000120457721814 s: 450.094404323 dkappa: 5.73683870199e-05 } path_point { x: 587614.187849 y: 4141035.19152 z: 0.0 theta: -8.10761003281 kappa: -9.67864818545e-05 s: 450.475119749 dkappa: 6.6262486811e-05 } path_point { x: 587614.092314 y: 4141034.82299 z: 0.0 theta: -8.10764194241 kappa: -7.0554177536e-05 s: 450.855835174 dkappa: 7.08166723742e-05 } path_point { x: 587613.99677 y: 4141034.45445 z: 0.0 theta: -8.10766364038 kappa: -4.34195582645e-05 s: 451.2365506 dkappa: 7.09969176946e-05 } path_point { x: 587613.901219 y: 4141034.08592 z: 0.0 theta: -8.10767510099 kappa: -1.70543276746e-05 s: 451.617266025 dkappa: 6.67691967572e-05 } path_point { x: 587613.805667 y: 4141033.7174 z: 0.0 theta: -8.10767693744 kappa: 6.85685637041e-06 s: 451.99798145 dkappa: 5.80994835471e-05 } path_point { x: 587613.705605 y: 4141033.33147 z: 0.0 theta: -8.10766924441 kappa: 3.24634175077e-05 s: 452.396665797 dkappa: 6.90800952596e-05 } path_point { x: 587613.605548 y: 4141032.94555 z: 0.0 theta: -8.10765066365 kappa: 6.1011002833e-05 s: 452.795350143 dkappa: 7.30765444347e-05 } path_point { x: 587613.505501 y: 4141032.55962 z: 0.0 theta: -8.10762054219 kappa: 8.99823501249e-05 s: 453.194034489 dkappa: 7.14293103544e-05 } path_point { x: 587613.405467 y: 4141032.17369 z: 0.0 theta: -8.1075791241 kappa: 0.000117394625268 s: 453.592718835 dkappa: 6.54788723008e-05 } path_point { x: 587613.305452 y: 4141031.78775 z: 0.0 theta: -8.10752733744 kappa: 0.000141799422252 s: 453.991403181 dkappa: 5.65657095559e-05 } path_point { x: 587613.21862 y: 4141031.45262 z: 0.0 theta: -8.10747466982 kappa: 0.000162921658201 s: 454.337605623 dkappa: 6.45842436717e-05 } path_point { x: 587613.131807 y: 4141031.11748 z: 0.0 theta: -8.10741431007 kappa: 0.000185955275543 s: 454.683808065 dkappa: 6.77276608831e-05 } path_point { x: 587613.045015 y: 4141030.78233 z: 0.0 theta: -8.10734587425 kappa: 0.000209337092959 s: 455.030010507 dkappa: 6.67157484718e-05 } path_point { x: 587612.958248 y: 4141030.44718 z: 0.0 theta: -8.10726947646 kappa: 0.000231753121244 s: 455.376212949 dkappa: 6.22682937193e-05 } path_point { x: 587612.871507 y: 4141030.11202 z: 0.0 theta: -8.10718564255 kappa: 0.000252138563306 s: 455.722415391 dkappa: 5.51050839073e-05 } path_point { x: 587612.784796 y: 4141029.77685 z: 0.0 theta: -8.1070952239 kappa: 0.00026967781417 s: 456.068617833 dkappa: 4.59459063174e-05 } path_point { x: 587612.686807 y: 4141029.39793 z: 0.0 theta: -8.10698601889 kappa: 0.000288636205894 s: 456.459999572 dkappa: 5.00364815519e-05 } path_point { x: 587612.588861 y: 4141029.019 z: 0.0 theta: -8.10686921008 kappa: 0.000308223515051 s: 456.851381312 dkappa: 4.93667724105e-05 } path_point { x: 587612.49096 y: 4141028.64007 z: 0.0 theta: -8.10674488419 kappa: 0.00032681974223 s: 457.242763051 dkappa: 4.51789879314e-05 } path_point { x: 587612.393108 y: 4141028.26111 z: 0.0 theta: -8.10661366685 kappa: 0.000343291065953 s: 457.63414479 dkappa: 3.8715337153e-05 } path_point { x: 587612.295306 y: 4141027.88215 z: 0.0 theta: -8.10647653231 kappa: 0.000356989842678 s: 458.025526529 dkappa: 3.12180291135e-05 } path_point { x: 587612.195859 y: 4141027.49658 z: 0.0 theta: -8.10633178599 kappa: 0.00037024315936 s: 458.423711745 dkappa: 3.43102704556e-05 } path_point { x: 587612.096469 y: 4141027.111 z: 0.0 theta: -8.10618166842 kappa: 0.000383623514774 s: 458.82189696 dkappa: 3.22038297017e-05 } path_point { x: 587611.997138 y: 4141026.7254 z: 0.0 theta: -8.106026486 kappa: 0.000395476231838 s: 459.220082176 dkappa: 2.69849785324e-05 } path_point { x: 587611.897867 y: 4141026.33979 z: 0.0 theta: -8.10586703864 kappa: 0.000404977356009 s: 459.618267392 dkappa: 2.07399886283e-05 } path_point { x: 587611.798659 y: 4141025.95416 z: 0.0 theta: -8.10570428891 kappa: 0.000412133655282 s: 460.016452607 dkappa: 1.55551316699e-05 } path_point { x: 587611.699194 y: 4141025.56728 z: 0.0 theta: -8.10553838271 kappa: 0.000418502105384 s: 460.41591881 dkappa: 1.55343727621e-05 } path_point { x: 587611.599795 y: 4141025.18038 z: 0.0 theta: -8.10537004718 kappa: 0.000424048543247 s: 460.815385013 dkappa: 1.17884488813e-05 } path_point { x: 587611.500461 y: 4141024.79346 z: 0.0 theta: -8.10519985223 kappa: 0.000427702977383 s: 461.214851216 dkappa: 6.4105835087e-06 } path_point { x: 587611.401193 y: 4141024.40652 z: 0.0 theta: -8.10502862819 kappa: 0.000429231588339 s: 461.614317418 dkappa: 1.49400012587e-06 } path_point { x: 587611.301992 y: 4141024.01957 z: 0.0 theta: -8.10485713178 kappa: 0.000429236728697 s: 462.013783621 dkappa: -8.68077785823e-07 } path_point { x: 587611.203304 y: 4141023.63435 z: 0.0 theta: -8.10468656151 kappa: 0.000428438499939 s: 462.411447635 dkappa: -3.64295839677e-06 } path_point { x: 587611.104681 y: 4141023.2491 z: 0.0 theta: -8.10451659411 kappa: 0.000426069966764 s: 462.809111649 dkappa: -8.45032126589e-06 } path_point { x: 587611.006124 y: 4141022.86385 z: 0.0 theta: -8.10434796486 kappa: 0.000421699154491 s: 463.206775662 dkappa: -1.3397762971e-05 } path_point { x: 587610.907631 y: 4141022.47857 z: 0.0 theta: -8.10418143119 kappa: 0.000415646629177 s: 463.604439676 dkappa: -1.65928800901e-05 } path_point { x: 587610.809202 y: 4141022.09328 z: 0.0 theta: -8.10401747344 kappa: 0.000408985497621 s: 464.00210369 dkappa: -1.61432692009e-05 } path_point { x: 587610.710949 y: 4141021.70842 z: 0.0 theta: -8.10385641921 kappa: 0.000401620182591 s: 464.39930897 dkappa: -2.11226430868e-05 } path_point { x: 587610.612758 y: 4141021.32354 z: 0.0 theta: -8.10369870172 kappa: 0.000392163410185 s: 464.79651425 dkappa: -2.64195105544e-05 } path_point { x: 587610.514626 y: 4141020.93865 z: 0.0 theta: -8.10354513657 kappa: 0.000380792482556 s: 465.19371953 dkappa: -3.05061362271e-05 } path_point { x: 587610.416553 y: 4141020.55375 z: 0.0 theta: -8.10339634845 kappa: 0.000368291526413 s: 465.59092481 dkappa: -3.18547847285e-05 } path_point { x: 587610.318536 y: 4141020.16882 z: 0.0 theta: -8.10325253003 kappa: 0.000356051493025 s: 465.98813009 dkappa: -2.89377206822e-05 } path_point { x: 587610.236191 y: 4141019.84527 z: 0.0 theta: -8.1031353794 kappa: 0.000345409917782 s: 466.321996499 dkappa: -3.46817499979e-05 } path_point { x: 587610.153883 y: 4141019.52171 z: 0.0 theta: -8.10302208535 kappa: 0.000333004627333 s: 466.655862908 dkappa: -3.94258858144e-05 } path_point { x: 587610.071612 y: 4141019.19814 z: 0.0 theta: -8.10291317238 kappa: 0.000319246805687 s: 466.989729317 dkappa: -4.27067502251e-05 } path_point { x: 587609.989374 y: 4141018.87456 z: 0.0 theta: -8.10280900189 kappa: 0.000304702343173 s: 467.323595725 dkappa: -4.40609653233e-05 } path_point { x: 587609.90717 y: 4141018.55097 z: 0.0 theta: -8.10270972055 kappa: 0.000290091836436 s: 467.657462134 dkappa: -4.30251532026e-05 } path_point { x: 587609.824997 y: 4141018.22737 z: 0.0 theta: -8.10261520857 kappa: 0.00027629058844 s: 467.991328543 dkappa: -3.91359359561e-05 } path_point { x: 587609.738515 y: 4141017.88667 z: 0.0 theta: -8.1025206699 kappa: 0.000261185647419 s: 468.342833923 dkappa: -4.64886585075e-05 } path_point { x: 587609.652064 y: 4141017.54597 z: 0.0 theta: -8.10243185346 kappa: 0.000243855847295 s: 468.694339303 dkappa: -5.17308644439e-05 } path_point { x: 587609.565643 y: 4141017.20525 z: 0.0 theta: -8.10234940299 kappa: 0.000225110645263 s: 469.045844682 dkappa: -5.44779266459e-05 } path_point { x: 587609.479248 y: 4141016.86453 z: 0.0 theta: -8.10227365394 kappa: 0.000205894697021 s: 469.397350062 dkappa: -5.43452179945e-05 } path_point { x: 587609.392878 y: 4141016.5238 z: 0.0 theta: -8.10220458596 kappa: 0.000187287856767 s: 469.748855442 dkappa: -5.09481113703e-05 } path_point { x: 587609.30653 y: 4141016.18306 z: 0.0 theta: -8.10214177535 kappa: 0.0001705051772 s: 470.100360822 dkappa: -4.39019796543e-05 } path_point { x: 587609.22453 y: 4141015.85941 z: 0.0 theta: -8.10208740597 kappa: 0.000154863831822 s: 470.434244619 dkappa: -4.94605978904e-05 } path_point { x: 587609.142547 y: 4141015.53574 z: 0.0 theta: -8.10203853111 kappa: 0.000137707679683 s: 470.768128416 dkappa: -5.29464566754e-05 } path_point { x: 587609.060579 y: 4141015.21208 z: 0.0 theta: -8.10199553775 kappa: 0.000119758209154 s: 471.102012213 dkappa: -5.41832816624e-05 } path_point { x: 587608.978624 y: 4141014.88841 z: 0.0 theta: -8.10195856212 kappa: 0.000101795763752 s: 471.435896009 dkappa: -5.29947985047e-05 } path_point { x: 587608.896679 y: 4141014.56474 z: 0.0 theta: -8.1019274701 kappa: 8.46595421442e-05 s: 471.769779806 dkappa: -4.92047328553e-05 } path_point { x: 587608.814744 y: 4141014.24106 z: 0.0 theta: -8.10190183754 kappa: 6.92475981448e-05 s: 472.103663603 dkappa: -4.26368103673e-05 } path_point { x: 587608.716684 y: 4141013.85365 z: 0.0 theta: -8.10187777387 kappa: 5.07428733164e-05 s: 472.503294735 dkappa: -4.92354638319e-05 } path_point { x: 587608.618632 y: 4141013.46623 z: 0.0 theta: -8.10186151775 kappa: 3.04519972422e-05 s: 472.902925866 dkappa: -5.16569104282e-05 } path_point { x: 587608.520585 y: 4141013.07882 z: 0.0 theta: -8.10185346238 kappa: 9.94708093213e-06 s: 473.302556997 dkappa: -5.03877533671e-05 } path_point { x: 587608.422539 y: 4141012.6914 z: 0.0 theta: -8.10185341155 kappa: -9.39422639543e-06 s: 473.702188128 dkappa: -4.59145958594e-05 } path_point { x: 587608.324492 y: 4141012.30398 z: 0.0 theta: -8.10186065735 kappa: -2.63887373138e-05 s: 474.101819259 dkappa: -3.87240411161e-05 } path_point { x: 587608.242606 y: 4141011.98044 z: 0.0 theta: -8.10187172648 kappa: -4.02139831146e-05 s: 474.435566049 dkappa: -4.35895906315e-05 } path_point { x: 587608.160716 y: 4141011.65689 z: 0.0 theta: -8.10188762319 kappa: -5.51521890742e-05 s: 474.769312839 dkappa: -4.54679640727e-05 } path_point { x: 587608.078819 y: 4141011.33335 z: 0.0 theta: -8.10190856085 kappa: -7.02809217309e-05 s: 475.103059629 dkappa: -4.48057692666e-05 } path_point { x: 587607.996916 y: 4141011.00981 z: 0.0 theta: -8.10193446986 kappa: -8.48268015515e-05 s: 475.436806419 dkappa: -4.20496140397e-05 } path_point { x: 587607.915003 y: 4141010.68627 z: 0.0 theta: -8.10196504735 kappa: -9.81655029315e-05 s: 475.770553209 dkappa: -3.7646106219e-05 } path_point { x: 587607.833079 y: 4141010.36273 z: 0.0 theta: -8.10199980698 kappa: -0.000109821754195 s: 476.104299999 dkappa: -3.2041853631e-05 } path_point { x: 587607.735551 y: 4141009.97764 z: 0.0 theta: -8.10204609472 kappa: -0.000123477459674 s: 476.501555825 dkappa: -3.60112773773e-05 } path_point { x: 587607.638003 y: 4141009.59254 z: 0.0 theta: -8.10209801677 kappa: -0.000137942634198 s: 476.89881165 dkappa: -3.62765431772e-05 } path_point { x: 587607.540435 y: 4141009.20746 z: 0.0 theta: -8.10215562756 kappa: -0.000151935730448 s: 477.296067476 dkappa: -3.37939667976e-05 } path_point { x: 587607.442843 y: 4141008.82237 z: 0.0 theta: -8.1022185479 kappa: -0.000164555103117 s: 477.693323301 dkappa: -2.95198640057e-05 } path_point { x: 587607.345227 y: 4141008.4373 z: 0.0 theta: -8.10228611584 kappa: -0.000175279008905 s: 478.090579127 dkappa: -2.44105505684e-05 } path_point { x: 587607.263257 y: 4141008.11403 z: 0.0 theta: -8.10234598628 kappa: -0.000183908457054 s: 478.424074202 dkappa: -2.69207886747e-05 } path_point { x: 587607.181268 y: 4141007.79077 z: 0.0 theta: -8.10240882991 kappa: -0.000192984002234 s: 478.757569277 dkappa: -2.71739538277e-05 } path_point { x: 587607.099257 y: 4141007.46752 z: 0.0 theta: -8.10247467977 kappa: -0.000201841083678 s: 479.091064353 dkappa: -2.56987611717e-05 } path_point { x: 587607.017225 y: 4141007.14427 z: 0.0 theta: -8.10254337671 kappa: -0.000209991464518 s: 479.424559428 dkappa: -2.3023925851e-05 } path_point { x: 587606.935171 y: 4141006.82103 z: 0.0 theta: -8.10261462812 kappa: -0.000217123231781 s: 479.758054504 dkappa: -1.96781630098e-05 } path_point { x: 587606.853093 y: 4141006.49779 z: 0.0 theta: -8.1026880668 kappa: -0.000223100796391 s: 480.091549579 dkappa: -1.61901877924e-05 } path_point { x: 587606.759501 y: 4141006.12933 z: 0.0 theta: -8.10277408867 kappa: -0.000229518515692 s: 480.47170883 dkappa: -1.71857395918e-05 } path_point { x: 587606.665876 y: 4141005.76088 z: 0.0 theta: -8.10286257073 kappa: -0.000235920032717 s: 480.851868081 dkappa: -1.62289560532e-05 } path_point { x: 587606.572219 y: 4141005.39244 z: 0.0 theta: -8.10295338366 kappa: -0.000241704577123 s: 481.232027331 dkappa: -1.40638832399e-05 } path_point { x: 587606.478528 y: 4141005.02401 z: 0.0 theta: -8.10304622353 kappa: -0.000246554234562 s: 481.612186582 dkappa: -1.14345672151e-05 } path_point { x: 587606.384802 y: 4141004.65558 z: 0.0 theta: -8.1031407193 kappa: -0.000250433946679 s: 481.992345833 dkappa: -9.08505404217e-06 } path_point { x: 587606.302441 y: 4141004.33195 z: 0.0 theta: -8.10322487786 kappa: -0.000253627607112 s: 482.326292431 dkappa: -9.76700686524e-06 } path_point { x: 587606.220052 y: 4141004.00833 z: 0.0 theta: -8.10331011275 kappa: -0.000256802802835 s: 482.66023903 dkappa: -9.06136100747e-06 } path_point { x: 587606.137636 y: 4141003.68471 z: 0.0 theta: -8.10339635012 kappa: -0.000259583201618 s: 482.994185629 dkappa: -7.48946706273e-06 } path_point { x: 587606.055192 y: 4141003.3611 z: 0.0 theta: -8.1034834195 kappa: -0.000261766574488 s: 483.328132227 dkappa: -5.57267562491e-06 } path_point { x: 587605.972719 y: 4141003.0375 z: 0.0 theta: -8.103571112 kappa: -0.000263324795729 s: 483.662078826 dkappa: -3.8323372879e-06 } path_point { x: 587605.890218 y: 4141002.7139 z: 0.0 theta: -8.10365923836 kappa: -0.000264403842882 s: 483.996025424 dkappa: -2.78980264559e-06 } path_point { x: 587605.791656 y: 4141002.32747 z: 0.0 theta: -8.10376490108 kappa: -0.000265454710658 s: 484.39483252 dkappa: -2.26931383026e-06 } path_point { x: 587605.693052 y: 4141001.94104 z: 0.0 theta: -8.10387091228 kappa: -0.000266089111571 s: 484.793639616 dkappa: -8.10264275483e-07 } path_point { x: 587605.594408 y: 4141001.55463 z: 0.0 theta: -8.10397704859 kappa: -0.000266063180267 s: 485.192446712 dkappa: 9.33198542808e-07 } path_point { x: 587605.495723 y: 4141001.16822 z: 0.0 theta: -8.10408304137 kappa: -0.000265393930046 s: 485.591253808 dkappa: 2.30692714869e-06 } path_point { x: 587605.396997 y: 4141000.78183 z: 0.0 theta: -8.10418868082 kappa: -0.000264359252862 s: 485.990060903 dkappa: 2.65677406623e-06 } path_point { x: 587605.310909 y: 4141000.44504 z: 0.0 theta: -8.10428039892 kappa: -0.000263271108767 s: 486.337681038 dkappa: 3.70648168715e-06 } path_point { x: 587605.224791 y: 4141000.10825 z: 0.0 theta: -8.10437166487 kappa: -0.000261733281155 s: 486.685301172 dkappa: 5.17972389559e-06 } path_point { x: 587605.138641 y: 4140999.77148 z: 0.0 theta: -8.10446230452 kappa: -0.000259665557499 s: 487.032921306 dkappa: 6.6909268085e-06 } path_point { x: 587605.052462 y: 4140999.43471 z: 0.0 theta: -8.10455213914 kappa: -0.000257121758517 s: 487.38054144 dkappa: 7.85451654281e-06 } path_point { x: 587604.966252 y: 4140999.09795 z: 0.0 theta: -8.10464103201 kappa: -0.000254289738171 s: 487.728161575 dkappa: 8.28491921546e-06 } path_point { x: 587604.880012 y: 4140998.7612 z: 0.0 theta: -8.10472893499 kappa: -0.000251491383667 s: 488.075781709 dkappa: 7.59656094337e-06 } path_point { x: 587604.796696 y: 4140998.43598 z: 0.0 theta: -8.10481291269 kappa: -0.000248704523611 s: 488.411505069 dkappa: 9.07722913179e-06 } path_point { x: 587604.713353 y: 4140998.11076 z: 0.0 theta: -8.10489586514 kappa: -0.000245370970669 s: 488.747228429 dkappa: 1.07860965619e-05 } path_point { x: 587604.629983 y: 4140997.78556 z: 0.0 theta: -8.10497760354 kappa: -0.000241481865493 s: 489.082951789 dkappa: 1.23195424276e-05 } path_point { x: 587604.546587 y: 4140997.46035 z: 0.0 theta: -8.10505795885 kappa: -0.000237163853666 s: 489.418675149 dkappa: 1.32739459229e-05 } path_point { x: 587604.463165 y: 4140997.13516 z: 0.0 theta: -8.10513682727 kappa: -0.000232679085705 s: 489.754398509 dkappa: 1.32456862419e-05 } path_point { x: 587604.379717 y: 4140996.80997 z: 0.0 theta: -8.10521421579 kappa: -0.00022842521706 s: 490.090121869 dkappa: 1.18311425785e-05 } path_point { x: 587604.285137 y: 4140996.44153 z: 0.0 theta: -8.10530019645 kappa: -0.000223492611873 s: 490.470513699 dkappa: 1.41225733551e-05 } path_point { x: 587604.190525 y: 4140996.07309 z: 0.0 theta: -8.10538413535 kappa: -0.000217699324115 s: 490.85090553 dkappa: 1.62694417515e-05 } path_point { x: 587604.095882 y: 4140995.70466 z: 0.0 theta: -8.10546572812 kappa: -0.000211199561323 s: 491.23129736 dkappa: 1.77500899354e-05 } path_point { x: 587604.00121 y: 4140995.33624 z: 0.0 theta: -8.10554476682 kappa: -0.000204345965411 s: 491.611689191 dkappa: 1.80428600749e-05 } path_point { x: 587603.90651 y: 4140994.96782 z: 0.0 theta: -8.10562121536 kappa: -0.000197689612673 s: 491.992081021 dkappa: 1.66260943377e-05 } path_point { x: 587603.806953 y: 4140994.58064 z: 0.0 theta: -8.10569881073 kappa: -0.000190242334506 s: 492.391859334 dkappa: 2.05217474899e-05 } path_point { x: 587603.707367 y: 4140994.19346 z: 0.0 theta: -8.10577313772 kappa: -0.000181396050484 s: 492.791637647 dkappa: 2.35563960144e-05 } path_point { x: 587603.607752 y: 4140993.80629 z: 0.0 theta: -8.10584371682 kappa: -0.000171577253772 s: 493.19141596 dkappa: 2.53184008432e-05 } path_point { x: 587603.508112 y: 4140993.41913 z: 0.0 theta: -8.10591027189 kappa: -0.000161377001906 s: 493.591194273 dkappa: 2.53961229082e-05 } path_point { x: 587603.408446 y: 4140993.03198 z: 0.0 theta: -8.105972796 kappa: -0.000151550916793 s: 493.990972586 dkappa: 2.33779231412e-05 } path_point { x: 587603.320762 y: 4140992.69145 z: 0.0 theta: -8.10602454455 kappa: -0.000142507932511 s: 494.342610547 dkappa: 2.79727501848e-05 } path_point { x: 587603.233061 y: 4140992.35092 z: 0.0 theta: -8.10607284195 kappa: -0.000131965375364 s: 494.694248508 dkappa: 3.18251638578e-05 } path_point { x: 587603.145345 y: 4140992.0104 z: 0.0 theta: -8.1061172169 kappa: -0.000120270631766 s: 495.045886469 dkappa: 3.4444172281e-05 } path_point { x: 587603.057614 y: 4140991.66988 z: 0.0 theta: -8.10615735062 kappa: -0.000107943739517 s: 495.397524429 dkappa: 3.53387835751e-05 } path_point { x: 587602.96987 y: 4140991.32937 z: 0.0 theta: -8.10619313755 kappa: -9.56773877984e-05 s: 495.74916239 dkappa: 3.40180058608e-05 } path_point { x: 587602.882114 y: 4140990.98885 z: 0.0 theta: -8.10622474607 kappa: -8.43369171749e-05 s: 496.100800351 dkappa: 2.99908472588e-05 } path_point { x: 587602.782439 y: 4140990.60214 z: 0.0 theta: -8.1062559037 kappa: -7.13733058041e-05 s: 496.500153254 dkappa: 3.49318309547e-05 } path_point { x: 587602.682753 y: 4140990.21543 z: 0.0 theta: -8.10628149931 kappa: -5.65267675967e-05 s: 496.899506156 dkappa: 3.91959202946e-05 } path_point { x: 587602.583057 y: 4140989.82872 z: 0.0 theta: -8.10630087076 kappa: -4.03369653983e-05 s: 497.298859058 dkappa: 4.14342175068e-05 } path_point { x: 587602.483356 y: 4140989.44201 z: 0.0 theta: -8.10631367902 kappa: -2.38822482948e-05 s: 497.698211961 dkappa: 4.02978248194e-05 } path_point { x: 587602.383651 y: 4140989.05531 z: 0.0 theta: -8.10632012325 kappa: -8.77965161229e-06 s: 498.097564863 dkappa: 3.44378444606e-05 } path_point { x: 587602.289088 y: 4140988.68855 z: 0.0 theta: -8.10632081148 kappa: 5.54302600773e-06 s: 498.476317258 dkappa: 4.07369074299e-05 } path_point { x: 587602.194526 y: 4140988.32179 z: 0.0 theta: -8.10631568831 kappa: 2.17361071411e-05 s: 498.855069653 dkappa: 4.43219777218e-05 } path_point { x: 587602.099967 y: 4140987.95503 z: 0.0 theta: -8.10630423891 kappa: 3.87801569124e-05 s: 499.233822048 dkappa: 4.52379202707e-05 } path_point { x: 587602.005413 y: 4140987.58827 z: 0.0 theta: -8.10628633135 kappa: 5.56727331475e-05 s: 499.612574442 dkappa: 4.35296000112e-05 } path_point { x: 587601.910867 y: 4140987.22151 z: 0.0 theta: -8.10626221016 kappa: 7.14283863737e-05 s: 499.991326837 dkappa: 3.92418818779e-05 } path_point { x: 587601.811127 y: 4140986.83456 z: 0.0 theta: -8.10623028839 kappa: 8.88850557589e-05 s: 500.39092869 dkappa: 4.74386107569e-05 } path_point { x: 587601.711401 y: 4140986.4476 z: 0.0 theta: -8.10619084449 kappa: 0.000108811496046 s: 500.790530542 dkappa: 5.16563507294e-05 } path_point { x: 587601.611691 y: 4140986.06064 z: 0.0 theta: -8.10614320071 kappa: 0.00012968160473 s: 501.190132394 dkappa: 5.22149643444e-05 } path_point { x: 587601.512002 y: 4140985.67367 z: 0.0 theta: -8.10608726359 kappa: 0.000150097096976 s: 501.589734246 dkappa: 4.94343141505e-05 } path_point { x: 587601.412336 y: 4140985.2867 z: 0.0 theta: -8.1060234729 kappa: 0.000168787505614 s: 501.989336098 dkappa: 4.36342626967e-05 } path_point { x: 587601.324602 y: 4140984.94596 z: 0.0 theta: -8.10596121557 kappa: 0.000185528308876 s: 502.341183718 dkappa: 5.09337654584e-05 } path_point { x: 587601.236891 y: 4140984.60522 z: 0.0 theta: -8.10589268816 kappa: 0.000204227581988 s: 502.693031337 dkappa: 5.48075930282e-05 } path_point { x: 587601.149203 y: 4140984.26448 z: 0.0 theta: -8.10581740855 kappa: 0.000223723119231 s: 503.044878957 dkappa: 5.55007943547e-05 } path_point { x: 587601.061543 y: 4140983.92372 z: 0.0 theta: -8.10573528841 kappa: 0.000242938934778 s: 503.396726577 dkappa: 5.32584183866e-05 } path_point { x: 587600.973912 y: 4140983.58296 z: 0.0 theta: -8.1056466028 kappa: 0.000260885262692 s: 503.748574196 dkappa: 4.83255140724e-05 } path_point { x: 587600.886312 y: 4140983.2422 z: 0.0 theta: -8.10555195988 kappa: 0.000276658556921 s: 504.100421816 dkappa: 4.0947130361e-05 } path_point { x: 587600.786859 y: 4140982.85515 z: 0.0 theta: -8.10543797845 kappa: 0.000294115875019 s: 504.500038861 dkappa: 4.57747119276e-05 } path_point { x: 587600.687451 y: 4140982.4681 z: 0.0 theta: -8.10531673645 kappa: 0.000312749174644 s: 504.899655906 dkappa: 4.68930484206e-05 } path_point { x: 587600.588092 y: 4140982.08103 z: 0.0 theta: -8.10518805045 kappa: 0.00033114855969 s: 505.299272951 dkappa: 4.46643939031e-05 } path_point { x: 587600.488785 y: 4140981.69395 z: 0.0 theta: -8.10505227155 kappa: 0.000348048896949 s: 505.698889996 dkappa: 3.94510024379e-05 } path_point { x: 587600.38953 y: 4140981.30685 z: 0.0 theta: -8.10491022747 kappa: 0.000362329816111 s: 506.098507041 dkappa: 3.16151280881e-05 } path_point { x: 587600.295284 y: 4140980.93907 z: 0.0 theta: -8.10477028314 kappa: 0.000375068759272 s: 506.478169889 dkappa: 3.47244735952e-05 } path_point { x: 587600.201091 y: 4140980.57128 z: 0.0 theta: -8.10462538106 kappa: 0.000388195818448 s: 506.857832736 dkappa: 3.3873599804e-05 } path_point { x: 587600.106951 y: 4140980.20347 z: 0.0 theta: -8.10447562846 kappa: 0.000400451122827 s: 507.237495584 dkappa: 3.03461578656e-05 } path_point { x: 587600.012868 y: 4140979.83565 z: 0.0 theta: -8.10432151838 kappa: 0.000411062156251 s: 507.617158431 dkappa: 2.5425798931e-05 } path_point { x: 587599.918841 y: 4140979.46782 z: 0.0 theta: -8.10416374464 kappa: 0.000419743757213 s: 507.996821279 dkappa: 2.03961741512e-05 } path_point { x: 587599.835722 y: 4140979.14245 z: 0.0 theta: -8.10402158085 kappa: 0.000427023516076 s: 508.332641887 dkappa: 2.22440639817e-05 } path_point { x: 587599.752649 y: 4140978.81706 z: 0.0 theta: -8.1038769425 kappa: 0.000434278477487 s: 508.668462494 dkappa: 2.04711822936e-05 } path_point { x: 587599.669624 y: 4140978.49167 z: 0.0 theta: -8.10373001697 kappa: 0.000440517064304 s: 509.004283102 dkappa: 1.64136743037e-05 } path_point { x: 587599.586646 y: 4140978.16626 z: 0.0 theta: -8.1035812493 kappa: 0.000445196404484 s: 509.34010371 dkappa: 1.14076852285e-05 } path_point { x: 587599.503718 y: 4140977.84084 z: 0.0 theta: -8.10343119147 kappa: 0.00044822233108 s: 509.675924318 dkappa: 6.78936028478e-06 } path_point { x: 587599.420838 y: 4140977.51541 z: 0.0 theta: -8.10328035178 kappa: 0.000449949382246 s: 510.011744926 dkappa: 3.89484468918e-06 } path_point { x: 587599.334775 y: 4140977.17726 z: 0.0 theta: -8.10312312718 kappa: 0.000451130984308 s: 510.360675894 dkappa: 2.23044172834e-06 } path_point { x: 587599.248765 y: 4140976.83909 z: 0.0 theta: -8.10296566185 kappa: 0.000451152473881 s: 510.709606863 dkappa: -2.4728037143e-06 } path_point { x: 587599.162808 y: 4140976.50091 z: 0.0 theta: -8.10280851127 kappa: 0.000449248570465 s: 511.058537832 dkappa: -8.52363591928e-06 } path_point { x: 587599.076904 y: 4140976.16272 z: 0.0 theta: -8.10265239498 kappa: 0.000445244125052 s: 511.4074688 dkappa: -1.42307991671e-05 } path_point { x: 587598.991053 y: 4140975.82452 z: 0.0 theta: -8.10249799068 kappa: 0.000439554120132 s: 511.756399769 dkappa: -1.79030377384e-05 } path_point { x: 587598.905253 y: 4140975.4863 z: 0.0 theta: -8.10234572832 kappa: 0.000433183669694 s: 512.105330738 dkappa: -1.78490959137e-05 } path_point { x: 587598.807582 y: 4140975.10102 z: 0.0 theta: -8.10217509222 kappa: 0.00042505521258 s: 512.502795509 dkappa: -2.35949493311e-05 } path_point { x: 587598.709976 y: 4140974.71573 z: 0.0 theta: -8.10200820868 kappa: 0.000414175064853 s: 512.90026028 dkappa: -3.1244991007e-05 } path_point { x: 587598.612433 y: 4140974.33042 z: 0.0 theta: -8.10184625067 kappa: 0.00040032333332 s: 513.29772505 dkappa: -3.8097323334e-05 } path_point { x: 587598.514952 y: 4140973.94509 z: 0.0 theta: -8.10169026514 kappa: 0.000384354033902 s: 513.695189821 dkappa: -4.14500487044e-05 } path_point { x: 587598.417529 y: 4140973.55975 z: 0.0 theta: -8.10154074616 kappa: 0.000368195091632 s: 514.092654592 dkappa: -3.86012695107e-05 } path_point { x: 587598.335685 y: 4140973.23585 z: 0.0 theta: -8.10142003664 kappa: 0.000353985772203 s: 514.426739062 dkappa: -4.66183537607e-05 } path_point { x: 587598.25388 y: 4140972.91194 z: 0.0 theta: -8.10130453153 kappa: 0.000337031581017 s: 514.760823532 dkappa: -5.47663144413e-05 } path_point { x: 587598.172111 y: 4140972.58801 z: 0.0 theta: -8.10119512532 kappa: 0.000317556553425 s: 515.094908002 dkappa: -6.14422088455e-05 } path_point { x: 587598.090376 y: 4140972.26408 z: 0.0 theta: -8.10109254823 kappa: 0.00029632024304 s: 515.428992472 dkappa: -6.50430942663e-05 } path_point { x: 587598.008673 y: 4140971.94014 z: 0.0 theta: -8.10099718724 kappa: 0.000274617721741 s: 515.763076942 dkappa: -6.39660279965e-05 } path_point { x: 587597.927 y: 4140971.61619 z: 0.0 theta: -8.10090890724 kappa: 0.000254279579672 s: 516.097161412 dkappa: -5.66080673292e-05 } path_point { x: 587597.832871 y: 4140971.24269 z: 0.0 theta: -8.10081545111 kappa: 0.000230262840155 s: 516.48234066 dkappa: -6.77684412928e-05 } path_point { x: 587597.738774 y: 4140970.86918 z: 0.0 theta: -8.10073201557 kappa: 0.000202423894771 s: 516.867519907 dkappa: -7.62004009116e-05 } path_point { x: 587597.644706 y: 4140970.49567 z: 0.0 theta: -8.10065983277 kappa: 0.000172107226392 s: 517.252699155 dkappa: -8.03796985062e-05 } path_point { x: 587597.550663 y: 4140970.12215 z: 0.0 theta: -8.10059950394 kappa: 0.000141244426463 s: 517.637878402 dkappa: -7.87820863973e-05 } path_point { x: 587597.45664 y: 4140969.74862 z: 0.0 theta: -8.10055077318 kappa: 0.000112354195001 s: 518.023057649 dkappa: -6.98833169053e-05 } path_point { x: 587597.359416 y: 4140969.3623 z: 0.0 theta: -8.10051199457 kappa: 8.1358247192e-05 s: 518.421420754 dkappa: -8.46071017768e-05 } path_point { x: 587597.262205 y: 4140968.97598 z: 0.0 theta: -8.10048655459 kappa: 4.58284413147e-05 s: 518.81978386 dkappa: -9.26816121977e-05 } path_point { x: 587597.165001 y: 4140968.58966 z: 0.0 theta: -8.10047573747 kappa: 8.37075228153e-06 s: 519.218146965 dkappa: -9.43219820713e-05 } path_point { x: 587597.067797 y: 4140968.20334 z: 0.0 theta: -8.10047980635 kappa: -2.84945464051e-05 s: 519.61651007 dkappa: -8.97433453009e-05 } path_point { x: 587596.97059 y: 4140967.81702 z: 0.0 theta: -8.1004980375 kappa: -6.23328826526e-05 s: 520.014873175 dkappa: -7.91608357896e-05 } path_point { x: 587596.885716 y: 4140967.47974 z: 0.0 theta: -8.10052479134 kappa: -9.22612327258e-05 s: 520.362660864 dkappa: -9.19742567764e-05 } path_point { x: 587596.800831 y: 4140967.14247 z: 0.0 theta: -8.10056261235 kappa: -0.000125644249592 s: 520.710448553 dkappa: -9.9062965153e-05 } path_point { x: 587596.715932 y: 4140966.80521 z: 0.0 theta: -8.10061236009 kappa: -0.000160528094668 s: 521.058236243 dkappa: -0.00010064057393 } path_point { x: 587596.631014 y: 4140966.46795 z: 0.0 theta: -8.10067422755 kappa: -0.000195033221349 s: 521.406023932 dkappa: -9.692069612e-05 } path_point { x: 587596.546072 y: 4140966.13069 z: 0.0 theta: -8.10074776692 kappa: -0.000227354375001 s: 521.753811621 dkappa: -8.81169447326e-05 } path_point { x: 587596.461105 y: 4140965.79344 z: 0.0 theta: -8.10083191551 kappa: -0.000255760592971 s: 522.10159931 dkappa: -7.44429327796e-05 } path_point { x: 587596.364704 y: 4140965.41097 z: 0.0 theta: -8.10093885647 kappa: -0.000287052780385 s: 522.496035518 dkappa: -8.30670620646e-05 } path_point { x: 587596.268259 y: 4140965.0285 z: 0.0 theta: -8.10105863532 kappa: -0.000320421069529 s: 522.890471727 dkappa: -8.50829940806e-05 } path_point { x: 587596.171767 y: 4140964.64605 z: 0.0 theta: -8.1011915745 kappa: -0.000353392814054 s: 523.284907935 dkappa: -8.11694998067e-05 } path_point { x: 587596.075221 y: 4140964.26361 z: 0.0 theta: -8.10133707395 kappa: -0.000383763099464 s: 523.679344143 dkappa: -7.20053502218e-05 } path_point { x: 587595.978617 y: 4140963.88119 z: 0.0 theta: -8.10149371672 kappa: -0.000409594743112 s: 524.073780351 dkappa: -5.82693163049e-05 } path_point { x: 587595.88435 y: 4140963.50827 z: 0.0 theta: -8.10165580914 kappa: -0.000433635766526 s: 524.458436179 dkappa: -6.51555815233e-05 } path_point { x: 587595.79002 y: 4140963.13536 z: 0.0 theta: -8.10182744249 kappa: -0.000458684958395 s: 524.843092006 dkappa: -6.39717785853e-05 } path_point { x: 587595.695624 y: 4140962.76246 z: 0.0 theta: -8.10200847567 kappa: -0.000482169565283 s: 525.227747833 dkappa: -5.74811325244e-05 } path_point { x: 587595.601159 y: 4140962.38959 z: 0.0 theta: -8.10219798241 kappa: -0.000502579724364 s: 525.61240366 dkappa: -4.84468683738e-05 } path_point { x: 587595.506622 y: 4140962.01673 z: 0.0 theta: -8.10239466006 kappa: -0.000519468463425 s: 525.997059487 dkappa: -3.96322111671e-05 } path_point { x: 587595.421081 y: 4140961.67962 z: 0.0 theta: -8.10257785333 kappa: -0.00053423572321 s: 526.344853346 dkappa: -4.39054206712e-05 } path_point { x: 587595.335477 y: 4140961.34252 z: 0.0 theta: -8.10276628667 kappa: -0.00054919464791 s: 526.692647206 dkappa: -4.11582049585e-05 } path_point { x: 587595.249808 y: 4140961.00545 z: 0.0 theta: -8.10295965339 kappa: -0.000562345781064 s: 527.040441065 dkappa: -3.39334744772e-05 } path_point { x: 587595.164074 y: 4140960.66838 z: 0.0 theta: -8.10315710522 kappa: -0.000572574074848 s: 527.388234925 dkappa: -2.47741396753e-05 } path_point { x: 587595.078272 y: 4140960.33134 z: 0.0 theta: -8.10335755988 kappa: -0.00057964889008 s: 527.736028784 dkappa: -1.62231110009e-05 } path_point { x: 587594.992403 y: 4140959.99431 z: 0.0 theta: -8.10356000866 kappa: -0.000584223996215 s: 528.083822643 dkappa: -1.08232989021e-05 } path_point { x: 587594.89691 y: 4140959.61985 z: 0.0 theta: -8.1037865312 kappa: -0.000587863103759 s: 528.470267881 dkappa: -6.95796354801e-06 } path_point { x: 587594.801333 y: 4140959.24541 z: 0.0 theta: -8.1040140353 kappa: -0.000589006069079 s: 528.856713118 dkappa: 1.53160437778e-06 } path_point { x: 587594.70567 y: 4140958.871 z: 0.0 theta: -8.1042412952 kappa: -0.000586519252283 s: 529.243158355 dkappa: 1.12639541492e-05 } path_point { x: 587594.609922 y: 4140958.4966 z: 0.0 theta: -8.10446689956 kappa: -0.000580575759012 s: 529.629603593 dkappa: 1.88576350402e-05 } path_point { x: 587594.514091 y: 4140958.12223 z: 0.0 theta: -8.10468975642 kappa: -0.000572655440432 s: 530.01604883 dkappa: 2.09311963249e-05 } path_point { x: 587594.416079 y: 4140957.73969 z: 0.0 theta: -8.10491405564 kappa: -0.000562761306283 s: 530.41093991 dkappa: 2.98213067091e-05 } path_point { x: 587594.317983 y: 4140957.35718 z: 0.0 theta: -8.10513367617 kappa: -0.000548815551531 s: 530.80583099 dkappa: 4.08959652952e-05 } path_point { x: 587594.219803 y: 4140956.97469 z: 0.0 theta: -8.10534693434 kappa: -0.000530613513644 s: 531.20072207 dkappa: 5.08226274992e-05 } path_point { x: 587594.121544 y: 4140956.59222 z: 0.0 theta: -8.10555232551 kappa: -0.000509266522216 s: 531.59561315 dkappa: 5.62687487372e-05 } path_point { x: 587594.023208 y: 4140956.20976 z: 0.0 theta: -8.10574904372 kappa: -0.000487201898975 s: 531.99050423 dkappa: 5.39017844253e-05 } path_point { x: 587593.936976 y: 4140955.87464 z: 0.0 theta: -8.105914166 kappa: -0.000466436127527 s: 532.33654485 dkappa: 6.6246544197e-05 } path_point { x: 587593.850689 y: 4140955.53953 z: 0.0 theta: -8.10607135849 kappa: -0.000441386691228 s: 532.68258547 dkappa: 7.83070945546e-05 } path_point { x: 587593.764352 y: 4140955.20443 z: 0.0 theta: -8.10621919812 kappa: -0.000412518241259 s: 533.02862609 dkappa: 8.79663246279e-05 } path_point { x: 587593.677967 y: 4140954.86935 z: 0.0 theta: -8.1063565494 kappa: -0.000381028035159 s: 533.374666709 dkappa: 9.31071235471e-05 } path_point { x: 587593.591538 y: 4140954.53428 z: 0.0 theta: -8.10648281785 kappa: -0.000348845936821 s: 533.720707329 dkappa: 9.16123804419e-05 } path_point { x: 587593.505068 y: 4140954.19921 z: 0.0 theta: -8.10659820361 kappa: -0.000318634416501 s: 534.066747949 dkappa: 8.13649844425e-05 } path_point { x: 587593.421258 y: 4140953.8746 z: 0.0 theta: -8.10670019439 kappa: -0.000289051308126 s: 534.402002279 dkappa: 9.48103713109e-05 } path_point { x: 587593.337417 y: 4140953.55 z: 0.0 theta: -8.10679155244 kappa: -0.000255343991938 s: 534.73725661 dkappa: 0.000105743481203 } path_point { x: 587593.253548 y: 4140953.22541 z: 0.0 theta: -8.10687106158 kappa: -0.000218580976716 s: 535.072510941 dkappa: 0.00011281455053 } path_point { x: 587593.169655 y: 4140952.90082 z: 0.0 theta: -8.10693793969 kappa: -0.00018028328533 s: 535.407765271 dkappa: 0.000114673815701 } path_point { x: 587593.085743 y: 4140952.57624 z: 0.0 theta: -8.10699199044 kappa: -0.000142424454736 s: 535.743019602 dkappa: 0.000109971513128 } path_point { x: 587593.001815 y: 4140952.25166 z: 0.0 theta: -8.107033755 kappa: -0.000107430535982 s: 536.078273932 dkappa: 9.73578792214e-05 } path_point { x: 587592.91722 y: 4140951.92454 z: 0.0 theta: -8.10706417343 kappa: -7.1739704236e-05 s: 536.416148627 dkappa: 0.000113103074249 } path_point { x: 587592.832616 y: 4140951.59743 z: 0.0 theta: -8.10708172923 kappa: -3.15828169764e-05 s: 536.754023321 dkappa: 0.000123684098323 } path_point { x: 587592.748009 y: 4140951.27032 z: 0.0 theta: -8.10708522074 kappa: 1.11838397155e-05 s: 537.091898015 dkappa: 0.000128441278484 } path_point { x: 587592.663403 y: 4140950.94321 z: 0.0 theta: -8.10707411116 kappa: 5.44810929588e-05 s: 537.429772709 dkappa: 0.00012671494177 } path_point { x: 587592.578804 y: 4140950.6161 z: 0.0 theta: -8.10704860385 kappa: 9.60068830723e-05 s: 537.767647403 dkappa: 0.00011784541522 } path_point { x: 587592.494214 y: 4140950.28899 z: 0.0 theta: -8.10700971762 kappa: 0.000133236263575 s: 538.105522097 dkappa: 0.000101173025872 } path_point { x: 587592.397291 y: 4140949.9141 z: 0.0 theta: -8.10695013304 kappa: 0.00017544324295 s: 538.49273563 dkappa: 0.000115415465426 } path_point { x: 587592.300394 y: 4140949.53921 z: 0.0 theta: -8.10687334714 kappa: 0.000221548794993 s: 538.879949163 dkappa: 0.000121380853274 } path_point { x: 587592.203528 y: 4140949.1643 z: 0.0 theta: -8.10677846016 kappa: 0.000268430729982 s: 539.267162696 dkappa: 0.00011949684343 } path_point { x: 587592.106702 y: 4140948.78939 z: 0.0 theta: -8.10666574923 kappa: 0.000313132451617 s: 539.654376229 dkappa: 0.000110191089908 } path_point { x: 587592.009921 y: 4140948.41447 z: 0.0 theta: -8.10653660427 kappa: 0.000352862957019 s: 540.041589762 dkappa: 9.38912467238e-05 } path_point { x: 587591.91056 y: 4140948.02933 z: 0.0 theta: -8.10638834612 kappa: 0.000393615030683 s: 540.43933673 dkappa: 0.000108843883146 } path_point { x: 587591.81126 y: 4140947.64418 z: 0.0 theta: -8.1062230232 kappa: 0.00043789271552 s: 540.837083699 dkappa: 0.000112068782221 } path_point { x: 587591.712027 y: 4140947.25901 z: 0.0 theta: -8.10604008975 kappa: 0.000481567851433 s: 541.234830668 dkappa: 0.000106263698665 } path_point { x: 587591.612868 y: 4140946.87382 z: 0.0 theta: -8.10584042858 kappa: 0.000521585302083 s: 541.632577636 dkappa: 9.41263871946e-05 } path_point { x: 587591.513788 y: 4140946.48861 z: 0.0 theta: -8.10562592429 kappa: 0.000555962954893 s: 542.030324605 dkappa: 7.83546025264e-05 } path_point { x: 587591.429555 y: 4140946.16085 z: 0.0 theta: -8.10543306733 kappa: 0.000584329905761 s: 542.368739806 dkappa: 8.77405930588e-05 } path_point { x: 587591.345387 y: 4140945.83307 z: 0.0 theta: -8.10523024107 kappa: 0.000614412516656 s: 542.707155006 dkappa: 8.88296241859e-05 } path_point { x: 587591.261287 y: 4140945.50527 z: 0.0 theta: -8.10501730158 kappa: 0.000643743729907 s: 543.045570207 dkappa: 8.36355505449e-05 } path_point { x: 587591.177259 y: 4140945.17745 z: 0.0 theta: -8.10479482448 kappa: 0.000670538006861 s: 543.383985408 dkappa: 7.41722267724e-05 } path_point { x: 587591.093304 y: 4140944.84962 z: 0.0 theta: -8.10456387435 kappa: 0.000693691327891 s: 543.722400609 dkappa: 6.24535075057e-05 } path_point { x: 587591.009427 y: 4140944.52176 z: 0.0 theta: -8.10432577405 kappa: 0.000712781192386 s: 544.060815809 dkappa: 5.04932473814e-05 } path_point { x: 587590.912371 y: 4140944.14198 z: 0.0 theta: -8.1040423544 kappa: 0.00073346535877 s: 544.452802207 dkappa: 5.32793584465e-05 } path_point { x: 587590.815424 y: 4140943.76217 z: 0.0 theta: -8.10375085864 kappa: 0.000753423843268 s: 544.844788605 dkappa: 4.74408077455e-05 } path_point { x: 587590.718589 y: 4140943.38233 z: 0.0 theta: -8.10345213392 kappa: 0.000770040442646 s: 545.236775002 dkappa: 3.68784799433e-05 } path_point { x: 587590.621869 y: 4140943.00247 z: 0.0 theta: -8.10314775324 kappa: 0.000782228047399 s: 545.6287614 dkappa: 2.54932597043e-05 } path_point { x: 587590.525265 y: 4140942.62257 z: 0.0 theta: -8.10283941602 kappa: 0.00079042864175 s: 546.020747798 dkappa: 1.71860316935e-05 } path_point { x: 587590.427058 y: 4140942.23586 z: 0.0 theta: -8.10252269222 kappa: 0.000797025196982 s: 546.419732525 dkappa: 1.43326739039e-05 } path_point { x: 587590.328973 y: 4140941.84912 z: 0.0 theta: -8.102203779 kappa: 0.00080094149265 s: 546.818717252 dkappa: 4.53029017102e-06 } path_point { x: 587590.231012 y: 4140941.46235 z: 0.0 theta: -8.10188417473 kappa: 0.000800338188186 s: 547.217701979 dkappa: -7.54317276487e-06 } path_point { x: 587590.133174 y: 4140941.07555 z: 0.0 theta: -8.10156573932 kappa: 0.000795242372324 s: 547.616686707 dkappa: -1.72097681633e-05 } path_point { x: 587590.035459 y: 4140940.68871 z: 0.0 theta: -8.10124994954 kappa: 0.000787547563106 s: 548.015671434 dkappa: -1.97915492838e-05 } path_point { x: 587589.938512 y: 4140940.30441 z: 0.0 theta: -8.10093957281 kappa: 0.000778042966024 s: 548.412013377 dkappa: -2.90502588187e-05 } path_point { x: 587589.841683 y: 4140939.92008 z: 0.0 theta: -8.10063380087 kappa: 0.000764102466734 s: 548.80835532 dkappa: -4.14685455924e-05 } path_point { x: 587589.74497 y: 4140939.53572 z: 0.0 theta: -8.1003345289 kappa: 0.000745314697001 s: 549.204697262 dkappa: -5.28030800152e-05 } path_point { x: 587589.648371 y: 4140939.15133 z: 0.0 theta: -8.10004348187 kappa: 0.000722950098085 s: 549.601039205 dkappa: -5.88105324974e-05 } path_point { x: 587589.551882 y: 4140938.76691 z: 0.0 theta: -8.09976154793 kappa: 0.000699960920739 s: 549.997381148 dkappa: -5.52475734492e-05 } path_point { x: 587589.454947 y: 4140938.38026 z: 0.0 theta: -8.09948730523 kappa: 0.000675042723157 s: 550.39599667 dkappa: -6.9832875543e-05 } path_point { x: 587589.358116 y: 4140937.99358 z: 0.0 theta: -8.09922414305 kappa: 0.00064444388748 s: 550.794612192 dkappa: -8.32448438139e-05 } path_point { x: 587589.261384 y: 4140937.60688 z: 0.0 theta: -8.09897415238 kappa: 0.000609235511725 s: 551.193227714 dkappa: -9.24560550435e-05 } path_point { x: 587589.164746 y: 4140937.22016 z: 0.0 theta: -8.09873875675 kappa: 0.000571695471797 s: 551.591843237 dkappa: -9.44390860134e-05 } path_point { x: 587589.068197 y: 4140936.83341 z: 0.0 theta: -8.09851823115 kappa: 0.000535308421487 s: 551.990458759 dkappa: -8.61665135051e-05 } path_point { x: 587588.98429 y: 4140936.49702 z: 0.0 theta: -8.0983381717 kappa: 0.000502424899589 s: 552.337155808 dkappa: -0.000103103105974 } path_point { x: 587588.900441 y: 4140936.16062 z: 0.0 theta: -8.0981704717 kappa: 0.000464203017665 s: 552.683852858 dkappa: -0.000116702362546 } path_point { x: 587588.816647 y: 4140935.8242 z: 0.0 theta: -8.09801675015 kappa: 0.000422069914055 s: 553.030549908 dkappa: -0.000125406186147 } path_point { x: 587588.732901 y: 4140935.48777 z: 0.0 theta: -8.09787803764 kappa: 0.000377992914755 s: 553.377246958 dkappa: -0.000127656479705 } path_point { x: 587588.6492 y: 4140935.15133 z: 0.0 theta: -8.09775458904 kappa: 0.000334479533423 s: 553.723944007 dkappa: -0.000121895146145 } path_point { x: 587588.565538 y: 4140934.81488 z: 0.0 theta: -8.09764569624 kappa: 0.000294577471372 s: 554.070641057 dkappa: -0.000106564088395 } path_point { x: 587588.48473 y: 4140934.48976 z: 0.0 theta: -8.09755328992 kappa: 0.000256240101074 s: 554.405649045 dkappa: -0.000121744218591 } path_point { x: 587588.403949 y: 4140934.16464 z: 0.0 theta: -8.09747450898 kappa: 0.000213460729153 s: 554.740657032 dkappa: -0.000132860304699 } path_point { x: 587588.323191 y: 4140933.83951 z: 0.0 theta: -8.09741058851 kappa: 0.000167824525076 s: 555.075665019 dkappa: -0.000138576962213 } path_point { x: 587588.242452 y: 4140933.51438 z: 0.0 theta: -8.09736215759 kappa: 0.00012136402279 s: 555.410673007 dkappa: -0.000137558806625 } path_point { x: 587588.161726 y: 4140933.18924 z: 0.0 theta: -8.09732908946 kappa: 7.65591207154e-05 s: 555.745680994 dkappa: -0.000128470453428 } path_point { x: 587588.081008 y: 4140932.8641 z: 0.0 theta: -8.09731035165 kappa: 3.63370817485e-05 s: 556.080688982 dkappa: -0.000109976518113 } path_point { x: 587587.988955 y: 4140932.49328 z: 0.0 theta: -8.0973049414 kappa: -9.03989056332e-06 s: 556.462761218 dkappa: -0.00012605504659 } path_point { x: 587587.896901 y: 4140932.12247 z: 0.0 theta: -8.09731782598 kappa: -5.88712627265e-05 s: 556.844833455 dkappa: -0.000133371440805 } path_point { x: 587587.804838 y: 4140931.75165 z: 0.0 theta: -8.0973500791 kappa: -0.000109898518723 s: 557.226905692 dkappa: -0.000132392901513 } path_point { x: 587587.71276 y: 4140931.38084 z: 0.0 theta: -8.09740156361 kappa: -0.000159041646973 s: 557.608977929 dkappa: -0.000123586629471 } path_point { x: 587587.62066 y: 4140931.01003 z: 0.0 theta: -8.09747099965 kappa: -0.000203399140336 s: 557.991050166 dkappa: -0.000107419825436 } path_point { x: 587587.539493 y: 4140930.68335 z: 0.0 theta: -8.09754593286 kappa: -0.000242792472823 s: 558.327664269 dkappa: -0.00012481703286 } path_point { x: 587587.4583 y: 4140930.35668 z: 0.0 theta: -8.09763491439 kappa: -0.00028630566145 s: 558.664278372 dkappa: -0.000132198385233 } path_point { x: 587587.377076 y: 4140930.03001 z: 0.0 theta: -8.09773879764 kappa: -0.000330870529363 s: 559.000892475 dkappa: -0.000131365953287 } path_point { x: 587587.295815 y: 4140929.70335 z: 0.0 theta: -8.0978575053 kappa: -0.000374025502132 s: 559.337506578 dkappa: -0.000124121807752 } path_point { x: 587587.214513 y: 4140929.3767 z: 0.0 theta: -8.09799023356 kappa: -0.000413915607748 s: 559.674120681 dkappa: -0.000112268019358 } path_point { x: 587587.133165 y: 4140929.05007 z: 0.0 theta: -8.09813565629 kappa: -0.000449292476627 s: 560.010734784 dkappa: -9.76066588362e-05 } path_point { x: 587587.048974 y: 4140928.71223 z: 0.0 theta: -8.09829831394 kappa: -0.000485820473719 s: 560.358901026 dkappa: -0.000110480839173 } path_point { x: 587586.964725 y: 4140928.37441 z: 0.0 theta: -8.09847426814 kappa: -0.000525121992952 s: 560.707067267 dkappa: -0.000113860583132 } path_point { x: 587586.880415 y: 4140928.03661 z: 0.0 theta: -8.09866394809 kappa: -0.000564227462443 s: 561.055233509 dkappa: -0.000109676407261 } path_point { x: 587586.796039 y: 4140927.69882 z: 0.0 theta: -8.09886686607 kappa: -0.000600839451 s: 561.40339975 dkappa: -9.98588281099e-05 } path_point { x: 587586.711592 y: 4140927.36105 z: 0.0 theta: -8.09908185151 kappa: -0.00063333266812 s: 561.751565992 dkappa: -8.63383622278e-05 } path_point { x: 587586.62707 y: 4140927.0233 z: 0.0 theta: -8.09930728496 kappa: -0.000660753963995 s: 562.099732233 dkappa: -7.10455261639e-05 } path_point { x: 587586.530009 y: 4140926.63585 z: 0.0 theta: -8.09957709446 kappa: -0.000690588786712 s: 562.499158483 dkappa: -7.6471561331e-05 } path_point { x: 587586.43284 y: 4140926.24842 z: 0.0 theta: -8.09985897794 kappa: -0.000720577568247 s: 562.898584733 dkappa: -7.23897560569e-05 } path_point { x: 587586.33556 y: 4140925.86102 z: 0.0 theta: -8.10015232989 kappa: -0.000747609636757 s: 563.298010983 dkappa: -6.22400906084e-05 } path_point { x: 587586.238165 y: 4140925.47365 z: 0.0 theta: -8.10045557678 kappa: -0.000769948338815 s: 563.697437233 dkappa: -4.94625452527e-05 } path_point { x: 587586.140651 y: 4140925.08631 z: 0.0 theta: -8.10076672578 kappa: -0.000787231039415 s: 564.096863483 dkappa: -3.74971002567e-05 } path_point { x: 587586.043706 y: 4140924.70175 z: 0.0 theta: -8.10108197454 kappa: -0.000802574352746 s: 564.49346111 dkappa: -3.81619185932e-05 } path_point { x: 587585.94664 y: 4140924.31721 z: 0.0 theta: -8.10140311911 kappa: -0.000816425221207 s: 564.890058737 dkappa: -3.06899943752e-05 } path_point { x: 587585.849448 y: 4140923.93271 z: 0.0 theta: -8.10172904081 kappa: -0.00082641225511 s: 565.286656364 dkappa: -1.93961446547e-05 } path_point { x: 587585.752131 y: 4140923.54823 z: 0.0 theta: -8.10205801978 kappa: -0.000831875310972 s: 565.683253991 dkappa: -8.59518648348e-06 } path_point { x: 587585.654687 y: 4140923.16379 z: 0.0 theta: -8.10238841371 kappa: -0.000833865491513 s: 566.079851619 dkappa: -2.60193691335e-06 } path_point { x: 587585.556383 y: 4140922.7765 z: 0.0 theta: -8.10272171963 kappa: -0.000834073125325 s: 566.479426644 dkappa: 2.78351569669e-06 } path_point { x: 587585.45795 y: 4140922.38924 z: 0.0 theta: -8.10305451253 kappa: -0.000830954256529 s: 566.879001668 dkappa: 1.3325358721e-05 } path_point { x: 587585.359389 y: 4140922.00201 z: 0.0 theta: -8.103385167 kappa: -0.000823315087295 s: 567.278576693 dkappa: 2.4686148912e-05 } path_point { x: 587585.2607 y: 4140921.61481 z: 0.0 theta: -8.1037119269 kappa: -0.000811694953784 s: 567.678151718 dkappa: 3.25284430222e-05 } path_point { x: 587585.161885 y: 4140921.22765 z: 0.0 theta: -8.10403359781 kappa: -0.000798366326152 s: 568.077726743 dkappa: 3.25147978039e-05 } path_point { x: 587585.062927 y: 4140920.84044 z: 0.0 theta: -8.10434980841 kappa: -0.00078332463095 s: 568.477382346 dkappa: 4.33277102369e-05 } path_point { x: 587584.963848 y: 4140920.45326 z: 0.0 theta: -8.10465907832 kappa: -0.000763532031344 s: 568.877037948 dkappa: 5.56567069944e-05 } path_point { x: 587584.864651 y: 4140920.06611 z: 0.0 theta: -8.10495948887 kappa: -0.000739141661186 s: 569.27669355 dkappa: 6.57032903581e-05 } path_point { x: 587584.76534 y: 4140919.67899 z: 0.0 theta: -8.10524948592 kappa: -0.000711824745223 s: 569.676349153 dkappa: 6.96689626099e-05 } path_point { x: 587584.665918 y: 4140919.2919 z: 0.0 theta: -8.10552848663 kappa: -0.000684770599097 s: 570.076004755 dkappa: 6.37552260316e-05 } path_point { x: 587584.582724 y: 4140918.96833 z: 0.0 theta: -8.10575347053 kappa: -0.000661343523596 s: 570.410100964 dkappa: 7.64236269001e-05 } path_point { x: 587584.499459 y: 4140918.64477 z: 0.0 theta: -8.10596993524 kappa: -0.000633839258581 s: 570.744197173 dkappa: 8.78856613119e-05 } path_point { x: 587584.416125 y: 4140918.32124 z: 0.0 theta: -8.10617661679 kappa: -0.000602938322772 s: 571.078293381 dkappa: 9.64802732346e-05 } path_point { x: 587584.332726 y: 4140917.99772 z: 0.0 theta: -8.10637257131 kappa: -0.000569876187414 s: 571.41238959 dkappa: 0.000100546406636 } path_point { x: 587584.249265 y: 4140917.67421 z: 0.0 theta: -8.10655736038 kappa: -0.000536443276273 s: 571.746485799 dkappa: 9.84230054832e-05 } path_point { x: 587584.165746 y: 4140917.35072 z: 0.0 theta: -8.10673123648 kappa: -0.000504984965639 s: 572.080582008 dkappa: 8.84490137444e-05 } path_point { x: 587584.081459 y: 4140917.02449 z: 0.0 theta: -8.1068960637 kappa: -0.000472501889566 s: 572.417530323 dkappa: 0.000103855773914 } path_point { x: 587583.997121 y: 4140916.69827 z: 0.0 theta: -8.10704913378 kappa: -0.000435400884883 s: 572.754478639 dkappa: 0.000115665762245 } path_point { x: 587583.912734 y: 4140916.37206 z: 0.0 theta: -8.10718911685 kappa: -0.000395089536779 s: 573.091426954 dkappa: 0.000122717619747 } path_point { x: 587583.828304 y: 4140916.04586 z: 0.0 theta: -8.10731522329 kappa: -0.0003533667484 s: 573.42837527 dkappa: 0.000123849987433 } path_point { x: 587583.743835 y: 4140915.71967 z: 0.0 theta: -8.10742733552 kappa: -0.000312422740846 s: 573.765323585 dkappa: 0.000117901506314 } path_point { x: 587583.659332 y: 4140915.39349 z: 0.0 theta: -8.10752613988 kappa: -0.000274839053172 s: 574.102271901 dkappa: 0.000103710817402 } path_point { x: 587583.57566 y: 4140915.07064 z: 0.0 theta: -8.10761172011 kappa: -0.000237491045139 s: 574.435785713 dkappa: 0.000119415240865 } path_point { x: 587583.491963 y: 4140914.7478 z: 0.0 theta: -8.10768406675 kappa: -0.000195775212527 s: 574.769299525 dkappa: 0.000129817721296 } path_point { x: 587583.408245 y: 4140914.42496 z: 0.0 theta: -8.1077420275 kappa: -0.000151545734929 s: 575.102813337 dkappa: 0.000134403087457 } path_point { x: 587583.32451 y: 4140914.10213 z: 0.0 theta: -8.1077850971 kappa: -0.000106828608663 s: 575.436327149 dkappa: 0.000132656168107 } path_point { x: 587583.240764 y: 4140913.7793 z: 0.0 theta: -8.10781347462 kappa: -6.38216467694e-05 s: 575.769840961 dkappa: 0.000124061792008 } path_point { x: 587583.157011 y: 4140913.45648 z: 0.0 theta: -8.10782812082 kappa: -2.48944790138e-05 s: 576.103354773 dkappa: 0.000108104787921 } path_point { x: 587583.057005 y: 4140913.07102 z: 0.0 theta: -8.10782892494 kappa: 2.20316175043e-05 s: 576.501579435 dkappa: 0.000125830657555 } path_point { x: 587582.957002 y: 4140912.68555 z: 0.0 theta: -8.10780990775 kappa: 7.39845837198e-05 s: 576.899804098 dkappa: 0.000133471670687 } path_point { x: 587582.85701 y: 4140912.30008 z: 0.0 theta: -8.10776984796 kappa: 0.000127092317852 s: 577.29802876 dkappa: 0.000131750719739 } path_point { x: 587582.757038 y: 4140911.91461 z: 0.0 theta: -8.10770900892 kappa: 0.00017777059171 s: 577.696253423 dkappa: 0.000121390697136 } path_point { x: 587582.657093 y: 4140911.52913 z: 0.0 theta: -8.10762902402 kappa: 0.000222723050698 s: 578.094478085 dkappa: 0.0001031144953 } path_point { x: 587582.573186 y: 4140911.2054 z: 0.0 theta: -8.10754847199 kappa: 0.000259785420813 s: 578.428904819 dkappa: 0.000117065555542 } path_point { x: 587582.489307 y: 4140910.88167 z: 0.0 theta: -8.10745490369 kappa: 0.00030010793563 s: 578.763331554 dkappa: 0.000122810173104 } path_point { x: 587582.40546 y: 4140910.55792 z: 0.0 theta: -8.10734766552 kappa: 0.000341145556733 s: 579.097758288 dkappa: 0.000121540928537 } path_point { x: 587582.321651 y: 4140910.23417 z: 0.0 theta: -8.10722688832 kappa: 0.000380752076526 s: 579.432185022 dkappa: 0.000114450402392 } path_point { x: 587582.237882 y: 4140909.9104 z: 0.0 theta: -8.10709335398 kappa: 0.000417180118229 s: 579.766611757 dkappa: 0.000102731175218 } path_point { x: 587582.154159 y: 4140909.58663 z: 0.0 theta: -8.10694836208 kappa: 0.000449081135884 s: 580.101038491 dkappa: 8.75758275669e-05 } path_point { x: 587582.070746 y: 4140909.26385 z: 0.0 theta: -8.10679355535 kappa: 0.000480177894006 s: 580.434419111 dkappa: 9.75095947003e-05 } path_point { x: 587581.987385 y: 4140908.94106 z: 0.0 theta: -8.10662798478 kappa: 0.000513213182658 s: 580.767799731 dkappa: 9.94923461371e-05 } path_point { x: 587581.904079 y: 4140908.61825 z: 0.0 theta: -8.10645141406 kappa: 0.000545823313165 s: 581.101180351 dkappa: 9.52459928104e-05 } path_point { x: 587581.820832 y: 4140908.29543 z: 0.0 theta: -8.1062642992 kappa: 0.000576218648585 s: 581.434560971 dkappa: 8.64924456536e-05 } path_point { x: 587581.737646 y: 4140907.9726 z: 0.0 theta: -8.10606759713 kappa: 0.000603183603712 s: 581.767941591 dkappa: 7.49536155998e-05 } path_point { x: 587581.654526 y: 4140907.64975 z: 0.0 theta: -8.10586257438 kappa: 0.000626076645074 s: 582.101322211 dkappa: 6.23514135822e-05 } path_point { x: 587581.555183 y: 4140907.26352 z: 0.0 theta: -8.10560770919 kappa: 0.000652449841656 s: 582.500123901 dkappa: 6.80017699949e-05 } path_point { x: 587581.455941 y: 4140906.87726 z: 0.0 theta: -8.10534215638 kappa: 0.000679035610602 s: 582.898925591 dkappa: 6.40272221513e-05 } path_point { x: 587581.356803 y: 4140906.49098 z: 0.0 theta: -8.10506649958 kappa: 0.000702725035513 s: 583.29772728 dkappa: 5.40862885549e-05 } path_point { x: 587581.257773 y: 4140906.10467 z: 0.0 theta: -8.10478227134 kappa: 0.000721868223348 s: 583.69652897 dkappa: 4.18374877093e-05 } path_point { x: 587581.158855 y: 4140905.71833 z: 0.0 theta: -8.10449137124 kappa: 0.000736274304431 s: 584.09533066 dkappa: 3.0939338118e-05 } path_point { x: 587581.063636 y: 4140905.34599 z: 0.0 theta: -8.10420607797 kappa: 0.000748360905011 s: 584.479650949 dkappa: 3.0548876629e-05 } path_point { x: 587580.968524 y: 4140904.97362 z: 0.0 theta: -8.10391635427 kappa: 0.000758904977479 s: 584.863971239 dkappa: 2.3519943025e-05 } path_point { x: 587580.87352 y: 4140904.60123 z: 0.0 theta: -8.10362319345 kappa: 0.00076605611877 s: 585.248291529 dkappa: 1.34999974075e-05 } path_point { x: 587580.778626 y: 4140904.22881 z: 0.0 theta: -8.10332803057 kappa: 0.000769365718744 s: 585.632611818 dkappa: 4.13649987799e-06 } path_point { x: 587580.683842 y: 4140903.85636 z: 0.0 theta: -8.10303220374 kappa: 0.000769786960179 s: 586.016932108 dkappa: -9.2308946216e-07 } path_point { x: 587580.599926 y: 4140903.52623 z: 0.0 theta: -8.10277010224 kappa: 0.000768907553253 s: 586.357558976 dkappa: -5.13618828265e-06 } path_point { x: 587580.516097 y: 4140903.19608 z: 0.0 theta: -8.10250863599 kappa: 0.000765826129523 s: 586.698185845 dkappa: -1.34163461042e-05 } path_point { x: 587580.432354 y: 4140902.86591 z: 0.0 theta: -8.10224874043 kappa: 0.000759602823568 s: 587.038812714 dkappa: -2.31478905179e-05 } path_point { x: 587580.348696 y: 4140902.53572 z: 0.0 theta: -8.10199151939 kappa: 0.000750188738267 s: 587.379439583 dkappa: -3.17151491153e-05 } path_point { x: 587580.265122 y: 4140902.2055 z: 0.0 theta: -8.1017379416 kappa: 0.000738425944804 s: 587.720066452 dkappa: -3.65024494875e-05 } path_point { x: 587580.181632 y: 4140901.87527 z: 0.0 theta: -8.10148853723 kappa: 0.000726047482665 s: 588.060693321 dkappa: -3.48941192258e-05 } path_point { x: 587580.084043 y: 4140901.48883 z: 0.0 theta: -8.10120218201 kappa: 0.000710172967011 s: 588.459261123 dkappa: -4.53729661287e-05 } path_point { x: 587579.986564 y: 4140901.10237 z: 0.0 theta: -8.10092305648 kappa: 0.000689659291877 s: 588.857828926 dkappa: -5.750611595e-05 } path_point { x: 587579.889191 y: 4140900.71588 z: 0.0 theta: -8.10065303506 kappa: 0.000664644820709 s: 589.256396729 dkappa: -6.7290659685e-05 } path_point { x: 587579.79192 y: 4140900.32936 z: 0.0 theta: -8.1003936191 kappa: 0.000636863347596 s: 589.654964532 dkappa: -7.07236883291e-05 } path_point { x: 587579.694748 y: 4140899.94282 z: 0.0 theta: -8.10014530098 kappa: 0.000609644097276 s: 590.053532334 dkappa: -6.38022928778e-05 } path_point { x: 587579.599767 y: 4140899.56462 z: 0.0 theta: -8.09991278347 kappa: 0.000581992812657 s: 590.443479609 dkappa: -7.79387841425e-05 } path_point { x: 587579.504873 y: 4140899.18639 z: 0.0 theta: -8.09969209325 kappa: 0.000549106140689 s: 590.833426883 dkappa: -9.01821249552e-05 } path_point { x: 587579.41006 y: 4140898.80815 z: 0.0 theta: -8.09948505615 kappa: 0.000512274403482 s: 591.223374157 dkappa: -9.77006850515e-05 } path_point { x: 587579.315322 y: 4140898.42988 z: 0.0 theta: -8.09929277956 kappa: 0.00047389210965 s: 591.613321431 dkappa: -9.76628341669e-05 } path_point { x: 587579.220654 y: 4140898.0516 z: 0.0 theta: -8.09911522184 kappa: 0.00043745795431 s: 592.003268706 dkappa: -8.72369420372e-05 } path_point { x: 587579.124283 y: 4140897.66623 z: 0.0 theta: -8.0989488643 kappa: 0.00039886808269 s: 592.40050627 dkappa: -0.000106042322104 } path_point { x: 587579.027972 y: 4140897.28084 z: 0.0 theta: -8.09879915432 kappa: 0.000354072624271 s: 592.797743834 dkappa: -0.000118332779152 } path_point { x: 587578.931716 y: 4140896.89545 z: 0.0 theta: -8.09866801965 kappa: 0.000305835768241 s: 593.194981398 dkappa: -0.000123221100816 } path_point { x: 587578.835507 y: 4140896.51003 z: 0.0 theta: -8.09855621997 kappa: 0.000257274137868 s: 593.592218962 dkappa: -0.000119820074734 } path_point { x: 587578.739337 y: 4140896.12461 z: 0.0 theta: -8.09846320696 kappa: 0.000211856790496 s: 593.989456526 dkappa: -0.000107242488541 } path_point { x: 587578.654608 y: 4140895.78493 z: 0.0 theta: -8.09839604086 kappa: 0.000170718203552 s: 594.339545671 dkappa: -0.000126664114915 } path_point { x: 587578.5699 y: 4140895.44525 z: 0.0 theta: -8.09834432907 kappa: 0.000123968422383 s: 594.689634817 dkappa: -0.000139238095754 } path_point { x: 587578.485207 y: 4140895.10556 z: 0.0 theta: -8.09830960902 kappa: 7.40679543224e-05 s: 595.039723963 dkappa: -0.000144603260436 } path_point { x: 587578.400522 y: 4140894.76586 z: 0.0 theta: -8.09829253458 kappa: 2.3603748618e-05 s: 595.389813109 dkappa: -0.000142398438338 } path_point { x: 587578.31584 y: 4140894.42617 z: 0.0 theta: -8.09829283183 kappa: -2.47108035679e-05 s: 595.739902254 dkappa: -0.000132262458837 } path_point { x: 587578.231155 y: 4140894.08648 z: 0.0 theta: -8.09830925478 kappa: -6.80358691584e-05 s: 596.0899914 dkappa: -0.000113834151312 } path_point { x: 587578.150177 y: 4140893.76169 z: 0.0 theta: -8.09833868671 kappa: -0.000108578688541 s: 596.424726712 dkappa: -0.000127496671742 } path_point { x: 587578.069187 y: 4140893.4369 z: 0.0 theta: -8.09838235141 kappa: -0.000152758655059 s: 596.759462023 dkappa: -0.00013549062055 } path_point { x: 587577.98818 y: 4140893.11211 z: 0.0 theta: -8.0984411404 kappa: -0.000198602969746 s: 597.094197335 dkappa: -0.000137365923455 } path_point { x: 587577.907152 y: 4140892.78733 z: 0.0 theta: -8.0985152596 kappa: -0.000243988177883 s: 597.428932646 dkappa: -0.000132672506176 } path_point { x: 587577.826097 y: 4140892.46256 z: 0.0 theta: -8.09860417891 kappa: -0.000286640168994 s: 597.763667958 dkappa: -0.000120960294429 } path_point { x: 587577.745012 y: 4140892.13779 z: 0.0 theta: -8.09870658181 kappa: -0.000324134176851 s: 598.098403269 dkappa: -0.000101779213934 } path_point { x: 587577.653122 y: 4140891.76994 z: 0.0 theta: -8.09883715164 kappa: -0.000365375950989 s: 598.477560526 dkappa: -0.000114041406892 } path_point { x: 587577.561182 y: 4140891.4021 z: 0.0 theta: -8.09898400243 kappa: -0.000409414400079 s: 598.856717783 dkappa: -0.000116816527256 } path_point { x: 587577.469184 y: 4140891.03427 z: 0.0 theta: -8.09914755363 kappa: -0.000452976901403 s: 599.23587504 dkappa: -0.000111816106048 } path_point { x: 587577.377124 y: 4140890.66646 z: 0.0 theta: -8.0993271069 kappa: -0.000493439771651 s: 599.615032297 dkappa: -0.00010075167429 } path_point { x: 587577.284994 y: 4140890.29866 z: 0.0 theta: -8.09952109211 kappa: -0.000528828266921 s: 599.994189554 dkappa: -8.53347630035e-05 } path_point { x: 587577.187898 y: 4140889.91138 z: 0.0 theta: -8.09973949179 kappa: -0.000566034714966 s: 600.393460842 dkappa: -9.85039169951e-05 } path_point { x: 587577.090714 y: 4140889.52411 z: 0.0 theta: -8.09997342124 kappa: -0.000605749884068 s: 600.79273213 dkappa: -9.86146227354e-05 } path_point { x: 587576.993436 y: 4140889.13687 z: 0.0 theta: -8.10022295497 kappa: -0.000643614384532 s: 601.192003418 dkappa: -8.99470465372e-05 } path_point { x: 587576.896059 y: 4140888.74966 z: 0.0 theta: -8.10048676809 kappa: -0.000676977774181 s: 601.591274706 dkappa: -7.67813547134e-05 } path_point { x: 587576.798577 y: 4140888.36247 z: 0.0 theta: -8.10076281861 kappa: -0.000704898558353 s: 601.990545994 dkappa: -6.33977135766e-05 } path_point { x: 587576.712864 y: 4140888.02241 z: 0.0 theta: -8.10101411884 kappa: -0.000728632719446 s: 602.341246861 dkappa: -7.02829346217e-05 } path_point { x: 587576.627064 y: 4140887.68236 z: 0.0 theta: -8.1012739744 kappa: -0.000753181882987 s: 602.691947727 dkappa: -6.85005336362e-05 } path_point { x: 587576.541174 y: 4140887.34234 z: 0.0 theta: -8.10154219407 kappa: -0.000775984981982 s: 603.042648594 dkappa: -6.07803331478e-05 } path_point { x: 587576.455192 y: 4140887.00235 z: 0.0 theta: -8.10181785629 kappa: -0.000795438300562 s: 603.39334946 dkappa: -4.98521556841e-05 } path_point { x: 587576.369115 y: 4140886.66237 z: 0.0 theta: -8.10209964499 kappa: -0.000810895473986 s: 603.744050327 dkappa: -3.84458237729e-05 } path_point { x: 587576.282941 y: 4140886.32242 z: 0.0 theta: -8.10238618526 kappa: -0.000822667488637 s: 604.094751193 dkappa: -2.92911599417e-05 } path_point { x: 587576.184989 y: 4140885.93651 z: 0.0 theta: -8.10271607744 kappa: -0.000834348791082 s: 604.4929036 dkappa: -2.78714909701e-05 } path_point { x: 587576.086908 y: 4140885.55063 z: 0.0 theta: -8.10305029551 kappa: -0.000843932838324 s: 604.891056006 dkappa: -1.94530997719e-05 } path_point { x: 587575.988698 y: 4140885.16478 z: 0.0 theta: -8.10338756016 kappa: -0.000849465461504 s: 605.289208412 dkappa: -8.21724570025e-06 } path_point { x: 587575.890358 y: 4140884.77896 z: 0.0 theta: -8.10372614548 kappa: -0.000850657270236 s: 605.687360818 dkappa: 1.65481189208e-06 } path_point { x: 587575.791886 y: 4140884.39318 z: 0.0 theta: -8.10406454171 kappa: -0.000848883652605 s: 606.085513224 dkappa: 5.98181365214e-06 } path_point { x: 587575.697545 y: 4140884.02408 z: 0.0 theta: -8.1043873794 kappa: -0.000845566793426 s: 606.466474242 dkappa: 1.23623569182e-05 } path_point { x: 587575.603085 y: 4140883.65502 z: 0.0 theta: -8.10470837729 kappa: -0.000838985458883 s: 606.847435261 dkappa: 2.25152669506e-05 } path_point { x: 587575.508506 y: 4140883.28598 z: 0.0 theta: -8.10502610577 kappa: -0.000828393572862 s: 607.228396279 dkappa: 3.28126210146e-05 } path_point { x: 587575.413812 y: 4140882.91698 z: 0.0 theta: -8.10533911424 kappa: -0.000814427156386 s: 607.609357297 dkappa: 3.96264963758e-05 } path_point { x: 587575.319003 y: 4140882.548 z: 0.0 theta: -8.10564645767 kappa: -0.000799104327619 s: 607.990318316 dkappa: 3.93289702995e-05 } path_point { x: 587575.23511 y: 4140882.2219 z: 0.0 theta: -8.10591309772 kappa: -0.000784026272345 s: 608.327036715 dkappa: 5.04586597341e-05 } path_point { x: 587575.151132 y: 4140881.89582 z: 0.0 theta: -8.1061740128 kappa: -0.000765075913179 s: 608.663755115 dkappa: 6.20132988475e-05 } path_point { x: 587575.06707 y: 4140881.56977 z: 0.0 theta: -8.10642791074 kappa: -0.000742429292678 s: 609.000473515 dkappa: 7.20973515821e-05 } path_point { x: 587574.982927 y: 4140881.24373 z: 0.0 theta: -8.10667366615 kappa: -0.000716900715268 s: 609.337191915 dkappa: 7.88152818807e-05 } path_point { x: 587574.898704 y: 4140880.91772 z: 0.0 theta: -8.10691053524 kappa: -0.000689942747244 s: 609.673910314 dkappa: 8.02715536857e-05 } path_point { x: 587574.814406 y: 4140880.59172 z: 0.0 theta: -8.10713837083 kappa: -0.000663646216767 s: 610.010628714 dkappa: 7.45706309399e-05 } path_point { x: 587574.72712 y: 4140880.25449 z: 0.0 theta: -8.10736471481 kappa: -0.000634986991422 s: 610.358977998 dkappa: 8.98638679828e-05 } path_point { x: 587574.639759 y: 4140879.91727 z: 0.0 theta: -8.10758017114 kappa: -0.000601234404719 s: 610.707327281 dkappa: 0.000103467283585 } path_point { x: 587574.552327 y: 4140879.58007 z: 0.0 theta: -8.10778311009 kappa: -0.000563338888147 s: 611.055676565 dkappa: 0.000113303747587 } path_point { x: 587574.464829 y: 4140879.24289 z: 0.0 theta: -8.10797235905 kappa: -0.000522974440001 s: 611.404025849 dkappa: 0.000117296129827 } path_point { x: 587574.37727 y: 4140878.90572 z: 0.0 theta: -8.10814745455 kappa: -0.000482538625377 s: 611.752375132 dkappa: 0.000113367300145 } path_point { x: 587574.289654 y: 4140878.56857 z: 0.0 theta: -8.10830889435 kappa: -0.000445152576176 s: 612.100724416 dkappa: 9.9440128381e-05 } path_point { x: 587574.189291 y: 4140878.18263 z: 0.0 theta: -8.10847803006 kappa: -0.000401994202839 s: 612.499501127 dkappa: 0.00011634368476 } path_point { x: 587574.088866 y: 4140877.79671 z: 0.0 theta: -8.10862873287 kappa: -0.000353048381198 s: 612.898277839 dkappa: 0.000128085637887 } path_point { x: 587573.988387 y: 4140877.4108 z: 0.0 theta: -8.10875916578 kappa: -0.000300828642008 s: 613.297054551 dkappa: 0.000132382987915 } path_point { x: 587573.887861 y: 4140877.0249 z: 0.0 theta: -8.10886867569 kappa: -0.000248758923198 s: 613.695831262 dkappa: 0.000126952734999 } path_point { x: 587573.787298 y: 4140876.63901 z: 0.0 theta: -8.10895815637 kappa: -0.000201173569867 s: 614.094607974 dkappa: 0.000109511879293 } path_point { x: 587573.686704 y: 4140876.25313 z: 0.0 theta: -8.10902909563 kappa: -0.00015332978619 s: 614.493381529 dkappa: 0.000128830816697 } path_point { x: 587573.586086 y: 4140875.86726 z: 0.0 theta: -8.10907967571 kappa: -9.97040992398e-05 s: 614.892155084 dkappa: 0.000138526435358 } path_point { x: 587573.485453 y: 4140875.48139 z: 0.0 theta: -8.1091083535 kappa: -4.41147406506e-05 s: 615.29092864 dkappa: 0.000138695498933 } path_point { x: 587573.384813 y: 4140875.09553 z: 0.0 theta: -8.10911510085 kappa: 9.65864472728e-06 s: 615.689702195 dkappa: 0.000129434771073 } path_point { x: 587573.284175 y: 4140874.70966 z: 0.0 theta: -8.10910138911 kappa: 5.78749988307e-05 s: 616.088475751 dkappa: 0.000110841015435 } path_point { x: 587573.199449 y: 4140874.38478 z: 0.0 theta: -8.10907537885 kappa: 9.79381556743e-05 s: 616.424225644 dkappa: 0.000126482774324 } path_point { x: 587573.114733 y: 4140874.05989 z: 0.0 theta: -8.10903518294 kappa: 0.000141944503256 s: 616.759975538 dkappa: 0.000134407614141 } path_point { x: 587573.030033 y: 4140873.735 z: 0.0 theta: -8.10897990363 kappa: 0.000187381391406 s: 617.095725431 dkappa: 0.000135081980814 } path_point { x: 587572.945353 y: 4140873.41011 z: 0.0 theta: -8.10890946054 kappa: 0.000231892779122 s: 617.431475324 dkappa: 0.000128972320271 } path_point { x: 587572.860699 y: 4140873.0852 z: 0.0 theta: -8.108824538 kappa: 0.000273279234575 s: 617.767225218 dkappa: 0.000116545078438 } path_point { x: 587572.776074 y: 4140872.76029 z: 0.0 theta: -8.10872653253 kappa: 0.000309497935105 s: 618.102975111 dkappa: 9.82667012439e-05 } path_point { x: 587572.679654 y: 4140872.38993 z: 0.0 theta: -8.10860054297 kappa: 0.000349631303876 s: 618.485687805 dkappa: 0.000109688438249 } path_point { x: 587572.583283 y: 4140872.01955 z: 0.0 theta: -8.10845860514 kappa: 0.000392226156112 s: 618.868400499 dkappa: 0.000111467738554 } path_point { x: 587572.486968 y: 4140871.64915 z: 0.0 theta: -8.10830043371 kappa: 0.000433979921744 s: 619.251113192 dkappa: 0.000105630732263 } path_point { x: 587572.390714 y: 4140871.27874 z: 0.0 theta: -8.10812685888 kappa: 0.000472365456416 s: 619.633825886 dkappa: 9.42035494761e-05 } path_point { x: 587572.294528 y: 4140870.90831 z: 0.0 theta: -8.10793952965 kappa: 0.000505631041476 s: 620.016538579 dkappa: 7.92123202966e-05 } path_point { x: 587572.210561 y: 4140870.5847 z: 0.0 theta: -8.10776581878 kappa: 0.000534122310397 s: 620.35086192 dkappa: 8.95616859024e-05 } path_point { x: 587572.126653 y: 4140870.26108 z: 0.0 theta: -8.10758218001 kappa: 0.00056452811148 s: 620.685185261 dkappa: 9.10448974995e-05 } path_point { x: 587572.042805 y: 4140869.93744 z: 0.0 theta: -8.10738842633 kappa: 0.000594264809749 s: 621.019508602 dkappa: 8.59383576465e-05 } path_point { x: 587571.959022 y: 4140869.61379 z: 0.0 theta: -8.10718510732 kappa: 0.000621509824741 s: 621.353831943 dkappa: 7.65184689018e-05 } path_point { x: 587571.875306 y: 4140869.29012 z: 0.0 theta: -8.10697325465 kappa: 0.000645201630496 s: 621.688155283 dkappa: 6.50616338239e-05 } path_point { x: 587571.791659 y: 4140868.96643 z: 0.0 theta: -8.10675412767 kappa: 0.000665039755567 s: 622.022478624 dkappa: 5.38442549714e-05 } path_point { x: 587571.691969 y: 4140868.58026 z: 0.0 theta: -8.10648443519 kappa: 0.000687642669994 s: 622.421304889 dkappa: 5.76924014191e-05 } path_point { x: 587571.592384 y: 4140868.19407 z: 0.0 theta: -8.10620568452 kappa: 0.000709869753468 s: 622.820131153 dkappa: 5.26006250738e-05 } path_point { x: 587571.492909 y: 4140867.80785 z: 0.0 theta: -8.10591863458 kappa: 0.00072892253889 s: 623.218957418 dkappa: 4.24152569349e-05 } path_point { x: 587571.393546 y: 4140867.4216 z: 0.0 theta: -8.10562485451 kappa: 0.000743536576984 s: 623.617783683 dkappa: 3.09826280019e-05 } path_point { x: 587571.294298 y: 4140867.03532 z: 0.0 theta: -8.10532611181 kappa: 0.000753981436297 s: 624.016609947 dkappa: 2.21490692739e-05 } path_point { x: 587571.194992 y: 4140866.64833 z: 0.0 theta: -8.10502309493 kappa: 0.000762789795747 s: 624.416135598 dkappa: 2.05344531693e-05 } path_point { x: 587571.095803 y: 4140866.26131 z: 0.0 theta: -8.10471688611 kappa: 0.000769530690182 s: 624.815661248 dkappa: 1.24709822942e-05 } path_point { x: 587570.996734 y: 4140865.87426 z: 0.0 theta: -8.10440871885 kappa: 0.000772432494811 s: 625.215186898 dkappa: 1.98772514752e-06 } path_point { x: 587570.897784 y: 4140865.48718 z: 0.0 theta: -8.1041002129 kappa: 0.000771333301056 s: 625.614712549 dkappa: -6.88624977196e-06 } path_point { x: 587570.798954 y: 4140865.10008 z: 0.0 theta: -8.10379273114 kappa: 0.000767680916553 s: 626.014238199 dkappa: -1.01218739653e-05 } path_point { x: 587570.716512 y: 4140864.77678 z: 0.0 theta: -8.10353724758 kappa: 0.000763497319015 s: 626.347880455 dkappa: -1.5550321327e-05 } path_point { x: 587570.634152 y: 4140864.45346 z: 0.0 theta: -8.10328351848 kappa: 0.000757023445445 s: 626.68152271 dkappa: -2.3505270176e-05 } path_point { x: 587570.551874 y: 4140864.13012 z: 0.0 theta: -8.10303241012 kappa: 0.000747762204897 s: 627.015164965 dkappa: -3.19135016384e-05 } path_point { x: 587570.469677 y: 4140863.80677 z: 0.0 theta: -8.10278483926 kappa: 0.000735908219851 s: 627.348807221 dkappa: -3.870179684e-05 } path_point { x: 587570.387559 y: 4140863.48339 z: 0.0 theta: -8.10254154231 kappa: 0.000722347826202 s: 627.682449476 dkappa: -4.17969369071e-05 } path_point { x: 587570.305519 y: 4140863.15999 z: 0.0 theta: -8.10230284458 kappa: 0.000708659073271 s: 628.016091731 dkappa: -3.91257029655e-05 } path_point { x: 587570.207485 y: 4140862.77313 z: 0.0 theta: -8.10202341459 kappa: 0.000690965263546 s: 628.415183051 dkappa: -4.9705204962e-05 } path_point { x: 587570.109559 y: 4140862.38623 z: 0.0 theta: -8.10175189588 kappa: 0.000669040033649 s: 628.814274371 dkappa: -5.98728305405e-05 } path_point { x: 587570.011736 y: 4140861.99932 z: 0.0 theta: -8.10148987139 kappa: 0.000643596285324 s: 629.213365691 dkappa: -6.68797078828e-05 } path_point { x: 587569.914012 y: 4140861.61238 z: 0.0 theta: -8.10123842065 kappa: 0.000616443971199 s: 629.612457011 dkappa: -6.79769651706e-05 } path_point { x: 587569.816383 y: 4140861.22541 z: 0.0 theta: -8.10099768195 kappa: 0.000590490094783 s: 630.011548331 dkappa: -6.04157305856e-05 } path_point { x: 587569.719608 y: 4140860.84145 z: 0.0 theta: -8.10076894558 kappa: 0.000564009164339 s: 630.407517935 dkappa: -7.28706600839e-05 } path_point { x: 587569.622919 y: 4140860.45747 z: 0.0 theta: -8.10055158846 kappa: 0.000533248475061 s: 630.803487539 dkappa: -8.1783551946e-05 } path_point { x: 587569.526311 y: 4140860.07346 z: 0.0 theta: -8.10034698856 kappa: 0.000499906095924 s: 631.199457143 dkappa: -8.56617171614e-05 } path_point { x: 587569.429778 y: 4140859.68944 z: 0.0 theta: -8.10015573444 kappa: 0.000466271155384 s: 631.595426747 dkappa: -8.30124667196e-05 } path_point { x: 587569.333317 y: 4140859.3054 z: 0.0 theta: -8.09997739121 kappa: 0.000435223841368 s: 631.99139635 dkappa: -7.234311161e-05 } path_point { x: 587569.252134 y: 4140858.98197 z: 0.0 theta: -8.09983652634 kappa: 0.000408961084539 s: 632.324862624 dkappa: -8.43541409848e-05 } path_point { x: 587569.170994 y: 4140858.65852 z: 0.0 theta: -8.09970499725 kappa: 0.000379497696124 s: 632.658328898 dkappa: -9.1575688098e-05 } path_point { x: 587569.089896 y: 4140858.33507 z: 0.0 theta: -8.099583609 kappa: 0.00034839434958 s: 632.991795172 dkappa: -9.42264098253e-05 } path_point { x: 587569.008835 y: 4140858.0116 z: 0.0 theta: -8.09947265837 kappa: 0.000317138803672 s: 633.325261446 dkappa: -9.25249630427e-05 } path_point { x: 587568.927808 y: 4140857.68813 z: 0.0 theta: -8.09937195819 kappa: 0.000287145902468 s: 633.65872772 dkappa: -8.66900046258e-05 } path_point { x: 587568.846813 y: 4140857.36465 z: 0.0 theta: -8.09928086164 kappa: 0.000259757575346 s: 633.992193994 dkappa: -7.69401914505e-05 } path_point { x: 587568.761683 y: 4140857.02453 z: 0.0 theta: -8.09919480848 kappa: 0.000230389783121 s: 634.342802957 dkappa: -8.94588768793e-05 } path_point { x: 587568.676582 y: 4140856.68441 z: 0.0 theta: -8.09911968652 kappa: 0.000197776897242 s: 634.693411921 dkappa: -9.55645199287e-05 } path_point { x: 587568.591503 y: 4140856.34428 z: 0.0 theta: -8.09905625323 kappa: 0.000164048380279 s: 635.044020884 dkappa: -9.59359827006e-05 } path_point { x: 587568.506445 y: 4140856.00414 z: 0.0 theta: -8.09900456125 kappa: 0.000131095679666 s: 635.394629847 dkappa: -9.12521272967e-05 } path_point { x: 587568.421402 y: 4140855.66401 z: 0.0 theta: -8.09896404176 kappa: 0.000100572227698 s: 635.74523881 dkappa: -8.21918158187e-05 } path_point { x: 587568.336371 y: 4140855.32386 z: 0.0 theta: -8.09893358795 kappa: 7.38934415338e-05 s: 636.095847774 dkappa: -6.94339103685e-05 } path_point { x: 587568.255148 y: 4140854.99892 z: 0.0 theta: -8.09891288913 kappa: 4.93138552712e-05 s: 636.430787632 dkappa: -7.64324824171e-05 } path_point { x: 587568.173931 y: 4140854.67398 z: 0.0 theta: -8.09890071791 kappa: 2.32536447519e-05 s: 636.76572749 dkappa: -7.84083063585e-05 } path_point { x: 587568.092716 y: 4140854.34903 z: 0.0 theta: -8.09889730342 kappa: -2.73877470379e-06 s: 637.100667348 dkappa: -7.61609479346e-05 } path_point { x: 587568.011501 y: 4140854.02409 z: 0.0 theta: -8.09890240102 kappa: -2.7382794212e-05 s: 637.435607206 dkappa: -7.04899728876e-05 } path_point { x: 587567.930283 y: 4140853.69915 z: 0.0 theta: -8.09891538198 kappa: -4.96656113248e-05 s: 637.770547064 dkappa: -6.21949469593e-05 } path_point { x: 587567.84906 y: 4140853.3742 z: 0.0 theta: -8.09893532321 kappa: -6.88422300307e-05 s: 638.105486922 dkappa: -5.2075435892e-05 } path_point { x: 587567.752301 y: 4140852.98715 z: 0.0 theta: -8.09896713361 kappa: -9.09806386974e-05 s: 638.504451481 dkappa: -5.75016977527e-05 } path_point { x: 587567.655527 y: 4140852.6001 z: 0.0 theta: -8.0990080013 kappa: -0.000113768032371 s: 638.90341604 dkappa: -5.57357670647e-05 } path_point { x: 587567.558736 y: 4140852.21305 z: 0.0 theta: -8.0990576776 kappa: -0.000134822098318 s: 639.3023806 dkappa: -4.92195509313e-05 } path_point { x: 587567.461925 y: 4140851.82601 z: 0.0 theta: -8.09911515769 kappa: -0.000152734758196 s: 639.701345159 dkappa: -4.03949564557e-05 } path_point { x: 587567.365089 y: 4140851.43898 z: 0.0 theta: -8.09917906933 kappa: -0.000167072168051 s: 640.100309718 dkappa: -3.17038907411e-05 } path_point { x: 587567.283961 y: 4140851.11481 z: 0.0 theta: -8.09923673264 kappa: -0.000178153569389 s: 640.434480203 dkappa: -3.37523270632e-05 } path_point { x: 587567.202813 y: 4140850.79064 z: 0.0 theta: -8.09929812418 kappa: -0.000189140725055 s: 640.768650688 dkappa: -3.14062459392e-05 } path_point { x: 587567.121645 y: 4140850.46648 z: 0.0 theta: -8.09936299682 kappa: -0.000198832198728 s: 641.102821173 dkappa: -2.62641230939e-05 } path_point { x: 587567.040455 y: 4140850.14232 z: 0.0 theta: -8.09943079124 kappa: -0.000206560717493 s: 641.436991658 dkappa: -1.9924434252e-05 } path_point { x: 587566.959243 y: 4140849.81817 z: 0.0 theta: -8.09950081435 kappa: -0.000212193171844 s: 641.771162143 dkappa: -1.39856551382e-05 } path_point { x: 587566.878008 y: 4140849.49402 z: 0.0 theta: -8.09957241784 kappa: -0.000216130615684 s: 642.105332628 dkappa: -1.00462614773e-05 } path_point { x: 587566.781328 y: 4140849.10837 z: 0.0 theta: -8.09965912422 kappa: -0.000219912547287 s: 642.502913941 dkappa: -8.18467876201e-06 } path_point { x: 587566.684614 y: 4140848.72273 z: 0.0 theta: -8.09974707796 kappa: -0.000222172047355 s: 642.900495254 dkappa: -2.80140899222e-06 } path_point { x: 587566.587866 y: 4140848.3371 z: 0.0 theta: -8.09983546082 kappa: -0.000222002294245 s: 643.298076567 dkappa: 3.62186519212e-06 } path_point { x: 587566.491083 y: 4140847.95148 z: 0.0 theta: -8.09992329017 kappa: -0.000219483136958 s: 643.69565788 dkappa: 8.60346115103e-06 } path_point { x: 587566.394268 y: 4140847.56587 z: 0.0 theta: -8.10000981124 kappa: -0.000215681095137 s: 644.093239193 dkappa: 9.66169624453e-06 } path_point { x: 587566.297834 y: 4140847.18191 z: 0.0 theta: -8.10009433206 kappa: -0.000211015237606 s: 644.489117839 dkappa: 1.42866395768e-05 } path_point { x: 587566.201368 y: 4140846.79797 z: 0.0 theta: -8.10017659767 kappa: -0.000204205676416 s: 644.884996484 dkappa: 2.01533853136e-05 } path_point { x: 587566.104871 y: 4140846.41403 z: 0.0 theta: -8.10025571514 kappa: -0.000195162723511 s: 645.280875129 dkappa: 2.52314374773e-05 } path_point { x: 587566.008344 y: 4140846.0301 z: 0.0 theta: -8.10033091516 kappa: -0.000184600520833 s: 645.676753774 dkappa: 2.74903000899e-05 } path_point { x: 587565.911789 y: 4140845.64618 z: 0.0 theta: -8.10040187025 kappa: -0.000174037040319 s: 646.072632419 dkappa: 2.48994771739e-05 } path_point { x: 587565.818109 y: 4140845.27379 z: 0.0 theta: -8.10046671531 kappa: -0.000163329606714 s: 646.45662071 dkappa: 3.0794438828e-05 } path_point { x: 587565.724406 y: 4140844.90141 z: 0.0 theta: -8.10052703158 kappa: -0.000150510184612 s: 646.840609001 dkappa: 3.57319323188e-05 } path_point { x: 587565.630681 y: 4140844.52904 z: 0.0 theta: -8.10058210343 kappa: -0.000136139753731 s: 647.224597293 dkappa: 3.87050355274e-05 } path_point { x: 587565.536937 y: 4140844.15667 z: 0.0 theta: -8.10063150485 kappa: -0.000121165940089 s: 647.608585584 dkappa: 3.87068263348e-05 } path_point { x: 587565.443175 y: 4140843.7843 z: 0.0 theta: -8.10067524794 kappa: -0.000106923016011 s: 647.992573875 dkappa: 3.47303826219e-05 } path_point { x: 587565.361581 y: 4140843.46031 z: 0.0 theta: -8.10070890215 kappa: -9.41694024412e-05 s: 648.326683269 dkappa: 4.12624540643e-05 } path_point { x: 587565.279976 y: 4140843.13632 z: 0.0 theta: -8.10073797046 kappa: -7.95922498259e-05 s: 648.660792663 dkappa: 4.56253480377e-05 } path_point { x: 587565.198362 y: 4140842.81233 z: 0.0 theta: -8.10076196699 kappa: -6.39372041322e-05 s: 648.994902057 dkappa: 4.76939354778e-05 } path_point { x: 587565.116742 y: 4140842.48835 z: 0.0 theta: -8.100780662 kappa: -4.79917181234e-05 s: 649.329011451 dkappa: 4.73430873205e-05 } path_point { x: 587565.035116 y: 4140842.16436 z: 0.0 theta: -8.10079409581 kappa: -3.25850513587e-05 s: 649.663120845 dkappa: 4.44476745019e-05 } path_point { x: 587564.953487 y: 4140841.84038 z: 0.0 theta: -8.1008025928 kappa: -1.85882701928e-05 s: 649.997230239 dkappa: 3.88825679576e-05 } path_point { x: 587564.871308 y: 4140841.51422 z: 0.0 theta: -8.10080652307 kappa: -4.45780446592e-06 s: 650.333582673 dkappa: 4.4662772743e-05 } path_point { x: 587564.789128 y: 4140841.18806 z: 0.0 theta: -8.10080542661 kappa: 1.11461344185e-05 s: 650.669935107 dkappa: 4.7673917563e-05 } path_point { x: 587564.706949 y: 4140840.8619 z: 0.0 theta: -8.10079896108 kappa: 2.73223029667e-05 s: 651.006287541 dkappa: 4.80951987728e-05 } path_point { x: 587564.624774 y: 4140840.53574 z: 0.0 theta: -8.10078707712 kappa: 4.32297308151e-05 s: 651.342639975 dkappa: 4.61058127272e-05 } path_point { x: 587564.542603 y: 4140840.20958 z: 0.0 theta: -8.10076999812 kappa: 5.808772073e-05 s: 651.678992408 dkappa: 4.18849557815e-05 } path_point { x: 587564.460439 y: 4140839.88342 z: 0.0 theta: -8.10074819989 kappa: 7.11758486083e-05 s: 652.015344842 dkappa: 3.56118242906e-05 } path_point { x: 587564.363458 y: 4140839.4984 z: 0.0 theta: -8.10071697555 kappa: 8.64249483741e-05 s: 652.412390644 dkappa: 4.0425955414e-05 } path_point { x: 587564.266491 y: 4140839.11337 z: 0.0 theta: -8.10067943301 kappa: 0.000102726167669 s: 652.809436445 dkappa: 4.10723607666e-05 } path_point { x: 587564.16954 y: 4140838.72835 z: 0.0 theta: -8.10063545767 kappa: 0.000118616260544 s: 653.206482247 dkappa: 3.85158261199e-05 } path_point { x: 587564.072606 y: 4140838.34332 z: 0.0 theta: -8.10058543989 kappa: 0.00013301504519 s: 653.603528048 dkappa: 3.37211372452e-05 } path_point { x: 587563.975693 y: 4140837.95828 z: 0.0 theta: -8.10053012286 kappa: 0.000145225403938 s: 654.00057385 dkappa: 2.7653079914e-05 } path_point { x: 587563.878636 y: 4140837.57258 z: 0.0 theta: -8.1004700661 kappa: 0.000156970479058 s: 654.398298711 dkappa: 3.06098352962e-05 } path_point { x: 587563.781604 y: 4140837.18687 z: 0.0 theta: -8.1004052206 kappa: 0.000169038213358 s: 654.796023572 dkappa: 2.95252876865e-05 } path_point { x: 587563.684597 y: 4140836.80116 z: 0.0 theta: -8.10033573816 kappa: 0.000180119195819 s: 655.193748433 dkappa: 2.5897536309e-05 } path_point { x: 587563.587618 y: 4140836.41544 z: 0.0 theta: -8.10026217289 kappa: 0.000189499846729 s: 655.591473294 dkappa: 2.12246803879e-05 } path_point { x: 587563.490668 y: 4140836.02971 z: 0.0 theta: -8.10018524422 kappa: 0.000197062417681 s: 655.989198155 dkappa: 1.70048191474e-05 } path_point { x: 587563.405718 y: 4140835.69162 z: 0.0 theta: -8.10011547616 kappa: 0.000203276544101 s: 656.337799358 dkappa: 1.81332720775e-05 } path_point { x: 587563.320791 y: 4140835.35352 z: 0.0 theta: -8.1000435308 kappa: 0.000209403196107 s: 656.686400561 dkappa: 1.66646384655e-05 } path_point { x: 587563.235889 y: 4140835.01542 z: 0.0 theta: -8.09996957678 kappa: 0.000214706110499 s: 657.035001764 dkappa: 1.35689912125e-05 } path_point { x: 587563.151012 y: 4140834.67731 z: 0.0 theta: -8.09989398047 kappa: 0.000218787192652 s: 657.383602967 dkappa: 9.8164032192e-06 } path_point { x: 587563.066161 y: 4140834.33919 z: 0.0 theta: -8.09981718807 kappa: 0.000221586516526 s: 657.73220417 dkappa: 6.37694738656e-06 } path_point { x: 587562.981336 y: 4140834.00107 z: 0.0 theta: -8.09973960773 kappa: 0.000223382324657 s: 658.080805373 dkappa: 4.22069661543e-06 } path_point { x: 587562.884967 y: 4140833.61679 z: 0.0 theta: -8.09965079722 kappa: 0.000224875162218 s: 658.476979653 dkappa: 2.98002400411e-06 } path_point { x: 587562.788633 y: 4140833.23251 z: 0.0 theta: -8.09956153801 kappa: 0.000225551410909 s: 658.873153934 dkappa: 2.84450196493e-07 } path_point { x: 587562.692332 y: 4140832.84821 z: 0.0 theta: -8.09947223857 kappa: 0.000225055890738 s: 659.269328214 dkappa: -2.74927163692e-06 } path_point { x: 587562.596066 y: 4140832.46391 z: 0.0 theta: -8.09938336046 kappa: 0.000223475850596 s: 659.665502495 dkappa: -5.00438832562e-06 } path_point { x: 587562.499834 y: 4140832.07961 z: 0.0 theta: -8.09929524302 kappa: 0.000221340968256 s: 660.061676775 dkappa: -5.3641466991e-06 } path_point { x: 587562.405872 y: 4140831.70422 z: 0.0 theta: -8.09921003576 kappa: 0.000218923778321 s: 660.448642556 dkappa: -7.24078601559e-06 } path_point { x: 587562.311941 y: 4140831.32883 z: 0.0 theta: -8.09912591656 kappa: 0.000215697626318 s: 660.835608338 dkappa: -9.42341441735e-06 } path_point { x: 587562.218041 y: 4140830.95343 z: 0.0 theta: -8.09904320316 kappa: 0.000211685484236 s: 661.222574119 dkappa: -1.11813249419e-05 } path_point { x: 587562.124172 y: 4140830.57802 z: 0.0 theta: -8.09896214965 kappa: 0.000207193082657 s: 661.609539901 dkappa: -1.17838106267e-05 } path_point { x: 587562.030334 y: 4140830.2026 z: 0.0 theta: -8.09888283715 kappa: 0.000202808910751 s: 661.996505682 dkappa: -1.05001645094e-05 } path_point { x: 587561.93338 y: 4140829.8146 z: 0.0 theta: -8.09880264273 kappa: 0.000198046152239 s: 662.396444916 dkappa: -1.31672274326e-05 } path_point { x: 587561.836457 y: 4140829.42658 z: 0.0 theta: -8.09872454136 kappa: 0.000192407358368 s: 662.79638415 dkappa: -1.48544215753e-05 } path_point { x: 587561.739563 y: 4140829.03855 z: 0.0 theta: -8.0986488008 kappa: 0.000186316314559 s: 663.196323384 dkappa: -1.54022354383e-05 } path_point { x: 587561.642699 y: 4140828.65052 z: 0.0 theta: -8.09857550653 kappa: 0.000180260601143 s: 663.596262618 dkappa: -1.46511575222e-05 } path_point { x: 587561.545863 y: 4140828.26248 z: 0.0 theta: -8.09850453629 kappa: 0.000174791593356 s: 663.996201852 dkappa: -1.24416763277e-05 } path_point { x: 587561.462635 y: 4140827.92888 z: 0.0 theta: -8.09844522489 kappa: 0.000170089921416 s: 664.340025641 dkappa: -1.46945917191e-05 } path_point { x: 587561.379427 y: 4140827.59528 z: 0.0 theta: -8.09838763876 kappa: 0.000164824711334 s: 664.683849429 dkappa: -1.57449867069e-05 } path_point { x: 587561.296238 y: 4140827.26167 z: 0.0 theta: -8.09833190356 kappa: 0.000159383377015 s: 665.027673218 dkappa: -1.5744341294e-05 } path_point { x: 587561.213067 y: 4140826.92806 z: 0.0 theta: -8.09827802072 kappa: 0.00015410124994 s: 665.371497007 dkappa: -1.48441354835e-05 } path_point { x: 587561.129914 y: 4140826.59444 z: 0.0 theta: -8.0982258853 kappa: 0.000149261579157 s: 665.715320795 dkappa: -1.31958492786e-05 } path_point { x: 587561.046778 y: 4140826.26082 z: 0.0 theta: -8.09817530395 kappa: 0.000145095531288 s: 666.059144584 dkappa: -1.09509626823e-05 } path_point { x: 587560.952524 y: 4140825.8825 z: 0.0 theta: -8.09811960383 kappa: 0.000140556871667 s: 666.44903296 dkappa: -1.20518831251e-05 } path_point { x: 587560.85829 y: 4140825.50417 z: 0.0 theta: -8.09806571762 kappa: 0.000135883841567 s: 666.838921336 dkappa: -1.17209433523e-05 } path_point { x: 587560.764077 y: 4140825.12583 z: 0.0 theta: -8.09801360113 kappa: 0.000131540309983 s: 667.228809711 dkappa: -1.04423673777e-05 } path_point { x: 587560.669882 y: 4140824.7475 z: 0.0 theta: -8.09796306615 kappa: 0.000127801352598 s: 667.618698087 dkappa: -8.70037921527e-06 } path_point { x: 587560.575707 y: 4140824.36915 z: 0.0 theta: -8.09791385401 kappa: 0.00012475325178 s: 668.008586463 dkappa: -6.97920287893e-06 } path_point { x: 587560.479897 y: 4140823.98416 z: 0.0 theta: -8.09786492693 kappa: 0.000121880499798 s: 668.405321369 dkappa: -7.21716953777e-06 } path_point { x: 587560.384106 y: 4140823.59916 z: 0.0 theta: -8.09781711785 kappa: 0.00011920782487 s: 668.802056276 dkappa: -6.08510862434e-06 } path_point { x: 587560.288332 y: 4140823.21416 z: 0.0 theta: -8.0977702576 kappa: 0.000117142457634 s: 669.198791182 dkappa: -4.27016473709e-06 } path_point { x: 587560.192577 y: 4140822.82916 z: 0.0 theta: -8.09772406953 kappa: 0.000115819014477 s: 669.595526088 dkappa: -2.45948247446e-06 } path_point { x: 587560.09684 y: 4140822.44414 z: 0.0 theta: -8.09767827764 kappa: 0.000115099497541 s: 669.992260995 dkappa: -1.34020643487e-06 } path_point { x: 587560.012944 y: 4140822.10669 z: 0.0 theta: -8.09763832784 kappa: 0.000114718080787 s: 670.339984004 dkappa: -6.90029723843e-07 } path_point { x: 587559.929061 y: 4140821.76924 z: 0.0 theta: -8.09759845384 kappa: 0.00011470739573 s: 670.687707014 dkappa: 7.17444707978e-07 } path_point { x: 587559.845192 y: 4140821.43178 z: 0.0 theta: -8.09755848997 kappa: 0.000115252859974 s: 671.035430024 dkappa: 2.43408868074e-06 } path_point { x: 587559.761337 y: 4140821.09432 z: 0.0 theta: -8.0975182332 kappa: 0.000116384066641 s: 671.383153033 dkappa: 4.01177401459e-06 } path_point { x: 587559.677495 y: 4140820.75686 z: 0.0 theta: -8.09747749727 kappa: 0.000117974784377 s: 671.730876043 dkappa: 5.00237252967e-06 } path_point { x: 587559.593667 y: 4140820.41939 z: 0.0 theta: -8.09743616693 kappa: 0.000119742957345 s: 672.078599052 dkappa: 4.95775604614e-06 } path_point { x: 587559.498117 y: 4140820.03466 z: 0.0 theta: -8.09738827492 kappa: 0.000121977675544 s: 672.475015987 dkappa: 6.40322447207e-06 } path_point { x: 587559.402586 y: 4140819.64993 z: 0.0 theta: -8.0973393738 kappa: 0.000124848481286 s: 672.871432923 dkappa: 8.06687755916e-06 } path_point { x: 587559.307074 y: 4140819.26519 z: 0.0 theta: -8.09728921001 kappa: 0.000128322866678 s: 673.267849858 dkappa: 9.34833739611e-06 } path_point { x: 587559.211581 y: 4140818.88045 z: 0.0 theta: -8.09723759003 kappa: 0.000132130323859 s: 673.664266793 dkappa: 9.64722607162e-06 } path_point { x: 587559.116109 y: 4140818.4957 z: 0.0 theta: -8.09718447475 kappa: 0.000135762344993 s: 674.060683729 dkappa: 8.36316567439e-06 } path_point { x: 587559.022887 y: 4140818.11993 z: 0.0 theta: -8.09713123517 kappa: 0.000139385031554 s: 674.447840507 dkappa: 1.02054872739e-05 } path_point { x: 587558.929685 y: 4140817.74416 z: 0.0 theta: -8.09707647686 kappa: 0.000143551382088 s: 674.834997285 dkappa: 1.11705670167e-05 } path_point { x: 587558.836504 y: 4140817.36839 z: 0.0 theta: -8.09702005522 kappa: 0.000147920495996 s: 675.222154062 dkappa: 1.12518418257e-05 } path_point { x: 587558.743344 y: 4140816.9926 z: 0.0 theta: -8.09696195815 kappa: 0.000152148931737 s: 675.60931084 dkappa: 1.04427486233e-05 } path_point { x: 587558.650207 y: 4140816.61682 z: 0.0 theta: -8.09690230703 kappa: 0.000155890706831 s: 675.996467618 dkappa: 8.73672433238e-06 } path_point { x: 587558.567064 y: 4140816.28128 z: 0.0 theta: -8.09684785388 kappa: 0.000159244960684 s: 676.342156609 dkappa: 1.03825642477e-05 } path_point { x: 587558.48394 y: 4140815.94573 z: 0.0 theta: -8.09679217503 kappa: 0.00016289523801 s: 676.6878456 dkappa: 1.05205880841e-05 } path_point { x: 587558.400835 y: 4140815.61018 z: 0.0 theta: -8.09673524971 kappa: 0.000166394148733 s: 677.033534591 dkappa: 9.57803156051e-06 } path_point { x: 587558.31775 y: 4140815.27462 z: 0.0 theta: -8.09667718632 kappa: 0.00016944199346 s: 677.379223582 dkappa: 7.98213039599e-06 } path_point { x: 587558.234683 y: 4140814.93906 z: 0.0 theta: -8.09661817131 kappa: 0.000171886763484 s: 677.724912574 dkappa: 6.16012030944e-06 } path_point { x: 587558.151637 y: 4140814.6035 z: 0.0 theta: -8.09655841815 kappa: 0.000173724140783 s: 678.070601565 dkappa: 4.53923701982e-06 } path_point { x: 587558.058102 y: 4140814.22544 z: 0.0 theta: -8.09649041404 kappa: 0.000175475684051 s: 678.460052466 dkappa: 4.08060604034e-06 } path_point { x: 587557.964593 y: 4140813.84739 z: 0.0 theta: -8.09642181277 kappa: 0.000176679046862 s: 678.849503367 dkappa: 1.900433383e-06 } path_point { x: 587557.87111 y: 4140813.46932 z: 0.0 theta: -8.09635293165 kappa: 0.000176869802643 s: 679.238954268 dkappa: -9.43230316785e-07 } path_point { x: 587557.777652 y: 4140813.09125 z: 0.0 theta: -8.0962841886 kappa: 0.000175995583598 s: 679.628405169 dkappa: -3.39233442358e-06 } path_point { x: 587557.684221 y: 4140812.71317 z: 0.0 theta: -8.09621594171 kappa: 0.000174416080701 s: 680.01785607 dkappa: -4.38882830199e-06 } path_point { x: 587557.589549 y: 4140812.32996 z: 0.0 theta: -8.09614749325 kappa: 0.000172214803965 s: 680.412588499 dkappa: -7.08155044074e-06 } path_point { x: 587557.494902 y: 4140811.94674 z: 0.0 theta: -8.09608016469 kappa: 0.000168658221402 s: 680.807320929 dkappa: -1.1045189761e-05 } path_point { x: 587557.400282 y: 4140811.56352 z: 0.0 theta: -8.09601455722 kappa: 0.000163494050545 s: 681.202053359 dkappa: -1.50161573647e-05 } path_point { x: 587557.305686 y: 4140811.18029 z: 0.0 theta: -8.09595127316 kappa: 0.000156968788439 s: 681.596785789 dkappa: -1.77308643541e-05 } path_point { x: 587557.211114 y: 4140810.79705 z: 0.0 theta: -8.09589071909 kappa: 0.000149827711648 s: 681.991518218 dkappa: -1.79257218312e-05 } path_point { x: 587557.127979 y: 4140810.46009 z: 0.0 theta: -8.09583987801 kappa: 0.000142891684782 s: 682.3385882 dkappa: -2.22914679901e-05 } path_point { x: 587557.044862 y: 4140810.12312 z: 0.0 theta: -8.095791731 kappa: 0.000134251780922 s: 682.685658181 dkappa: -2.75434790311e-05 } path_point { x: 587556.96176 y: 4140809.78614 z: 0.0 theta: -8.09574689861 kappa: 0.000123809561666 s: 683.032728162 dkappa: -3.24764790982e-05 } path_point { x: 587556.878672 y: 4140809.44917 z: 0.0 theta: -8.09570596295 kappa: 0.000111884903682 s: 683.379798143 dkappa: -3.58851923354e-05 } path_point { x: 587556.795598 y: 4140809.11218 z: 0.0 theta: -8.09566932254 kappa: 9.92159987048e-05 s: 683.726868124 dkappa: -3.6564342887e-05 } path_point { x: 587556.712535 y: 4140808.7752 z: 0.0 theta: -8.09563704708 kappa: 8.69593535386e-05 s: 684.073938105 dkappa: -3.33086548971e-05 } path_point { x: 587556.617639 y: 4140808.39015 z: 0.0 theta: -8.09560534268 kappa: 7.25010280766e-05 s: 684.470505792 dkappa: -3.98322974294e-05 } path_point { x: 587556.522754 y: 4140808.00511 z: 0.0 theta: -8.09557990542 kappa: 5.53378644867e-05 s: 684.867073479 dkappa: -4.65759650071e-05 } path_point { x: 587556.427877 y: 4140807.62005 z: 0.0 theta: -8.09556176646 kappa: 3.58274772683e-05 s: 685.263641166 dkappa: -5.12960591859e-05 } path_point { x: 587556.333005 y: 4140807.235 z: 0.0 theta: -8.09555163869 kappa: 1.5217219566e-05 s: 685.660208853 dkappa: -5.17489815217e-05 } path_point { x: 587556.238136 y: 4140806.84995 z: 0.0 theta: -8.09554956395 kappa: -4.35581683012e-06 s: 686.05677654 dkappa: -4.56911335702e-05 } path_point { x: 587556.145551 y: 4140806.47417 z: 0.0 theta: -8.09555490522 kappa: -2.38352198956e-05 s: 686.443794123 dkappa: -5.47955828061e-05 } path_point { x: 587556.052962 y: 4140806.09839 z: 0.0 theta: -8.0955684314 kappa: -4.65368962467e-05 s: 686.830811706 dkappa: -6.20967910356e-05 } path_point { x: 587555.960366 y: 4140805.72261 z: 0.0 theta: -8.09559121766 kappa: -7.14771539116e-05 s: 687.21782929 dkappa: -6.61177917976e-05 } path_point { x: 587555.867761 y: 4140805.34684 z: 0.0 theta: -8.09562384784 kappa: -9.7100688928e-05 s: 687.604846873 dkappa: -6.53816186314e-05 } path_point { x: 587555.775141 y: 4140804.97107 z: 0.0 theta: -8.09566619323 kappa: -0.000121280585343 s: 687.991864456 dkappa: -5.8411305076e-05 } path_point { x: 587555.695087 y: 4140804.64634 z: 0.0 theta: -8.09571024731 kappa: -0.000142791417155 s: 688.326314424 dkappa: -6.97094555308e-05 } path_point { x: 587555.615018 y: 4140804.32161 z: 0.0 theta: -8.09576206891 kappa: -0.000167550957561 s: 688.660764391 dkappa: -7.77938695908e-05 } path_point { x: 587555.53493 y: 4140803.99689 z: 0.0 theta: -8.09582255983 kappa: -0.000194439615163 s: 688.995214358 dkappa: -8.23968996508e-05 } path_point { x: 587555.454822 y: 4140803.67218 z: 0.0 theta: -8.09589223245 kappa: -0.00022224828383 s: 689.329664325 dkappa: -8.32508981055e-05 } path_point { x: 587555.374689 y: 4140803.34747 z: 0.0 theta: -8.09597117981 kappa: -0.000249678342698 s: 689.664114292 dkappa: -8.00882173499e-05 } path_point { x: 587555.294529 y: 4140803.02277 z: 0.0 theta: -8.09605904565 kappa: -0.000275341656171 s: 689.99856426 dkappa: -7.26412097788e-05 } path_point { x: 587555.210481 y: 4140802.68246 z: 0.0 theta: -8.09616030964 kappa: -0.000303172839063 s: 690.34910419 dkappa: -8.55448196823e-05 } path_point { x: 587555.126396 y: 4140802.34215 z: 0.0 theta: -8.09627204518 kappa: -0.000334858491065 s: 690.699644121 dkappa: -9.45380443091e-05 } path_point { x: 587555.042271 y: 4140802.00185 z: 0.0 theta: -8.09639535153 kappa: -0.0003689281959 s: 691.050184051 dkappa: -9.9052217536e-05 } path_point { x: 587554.958103 y: 4140801.66157 z: 0.0 theta: -8.09653077755 kappa: -0.000403712197112 s: 691.400723981 dkappa: -9.85186732401e-05 } path_point { x: 587554.873886 y: 4140801.3213 z: 0.0 theta: -8.09667825186 kappa: -0.000437341398059 s: 691.751263912 dkappa: -9.23687452985e-05 } path_point { x: 587554.789617 y: 4140800.98104 z: 0.0 theta: -8.09683701295 kappa: -0.000467747361917 s: 692.101803842 dkappa: -8.0033767588e-05 } path_point { x: 587554.693543 y: 4140800.5934 z: 0.0 theta: -8.09703052493 kappa: -0.000502105847731 s: 692.501167813 dkappa: -9.13206016221e-05 } path_point { x: 587554.597391 y: 4140800.20578 z: 0.0 theta: -8.0972385384 kappa: -0.00054005296355 s: 692.900531784 dkappa: -9.78394956662e-05 } path_point { x: 587554.501156 y: 4140799.81819 z: 0.0 theta: -8.09746207985 kappa: -0.00057948568469 s: 693.299895754 dkappa: -9.85944598358e-05 } path_point { x: 587554.40483 y: 4140799.43062 z: 0.0 theta: -8.09770125643 kappa: -0.000617903223994 s: 693.699259725 dkappa: -9.25895042462e-05 } path_point { x: 587554.308409 y: 4140799.04307 z: 0.0 theta: -8.09795509718 kappa: -0.000652407031828 s: 694.098623695 dkappa: -7.88286390127e-05 } path_point { x: 587554.212714 y: 4140798.65886 z: 0.0 theta: -8.09821997069 kappa: -0.0006863398278 s: 694.494571895 dkappa: -9.13652118079e-05 } path_point { x: 587554.116913 y: 4140798.27467 z: 0.0 theta: -8.09849907606 kappa: -0.000723830261264 s: 694.890520094 dkappa: -9.68663733711e-05 } path_point { x: 587554.021003 y: 4140797.89052 z: 0.0 theta: -8.09879328103 kappa: -0.000762172874188 s: 695.286468294 dkappa: -9.5737229108e-05 } path_point { x: 587553.924977 y: 4140797.50639 z: 0.0 theta: -8.09910241388 kappa: -0.000798822609295 s: 695.682416494 dkappa: -8.83828844238e-05 } path_point { x: 587553.828829 y: 4140797.12229 z: 0.0 theta: -8.09942532691 kappa: -0.000831394810064 s: 696.078364693 dkappa: -7.52084447243e-05 } path_point { x: 587553.731829 y: 4140796.73533 z: 0.0 theta: -8.09976334802 kappa: -0.0008640239981 s: 696.477295079 dkappa: -8.69834992755e-05 } path_point { x: 587553.634696 y: 4140796.34841 z: 0.0 theta: -8.10011510833 kappa: -0.000899754539793 s: 696.876225464 dkappa: -9.09301797286e-05 } path_point { x: 587553.537424 y: 4140795.96152 z: 0.0 theta: -8.10048124975 kappa: -0.000935670970328 s: 697.27515585 dkappa: -8.80888254051e-05 } path_point { x: 587553.440007 y: 4140795.57467 z: 0.0 theta: -8.10086133388 kappa: -0.000969272847857 s: 697.674086236 dkappa: -7.94997756261e-05 } path_point { x: 587553.342441 y: 4140795.18785 z: 0.0 theta: -8.1012540076 kappa: -0.0009984747535 s: 698.073016622 dkappa: -6.62033697129e-05 } path_point { x: 587553.247049 y: 4140794.81028 z: 0.0 theta: -8.10164812917 kappa: -0.00102613157985 s: 698.462451312 dkappa: -7.4493208465e-05 } path_point { x: 587553.151506 y: 4140794.43275 z: 0.0 theta: -8.10205345795 kappa: -0.00105556687007 s: 698.851886002 dkappa: -7.56314304265e-05 } path_point { x: 587553.055808 y: 4140794.05525 z: 0.0 theta: -8.1024701889 kappa: -0.00108433959502 s: 699.241320692 dkappa: -7.13849996377e-05 } path_point { x: 587552.95995 y: 4140793.6778 z: 0.0 theta: -8.10289770033 kappa: -0.00111069684268 s: 699.630755382 dkappa: -6.35208801385e-05 } path_point { x: 587552.86393 y: 4140793.30039 z: 0.0 theta: -8.1033348219 kappa: -0.00113357381811 s: 700.020190073 dkappa: -5.38060359691e-05 } path_point { x: 587552.779372 y: 4140792.96861 z: 0.0 theta: -8.10372625971 kappa: -0.0011533514816 s: 700.362575018 dkappa: -6.0646123042e-05 } path_point { x: 587552.694683 y: 4140792.63686 z: 0.0 theta: -8.10412475066 kappa: -0.00117444535354 s: 700.704959963 dkappa: -6.17286238163e-05 } path_point { x: 587552.609861 y: 4140792.30515 z: 0.0 theta: -8.10453043538 kappa: -0.00119512459677 s: 701.047344909 dkappa: -5.84582362334e-05 } path_point { x: 587552.524904 y: 4140791.97347 z: 0.0 theta: -8.1049429442 kappa: -0.00121413932157 s: 701.389729854 dkappa: -5.22396582347e-05 } path_point { x: 587552.439808 y: 4140791.64183 z: 0.0 theta: -8.10536156187 kappa: -0.00123072058564 s: 701.732114799 dkappa: -4.44775877614e-05 } path_point { x: 587552.354573 y: 4140791.31023 z: 0.0 theta: -8.10578539218 kappa: -0.0012445803941 s: 702.074499745 dkappa: -3.6576722755e-05 } path_point { x: 587552.271295 y: 4140790.9868 z: 0.0 theta: -8.10620316617 kappa: -0.00125737767641 s: 702.408477327 dkappa: -3.92824408602e-05 } path_point { x: 587552.18788 y: 4140790.66341 z: 0.0 theta: -8.1066252843 kappa: -0.00127037049582 s: 702.742454909 dkappa: -3.79566832933e-05 } path_point { x: 587552.104329 y: 4140790.34005 z: 0.0 theta: -8.10705161034 kappa: -0.00128242183487 s: 703.076432491 dkappa: -3.38534565565e-05 } path_point { x: 587552.020639 y: 4140790.01673 z: 0.0 theta: -8.10748169827 kappa: -0.00129281348615 s: 703.410410073 dkappa: -2.8226767152e-05 } path_point { x: 587551.93681 y: 4140789.69344 z: 0.0 theta: -8.10791493213 kappa: -0.00130124605231 s: 703.744387654 dkappa: -2.23306215818e-05 } path_point { x: 587551.85284 y: 4140789.37019 z: 0.0 theta: -8.10835066593 kappa: -0.00130783894606 s: 704.078365236 dkappa: -1.74190263483e-05 } path_point { x: 587551.768075 y: 4140789.04447 z: 0.0 theta: -8.10879186257 kappa: -0.00131390875902 s: 704.414935673 dkappa: -1.7946525007e-05 } path_point { x: 587551.683167 y: 4140788.71879 z: 0.0 theta: -8.1092350594 kappa: -0.00131952985211 s: 704.75150611 dkappa: -1.50010495544e-05 } path_point { x: 587551.598113 y: 4140788.39314 z: 0.0 theta: -8.10967993684 kappa: -0.00132378418562 s: 705.088076546 dkappa: -1.00732876834e-05 } path_point { x: 587551.512915 y: 4140788.06753 z: 0.0 theta: -8.11012595073 kappa: -0.00132625544124 s: 705.424646983 dkappa: -4.65392708667e-06 } path_point { x: 587551.427571 y: 4140787.74196 z: 0.0 theta: -8.11057250124 kappa: -0.0013270290221 s: 705.76121742 dkappa: -2.33655457012e-07 } path_point { x: 587551.342082 y: 4140787.41643 z: 0.0 theta: -8.11101910173 kappa: -0.00132669205269 s: 706.097787856 dkappa: 1.6968395128e-06 } path_point { x: 587551.256948 y: 4140787.09283 z: 0.0 theta: -8.11146289044 kappa: -0.00132576883758 s: 706.432393363 dkappa: 4.31905969401e-06 } path_point { x: 587551.171671 y: 4140786.76928 z: 0.0 theta: -8.11190617457 kappa: -0.00132355057402 s: 706.76699887 dkappa: 9.19273432187e-06 } path_point { x: 587551.08625 y: 4140786.44576 z: 0.0 theta: -8.11234842218 kappa: -0.00131952970066 s: 707.101604377 dkappa: 1.48487439978e-05 } path_point { x: 587551.000686 y: 4140786.12228 z: 0.0 theta: -8.11278901371 kappa: -0.00131369023161 s: 707.436209884 dkappa: 1.98179693233e-05 } path_point { x: 587550.91498 y: 4140785.79884 z: 0.0 theta: -8.11322740653 kappa: -0.00130650775641 s: 707.77081539 dkappa: 2.26312908998e-05 } path_point { x: 587550.829133 y: 4140785.47543 z: 0.0 theta: -8.11366329934 kappa: -0.00129894944005 s: 708.105420897 dkappa: 2.18195893286e-05 } path_point { x: 587550.726508 y: 4140785.08956 z: 0.0 theta: -8.11418004003 kappa: -0.00128892893722 s: 708.504704093 dkappa: 2.87428464443e-05 } path_point { x: 587550.623685 y: 4140784.70374 z: 0.0 theta: -8.11469218491 kappa: -0.00127586188471 s: 708.903987288 dkappa: 3.66765456976e-05 } path_point { x: 587550.520665 y: 4140784.31798 z: 0.0 theta: -8.11519850127 kappa: -0.001259827729 s: 709.303270484 dkappa: 4.3201857224e-05 } path_point { x: 587550.417451 y: 4140783.93227 z: 0.0 theta: -8.11569798092 kappa: -0.00124187171471 s: 709.70255368 dkappa: 4.58999511592e-05 } path_point { x: 587550.314046 y: 4140783.54661 z: 0.0 theta: -8.11619022586 kappa: -0.00122400488458 s: 710.101836875 dkappa: 4.23519976385e-05 } path_point { x: 587550.227402 y: 4140783.22404 z: 0.0 theta: -8.11659652646 kappa: -0.00120846053671 s: 710.435837142 dkappa: 5.07789414217e-05 } path_point { x: 587550.140629 y: 4140782.90151 z: 0.0 theta: -8.11699716573 kappa: -0.00119012492914 s: 710.769837408 dkappa: 5.88429707467e-05 } path_point { x: 587550.053727 y: 4140782.57901 z: 0.0 theta: -8.11739125652 kappa: -0.00116934286534 s: 711.103837675 dkappa: 6.52052247708e-05 } path_point { x: 587549.9667 y: 4140782.25655 z: 0.0 theta: -8.11777810153 kappa: -0.00114690632865 s: 711.437837942 dkappa: 6.85268426511e-05 } path_point { x: 587549.879548 y: 4140781.93412 z: 0.0 theta: -8.11815734266 kappa: -0.0011240544823 s: 711.771838208 dkappa: 6.7468963545e-05 } path_point { x: 587549.792276 y: 4140781.61172 z: 0.0 theta: -8.11852911037 kappa: -0.00110247366937 s: 712.105838475 dkappa: 6.06927266096e-05 } path_point { x: 587549.688273 y: 4140781.22813 z: 0.0 theta: -8.11896215351 kappa: -0.00107587880253 s: 712.503279088 dkappa: 7.28361752883e-05 } path_point { x: 587549.584106 y: 4140780.84458 z: 0.0 theta: -8.11938372806 kappa: -0.00104494532519 s: 712.900719702 dkappa: 8.22036302441e-05 } path_point { x: 587549.47978 y: 4140780.46108 z: 0.0 theta: -8.11979237977 kappa: -0.00101116027279 s: 713.298160316 dkappa: 8.68640216019e-05 } path_point { x: 587549.375299 y: 4140780.07762 z: 0.0 theta: -8.12018739789 kappa: -0.000976778166374 s: 713.695600929 dkappa: 8.48862794865e-05 } path_point { x: 587549.27067 y: 4140779.6942 z: 0.0 theta: -8.12056912026 kappa: -0.000944821012586 s: 714.093041543 dkappa: 7.43393340227e-05 } path_point { x: 587549.166598 y: 4140779.31338 z: 0.0 theta: -8.12093594892 kappa: -0.000912678016316 s: 714.487821833 dkappa: 8.79139920895e-05 } path_point { x: 587549.062389 y: 4140778.9326 z: 0.0 theta: -8.12128913226 kappa: -0.000875977103415 s: 714.882602123 dkappa: 9.71608246214e-05 } path_point { x: 587548.958049 y: 4140778.55186 z: 0.0 theta: -8.12162725014 kappa: -0.000836745889863 s: 715.277382413 dkappa: 0.00010046335902 } path_point { x: 587548.853583 y: 4140778.17115 z: 0.0 theta: -8.12194980885 kappa: -0.000797650143161 s: 715.672162703 dkappa: 9.62051226872e-05 } path_point { x: 587548.748997 y: 4140777.79048 z: 0.0 theta: -8.12225749305 kappa: -0.000761993782331 s: 716.066942993 dkappa: 8.27696430247e-05 } path_point { x: 587548.646263 y: 4140777.41698 z: 0.0 theta: -8.12254605124 kappa: -0.000726912537495 s: 716.454310694 dkappa: 9.72538887355e-05 } path_point { x: 587548.543424 y: 4140777.04352 z: 0.0 theta: -8.12282009788 kappa: -0.00068749189656 s: 716.841678395 dkappa: 0.00010520058726 } path_point { x: 587548.440486 y: 4140776.67008 z: 0.0 theta: -8.12307843854 kappa: -0.000646233600824 s: 717.229046097 dkappa: 0.000106768209876 } path_point { x: 587548.337455 y: 4140776.29666 z: 0.0 theta: -8.12332083601 kappa: -0.000605578004933 s: 717.616413798 dkappa: 0.00010211522786 } path_point { x: 587548.234335 y: 4140775.92327 z: 0.0 theta: -8.12354798652 kappa: -0.000567904076875 s: 718.003781499 dkappa: 9.14001124887e-05 } path_point { x: 587548.141098 y: 4140775.58594 z: 0.0 theta: -8.12374076518 kappa: -0.00053277499524 s: 718.353760243 dkappa: 0.000108206118495 } path_point { x: 587548.047799 y: 4140775.24863 z: 0.0 theta: -8.12392035951 kappa: -0.000492956679755 s: 718.703738987 dkappa: 0.000118220691829 } path_point { x: 587547.954441 y: 4140774.91133 z: 0.0 theta: -8.12408554147 kappa: -0.000450801492613 s: 719.05371773 dkappa: 0.00012158381173 } path_point { x: 587547.86103 y: 4140774.57405 z: 0.0 theta: -8.12423589768 kappa: -0.000408612806253 s: 719.403696474 dkappa: 0.000118435457435 } path_point { x: 587547.76757 y: 4140774.23678 z: 0.0 theta: -8.12437181234 kappa: -0.000368645003354 s: 719.753675218 dkappa: 0.000108915608183 } path_point { x: 587547.674067 y: 4140773.89952 z: 0.0 theta: -8.12449445007 kappa: -0.000333103476836 s: 720.103653961 dkappa: 9.31642432133e-05 } path_point { x: 587547.568501 y: 4140773.51894 z: 0.0 theta: -8.12461839153 kappa: -0.000293739389659 s: 720.498608545 dkappa: 0.000105027590065 } path_point { x: 587547.462891 y: 4140773.13836 z: 0.0 theta: -8.12472603954 kappa: -0.000251049766017 s: 720.893563129 dkappa: 0.000109989798401 } path_point { x: 587547.357243 y: 4140772.7578 z: 0.0 theta: -8.12481662118 kappa: -0.000207777470543 s: 721.288517713 dkappa: 0.000107963626087 } path_point { x: 587547.251564 y: 4140772.37725 z: 0.0 theta: -8.12489045365 kappa: -0.000166699824547 s: 721.683472296 dkappa: 9.88618309894e-05 } path_point { x: 587547.14586 y: 4140771.9967 z: 0.0 theta: -8.12494895785 kappa: -0.000130628606024 s: 722.07842688 dkappa: 8.25971709727e-05 } path_point { x: 587547.04185 y: 4140771.62233 z: 0.0 theta: -8.1249931271 kappa: -9.59947331184e-05 s: 722.466979207 dkappa: 9.39033972482e-05 } path_point { x: 587546.937826 y: 4140771.24796 z: 0.0 theta: -8.12502323801 kappa: -5.88759440435e-05 s: 722.855531533 dkappa: 9.57892324747e-05 } path_point { x: 587546.833793 y: 4140770.87359 z: 0.0 theta: -8.12503897555 kappa: -2.24646321123e-05 s: 723.24408386 dkappa: 9.0663214773e-05 } path_point { x: 587546.729757 y: 4140770.49923 z: 0.0 theta: -8.12504108331 kappa: 1.09826524521e-05 s: 723.632636186 dkappa: 8.09338822637e-05 } path_point { x: 587546.625723 y: 4140770.12486 z: 0.0 theta: -8.12503099986 kappa: 4.01452025166e-05 s: 724.021188513 dkappa: 6.90097730675e-05 } path_point { x: 587546.532723 y: 4140769.79019 z: 0.0 theta: -8.12501266545 kappa: 6.59406653203e-05 s: 724.36854701 dkappa: 7.80430059835e-05 } path_point { x: 587546.439731 y: 4140769.45551 z: 0.0 theta: -8.12498499341 kappa: 9.34546622254e-05 s: 724.715905508 dkappa: 7.92312350539e-05 } path_point { x: 587546.34675 y: 4140769.12082 z: 0.0 theta: -8.12494782067 kappa: 0.000120302494912 s: 725.063264006 dkappa: 7.45339944942e-05 } path_point { x: 587546.253782 y: 4140768.78614 z: 0.0 theta: -8.12490169428 kappa: 0.000144780125923 s: 725.410622504 dkappa: 6.591081852e-05 } path_point { x: 587546.160832 y: 4140768.45145 z: 0.0 theta: -8.12484763501 kappa: 0.000165864178661 s: 725.757981001 dkappa: 5.53212413466e-05 } path_point { x: 587546.067901 y: 4140768.11675 z: 0.0 theta: -8.12478690086 kappa: 0.000183211937389 s: 726.105339499 dkappa: 4.47247971895e-05 } path_point { x: 587545.961947 y: 4140767.73505 z: 0.0 theta: -8.12471071382 kappa: 0.000201573967011 s: 726.501470941 dkappa: 4.67441145249e-05 } path_point { x: 587545.856023 y: 4140767.35334 z: 0.0 theta: -8.12462727248 kappa: 0.000219429816489 s: 726.897602384 dkappa: 4.25855739123e-05 } path_point { x: 587545.750133 y: 4140766.97163 z: 0.0 theta: -8.12453719672 kappa: 0.000234827082096 s: 727.293733826 dkappa: 3.47475382697e-05 } path_point { x: 587545.644278 y: 4140766.5899 z: 0.0 theta: -8.12444168382 kappa: 0.000246803040213 s: 727.689865269 dkappa: 2.5728370515e-05 } path_point { x: 587545.538461 y: 4140766.20816 z: 0.0 theta: -8.12434211639 kappa: 0.000255384647324 s: 728.085996711 dkappa: 1.8026433566e-05 } path_point { x: 587545.432287 y: 4140765.82499 z: 0.0 theta: -8.12423909447 kappa: 0.000262821588296 s: 728.483608749 dkappa: 1.81286504281e-05 } path_point { x: 587545.326153 y: 4140765.4418 z: 0.0 theta: -8.12413328316 kappa: 0.000269029715972 s: 728.881220786 dkappa: 1.24115971129e-05 } path_point { x: 587545.22006 y: 4140765.05861 z: 0.0 theta: -8.12402554156 kappa: 0.000272370518564 s: 729.278832824 dkappa: 4.27205249346e-06 } path_point { x: 587545.114008 y: 4140764.6754 z: 0.0 theta: -8.12391711172 kappa: 0.000272556084454 s: 729.676444862 dkappa: -2.89320455734e-06 } path_point { x: 587545.007998 y: 4140764.29218 z: 0.0 theta: -8.12380908171 kappa: 0.00027064910219 s: 730.074056899 dkappa: -5.68739516647e-06 } path_point { x: 587544.905766 y: 4140763.92247 z: 0.0 theta: -8.12370575356 kappa: 0.000267824028672 s: 730.457643482 dkappa: -9.92389298355e-06 } path_point { x: 587544.803572 y: 4140763.55275 z: 0.0 theta: -8.12360393036 kappa: 0.000262568907117 s: 730.841230065 dkappa: -1.7811592619e-05 } path_point { x: 587544.701416 y: 4140763.18301 z: 0.0 theta: -8.12350473255 kappa: 0.000254111435303 s: 731.224816648 dkappa: -2.60748330618e-05 } path_point { x: 587544.599295 y: 4140762.81327 z: 0.0 theta: -8.12340933579 kappa: 0.000242935810622 s: 731.608403231 dkappa: -3.14379533011e-05 } path_point { x: 587544.497209 y: 4140762.44352 z: 0.0 theta: -8.12331848905 kappa: 0.00023078273008 s: 731.991989814 dkappa: -3.0625292326e-05 } path_point { x: 587544.408013 y: 4140762.12034 z: 0.0 theta: -8.1232430033 kappa: 0.000219011609723 s: 732.327245044 dkappa: -3.99648219202e-05 } path_point { x: 587544.31884 y: 4140761.79717 z: 0.0 theta: -8.12317202037 kappa: 0.000203855350374 s: 732.662500274 dkappa: -5.04725530123e-05 } path_point { x: 587544.229689 y: 4140761.47398 z: 0.0 theta: -8.1231067018 kappa: 0.000185271446469 s: 732.997755505 dkappa: -6.00656539651e-05 } path_point { x: 587544.140559 y: 4140761.15079 z: 0.0 theta: -8.12304810629 kappa: 0.000163915672649 s: 733.333010735 dkappa: -6.66612931412e-05 } path_point { x: 587544.051446 y: 4140760.8276 z: 0.0 theta: -8.12299695567 kappa: 0.00014114208375 s: 733.668265965 dkappa: -6.81766389034e-05 } path_point { x: 587543.962348 y: 4140760.5044 z: 0.0 theta: -8.12295340074 kappa: 0.000119003014811 s: 734.003521195 dkappa: -6.25288596145e-05 } path_point { x: 587543.873747 y: 4140760.18295 z: 0.0 theta: -8.12291745999 kappa: 9.58030416418e-05 s: 734.336956249 dkappa: -7.64126909395e-05 } path_point { x: 587543.785156 y: 4140759.8615 z: 0.0 theta: -8.12288999723 kappa: 6.82554966619e-05 s: 734.670391303 dkappa: -8.84087071515e-05 } path_point { x: 587543.696572 y: 4140759.54005 z: 0.0 theta: -8.12287233518 kappa: 3.71875294219e-05 s: 735.003826356 dkappa: -9.73311551894e-05 } path_point { x: 587543.607992 y: 4140759.21859 z: 0.0 theta: -8.12286545484 kappa: 3.82166110817e-06 s: 735.33726141 dkappa: -0.000101994281992 } path_point { x: 587543.519413 y: 4140758.89714 z: 0.0 theta: -8.12286986368 kappa: -3.02242154573e-05 s: 735.670696463 dkappa: -0.000101212334499 } path_point { x: 587543.430831 y: 4140758.57569 z: 0.0 theta: -8.12288546375 kappa: -6.29368358173e-05 s: 736.004131517 dkappa: -9.37995596487e-05 } path_point { x: 587543.337851 y: 4140758.2383 z: 0.0 theta: -8.12291360117 kappa: -9.88700525705e-05 s: 736.354090543 dkappa: -0.000110971192599 } path_point { x: 587543.24486 y: 4140757.90093 z: 0.0 theta: -8.12295528684 kappa: -0.000140121407633 s: 736.704049569 dkappa: -0.000123975173458 } path_point { x: 587543.151852 y: 4140757.56355 z: 0.0 theta: -8.12301210007 kappa: -0.000185004248942 s: 737.054008595 dkappa: -0.000131507666178 } path_point { x: 587543.058822 y: 4140757.22618 z: 0.0 theta: -8.12308495007 kappa: -0.000231375635239 s: 737.403967621 dkappa: -0.000132264834712 } path_point { x: 587542.965765 y: 4140756.88883 z: 0.0 theta: -8.12317391626 kappa: -0.000276636336076 s: 737.753926647 dkappa: -0.000124942843014 } path_point { x: 587542.872675 y: 4140756.55147 z: 0.0 theta: -8.12327808861 kappa: -0.000317730831808 s: 738.103885673 dkappa: -0.000108237855036 } path_point { x: 587542.767195 y: 4140756.1694 z: 0.0 theta: -8.12341292549 kappa: -0.000363563368525 s: 738.500252579 dkappa: -0.000122287473711 } path_point { x: 587542.66166 y: 4140755.78734 z: 0.0 theta: -8.12356690416 kappa: -0.000413961873252 s: 738.896619485 dkappa: -0.000130960454751 } path_point { x: 587542.556062 y: 4140755.4053 z: 0.0 theta: -8.12374136235 kappa: -0.000466418876339 s: 739.292986391 dkappa: -0.000132357808 } path_point { x: 587542.450394 y: 4140755.02328 z: 0.0 theta: -8.12393649472 kappa: -0.000517674211282 s: 739.689353297 dkappa: -0.0001245805433 } path_point { x: 587542.450394 y: 4140755.02328 z: 0.0 theta: -8.12393649472 kappa: -0.000517674211282 s: 0.0 dkappa: -0.0001245805433 } path_point { x: 587542.344647 y: 4140754.64128 z: 0.0 theta: -8.12415105456 kappa: -0.000563715014725 s: 0.39636690596 dkappa: -0.000105729670495 } path_point { x: 587542.238526 y: 4140754.25826 z: 0.0 theta: -8.12438398424 kappa: -0.000609610285934 s: 0.793814212413 dkappa: -0.000123792582992 } path_point { x: 587542.132313 y: 4140753.87527 z: 0.0 theta: -8.12463635494 kappa: -0.000660971735122 s: 1.19126151887 dkappa: -0.000133210297076 } path_point { x: 587542.025999 y: 4140753.4923 z: 0.0 theta: -8.12490965227 kappa: -0.000714332586633 s: 1.58870882532 dkappa: -0.000133828000608 } path_point { x: 587541.919576 y: 4140753.10937 z: 0.0 theta: -8.12520397178 kappa: -0.000766164535142 s: 1.98615613177 dkappa: -0.000125490881448 } path_point { x: 587541.813037 y: 4140752.72647 z: 0.0 theta: -8.12551799446 kappa: -0.000812877745657 s: 2.38360343822 dkappa: -0.000108044127458 } path_point { x: 587541.723403 y: 4140752.40469 z: 0.0 theta: -8.12579588948 kappa: -0.000851993481226 s: 2.71762878862 dkappa: -0.0001252003775 } path_point { x: 587541.633677 y: 4140752.08294 z: 0.0 theta: -8.12608769792 kappa: -0.000895852600666 s: 3.05165413902 dkappa: -0.000136380929121 } path_point { x: 587541.543855 y: 4140751.76122 z: 0.0 theta: -8.12639466362 kappa: -0.000942394396312 s: 3.38567948941 dkappa: -0.000141198548819 } path_point { x: 587541.453932 y: 4140751.43953 z: 0.0 theta: -8.12671732049 kappa: -0.000989428814698 s: 3.71970483981 dkappa: -0.000139266003094 } path_point { x: 587541.363903 y: 4140751.11786 z: 0.0 theta: -8.12705544931 kappa: -0.00103463645655 s: 4.0537301902 dkappa: -0.000130196058446 } path_point { x: 587541.273762 y: 4140750.79623 z: 0.0 theta: -8.12740803453 kappa: -0.00107556857679 s: 4.3877555406 dkappa: -0.000113601481376 } path_point { x: 587541.17023 y: 4140750.42736 z: 0.0 theta: -8.12782890908 kappa: -0.00112257904034 s: 4.77087951175 dkappa: -0.000130520140745 } path_point { x: 587541.066538 y: 4140750.05854 z: 0.0 theta: -8.12826884688 kappa: -0.001174587393 s: 5.15400348291 dkappa: -0.000139671290331 } path_point { x: 587540.962681 y: 4140749.68976 z: 0.0 theta: -8.12872918968 kappa: -0.00122859428716 s: 5.53712745406 dkappa: -0.000140932628186 } path_point { x: 587540.858649 y: 4140749.32103 z: 0.0 theta: -8.12921012113 kappa: -0.00128155351842 s: 5.92025142521 dkappa: -0.000134181852364 } path_point { x: 587540.754437 y: 4140748.95235 z: 0.0 theta: -8.12971064883 kappa: -0.00133037202556 s: 6.30337539637 dkappa: -0.000119296660916 } path_point { x: 587540.663482 y: 4140748.63116 z: 0.0 theta: -8.13016177997 kappa: -0.00137344523212 s: 6.63719983097 dkappa: -0.000137501222279 } path_point { x: 587540.57238 y: 4140748.31 z: 0.0 theta: -8.13062816597 kappa: -0.00142135838557 s: 6.97102426558 dkappa: -0.000148371009998 } path_point { x: 587540.481125 y: 4140747.98889 z: 0.0 theta: -8.13111102245 kappa: -0.00147174046234 s: 7.30484870018 dkappa: -0.000152370358499 } path_point { x: 587540.389712 y: 4140747.66783 z: 0.0 theta: -8.13161079939 kappa: -0.00152237544502 s: 7.63867313479 dkappa: -0.000149963602206 } path_point { x: 587540.298136 y: 4140747.34681 z: 0.0 theta: -8.13212723292 kappa: -0.0015712023224 s: 7.97249756939 dkappa: -0.000141615075546 } path_point { x: 587540.206392 y: 4140747.02584 z: 0.0 theta: -8.13265939699 kappa: -0.00161631508942 s: 8.306322004 dkappa: -0.000127789112945 } path_point { x: 587540.109626 y: 4140746.68801 z: 0.0 theta: -8.13323571059 kappa: -0.00166481827474 s: 8.6577357032 dkappa: -0.000147584956046 } path_point { x: 587540.012663 y: 4140746.35024 z: 0.0 theta: -8.13383019977 kappa: -0.00171947345609 s: 9.00914940241 dkappa: -0.000162528535015 } path_point { x: 587539.915496 y: 4140746.01253 z: 0.0 theta: -8.13444469303 kappa: -0.00177828723165 s: 9.36056310161 dkappa: -0.000170979334758 } path_point { x: 587539.818118 y: 4140745.67487 z: 0.0 theta: -8.1350802171 kappa: -0.00183868970011 s: 9.71197680082 dkappa: -0.00017129684018 } path_point { x: 587539.720522 y: 4140745.33729 z: 0.0 theta: -8.13573679431 kappa: -0.00189753446068 s: 10.0633905 dkappa: -0.000161840536186 } path_point { x: 587539.6227 y: 4140744.99976 z: 0.0 theta: -8.13641324 kappa: -0.00195109861311 s: 10.4148041992 dkappa: -0.000140969907684 } path_point { x: 587539.511727 y: 4140744.6179 z: 0.0 theta: -8.13720087559 kappa: -0.00201184215368 s: 10.8124607794 dkappa: -0.00016434955715 } path_point { x: 587539.400448 y: 4140744.23613 z: 0.0 theta: -8.13801445316 kappa: -0.00208133784268 s: 11.2101173596 dkappa: -0.000184182406478 } path_point { x: 587539.288853 y: 4140743.85446 z: 0.0 theta: -8.13885704515 kappa: -0.00215721358458 s: 11.6077739398 dkappa: -0.000195631683636 } path_point { x: 587539.176931 y: 4140743.47288 z: 0.0 theta: -8.13973039833 kappa: -0.00223517390964 s: 12.00543052 dkappa: -0.00019386061659 } path_point { x: 587539.06467 y: 4140743.09139 z: 0.0 theta: -8.14063416887 kappa: -0.00230899997387 s: 12.4030871001 dkappa: -0.00017403243331 } path_point { x: 587538.952183 y: 4140742.71044 z: 0.0 theta: -8.14156596893 kappa: -0.00238492640332 s: 12.8003024884 dkappa: -0.000208132588169 } path_point { x: 587538.839336 y: 4140742.32959 z: 0.0 theta: -8.14253055374 kappa: -0.00247379886208 s: 13.1975178766 dkappa: -0.000238093587533 } path_point { x: 587538.726114 y: 4140741.94885 z: 0.0 theta: -8.14353256197 kappa: -0.00257263526679 s: 13.5947332649 dkappa: -0.000257178798653 } path_point { x: 587538.612504 y: 4140741.56823 z: 0.0 theta: -8.14457491631 kappa: -0.00267577763991 s: 13.9919486531 dkappa: -0.000258651588779 } path_point { x: 587538.498488 y: 4140741.18773 z: 0.0 theta: -8.14565776057 kappa: -0.0027748921097 s: 14.3891640414 dkappa: -0.000235775325162 } path_point { x: 587538.383425 y: 4140740.80527 z: 0.0 theta: -8.14678604268 kappa: -0.00287819908998 s: 14.7885565464 dkappa: -0.000282143860303 } path_point { x: 587538.267923 y: 4140740.42295 z: 0.0 theta: -8.14795929891 kappa: -0.00299994518914 s: 15.1879490514 dkappa: -0.000326114702635 } path_point { x: 587538.151962 y: 4140740.04076 z: 0.0 theta: -8.14918438402 kappa: -0.00313678068419 s: 15.5873415565 dkappa: -0.000355709147444 } path_point { x: 587538.035522 y: 4140739.65872 z: 0.0 theta: -8.15046585952 kappa: -0.00328057164728 s: 15.9867340615 dkappa: -0.000358948490016 } path_point { x: 587537.918582 y: 4140739.27683 z: 0.0 theta: -8.15180408289 kappa: -0.00341839994566 s: 16.3861265665 dkappa: -0.000323854025636 } path_point { x: 587537.820539 y: 4140738.95807 z: 0.0 theta: -8.1529631684 kappa: -0.00353610224565 s: 16.7196165223 dkappa: -0.000382272351947 } path_point { x: 587537.72212 y: 4140738.63944 z: 0.0 theta: -8.15416474044 kappa: -0.00367303099695 s: 17.0531064782 dkappa: -0.000437659748071 } path_point { x: 587537.623311 y: 4140738.32092 z: 0.0 theta: -8.15541487562 kappa: -0.00382667590296 s: 17.386596434 dkappa: -0.000481023368458 } path_point { x: 587537.524096 y: 4140738.00253 z: 0.0 theta: -8.1567183133 kappa: -0.0039915276434 s: 17.7200863899 dkappa: -0.000503370367561 } path_point { x: 587537.424456 y: 4140737.68428 z: 0.0 theta: -8.15807745546 kappa: -0.00415907787434 s: 18.0535763457 dkappa: -0.00049570789983 } path_point { x: 587537.324376 y: 4140737.36616 z: 0.0 theta: -8.15949136658 kappa: -0.00431781922817 s: 18.3870663016 dkappa: -0.000449043119716 } path_point { x: 587537.203822 y: 4140736.98508 z: 0.0 theta: -8.16125564847 kappa: -0.00451677039391 s: 18.786761002 dkappa: -0.000545459363544 } path_point { x: 587537.08258 y: 4140736.60421 z: 0.0 theta: -8.16310687413 kappa: -0.00475188667463 s: 19.1864557025 dkappa: -0.00062711193343 } path_point { x: 587536.960615 y: 4140736.22358 z: 0.0 theta: -8.16505785681 kappa: -0.00501379590164 s: 19.586150403 dkappa: -0.000676631539935 } path_point { x: 587536.837887 y: 4140735.8432 z: 0.0 theta: -8.16711627631 kappa: -0.0052861834933 s: 19.9858451035 dkappa: -0.000676648893615 } path_point { x: 587536.714356 y: 4140735.46307 z: 0.0 theta: -8.16928190418 kappa: -0.00554579245501 s: 20.3855398039 dkappa: -0.000609794705029 } path_point { x: 587536.589998 y: 4140735.08327 z: 0.0 theta: -8.17155015694 kappa: -0.0058135820041 s: 20.7851827697 dkappa: -0.000729196874333 } path_point { x: 587536.464758 y: 4140734.70376 z: 0.0 theta: -8.17393462797 kappa: -0.00612617662766 s: 21.1848257354 dkappa: -0.000830187882871 } path_point { x: 587536.338589 y: 4140734.32455 z: 0.0 theta: -8.17645114096 kappa: -0.00647162373767 s: 21.5844687012 dkappa: -0.000889773720849 } path_point { x: 587536.211439 y: 4140733.94568 z: 0.0 theta: -8.17910890659 kappa: -0.00682878135182 s: 21.984111667 dkappa: -0.000884960378472 } } path_priority: 0 }
0
apollo_public_repos/apollo/modules/map
apollo_public_repos/apollo/modules/map/tools/map_xysl.cc
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "gflags/gflags.h" #include "cyber/common/file.h" #include "cyber/common/log.h" #include "modules/common/configs/config_gflags.h" #include "modules/common/util/string_util.h" #include "modules/map/hdmap/hdmap_common.h" #include "modules/map/hdmap/hdmap_impl.h" #include "modules/map/hdmap/hdmap_util.h" #include "modules/common_msgs/map_msgs/map_geometry.pb.h" DEFINE_bool(xy_to_sl, false, "calculate xy to sl"); DEFINE_bool(sl_to_xy, false, "calculate sl to xy"); DEFINE_bool(xy_to_lane, false, "calculate xy to lane"); DEFINE_bool(lane_to_lane, false, "calculate lane to lane"); DEFINE_bool(dump_lane_width, false, "dump all lane width info"); DEFINE_string(dump_txt_map, "", "text file name for dumping map"); DEFINE_string(dump_bin_map, "", "binary file name for dumping map"); DEFINE_string(overlap, "", "get overlap information"); DEFINE_string(signal_info, "", "print signal info"); DEFINE_double(x, 0.0, "x"); DEFINE_double(y, 0.0, "y"); DEFINE_string(lane, "", "lane_id"); DEFINE_string(from_lane, "", "from_lane"); DEFINE_string(to_lane, "", "to_lane"); DEFINE_double(s, 0.0, "s"); DEFINE_double(l, 0.0, "l"); using apollo::common::PointENU; namespace apollo { namespace hdmap { #define QUIT_IF(CONDITION, RET, LEVEL, MSG, ...) \ do { \ if (CONDITION) { \ RAW_LOG(LEVEL, MSG, ##__VA_ARGS__); \ return RET; \ } \ } while (0); std::ostream &operator<<( std::ostream &os, const ::google::protobuf::RepeatedPtrField<apollo::hdmap::Id> &ids) { for (int i = 0; i < ids.size(); ++i) { os << ids.Get(i).id(); if (i != ids.size() - 1) { os << ", "; } } return os; } #define GET_ELEMENT_BY_ID(TYPE) \ const TYPE##InfoConstPtr Get##TYPE(const std::string &id) { \ auto ret = HDMapUtil::BaseMap().Get##TYPE##ById(MakeMapId(id)); \ AERROR_IF(ret == nullptr) \ << "failed to find " << #TYPE << " with id: " << id; \ return ret; \ } class MapUtil { public: const OverlapInfo *GetOverlap(const std::string &overlap_id) const { auto ret = HDMapUtil::BaseMap().GetOverlapById(MakeMapId(overlap_id)); AERROR_IF(ret == nullptr) << "failed to find overlap[" << overlap_id << "]"; return ret.get(); } GET_ELEMENT_BY_ID(ClearArea); GET_ELEMENT_BY_ID(Crosswalk); GET_ELEMENT_BY_ID(Junction); GET_ELEMENT_BY_ID(Lane); GET_ELEMENT_BY_ID(Signal); GET_ELEMENT_BY_ID(SpeedBump); GET_ELEMENT_BY_ID(StopSign); GET_ELEMENT_BY_ID(YieldSign); template <class T> void Print(const T &t) { std::cout << t.DebugString(); } int PointToSL(const PointENU &point, std::string *lane_id, double *s, double *l, double *heading) const { QUIT_IF(lane_id == nullptr, -1, ERROR, "arg lane id is null"); QUIT_IF(s == nullptr, -2, ERROR, "arg s is null"); QUIT_IF(l == nullptr, -3, ERROR, "arg l is null"); LaneInfoConstPtr lane = nullptr; int ret = HDMapUtil::BaseMap().GetNearestLane(point, &lane, s, l); QUIT_IF(ret != 0, -4, ERROR, "get_nearest_lane failed with ret[%d]", ret); QUIT_IF(lane == nullptr, -5, ERROR, "lane is null"); *lane_id = lane->id().id(); *heading = lane->Heading(*s); return 0; } int SLToPoint(LaneInfoConstPtr lane_ptr, const double s, const double l, PointENU *point, double *heading) const { QUIT_IF(point == nullptr, -1, ERROR, "arg point is null"); QUIT_IF(heading == nullptr, -2, ERROR, "arg heading is null"); QUIT_IF(lane_ptr == nullptr, -3, ERROR, "the provided lane_ptr is null"); *point = lane_ptr->GetSmoothPoint(s); *heading = lane_ptr->Heading(s); auto normal_vec = common::math::Vec2d::CreateUnitVec2d(*heading + M_PI / 2.0) * l; point->set_x(point->x() + normal_vec.x()); point->set_y(point->y() + normal_vec.y()); return 0; } int LaneProjection(const apollo::common::math::Vec2d &vec2d, const std::string &lane_id, double *s, double *l, double *heading) const { QUIT_IF(s == nullptr, -1, ERROR, "arg s is nullptr"); const auto lane = HDMapUtil::BaseMap().GetLaneById(MakeMapId(lane_id)); QUIT_IF(lane == nullptr, -2, ERROR, "GetSignal_by_id[%s] failed", lane_id.c_str()); bool ret = lane->GetProjection(vec2d, s, l); QUIT_IF(!ret, -3, ERROR, "lane[%s] get projection for point[%f, %f] failed", lane_id.c_str(), vec2d.x(), vec2d.y()); *heading = lane->Heading(*s); return 0; } void PrintOverlap(const std::string &overlap_id) { const auto *overlap_ptr = GetOverlap(FLAGS_overlap); if (overlap_ptr == nullptr) { AERROR << "overlap_ptr is nullptr."; return; } ADEBUG << "overlap[" << overlap_ptr->id().id() << "] info[" << overlap_ptr->overlap().DebugString() << "]" << std::endl; for (const auto &object_info : overlap_ptr->overlap().object()) { if (object_info.has_lane_overlap_info()) { std::cout << "Lane : " << object_info.id().id() << std::endl; PrintLane(GetLane(object_info.id().id())); } else if (object_info.has_signal_overlap_info()) { std::cout << "Signal: " << object_info.id().id() << std::endl; Print(GetSignal(object_info.id().id())->signal()); } else if (object_info.has_stop_sign_overlap_info()) { std::cout << "StopSign: " << object_info.id().id() << std::endl; Print(GetStopSign(object_info.id().id())->stop_sign()); } else if (object_info.has_crosswalk_overlap_info()) { std::cout << "Crosswalk: " << object_info.id().id() << std::endl; Print(GetCrosswalk(object_info.id().id())->crosswalk()); } else if (object_info.has_junction_overlap_info()) { std::cout << "Junction: " << object_info.id().id() << std::endl; Print(GetJunction(object_info.id().id())->junction()); } else if (object_info.has_yield_sign_overlap_info()) { std::cout << "YieldSign: " << object_info.id().id() << std::endl; Print(GetYieldSign(object_info.id().id())->yield_sign()); } else if (object_info.has_clear_area_overlap_info()) { std::cout << "ClearArea: " << object_info.id().id() << std::endl; Print(GetClearArea(object_info.id().id())->clear_area()); } else if (object_info.has_speed_bump_overlap_info()) { std::cout << "SpeedBump: " << object_info.id().id() << std::endl; Print(GetSpeedBump(object_info.id().id())->speed_bump()); } else if (object_info.has_parking_space_overlap_info()) { std::cout << "ParkingSpace: " << object_info.id().id() << std::endl; } else { std::cout << "Unknown overlap type: " << object_info.DebugString(); } } } void PrintLane(const std::string &lane_id) { PrintLane(GetLane(lane_id)); } void PrintLane(LaneInfoConstPtr lane_ptr) { const auto &lane = lane_ptr->lane(); PointENU start_point; double start_heading = 0.0; SLToPoint(lane_ptr, 0, 0, &start_point, &start_heading); PointENU end_point; double end_heading = 0.0; SLToPoint(lane_ptr, lane_ptr->total_length(), 0, &end_point, &end_heading); double left_width = 0.0; double right_width = 0.0; lane_ptr->GetWidth(FLAGS_s, &left_width, &right_width); std::cout << "lane[" << FLAGS_lane << std::fixed << "] length[" << lane_ptr->total_length() << "] type[" << Lane_LaneType_Name(lane.type()) << "] turn[" << Lane_LaneTurn_Name(lane.turn()) << "] speed_limit[" << lane.speed_limit() << "] predecessor[" << lane.predecessor_id() << "] successor[" << lane.successor_id() << "] left_forward[" << lane.left_neighbor_forward_lane_id() << "] right_forward[" << lane.right_neighbor_forward_lane_id() << "] left_reverse[" << lane.left_neighbor_reverse_lane_id() << "] right_reverse[" << lane.right_neighbor_reverse_lane_id() << "], " << "Left Boundary: [ virtual?:" << std::boolalpha << lane.left_boundary().virtual_() << ", Type: ["; for (const auto &boundary_type : lane.left_boundary().boundary_type()) { std::cout << "s: " << boundary_type.s() << "->"; for (const auto t : boundary_type.types()) { std::cout << LaneBoundaryType::Type_Name( static_cast<LaneBoundaryType::Type>(t)) << ", "; } } std::cout << "]; Right Boundary: [ virtual?:" << std::boolalpha << lane.right_boundary().virtual_() << ", Type: "; for (const auto &boundary_type : lane.left_boundary().boundary_type()) { std::cout << "s: " << boundary_type.s() << "->"; for (const auto t : boundary_type.types()) { std::cout << LaneBoundaryType::Type_Name( static_cast<LaneBoundaryType::Type>(t)) << ", "; } } std::cout << "] overlap[" << lane.overlap_id() << "];" << " start point(x,y,heading):" << start_point.x() << "," << start_point.y() << "," << start_heading << " end point(x,y,heading):" << end_point.x() << "," << end_point.y() << "," << end_heading << " left_width:" << left_width << " right_width:" << right_width << std::endl; std::cout.unsetf(std::ios_base::fixed); if (FLAGS_dump_lane_width) { const auto sample_left_widthes = lane_ptr->sampled_left_width(); std::cout << "left width num: " << sample_left_widthes.size() << std::endl; int num = 0; for (auto w : sample_left_widthes) { std::cout << " " << w.second; if (++num % 10 == 0) { std::cout << std::endl; } } std::cout << std::endl; num = 0; const auto sample_right_widthes = lane_ptr->sampled_right_width(); std::cout << "right width num: " << sample_right_widthes.size() << std::endl; for (auto w : sample_right_widthes) { std::cout << " " << w.second; if (++num % 10 == 0) { std::cout << std::endl; } } std::cout << std::endl; } } }; // namespace hdmap } // namespace hdmap } // namespace apollo int main(int argc, char *argv[]) { google::InitGoogleLogging(argv[0]); google::ParseCommandLineFlags(&argc, &argv, true); const std::string map_file = apollo::hdmap::BaseMapFile(); bool valid_arg = false; apollo::hdmap::MapUtil map_util; if (FLAGS_xy_to_sl) { double x = FLAGS_x; double y = FLAGS_y; PointENU point; point.set_x(x); point.set_y(y); point.set_z(0); std::string lane_id; double s = 0.0; double l = 0.0; double heading = 0.0; map_util.PointToSL(point, &lane_id, &s, &l, &heading); printf("lane_id[%s], s[%f], l[%f], heading[%f]\n", lane_id.c_str(), s, l, heading); map_util.PrintLane(lane_id); valid_arg = true; } if (FLAGS_sl_to_xy) { PointENU point; double heading = 0.0; map_util.SLToPoint(map_util.GetLane(FLAGS_lane), FLAGS_s, FLAGS_l, &point, &heading); printf("x[%f] y[%f], heading[%f]\n", point.x(), point.y(), heading); map_util.PrintLane(FLAGS_lane); valid_arg = true; } if (FLAGS_xy_to_lane) { double s = 0.0; double l = 0.0; double heading = 0.0; int ret = map_util.LaneProjection({FLAGS_x, FLAGS_y}, FLAGS_lane, &s, &l, &heading); if (ret != 0) { printf("lane_projection for x[%f], y[%f], lane_id[%s] failed\n", FLAGS_x, FLAGS_y, FLAGS_lane.c_str()); return -1; } printf("lane[%s] s[%f], l[%f], heading[%f]\n", FLAGS_lane.c_str(), s, l, heading); map_util.PrintLane(FLAGS_lane); valid_arg = true; } if (FLAGS_lane_to_lane) { PointENU point; double src_heading = 0.0; map_util.SLToPoint(map_util.GetLane(FLAGS_from_lane), FLAGS_s, 0.0, &point, &src_heading); double target_s = 0.0; double target_l = 0.0; double target_heading = 0.0; int ret = map_util.LaneProjection({point.x(), point.y()}, FLAGS_to_lane, &target_s, &target_l, &target_heading); if (ret != 0) { printf("lane_projection for lane[%s], s[%f] to lane_id[%s] failed\n", FLAGS_from_lane.c_str(), FLAGS_s, FLAGS_to_lane.c_str()); return -1; } printf("lane[%s] s[%f], l[%f], heading[%f]\n", FLAGS_to_lane.c_str(), target_s, target_l, target_heading); map_util.PrintLane(FLAGS_from_lane); map_util.PrintLane(FLAGS_to_lane); valid_arg = true; } if (!FLAGS_lane.empty()) { const auto lane_ptr = map_util.GetLane(FLAGS_lane); if (!lane_ptr) { std::cout << "Could not find lane " << FLAGS_lane << " on map " << map_file; return 0; } map_util.PrintLane(lane_ptr); valid_arg = true; } if (!FLAGS_overlap.empty()) { map_util.PrintOverlap(FLAGS_overlap); valid_arg = true; } if (!FLAGS_signal_info.empty()) { std::cout << "Signal: " << FLAGS_signal_info << std::endl; map_util.Print(map_util.GetSignal(FLAGS_signal_info)->signal()); valid_arg = true; } if (!FLAGS_dump_txt_map.empty()) { apollo::hdmap::Map map; ACHECK(apollo::cyber::common::GetProtoFromFile(map_file, &map)); ACHECK(apollo::cyber::common::SetProtoToASCIIFile(map, FLAGS_dump_txt_map)); valid_arg = true; } if (!FLAGS_dump_bin_map.empty()) { apollo::hdmap::Map map; ACHECK(apollo::cyber::common::GetProtoFromFile(map_file, &map)); ACHECK( apollo::cyber::common::SetProtoToBinaryFile(map, FLAGS_dump_bin_map)); valid_arg = true; } if (!valid_arg) { std::cout << "usage: --map_dir map/file/directory/" << std::endl; std::cout << "usage: --base_map_filename map_file_name" << std::endl; std::cout << "usage: --dump_txt_map text_map_file" << std::endl; std::cout << "usage: --dump_bin_map bin_map_file" << std::endl; std::cout << "usage: --xy_to_sl --x x --y y" << std::endl; std::cout << "usage: --sl_to_xy --lane lane_id --s s --l l" << std::endl; std::cout << "usage: --xy_to_lane --x --y --lane" << std::endl; std::cout << "usage: --lane_to_lane --from_lane lane_id --s s --to_lane lane_id" << std::endl; std::cout << "usage: --lane lane_id" << std::endl; std::cout << "usage: --signal_info signal_id" << std::endl; std::cout << "usage: --overlap overlap_id" << std::endl; } return 0; }
0
apollo_public_repos/apollo/modules/map
apollo_public_repos/apollo/modules/map/tools/bin_map_generator.cc
/* Copyright 2017 The Apollo Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =========================================================================*/ #include "gflags/gflags.h" #include "modules/common_msgs/map_msgs/map.pb.h" #include "cyber/common/file.h" #include "cyber/common/log.h" #include "modules/map/hdmap/hdmap_util.h" /** * A map tool to transform .txt map to .bin map */ DEFINE_string(output_dir, "/tmp", "output map directory"); int main(int argc, char *argv[]) { google::InitGoogleLogging(argv[0]); FLAGS_alsologtostderr = true; google::ParseCommandLineFlags(&argc, &argv, true); const auto map_filename = FLAGS_map_dir + "/base_map.txt"; apollo::hdmap::Map pb_map; if (!apollo::cyber::common::GetProtoFromFile(map_filename, &pb_map)) { AERROR << "Failed to load txt map from " << map_filename; return -1; } else { AINFO << "Loaded txt map from " << map_filename; } const std::string output_bin_file = FLAGS_output_dir + "/base_map.bin"; if (!apollo::cyber::common::SetProtoToBinaryFile(pb_map, output_bin_file)) { AERROR << "Failed to generate binary base map"; return -1; } pb_map.Clear(); ACHECK(apollo::cyber::common::GetProtoFromFile(output_bin_file, &pb_map)) << "Failed to load generated binary base map"; AINFO << "Successfully converted .txt map to .bin map: " << output_bin_file; return 0; }
0
apollo_public_repos/apollo/modules/map
apollo_public_repos/apollo/modules/map/tools/refresh_default_end_way_point.cc
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ // A tool to refresh default_end_way_point.txt file after the map is updated. // // Usage: // bazel-bin/modules/map/tools/refresh_default_end_way_point --map_dir=</yours> // // How it works: // Assuming that the lanes information is changed while our end point's // absolute (x,y,z) is still correct. Then we can find the nearest point on // the new map as the new end point. #include "cyber/common/file.h" #include "cyber/common/log.h" #include "modules/map/hdmap/hdmap_util.h" #include "modules/common_msgs/routing_msgs/poi.pb.h" #include "modules/common_msgs/routing_msgs/routing.pb.h" namespace apollo { namespace hdmap { apollo::common::PointENU SLToXYZ(const std::string& lane_id, const double s, const double l) { const auto lane_info = HDMapUtil::BaseMap().GetLaneById(MakeMapId(lane_id)); ACHECK(lane_info); return lane_info->GetSmoothPoint(s); } void XYZToSL(const apollo::common::PointENU& point, std::string* lane_id, double* s, double* l) { ACHECK(lane_id); ACHECK(s); ACHECK(l); LaneInfoConstPtr lane = nullptr; CHECK_EQ(HDMapUtil::BaseMap().GetNearestLane(point, &lane, s, l), 0); *lane_id = lane->id().id(); } double XYZDistance(const apollo::common::PointENU& p1, const apollo::common::PointENU& p2) { const double x_diff = p1.x() - p2.x(); const double y_diff = p1.y() - p2.y(); const double z_diff = p1.z() - p2.z(); return std::sqrt(x_diff * x_diff + y_diff * y_diff + z_diff * z_diff); } void RefreshDefaultEndPoint() { apollo::routing::POI old_poi; ACHECK(cyber::common::GetProtoFromASCIIFile(EndWayPointFile(), &old_poi)); apollo::routing::POI new_poi; for (const auto& old_landmark : old_poi.landmark()) { apollo::routing::Landmark* new_landmark = new_poi.add_landmark(); new_landmark->set_name(old_landmark.name()); AINFO << "Refreshed point of interest: " << old_landmark.name(); // Read xyz from old point. for (const auto& old_end_point : old_landmark.waypoint()) { apollo::common::PointENU old_xyz; old_xyz.set_x(old_end_point.pose().x()); old_xyz.set_y(old_end_point.pose().y()); old_xyz.set_z(old_end_point.pose().z()); // Get new lane info from xyz. std::string new_lane; double new_s; double new_l; XYZToSL(old_xyz, &new_lane, &new_s, &new_l); // Get new xyz from lane info. const auto new_xyz = SLToXYZ(new_lane, new_s, new_l); // Update default end way point. apollo::routing::LaneWaypoint new_end_point; new_end_point.set_id(new_lane); new_end_point.set_s(new_s); auto* pose = new_end_point.mutable_pose(); pose->set_x(new_xyz.x()); pose->set_y(new_xyz.y()); pose->set_z(new_xyz.z()); *new_landmark->add_waypoint() = new_end_point; AINFO << "\n ============ from ============ \n" << old_end_point.DebugString() << "\n ============ to ============ \n" << new_end_point.DebugString() << "XYZ distance is " << XYZDistance(old_xyz, new_xyz); } } ACHECK(cyber::common::SetProtoToASCIIFile(new_poi, EndWayPointFile())); } } // namespace hdmap } // namespace apollo int main(int argc, char* argv[]) { google::InitGoogleLogging(argv[0]); google::ParseCommandLineFlags(&argc, &argv, true); FLAGS_logtostderr = true; apollo::hdmap::RefreshDefaultEndPoint(); return 0; }
0
apollo_public_repos/apollo/modules/map
apollo_public_repos/apollo/modules/map/tools/sim_map_generator.cc
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "absl/strings/match.h" #include "gflags/gflags.h" #include "modules/common_msgs/map_msgs/map.pb.h" #include "cyber/common/file.h" #include "cyber/common/log.h" #include "modules/common/configs/config_gflags.h" #include "modules/common/util/points_downsampler.h" #include "modules/map/hdmap/adapter/opendrive_adapter.h" #include "modules/map/hdmap/hdmap_util.h" /** * A map tool to generate a downsampled map to be displayed by dreamview * frontend. */ DEFINE_string(output_dir, "/tmp/", "output map directory"); DEFINE_double(angle_threshold, 1. / 180 * M_PI, /* 1 degree */ "Points are sampled when the accumulated direction change " "exceeds the threshold"); DEFINE_int32(downsample_distance, 5, "downsample rate for a normal path"); DEFINE_int32(steep_turn_downsample_distance, 1, "downsample rate for a steep turn path"); using apollo::common::PointENU; using apollo::common::util::DownsampleByAngle; using apollo::common::util::DownsampleByDistance; using apollo::cyber::common::GetProtoFromFile; using apollo::hdmap::Curve; using apollo::hdmap::Map; using apollo::hdmap::adapter::OpendriveAdapter; static void DownsampleCurve(Curve* curve) { auto* line_segment = curve->mutable_segment(0)->mutable_line_segment(); std::vector<PointENU> points(line_segment->point().begin(), line_segment->point().end()); line_segment->clear_point(); // NOTE: this not the most efficient implementation, but since this map tool // is only run once for each, we can probably live with that. // Downsample points by angle then by distance. auto sampled_indices = DownsampleByAngle(points, FLAGS_angle_threshold); std::vector<PointENU> downsampled_points; for (const size_t index : sampled_indices) { downsampled_points.push_back(points[index]); } sampled_indices = DownsampleByDistance(downsampled_points, FLAGS_downsample_distance, FLAGS_steep_turn_downsample_distance); for (const size_t index : sampled_indices) { *line_segment->add_point() = downsampled_points[index]; } size_t new_size = line_segment->point_size(); CHECK_GT(new_size, 1U); AINFO << "Lane curve downsampled from " << points.size() << " points to " << new_size << " points."; } static void DownsampleMap(Map* map_pb) { for (int i = 0; i < map_pb->lane_size(); ++i) { auto* lane = map_pb->mutable_lane(i); lane->clear_left_sample(); lane->clear_right_sample(); lane->clear_left_road_sample(); lane->clear_right_road_sample(); AINFO << "Downsampling lane " << lane->id().id(); DownsampleCurve(lane->mutable_central_curve()); DownsampleCurve(lane->mutable_left_boundary()->mutable_curve()); DownsampleCurve(lane->mutable_right_boundary()->mutable_curve()); } } static void OutputMap(const Map& map_pb) { std::ofstream map_txt_file(FLAGS_output_dir + "/sim_map.txt"); map_txt_file << map_pb.DebugString(); map_txt_file.close(); std::ofstream map_bin_file(FLAGS_output_dir + "/sim_map.bin"); std::string map_str; map_pb.SerializeToString(&map_str); map_bin_file << map_str; map_bin_file.close(); } int main(int32_t argc, char** argv) { google::InitGoogleLogging(argv[0]); FLAGS_alsologtostderr = true; FLAGS_v = 3; google::ParseCommandLineFlags(&argc, &argv, true); Map map_pb; const auto map_file = apollo::hdmap::BaseMapFile(); if (absl::EndsWith(map_file, ".xml")) { ACHECK(OpendriveAdapter::LoadData(map_file, &map_pb)); } else { ACHECK(GetProtoFromFile(map_file, &map_pb)) << "Fail to open: " << map_file; } DownsampleMap(&map_pb); OutputMap(map_pb); AINFO << "sim_map generated at:" << FLAGS_output_dir; return 0; }
0
apollo_public_repos/apollo/modules/map
apollo_public_repos/apollo/modules/map/tools/BUILD
load("@rules_cc//cc:defs.bzl", "cc_binary") load("//tools/install:install.bzl", "install") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) install( name = "install", targets = [ ":map_tool", ":map_xysl", ":refresh_default_end_way_point", ":sim_map_generator", ":proto_map_generator", ":bin_map_generator", ":quaternion_euler", ], runtime_dest = "modules/map/tools", deps = [ "//modules/map/tools/map_datachecker/proto:py_pb_map_tool" ] ) cc_binary( name = "map_tool", srcs = ["map_tool.cc"], deps = [ "//cyber", "//modules/common/configs:config_gflags", "//modules/map/hdmap:hdmap_util", "//modules/common_msgs/map_msgs:map_cc_proto", "@com_github_gflags_gflags//:gflags", ], ) cc_binary( name = "map_xysl", srcs = ["map_xysl.cc"], deps = [ "//modules/common/configs:config_gflags", "//modules/common/util", "//modules/map/hdmap:hdmap_util", "@com_github_gflags_gflags//:gflags", ], ) cc_binary( name = "refresh_default_end_way_point", srcs = ["refresh_default_end_way_point.cc"], deps = [ "//cyber", "//modules/map/hdmap:hdmap_util", "//modules/common_msgs/routing_msgs:poi_cc_proto", "//modules/common_msgs/routing_msgs:routing_cc_proto", ], ) cc_binary( name = "sim_map_generator", srcs = ["sim_map_generator.cc"], deps = [ "//cyber", "//modules/common_msgs/map_msgs:map_cc_proto", "//modules/common/configs:config_gflags", "//modules/common/util", "//modules/map/hdmap:hdmap_util", "//modules/map/hdmap/adapter:opendrive_adapter", "@com_github_gflags_gflags//:gflags", "@com_google_absl//:absl", ], ) cc_binary( name = "proto_map_generator", srcs = ["proto_map_generator.cc"], deps = [ "//cyber", "//modules/map/hdmap:hdmap_util", "//modules/map/hdmap/adapter:opendrive_adapter", "//modules/common_msgs/map_msgs:map_cc_proto", "@com_github_gflags_gflags//:gflags", ], ) cc_binary( name = "bin_map_generator", srcs = ["bin_map_generator.cc"], deps = [ "//cyber", "//modules/map/hdmap:hdmap_util", "//modules/common_msgs/map_msgs:map_cc_proto", "@com_github_gflags_gflags//:gflags", ], ) cc_binary( name = "quaternion_euler", srcs = ["quaternion_euler.cc"], deps = [ "//modules/common/math", "//modules/common/util", "@com_github_gflags_gflags//:gflags", ], ) cpplint()
0
apollo_public_repos/apollo/modules/map
apollo_public_repos/apollo/modules/map/tools/map_tool.cc
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "gflags/gflags.h" #include "cyber/common/file.h" #include "cyber/common/log.h" #include "modules/common/configs/config_gflags.h" #include "modules/map/hdmap/hdmap_util.h" #include "modules/common_msgs/map_msgs/map.pb.h" DEFINE_double(x_offset, 587318.4866268333, "x offset"); DEFINE_double(y_offset, 4141146.110116891, "y offset"); DEFINE_string(output_dir, "/tmp/", "output map directory"); using apollo::hdmap::Map; static void ShiftMap(Map* map_pb) { for (auto& lane : *(map_pb->mutable_lane())) { for (auto& segment : *(lane.mutable_central_curve()->mutable_segment())) { for (auto& point : *(segment.mutable_line_segment()->mutable_point())) { point.set_x(point.x() + FLAGS_x_offset); point.set_y(point.y() + FLAGS_y_offset); } } for (auto& segment : *(lane.mutable_left_boundary()->mutable_curve()->mutable_segment())) { for (auto& point : *(segment.mutable_line_segment()->mutable_point())) { point.set_x(point.x() + FLAGS_x_offset); point.set_y(point.y() + FLAGS_y_offset); } } for (auto& segment : *(lane.mutable_right_boundary()->mutable_curve()->mutable_segment())) { for (auto& point : *(segment.mutable_line_segment()->mutable_point())) { point.set_x(point.x() + FLAGS_x_offset); point.set_y(point.y() + FLAGS_y_offset); } } } for (auto& stop_sign : *(map_pb->mutable_stop_sign())) { for (auto& stop_line : *(stop_sign.mutable_stop_line())) { for (auto& segment : *(stop_line.mutable_segment())) { for (auto& point : *(segment.mutable_line_segment()->mutable_point())) { point.set_x(point.x() + FLAGS_x_offset); point.set_y(point.y() + FLAGS_y_offset); } } } } } static void OutputMap(const Map& map_pb) { const std::string txt_file = FLAGS_output_dir + "/base_map.txt"; const std::string bin_file = FLAGS_output_dir + "/base_map.bin"; ACHECK(apollo::cyber::common::SetProtoToASCIIFile(map_pb, txt_file)); ACHECK(apollo::cyber::common::SetProtoToBinaryFile(map_pb, bin_file)); } int main(int32_t argc, char** argv) { google::InitGoogleLogging(argv[0]); FLAGS_alsologtostderr = true; FLAGS_v = 3; google::ParseCommandLineFlags(&argc, &argv, true); Map map_pb; const auto map_file = apollo::hdmap::BaseMapFile(); ACHECK(apollo::cyber::common::GetProtoFromFile(map_file, &map_pb)) << "Fail to open:" << map_file; ShiftMap(&map_pb); OutputMap(map_pb); AINFO << "modified map at:" << FLAGS_output_dir; }
0
apollo_public_repos/apollo/modules/map
apollo_public_repos/apollo/modules/map/tools/quaternion_euler.cc
/****************************************************************************** * Copyright 2018 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "gflags/gflags.h" #include "cyber/common/log.h" #include "modules/common/math/euler_angles_zxy.h" #include "modules/common/math/quaternion.h" DEFINE_double(qx, 0, "quaternion x"); DEFINE_double(qy, 0, "quaternion y"); DEFINE_double(qz, 0, "quaternion z"); DEFINE_double(qw, 0, "quaternion w"); int main(int32_t argc, char** argv) { google::InitGoogleLogging(argv[0]); FLAGS_alsologtostderr = true; FLAGS_v = 3; google::ParseCommandLineFlags(&argc, &argv, true); apollo::common::math::EulerAnglesZXY<double> euler(FLAGS_qw, FLAGS_qx, FLAGS_qy, FLAGS_qz); AINFO << "roll: " << euler.roll() << " pitch:" << euler.pitch() << " yaw:" << euler.yaw(); AINFO << "heading: " << apollo::common::math::QuaternionToHeading(FLAGS_qw, FLAGS_qx, FLAGS_qy, FLAGS_qz) << " heading degree: " << 180.0 / M_PI * apollo::common::math::QuaternionToHeading(FLAGS_qw, FLAGS_qx, FLAGS_qy, FLAGS_qz); }
0
apollo_public_repos/apollo/modules/map
apollo_public_repos/apollo/modules/map/tools/proto_map_generator.cc
/* Copyright 2017 The Apollo Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =========================================================================*/ #include "gflags/gflags.h" #include "cyber/common/file.h" #include "cyber/common/log.h" #include "modules/map/hdmap/adapter/opendrive_adapter.h" #include "modules/map/hdmap/hdmap_util.h" #include "modules/common_msgs/map_msgs/map.pb.h" /** * A map tool to transform opendrive map to pb map */ DEFINE_string(output_dir, "/tmp", "output map directory"); int main(int argc, char **argv) { google::InitGoogleLogging(argv[0]); FLAGS_alsologtostderr = true; google::ParseCommandLineFlags(&argc, &argv, true); const auto map_filename = FLAGS_map_dir + "/base_map.xml"; apollo::hdmap::Map pb_map; ACHECK( apollo::hdmap::adapter::OpendriveAdapter::LoadData(map_filename, &pb_map)) << "fail to load data from : " << map_filename; const std::string output_ascii_file = FLAGS_output_dir + "/base_map.txt"; ACHECK(apollo::cyber::common::SetProtoToASCIIFile(pb_map, output_ascii_file)) << "failed to output ASCII format base map"; const std::string output_bin_file = FLAGS_output_dir + "/base_map.bin"; ACHECK(apollo::cyber::common::SetProtoToBinaryFile(pb_map, output_bin_file)) << "failed to output binary format base map"; pb_map.Clear(); ACHECK(apollo::cyber::common::GetProtoFromFile(output_bin_file, &pb_map)) << "failed to load map"; AINFO << "load map success"; return 0; }
0
apollo_public_repos/apollo/modules/map/tools/map_datachecker
apollo_public_repos/apollo/modules/map/tools/map_datachecker/proto/collection_check_message.proto
// Define Collection map-data check messages syntax = "proto2"; package apollo.hdmap; import "modules/map/tools/map_datachecker/proto/collection_error_code.proto"; enum CmdType { START = 1; CHECK = 2; STOP = 3; } enum DataType { MAP_MAKING = 1; MAP_CHECKOUT = 2; } message VerifyRange { optional double start_time = 1; // verify data's start timestamp optional double end_time = 2; // verify data's end timestamp } message LoopResult { required bool is_reached = 1; optional double loop_num = 2; // is_reached==false, indicate current laps } message TopicResult { repeated string topic_lack = 1; } message FrameRate { optional string topic = 1; optional double expected_rate = 2; optional double current_rate = 3; repeated string bad_record_name = 4; // record path file name, maybe more than one. } message VerifyResult { optional TopicResult topics = 1; repeated FrameRate rates = 2; } // ChannelVerify API, multi-service used message ChannelVerifyRequest { optional CmdType cmd = 1; optional string collect_id = 2; optional string path = 3; } message ChannelVerifyResponse { optional ErrorCode code = 1; optional VerifyResult result = 2; } // LoopsVerify API, multi-service used message LoopsVerifyRequest { optional CmdType cmd = 1; optional DataType type = 2; repeated VerifyRange range = 3; // used by map-worker. verify data's // timestamp ranges, maybe has more than one. } message LoopsVerifyResponse { optional ErrorCode code = 1; optional double progress = 2; optional LoopResult loop_result = 3; // usable when progress==1 } // DynamicAlign API, multi-service used message DynamicAlignRequest { optional CmdType cmd = 1; } message DynamicAlignResponse { optional ErrorCode code = 1; optional double progress = 2; } // StaticAlign API, multi-service used message StaticAlignRequest { optional CmdType cmd = 1; } message StaticAlignResponse { optional ErrorCode code = 1; optional double progress = 2; } // EightRoute API, multi-service used message EightRouteRequest { optional CmdType cmd = 1; } message EightRouteResponse { optional ErrorCode code = 1; optional double progress = 2; }
0
apollo_public_repos/apollo/modules/map/tools/map_datachecker
apollo_public_repos/apollo/modules/map/tools/map_datachecker/proto/collection_error_code.proto
syntax = "proto2"; package apollo.hdmap; enum ErrorCode { // common: x SUCCESS = 0; ERROR = 1; ERROR_REQUEST = 2; // invalid request parameter ERROR_SERVICE_NO_RESPONSE = 3; // cybertron services no response ERROR_REPEATED_START = 4; ERROR_CHECK_BEFORE_START = 5; // APP fetch: 10x ERROR_GPSBIN_LACK = 101; // gpsbin in car is lack or not complete. ERROR_DISKINFO_ERROR = 102; ERROR_DISK_UNMOUNT = 103; ERROR_SPEED_LACK = 105; WARNING_ODOMETER_LACK = 106; ERROR_RTKSTATUS_EMPTY = 107; // map-datachecker: 20x ERROR_MAPGRPC_NOT_CONNECT = 201; // map-datachecher: dynamic_align: 21x WARNING_NOT_STRAIGHT = 212; // heading too large, need warning straight driving. WARNING_PROGRESS_ROLLBACK = 213; // progress rollback because turn a corner. // map-datachecher: eight_route: 22x ERROR_NOT_EIGHT_ROUTE = 221; // heading is not an eight route. // map-datachecher: data_verify: 23x ERROR_CHANNEL_VERIFY_TOPIC_LACK = 231; // some topic lack in channel_verify. ERROR_CHANNEL_VERIFY_RATES_ABNORMAL = 232; // some topic rates abnormal ERROR_VERIFY_NO_RECORDERS = 233; // data verify has/find no recorders in disks. ERROR_LOOPS_NOT_REACHED = 234; // loops is not enough 5/6 ERROR_VERIFY_NO_GNSSPOS = 235; // cybertron has no gnsspos callback. // map-datachecker: static_align: 24x ERROR_NOT_STATIC = 241; // car is not static. ERROR_GNSS_SIGNAL_FAIL = 242; // gnss signal is broken | fail // task handler: 30x SUCCESS_TASK_EMPTY = 301; // indicate this collect task has no recorders before SUCCESS_TASK_STOCK = 302; // indicate this collect task has collected some recorders already }
0
apollo_public_repos/apollo/modules/map/tools/map_datachecker
apollo_public_repos/apollo/modules/map/tools/map_datachecker/proto/BUILD
## Auto generated by `proto_build_generator.py` load("@rules_proto//proto:defs.bzl", "proto_library") load("@rules_cc//cc:defs.bzl", "cc_proto_library") load("//tools:python_rules.bzl", "py_grpc_library", "py_proto_library") load("@com_github_grpc_grpc//bazel:cc_grpc_library.bzl", "cc_grpc_library") load("//tools/install:install.bzl", "install", "install_files") package(default_visibility = ["//visibility:public"]) install_files( name = "py_pb_map_tool", dest = "map/python/modules/map/tools/map_datachecker/proto", files = [ ":collection_check_message_py_pb2", ":collection_error_code_py_pb2", ":collection_service_py_pb2" ] ) cc_proto_library( name = "collection_check_message_cc_proto", deps = [ ":collection_check_message_proto", ], ) proto_library( name = "collection_check_message_proto", srcs = ["collection_check_message.proto"], deps = [ ":collection_error_code_proto", ], ) py_proto_library( name = "collection_check_message_py_pb2", deps = [ ":collection_check_message_proto", ":collection_error_code_py_pb2", ], ) cc_proto_library( name = "collection_error_code_cc_proto", deps = [ ":collection_error_code_proto", ], ) proto_library( name = "collection_error_code_proto", srcs = ["collection_error_code.proto"], ) py_proto_library( name = "collection_error_code_py_pb2", deps = [ ":collection_error_code_proto", ], ) cc_grpc_library( name = "collection_service_cc_grpc", srcs = [":collection_service_proto"], grpc_only = True, deps = [":collection_service_cc_proto"], ) cc_proto_library( name = "collection_service_cc_proto", deps = [ ":collection_service_proto", ], ) proto_library( name = "collection_service_proto", srcs = ["collection_service.proto"], deps = [ ":collection_check_message_proto", ], ) py_grpc_library( name = "collection_service_py_pb2_grpc", srcs = [":collection_service_proto"], deps = [":collection_service_py_pb2"], ) py_proto_library( name = "collection_service_py_pb2", deps = [ ":collection_service_proto", ":collection_check_message_py_pb2", ], )
0
apollo_public_repos/apollo/modules/map/tools/map_datachecker
apollo_public_repos/apollo/modules/map/tools/map_datachecker/proto/collection_service.proto
syntax = "proto2"; package apollo.hdmap; import "modules/map/tools/map_datachecker/proto/collection_check_message.proto"; // MAP service CollectionCheckerService { rpc ServiceDynamicAlign(DynamicAlignRequest) returns (DynamicAlignResponse) {} rpc ServiceStaticAlign(StaticAlignRequest) returns (StaticAlignResponse) {} rpc ServiceEightRoute(EightRouteRequest) returns (EightRouteResponse) {} rpc ServiceChannelVerify(ChannelVerifyRequest) returns (ChannelVerifyResponse) {} rpc ServiceLoopsVerify(LoopsVerifyRequest) returns (LoopsVerifyResponse) {} }
0
apollo_public_repos/apollo/modules/map/tools/map_datachecker
apollo_public_repos/apollo/modules/map/tools/map_datachecker/server/channel_verify_agent.cc
/****************************************************************************** * Copyright 2019 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/map/tools/map_datachecker/server/channel_verify_agent.h" #include <chrono> #include <map> #include <string> #include <thread> #include <utility> #include <vector> namespace apollo { namespace hdmap { ChannelVerifyAgent::ChannelVerifyAgent(std::shared_ptr<JsonConf> sp_conf) { sp_conf_ = sp_conf; sp_channel_checker_ = nullptr; sp_check_result_ = nullptr; } void ChannelVerifyAgent::Reset() { std::lock_guard<std::mutex> guard(stop_mutex_); need_stop_ = false; stopped_ = false; sp_channel_checker_ = std::make_shared<ChannelVerify>(sp_conf_); sp_check_result_ = nullptr; SetState(ChannelVerifyAgentState::IDLE); } grpc::Status ChannelVerifyAgent::ProcessGrpcRequest( grpc::ServerContext *context, ChannelVerifyRequest *request, ChannelVerifyResponse *response) { AINFO << "ChannelVerifyAgent Request: " << request->DebugString(); switch (request->cmd()) { case CmdType::START: AINFO << "ChannelVerifyAgent start"; StartCheck(request, response); break; case CmdType::CHECK: AINFO << "ChannelVerifyAgent check"; CheckResult(request, response); break; case CmdType::STOP: AINFO << "ChannelVerifyAgent stop"; StopCheck(request, response); break; default: response->set_code(ErrorCode::ERROR_REQUEST); AERROR << "command error"; } AINFO << "ChannelVerifyAgent progress: " << response->DebugString(); return grpc::Status::OK; } void ChannelVerifyAgent::StartCheck(ChannelVerifyRequest *request, ChannelVerifyResponse *response) { if (GetState() == ChannelVerifyAgentState::RUNNING) { AINFO << "ChannelVerify is RUNNING, do not need start again"; response->set_code(ErrorCode::ERROR_REPEATED_START); return; } Reset(); std::string records_path = request->path(); AsyncCheck(records_path); response->set_code(ErrorCode::SUCCESS); } void ChannelVerifyAgent::AsyncCheck(const std::string &records_path) { SetState(ChannelVerifyAgentState::RUNNING); std::thread doctor_strange([=]() { check_thread_id_ = std::this_thread::get_id(); int wait_sec = sp_conf_->channel_check_trigger_gap; while (true) { { std::lock_guard<std::mutex> guard(stop_mutex_); if (need_stop_) { break; } DoCheck(records_path); AINFO << "thread check done"; } std::this_thread::sleep_for(std::chrono::seconds(wait_sec)); if (std::this_thread::get_id() != check_thread_id_) { break; } } stopped_ = true; }); doctor_strange.detach(); AINFO << "ChannelVerifyAgent::async_check exit"; } void ChannelVerifyAgent::DoCheck(const std::string &records_path) { if (sp_channel_checker_ == nullptr) { sp_channel_checker_ = std::make_shared<ChannelVerify>(sp_conf_); } SetState(ChannelVerifyAgentState::RUNNING); sp_channel_checker_->Check(records_path); sp_check_result_ = sp_channel_checker_->get_check_result(); } int ChannelVerifyAgent::AddTopicLack( VerifyResult *result, const std::string &record_path, std::vector<std::string> const &lack_channels) { TopicResult *topics = result->mutable_topics(); for (const std::string &channel : lack_channels) { topics->add_topic_lack(channel); AINFO << record_path << " lack topic: " << channel; } return static_cast<int>(lack_channels.size()); } FrameRate *ChannelVerifyAgent::FindRates(VerifyResult *result, const std::string &channel) { for (FrameRate &rate : *result->mutable_rates()) { if (rate.topic() == channel) { return &rate; } } return nullptr; } int ChannelVerifyAgent::AddInadequateRate( VerifyResult *result, std::string const &record_path, std::map<std::string, std::pair<double, double>> const &inadequate_rate) { for (auto it = inadequate_rate.begin(); it != inadequate_rate.end(); ++it) { const std::string &channel = it->first; double expected_rate = it->second.first; double current_rate = it->second.second; FrameRate *rate = FindRates(result, channel); if (rate == nullptr) { rate = result->add_rates(); rate->add_bad_record_name(record_path); rate->set_topic(channel); rate->set_expected_rate(expected_rate); rate->set_current_rate(current_rate); } else { rate->set_current_rate(current_rate); rate->add_bad_record_name(record_path); } } return result->rates_size(); } void ChannelVerifyAgent::CheckResult(ChannelVerifyRequest *request, ChannelVerifyResponse *response) { if (GetState() == ChannelVerifyAgentState::IDLE) { AINFO << "ChannelVerify is not RUNNING, it should start first"; response->set_code(ErrorCode::ERROR_CHECK_BEFORE_START); return; } if (sp_channel_checker_ == nullptr || sp_check_result_ == nullptr) { AINFO << "check result is null. check later"; response->set_code(ErrorCode::SUCCESS); return; } if (sp_channel_checker_->GetReturnState() != ErrorCode::SUCCESS) { response->set_code(sp_channel_checker_->GetReturnState()); return; } response->set_code(ErrorCode::SUCCESS); VerifyResult *result = response->mutable_result(); for (CheckResultIterator it = sp_check_result_->begin(); it != sp_check_result_->end(); ++it) { int res = 0; // write rate res = AddInadequateRate(result, it->record_path, it->inadequate_rate); if (res > 0) { response->set_code(ErrorCode::ERROR_CHANNEL_VERIFY_RATES_ABNORMAL); } // write topic lack res = AddTopicLack(result, it->record_path, it->lack_channels); if (res > 0) { response->set_code(ErrorCode::ERROR_CHANNEL_VERIFY_TOPIC_LACK); } } } void ChannelVerifyAgent::StopCheck(ChannelVerifyRequest *request, ChannelVerifyResponse *response) { std::lock_guard<std::mutex> guard(stop_mutex_); need_stop_ = true; response->set_code(ErrorCode::SUCCESS); SetState(ChannelVerifyAgentState::IDLE); VerifyResult *result = response->mutable_result(); if (sp_check_result_ == nullptr) { return; } for (CheckResultIterator it = sp_check_result_->begin(); it != sp_check_result_->end(); ++it) { int res = 0; // write rate res = AddInadequateRate(result, it->record_path, it->inadequate_rate); if (res > 0) { response->set_code(ErrorCode::ERROR_CHANNEL_VERIFY_RATES_ABNORMAL); } // write topic lack res = AddTopicLack(result, it->record_path, it->lack_channels); if (res > 0) { response->set_code(ErrorCode::ERROR_CHANNEL_VERIFY_TOPIC_LACK); } } } void ChannelVerifyAgent::SetState(ChannelVerifyAgentState state) { state_ = state; } ChannelVerifyAgentState ChannelVerifyAgent::GetState() const { return state_; } } // namespace hdmap } // namespace apollo
0
apollo_public_repos/apollo/modules/map/tools/map_datachecker
apollo_public_repos/apollo/modules/map/tools/map_datachecker/server/main.cc
/****************************************************************************** * Copyright 2019 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "cyber/cyber.h" #include "modules/map/tools/map_datachecker/server/worker.h" int main(int argc, char** argv) { google::ParseCommandLineFlags(&argc, &argv, true); AINFO << "cyber init"; if (apollo::cyber::Init(argv[0])) { AINFO << "init succeed"; } else { AERROR << "init failed"; } google::SetStderrLogging(FLAGS_minloglevel); AINFO << "starting worker"; apollo::hdmap::Mapdatachecker worker; if (!worker.Start()) { AFATAL << "Start Mapdatachecker Failed!"; return -1; } apollo::cyber::WaitForShutdown(); return 0; }
0
apollo_public_repos/apollo/modules/map/tools/map_datachecker
apollo_public_repos/apollo/modules/map/tools/map_datachecker/server/pose_collection_agent.cc
/****************************************************************************** * Copyright 2019 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/map/tools/map_datachecker/server/pose_collection_agent.h" #include <vector> #include "cyber/common/time_conversion.h" #include "modules/map/tools/map_datachecker/server/pose_collection.h" namespace apollo { namespace hdmap { PoseCollectionAgent::PoseCollectionAgent(std::shared_ptr<JsonConf> sp_conf) { sp_pj_transformer_ = std::make_shared<PJTransformer>(50); sp_conf_ = sp_conf; Reset(); } void PoseCollectionAgent::Reset() { sp_pose_collection_ = std::make_shared<PoseCollection>(sp_conf_); } void PoseCollectionAgent::OnBestgnssposCallback( const std::shared_ptr<const apollo::drivers::gnss::GnssBestPose> &bestgnsspos) { if (sp_pose_collection_ == nullptr) { sp_pose_collection_ = std::make_shared<PoseCollection>(sp_conf_); } double time_stamp = apollo::cyber::common::GpsToUnixSeconds( bestgnsspos->measurement_time()); // in seconds FramePose pose; if (sp_conf_->use_system_time) { pose.time_stamp = UnixNow(); AINFO << "system time: " << pose.time_stamp; } else { pose.time_stamp = time_stamp; } pose.latitude = bestgnsspos->latitude(); pose.longitude = bestgnsspos->longitude(); pose.altitude = bestgnsspos->height_msl(); pose.solution_status = bestgnsspos->sol_status(); pose.position_type = bestgnsspos->sol_type(); pose.diff_age = bestgnsspos->differential_age(); double latitude_std = bestgnsspos->latitude_std_dev(); double longitude_std = bestgnsspos->longitude_std_dev(); double altitude_std = bestgnsspos->height_std_dev(); pose.local_std = std::sqrt(latitude_std * latitude_std + longitude_std * longitude_std + altitude_std * altitude_std); pose.tx = pose.longitude * kDEGRESS_TO_RADIANS; pose.ty = pose.latitude * kDEGRESS_TO_RADIANS; pose.tz = pose.altitude; sp_pj_transformer_->LatlongToUtm(1, 1, &pose.tx, &pose.ty, &pose.tz); std::lock_guard<std::mutex> mutex_locker(mutex_); static FILE *pose_file = fopen("poses.txt", "w"); static int count = 0; fprintf(stderr, "%d:%lf %lf %lf %lf 0.0 0.0 0.0 0.0\n", ++count, pose.time_stamp, pose.tx, pose.ty, pose.tz); fprintf(pose_file, "%lf %lf %lf %lf 0.0 0.0 0.0 0.0\n", pose.time_stamp, pose.tx, pose.ty, pose.tz); fflush(pose_file); sp_pose_collection_->Collect(pose); } std::shared_ptr<std::vector<FramePose>> PoseCollectionAgent::GetPoses() const { if (sp_pose_collection_ == nullptr) { return nullptr; } return sp_pose_collection_->GetPoses(); } } // namespace hdmap } // namespace apollo
0
apollo_public_repos/apollo/modules/map/tools/map_datachecker
apollo_public_repos/apollo/modules/map/tools/map_datachecker/server/laps_checker.h
/****************************************************************************** * Copyright 2019 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #pragma once #include <map> #include <memory> #include <utility> #include <vector> #include "modules/map/tools/map_datachecker/proto/collection_error_code.pb.h" #include "modules/map/tools/map_datachecker/server/common.h" namespace apollo { namespace hdmap { struct GridMeta { double alpha; std::vector<int> idxs; }; typedef std::vector<GridMeta> Grid; class LapsChecker { public: LapsChecker(const std::vector<FramePose>& poses, int laps_to_check, std::shared_ptr<JsonConf> sp_conf); ErrorCode Check(); double GetProgress() const; double GetConfidence(); size_t GetLap() const; ErrorCode GetReturnState(); private: void DoCheck(); int SetupGridsMap(); int CheckLaps(); int CheckParams(); int GetMinMax(); int DoSetupGridsMap(); double CalcAlpha(int pose_index); int PutPoseToGrid(int pose_index, int grid_y, int grid_x); int PutPoseToNeighborGrid(int pose_index); int GetPassedGrid(int pose_index, std::vector<int>* sp_grid_x, std::vector<int>* sp_grid_y); double Slope(double x1, double y1, double x2, double y2); int GatherTimestamps(std::vector<double>* sp_stamps, double alpha, int center_x, int center_y); inline int SetProgress(double p); public: const std::vector<FramePose>& poses_; double maxx_, maxy_, minx_, miny_; std::vector<std::vector<Grid>> grids_map_; bool finished_; private: std::vector<double> confidence_; double progress_; size_t laps_to_check_; size_t possible_max_laps_; size_t lap_; std::shared_ptr<JsonConf> sp_conf_; ErrorCode return_state_; }; } // namespace hdmap } // namespace apollo
0
apollo_public_repos/apollo/modules/map/tools/map_datachecker
apollo_public_repos/apollo/modules/map/tools/map_datachecker/server/loops_verify_agent.cc
/****************************************************************************** * Copyright 2019 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #include "modules/map/tools/map_datachecker/server/loops_verify_agent.h" #include <limits> #include <utility> #include <vector> namespace apollo { namespace hdmap { LoopsVerifyAgent::LoopsVerifyAgent( std::shared_ptr<JsonConf> sp_conf, std::shared_ptr<PoseCollectionAgent> sp_pose_collection_agent) { sp_conf_ = sp_conf; sp_pose_collection_agent_ = sp_pose_collection_agent; } grpc::Status LoopsVerifyAgent::ProcessGrpcRequest( grpc::ServerContext *context, LoopsVerifyRequest *request, LoopsVerifyResponse *response) { AINFO << "LoopsVerifyAgent request is: " << request->DebugString(); switch (request->cmd()) { case CmdType::START: StartVerify(request, response); break; case CmdType::CHECK: CheckVerify(request, response); break; case CmdType::STOP: StopVerify(request, response); break; default: response->set_progress(0.0); response->set_code(ErrorCode::ERROR_REQUEST); AERROR << "command error"; } AINFO << "LoopsVerifyAgent response is: " << response->DebugString(); return grpc::Status::OK; } void LoopsVerifyAgent::StartVerify(LoopsVerifyRequest *request, LoopsVerifyResponse *response) { AINFO << "Call StartVerify"; if (GetState() == LoopsVerifyAgentState::RUNNING) { AINFO << "Verify is working, do not need start again"; response->set_progress(0.0); response->set_code(ErrorCode::ERROR_REPEATED_START); } std::shared_ptr<std::vector<std::pair<double, double>>> sp_range = get_verify_range(request); double loops_to_check = static_cast<double>(GetLoopsToCheck(request)); std::thread loop_verify_thread( [=]() { this->DoStartVerify(sp_range, loops_to_check); }); loop_verify_thread.detach(); SetState(LoopsVerifyAgentState::RUNNING); response->set_code(ErrorCode::SUCCESS); response->set_progress(0.0); } void LoopsVerifyAgent::CheckVerify(LoopsVerifyRequest *request, LoopsVerifyResponse *response) { AINFO << "Call CheckVerify"; if (GetState() == LoopsVerifyAgentState::IDLE) { AINFO << "Verify does not work, start first"; response->set_progress(0.0); response->set_code(ErrorCode::ERROR_CHECK_BEFORE_START); return; } if (sp_laps_checker_ == nullptr) { AINFO << "sp_laps_checker_ is preparing, check later"; response->set_progress(0.0); response->set_code(ErrorCode::SUCCESS); return; } if (sp_laps_checker_->GetReturnState() != 0) { response->set_progress(0.0); response->set_code(sp_laps_checker_->GetReturnState()); return; } double progress = sp_laps_checker_->GetProgress(); response->set_progress(progress); response->set_code(ErrorCode::SUCCESS); if (std::abs(1.0 - progress) < 1e-8) { double confidence = sp_laps_checker_->GetConfidence(); size_t lap = sp_laps_checker_->GetLap(); AINFO << "acquired lap: " << lap << ", conf: " << confidence; LoopResult *loop_result = response->mutable_loop_result(); loop_result->set_loop_num(static_cast<double>(lap)); bool is_reached = lap >= GetLoopsToCheck(request); loop_result->set_is_reached(is_reached); DataType data_type = request->type(); if (data_type == DataType::MAP_CHECKOUT) { if (is_reached) { loop_result->set_loop_num( static_cast<double>(sp_conf_->laps_number_additional)); } else { loop_result->set_loop_num( lap - sp_conf_->laps_number >= 0 ? static_cast<double>(lap - sp_conf_->laps_number) : 0.0); } } } } void LoopsVerifyAgent::StopVerify(LoopsVerifyRequest *request, LoopsVerifyResponse *response) { AINFO << "call StopVerify"; response->set_code(ErrorCode::SUCCESS); SetState(LoopsVerifyAgentState::IDLE); if (sp_laps_checker_ == nullptr) { response->set_progress(0.0); return; } response->set_progress(sp_laps_checker_->GetProgress()); if (std::abs(1.0 - sp_laps_checker_->GetProgress()) < 1e-8) { double conf = sp_laps_checker_->GetConfidence(); size_t lap = sp_laps_checker_->GetLap(); AINFO << "acquired lap: " << lap << ", conf: " << conf; LoopResult *loop_result = response->mutable_loop_result(); loop_result->set_loop_num(static_cast<double>(lap)); bool is_reached = lap >= GetLoopsToCheck(request); loop_result->set_is_reached(is_reached); DataType data_type = request->type(); if (data_type == DataType::MAP_CHECKOUT) { if (is_reached) { loop_result->set_loop_num( static_cast<double>(sp_conf_->laps_number_additional)); } else { loop_result->set_loop_num( lap - sp_conf_->laps_number >= 0 ? static_cast<double>(lap - sp_conf_->laps_number) : 0.0); } } } } std::shared_ptr<std::vector<std::pair<double, double>>> LoopsVerifyAgent::get_verify_range(LoopsVerifyRequest *request) { std::shared_ptr<std::vector<std::pair<double, double>>> sp_range( new std::vector<std::pair<double, double>>()); for (const VerifyRange &range : request->range()) { sp_range->push_back(std::make_pair(range.start_time(), range.end_time())); } return sp_range; } size_t LoopsVerifyAgent::GetLoopsToCheck(LoopsVerifyRequest *request) { size_t loops_to_check = 0; DataType data_type = request->type(); if (data_type == DataType::MAP_MAKING) { loops_to_check += sp_conf_->laps_number; } else if (data_type == DataType::MAP_CHECKOUT) { loops_to_check += sp_conf_->laps_number; loops_to_check += sp_conf_->laps_number_additional; } return loops_to_check; } double LoopsVerifyAgent::GetRangeIndex( std::shared_ptr<std::vector<std::pair<double, double>>> sp_range, std::vector<bool> *sp_range_index, std::shared_ptr<std::vector<FramePose>> sp_vec_poses) { if (sp_range == nullptr) { AINFO << "error, sp_range is null"; return -1.0; } std::vector<std::pair<double, double>> &range = *sp_range; size_t size = range.size(); double min_time = std::numeric_limits<double>::max(); double max_time = std::numeric_limits<double>::min(); for (size_t i = 0; i < size; ++i) { if (range[i].first >= range[i].second) { AINFO << "range error, [" << range[i].first << "," << range[i].second << "]"; continue; } if (range[i].first < min_time) { min_time = range[i].first; } if (range[i].second > max_time) { max_time = range[i].second; } } AINFO << "[get_range_index] min_time:" << min_time << ", max_time" << max_time; std::vector<bool> &range_index = *sp_range_index; if (size == 0 || max_time <= 0) { AINFO << "time range vector size is 0 or time range error"; if (sp_vec_poses->size() > 0) { AINFO << "set index to check all poses"; min_time = sp_vec_poses->front().time_stamp; max_time = sp_vec_poses->back().time_stamp; int index_size = static_cast<int>(max_time - min_time + 1); range_index.resize(index_size, true); } } else { AINFO << "time range vector size > 0"; int index_size = static_cast<int>(max_time - min_time + 1); range_index.resize(index_size, false); for (int i = 0; i < static_cast<int>(size); ++i) { int start_time = static_cast<int>(range[i].first - min_time); int end_time = static_cast<int>(range[i].second - min_time); for (int j = start_time; j <= end_time; ++j) { range_index[j] = true; } } } AINFO << "returned min_time:" << min_time; return min_time; } int LoopsVerifyAgent::GetPosesToCheck( std::shared_ptr<std::vector<std::pair<double, double>>> sp_range, std::vector<FramePose> *sp_poses) { if (sp_pose_collection_agent_ == nullptr) { AINFO << "error, sp_pose_collection_agent is null"; return -1; } std::shared_ptr<std::vector<FramePose>> sp_vec_poses = sp_pose_collection_agent_->GetPoses(); if (sp_vec_poses == nullptr || sp_vec_poses->size() == 0) { AINFO << "error, no pose"; return -1; } std::vector<bool> range_index; double min_time = GetRangeIndex(sp_range, &range_index, sp_vec_poses); if (min_time == std::numeric_limits<double>::max() || range_index.empty()) { AINFO << "min_time: " << min_time << ", range_index size: " << range_index.size(); return -1; } std::vector<FramePose> &vec_poses = *sp_vec_poses; size_t pose_size = vec_poses.size(); size_t range_size = range_index.size(); std::vector<FramePose> &poses = *sp_poses; poses.clear(); for (size_t i = 0; i < pose_size; ++i) { int time = static_cast<int>(vec_poses[i].time_stamp - min_time); if (time >= static_cast<int>(range_size)) { break; } if (time >= 0 && range_index[time]) { poses.push_back(vec_poses[i]); } } return 0; } int LoopsVerifyAgent::DoStartVerify( std::shared_ptr<std::vector<std::pair<double, double>>> sp_range, double loops_to_check) { clock_t start = clock(); std::vector<FramePose> all_poses; GetPosesToCheck(sp_range, &all_poses); sp_laps_checker_ = std::shared_ptr<LapsChecker>( new LapsChecker(all_poses, static_cast<int>(loops_to_check), sp_conf_)); sp_laps_checker_->Check(); double duration = (static_cast<double>(clock() - start)) / CLOCKS_PER_SEC; AINFO << "checking laps cost " << duration << " seconds"; return 0; } void LoopsVerifyAgent::SetState(LoopsVerifyAgentState state) { state_ = state; } LoopsVerifyAgentState LoopsVerifyAgent::GetState() { return state_; } } // namespace hdmap } // namespace apollo
0
apollo_public_repos/apollo/modules/map/tools/map_datachecker
apollo_public_repos/apollo/modules/map/tools/map_datachecker/server/pose_collection.h
/****************************************************************************** * Copyright 2019 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #pragma once #include <memory> #include <vector> #include "modules/map/tools/map_datachecker/server/common.h" namespace apollo { namespace hdmap { enum class PoseCollectionState { IDLE, RUNNING }; class PoseCollection { public: explicit PoseCollection(std::shared_ptr<JsonConf> sp_conf); void Collect(const FramePose& pose); std::shared_ptr<std::vector<FramePose>> GetPoses() const; private: void Reset(); private: std::shared_ptr<std::vector<FramePose>> sp_poses_ = nullptr; std::shared_ptr<JsonConf> sp_conf_ = nullptr; }; } // namespace hdmap } // namespace apollo
0
apollo_public_repos/apollo/modules/map/tools/map_datachecker
apollo_public_repos/apollo/modules/map/tools/map_datachecker/server/eight_route.h
/****************************************************************************** * Copyright 2019 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ #pragma once #include <memory> #include <vector> #include "grpc++/grpc++.h" #include "cyber/cyber.h" #include "modules/map/tools/map_datachecker/server/alignment.h" #include "modules/map/tools/map_datachecker/server/common.h" #include "modules/map/tools/map_datachecker/server/worker_gflags.h" namespace apollo { namespace hdmap { // TODO(yuanyijun): change EightRoute to FigureEight class EightRoute : public Alignment { public: explicit EightRoute(std::shared_ptr<JsonConf> sp_conf); ErrorCode Process(const std::vector<FramePose>& poses); double GetProgress() const; private: void Reset(); bool IsEightRoutePose(const std::vector<FramePose>& poses, int pose_index); double GetGoodPoseDuring(); double GetEightRouteProgress(const std::vector<FramePose>& poses); private: double progress_; double last_yaw_; }; } // namespace hdmap } // namespace apollo
0