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/planning/scenarios
apollo_public_repos/apollo/modules/planning/scenarios/narrow_street_u_turn/narrow_street_u_turn_scenario.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. *****************************************************************************/ /** * @file **/ #pragma once #include <memory> #include "modules/planning/scenarios/scenario.h" namespace apollo { namespace planning { namespace scenario { namespace narrow_street_u_turn { class NarrowStreetUTurnScenario : public Scenario { public: NarrowStreetUTurnScenario(const ScenarioConfig& config, const ScenarioContext* context, const std::shared_ptr<DependencyInjector>& injector) : Scenario(config, context, injector) {} std::unique_ptr<Stage> CreateStage( const ScenarioConfig::StageConfig& stage_config, const std::shared_ptr<DependencyInjector>& injector) override; }; } // namespace narrow_street_u_turn } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios
apollo_public_repos/apollo/modules/planning/scenarios/narrow_street_u_turn/BUILD
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test") load("//third_party/gpus:common.bzl", "if_cuda", "if_rocm") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) PLANNING_COPTS = ["-DMODULE_NAME=\\\"planning\\\""] cc_library( name = "narrow_street_u_turn", copts = PLANNING_COPTS, deps = [ ":narrow_street_u_turn_scenario", ], ) cc_library( name = "narrow_street_u_turn_scenario", srcs = ["narrow_street_u_turn_scenario.cc"], hdrs = ["narrow_street_u_turn_scenario.h"], copts = PLANNING_COPTS, deps = [ "//cyber", "//modules/common_msgs/planning_msgs:planning_cc_proto", "//modules/planning/scenarios:scenario", ], ) cc_test( name = "narrow_street_u_turn_scenario_test", size = "small", srcs = ["narrow_street_u_turn_scenario_test.cc"], data = [ "//modules/planning:planning_conf", ], linkopts = ["-lgomp"], deps = [ ":narrow_street_u_turn", "@com_google_googletest//:gtest_main", ] + if_cuda([ "@local_config_cuda//cuda:cudart", ]) + if_rocm([ "@local_config_rocm//rocm:hip", ]), linkstatic = True, ) cpplint()
0
apollo_public_repos/apollo/modules/planning/scenarios
apollo_public_repos/apollo/modules/planning/scenarios/narrow_street_u_turn/narrow_street_u_turn_scenario.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. *****************************************************************************/ /** * @file **/ #include "modules/planning/scenarios/narrow_street_u_turn/narrow_street_u_turn_scenario.h" namespace apollo { namespace planning { namespace scenario { namespace narrow_street_u_turn { std::unique_ptr<Stage> NarrowStreetUTurnScenario::CreateStage( const ScenarioConfig::StageConfig& stage_config, const std::shared_ptr<DependencyInjector>& injector) { return nullptr; } } // namespace narrow_street_u_turn } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stage_pre_stop.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. *****************************************************************************/ /** * @file **/ #include "modules/planning/scenarios/stop_sign/unprotected/stage_pre_stop.h" #include <algorithm> #include <utility> #include "modules/common_msgs/perception_msgs/perception_obstacle.pb.h" #include "cyber/common/log.h" #include "cyber/time/clock.h" #include "modules/common/configs/vehicle_config_helper.h" #include "modules/common/util/point_factory.h" #include "modules/common/vehicle_state/vehicle_state_provider.h" #include "modules/map/pnc_map/path.h" #include "modules/planning/common/frame.h" #include "modules/planning/common/planning_context.h" #include "modules/planning/common/util/util.h" #include "modules/planning/scenarios/util/util.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { using apollo::common::TrajectoryPoint; using apollo::cyber::Clock; using apollo::hdmap::HDMapUtil; using apollo::hdmap::LaneInfoConstPtr; using apollo::hdmap::OverlapInfoConstPtr; using apollo::hdmap::PathOverlap; using apollo::perception::PerceptionObstacle; using StopSignLaneVehicles = std::unordered_map<std::string, std::vector<std::string>>; Stage::StageStatus StopSignUnprotectedStagePreStop::Process( const TrajectoryPoint& planning_init_point, Frame* frame) { ADEBUG << "stage: PreStop"; CHECK_NOTNULL(frame); scenario_config_.CopyFrom(GetContext()->scenario_config); bool plan_ok = ExecuteTaskOnReferenceLine(planning_init_point, frame); if (!plan_ok) { AERROR << "StopSignUnprotectedStagePreStop planning error"; } const auto& reference_line_info = frame->reference_line_info().front(); std::string stop_sign_overlap_id = GetContext()->current_stop_sign_overlap_id; // get overlap along reference line PathOverlap* current_stop_sign_overlap = scenario::util::GetOverlapOnReferenceLine(reference_line_info, stop_sign_overlap_id, ReferenceLineInfo::STOP_SIGN); if (!current_stop_sign_overlap) { return FinishScenario(); } static constexpr double kPassStopLineBuffer = 0.3; // unit: m const double adc_front_edge_s = reference_line_info.AdcSlBoundary().end_s(); const double distance_adc_pass_stop_sign = adc_front_edge_s - current_stop_sign_overlap->start_s; if (distance_adc_pass_stop_sign <= kPassStopLineBuffer) { // not passed stop line, check valid stop if (CheckADCStop(adc_front_edge_s, current_stop_sign_overlap->start_s)) { return FinishStage(); } } else { // passed stop line return FinishStage(); } // PRE-STOP const PathDecision& path_decision = reference_line_info.path_decision(); auto& watch_vehicles = GetContext()->watch_vehicles; std::vector<std::string> watch_vehicle_ids; for (const auto& vehicle : watch_vehicles) { std::copy(vehicle.second.begin(), vehicle.second.end(), std::back_inserter(watch_vehicle_ids)); // for debug string std::string associated_lane_id = vehicle.first; std::string s; for (const std::string& vehicle_id : vehicle.second) { s = s.empty() ? vehicle_id : s + "," + vehicle_id; } ADEBUG << "watch_vehicles: lane_id[" << associated_lane_id << "] vehicle[" << s << "]"; } // pass vehicles being watched to DECIDER_RULE_BASED_STOP task // for visualization for (const auto& perception_obstacle_id : watch_vehicle_ids) { injector_->planning_context() ->mutable_planning_status() ->mutable_stop_sign() ->add_wait_for_obstacle_id(perception_obstacle_id); } for (const auto* obstacle : path_decision.obstacles().Items()) { // add to watch_vehicles if adc is still proceeding to stop sign AddWatchVehicle(*obstacle, &watch_vehicles); } return Stage::RUNNING; } /** * @brief: add a watch vehicle which arrives at stop sign ahead of adc */ int StopSignUnprotectedStagePreStop::AddWatchVehicle( const Obstacle& obstacle, StopSignLaneVehicles* watch_vehicles) { CHECK_NOTNULL(watch_vehicles); const PerceptionObstacle& perception_obstacle = obstacle.Perception(); const std::string& perception_obstacle_id = std::to_string(perception_obstacle.id()); PerceptionObstacle::Type obstacle_type = perception_obstacle.type(); std::string obstacle_type_name = PerceptionObstacle_Type_Name(obstacle_type); // check type if (obstacle_type != PerceptionObstacle::UNKNOWN && obstacle_type != PerceptionObstacle::UNKNOWN_MOVABLE && obstacle_type != PerceptionObstacle::BICYCLE && obstacle_type != PerceptionObstacle::VEHICLE) { ADEBUG << "obstacle_id[" << perception_obstacle_id << "] type[" << obstacle_type_name << "]. skip"; return 0; } const auto point = common::util::PointFactory::ToPointENU(perception_obstacle.position()); double obstacle_s = 0.0; double obstacle_l = 0.0; LaneInfoConstPtr obstacle_lane; if (HDMapUtil::BaseMap().GetNearestLaneWithHeading( point, 5.0, perception_obstacle.theta(), M_PI / 3.0, &obstacle_lane, &obstacle_s, &obstacle_l) != 0) { ADEBUG << "obstacle_id[" << perception_obstacle_id << "] type[" << obstacle_type_name << "]: Failed to find nearest lane from map for position: " << point.DebugString() << "; heading[" << perception_obstacle.theta() << "]"; return -1; } if (!obstacle_lane->IsOnLane(common::util::PointFactory::ToVec2d( perception_obstacle.position()))) { ADEBUG << "obstacle_id[" << perception_obstacle_id << "] type[" << obstacle_type_name << "]: is off road. " << point.DebugString() << "; heading[" << perception_obstacle.theta() << "]"; return -1; } // check obstacle is on an associate lane guarded by stop sign std::string obstable_lane_id = obstacle_lane.get()->id().id(); auto assoc_lane_it = std::find_if( GetContext()->associated_lanes.begin(), GetContext()->associated_lanes.end(), [&obstable_lane_id]( std::pair<LaneInfoConstPtr, OverlapInfoConstPtr>& assc_lane) { return assc_lane.first.get()->id().id() == obstable_lane_id; }); if (assoc_lane_it == GetContext()->associated_lanes.end()) { ADEBUG << "obstacle_id[" << perception_obstacle_id << "] type[" << obstacle_type_name << "] lane_id[" << obstable_lane_id << "] not associated with current stop_sign. skip"; return -1; } // check a valid stop for stop line of the stop_sign auto over_lap_info = assoc_lane_it->second.get()->GetObjectOverlapInfo( obstacle_lane.get()->id()); if (over_lap_info == nullptr) { AERROR << "can't find over_lap_info for id: " << obstable_lane_id; return -1; } const double stop_line_s = over_lap_info->lane_overlap_info().start_s(); const double obstacle_end_s = obstacle_s + perception_obstacle.length() / 2; const double distance_to_stop_line = stop_line_s - obstacle_end_s; if (distance_to_stop_line > scenario_config_.watch_vehicle_max_valid_stop_distance()) { ADEBUG << "obstacle_id[" << perception_obstacle_id << "] type[" << obstacle_type_name << "] distance_to_stop_line[" << distance_to_stop_line << "]; stop_line_s" << stop_line_s << "]; obstacle_end_s[" << obstacle_end_s << "] too far from stop line. skip"; return -1; } // use a vector since motocycles/bicycles can be more than one std::vector<std::string> vehicles = (*watch_vehicles)[obstacle_lane->id().id()]; if (std::find(vehicles.begin(), vehicles.end(), perception_obstacle_id) == vehicles.end()) { ADEBUG << "AddWatchVehicle: lane[" << obstacle_lane->id().id() << "] obstacle_id[" << perception_obstacle_id << "]"; (*watch_vehicles)[obstacle_lane->id().id()].push_back( perception_obstacle_id); } return 0; } /** * @brief: check valid stop_sign stop */ bool StopSignUnprotectedStagePreStop::CheckADCStop( const double adc_front_edge_s, const double stop_line_s) { const double adc_speed = injector_->vehicle_state()->linear_velocity(); const double max_adc_stop_speed = common::VehicleConfigHelper::Instance() ->GetConfig() .vehicle_param() .max_abs_speed_when_stopped(); if (adc_speed > max_adc_stop_speed) { ADEBUG << "ADC not stopped: speed[" << adc_speed << "]"; return false; } // check stop close enough to stop line of the stop_sign const double distance_stop_line_to_adc_front_edge = stop_line_s - adc_front_edge_s; ADEBUG << "distance_stop_line_to_adc_front_edge[" << distance_stop_line_to_adc_front_edge << "]"; if (distance_stop_line_to_adc_front_edge > scenario_config_.max_valid_stop_distance()) { ADEBUG << "not a valid stop. too far from stop line."; return false; } // TODO(all): check no BICYCLE in between. return true; } Stage::StageStatus StopSignUnprotectedStagePreStop::FinishStage() { GetContext()->stop_start_time = Clock::NowInSeconds(); next_stage_ = StageType::STOP_SIGN_UNPROTECTED_STOP; return Stage::FINISHED; } } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stage_stop.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. *****************************************************************************/ /** * @file **/ #include "modules/planning/scenarios/stop_sign/unprotected/stage_stop.h" #include <algorithm> #include <utility> #include "cyber/common/log.h" #include "cyber/time/clock.h" #include "modules/common/util/point_factory.h" #include "modules/map/pnc_map/path.h" #include "modules/common_msgs/perception_msgs/perception_obstacle.pb.h" #include "modules/planning/common/frame.h" #include "modules/planning/common/planning_context.h" #include "modules/planning/common/util/util.h" #include "modules/planning/scenarios/util/util.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { using apollo::common::TrajectoryPoint; using apollo::cyber::Clock; using apollo::hdmap::HDMapUtil; using apollo::hdmap::LaneInfoConstPtr; using apollo::hdmap::OverlapInfoConstPtr; using apollo::hdmap::PathOverlap; using apollo::perception::PerceptionObstacle; using StopSignLaneVehicles = std::unordered_map<std::string, std::vector<std::string>>; Stage::StageStatus StopSignUnprotectedStageStop::Process( const TrajectoryPoint& planning_init_point, Frame* frame) { ADEBUG << "stage: Stop"; CHECK_NOTNULL(frame); scenario_config_.CopyFrom(GetContext()->scenario_config); bool plan_ok = ExecuteTaskOnReferenceLine(planning_init_point, frame); if (!plan_ok) { AERROR << "StopSignUnprotectedPreStop planning error"; } const auto& reference_line_info = frame->reference_line_info().front(); std::string stop_sign_overlap_id = GetContext()->current_stop_sign_overlap_id; // refresh overlap along reference line PathOverlap* current_stop_sign_overlap = scenario::util::GetOverlapOnReferenceLine(reference_line_info, stop_sign_overlap_id, ReferenceLineInfo::STOP_SIGN); if (!current_stop_sign_overlap) { return FinishScenario(); } // set right_of_way_status const double stop_sign_start_s = current_stop_sign_overlap->start_s; reference_line_info.SetJunctionRightOfWay(stop_sign_start_s, false); static constexpr double kPassStopLineBuffer = 1.0; // unit: m const double adc_front_edge_s = reference_line_info.AdcSlBoundary().end_s(); const double distance_adc_pass_stop_sign = adc_front_edge_s - stop_sign_start_s; // passed stop line too far if (distance_adc_pass_stop_sign > kPassStopLineBuffer) { return FinishStage(); } // check on wait-time auto start_time = GetContext()->stop_start_time; const double wait_time = Clock::NowInSeconds() - start_time; ADEBUG << "stop_start_time[" << start_time << "] wait_time[" << wait_time << "]"; if (wait_time < scenario_config_.stop_duration_sec()) { return Stage::RUNNING; } // check on watch_vehicles auto& watch_vehicles = GetContext()->watch_vehicles; if (watch_vehicles.empty()) { return FinishStage(); } // get all vehicles currently watched std::vector<std::string> watch_vehicle_ids; for (const auto& watch_vehicle : watch_vehicles) { std::copy(watch_vehicle.second.begin(), watch_vehicle.second.end(), std::back_inserter(watch_vehicle_ids)); // for debug std::string s; for (const std::string& vehicle : watch_vehicle.second) { s = s.empty() ? vehicle : s + "," + vehicle; } const std::string& associated_lane_id = watch_vehicle.first; ADEBUG << "watch_vehicles: lane_id[" << associated_lane_id << "] vehicle[" << s << "]"; } // remove duplicates (caused when same vehicle on mutiple lanes) watch_vehicle_ids.erase( unique(watch_vehicle_ids.begin(), watch_vehicle_ids.end()), watch_vehicle_ids.end()); if (watch_vehicle_ids.empty()) { return FinishStage(); } // pass vehicles being watched to DECIDER_RULE_BASED_STOP task // for visualization for (const auto& perception_obstacle_id : watch_vehicle_ids) { injector_->planning_context() ->mutable_planning_status() ->mutable_stop_sign() ->add_wait_for_obstacle_id(perception_obstacle_id); } // check timeout while waiting for only one vehicle if (wait_time > scenario_config_.stop_timeout_sec() && watch_vehicle_ids.size() <= 1) { return FinishStage(); } const PathDecision& path_decision = reference_line_info.path_decision(); RemoveWatchVehicle(path_decision, &watch_vehicles); return Stage::RUNNING; } /** * @brief: remove a watch vehicle which not stopping at stop sign any more */ int StopSignUnprotectedStageStop::RemoveWatchVehicle( const PathDecision& path_decision, StopSignLaneVehicles* watch_vehicles) { CHECK_NOTNULL(watch_vehicles); for (auto& vehicle : *watch_vehicles) { // associated_lane/stop_sign info std::string associated_lane_id = vehicle.first; auto assoc_lane_it = std::find_if( GetContext()->associated_lanes.begin(), GetContext()->associated_lanes.end(), [&associated_lane_id]( std::pair<LaneInfoConstPtr, OverlapInfoConstPtr>& assc_lane) { return assc_lane.first.get()->id().id() == associated_lane_id; }); if (assoc_lane_it == GetContext()->associated_lanes.end()) { continue; } auto stop_sign_over_lap_info = assoc_lane_it->second.get()->GetObjectOverlapInfo( hdmap::MakeMapId(associated_lane_id)); if (stop_sign_over_lap_info == nullptr) { AERROR << "can't find stop_sign_over_lap_info for id: " << associated_lane_id; continue; } const double stop_line_end_s = stop_sign_over_lap_info->lane_overlap_info().end_s(); const auto lane = HDMapUtil::BaseMap().GetLaneById(hdmap::MakeMapId(associated_lane_id)); if (lane == nullptr) { continue; } auto stop_sign_point = lane.get()->GetSmoothPoint(stop_line_end_s); std::vector<std::string> remove_vehicles; auto& vehicles = vehicle.second; for (const auto& perception_obstacle_id : vehicles) { // watched-vehicle info const PerceptionObstacle* perception_obstacle = path_decision.FindPerceptionObstacle(perception_obstacle_id); if (!perception_obstacle) { ADEBUG << "mark ERASE obstacle_id[" << perception_obstacle_id << "] not exist"; remove_vehicles.push_back(perception_obstacle_id); continue; } PerceptionObstacle::Type obstacle_type = perception_obstacle->type(); std::string obstacle_type_name = PerceptionObstacle_Type_Name(obstacle_type); auto obstacle_point = common::util::PointFactory::ToPointENU( perception_obstacle->position()); double distance = common::util::DistanceXY(stop_sign_point, obstacle_point); ADEBUG << "obstacle_id[" << perception_obstacle_id << "] distance[" << distance << "]"; // TODO(all): move 10.0 to conf if (distance > 10.0) { ADEBUG << "mark ERASE obstacle_id[" << perception_obstacle_id << "]"; remove_vehicles.push_back(perception_obstacle_id); } } for (const auto& perception_obstacle_id : remove_vehicles) { ADEBUG << "ERASE obstacle_id[" << perception_obstacle_id << "]"; vehicles.erase( std::remove(vehicles.begin(), vehicles.end(), perception_obstacle_id), vehicles.end()); } } return 0; } Stage::StageStatus StopSignUnprotectedStageStop::FinishStage() { // update PlanningContext injector_->planning_context() ->mutable_planning_status() ->mutable_stop_sign() ->set_done_stop_sign_overlap_id( GetContext()->current_stop_sign_overlap_id); injector_->planning_context() ->mutable_planning_status() ->mutable_stop_sign() ->clear_wait_for_obstacle_id(); GetContext()->creep_start_time = Clock::NowInSeconds(); next_stage_ = StageType::STOP_SIGN_UNPROTECTED_CREEP; return Stage::FINISHED; } } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stage_creep_test.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/planning/scenarios/stop_sign/unprotected/stage_creep.h" #include "cyber/common/file.h" #include "cyber/common/log.h" #include "gtest/gtest.h" #include "modules/planning/common/planning_gflags.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { class StopSignUnprotectedStageCreepTest : public ::testing::Test { public: virtual void SetUp() { config_.set_stage_type(StageType::STOP_SIGN_UNPROTECTED_CREEP); injector_ = std::make_shared<DependencyInjector>(); } protected: ScenarioConfig::StageConfig config_; std::shared_ptr<DependencyInjector> injector_; }; TEST_F(StopSignUnprotectedStageCreepTest, Init) { StopSignUnprotectedStageCreep stop_sign_unprotected_stage_creep(config_, injector_); EXPECT_EQ(stop_sign_unprotected_stage_creep.Name(), StageType_Name( StageType::STOP_SIGN_UNPROTECTED_CREEP)); } } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stage_creep.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. *****************************************************************************/ /** * @file **/ #pragma once #include <memory> #include "modules/planning/proto/planning_config.pb.h" #include "modules/planning/scenarios/stage.h" #include "modules/planning/scenarios/stop_sign/unprotected/stop_sign_unprotected_scenario.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { struct StopSignUnprotectedContext; class StopSignUnprotectedStageCreep : public Stage { public: StopSignUnprotectedStageCreep( const ScenarioConfig::StageConfig& config, const std::shared_ptr<DependencyInjector>& injector) : Stage(config, injector) {} private: Stage::StageStatus Process(const common::TrajectoryPoint& planning_init_point, Frame* frame) override; StopSignUnprotectedContext* GetContext() { return Stage::GetContextAs<StopSignUnprotectedContext>(); } private: Stage::StageStatus FinishStage(); private: ScenarioStopSignUnprotectedConfig scenario_config_; }; } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stage_creep.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. *****************************************************************************/ /** * @file **/ #include "modules/planning/scenarios/stop_sign/unprotected/stage_creep.h" #include <string> #include "cyber/common/log.h" #include "cyber/time/clock.h" #include "modules/common/vehicle_state/vehicle_state_provider.h" #include "modules/map/pnc_map/path.h" #include "modules/common_msgs/perception_msgs/perception_obstacle.pb.h" #include "modules/planning/common/frame.h" #include "modules/planning/common/planning_context.h" #include "modules/planning/common/speed_profile_generator.h" #include "modules/planning/common/util/util.h" #include "modules/planning/scenarios/util/util.h" #include "modules/planning/tasks/deciders/creep_decider/creep_decider.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { using apollo::common::TrajectoryPoint; using apollo::cyber::Clock; using apollo::hdmap::PathOverlap; Stage::StageStatus StopSignUnprotectedStageCreep::Process( const TrajectoryPoint& planning_init_point, Frame* frame) { ADEBUG << "stage: Creep"; CHECK_NOTNULL(frame); scenario_config_.CopyFrom(GetContext()->scenario_config); if (!config_.enabled()) { return FinishStage(); } bool plan_ok = ExecuteTaskOnReferenceLine(planning_init_point, frame); if (!plan_ok) { AERROR << "StopSignUnprotectedStageCreep planning error"; } const auto& reference_line_info = frame->reference_line_info().front(); std::string stop_sign_overlap_id = GetContext()->current_stop_sign_overlap_id; // get overlap along reference line PathOverlap* current_stop_sign_overlap = scenario::util::GetOverlapOnReferenceLine(reference_line_info, stop_sign_overlap_id, ReferenceLineInfo::STOP_SIGN); if (!current_stop_sign_overlap) { return FinishScenario(); } // set right_of_way_status const double stop_sign_start_s = current_stop_sign_overlap->start_s; reference_line_info.SetJunctionRightOfWay(stop_sign_start_s, false); const double stop_sign_end_s = current_stop_sign_overlap->end_s; const double wait_time = Clock::NowInSeconds() - GetContext()->creep_start_time; const double timeout_sec = scenario_config_.creep_timeout_sec(); auto* task = dynamic_cast<CreepDecider*>(FindTask(TaskConfig::CREEP_DECIDER)); if (task == nullptr) { AERROR << "task is nullptr"; return FinishStage(); } double creep_stop_s = stop_sign_end_s + task->FindCreepDistance(*frame, reference_line_info); const double distance = creep_stop_s - reference_line_info.AdcSlBoundary().end_s(); if (distance <= 0.0) { auto& rfl_info = frame->mutable_reference_line_info()->front(); *(rfl_info.mutable_speed_data()) = SpeedProfileGenerator::GenerateFixedDistanceCreepProfile(0.0, 0); } if (task->CheckCreepDone(*frame, reference_line_info, stop_sign_end_s, wait_time, timeout_sec)) { return FinishStage(); } return Stage::RUNNING; } Stage::StageStatus StopSignUnprotectedStageCreep::FinishStage() { next_stage_ = StageType::STOP_SIGN_UNPROTECTED_INTERSECTION_CRUISE; return Stage::FINISHED; } } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stop_sign_unprotected_scenario_test.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. *****************************************************************************/ /** * @file **/ #include "modules/planning/scenarios/stop_sign/unprotected/stop_sign_unprotected_scenario.h" #include "cyber/common/file.h" #include "cyber/common/log.h" #include "gtest/gtest.h" #include "modules/planning/common/planning_gflags.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { class StopSignUnprotectedScenarioTest : public ::testing::Test { public: virtual void SetUp() {} protected: std::unique_ptr<StopSignUnprotectedScenario> scenario_; }; TEST_F(StopSignUnprotectedScenarioTest, Init) { FLAGS_scenario_stop_sign_unprotected_config_file = "/apollo/modules/planning/conf/" "scenario/stop_sign_unprotected_config.pb.txt"; ScenarioConfig config; EXPECT_TRUE(apollo::cyber::common::GetProtoFromFile( FLAGS_scenario_stop_sign_unprotected_config_file, &config)); ScenarioContext context; auto injector = std::make_shared<DependencyInjector>(); scenario_.reset(new StopSignUnprotectedScenario(config, &context, injector)); EXPECT_EQ(scenario_->scenario_type(), ScenarioType::STOP_SIGN_UNPROTECTED); } } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stage_intersection_cruise.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. *****************************************************************************/ /** * @file **/ #include "modules/planning/scenarios/stop_sign/unprotected/stage_intersection_cruise.h" #include "cyber/common/log.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { Stage::StageStatus StopSignUnprotectedStageIntersectionCruise::Process( const common::TrajectoryPoint& planning_init_point, Frame* frame) { ADEBUG << "stage: IntersectionCruise"; CHECK_NOTNULL(frame); bool plan_ok = ExecuteTaskOnReferenceLine(planning_init_point, frame); if (!plan_ok) { AERROR << "StopSignUnprotectedStageIntersectionCruise plan error"; } bool stage_done = stage_impl_.CheckDone(*frame, ScenarioType::STOP_SIGN_UNPROTECTED, config_, injector_->planning_context(), false); if (stage_done) { return FinishStage(); } return Stage::RUNNING; } Stage::StageStatus StopSignUnprotectedStageIntersectionCruise::FinishStage() { return FinishScenario(); } } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stage_pre_stop.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. *****************************************************************************/ /** * @file **/ #pragma once #include <memory> #include <string> #include <unordered_map> #include <vector> #include "modules/planning/proto/planning_config.pb.h" #include "modules/planning/scenarios/stage.h" #include "modules/planning/scenarios/stop_sign/unprotected/stop_sign_unprotected_scenario.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { struct StopSignUnprotectedContext; class StopSignUnprotectedStagePreStop : public Stage { public: StopSignUnprotectedStagePreStop( const ScenarioConfig::StageConfig& config, const std::shared_ptr<DependencyInjector>& injector) : Stage(config, injector) {} private: Stage::StageStatus Process(const common::TrajectoryPoint& planning_init_point, Frame* frame) override; StopSignUnprotectedContext* GetContext() { return GetContextAs<StopSignUnprotectedContext>(); } int AddWatchVehicle(const Obstacle& obstacle, std::unordered_map<std::string, std::vector<std::string>>* watch_vehicles); bool CheckADCStop(const double adc_front_edge_s, const double stop_line_s); private: Stage::StageStatus FinishStage(); private: ScenarioStopSignUnprotectedConfig scenario_config_; }; } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stop_sign_unprotected_scenario.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. *****************************************************************************/ /** * @file **/ #include "modules/planning/scenarios/stop_sign/unprotected/stop_sign_unprotected_scenario.h" #include "cyber/common/log.h" #include "modules/common_msgs/perception_msgs/perception_obstacle.pb.h" #include "modules/planning/common/frame.h" #include "modules/planning/common/planning_context.h" #include "modules/planning/common/planning_gflags.h" #include "modules/planning/proto/planning_config.pb.h" #include "modules/planning/scenarios/stop_sign/unprotected/stage_creep.h" #include "modules/planning/scenarios/stop_sign/unprotected/stage_intersection_cruise.h" #include "modules/planning/scenarios/stop_sign/unprotected/stage_pre_stop.h" #include "modules/planning/scenarios/stop_sign/unprotected/stage_stop.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { using apollo::hdmap::HDMapUtil; using apollo::hdmap::StopSignInfo; using apollo::hdmap::StopSignInfoConstPtr; using StopSignLaneVehicles = std::unordered_map<std::string, std::vector<std::string>>; apollo::common::util::Factory< StageType, Stage, Stage* (*)(const ScenarioConfig::StageConfig& stage_config, const std::shared_ptr<DependencyInjector>& injector)> StopSignUnprotectedScenario::s_stage_factory_; void StopSignUnprotectedScenario::Init() { if (init_) { return; } Scenario::Init(); if (!GetScenarioConfig()) { AERROR << "fail to get scenario specific config"; return; } const std::string stop_sign_overlap_id = injector_->planning_context() ->planning_status() .stop_sign() .current_stop_sign_overlap_id(); if (stop_sign_overlap_id.empty()) { AERROR << "Could not find stop sign"; return; } hdmap::StopSignInfoConstPtr stop_sign = HDMapUtil::BaseMap().GetStopSignById( hdmap::MakeMapId(stop_sign_overlap_id)); if (!stop_sign) { AERROR << "Could not find stop sign: " << stop_sign_overlap_id; return; } context_.current_stop_sign_overlap_id = stop_sign_overlap_id; context_.watch_vehicles.clear(); GetAssociatedLanes(*stop_sign); init_ = true; } void StopSignUnprotectedScenario::RegisterStages() { if (!s_stage_factory_.Empty()) { s_stage_factory_.Clear(); } s_stage_factory_.Register( StageType::STOP_SIGN_UNPROTECTED_PRE_STOP, [](const ScenarioConfig::StageConfig& config, const std::shared_ptr<DependencyInjector>& injector) -> Stage* { return new StopSignUnprotectedStagePreStop(config, injector); }); s_stage_factory_.Register( StageType::STOP_SIGN_UNPROTECTED_STOP, [](const ScenarioConfig::StageConfig& config, const std::shared_ptr<DependencyInjector>& injector) -> Stage* { return new StopSignUnprotectedStageStop(config, injector); }); s_stage_factory_.Register( StageType::STOP_SIGN_UNPROTECTED_CREEP, [](const ScenarioConfig::StageConfig& config, const std::shared_ptr<DependencyInjector>& injector) -> Stage* { return new StopSignUnprotectedStageCreep(config, injector); }); s_stage_factory_.Register( StageType::STOP_SIGN_UNPROTECTED_INTERSECTION_CRUISE, [](const ScenarioConfig::StageConfig& config, const std::shared_ptr<DependencyInjector>& injector) -> Stage* { return new StopSignUnprotectedStageIntersectionCruise(config, injector); }); } std::unique_ptr<Stage> StopSignUnprotectedScenario::CreateStage( const ScenarioConfig::StageConfig& stage_config, const std::shared_ptr<DependencyInjector>& injector) { if (s_stage_factory_.Empty()) { RegisterStages(); } auto ptr = s_stage_factory_.CreateObjectOrNull(stage_config.stage_type(), stage_config, injector); if (ptr) { ptr->SetContext(&context_); } return ptr; } /* * read scenario specific configs and set in context_ for stages to read */ bool StopSignUnprotectedScenario::GetScenarioConfig() { if (!config_.has_stop_sign_unprotected_config()) { AERROR << "miss scenario specific config"; return false; } context_.scenario_config.CopyFrom(config_.stop_sign_unprotected_config()); return true; } /* * get all the lanes associated/guarded by a stop sign */ int StopSignUnprotectedScenario::GetAssociatedLanes( const StopSignInfo& stop_sign_info) { context_.associated_lanes.clear(); std::vector<StopSignInfoConstPtr> associated_stop_signs; HDMapUtil::BaseMap().GetStopSignAssociatedStopSigns(stop_sign_info.id(), &associated_stop_signs); for (const auto stop_sign : associated_stop_signs) { if (stop_sign == nullptr) { continue; } const auto& associated_lane_ids = stop_sign->OverlapLaneIds(); for (const auto& lane_id : associated_lane_ids) { const auto lane = HDMapUtil::BaseMap().GetLaneById(lane_id); if (lane == nullptr) { continue; } for (const auto& stop_sign_overlap : lane->stop_signs()) { auto over_lap_info = stop_sign_overlap->GetObjectOverlapInfo(stop_sign.get()->id()); if (over_lap_info != nullptr) { context_.associated_lanes.push_back( std::make_pair(lane, stop_sign_overlap)); ADEBUG << "stop_sign: " << stop_sign_info.id().id() << "; associated_lane: " << lane_id.id() << "; associated_stop_sign: " << stop_sign.get()->id().id(); } } } } return 0; } } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stage_stop.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. *****************************************************************************/ /** * @file **/ #pragma once #include <memory> #include <string> #include <unordered_map> #include <vector> #include "modules/planning/proto/planning_config.pb.h" #include "modules/planning/scenarios/stage.h" #include "modules/planning/scenarios/stop_sign/unprotected/stop_sign_unprotected_scenario.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { struct StopSignUnprotectedContext; class StopSignUnprotectedStageStop : public Stage { public: StopSignUnprotectedStageStop( const ScenarioConfig::StageConfig& config, const std::shared_ptr<DependencyInjector>& injector) : Stage(config, injector) {} private: Stage::StageStatus Process(const common::TrajectoryPoint& planning_init_point, Frame* frame) override; StopSignUnprotectedContext* GetContext() { return GetContextAs<StopSignUnprotectedContext>(); } int RemoveWatchVehicle( const PathDecision& path_decision, std::unordered_map<std::string, std::vector<std::string>>* watch_vehicles); private: Stage::StageStatus FinishStage(); private: ScenarioStopSignUnprotectedConfig scenario_config_; }; } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stage_pre_stop_test.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/planning/scenarios/stop_sign/unprotected/stage_pre_stop.h" #include "cyber/common/file.h" #include "cyber/common/log.h" #include "gtest/gtest.h" #include "modules/planning/common/planning_gflags.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { class StopSignUnprotectedStagePreStopTest : public ::testing::Test { public: virtual void SetUp() { config_.set_stage_type(StageType::STOP_SIGN_UNPROTECTED_PRE_STOP); injector_ = std::make_shared<DependencyInjector>(); } protected: ScenarioConfig::StageConfig config_; std::shared_ptr<DependencyInjector> injector_; }; TEST_F(StopSignUnprotectedStagePreStopTest, Init) { StopSignUnprotectedStagePreStop stop_sign_unprotected_stage_pre_stop( config_, injector_); EXPECT_EQ(stop_sign_unprotected_stage_pre_stop.Name(), StageType_Name( StageType::STOP_SIGN_UNPROTECTED_PRE_STOP)); } } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stage_stop_test.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/planning/scenarios/stop_sign/unprotected/stage_stop.h" #include "cyber/common/file.h" #include "cyber/common/log.h" #include "gtest/gtest.h" #include "modules/planning/common/planning_gflags.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { class StopSignUnprotectedStageStopTest : public ::testing::Test { public: virtual void SetUp() { config_.set_stage_type(StageType::STOP_SIGN_UNPROTECTED_STOP); injector_ = std::make_shared<DependencyInjector>(); } protected: ScenarioConfig::StageConfig config_; std::shared_ptr<DependencyInjector> injector_; }; TEST_F(StopSignUnprotectedStageStopTest, Init) { StopSignUnprotectedStageStop stop_sign_unprotected_stage_stop(config_, injector_); EXPECT_EQ(stop_sign_unprotected_stage_stop.Name(), StageType_Name( StageType::STOP_SIGN_UNPROTECTED_STOP)); } } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stage_intersection_cruise.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. *****************************************************************************/ /** * @file **/ #pragma once #include <memory> #include "modules/planning/scenarios/common/stage_intersection_cruise_impl.h" #include "modules/planning/scenarios/stage.h" #include "modules/planning/scenarios/stop_sign/unprotected/stop_sign_unprotected_scenario.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { struct StopSignUnprotectedContext; class StopSignUnprotectedStageIntersectionCruise : public Stage { public: StopSignUnprotectedStageIntersectionCruise( const ScenarioConfig::StageConfig& config, const std::shared_ptr<DependencyInjector>& injector) : Stage(config, injector) {} private: Stage::StageStatus Process(const common::TrajectoryPoint& planning_init_point, Frame* frame) override; StopSignUnprotectedContext* GetContext() { return GetContextAs<StopSignUnprotectedContext>(); } Stage::StageStatus FinishStage(); private: ScenarioStopSignUnprotectedConfig scenario_config_; StageIntersectionCruiseImpl stage_impl_; }; } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/BUILD
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test") load("//tools:cpplint.bzl", "cpplint") load("//third_party/gpus:common.bzl", "if_cuda", "if_rocm") package(default_visibility = ["//visibility:public"]) cc_library( name = "stop_sign_unprotected_scenario", srcs = [ "stage_creep.cc", "stage_intersection_cruise.cc", "stage_pre_stop.cc", "stage_stop.cc", "stop_sign_unprotected_scenario.cc", ], hdrs = [ "stage_creep.h", "stage_intersection_cruise.h", "stage_pre_stop.h", "stage_stop.h", "stop_sign_unprotected_scenario.h", ], copts = ["-DMODULE_NAME=\\\"planning\\\""], deps = [ "//cyber", "//modules/common_msgs/planning_msgs:planning_cc_proto", "//modules/common/math", "//modules/common/util:util_tool", "//modules/common/util", "//modules/planning/common/util:util_lib", "//modules/planning/scenarios:scenario", "//modules/planning/scenarios/common:stage_intersection_cruise_impl", "//modules/planning/scenarios/util:scenario_util_lib", "//modules/planning/tasks/deciders/creep_decider", "@com_github_gflags_gflags//:gflags", "@eigen", ], ) cc_test( name = "stop_sign_unprotected_scenario_test", size = "small", srcs = ["stop_sign_unprotected_scenario_test.cc"], data = ["//modules/planning:planning_conf"], linkopts = ["-lgomp"], deps = [ ":stop_sign_unprotected_scenario", "@com_google_googletest//:gtest_main", ] + if_cuda([ "@local_config_cuda//cuda:cudart", ]) + if_rocm([ "@local_config_rocm//rocm:hip", ]), linkstatic = True, ) cc_test( name = "stage_creep_test", size = "small", srcs = ["stage_creep_test.cc"], data = [ "//modules/planning:planning_conf", ], linkopts = ["-lgomp"], deps = [ ":stop_sign_unprotected_scenario", "@com_google_googletest//:gtest_main", ] + if_cuda([ "@local_config_cuda//cuda:cudart", ]) + if_rocm([ "@local_config_rocm//rocm:hip", ]), linkstatic = True, ) cc_test( name = "stage_pre_stop_test", size = "small", srcs = ["stage_pre_stop_test.cc"], data = [ "//modules/planning:planning_conf", ], linkopts = ["-lgomp"], deps = [ ":stop_sign_unprotected_scenario", "@com_google_googletest//:gtest_main", ] + if_cuda([ "@local_config_cuda//cuda:cudart", ]) + if_rocm([ "@local_config_rocm//rocm:hip", ]), linkstatic = True, ) cc_test( name = "stage_stop_test", size = "small", srcs = ["stage_stop_test.cc"], data = [ "//modules/planning:planning_conf", ], linkopts = ["-lgomp"], deps = [ ":stop_sign_unprotected_scenario", "@com_google_googletest//:gtest_main", ] + if_cuda([ "@local_config_cuda//cuda:cudart", ]) + if_rocm([ "@local_config_rocm//rocm:hip", ]), linkstatic = True, ) cpplint()
0
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign
apollo_public_repos/apollo/modules/planning/scenarios/stop_sign/unprotected/stop_sign_unprotected_scenario.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. *****************************************************************************/ /** * @file **/ #pragma once #include <memory> #include <string> #include <unordered_map> #include <utility> #include <vector> #include "modules/common/util/factory.h" #include "modules/map/hdmap/hdmap.h" #include "modules/common_msgs/planning_msgs/planning.pb.h" #include "modules/planning/scenarios/scenario.h" namespace apollo { namespace planning { namespace scenario { namespace stop_sign { // stage context struct StopSignUnprotectedContext { ScenarioStopSignUnprotectedConfig scenario_config; std::string current_stop_sign_overlap_id; double stop_start_time = 0.0; double creep_start_time = 0.0; // watch_vehicle: <lane_id, perception_obstacle_ids> std::unordered_map<std::string, std::vector<std::string>> watch_vehicles; std::vector<std::pair<hdmap::LaneInfoConstPtr, hdmap::OverlapInfoConstPtr>> associated_lanes; }; class StopSignUnprotectedScenario : public Scenario { public: StopSignUnprotectedScenario( const ScenarioConfig& config, const ScenarioContext* context, const std::shared_ptr<DependencyInjector>& injector) : Scenario(config, context, injector) {} void Init() override; std::unique_ptr<Stage> CreateStage( const ScenarioConfig::StageConfig& stage_config, const std::shared_ptr<DependencyInjector>& injector); StopSignUnprotectedContext* GetContext() { return &context_; } private: static void RegisterStages(); bool GetScenarioConfig(); int GetAssociatedLanes(const hdmap::StopSignInfo& stop_sign_info); private: static apollo::common::util::Factory< StageType, Stage, Stage* (*)(const ScenarioConfig::StageConfig& stage_config, const std::shared_ptr<DependencyInjector>& injector)> s_stage_factory_; bool init_ = false; StopSignUnprotectedContext context_; }; } // namespace stop_sign } // namespace scenario } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/tuning/autotuning_raw_feature_generator_test.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: testing cases for autotuning raw feature generator **/ #include "modules/planning/tuning/autotuning_raw_feature_generator.h" #include "gtest/gtest.h" #include "modules/planning/common/local_view.h" namespace apollo { namespace planning { class AutotuningRawFeatureGeneratorTest : public ::testing::Test { protected: void SetUp() override { // Reference line info common::VehicleState ego_state; common::TrajectoryPoint ego_pos; ReferenceLine reference_line; hdmap::RouteSegments segments; ref_line_info_.reset( new ReferenceLineInfo(ego_state, ego_pos, reference_line, segments)); // pseudo empty frame info LocalView dummy_local_view; frame_.reset(new Frame(0, dummy_local_view, ego_pos, ego_state, nullptr)); speed_limit_.reset(new SpeedLimit()); generator_.reset(new AutotuningRawFeatureGenerator(8, 17, *ref_line_info_, *frame_, *speed_limit_)); } void TearDown() override { generator_.reset(nullptr); ref_line_info_.reset(nullptr); frame_.reset(nullptr); speed_limit_.reset(nullptr); } std::unique_ptr<AutotuningRawFeatureGenerator> generator_ = nullptr; std::unique_ptr<ReferenceLineInfo> ref_line_info_ = nullptr; std::unique_ptr<Frame> frame_ = nullptr; std::unique_ptr<SpeedLimit> speed_limit_ = nullptr; }; TEST_F(AutotuningRawFeatureGeneratorTest, generate_input_trajectory) { // init trajectory std::vector<common::TrajectoryPoint> trajectory; ASSERT_TRUE(generator_ != nullptr); auto result = generator_->EvaluateTrajectory(trajectory, nullptr); EXPECT_TRUE(result.ok()); } TEST_F(AutotuningRawFeatureGeneratorTest, generate_input_trajectory_pointwise) { common::TrajectoryPoint trajectory_point; ASSERT_TRUE(generator_ != nullptr); auto result = generator_->EvaluateTrajectoryPoint(trajectory_point, nullptr); EXPECT_TRUE(result.ok()); } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/tuning/autotuning_feature_builder.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 "modules/common/status/status.h" #include "modules/planning/proto/auto_tuning_model_input.pb.h" #include "modules/planning/proto/auto_tuning_raw_feature.pb.h" namespace apollo { namespace planning { /** * @brief: build model related input feature from raw feature generator */ class AutotuningFeatureBuilder { public: /** * @brief: constructor */ AutotuningFeatureBuilder() = default; virtual ~AutotuningFeatureBuilder() = default; /** * @param: raw feature function input * @param: generated model input feature from raw feature, function output */ virtual common::Status BuildFeature( const autotuning::TrajectoryRawFeature& raw_feature, autotuning::TrajectoryFeature* const input_feature) const = 0; /** * @param: pointwise raw feature, function input * @param: generated model input feature, function output */ virtual common::Status BuildPointFeature( const autotuning::TrajectoryPointRawFeature& raw_point_feature, autotuning::TrajectoryPointwiseFeature* const point_feature) const = 0; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/tuning/autotuning_raw_feature_generator.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 <vector> #include "modules/common_msgs/basic_msgs/pnc_point.pb.h" #include "modules/common/status/status.h" #include "modules/planning/common/frame.h" #include "modules/planning/common/reference_line_info.h" #include "modules/planning/common/speed_limit.h" #include "modules/planning/proto/auto_tuning_raw_feature.pb.h" namespace apollo { namespace planning { class AutotuningRawFeatureGenerator { public: // @brief class constructor AutotuningRawFeatureGenerator(const double time_range, const size_t num_points, const ReferenceLineInfo& reference_line_info, const Frame& frame, const SpeedLimit& speed_limit); // @evaluation interface /** * @brief evaluate trajectory with environment, generate model trajectory * features * @param reference line related info * @param frame related status * @return OK if the evaluation succeeds; error otherwise. */ common::Status EvaluateTrajectory( const std::vector<common::TrajectoryPoint>& trajectory, autotuning::TrajectoryRawFeature* const trajectory_feature) const; /** * @brief evaluate trajectory point with environment, generate model * trajectory * features * @param reference line related info * @param frame related status * @return OK if the evaluation succeeds; error otherwise. */ common::Status EvaluateTrajectoryPoint( const common::TrajectoryPoint& trajectory_point, autotuning::TrajectoryPointRawFeature* const trajectory_point_feature) const; /** * EvaluateSpeed Profile shall match the time range as well as resolution */ common::Status EvaluateSpeedProfile( const std::vector<common::SpeedPoint>& speed_profile, autotuning::TrajectoryRawFeature* const trajectory_feature) const; private: void GenerateSTBoundaries(const ReferenceLineInfo& reference_line_info); /** * Convert st boundaries to discretized boundaries */ void ConvertToDiscretizedBoundaries(const STBoundary& boundary, const double speed); common::Status EvaluateSpeedPoint(const common::SpeedPoint& speed_point, const size_t index, autotuning::TrajectoryPointRawFeature* const trajectory_point_feature) const; private: std::vector<double> eval_time_; const ReferenceLineInfo& reference_line_info_; const Frame& frame_; const SpeedLimit& speed_limit_; std::vector<const STBoundary*> boundaries_; // covers the boundary info lower s upper s as well as the speed of obs std::vector<std::vector<std::array<double, 3>>> obs_boundaries_; std::vector<std::vector<std::array<double, 3>>> stop_boundaries_; std::vector<std::vector<std::array<double, 3>>> nudge_boundaries_; std::vector<std::vector<std::array<double, 3>>> side_pass_boundaries_; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/tuning/autotuning_mlp_net_model.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/planning/tuning/autotuning_mlp_net_model.h" namespace apollo { namespace planning { void AutotuningMLPModel::Run(const std::vector<Eigen::MatrixXf>& inputs, Eigen::MatrixXf* const output) const { Eigen::MatrixXf inp = inputs[0]; Eigen::MatrixXf temp; for (size_t i = 0; i < layers_.size(); ++i) { layers_[i]->Run({inp}, &temp); inp = temp; } *output = temp; } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/tuning/autotuning_base_model.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 "modules/common/status/status.h" #include "modules/planning/proto/auto_tuning_model_input.pb.h" #include "modules/planning/tuning/autotuning_feature_builder.h" #include "modules/planning/tuning/autotuning_mlp_net_model.h" namespace apollo { namespace planning { class AutotuningBaseModel { public: AutotuningBaseModel() = default; virtual ~AutotuningBaseModel() = default; /** * @brief set mlp model as well as feature builder */ virtual common::Status SetParams() = 0; /** * @brief : evaluate by trajectory * @param : input trajectory feature proto * @return : the total value of reward / cost */ virtual double Evaluate( const autotuning::TrajectoryFeature& trajectory_feature) const = 0; /** * @brief: evaluate by trajectory point * @param : trajectory pointwise input feature * @return : total value of reward / cost */ virtual double Evaluate( const autotuning::TrajectoryPointwiseFeature& point_feature) const = 0; protected: /** * @brief : stored autotuning mlp model */ std::unique_ptr<AutotuningMLPModel> mlp_model_ = nullptr; std::unique_ptr<AutotuningFeatureBuilder> feature_builder_ = nullptr; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/tuning/autotuning_mlp_net_model_test.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: testing casese for mlp net model **/ #include "modules/planning/tuning/autotuning_mlp_net_model.h" #include "gtest/gtest.h" namespace apollo { namespace planning { TEST(AutotuningMLPNetModeltest, test_case_one) { AutotuningMLPModel model; prediction::NetParameter net_parameter; EXPECT_TRUE(model.LoadModel(net_parameter)); } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/tuning/BUILD
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) cc_library( name = "autotuning_raw_feature_generator", srcs = ["autotuning_raw_feature_generator.cc"], hdrs = ["autotuning_raw_feature_generator.h"], deps = [ "//modules/common_msgs/basic_msgs:pnc_point_cc_proto", "//modules/common/status", "//modules/planning/common:frame", "//modules/planning/common:reference_line_info", "//modules/planning/common:speed_limit", "//modules/planning/proto:auto_tuning_raw_feature_cc_proto", ], ) cc_test( name = "autotuning_raw_feature_generator_test", size = "small", srcs = ["autotuning_raw_feature_generator_test.cc"], deps = [ ":autotuning_raw_feature_generator", "@com_google_googletest//:gtest_main", ], ) cc_library( name = "autotuning_feature_builder", hdrs = ["autotuning_feature_builder.h"], deps = [ "//modules/common/status", "//modules/planning/proto:auto_tuning_model_input_cc_proto", "//modules/planning/proto:auto_tuning_raw_feature_cc_proto", ], ) cc_library( name = "autotuning_mlp_net_model", srcs = ["autotuning_mlp_net_model.cc"], hdrs = ["autotuning_mlp_net_model.h"], deps = [ "//cyber", "//modules/prediction/network:net_model", ], tags = ["exclude"] ) cc_test( name = "autotuning_mlp_net_model_test", size = "small", srcs = ["autotuning_mlp_net_model_test.cc"], deps = [ ":autotuning_mlp_net_model", "@com_google_googletest//:gtest_main", ], tags = ["exclude"] ) cc_library( name = "autotuning_base_model", hdrs = ["autotuning_base_model.h"], deps = [ ":autotuning_feature_builder", ":autotuning_mlp_net_model", "//modules/common/status", "//modules/planning/proto:auto_tuning_model_input_cc_proto", ], tags = ["exclude"] ) cpplint()
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/tuning/autotuning_raw_feature_generator.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/planning/tuning/autotuning_raw_feature_generator.h" #include <string> #include "modules/planning/common/planning_gflags.h" namespace apollo { namespace planning { namespace { constexpr double kMinTimeRange = 0.001; // used when speed profile is invalid constexpr double kDefaultSpeedLimit = 10.0; constexpr double kMaxAwareDistance = 1e3; } // namespace using apollo::common::ErrorCode; using apollo::common::Status; AutotuningRawFeatureGenerator::AutotuningRawFeatureGenerator( const double time_range, const size_t num_points, const ReferenceLineInfo& reference_line_info, const Frame& frame, const SpeedLimit& speed_limit) : reference_line_info_(reference_line_info), frame_(frame), speed_limit_(speed_limit), obs_boundaries_(num_points, std::vector<std::array<double, 3>>()), stop_boundaries_(num_points, std::vector<std::array<double, 3>>()), nudge_boundaries_(num_points, std::vector<std::array<double, 3>>()), side_pass_boundaries_(num_points, std::vector<std::array<double, 3>>()) { CHECK_GT(num_points, 0U); CHECK_GT(time_range, kMinTimeRange); double res = time_range / static_cast<double>(num_points); for (double t = 0; t < res + time_range; t += res) { eval_time_.push_back(t); } } common::Status AutotuningRawFeatureGenerator::EvaluateTrajectory( const std::vector<common::TrajectoryPoint>& trajectory, autotuning::TrajectoryRawFeature* const trajectory_feature) const { return common::Status::OK(); } common::Status AutotuningRawFeatureGenerator::EvaluateTrajectoryPoint( const common::TrajectoryPoint& trajectory_point, autotuning::TrajectoryPointRawFeature* const trajectory_point_feature) const { return common::Status::OK(); } common::Status AutotuningRawFeatureGenerator::EvaluateSpeedPoint( const common::SpeedPoint& speed_point, const size_t index, autotuning::TrajectoryPointRawFeature* const trajectory_point_feature) const { auto* speed_feature = trajectory_point_feature->mutable_speed_feature(); // setup basic speed profile const double s = speed_point.s(); speed_feature->set_s(s); speed_feature->set_t(speed_point.t()); speed_feature->set_v(speed_point.v()); speed_feature->set_a(speed_point.a()); speed_feature->set_j(speed_point.da()); // get speed limit at certain s(); if (speed_limit_.speed_limit_points().front().first > s) { speed_feature->set_speed_limit(kDefaultSpeedLimit); } else { double cur_speed_limit = speed_limit_.GetSpeedLimitByS(s); speed_feature->set_speed_limit(cur_speed_limit); } // extracting obstacle related infos autotuning::SpeedPointRawFeature_ObjectDecisionFeature* decision_obj = nullptr; for (const auto& stop_obs : stop_boundaries_[index]) { double lower_s = stop_obs[0]; double speed = stop_obs[2]; double distance = 0.0; // stop line is in the front if (lower_s < s) { distance = lower_s - s; decision_obj = speed_feature->add_stop(); } else { decision_obj = speed_feature->add_collision(); } decision_obj->set_relative_s(distance); decision_obj->set_relative_v(speed - speed_point.v()); } for (const auto& obs : obs_boundaries_[index]) { double lower_s = obs[0]; double upper_s = obs[1]; double speed = obs[2]; double distance = 0.0; if (upper_s < s) { decision_obj = speed_feature->add_overtake(); distance = s - upper_s; } else if (lower_s > s) { decision_obj = speed_feature->add_follow(); distance = lower_s - s; } else { decision_obj = speed_feature->add_collision(); } decision_obj->set_relative_s(distance); decision_obj->set_relative_v(speed - speed_point.v()); } return common::Status::OK(); } common::Status AutotuningRawFeatureGenerator::EvaluateSpeedProfile( const std::vector<common::SpeedPoint>& speed_profile, autotuning::TrajectoryRawFeature* const trajectory_feature) const { if (speed_profile.size() != eval_time_.size()) { const std::string msg = "mismatched evaluated time and speed profile size"; AERROR << msg; return Status(ErrorCode::PLANNING_ERROR, msg); } for (size_t i = 0; i < eval_time_.size(); ++i) { auto* trajectory_point_feature = trajectory_feature->add_point_feature(); auto status = EvaluateSpeedPoint(speed_profile[i], i, trajectory_point_feature); if (status != common::Status::OK()) { const std::string msg = "Extracting speed profile error"; AERROR << msg; return Status(ErrorCode::PLANNING_ERROR, msg); } } return common::Status::OK(); } void AutotuningRawFeatureGenerator::GenerateSTBoundaries( const ReferenceLineInfo& reference_line_info) { const auto& path_decision = reference_line_info.path_decision(); for (auto* obstacle : path_decision.obstacles().Items()) { auto id = obstacle->Id(); const double speed = obstacle->speed(); if (!obstacle->path_st_boundary().IsEmpty()) { // fill discretized boundary info ConvertToDiscretizedBoundaries(obstacle->path_st_boundary(), speed); } } } void AutotuningRawFeatureGenerator::ConvertToDiscretizedBoundaries( const STBoundary& boundary, const double speed) { for (size_t i = 0; i < eval_time_.size(); ++i) { double upper = 0.0; double lower = 0.0; bool suc = boundary.GetBoundarySRange(eval_time_[i], &upper, &lower); if (suc) { if (boundary.boundary_type() == STBoundary::BoundaryType::STOP) { stop_boundaries_[i].push_back({{lower, upper, speed}}); } else { obs_boundaries_[i].push_back({{lower, upper, speed}}); } } } } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/tuning/autotuning_mlp_net_model.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 <vector> #include "cyber/common/macros.h" #include "modules/prediction/network/net_model.h" namespace apollo { namespace planning { class AutotuningMLPModel : public prediction::network::NetModel { public: AutotuningMLPModel() = default; virtual ~AutotuningMLPModel() = default; /** * @brief Compute the model output from inputs according to a defined layers' * flow * @param Inputs to the network * @param Output of the network will be returned */ void Run(const std::vector<Eigen::MatrixXf>& inputs, Eigen::MatrixXf* output) const override; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/tuning
apollo_public_repos/apollo/modules/planning/tuning/speed_model/autotuning_speed_feature_builder.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 "modules/planning/tuning/autotuning_feature_builder.h" namespace apollo { namespace planning { /** * @brief: build the mlp cost functional for speed profile based on trajectory * raw feature */ class AutotuningSpeedFeatureBuilder : public AutotuningFeatureBuilder { public: AutotuningSpeedFeatureBuilder() = default; virtual ~AutotuningSpeedFeatureBuilder() = default; /** * @param: raw feature function input * @param: generated model input feature from raw feature, function output */ common::Status BuildFeature( const autotuning::TrajectoryRawFeature& raw_feature, autotuning::TrajectoryFeature* const input_feature) const override; /** * @param: pointwise raw feature, function input * @param: generated model input feature, function output */ common::Status BuildPointFeature( const autotuning::TrajectoryPointRawFeature& raw_point_feature, autotuning::TrajectoryPointwiseFeature* const point_feature) const override; private: /** * @brief: map virtual stop yield overtake obstacle with feature * @param: raw object feature * @param: input feature */ void map_obstacle_feature( const autotuning::SpeedPointRawFeature_ObjectDecisionFeature& obj_raw_feature, autotuning::SpeedPointwiseFeature_ObstacleFeature* const input_feature) const; /** * @brief: map nudge obstacle to model input feature */ void map_nudge_obs_feature( const autotuning::SpeedPointRawFeature_ObjectDecisionFeature& obj_raw_feature, autotuning::SpeedPointwiseFeature_ObstacleFeature* const input_feature) const; /** * @brief: map sidepass obstacle to model input feature */ void map_sidepass_obs_feature( const autotuning::SpeedPointRawFeature_ObjectDecisionFeature& obj_raw_feature, autotuning::SpeedPointwiseFeature_ObstacleFeature* const input_feature) const; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/tuning
apollo_public_repos/apollo/modules/planning/tuning/speed_model/autotuning_speed_feature_builder_test.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: testing casese for mlp net model **/ #include "modules/planning/tuning/speed_model/autotuning_speed_feature_builder.h" #include "gtest/gtest.h" namespace apollo { namespace planning { TEST(AutotuningSpeedFeatureBuilder, test_case_two) { AutotuningSpeedFeatureBuilder feature_builder; autotuning::TrajectoryRawFeature raw_feature; autotuning::TrajectoryPointRawFeature raw_point_feature; autotuning::TrajectoryFeature input_feature; autotuning::TrajectoryPointwiseFeature point_feature; auto status = feature_builder.BuildFeature(raw_feature, &input_feature); EXPECT_TRUE(status.ok()); status = feature_builder.BuildPointFeature(raw_point_feature, &point_feature); EXPECT_TRUE(status.ok()); } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/tuning
apollo_public_repos/apollo/modules/planning/tuning/speed_model/autotuning_speed_mlp_model_test.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: testing casese for mlp net model **/ #include "modules/planning/tuning/speed_model/autotuning_speed_mlp_model.h" #include "gtest/gtest.h" namespace apollo { namespace planning { TEST(AutotuningSpeedMLPModel, test_case_one) { AutotuningSpeedMLPModel speed_model; EXPECT_TRUE(speed_model.SetParams().ok()); } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/tuning
apollo_public_repos/apollo/modules/planning/tuning/speed_model/autotuning_speed_feature_builder.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/planning/tuning/speed_model/autotuning_speed_feature_builder.h" #include <cmath> #include <string> #include "absl/strings/str_cat.h" #include "cyber/common/log.h" #include "modules/common_msgs/basic_msgs/error_code.pb.h" using apollo::common::ErrorCode; using apollo::common::Status; namespace apollo { namespace planning { Status AutotuningSpeedFeatureBuilder::BuildFeature( const autotuning::TrajectoryRawFeature& raw_feature, autotuning::TrajectoryFeature* const input_feature) const { if (input_feature == nullptr) { const std::string msg = "input trajectory feature is empty"; AERROR << msg; return Status(ErrorCode::PLANNING_ERROR, msg); } // number of input trajectory point int n = input_feature->point_feature_size(); if (n != raw_feature.point_feature_size()) { const std::string msg = absl::StrCat( "raw and input feature size mismatch. raw: ", raw_feature.point_feature_size(), "; input: ", n); AERROR << msg; return Status(ErrorCode::PLANNING_ERROR, msg); } for (int i = 0; i < n; ++i) { const auto& raw_point_feature = raw_feature.point_feature(i); auto* point_feature = input_feature->mutable_point_feature(i); auto status = BuildPointFeature(raw_point_feature, point_feature); if (status != Status::OK()) { const std::string msg = "pointwise feature adding incorrect"; return Status(ErrorCode::PLANNING_ERROR, msg); } } return Status::OK(); } Status AutotuningSpeedFeatureBuilder::BuildPointFeature( const autotuning::TrajectoryPointRawFeature& raw_point_feature, autotuning::TrajectoryPointwiseFeature* const point_feature) const { // set up basic feature: double v = raw_point_feature.speed_feature().v(); auto* speed_feature = point_feature->mutable_speed_input_feature(); speed_feature->set_s(raw_point_feature.speed_feature().s()); speed_feature->set_t(raw_point_feature.speed_feature().t()); speed_feature->set_v(v); speed_feature->set_acc(raw_point_feature.speed_feature().a()); speed_feature->set_jerk(raw_point_feature.speed_feature().j()); speed_feature->set_speed_limit( raw_point_feature.speed_feature().speed_limit()); double kappa = raw_point_feature.path_feature().cartesian_coord().kappa(); double lateral_acc = v * v * kappa; speed_feature->set_path_curvature_abs(std::fabs(kappa)); speed_feature->set_lateral_acc(lateral_acc); // boundary feature, virtual obstacle , e.g. routing end for (int i = 0; i < raw_point_feature.speed_feature().virtual_decision_size(); ++i) { const auto& obj_decision = raw_point_feature.speed_feature().virtual_decision(i); auto* input_decision = speed_feature->add_virtual_obs_feature(); map_obstacle_feature(obj_decision, input_decision); } // boundary feature, stop obstacle, based on stop decision for (int i = 0; i < raw_point_feature.speed_feature().stop_size(); ++i) { const auto& obj_decision = raw_point_feature.speed_feature().stop(i); auto* input_decision = speed_feature->add_stop_obs_feature(); map_obstacle_feature(obj_decision, input_decision); } // boundary feature, overtake obstacle, based on overtake obstacle decision for (int i = 0; i < raw_point_feature.speed_feature().overtake_size(); ++i) { const auto& obj_decision = raw_point_feature.speed_feature().overtake(i); auto* input_decision = speed_feature->add_overtake_obs_feature(); map_obstacle_feature(obj_decision, input_decision); } // boundary feature, yield/follow obstacle, based on yield/follow obstacle // decision for (int i = 0; i < raw_point_feature.speed_feature().follow_size(); ++i) { const auto& obj_decision = raw_point_feature.speed_feature().follow(i); auto* input_decision = speed_feature->add_follow_obs_feature(); map_obstacle_feature(obj_decision, input_decision); } // boundary feature, nudge obstacle feature for (int i = 0; i < raw_point_feature.speed_feature().nudge_size(); ++i) { const auto& obj_decision = raw_point_feature.speed_feature().nudge(i); auto* input_decision = speed_feature->add_nudge_obs_feature(); map_nudge_obs_feature(obj_decision, input_decision); } // boundary feature, side pass feature for (int i = 0; i < raw_point_feature.speed_feature().sidepass_front_size(); ++i) { const auto& obj_decision = raw_point_feature.speed_feature().sidepass_front(i); auto* input_decision = speed_feature->add_sidepass_front_obs_feature(); map_sidepass_obs_feature(obj_decision, input_decision); } for (int i = 0; i < raw_point_feature.speed_feature().sidepass_rear_size(); ++i) { const auto& obj_decision = raw_point_feature.speed_feature().sidepass_rear(i); auto* input_decision = speed_feature->add_sidepass_rear_obs_feature(); map_sidepass_obs_feature(obj_decision, input_decision); } return Status::OK(); } void AutotuningSpeedFeatureBuilder::map_obstacle_feature( const autotuning::SpeedPointRawFeature_ObjectDecisionFeature& obj_raw_feature, autotuning::SpeedPointwiseFeature_ObstacleFeature* const input_feature) const { input_feature->set_longitudinal_distance( std::fabs(obj_raw_feature.relative_s())); input_feature->set_obstacle_speed(obj_raw_feature.speed()); input_feature->set_relative_v(obj_raw_feature.relative_v()); input_feature->set_lateral_distance(std::fabs(obj_raw_feature.relative_l())); } /** * @brief: map nudge obstacle to model input feature */ void AutotuningSpeedFeatureBuilder::map_nudge_obs_feature( const autotuning::SpeedPointRawFeature_ObjectDecisionFeature& obj_raw_feature, autotuning::SpeedPointwiseFeature_ObstacleFeature* const input_feature) const { input_feature->set_longitudinal_distance( std::fabs(obj_raw_feature.relative_s())); input_feature->set_obstacle_speed(obj_raw_feature.speed()); input_feature->set_relative_v(obj_raw_feature.relative_v()); input_feature->set_lateral_distance(std::fabs(obj_raw_feature.relative_l())); } /** * @brief: map sidepass obstacle to model input feature */ void AutotuningSpeedFeatureBuilder::map_sidepass_obs_feature( const autotuning::SpeedPointRawFeature_ObjectDecisionFeature& obj_raw_feature, autotuning::SpeedPointwiseFeature_ObstacleFeature* const input_feature) const { input_feature->set_longitudinal_distance( std::fabs(obj_raw_feature.relative_s())); input_feature->set_obstacle_speed(obj_raw_feature.speed()); input_feature->set_relative_v(obj_raw_feature.relative_v()); input_feature->set_lateral_distance(std::fabs(obj_raw_feature.relative_l())); } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/tuning
apollo_public_repos/apollo/modules/planning/tuning/speed_model/autotuning_speed_mlp_model.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/planning/tuning/speed_model/autotuning_speed_mlp_model.h" #include "modules/planning/tuning/speed_model/autotuning_speed_feature_builder.h" namespace apollo { namespace planning { /** * @brief: max considerred obstacle range */ namespace { constexpr double kMaxFollow = 100.0; constexpr double kMaxOvertake = 100.0; constexpr double kMaxStop = 60.0; constexpr double kMaxNudge = 60.0; constexpr double kMaxNudgeLateralDistance = 10.0; constexpr double kMaxSidePassDistance = 100.0; } // namespace common::Status AutotuningSpeedMLPModel::SetParams() { mlp_model_.reset(new AutotuningMLPModel()); feature_builder_.reset(new AutotuningSpeedFeatureBuilder()); return common::Status::OK(); } double AutotuningSpeedMLPModel::Evaluate( const autotuning::TrajectoryFeature& trajectory_feature) const { return 0.0; } double AutotuningSpeedMLPModel::Evaluate( const autotuning::TrajectoryPointwiseFeature& point_feature) const { return 0.0; } void AutotuningSpeedMLPModel::FlattenFeatures( const autotuning::TrajectoryFeature& feature, Eigen::MatrixXd* const flat_feature) const { int row_count = feature.point_feature_size(); int col_count = 21; flat_feature->resize(row_count, col_count); for (int i = 0; i < row_count; ++i) { FlattenFeatures(feature.point_feature(i).speed_input_feature(), i, flat_feature); } } void AutotuningSpeedMLPModel::FlattenFeatures( const autotuning::SpeedPointwiseFeature& speed_point_feature, const int row, Eigen::MatrixXd* const flat_feature) const { double v = speed_point_feature.v(); double acc = speed_point_feature.acc(); double jerk = speed_point_feature.jerk(); double speed_limit = speed_point_feature.speed_limit(); double lateral_acc = speed_point_feature.lateral_acc(); // has collision , collision = 1, else 0 double collision = 0.0; // obstacle feature, looping to find among all obstacle double follow_distance = kMaxFollow; double follow_v_rel = 0.0; double overtake_distance = kMaxOvertake; double overtake_v_rel = 0.0; double stop_distance = kMaxStop; double stop_v_rel = 0.0; double virtual_distance = kMaxStop; double virtual_v_rel = 0.0; double nudge_distance = kMaxNudge; double nudge_v_rel = 0.0; double nudge_lateral_distance = kMaxNudgeLateralDistance; double sidepass_front_v_rel = 0.0; double sidepass_front_distance = kMaxSidePassDistance; double sidepass_rear_v_rel = 0.0; double sidepass_rear_distance = kMaxSidePassDistance; // looping obstacles to find the value minimize the distance for (int i = 0; i < speed_point_feature.follow_obs_feature_size(); ++i) { const auto& follow_obs_feature = speed_point_feature.follow_obs_feature(i); if (follow_distance > follow_obs_feature.longitudinal_distance()) { follow_distance = follow_obs_feature.longitudinal_distance(); follow_v_rel = follow_obs_feature.relative_v(); } } // looping obstacles to find the value minimize the distance for (int i = 0; i < speed_point_feature.overtake_obs_feature_size(); ++i) { const auto& overtake_obs_feature = speed_point_feature.overtake_obs_feature(i); if (overtake_distance > overtake_obs_feature.longitudinal_distance()) { overtake_distance = overtake_obs_feature.longitudinal_distance(); overtake_v_rel = overtake_obs_feature.relative_v(); } } // looping obstacles to find the value minimize the distance for (int i = 0; i < speed_point_feature.stop_obs_feature_size(); ++i) { const auto& stop_obs_feature = speed_point_feature.stop_obs_feature(i); if (stop_distance > stop_obs_feature.longitudinal_distance()) { stop_distance = stop_obs_feature.longitudinal_distance(); stop_v_rel = stop_obs_feature.relative_v(); } } // looping obstacles to find the value minimize the distance for (int i = 0; i < speed_point_feature.virtual_obs_feature_size(); ++i) { const auto& virtual_obs_feature = speed_point_feature.virtual_obs_feature(i); if (virtual_distance > virtual_obs_feature.longitudinal_distance()) { virtual_distance = virtual_obs_feature.longitudinal_distance(); virtual_v_rel = virtual_obs_feature.relative_v(); } } // looping obstacles to find the value minimize the distance for (int i = 0; i < speed_point_feature.nudge_obs_feature_size(); ++i) { const auto& nudge_obs_feature = speed_point_feature.nudge_obs_feature(i); if (nudge_distance > nudge_obs_feature.longitudinal_distance()) { nudge_distance = nudge_obs_feature.longitudinal_distance(); nudge_v_rel = nudge_obs_feature.relative_v(); nudge_lateral_distance = nudge_obs_feature.lateral_distance(); } } // looping obstacles to find the value minimize the distance for (int i = 0; i < speed_point_feature.sidepass_front_obs_feature_size(); ++i) { const auto& sidepass_front_obs_feature = speed_point_feature.sidepass_front_obs_feature(i); if (sidepass_front_distance > sidepass_front_obs_feature.longitudinal_distance()) { sidepass_front_distance = sidepass_front_obs_feature.longitudinal_distance(); sidepass_front_v_rel = sidepass_front_obs_feature.relative_v(); } } // looping obstacles to find the value minimize the distance for (int i = 0; i < speed_point_feature.sidepass_rear_obs_feature_size(); ++i) { const auto& sidepass_rear_obs_feature = speed_point_feature.sidepass_rear_obs_feature(i); if (sidepass_rear_distance > sidepass_rear_obs_feature.longitudinal_distance()) { sidepass_rear_distance = sidepass_rear_obs_feature.longitudinal_distance(); sidepass_rear_v_rel = sidepass_rear_obs_feature.relative_v(); } } (*flat_feature)(row, 0) = v; (*flat_feature)(row, 1) = speed_limit; (*flat_feature)(row, 2) = acc; (*flat_feature)(row, 3) = jerk; (*flat_feature)(row, 4) = lateral_acc; (*flat_feature)(row, 5) = collision; (*flat_feature)(row, 6) = follow_distance; (*flat_feature)(row, 7) = follow_v_rel; (*flat_feature)(row, 8) = overtake_distance; (*flat_feature)(row, 9) = overtake_v_rel; (*flat_feature)(row, 10) = nudge_distance; (*flat_feature)(row, 11) = nudge_v_rel; (*flat_feature)(row, 12) = nudge_lateral_distance; (*flat_feature)(row, 13) = stop_distance; (*flat_feature)(row, 14) = stop_v_rel; (*flat_feature)(row, 15) = virtual_distance; (*flat_feature)(row, 16) = virtual_v_rel; (*flat_feature)(row, 17) = sidepass_front_distance; (*flat_feature)(row, 18) = sidepass_front_v_rel; (*flat_feature)(row, 19) = sidepass_rear_distance; (*flat_feature)(row, 20) = sidepass_rear_v_rel; } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/tuning
apollo_public_repos/apollo/modules/planning/tuning/speed_model/autotuning_speed_mlp_model.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 "modules/common/status/status.h" #include "modules/planning/tuning/autotuning_base_model.h" namespace apollo { namespace planning { class AutotuningSpeedMLPModel : public AutotuningBaseModel { public: AutotuningSpeedMLPModel() = default; ~AutotuningSpeedMLPModel() = default; /** * @brief set mlp model as well as feature builder */ common::Status SetParams() override; /** * @brief : evaluate by trajectory * @param : input trajectory feature proto * @return : the total value of reward / cost */ double Evaluate( const autotuning::TrajectoryFeature& trajectory_feature) const override; /** * @brief: evaluate by trajectory point * @param : trajectory pointwise input feature * @return : total value of reward / cost */ double Evaluate(const autotuning::TrajectoryPointwiseFeature& point_feature) const override; private: /** * [FlattenFeatures description] * @param feature [model input proto] * @param flat_feature [eigen matrix, row: time, col: traj point feature] */ void FlattenFeatures(const autotuning::TrajectoryFeature& feature, Eigen::MatrixXd* const flat_feature) const; void FlattenFeatures( const autotuning::SpeedPointwiseFeature& speed_point_feature, const int row, Eigen::MatrixXd* const flat_feature) const; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning/tuning
apollo_public_repos/apollo/modules/planning/tuning/speed_model/BUILD
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) cc_library( name = "autotuning_speed_feature_builder", srcs = ["autotuning_speed_feature_builder.cc"], hdrs = ["autotuning_speed_feature_builder.h"], copts = [ "-DMODULE_NAME=\\\"planning\\\"", ], deps = [ "//cyber", "//modules/common_msgs/basic_msgs:error_code_cc_proto", "//modules/planning/tuning:autotuning_feature_builder", ], ) cc_test( name = "autotuning_speed_feature_builder_test", size = "small", srcs = ["autotuning_speed_feature_builder_test.cc"], deps = [ ":autotuning_speed_feature_builder", "@com_google_googletest//:gtest_main", ], ) cc_library( name = "autotuning_speed_mlp_model", srcs = ["autotuning_speed_mlp_model.cc"], hdrs = ["autotuning_speed_mlp_model.h"], deps = [ ":autotuning_speed_feature_builder", "//modules/planning/tuning:autotuning_base_model", ], tags = ["exclude"] ) cc_test( name = "autotuning_speed_mlp_model_test", size = "small", srcs = ["autotuning_speed_mlp_model_test.cc"], deps = [ ":autotuning_speed_mlp_model", "@com_google_googletest//:gtest_main", ], tags = ["exclude"] ) cpplint()
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/data/garage.csv
x,y,z,speed,acceleration,curvature,curvature_change_rate,time,theta,gear,s,throttle,brake,steering 586385.858607, 4140674.7357, -28.3670201628, 0.216666668653, 0.887545286694, 0.0227670812611, -0.0177396744278, 1496957374.6140, 2.83470068837, 1, 0.00216666668653, 22.0157165527, 13.6934461594, 12.6382980347 586385.855147, 4140674.73686, -28.3671755996, 0.216666668653, 0.913474615633, 0.0227670812611, 0.0, 1496957374.6246, 2.83481834381, 1, 0.00433333337307, 22.0157165527, 13.6751356125, 12.6382980347 586385.851608, 4140674.73803, -28.367333333, 0.252777785063, 0.884692224513, 0.0226902109692, -0.0304102244818, 1496957374.6342, 2.83493944838, 1, 0.0068611112237, 22.1026935577, 13.6751356125, 12.5957450867 586385.847987, 4140674.73924, -28.3675015001, 0.252777785063, 0.874161013299, 0.0226902109692, 0.0, 1496957374.6438, 2.83501097239, 1, 0.00938888907433, 22.1026935577, 13.7239646912, 12.5957450867 586385.84427, 4140674.74047, -28.3676676499, 0.283333331347, 0.934226919562, 0.0226517749143, -0.0135656665111, 1496957374.6543, 2.83511769878, 1, 0.0122222223878, 22.1026935577, 13.7239646912, 12.574467659 586385.840443, 4140674.74175, -28.3678200571, 0.283333331347, 1.03466084553, 0.0226517749143, 0.0, 1496957374.6639, 2.83524237155, 1, 0.0150555557013, 22.1026935577, 13.6507205963, 12.574467659 586385.836527, 4140674.74305, -28.3679780131, 0.31111112237, 1.02275571276, 0.0225749078732, -0.0247072623403, 1496957374.6745, 2.83535456498, 1, 0.018166666925, 22.114900589, 13.6507205963, 12.531914711 586385.832523, 4140674.74437, -28.3681540545, 0.31111112237, 0.965700419625, 0.0225749078732, 0.0, 1496957374.6841, 2.83546712465, 1, 0.0212777781487, 22.114900589, 13.6537723541, 12.531914711 586385.828455, 4140674.74571, -28.368321253, 0.338888883591, 0.836593771705, 0.0224980429898, -0.0226814413375, 1496957374.6936, 2.83562021513, 1, 0.0246666669846, 22.163728714, 13.6537723541, 12.489361763 586385.824334, 4140674.74708, -28.3684622813, 0.338888883591, 0.697852282292, 0.0224980429898, 0.0, 1496957374.7041, 2.8357196816, 1, 0.0280555558205, 22.163728714, 13.6751356125, 12.489361763 586385.820131, 4140674.74848, -28.3685834166, 0.363888889551, 0.722275690291, 0.0223827496946, -0.0316836535974, 1496957374.7146, 2.83585535814, 1, 0.031694444716, 22.2613868713, 13.6751356125, 12.425532341 586385.81583, 4140674.7499, -28.3687009905, 0.363888889551, 0.858753827361, 0.0223827496946, 0.0, 1496957374.7242, 2.83597623605, 1, 0.0353333336115, 22.2613868713, 13.6842908859, 12.425532341 586385.8114, 4140674.75136, -28.3688193839, 0.388888895512, 1.07937498964, 0.0223058884509, -0.0197643194568, 1496957374.7338, 2.83613586693, 1, 0.0392222225666, 22.2125587463, 13.6842908859, 12.3829784393 586385.806857, 4140674.75285, -28.3689575465, 0.388888895512, 1.1692626374, 0.0223058884509, 0.0, 1496957374.7444, 2.83627520236, 1, 0.0431111115217, 22.2125587463, 13.699549675, 12.3829784393 586385.802227, 4140674.75435, -28.3690878386, 0.411111116409, 1.07631764024, 0.0222290310618, -0.018695040366, 1496957374.7539, 2.83641617553, 1, 0.0472222226858, 22.2735939026, 13.699549675, 12.3404254913 586385.797518, 4140674.75587, -28.3692167988, 0.411111116409, 0.955822521275, 0.0222290310618, 0.0, 1496957374.7644, 2.83645822681, 1, 0.0513333338499, 22.2735939026, 13.6659803391, 12.3404254913 586385.792717, 4140674.75743, -28.3693428114, 0.433333337307, 0.936041058598, 0.0221137489592, -0.0266035618921, 1496957374.7739, 2.83661980725, 1, 0.055666667223, 22.1881446838, 13.6659803391, 12.2765960693 586385.78782, 4140674.75903, -28.3694528053, 0.433333337307, 0.96868976, 0.0221137489592, 0.0, 1496957374.7845, 2.83671295399, 1, 0.060000000596, 22.1881446838, 13.6858167648, 12.2765960693 586385.782841, 4140674.76065, -28.369563424, 0.458333343267, 0.921226838968, 0.0220368951451, -0.016768104531, 1496957374.7941, 2.83688881403, 1, 0.0645833340287, 22.3468379974, 13.6858167648, 12.2340421677 586385.777794, 4140674.76227, -28.3696850128, 0.458333343267, 0.803812893044, 0.0220368951451, 0.0, 1496957374.8035, 2.83702486237, 1, 0.0691666674614, 22.3468379974, 13.7087049484, 12.2340421677 586385.772648, 4140674.76392, -28.3698262796, 0.480555564165, 0.866056588139, 0.0219600451594, -0.0159919042522, 1496957374.8141, 2.83715098626, 1, 0.073972223103, 22.4078731537, 13.7087049484, 12.1914892197 586385.767385, 4140674.76563, -28.3699658625, 0.480555564165, 1.05154176365, 0.0219600451594, 0.0, 1496957374.8246, 2.83727764459, 1, 0.0787777787447, 22.4078731537, 13.6583509445, 12.1914892197 586385.762008, 4140674.76739, -28.3700867752, 0.491666674614, 1.1702720733, 0.0218447741134, -0.0234449581248, 1496957374.8342, 2.83742137078, 1, 0.0836944454908, 22.4933242798, 13.6583509445, 12.1276597977 586385.756529, 4140674.76915, -28.3702330785, 0.491666674614, 1.1448343778, 0.0218447741134, 0.0, 1496957374.8437, 2.83760635456, 1, 0.088611112237, 22.4933242798, 13.6980237961, 12.1276597977 586385.750946, 4140674.77093, -28.3704024646, 0.524999976158, 1.09547135954, 0.0217679293604, -0.0146370964861, 1496957374.8542, 2.83776970314, 1, 0.0938611119986, 22.4811172485, 13.6980237961, 12.0851068497 586385.745243, 4140674.77276, -28.3705764916, 0.524999976158, 1.17303825947, 0.0217679293604, 0.0, 1496957374.8637, 2.83789288561, 1, 0.0991111117601, 22.4811172485, 13.7407493591, 12.0851068497 586385.739419, 4140674.77466, -28.3706962429, 0.547222197056, 1.24150702438, 0.0216910849653, -0.014042631221, 1496957374.8742, 2.83803796204, 1, 0.104583333731, 22.554359436, 13.7407493591, 12.042552948 586385.733494, 4140674.77655, -28.3708088072, 0.547222197056, 1.14326487355, 0.0216910849653, 0.0, 1496957374.8837, 2.83825004142, 1, 0.110055555701, 22.554359436, 13.6781873703, 12.042552948 586385.727492, 4140674.77846, -28.3709981041, 0.547222197056, 0.973106441209, 0.0216910849653, 0.0, 1496957374.8946, 2.83840504578, 1, 0.115527777672, 22.554359436, 13.6781873703, 12.042552948 586385.721406, 4140674.78041, -28.371136657, 0.572222232819, 0.915780273466, 0.0216142443651, -0.0134284541561, 1496957374.9042, 2.83853249094, 1, 0.12125, 22.554359436, 13.6369876862, 12.0 586385.715221, 4140674.78241, -28.3712522788, 0.594444453716, 0.958831951221, 0.0215374058302, -0.0129261084728, 1496957374.9137, 2.83869237561, 1, 0.127194444537, 22.6886405945, 13.6369876862, 11.957447052 586385.708952, 4140674.78443, -28.3713745503, 0.594444453716, 0.934298483836, 0.0215374058302, 0.0, 1496957374.9242, 2.83888453228, 1, 0.133138889074, 22.6886405945, 13.7117567062, 11.957447052 586385.702577, 4140674.78648, -28.3714778451, 0.616666674614, 0.994906838575, 0.0214221501621, -0.0186901080914, 1496957374.9338, 2.83904228421, 1, 0.13930555582, 22.7740898132, 13.7117567062, 11.8936166763 586385.696088, 4140674.78857, -28.3715826236, 0.616666674614, 1.09155734766, 0.0214221501621, 0.0, 1496957374.9444, 2.83923157044, 1, 0.145472222567, 22.7740898132, 13.7224388123, 11.8936166763 586385.68949, 4140674.79068, -28.3717313977, 0.636111140251, 1.14640132759, 0.0213453167582, -0.0120786131673, 1496957374.9540, 2.83943354611, 1, 0.151833333969, 22.7985038757, 13.7224388123, 11.8510637283 586385.682781, 4140674.79282, -28.3718009992, 0.636111140251, 1.14379120775, 0.0213453167582, 0.0, 1496957374.9645, 2.83956473015, 1, 0.158194445372, 22.7985038757, 13.6781873703, 11.8510637283 586385.675966, 4140674.79499, -28.3718924513, 0.655555546284, 1.14010182768, 0.0212300704738, -0.0175799419239, 1496957374.9741, 2.83976084251, 1, 0.164750000834, 22.810710907, 13.6781873703, 11.7872343063 586385.669048, 4140674.79719, -28.3720378699, 0.655555546284, 1.11795121187, 0.0212300704738, 0.0, 1496957374.9836, 2.8399493512, 1, 0.171305556297, 22.810710907, 13.7361717224, 11.7872343063 586385.662033, 4140674.79942, -28.3721195301, 0.677777767181, 1.07292849708, 0.0211148270315, -0.0170031311069, 1496957374.9940, 2.84013442444, 1, 0.178083333969, 22.8717479706, 13.7361717224, 11.7234039307 586385.654907, 4140674.80168, -28.3722370453, 0.677777767181, 1.073048044, 0.0211148270315, 0.0, 1496957375.0044, 2.84029641403, 1, 0.184861111641, 22.8717479706, 13.6736097336, 11.7234039307 586385.647681, 4140674.80398, -28.3723776415, 0.702777802944, 1.08517048759, 0.0209995898498, -0.0163973849543, 1496957375.0139, 2.84049129987, 1, 0.19188888967, 22.9205760956, 13.6736097336, 11.6595745087 586385.640368, 4140674.8063, -28.3724498888, 0.702777802944, 1.02252152908, 0.0209995898498, 0.0, 1496957375.0245, 2.84067651237, 1, 0.1989166677, 22.9205760956, 13.655298233, 11.6595745087 586385.632939, 4140674.80866, -28.3725996707, 0.725000023842, 1.06322295313, 0.0208843571819, -0.0158941605648, 1496957375.0340, 2.84092856198, 1, 0.206166667938, 22.8839550018, 13.655298233, 11.5957450867 586385.625403, 4140674.81105, -28.3727502218, 0.725000023842, 1.13020898502, 0.0208843571819, 0.0, 1496957375.0435, 2.84113018253, 1, 0.213416668177, 22.8839550018, 13.7087049484, 11.5957450867 586385.617751, 4140674.81348, -28.372863275, 0.74722224474, 1.16488204509, 0.0207307188815, -0.0205612589046, 1496957375.0541, 2.84128697376, 1, 0.220888890624, 22.9694061279, 13.7087049484, 11.510638237 586385.609992, 4140674.81593, -28.3730191095, 0.74722224474, 1.14589705982, 0.0207307188815, 0.0, 1496957375.0635, 2.84149166482, 1, 0.228361113071, 22.9694061279, 13.6919202805, 11.510638237 586385.602125, 4140674.81843, -28.3731174925, 0.772222220898, 1.14658485183, 0.020577090224, -0.0198943585645, 1496957375.0741, 2.84168162968, 1, 0.23608333528, 23.0304412842, 13.6919202805, 11.425532341 586385.593995, 4140674.82097, -28.3732420523, 0.772222220898, 1.12967723716, 0.020577090224, 0.0, 1496957375.0836, 2.84167813375, 1, 0.243805557489, 23.0304412842, 13.6659803391, 11.425532341 586385.58568, 4140674.82353, -28.3733101236, 0.797222197056, 1.13935087303, 0.0204618721721, -0.0144524390191, 1496957375.0942, 2.8419132742, 1, 0.25177777946, 22.9694061279, 13.6659803391, 11.3617019653 586385.577255, 4140674.82613, -28.3733978113, 0.797222197056, 1.1643459333, 0.0204618721721, 0.0, 1496957375.1038, 2.84211238417, 1, 0.259750001431, 22.9694061279, 13.6140995026, 11.3617019653 586385.568711, 4140674.82875, -28.3735025283, 0.822222232819, 1.1862659915, 0.0203082572344, -0.0186828975846, 1496957375.1143, 2.84233660563, 1, 0.267972223759, 23.0548553467, 13.6140995026, 11.2765960693 586385.56006, 4140674.83142, -28.3735718112, 0.822222232819, 1.18128667794, 0.0203082572344, 0.0, 1496957375.1238, 2.84255787041, 1, 0.276194446087, 23.0548553467, 13.6842908859, 11.2765960693 586385.551301, 4140674.8341, -28.3737075543, 0.844444453716, 1.13815820913, 0.0201546483342, -0.0181905274657, 1496957375.1344, 2.84281790217, 1, 0.284638890624, 23.1891365051, 13.6842908859, 11.1914892197 586385.542429, 4140674.83682, -28.3737837486, 0.844444453716, 1.14450469311, 0.0201546483342, 0.0, 1496957375.1439, 2.84299944483, 1, 0.293083335161, 23.1891365051, 13.6888685226, 11.1914892197 586385.533449, 4140674.83958, -28.3739159787, 0.869444429874, 1.14662487343, 0.0200010488548, -0.0176663940936, 1496957375.1544, 2.84326924118, 1, 0.30177777946, 23.2623786926, 13.6888685226, 11.1063833237 586385.524347, 4140674.84238, -28.3740083193, 0.869444429874, 1.19748968672, 0.0200010488548, 0.0, 1496957375.1641, 2.84351612537, 1, 0.310472223759, 23.2623786926, 13.6980237961, 11.1063833237 586385.515116, 4140674.84521, -28.3741366463, 0.897222220898, 1.27433024992, 0.0198474552948, -0.0171187868959, 1496957375.1747, 2.84371688116, 1, 0.319444445968, 23.4332790375, 13.6980237961, 11.021276474 586385.505772, 4140674.84807, -28.3742672913, 0.897222220898, 1.24728260575, 0.0198474552948, 0.0, 1496957375.1843, 2.84393008203, 1, 0.328416668177, 23.4332790375, 13.6842908859, 11.021276474 586385.496302, 4140674.85097, -28.3743801294, 0.922222197056, 1.28236051679, 0.0196938710374, -0.0166537151102, 1496957375.1939, 2.8441551578, 1, 0.337638890147, 23.5309371948, 13.6842908859, 10.936170578 586385.486723, 4140674.85389, -28.3745269682, 0.922222197056, 1.20789883134, 0.0196938710374, 0.0, 1496957375.2043, 2.84435509666, 1, 0.346861112118, 23.5309371948, 13.6430912018, 10.936170578 586385.477007, 4140674.85687, -28.3746163854, 0.949999988079, 1.28731369176, 0.0195018995663, -0.0202075235307, 1496957375.2139, 2.84461302053, 1, 0.356361111999, 23.4210720062, 13.6430912018, 10.8297872543 586385.467168, 4140674.85986, -28.3747527497, 0.949999988079, 1.29117785074, 0.0195018995663, 0.0, 1496957375.2245, 2.84481911859, 1, 0.365861111879, 23.4210720062, 13.7224388123, 10.8297872543 586385.457195, 4140674.86289, -28.3748636786, 0.963888883591, 1.34326932298, 0.0193483304306, -0.0159322447109, 1496957375.2340, 2.84504911916, 1, 0.375500000715, 23.5187301636, 13.7224388123, 10.7446804047 586385.447095, 4140674.86595, -28.3749849899, 0.963888883591, 1.31926426222, 0.0193483304306, 0.0, 1496957375.2446, 2.84526397123, 1, 0.385138889551, 23.5187301636, 13.6766614914, 10.7446804047 586385.436873, 4140674.86905, -28.3751059538, 1.00277781487, 1.29883250122, 0.0191563815468, -0.0191417162324, 1496957375.2541, 2.84547381371, 1, 0.3951666677, 23.6408023834, 13.6766614914, 10.6382980347 586385.426539, 4140674.87217, -28.3752110638, 1.00277781487, 1.22212638007, 0.0191563815468, 0.0, 1496957375.2636, 2.84567916746, 1, 0.405194445848, 23.6408023834, 13.6781873703, 10.6382980347 586385.416094, 4140674.87533, -28.3752995366, 1.02777779102, 1.17842902881, 0.0190028289551, -0.0149402519765, 1496957375.2741, 2.8459031222, 1, 0.415472223759, 23.7384605408, 13.6781873703, 10.553191185 586385.405537, 4140674.87852, -28.3754015733, 1.02777779102, 1.17182686527, 0.0190028289551, 0.0, 1496957375.2836, 2.84613804959, 1, 0.425750001669, 23.7384605408, 13.6781873703, 10.553191185 586385.394855, 4140674.88175, -28.3754834617, 1.04999995232, 1.21569581504, 0.0188109005644, -0.0182788951852, 1496957375.2941, 2.84635882322, 1, 0.436250001192, 23.8483257294, 13.6781873703, 10.446808815 586385.384047, 4140674.885, -28.3755810903, 1.04999995232, 1.24519894995, 0.0188109005644, 0.0, 1496957375.3035, 2.84660037897, 1, 0.446750000715, 23.8483257294, 13.6812391281, 10.446808815 586385.373097, 4140674.8883, -28.3756534746, 1.07500004768, 1.36272454564, 0.0186189816769, -0.01785291897, 1496957375.3141, 2.84681405709, 1, 0.457500001192, 23.9215679169, 13.6812391281, 10.3404254913 586385.362026, 4140674.89163, -28.3757609716, 1.07500004768, 1.34640458851, 0.0186189816769, 0.0, 1496957375.3236, 2.84704042258, 1, 0.468250001669, 23.9215679169, 13.6858167648, 10.3404254913 586385.350816, 4140674.895, -28.3758277427, 1.10000002384, 1.37865055979, 0.0183886940095, -0.0209352420433, 1496957375.3341, 2.8472878838, 1, 0.479250001907, 23.8605327606, 13.6858167648, 10.2127656937 586385.339472, 4140674.89839, -28.3759604013, 1.10000002384, 1.38619546417, 0.0183886940095, 0.0, 1496957375.3436, 2.84752075268, 1, 0.490250002146, 23.8605327606, 13.6278324127, 10.2127656937 586385.327998, 4140674.90182, -28.3760737237, 1.12777781487, 1.38451756601, 0.0181968011294, -0.0170151316585, 1496957375.3541, 2.8477359399, 1, 0.501527780294, 23.8849468231, 13.6278324127, 10.1063833237 586385.316397, 4140674.90528, -28.376179086, 1.12777781487, 1.34074580105, 0.0181968011294, 0.0, 1496957375.3636, 2.84797359113, 1, 0.512805558443, 23.8849468231, 13.6888685226, 10.1063833237 586385.304664, 4140674.90877, -28.3763306625, 1.15555560589, 1.35739557166, 0.0178514177834, -0.0298889421072, 1496957375.3738, 2.8482414759, 1, 0.524361114502, 23.9337749481, 13.6888685226, 9.91489315033 586385.292798, 4140674.9123, -28.376473573, 1.15555560589, 1.36337139425, 0.0178514177834, 0.0, 1496957375.3843, 2.84846984536, 1, 0.535916670561, 23.9337749481, 13.7315940857, 9.91489315033 586385.280791, 4140674.91586, -28.3766258247, 1.18611109257, 1.39601553925, 0.0176211837211, -0.0194108345967, 1496957375.3939, 2.84870446918, 1, 0.547777781487, 23.9093608856, 13.7315940857, 9.78723430634 586385.268652, 4140674.91947, -28.3767951494, 1.18611109257, 1.42319013437, 0.0176211837211, 0.0, 1496957375.4045, 2.84894327203, 1, 0.559638892412, 23.9093608856, 13.6537723541, 9.78723430634 586385.256372, 4140674.92312, -28.3769491352, 1.21388888359, 1.43716502147, 0.0173525947098, -0.0221263259688, 1496957375.4139, 2.84920138007, 1, 0.571777781248, 24.0314331055, 13.6537723541, 9.63829803467 586385.243956, 4140674.9268, -28.3771168357, 1.21388888359, 1.43297901529, 0.0173525947098, 0.0, 1496957375.4245, 2.84942891905, 1, 0.583916670084, 24.0314331055, 13.682765007, 9.63829803467 586385.231388, 4140674.93052, -28.3773051947, 1.24444448948, 1.46991880731, 0.0170840259831, -0.0215814147542, 1496957375.4341, 2.84971344057, 1, 0.596361114979, 23.9215679169, 13.682765007, 9.489361763 586385.218695, 4140674.93427, -28.3774662474, 1.24444448948, 1.43444605808, 0.0170840259831, 0.0, 1496957375.4435, 2.84994788914, 1, 0.608805559874, 23.9215679169, 13.7315940857, 9.489361763 586385.205856, 4140674.93808, -28.3776685996, 1.27499997616, 1.44218972725, 0.0167771149748, -0.0240714520818, 1496957375.4540, 2.8502166701, 1, 0.621555559635, 23.9337749481, 13.7315940857, 9.31914901733 586385.192884, 4140674.94191, -28.3777999412, 1.27499997616, 1.40871697209, 0.0167771149748, 0.0, 1496957375.4646, 2.85047365405, 1, 0.634305559397, 23.9337749481, 13.7239646912, 9.31914901733 586385.179783, 4140674.94578, -28.3779910812, 1.30277776718, 1.38233129586, 0.016470229578, -0.0235562353457, 1496957375.4743, 2.85075882405, 1, 0.647333337069, 24.0192260742, 13.7239646912, 9.14893627167 586385.166547, 4140674.94968, -28.3781248825, 1.30277776718, 1.37236422964, 0.016470229578, 0.0, 1496957375.4837, 2.85099615619, 1, 0.66036111474, 24.0192260742, 13.6873426437, 9.14893627167 586385.153178, 4140674.95363, -28.3782892944, 1.32777774334, 1.3901394197, 0.0162017252802, -0.0202220815237, 1496957375.4942, 2.85128773083, 1, 0.673638892174, 23.9826049805, 13.6873426437, 9.0 586385.139676, 4140674.95761, -28.378428027, 1.32777774334, 1.39507838786, 0.0162017252802, 0.0, 1496957375.5035, 2.85155263412, 1, 0.686916669607, 23.9826049805, 13.6736097336, 9.0 586385.112256, 4140674.96567, -28.3787165172, 1.35833334923, 1.42269413605, 0.0158948866366, -0.0225893477307, 1496957375.5143, 2.85203469833, 1, 0.700500003099, 24.0680561066, 13.6736097336, 8.82978725433 586385.112256, 4140674.96567, -28.3787165172, 1.35833334923, 1.42269413605, 0.0158948866366, 0.0, 1496957375.5238, 2.85203469833, 1, 0.714083336592, 24.0680561066, 13.6614027023, 8.82978725433 586385.098324, 4140674.96976, -28.3788664518, 1.38611114025, 1.47236231292, 0.015588072252, -0.022134905038, 1496957375.5343, 2.85229915653, 1, 0.727944447994, 24.0314331055, 13.6614027023, 8.65957450867 586385.084249, 4140674.97388, -28.3789906213, 1.38611114025, 1.49222766719, 0.015588072252, 0.0, 1496957375.5438, 2.85255749522, 1, 0.741805559397, 24.0314331055, 13.7239646912, 8.65957450867 586385.070035, 4140674.97802, -28.3791293241, 1.41666662693, 1.46334275526, 0.0152429346959, -0.0243626517043, 1496957375.5543, 2.85282529293, 1, 0.755972225666, 24.0192260742, 13.7239646912, 8.468085289 586385.055677, 4140674.98221, -28.3792588897, 1.41666662693, 1.47111424272, 0.0152429346959, 0.0, 1496957375.5638, 2.85306270624, 1, 0.770138891935, 24.0192260742, 13.667506218, 8.468085289 586385.041181, 4140674.98643, -28.3793757176, 1.44444441795, 1.45163885014, 0.0149361703008, -0.0212375354333, 1496957375.5735, 2.85334093731, 1, 0.784583336115, 24.055847168, 13.667506218, 8.29787254333 586385.02654, 4140674.99068, -28.3794952249, 1.44444441795, 1.45819696953, 0.0149361703008, 0.0, 1496957375.5841, 2.85356785281, 1, 0.799027780294, 24.055847168, 13.7041273117, 8.29787254333 586385.011776, 4140674.99497, -28.3796080276, 1.47500002384, 1.38787957785, 0.0145910877893, -0.0233954241295, 1496957375.5935, 2.8537945882, 1, 0.813777780533, 24.0680561066, 13.7041273117, 8.10638332367 586384.996863, 4140674.9993, -28.379727996, 1.47500002384, 1.43310663002, 0.0145910877893, 0.0, 1496957375.6042, 2.85403857492, 1, 0.828527780771, 24.0680561066, 13.6980237961, 8.10638332367 586384.981821, 4140675.00367, -28.3798194099, 1.50555551052, 1.41379322451, 0.0142460325939, -0.0229187959561, 1496957375.6136, 2.8543147667, 1, 0.843583335876, 24.0314331055, 13.6980237961, 7.91489362717 586384.966626, 4140675.00809, -28.3799330695, 1.50555551052, 1.47446235249, 0.0142460325939, 0.0, 1496957375.6241, 2.85456254602, 1, 0.858638890982, 24.0314331055, 13.6949720383, 7.91489362717 586384.95129, 4140675.01253, -28.3800243149, 1.51944446564, 1.47250212376, 0.0139010057644, -0.0227074327019, 1496957375.6336, 2.85477067756, 1, 0.873833335638, 24.0680561066, 13.6949720383, 7.7234044075 586384.935799, 4140675.01704, -28.3801342854, 1.51944446564, 1.56109314316, 0.0139010057644, 0.0, 1496957375.6441, 2.8550298627, 1, 0.889027780294, 24.0680561066, 13.682765007, 7.7234044075 586384.920178, 4140675.02156, -28.3801875254, 1.5666667223, 1.48129904105, 0.0135176734005, -0.0244680223588, 1496957375.6536, 2.85525587455, 1, 0.904694447517, 24.0436401367, 13.682765007, 7.510638237 586384.904414, 4140675.02614, -28.3802883606, 1.5666667223, 1.48177725231, 0.0135176734005, 0.0, 1496957375.6641, 2.85551874155, 1, 0.92036111474, 24.0436401367, 13.7132825851, 7.510638237 586384.888504, 4140675.03075, -28.3803330315, 1.60000002384, 1.45879416133, 0.0131343741131, -0.0239562051052, 1496957375.6735, 2.85575100344, 1, 0.936361114979, 24.0680561066, 13.7132825851, 7.29787254333 586384.872448, 4140675.0354, -28.3804262206, 1.60000002384, 1.49094880047, 0.0131343741131, 0.0, 1496957375.6841, 2.85599424971, 1, 0.952361115217, 24.0680561066, 13.7132825851, 7.29787254333 586384.856247, 4140675.04009, -28.3804590227, 1.62777781487, 1.50117382287, 0.012751105268, -0.0235455257822, 1496957375.6935, 2.85626430639, 1, 0.968638893366, 24.0680561066, 13.7132825851, 7.08510637283 586384.839903, 4140675.04482, -28.3805216625, 1.62777781487, 1.48555808755, 0.012751105268, 0.0, 1496957375.7040, 2.85650211121, 1, 0.984916671515, 24.0680561066, 13.6842908859, 7.08510637283 586384.823422, 4140675.04957, -28.3805350978, 1.65833330154, 1.46382256884, 0.0124061899144, -0.0207989161956, 1496957375.7135, 2.85674818465, 1, 1.00150000453, 24.0802631378, 13.6842908859, 6.89361715317 586384.806788, 4140675.05438, -28.3805636447, 1.65833330154, 1.49019991594, 0.0124061899144, 0.0, 1496957375.7241, 2.85696348076, 1, 1.01808333755, 24.0802631378, 13.7224388123, 6.89361715317 586384.790015, 4140675.05921, -28.3805391854, 1.68888890743, 1.47152471019, 0.0120612976467, -0.0204212524672, 1496957375.7335, 2.85721381923, 1, 1.03497222662, 24.0680561066, 13.7224388123, 6.70212745667 586384.773094, 4140675.06407, -28.380526958, 1.68888890743, 1.46219959221, 0.0120612976467, 0.0, 1496957375.7441, 2.85747693855, 1, 1.05186111569, 24.0680561066, 13.6919202805, 6.70212745667 586384.756044, 4140675.06897, -28.3804794615, 1.71666669846, 1.42251914655, 0.0117547468771, -0.0178573260571, 1496957375.7535, 2.85766916572, 1, 1.06902778268, 24.0680561066, 13.6919202805, 6.531914711 586384.738849, 4140675.07389, -28.3804198662, 1.71666669846, 1.417379046, 0.0117547468771, 0.0, 1496957375.7640, 2.85790559603, 1, 1.08619444966, 24.0680561066, 13.6644544601, 6.531914711 586384.721516, 4140675.07886, -28.3803312499, 1.74444448948, 1.44806348174, 0.011448214031, -0.0175719461355, 1496957375.7746, 2.85814894597, 1, 1.10363889456, 24.0680561066, 13.6644544601, 6.36170196533 586384.704047, 4140675.08385, -28.3802372767, 1.74444448948, 1.3948807158, 0.011448214031, 0.0, 1496957375.7842, 2.85837204102, 1, 1.12108333945, 24.0680561066, 13.6446170807, 6.36170196533 586384.686447, 4140675.08887, -28.380120459, 1.7722222805, 1.38434671268, 0.0111800127694, -0.0151336130085, 1496957375.7937, 2.85857816854, 1, 1.13880556226, 24.055847168, 13.6446170807, 6.2127661705 586384.668704, 4140675.09391, -28.3800017862, 1.7722222805, 1.3750133132, 0.0111800127694, 0.0, 1496957375.8042, 2.85877867049, 1, 1.15652778506, 24.055847168, 13.6797132492, 6.2127661705 586384.650815, 4140675.09901, -28.3798843091, 1.80277776718, 1.4701756798, 0.0109118236996, -0.0148764353956, 1496957375.8138, 2.8589837029, 1, 1.17455556273, 24.0314331055, 13.6797132492, 6.06382989883 586384.63278, 4140675.10411, -28.3797337422, 1.80277776718, 1.45904648353, 0.0109118236996, 0.0, 1496957375.8243, 2.8592129443, 1, 1.19258334041, 24.0314331055, 13.7087049484, 6.06382989883 586384.614602, 4140675.10927, -28.3796257852, 1.83333337307, 1.51341523042, 0.0106436473665, -0.0146277996706, 1496957375.8338, 2.85940473257, 1, 1.21091667414, 24.0680561066, 13.7087049484, 5.91489362717 586384.59628, 4140675.11444, -28.3795229727, 1.83333337307, 1.48717765783, 0.0106436473665, 0.0, 1496957375.8444, 2.85963575903, 1, 1.22925000787, 24.0680561066, 13.6919202805, 5.91489362717 586384.5778, 4140675.11966, -28.3794625355, 1.86388885975, 1.54638595679, 0.0103754834565, -0.0143873336953, 1496957375.8539, 2.85983705867, 1, 1.24788889647, 24.0314331055, 13.6919202805, 5.7659573555 586384.559178, 4140675.12491, -28.3793843389, 1.86388885975, 1.52980921457, 0.0103754834565, 0.0, 1496957375.8644, 2.86004409524, 1, 1.26652778506, 24.0314331055, 13.7010755539, 5.7659573555 586384.540402, 4140675.13021, -28.3793434696, 1.89444446564, 1.5743028707, 0.0101073316561, -0.0141546403304, 1496957375.8743, 2.86028280133, 1, 1.28547222972, 24.0436401367, 13.7010755539, 5.61702108383 586384.521492, 4140675.13553, -28.3793309238, 1.89444446564, 1.4826087081, 0.0101073316561, 0.0, 1496957375.8838, 2.86045156871, 1, 1.30441667438, 24.0436401367, 13.6659803391, 5.61702108383 586384.502424, 4140675.1409, -28.3793496247, 1.92499995232, 1.5359345294, 0.00991580226415, -0.00994957905004, 1496957375.8942, 2.86067123293, 1, 1.3236666739, 24.0802631378, 13.6659803391, 5.510638237 586384.483225, 4140675.1463, -28.3793591298, 1.92499995232, 1.47930833104, 0.00991580226415, 0.0, 1496957375.9037, 2.86087197819, 1, 1.34291667342, 24.0802631378, 13.6903944016, 5.510638237 586384.463872, 4140675.15176, -28.3794536563, 1.95277774334, 1.55230514856, 0.00972427877634, -0.00980774634795, 1496957375.9143, 2.86107354328, 1, 1.36244445086, 24.0314331055, 13.6903944016, 5.40425539017 586384.444378, 4140675.15725, -28.3794810632, 1.95277774334, 1.50022714753, 0.00972427877634, 0.0, 1496957375.9238, 2.86132026835, 1, 1.38197222829, 24.0314331055, 13.6293582916, 5.40425539017 586384.424738, 4140675.16279, -28.3796034371, 1.98333334923, 1.52043702147, 0.00949445753692, -0.0115876254241, 1496957375.9343, 2.8615034718, 1, 1.40180556178, 24.0314331055, 13.6293582916, 5.2765955925 586384.404959, 4140675.16836, -28.3796404321, 1.98333334923, 1.4684050618, 0.00949445753692, 0.0, 1496957375.9438, 2.86171495178, 1, 1.42163889527, 24.0314331055, 13.6583509445, 5.2765955925 586384.385037, 4140675.17397, -28.3797841379, 2.01388883591, 1.47653034992, 0.00930294663628, -0.0095095070409, 1496957375.9544, 2.86192049633, 1, 1.44177778363, 24.0680561066, 13.6583509445, 5.17021274567 586384.364971, 4140675.17962, -28.3798394445, 2.01388883591, 1.47691964412, 0.00930294663628, 0.0, 1496957375.9639, 2.86215666916, 1, 1.46191667199, 24.0680561066, 13.6690320969, 5.17021274567 586384.344772, 4140675.18531, -28.379933903, 2.04722213745, 1.44534040904, 0.00911144127435, -0.00935440069849, 1496957375.9746, 2.86235728352, 1, 1.48238889337, 24.055847168, 13.6690320969, 5.06382989883 586384.324443, 4140675.19104, -28.3799983533, 2.04722213745, 1.41887450246, 0.00911144127435, 0.0, 1496957375.9842, 2.86261806066, 1, 1.50286111474, 24.055847168, 13.6583509445, 5.06382989883 586384.303941, 4140675.19681, -28.3800543714, 2.07500004768, 1.48518452679, 0.00884334234033, -0.0129204302586, 1496957375.9945, 2.8627822679, 1, 1.52361111522, 24.0924701691, 13.6583509445, 4.91489362717 586384.28333, 4140675.20261, -28.3801014675, 2.07500004768, 1.39811843339, 0.00884334234033, 0.0, 1496957376.0039, 2.86303900411, 1, 1.54436111569, 24.0924701691, 13.7544822693, 4.91489362717 586384.262563, 4140675.20843, -28.3801430343, 2.1027777195, 1.44121413726, 0.00857525372521, -0.0127492607816, 1496957376.0145, 2.8632159081, 1, 1.56538889289, 24.0680561066, 13.7544822693, 4.7659573555 586384.241673, 4140675.21429, -28.3801775947, 2.1027777195, 1.39108926317, 0.00857525372521, 0.0, 1496957376.0240, 2.86344096107, 1, 1.58641667008, 24.0680561066, 13.6949720383, 4.7659573555 586384.220621, 4140675.22017, -28.3802150562, 2.1333334446, 1.45556690637, 0.0083071751158, -0.0125661841605, 1496957376.0346, 2.86364794418, 1, 1.60775000453, 24.0924701691, 13.6949720383, 4.61702108383 586384.199439, 4140675.22607, -28.3801990747, 2.1333334446, 1.42738512567, 0.0083071751158, 0.0, 1496957376.0442, 2.86385104224, 1, 1.62908333898, 24.0924701691, 13.6964979172, 4.61702108383 586384.178099, 4140675.232, -28.380229665, 2.16111111641, 1.46335825418, 0.00803910705719, -0.0124041774888, 1496957376.0536, 2.86406030849, 1, 1.65069445014, 24.0436401367, 13.6964979172, 4.468085289 586384.156634, 4140675.23796, -28.3801511424, 2.16111111641, 1.3968803161, 0.00803910705719, 0.0, 1496957376.0641, 2.86428437599, 1, 1.6723055613, 24.0436401367, 13.6522464752, 4.468085289 586384.135012, 4140675.24393, -28.3801440913, 2.19166660309, 1.45428677281, 0.00773275429275, -0.0139780733081, 1496957376.0736, 2.86443067603, 1, 1.69422222733, 24.1168842316, 13.6522464752, 4.29787254333 586384.112812, 4140675.2497, -28.380094287, 2.19166660309, 1.39905550699, 0.00773275429275, 0.0, 1496957376.0841, 2.86831382951, 1, 1.71613889337, 24.1168842316, 13.667506218, 4.29787254333 586384.090307, 4140675.25543, -28.380045143, 2.22222232819, 1.39017697364, 0.00738812085067, -0.015508504154, 1496957376.0936, 2.86851015918, 1, 1.73836111665, 24.1290912628, 13.667506218, 4.10638284683 586384.067663, 4140675.26117, -28.3799124723, 2.22222232819, 1.36950694212, 0.00738812085067, 0.0, 1496957376.1042, 2.86867730229, 1, 1.76058333993, 24.1290912628, 13.6568250656, 4.10638284683 586384.044887, 4140675.26695, -28.3798156502, 2.25, 1.37426018607, 0.00708179256744, -0.0136145903658, 1496957376.1137, 2.86886159202, 1, 1.78308333993, 24.1779193878, 13.6568250656, 3.93617010117 586384.021988, 4140675.27274, -28.3796523819, 2.25, 1.3046044268, 0.00708179256744, 0.0, 1496957376.1243, 2.86899854572, 1, 1.80558333993, 24.1779193878, 13.623254776, 3.93617010117 586383.998946, 4140675.27856, -28.3795036077, 2.27777767181, 1.35722327694, 0.00677547507479, -0.0134480856686, 1496957376.1338, 2.86919508624, 1, 1.82836111665, 24.2145423889, 13.623254776, 3.7659573555 586383.975778, 4140675.2844, -28.3792797243, 2.27777767181, 1.30290310999, 0.00677547507479, 0.0, 1496957376.1444, 2.86938536819, 1, 1.85113889337, 24.2145423889, 13.682765007, 3.7659573555 586383.952476, 4140675.29028, -28.3790981509, 2.30555558205, 1.33803845929, 0.00643088042662, -0.0149462737249, 1496957376.1539, 2.86951846839, 1, 1.87419444919, 24.1535053253, 13.682765007, 3.57446813583 586383.929048, 4140675.29618, -28.3788823327, 2.30555558205, 1.31603461667, 0.00643088042662, 0.0, 1496957376.1644, 2.86969270671, 1, 1.89725000501, 24.1535053253, 13.682765007, 3.57446813583 586383.905476, 4140675.30215, -28.3786988202, 2.33333325386, 1.41004479512, 0.00612458431313, -0.0131269767392, 1496957376.1740, 2.86986637282, 1, 1.92058333755, 24.2023353577, 13.682765007, 3.40425539017 586383.881798, 4140675.30816, -28.3784968425, 2.33333325386, 1.34199446669, 0.00612458431313, 0.0, 1496957376.1845, 2.87005778396, 1, 1.94391667008, 24.2023353577, 13.7193870544, 3.40425539017 586383.857964, 4140675.31421, -28.3783405498, 2.36111116409, 1.4270054211, 0.00578001210131, -0.014593646291, 1496957376.1941, 2.87018398343, 1, 1.96752778172, 24.1412982941, 13.7193870544, 3.21276593208 586383.834023, 4140675.3203, -28.3781825807, 2.36111116409, 1.34717023255, 0.00578001210131, 0.0, 1496957376.2036, 2.8703465591, 1, 1.99113889337, 24.1412982941, 13.6766614914, 3.21276593208 586383.809934, 4140675.32645, -28.3780883448, 2.38888883591, 1.4057646125, 0.00543545146341, -0.0144234688833, 1496957376.2141, 2.87052881535, 1, 2.01502778172, 24.2145423889, 13.6766614914, 3.02127671242 586383.785739, 4140675.33263, -28.377945045, 2.38888883591, 1.30666787796, 0.00543545146341, 0.0, 1496957376.2246, 2.87067822891, 1, 2.03891667008, 24.2145423889, 13.6842908859, 3.02127671242 586383.761402, 4140675.33886, -28.3779318742, 2.41666674614, 1.38340603866, 0.00512918354003, -0.0126731550333, 1496957376.2342, 2.87084152324, 1, 2.06308333755, 24.2633705139, 13.6842908859, 2.85106372833 586383.736953, 4140675.34513, -28.3778127041, 2.41666674614, 1.30595601665, 0.00512918354003, 0.0, 1496957376.2438, 2.87101465112, 1, 2.08725000501, 24.2633705139, 13.6522464752, 2.85106372833 586383.736953, 4140675.34513, -28.3778127041, 2.44444441795, 1.30595601665, 0.00482292385952, -0.0125288052477, 1496957376.2543, 2.87101465112, 1, 2.11169444919, 24.1901283264, 13.6522464752, 2.68085098267 586383.687642, 4140675.35778, -28.3778234888, 2.44444441795, 1.36653723402, 0.00482292385952, 0.0, 1496957376.2638, 2.87131281605, 1, 2.13613889337, 24.1901283264, 13.6812391281, 2.68085098267 586383.662786, 4140675.36417, -28.3778518662, 2.47499990463, 1.40937421521, 0.00455495289644, -0.0108271100365, 1496957376.2744, 2.8714217495, 1, 2.16088889241, 24.1412982941, 13.6812391281, 2.53191494942 586383.637806, 4140675.37057, -28.3778298069, 2.47499990463, 1.3407209731, 0.00455495289644, 0.0, 1496957376.2839, 2.87158967712, 1, 2.18563889146, 24.1412982941, 13.655298233, 2.53191494942 586383.61271, 4140675.37701, -28.3778533628, 2.50277781487, 1.28584191534, 0.00424870660894, -0.0122362554791, 1496957376.2946, 2.87171212661, 1, 2.21066666961, 24.1657123566, 13.655298233, 2.36170220375 586383.587501, 4140675.38347, -28.3778406763, 2.50277781487, 1.18777273058, 0.00424870660894, 0.0, 1496957376.3042, 2.87185541506, 1, 2.23569444776, 24.1657123566, 13.6888685226, 2.36170220375 586383.562163, 4140675.38997, -28.3778504273, 2.54166674614, 1.22626457462, 0.00394246679354, -0.0120487792456, 1496957376.3139, 2.87195677893, 1, 2.26111111522, 24.1412982941, 13.6888685226, 2.19148945808 586383.536693, 4140675.39649, -28.3778607193, 2.54166674614, 1.28121964224, 0.00394246679354, 0.0, 1496957376.3244, 2.87205231341, 1, 2.28652778268, 24.1412982941, 13.6781873703, 2.19148945808 586383.51109, 4140675.40302, -28.3778200354, 2.56944441795, 1.30962461913, 0.00367451168291, -0.010428523332, 1496957376.3340, 2.87218609649, 1, 2.31222222686, 24.2023353577, 13.6781873703, 2.04255318642 586383.485354, 4140675.40957, -28.3778044982, 2.56944441795, 1.31035724883, 0.00367451168291, 0.0, 1496957376.3446, 2.87228221834, 1, 2.33791667104, 24.2023353577, 13.6659803391, 2.04255318642 586383.459493, 4140675.41613, -28.3777578045, 2.59722232819, 1.30817026267, 0.00340656107212, -0.0103168145398, 1496957376.3541, 2.87235962934, 1, 2.36388889432, 24.1535053253, 13.6659803391, 1.89361703396 586383.433517, 4140675.4227, -28.3777022567, 2.59722232819, 1.22695594861, 0.00340656107212, 0.0, 1496957376.3636, 2.8724635625, 1, 2.3898611176, 24.1535053253, 13.6354618073, 1.89361703396 586383.407426, 4140675.42931, -28.3776454255, 2.59722232819, 1.20587814011, 0.00340656107212, 0.0, 1496957376.3739, 2.87257403225, 1, 2.41583334088, 24.1535053253, 13.6354618073, 1.89361703396 586383.381218, 4140675.43595, -28.3775537107, 2.62222218513, 1.15972712548, 0.00313861443415, -0.010218304135, 1496957376.3846, 2.87262390506, 1, 2.44205556273, 24.2389564514, 13.655298233, 1.7446808815 586383.354894, 4140675.44262, -28.3774133669, 2.63611102104, 1.19684909546, 0.00290894881244, -0.00871228942471, 1496957376.3945, 2.87270193765, 1, 2.46841667295, 24.2511634827, 13.655298233, 1.61702132225 586383.328455, 4140675.4493, -28.3773085447, 2.63611102104, 1.16462692411, 0.00290894881244, 0.0, 1496957376.4042, 2.87280743235, 1, 2.49477778316, 24.2511634827, 13.6690320969, 1.61702132225 586383.301888, 4140675.45601, -28.3771079918, 2.66111111641, 1.19421115412, 0.00267928546864, -0.00863035528203, 1496957376.4150, 2.87290277417, 1, 2.52138889432, 24.2511634827, 13.6690320969, 1.48936164379 586383.275203, 4140675.46275, -28.3769585574, 2.66111111641, 1.21129863649, 0.00267928546864, 0.0, 1496957376.4247, 2.87296793176, 1, 2.54800000548, 24.2511634827, 13.6781873703, 1.48936164379 586383.248409, 4140675.46953, -28.3767050356, 2.68888878822, 1.19892948408, 0.00244962463489, -0.00854110570746, 1496957376.4343, 2.87306545043, 1, 2.57488889337, 24.2633705139, 13.6781873703, 1.36170208454 586383.221501, 4140675.47634, -28.3765323842, 2.68888878822, 1.190837401, 0.00244962463489, 0.0, 1496957376.4439, 2.87309380648, 1, 2.60177778125, 24.2633705139, 13.6873426437, 1.36170208454 586383.194477, 4140675.48318, -28.3762260042, 2.72499990463, 1.20008823062, 0.00225824221834, -0.00702320819228, 1496957376.4544, 2.87318046311, 1, 2.62902778029, 24.2877845764, 13.6873426437, 1.2553191185 586383.167312, 4140675.49004, -28.3760240329, 2.72499990463, 1.23155803062, 0.00225824221834, 0.0, 1496957376.4639, 2.87321005051, 1, 2.65627777934, 24.2877845764, 13.6690320969, 1.2553191185 586383.140045, 4140675.49694, -28.375701909, 2.73888897896, 1.20281812475, 0.00206686114541, -0.00698754401518, 1496957376.4745, 2.87329824995, 1, 2.68366666913, 24.2755775452, 13.6690320969, 1.14893615246 586383.112659, 4140675.50385, -28.3754535224, 2.73888897896, 1.19928879284, 0.00206686114541, 0.0, 1496957376.4840, 2.87336305775, 1, 2.71105555892, 24.2755775452, 13.6766614914, 1.14893615246 586383.085162, 4140675.51078, -28.3751793252, 2.76111102104, 1.17720330721, 0.00191375717794, -0.00554501308728, 1496957376.4945, 2.87341617102, 1, 2.73866666913, 24.2877845764, 13.6766614914, 1.06382977962 586383.057541, 4140675.51774, -28.3749636551, 2.76111102104, 1.17972161502, 0.00191375717794, 0.0, 1496957376.5040, 2.87346951907, 1, 2.76627777934, 24.2877845764, 13.6308841705, 1.06382977962 586383.001916, 4140675.53175, -28.3745520264, 2.79722213745, 1.29806857204, 0.00172237823654, -0.00684174985023, 1496957376.5145, 2.87362472235, 1, 2.79425000072, 24.2511634827, 13.6308841705, 0.957446813583 586383.001916, 4140675.53175, -28.3745520264, 2.79722213745, 1.29806857204, 0.00172237823654, 0.0, 1496957376.5241, 2.87362472235, 1, 2.82222222209, 24.2511634827, 13.7041273117, 0.957446813583 586382.973937, 4140675.53878, -28.3743352583, 2.81111121178, 1.21550722581, 0.00153100031991, -0.00680790983417, 1496957376.5347, 2.87370296055, 1, 2.85033333421, 24.2145423889, 13.7041273117, 0.851063847542 586382.945827, 4140675.54584, -28.3742072694, 2.81111121178, 1.23659356126, 0.00153100031991, 0.0, 1496957376.5443, 2.87376827283, 1, 2.87844444633, 24.2145423889, 13.7056531906, 0.851063847542 586382.91762, 4140675.55292, -28.3740500072, 2.83611106873, 1.14313155989, 0.00137789864791, -0.00539829605713, 1496957376.5538, 2.87377565088, 1, 2.90680555701, 24.2267494202, 13.7056531906, 0.765957474709 586382.889269, 4140675.56003, -28.3739325712, 2.83611106873, 1.24802690645, 0.00137789864791, 0.0, 1496957376.5644, 2.87383196795, 1, 2.9351666677, 24.2267494202, 13.6934461594, 0.765957474709 586382.860827, 4140675.56718, -28.3738237787, 2.86111116409, 1.17381011289, 0.00122479739336, -0.00535111171045, 1496957376.5740, 2.87391954534, 1, 2.96377777934, 24.2023353577, 13.6934461594, 0.680851042271 586382.83225, 4140675.57436, -28.3737575514, 2.86111116409, 1.22840013452, 0.00122479739336, 0.0, 1496957376.5846, 2.87396370513, 1, 2.99238889098, 24.2023353577, 13.6644544601, 0.680851042271 586382.803576, 4140675.58156, -28.3736310406, 2.88888883591, 1.16913616397, 0.00114824699823, -0.00264982141844, 1496957376.5941, 2.87400514401, 1, 3.02127777934, 24.2511634827, 13.6644544601, 0.638297855854 586382.77477, 4140675.5888, -28.3735890584, 2.88888883591, 1.25380996173, 0.00114824699823, 0.0, 1496957376.6036, 2.87408556728, 1, 3.0501666677, 24.2511634827, 13.6522464752, 0.638297855854 586382.745844, 4140675.59605, -28.3734871605, 2.92222213745, 1.20348059551, 0.0010716967124, -0.00261959160605, 1496957376.6141, 2.87410972031, 1, 3.07938888907, 24.1779193878, 13.6522464752, 0.595744669437 586382.7168, 4140675.60336, -28.3734960118, 2.92222213745, 1.24699662343, 0.0010716967124, 0.0, 1496957376.6235, 2.87415302813, 1, 3.10861111045, 24.1779193878, 13.6949720383, 0.595744669437 586382.687657, 4140675.61068, -28.3733557118, 2.94722223282, 1.13541904422, 0.0009951465286, -0.00259736720738, 1496957376.6340, 2.87415689855, 1, 3.13808333278, 24.2023353577, 13.6949720383, 0.553191483021 586382.658407, 4140675.61806, -28.3734002709, 2.94722223282, 1.18021556754, 0.0009951465286, 0.0, 1496957376.6446, 2.87420973669, 1, 3.16755555511, 24.2023353577, 13.6430912018, 0.553191483021 586382.629024, 4140675.62546, -28.3732880112, 2.97222232819, 1.22424941933, 0.000918596439528, -0.00257551692369, 1496957376.6541, 2.87428135532, 1, 3.19727777839, 24.2267494202, 13.6430912018, 0.510638296604 586382.59953, 4140675.63289, -28.3733289922, 2.97222232819, 1.22166613795, 0.000918596439528, 0.0, 1496957376.6635, 2.87425594258, 1, 3.22700000167, 24.2267494202, 13.7102308273, 0.510638296604 586382.569923, 4140675.64034, -28.3732787725, 2.99444437027, 1.18129666798, 0.000880321428239, -0.00127820077972, 1496957376.6743, 2.87428365462, 1, 3.25694444537, 24.2267494202, 13.7102308273, 0.489361703396 586382.540192, 4140675.64781, -28.3732774379, 2.99444437027, 1.21808822886, 0.000880321428239, 0.0, 1496957376.6838, 2.87429928757, 1, 3.28688888907, 24.2267494202, 13.6385135651, 0.489361703396 586382.510357, 4140675.6553, -28.3732501194, 3.0083334446, 1.16346235997, 0.000880321428239, 0.0, 1496957376.6943, 2.87430861181, 1, 3.31697222352, 24.2023353577, 13.6385135651, 0.489361703396 586382.480387, 4140675.66281, -28.3732489841, 3.0083334446, 1.21343571146, 0.000880321428239, 0.0, 1496957376.7039, 2.87436879771, 1, 3.34705555797, 24.2023353577, 13.6583509445, 0.489361703396 586382.450316, 4140675.67033, -28.373213822, 3.044444561, 1.15185775816, 0.0008420464379, -0.00125720766372, 1496957376.7145, 2.87439479669, 1, 3.37750000358, 24.2755775452, 13.6583509445, 0.468085110188 586382.420122, 4140675.67788, -28.3732016524, 3.044444561, 1.19475071355, 0.0008420464379, 0.0, 1496957376.7241, 2.87439242206, 1, 3.40794444919, 24.2755775452, 13.6415653229, 0.468085110188 586382.38983, 4140675.68545, -28.3731718026, 3.06666660309, 1.11589828229, 0.0008420464379, 0.0, 1496957376.7346, 2.87442221231, 1, 3.43861111522, 24.2511634827, 13.6415653229, 0.468085110188 586382.359404, 4140675.69304, -28.3731341111, 3.06666660309, 1.19215371397, 0.0008420464379, 0.0, 1496957376.7442, 2.87446208717, 1, 3.46927778125, 24.2511634827, 13.6736097336, 0.468085110188 586382.328882, 4140675.70062, -28.3730643401, 3.09166669846, 1.08660699218, 0.0008420464379, 0.0, 1496957376.7536, 2.87450090811, 1, 3.50019444823, 24.2145423889, 13.6736097336, 0.468085110188 586382.298224, 4140675.70824, -28.3729779869, 3.09166669846, 1.20995778706, 0.0008420464379, 0.0, 1496957376.7642, 2.8745001921, 1, 3.53111111522, 24.2145423889, 13.7026014328, 0.468085110188 586382.26748, 4140675.71588, -28.3728829315, 3.11388897896, 1.08847383637, 0.0008420464379, 0.0, 1496957376.7737, 2.87453680656, 1, 3.56225000501, 24.2511634827, 13.7026014328, 0.468085110188 586382.236609, 4140675.72355, -28.372801017, 3.11388897896, 1.17275753416, 0.0008420464379, 0.0, 1496957376.7842, 2.87458410969, 1, 3.5933888948, 24.2511634827, 13.6797132492, 0.468085110188 586382.20563, 4140675.73125, -28.3726623347, 3.125, 1.14181219513, 0.0008420464379, 0.0, 1496957376.7938, 2.87460168685, 1, 3.6246388948, 24.2145423889, 13.6797132492, 0.468085110188 586382.174542, 4140675.73901, -28.3725975817, 3.125, 1.20921529555, 0.0008420464379, 0.0, 1496957376.8043, 2.87463205445, 1, 3.6558888948, 24.2145423889, 13.7026014328, 0.468085110188 586382.143348, 4140675.74677, -28.3724388024, 3.15833330154, 1.12997750578, 0.0008420464379, 0.0, 1496957376.8141, 2.8746238933, 1, 3.68747222781, 24.2145423889, 13.7026014328, 0.468085110188 586382.112038, 4140675.75459, -28.3724248465, 3.15833330154, 1.2135091406, 0.0008420464379, 0.0, 1496957376.8246, 2.87462457246, 1, 3.71905556083, 24.2145423889, 13.6812391281, 0.468085110188 586382.080629, 4140675.76244, -28.3722952278, 3.18333339691, 1.1318512996, 0.0008420464379, 0.0, 1496957376.8342, 2.8746869388, 1, 3.7508888948, 24.2755775452, 13.6812391281, 0.468085110188 586382.049107, 4140675.77033, -28.372321561, 3.18333339691, 1.1591150466, 0.0008420464379, 0.0, 1496957376.8438, 2.87469102975, 1, 3.78272222877, 24.2755775452, 13.6263065338, 0.468085110188 586382.017459, 4140675.77823, -28.3722255863, 3.205555439, 1.17904849168, 0.0008420464379, 0.0, 1496957376.8543, 2.87471829494, 1, 3.81477778316, 24.2023353577, 13.6263065338, 0.468085110188 586381.985733, 4140675.78618, -28.3722268511, 3.205555439, 1.10621963392, 0.0008420464379, 0.0, 1496957376.8638, 2.87473618179, 1, 3.84683333755, 24.2023353577, 13.6751356125, 0.468085110188 586381.95389, 4140675.79415, -28.3721342525, 3.23055553436, 1.08040778323, 0.0008420464379, 0.0, 1496957376.8749, 2.87474941841, 1, 3.87913889289, 24.2633705139, 13.6751356125, 0.468085110188 586381.921926, 4140675.80213, -28.3720809966, 3.23055553436, 1.11828792221, 0.0008420464379, 0.0, 1496957376.8844, 2.87476523717, 1, 3.91144444823, 24.2633705139, 13.6812391281, 0.468085110188 586381.889851, 4140675.81012, -28.3720865417, 3.24444437027, 1.15462359336, 0.0008420464379, 0.0, 1496957376.8957, 2.87481747, 1, 3.94388889194, 24.2023353577, 13.6812391281, 0.468085110188 586381.857638, 4140675.81813, -28.3720553564, 3.24444437027, 1.26606542104, 0.0008420464379, 0.0, 1496957376.9046, 2.87480558333, 1, 3.97633333564, 24.2023353577, 13.7239646912, 0.468085110188 586381.825316, 4140675.82615, -28.3720932389, 3.24444437027, 1.20478227035, 0.0008420464379, 0.0, 1496957376.9142, 2.87470481577, 1, 4.00877777934, 24.3121986389, 13.7239646912, 0.468085110188 586381.792881, 4140675.8342, -28.3721332811, 3.27777767181, 1.22595168159, 0.0008420464379, 0.0, 1496957376.9237, 2.87474582296, 1, 4.04155555606, 24.3121986389, 13.6522464752, 0.468085110188 586381.760338, 4140675.84227, -28.3722037831, 3.27777767181, 1.11538888551, 0.0008420464379, 0.0, 1496957376.9342, 2.87473782101, 1, 4.07433333278, 24.1779193878, 13.6522464752, 0.468085110188 586381.727676, 4140675.85036, -28.3723707478, 3.28888893127, 1.16800256547, 0.0008420464379, 0.0, 1496957376.9437, 2.87476654938, 1, 4.10722222209, 24.1779193878, 13.6842908859, 0.468085110188 586381.69491, 4140675.85845, -28.3725042697, 3.28888893127, 1.11684912696, 0.0008420464379, 0.0, 1496957376.9543, 2.8746998645, 1, 4.1401111114, 24.2023353577, 13.6842908859, 0.468085110188 586381.662018, 4140675.86657, -28.3726886259, 3.31944441795, 1.1780386857, 0.0008420464379, 0.0, 1496957376.9639, 2.87471169482, 1, 4.17330555558, 24.2023353577, 13.6461429596, 0.468085110188 586381.629044, 4140675.8747, -28.3728794958, 3.31944441795, 1.06505643017, 0.0008420464379, 0.0, 1496957376.9745, 2.87471305121, 1, 4.20649999976, 24.2023353577, 13.6461429596, 0.468085110188 586381.595948, 4140675.88287, -28.3731037416, 3.34722232819, 1.0856384155, 0.0008420464379, 0.0, 1496957376.9841, 2.8747068769, 1, 4.23997222304, 24.2023353577, 13.6873426437, 0.468085110188 586381.562764, 4140675.89107, -28.3733362351, 3.34722232819, 1.0627068335, 0.0008420464379, 0.0, 1496957376.9938, 2.87472133067, 1, 4.27344444633, 24.2023353577, 13.6873426437, 0.468085110188 586381.529448, 4140675.89931, -28.3735294165, 3.36944437027, 1.15450495251, 0.0008420464379, 0.0, 1496957377.0043, 2.87472979936, 1, 4.30713889003, 24.2023353577, 13.6736097336, 0.468085110188 586381.496042, 4140675.90757, -28.3736957414, 3.36944437027, 1.11524158299, 0.0008420464379, 0.0, 1496957377.0138, 2.87474897513, 1, 4.34083333373, 24.1779193878, 13.6736097336, 0.468085110188 586381.462526, 4140675.91588, -28.3739169436, 3.39444446564, 1.14304043581, 0.0008420464379, 0.0, 1496957377.0243, 2.87475032536, 1, 4.37477777839, 24.1779193878, 13.6949720383, 0.468085110188 586381.428902, 4140675.92423, -28.3740674164, 3.41666674614, 1.12766229612, 0.0008420464379, 0.0, 1496957377.0338, 2.87476466226, 1, 4.40894444585, 24.1290912628, 13.6949720383, 0.468085110188 586381.395162, 4140675.93261, -28.3742741747, 3.41666674614, 1.14682520162, 0.0008420464379, 0.0, 1496957377.0443, 2.87483439094, 1, 4.44311111331, 24.1290912628, 13.7041273117, 0.468085110188 586381.361346, 4140675.94105, -28.374399283, 3.41666674614, 1.03680692571, 0.0008420464379, 0.0, 1496957377.0539, 2.8748518709, 1, 4.47727778077, 24.0802631378, 13.7041273117, 0.468085110188 586381.327424, 4140675.94952, -28.374563518, 3.43888878822, 1.00734787394, 0.0008420464379, 0.0, 1496957377.0645, 2.87491171052, 1, 4.51166666865, 24.0802631378, 13.7026014328, 0.468085110188 586381.293425, 4140675.95803, -28.3746999642, 3.43888878822, 0.9888533194, 0.0008420464379, 0.0, 1496957377.0740, 2.87496483385, 1, 4.54605555654, 24.0680561066, 13.7026014328, 0.468085110188 586381.256833, 4140675.96521, -28.3750171624, 3.46111106873, 1.02621587209, 0.0008420464379, 0.0, 1496957377.0846, 2.88620608665, 1, 4.58066666722, 24.0680561066, 13.6461429596, 0.468085110188 586381.2205, 4140675.97266, -28.3752206909, 3.46111106873, 1.01710318727, 0.0008420464379, 0.0, 1496957377.0941, 2.88627719412, 1, 4.61527777791, 24.0680561066, 13.6461429596, 0.468085110188 586381.184055, 4140675.98015, -28.3754040431, 3.47222232819, 1.04205726669, 0.0008420464379, 0.0, 1496957377.1036, 2.88635224745, 1, 4.65000000119, 24.1046772003, 13.682765007, 0.468085110188 586381.147513, 4140675.98767, -28.3756049825, 3.47222232819, 1.0797780623, 0.0008420464379, 0.0, 1496957377.1141, 2.88640907775, 1, 4.68472222447, 24.0924701691, 13.682765007, 0.468085110188 586381.110859, 4140675.99521, -28.3757778918, 3.50277781487, 1.09284132463, 0.0008420464379, 0.0, 1496957377.1236, 2.88648252878, 1, 4.71975000262, 24.0924701691, 13.6415653229, 0.468085110188 586381.074073, 4140676.00277, -28.3759364681, 3.50277781487, 1.17606520747, 0.0008420464379, 0.0, 1496957377.1341, 2.886541235, 1, 4.75477778077, 24.007019043, 13.6415653229, 0.468085110188 586381.037204, 4140676.01035, -28.3760956209, 3.52500009537, 1.07555977412, 0.0008420464379, 0.0, 1496957377.1435, 2.88662038667, 1, 4.79002778172, 24.007019043, 13.7544822693, 0.468085110188 586381.000242, 4140676.01795, -28.3762607528, 3.52500009537, 1.00575664205, 0.0008420464379, 0.0, 1496957377.1541, 2.88670161214, 1, 4.82527778268, 23.9093608856, 13.7544822693, 0.468085110188 586380.963188, 4140676.02557, -28.3763885368, 3.544444561, 0.954828620126, 0.0008420464379, 0.0, 1496957377.1635, 2.88676006953, 1, 4.86072222829, 23.9093608856, 13.6568250656, 0.468085110188 586380.926035, 4140676.03324, -28.3765565632, 3.544444561, 1.00445171578, 0.0008420464379, 0.0, 1496957377.1741, 2.88682853471, 1, 4.8961666739, 23.9093608856, 13.6568250656, 0.468085110188 586380.888783, 4140676.0409, -28.376647057, 3.56388878822, 0.970663063414, 0.0008420464379, 0.0, 1496957377.1836, 2.88689924298, 1, 4.93180556178, 23.9093608856, 13.6171512604, 0.468085110188 586380.851421, 4140676.04859, -28.3768186858, 3.56388878822, 1.0413034525, 0.0008420464379, 0.0, 1496957377.1941, 2.88697682339, 1, 4.96744444966, 23.9093608856, 13.6171512604, 0.468085110188 586380.81396, 4140676.05633, -28.3768980457, 3.57777786255, 1.04049745766, 0.0008420464379, 0.0, 1496957377.2035, 2.88703395425, 1, 5.00322222829, 23.8971538544, 13.7224388123, 0.468085110188 586380.776403, 4140676.06411, -28.3770531723, 3.57777786255, 1.03835871275, 0.0008420464379, 0.0, 1496957377.2140, 2.88705459416, 1, 5.03900000691, 23.701839447, 13.7224388123, 0.468085110188 586380.73875, 4140676.07192, -28.377177137, 3.61111116409, 1.05478715894, 0.000880321428239, 0.00105992279383, 1496957377.2245, 2.88711033026, 1, 5.07511111856, 23.701839447, 13.7392234802, 0.489361703396 586380.700983, 4140676.07976, -28.3772661192, 3.61111116409, 1.09411630438, 0.000880321428239, 0.0, 1496957377.2340, 2.88710458764, 1, 5.1112222302, 23.4332790375, 13.7392234802, 0.489361703396 586380.663113, 4140676.08762, -28.377384468, 3.63055562973, 1.09228319174, 0.000880321428239, 0.0, 1496957377.2446, 2.88715364261, 1, 5.14752778649, 23.4332790375, 13.655298233, 0.489361703396 586380.625148, 4140676.09552, -28.3774343003, 3.63055562973, 1.06013400443, 0.000880321428239, 0.0, 1496957377.2541, 2.88719636829, 1, 5.18383334279, 23.1280994415, 13.655298233, 0.489361703396 586380.587084, 4140676.10342, -28.3775183661, 3.64166665077, 1.01984058692, 0.000918596439528, 0.00105103006286, 1496957377.2635, 2.88722821384, 1, 5.2202500093, 23.1280994415, 13.682765007, 0.510638296604 586380.548929, 4140676.11135, -28.3775113169, 3.64166665077, 0.962318483261, 0.000918596439528, 0.0, 1496957377.2741, 2.88724668001, 1, 5.25666667581, 22.9327831268, 13.682765007, 0.510638296604 586380.510663, 4140676.1193, -28.3774880916, 3.67222213745, 0.99642809782, 0.000918596439528, 0.0, 1496957377.2835, 2.88727546058, 1, 5.29338889718, 22.9327831268, 13.7712669373, 0.510638296604 586380.472308, 4140676.12727, -28.3774155993, 3.67222213745, 0.982449802453, 0.000918596439528, 0.0, 1496957377.2941, 2.88731791332, 1, 5.33011111856, 22.9327831268, 13.7712669373, 0.510638296604 586380.433838, 4140676.13528, -28.3773568645, 3.68055558205, 1.04514371675, 0.000918596439528, 0.0, 1496957377.3046, 2.88735842713, 1, 5.36691667438, 22.9938201904, 13.7392234802, 0.510638296604 586380.39527, 4140676.14328, -28.3772658193, 3.68055558205, 1.0384195759, 0.000918596439528, 0.0, 1496957377.3141, 2.88737329691, 1, 5.4037222302, 22.7496757507, 13.7392234802, 0.510638296604 586380.356609, 4140676.1513, -28.3771742452, 3.70833325386, 0.990038916973, 0.000918596439528, 0.0, 1496957377.3236, 2.88740941057, 1, 5.44080556273, 22.7496757507, 13.7010755539, 0.510638296604 586380.317859, 4140676.15931, -28.3770597978, 3.70833325386, 0.933273111698, 0.000918596439528, 0.0, 1496957377.3341, 2.88744576345, 1, 5.47788889527, 22.6520175934, 13.7010755539, 0.510638296604 586380.279013, 4140676.16736, -28.3769375328, 3.7277777195, 0.93445254399, 0.000918596439528, 0.0, 1496957377.3436, 2.88747082486, 1, 5.51516667247, 22.6520175934, 13.6369876862, 0.510638296604 586380.240054, 4140676.1754, -28.3767974097, 3.7277777195, 0.967010941056, 0.000918596439528, 0.0, 1496957377.3542, 2.88747894726, 1, 5.55244444966, 22.5177383423, 13.6369876862, 0.510638296604 586380.200988, 4140676.18347, -28.3766578604, 3.74444437027, 1.05244544677, 0.000918596439528, 0.0, 1496957377.3638, 2.88753872268, 1, 5.58988889337, 22.5177383423, 13.6873426437, 0.510638296604 586380.161854, 4140676.19152, -28.3765550582, 3.74444437027, 0.937967711628, 0.000918596439528, 0.0, 1496957377.3745, 2.88753679256, 1, 5.62733333707, 22.4933242798, 13.6873426437, 0.510638296604 586380.122595, 4140676.1996, -28.3764409348, 3.75277781487, 1.00672559689, 0.000918596439528, 0.0, 1496957377.3841, 2.88757554745, 1, 5.66486111522, 22.4933242798, 13.716334343, 0.510638296604 586380.083259, 4140676.20767, -28.3763222322, 3.75277781487, 0.952787124103, 0.000918596439528, 0.0, 1496957377.3937, 2.88763114395, 1, 5.70238889337, 22.4322872162, 13.716334343, 0.510638296604 586380.043797, 4140676.21575, -28.3762345519, 3.76944446564, 0.996981039452, 0.000918596439528, 0.0, 1496957377.4048, 2.88763348179, 1, 5.74008333802, 22.4322872162, 13.727016449, 0.510638296604 586380.004263, 4140676.22387, -28.3761491096, 3.76944446564, 0.982431035667, 0.000918596439528, 0.0, 1496957377.4136, 2.88768558551, 1, 5.77777778268, 22.3102149963, 13.727016449, 0.510638296604 586379.964612, 4140676.232, -28.3760731667, 3.79999995232, 1.00743201194, 0.000918596439528, 0.0, 1496957377.4243, 2.88770640169, 1, 5.8157777822, 22.3102149963, 13.6842908859, 0.510638296604 586379.924879, 4140676.24016, -28.3760724217, 3.79999995232, 1.00706378054, 0.000918596439528, 0.0, 1496957377.4338, 2.88777656252, 1, 5.85377778172, 22.2491798401, 13.6842908859, 0.510638296604 586379.885071, 4140676.24831, -28.3760047676, 3.81666660309, 0.869583453161, 0.000918596439528, 0.0, 1496957377.4444, 2.88776380117, 1, 5.89194444776, 22.2491798401, 13.6568250656, 0.510638296604 586379.845164, 4140676.25651, -28.3760210406, 3.81666660309, 0.911018778206, 0.000918596439528, 0.0, 1496957377.4539, 2.88782520601, 1, 5.93011111379, 22.1881446838, 13.6568250656, 0.510638296604 586379.805195, 4140676.26473, -28.3759849165, 3.82500004768, 0.821028862748, 0.000956871472678, 0.00100065444896, 1496957377.4644, 2.88788194002, 1, 5.96836111426, 22.1881446838, 13.7331199646, 0.531914889812 586379.765133, 4140676.27298, -28.3760490846, 3.82500004768, 0.873140537729, 0.000956871472678, 0.0, 1496957377.4739, 2.88789595878, 1, 6.00661111474, 22.163728714, 13.7331199646, 0.531914889812 586379.724996, 4140676.28127, -28.3760466324, 3.84999990463, 0.859244067157, 0.0009951465286, 0.000994157321303, 1496957377.4844, 2.88791086735, 1, 6.04511111379, 22.163728714, 13.6766614914, 0.553191483021 586379.684762, 4140676.28957, -28.3761530658, 3.84999990463, 0.895603426756, 0.0009951465286, 0.0, 1496957377.4940, 2.88797313079, 1, 6.08361111283, 22.163728714, 13.6766614914, 0.553191483021 586379.644438, 4140676.29788, -28.3762540109, 3.86111116409, 0.943849635922, 0.0009951465286, 0.0, 1496957377.5045, 2.88801382261, 1, 6.12222222447, 22.0401306152, 13.6476688385, 0.553191483021 586379.563529, 4140676.31452, -28.3765806546, 3.86111116409, 0.914915071243, 0.0009951465286, 0.0, 1496957377.5141, 2.88807697186, 1, 6.16083333611, 21.9684143066, 13.6476688385, 0.553191483021 586379.563529, 4140676.31452, -28.3765806546, 3.88055562973, 0.914915071243, 0.00103342160821, 0.000986329877911, 1496957377.5236, 2.88807697186, 1, 6.19963889241, 21.9684143066, 13.7071790695, 0.574468076229 586379.522968, 4140676.32286, -28.3767433194, 3.88055562973, 0.819453308089, 0.00103342160821, 0.0, 1496957377.5342, 2.88811321537, 1, 6.23844444871, 21.9195842743, 13.7071790695, 0.574468076229 586379.482326, 4140676.33119, -28.3769777371, 3.90555548668, 0.778113568235, 0.0010716967124, 0.000980016909998, 1496957377.5437, 2.88815846034, 1, 6.27750000358, 21.9195842743, 13.6858167648, 0.595744669437 586379.441576, 4140676.33956, -28.3772133347, 3.90555548668, 0.868908889581, 0.0010716967124, 0.0, 1496957377.5543, 2.88818223083, 1, 6.31655555844, 21.7959861755, 13.6858167648, 0.595744669437 586379.400754, 4140676.34792, -28.3774619326, 3.91666674614, 0.812540402207, 0.00114824699823, 0.00195447534305, 1496957377.5637, 2.88817214611, 1, 6.3557222259, 21.7959861755, 13.5942630768, 0.638297855854 586379.359839, 4140676.35631, -28.3777582394, 3.91666674614, 0.92366962921, 0.00114824699823, 0.0, 1496957377.5743, 2.88823184979, 1, 6.39488889337, 21.6983299255, 13.5942630768, 0.638297855854 586379.318868, 4140676.36471, -28.3780069919, 3.93611121178, 0.789138209994, 0.00118652218167, 0.000972411128303, 1496957377.5838, 2.88825565642, 1, 6.43425000548, 21.6983299255, 13.6964979172, 0.659574449062 586379.277832, 4140676.37315, -28.3783329176, 3.93611121178, 0.728395055546, 0.00118652218167, 0.0, 1496957377.5945, 2.88826804856, 1, 6.4736111176, 21.6983299255, 13.6964979172, 0.659574449062 586379.236712, 4140676.38162, -28.3785603503, 3.95277786255, 0.742089510871, 0.00122479739336, 0.000968311729475, 1496957377.6040, 2.88832183403, 1, 6.51313889623, 21.7471580505, 13.6415653229, 0.680851042271 586379.195536, 4140676.39011, -28.3788945954, 3.95277786255, 0.70337221509, 0.00122479739336, 0.0, 1496957377.6146, 2.88832196275, 1, 6.55266667485, 21.722743988, 13.6415653229, 0.680851042271 586379.15428, 4140676.39866, -28.3791104769, 3.97222232819, 0.759953757762, 0.00122479739336, 0.0, 1496957377.6241, 2.88835392437, 1, 6.59238889813, 21.722743988, 13.6842908859, 0.680851042271 586379.112976, 4140676.40724, -28.3794171521, 3.97222232819, 0.720443329614, 0.00122479739336, 0.0, 1496957377.6335, 2.88841234997, 1, 6.63211112142, 21.6494998932, 13.6842908859, 0.680851042271 586379.071575, 4140676.41585, -28.379709187, 3.99722218513, 0.805496541875, 0.00122479739336, 0.0, 1496957377.6441, 2.88843915017, 1, 6.67208334327, 21.6494998932, 13.6919202805, 0.680851042271 586379.03011, 4140676.42451, -28.3799856724, 3.99722218513, 0.802461693388, 0.00122479739336, 0.0, 1496957377.6535, 2.88853816915, 1, 6.71205556512, 21.6006717682, 13.6919202805, 0.680851042271 586378.988563, 4140676.43318, -28.3803294813, 4.01388883591, 0.797086255839, 0.00122479739336, 0.0, 1496957377.6641, 2.88860632192, 1, 6.75219445348, 21.6006717682, 13.6125736237, 0.680851042271 586378.94695, 4140676.4419, -28.3806246025, 4.01388883591, 0.820084772542, 0.00122479739336, 0.0, 1496957377.6735, 2.88866777272, 1, 6.79233334184, 21.4663925171, 13.6125736237, 0.680851042271 586378.905279, 4140676.45063, -28.3809656883, 4.02222204208, 0.703710801183, 0.00122479739336, 0.0, 1496957377.6840, 2.88876502811, 1, 6.83255556226, 21.4663925171, 13.7209129333, 0.680851042271 586378.863517, 4140676.45938, -28.3813023465, 4.02222204208, 0.785993025078, 0.00122479739336, 0.0, 1496957377.6935, 2.8888385148, 1, 6.87277778268, 21.4663925171, 13.7209129333, 0.680851042271 586378.821714, 4140676.46812, -28.3816142082, 4.03888893127, 0.64271267436, 0.00122479739336, 0.0, 1496957377.7041, 2.88886877887, 1, 6.91316667199, 21.3443202972, 13.6583509445, 0.680851042271 586378.779819, 4140676.47689, -28.3819478191, 4.03888893127, 0.695059560197, 0.00122479739336, 0.0, 1496957377.7146, 2.88900656126, 1, 6.9535555613, 21.3931484222, 13.6583509445, 0.680851042271 586378.73787, 4140676.48565, -28.3822259922, 4.06111097336, 0.675722142175, 0.00122479739336, 0.0, 1496957377.7242, 2.88904598645, 1, 6.99416667104, 21.3931484222, 13.6476688385, 0.680851042271 586378.695852, 4140676.49439, -28.3825473888, 4.06111097336, 0.612345612009, 0.00122479739336, 0.0, 1496957377.7338, 2.88911916023, 1, 7.03477778077, 21.4175624847, 13.6476688385, 0.680851042271 586378.653754, 4140676.50313, -28.3828774104, 4.07499980927, 0.6798513601, 0.00122479739336, 0.0, 1496957377.7443, 2.88922112862, 1, 7.07552777886, 21.4175624847, 13.640039444, 0.680851042271 586378.61159, 4140676.51187, -28.3831961146, 4.07499980927, 0.677427551414, 0.00122479739336, 0.0, 1496957377.7538, 2.88925478212, 1, 7.11627777696, 21.3687343597, 13.640039444, 0.680851042271 586378.569327, 4140676.52061, -28.3835704317, 4.08888912201, 0.780516047333, 0.00122479739336, 0.0, 1496957377.7643, 2.88935584029, 1, 7.15716666818, 21.3687343597, 13.6537723541, 0.680851042271 586378.527005, 4140676.52933, -28.3839369537, 4.08888912201, 0.758848164382, 0.00122479739336, 0.0, 1496957377.7738, 2.88936904371, 1, 7.1980555594, 21.2954902649, 13.6537723541, 0.680851042271 586378.484596, 4140676.53803, -28.3843628652, 4.10277795792, 0.713485641338, 0.00122479739336, 0.0, 1496957377.7843, 2.88944741605, 1, 7.23908333898, 21.2954902649, 13.6507205963, 0.680851042271 586378.442115, 4140676.54675, -28.3847394418, 4.10277795792, 0.716908728678, 0.00122479739336, 0.0, 1496957377.7939, 2.88951178749, 1, 7.28011111856, 21.2954902649, 13.6507205963, 0.680851042271 586378.399591, 4140676.55544, -28.3851847425, 4.11666679382, 0.602250573616, 0.00122479739336, 0.0, 1496957377.8044, 2.88947907654, 1, 7.32127778649, 21.1978340149, 13.6430912018, 0.680851042271 586378.356981, 4140676.56415, -28.3856127765, 4.11666679382, 0.678231328464, 0.00122479739336, 0.0, 1496957377.8139, 2.88955645893, 1, 7.36244445443, 21.1978340149, 13.6430912018, 0.680851042271 586378.314329, 4140676.57284, -28.3860385092, 4.125, 0.596654088032, 0.00122479739336, 0.0, 1496957377.8244, 2.88955181652, 1, 7.40369445443, 21.1856250763, 13.6736097336, 0.680851042271 586378.271603, 4140676.58154, -28.3864974929, 4.125, 0.615710498897, 0.00122479739336, 0.0, 1496957377.8339, 2.88958866702, 1, 7.44494445443, 21.1978340149, 13.6736097336, 0.680851042271 586378.228822, 4140676.59028, -28.3869601106, 4.14444446564, 0.619633168223, 0.00122479739336, 0.0, 1496957377.8444, 2.88962232278, 1, 7.48638889909, 21.1978340149, 13.655298233, 0.680851042271 586378.185956, 4140676.599, -28.3873994211, 4.14444446564, 0.681414497012, 0.00122479739336, 0.0, 1496957377.8539, 2.88962388239, 1, 7.52783334374, 21.173418045, 13.655298233, 0.680851042271 586378.143043, 4140676.60776, -28.3878490841, 4.15833330154, 0.718838715713, 0.00122479739336, 0.0, 1496957377.8644, 2.88969813144, 1, 7.56941667676, 21.173418045, 13.6308841705, 0.680851042271 586378.100074, 4140676.61652, -28.3882295564, 4.15833330154, 0.532554128099, 0.00122479739336, 0.0, 1496957377.8739, 2.88972504094, 1, 7.61100000978, 21.1490039825, 13.6308841705, 0.680851042271 586378.057039, 4140676.6253, -28.3885824271, 4.17222213745, 0.570882524968, 0.00122479739336, 0.0, 1496957377.8847, 2.88979342598, 1, 7.65272223115, 21.1490039825, 13.6659803391, 0.680851042271 586378.013967, 4140676.63409, -28.3889344744, 4.17222213745, 0.551013867109, 0.00122479739336, 0.0, 1496957377.8943, 2.88982791351, 1, 7.69444445252, 21.173418045, 13.6659803391, 0.680851042271 586377.970823, 4140676.6429, -28.3892843919, 4.17777776718, 0.585207454528, 0.00118652218167, -0.000916161984101, 1496957377.9041, 2.88987282537, 1, 7.7362222302, 21.173418045, 13.6736097336, 0.659574449062 586377.927597, 4140676.65173, -28.38961861, 4.17777776718, 0.688429967111, 0.00118652218167, 0.0, 1496957377.9141, 2.88990939581, 1, 7.77800000787, 21.173418045, 13.6736097336, 0.659574449062 586377.884321, 4140676.66058, -28.3900437336, 4.19166660309, 0.688495256002, 0.00114824699823, -0.000913125662654, 1496957377.9236, 2.88999123053, 1, 7.8199166739, 21.0147247314, 13.7071790695, 0.638297855854 586377.840969, 4140676.66944, -28.3904699255, 4.19166660309, 0.728472108697, 0.00114824699823, 0.0, 1496957377.9341, 2.89003548062, 1, 7.86183333993, 21.0147247314, 13.7071790695, 0.638297855854 586377.797572, 4140676.6783, -28.390966747, 4.205555439, 0.641858610162, 0.00110997184211, -0.000910109417754, 1496957377.9436, 2.89011426504, 1, 7.90388889432, 20.8194103241, 13.727016449, 0.617021262646 586377.754087, 4140676.68717, -28.3914888129, 4.205555439, 0.690402090751, 0.00110997184211, 0.0, 1496957377.9542, 2.89014525352, 1, 7.94594444871, 20.8194103241, 13.727016449, 0.617021262646 586377.710566, 4140676.69605, -28.3920673551, 4.22222232819, 0.614139066284, 0.0010716967124, -0.00090651620707, 1496957377.9638, 2.89017168228, 1, 7.98816667199, 20.6729221344, 13.6583509445, 0.595744669437 586377.666955, 4140676.70493, -28.3926985124, 4.22222232819, 0.651145839829, 0.0010716967124, 0.0, 1496957377.9743, 2.8902299822, 1, 8.03038889527, 20.6729221344, 13.6583509445, 0.595744669437 586377.623278, 4140676.7138, -28.3934092447, 4.23333311081, 0.723170993263, 0.0009951465286, -0.00180827215341, 1496957377.9839, 2.89026218642, 1, 8.07272222638, 20.7095451355, 13.7254905701, 0.553191483021 586377.579519, 4140676.72267, -28.3941067439, 4.23333311081, 0.736657337721, 0.0009951465286, 0.0, 1496957377.9945, 2.89029556666, 1, 8.11505555749, 20.6485080719, 13.7254905701, 0.553191483021 586377.535688, 4140676.73154, -28.3948905608, 4.24722242355, 0.746956267318, 0.000880321428239, -0.0027035339549, 1496957378.0041, 2.89029589032, 1, 8.15752778172, 20.6485080719, 13.6491947174, 0.489361703396 586377.491826, 4140676.7404, -28.3956505638, 4.24722242355, 0.623039954358, 0.000880321428239, 0.0, 1496957378.0136, 2.89033097873, 1, 8.20000000596, 20.6240940094, 13.6491947174, 0.489361703396 586377.447853, 4140676.74926, -28.3964999504, 4.25555562973, 0.622121700886, 0.00076549651643, -0.00269823547851, 1496957378.0241, 2.89039608779, 1, 8.24255556226, 20.6240940094, 13.6644544601, 0.425531923771 586377.403831, 4140676.75816, -28.3974054083, 4.25555562973, 0.732241912346, 0.00076549651643, 0.0, 1496957378.0336, 2.89042875276, 1, 8.28511111856, 20.6240940094, 13.6644544601, 0.425531923771 586377.359745, 4140676.76705, -28.398360773, 4.26944446564, 0.674355759536, 0.000650671714967, -0.00268945532346, 1496957378.0441, 2.8904416682, 1, 8.32780556321, 20.6240940094, 13.6888685226, 0.361702114344 586377.315601, 4140676.77599, -28.3993339185, 4.26944446564, 0.711340729174, 0.000650671714967, 0.0, 1496957378.0536, 2.89047350044, 1, 8.37050000787, 20.6729221344, 13.6888685226, 0.361702114344 586377.271402, 4140676.78492, -28.4002795164, 4.28611087799, 0.614642080697, 0.00053584710648, -0.00267899295552, 1496957378.0642, 2.89047848883, 1, 8.41336111665, 20.6729221344, 13.6659803391, 0.297872334719 586377.227142, 4140676.7939, -28.4013152635, 4.28611087799, 0.596659759543, 0.00053584710648, 0.0, 1496957378.0737, 2.89053191781, 1, 8.45622222543, 20.6240940094, 13.6659803391, 0.297872334719 586377.181772, 4140676.80307, -28.4024566049, 4.30000019073, 0.640606781439, 0.000421022612763, -0.00267033694473, 1496957378.0842, 2.89345996738, 1, 8.49922222733, 20.6240940094, 13.6324100494, 0.234042555094 586377.137367, 4140676.81262, -28.4036326045, 4.30000019073, 0.71444941761, 0.000421022612763, 0.0, 1496957378.0938, 2.8934942687, 1, 8.54222222924, 20.6240940094, 13.6324100494, 0.234042555094 586377.09291, 4140676.82221, -28.4048182359, 4.30833339691, 0.713618948076, 0.000306198182417, -0.00266517049095, 1496957378.1044, 2.8935355714, 1, 8.58530556321, 20.8194103241, 13.6659803391, 0.170212760568 586377.048395, 4140676.83178, -28.4059590539, 4.30833339691, 0.587723355635, 0.000306198182417, 0.0, 1496957378.1138, 2.89356081777, 1, 8.62838889718, 20.6607151031, 13.6659803391, 0.170212760568 586377.003827, 4140676.84139, -28.4071626421, 4.32777786255, 0.56628514372, 0.00022964861801, -0.00176879606205, 1496957378.1243, 2.89363610186, 1, 8.67166667581, 20.6607151031, 13.6629285812, 0.127659574151 586376.959213, 4140676.851, -28.4082532851, 4.32777786255, 0.514932346782, 0.00022964861801, 0.0, 1496957378.1339, 2.89366021999, 1, 8.71494445443, 20.6240940094, 13.6629285812, 0.127659574151 586376.914549, 4140676.86063, -28.4093524748, 4.330555439, 0.504222849861, 0.000153099062061, -0.00176766137803, 1496957378.1445, 2.89372158883, 1, 8.75825000882, 20.6240940094, 13.6507205963, 0.0851063802838 586376.869829, 4140676.87029, -28.4103632877, 4.330555439, 0.538142145744, 0.000153099062061, 0.0, 1496957378.1540, 2.89376539019, 1, 8.80155556321, 20.7095451355, 13.6507205963, 0.0851063802838 586376.825065, 4140676.87995, -28.4113251315, 4.34999990463, 0.485268396692, 0.000114824296708, -0.000879879682565, 1496957378.1646, 2.89383730986, 1, 8.84505556226, 20.7095451355, 13.682765007, 0.0638297870755 586376.780253, 4140676.88964, -28.4122191491, 4.34999990463, 0.491670236562, 0.000114824296708, 0.0, 1496957378.1742, 2.89385726452, 1, 8.8885555613, 20.6363010406, 13.682765007, 0.0638297870755 586376.73538, 4140676.89932, -28.4130350184, 4.36388874054, 0.474504304797, 7.65495273868e-05, -0.000877079403188, 1496957378.1836, 2.89392530219, 1, 8.93219444871, 20.6363010406, 13.6522464752, 0.0425531901419 586376.690466, 4140676.90906, -28.4138453519, 4.36388874054, 0.520691921019, 7.65495273868e-05, 0.0, 1496957378.1942, 2.89402454092, 1, 8.97583333611, 20.6485080719, 13.6522464752, 0.0425531901419 586376.645523, 4140676.9188, -28.4145618482, 4.375, 0.432238694905, 7.65495273868e-05, 0.0, 1496957378.2038, 2.89405381877, 1, 9.01958333611, 20.6485080719, 13.6522464752, 0.0425531901419 586376.60052, 4140676.92856, -28.4153032536, 4.375, 0.464669426123, 7.65495273868e-05, 0.0, 1496957378.2143, 2.89412045836, 1, 9.06333333611, 20.6851291656, 13.6522464752, 0.0425531901419 586376.555486, 4140676.93834, -28.4159614732, 4.38055562973, 0.43295193297, 7.65495273868e-05, 0.0, 1496957378.2238, 2.89415428647, 1, 9.10713889241, 20.6851291656, 13.6430912018, 0.0425531901419 586376.510406, 4140676.94814, -28.41660209, 4.38055562973, 0.428422675478, 7.65495273868e-05, 0.0, 1496957378.2343, 2.89424949882, 1, 9.15094444871, 20.6363010406, 13.6430912018, 0.0425531901419 586376.465266, 4140676.95798, -28.41721268, 4.39444446564, 0.543814182395, 7.65495273868e-05, 0.0, 1496957378.2438, 2.89428726721, 1, 9.19488889337, 20.6363010406, 13.6812391281, 0.0425531901419 586376.4201, 4140676.96784, -28.4177293424, 4.39444446564, 0.439826415653, 7.65495273868e-05, 0.0, 1496957378.2543, 2.89434854722, 1, 9.23883333802, 20.6851291656, 13.6812391281, 0.0425531901419 586376.374878, 4140676.97771, -28.4182316205, 4.40000009537, 0.480536661714, 7.65495273868e-05, 0.0, 1496957378.2639, 2.89442224207, 1, 9.28283333898, 20.6851291656, 13.6690320969, 0.0425531901419 586376.329622, 4140676.98761, -28.4186435081, 4.40000009537, 0.441560386201, 7.65495273868e-05, 0.0, 1496957378.2745, 2.89447237976, 1, 9.32683333993, 20.6363010406, 13.6690320969, 0.0425531901419 586376.284322, 4140676.99751, -28.4190481845, 4.4055557251, 0.423498081753, 7.65495273868e-05, 0.0, 1496957378.2841, 2.89450604226, 1, 9.37088889718, 20.6363010406, 13.667506218, 0.0425531901419 586376.238966, 4140677.00745, -28.4193975842, 4.4055557251, 0.486881987622, 7.65495273868e-05, 0.0, 1496957378.2946, 2.89457434281, 1, 9.41494445443, 20.6363010406, 13.667506218, 0.0425531901419 586376.193572, 4140677.0174, -28.4197453158, 4.41388893127, 0.474044450487, 7.65495273868e-05, 0.0, 1496957378.3042, 2.89461708389, 1, 9.45908334374, 20.6240940094, 13.6476688385, 0.0425531901419 586376.148133, 4140677.02736, -28.4199916339, 4.41388893127, 0.433591623489, 7.65495273868e-05, 0.0, 1496957378.3136, 2.89467965505, 1, 9.50322223306, 20.6240940094, 13.6476688385, 0.0425531901419 586376.102668, 4140677.03734, -28.4202691903, 4.42500019073, 0.388629327537, 7.65495273868e-05, 0.0, 1496957378.3241, 2.89472291519, 1, 9.54747223496, 20.6729221344, 13.667506218, 0.0425531901419 586376.057166, 4140677.04734, -28.4205125785, 4.42500019073, 0.436626990974, 7.65495273868e-05, 0.0, 1496957378.3335, 2.89474781937, 1, 9.59172223687, 20.6729221344, 13.667506218, 0.0425531901419 586376.011586, 4140677.05736, -28.4207596742, 4.43333339691, 0.477198771812, 3.8274763238e-05, -0.000863340532329, 1496957378.3442, 2.89476664781, 1, 9.63605557084, 20.5752658844, 13.640039444, 0.021276595071 586375.965967, 4140677.06737, -28.4210252967, 4.43333339691, 0.480118131794, 3.8274763238e-05, 0.0, 1496957378.3537, 2.89480544536, 1, 9.68038890481, 20.5752658844, 13.640039444, 0.021276595071 586375.920309, 4140677.07742, -28.4212750243, 4.43888902664, 0.497868094153, 0.0, -0.000862259971093, 1496957378.3643, 2.8948417694, 1, 9.72477779508, 20.4409866333, 13.6293582916, 0.0 586375.874611, 4140677.08744, -28.4215585981, 4.43888902664, 0.443367732182, 0.0, 0.0, 1496957378.3739, 2.89489433343, 1, 9.76916668534, 20.4409866333, 13.6293582916, 0.0 586375.828863, 4140677.09749, -28.4218316814, 4.44999980927, 0.451341431208, -0.000114824296708, -0.00258032138494, 1496957378.3835, 2.89490969612, 1, 9.81366668344, 20.13580513, 13.6614027023, -0.0638297870755 586375.783083, 4140677.10751, -28.4221315412, 4.44999980927, 0.387240741286, -0.000114824296708, 0.0, 1496957378.3945, 2.89490985362, 1, 9.85816668153, 20.13580513, 13.6614027023, -0.0638297870755 586375.737233, 4140677.11754, -28.4224590901, 4.455555439, 0.504294080164, -0.000191373844459, -0.00171806969523, 1496957378.4042, 2.89494025652, 1, 9.90272223592, 19.9404907227, 13.7102308273, -0.106382980943 586375.691354, 4140677.12757, -28.422762529, 4.455555439, 0.445948647209, -0.000191373844459, 0.0, 1496957378.4141, 2.89493055028, 1, 9.94727779031, 19.9404907227, 13.7102308273, -0.106382980943 586375.645402, 4140677.1376, -28.4231247259, 4.4694442749, 0.519462430222, -0.000344473001902, -0.00342546294406, 1496957378.4236, 2.89492903324, 1, 9.99197223306, 19.8184185028, 13.6903944016, -0.191489368677 586375.599418, 4140677.14761, -28.423428447, 4.4694442749, 0.470024677169, -0.000344473001902, 0.0, 1496957378.4340, 2.89492281082, 1, 10.0366666758, 19.8184185028, 13.6903944016, -0.191489368677 586375.553388, 4140677.15762, -28.4238035651, 4.47777795792, 0.437541454684, -0.000497572263703, -0.00341909007639, 1496957378.4446, 2.89495828847, 1, 10.0814444554, 19.7573814392, 13.6568250656, -0.27659574151 586375.507315, 4140677.16763, -28.4241175754, 4.47777795792, 0.399048498601, -0.000497572263703, 0.0, 1496957378.4542, 2.89492873748, 1, 10.126222235, 19.7573814392, 13.6568250656, -0.27659574151 586375.46121, 4140677.17762, -28.4244560236, 4.48055553436, 0.338202680467, -0.000650671714967, -0.00341697474988, 1496957378.4637, 2.894949632, 1, 10.1710277903, 19.7329673767, 13.6873426437, -0.361702114344 586375.415044, 4140677.18762, -28.4248513598, 4.48055553436, 0.427489157549, -0.000650671714967, 0.0, 1496957378.4743, 2.89495325277, 1, 10.2158333457, 19.7329673767, 13.6873426437, -0.361702114344 586375.368856, 4140677.19761, -28.4251979729, 4.48888874054, 0.427133632549, -0.0008420464379, -0.00426329842406, 1496957378.4838, 2.89495728965, 1, 10.2607222331, 19.7085533142, 13.6491947174, -0.468085110188 586375.322603, 4140677.2076, -28.4256721605, 4.48888874054, 0.421839908109, -0.0008420464379, 0.0, 1496957378.4942, 2.89495388454, 1, 10.3056111205, 19.7085533142, 13.6491947174, -0.468085110188 586375.276314, 4140677.21761, -28.426094274, 4.49722242355, 0.469129856718, -0.0009951465286, -0.00340432552097, 1496957378.5039, 2.89494917822, 1, 10.3505833447, 19.5864810944, 13.6476688385, -0.553191483021 586375.22997, 4140677.22761, -28.4265819648, 4.49722242355, 0.490351930977, -0.0009951465286, 0.0, 1496957378.5145, 2.89493399356, 1, 10.3955555689, 19.5864810944, 13.6476688385, -0.553191483021 586375.183579, 4140677.23763, -28.4271001024, 4.51388883591, 0.518106554852, -0.00114824699823, -0.00339176429, 1496957378.5241, 2.8948728381, 1, 10.4406944573, 19.5010299683, 13.6171512604, -0.638297855854 586375.137157, 4140677.24766, -28.4276396511, 4.51388883591, 0.434583965781, -0.00114824699823, 0.0, 1496957378.5335, 2.89489059028, 1, 10.4858333457, 19.5010299683, 13.6171512604, -0.638297855854 586375.090673, 4140677.25772, -28.4282451635, 4.51666688919, 0.50809705761, -0.00133962320694, -0.00423711142325, 1496957378.5441, 2.8948208549, 1, 10.5310000145, 19.2935066223, 13.7254905701, -0.744680821896 586375.044161, 4140677.26779, -28.4288774738, 4.51666688919, 0.486801788844, -0.00133962320694, 0.0, 1496957378.5536, 2.89477958733, 1, 10.5761666834, 19.2935066223, 13.7254905701, -0.744680821896 586374.9976, 4140677.27789, -28.4295797823, 4.52777767181, 0.528161135769, -0.00145444941468, -0.00253603900328, 1496957378.5642, 2.89472225624, 1, 10.6214444602, 19.0737781525, 13.6888685226, -0.808510661125 586374.951, 4140677.288, -28.4303444196, 4.52777767181, 0.474480536332, -0.00145444941468, 0.0, 1496957378.5736, 2.8947041657, 1, 10.6667222369, 19.0737781525, 13.6888685226, -0.808510661125 586374.904346, 4140677.29811, -28.4311103085, 4.53611087799, 0.461924326707, -0.00160755137088, -0.00337518108167, 1496957378.5841, 2.89465038535, 1, 10.7120833457, 19.0005340576, 13.6461429596, -0.893617033958 586374.857651, 4140677.30822, -28.4319180455, 4.53611087799, 0.459691743673, -0.00160755137088, 0.0, 1496957378.5937, 2.8946139376, 1, 10.7574444544, 19.0005340576, 13.6461429596, -0.893617033958 586374.810917, 4140677.31831, -28.4327371391, 4.54166650772, 0.409377525253, -0.00172237823654, -0.00252829804809, 1496957378.6042, 2.89454655501, 1, 10.8028611195, 19.0005340576, 13.6476688385, -0.957446813583 586374.764114, 4140677.32838, -28.4335815366, 4.54166650772, 0.497227722854, -0.00172237823654, 0.0, 1496957378.6137, 2.89448078454, 1, 10.8482777846, 19.0005340576, 13.6476688385, -0.957446813583 586374.717257, 4140677.33843, -28.4344947115, 4.55833339691, 0.495347042558, -0.00179892968375, -0.00167937358999, 1496957378.6243, 2.89440714432, 1, 10.8938611186, 18.9883270264, 13.699549675, -1.0 586374.670325, 4140677.34848, -28.4354405859, 4.55833339691, 0.59648551084, -0.00179892968375, 0.0, 1496957378.6338, 2.89431069073, 1, 10.9394444525, 18.9883270264, 13.699549675, -1.0 586374.623338, 4140677.3585, -28.4363536388, 4.56388902664, 0.570324305803, -0.00187548130221, -0.001677333038, 1496957378.6444, 2.89421542674, 1, 10.9850833428, 18.8784618378, 13.6491947174, -1.04255318642 586374.576315, 4140677.36849, -28.4373582685, 4.56388902664, 0.481138307487, -0.00187548130221, 0.0, 1496957378.6539, 2.89410375863, 1, 11.0307222331, 18.8784618378, 13.6491947174, -1.04255318642 586374.529253, 4140677.3785, -28.4383468973, 4.57499980927, 0.436604904481, -0.00199030906694, -0.00250989660142, 1496957378.6644, 2.89398507638, 1, 11.0764722311, 18.8540477753, 13.682765007, -1.10638296604 586374.482135, 4140677.38848, -28.4393816357, 4.57499980927, 0.413093702809, -0.00199030906694, 0.0, 1496957378.6739, 2.89384166622, 1, 11.1222222292, 18.8540477753, 13.682765007, -1.10638296604 586374.434949, 4140677.39848, -28.4404885173, 4.58333349228, 0.513622828989, -0.00202858508204, -0.000835113027678, 1496957378.6846, 2.89372841729, 1, 11.1680555642, 18.8052177429, 13.6598768234, -1.12765955925 586374.387731, 4140677.40846, -28.4415677628, 4.58333349228, 0.517185410469, -0.00202858508204, 0.0, 1496957378.6941, 2.89364658994, 1, 11.2138888991, 18.8052177429, 13.6598768234, -1.12765955925 586374.340455, 4140677.41846, -28.4427037081, 4.58888912201, 0.520748446383, -0.00206686114541, -0.00083410303358, 1496957378.7035, 2.89352141114, 1, 11.2597777903, 18.8296337128, 13.6476688385, -1.14893615246 586374.29314, 4140677.42848, -28.4438100504, 4.58888912201, 0.497254593371, -0.00206686114541, 0.0, 1496957378.7141, 2.89344506344, 1, 11.3056666815, 18.8296337128, 13.6476688385, -1.14893615246 586374.245776, 4140677.43847, -28.4449588284, 4.59999990463, 0.451525738566, -0.00206686114541, 0.0, 1496957378.7235, 2.89331729966, 1, 11.3516666806, 18.7808036804, 13.6720838547, -1.14893615246 586374.198363, 4140677.4485, -28.4460901646, 4.59999990463, 0.479451297219, -0.00206686114541, 0.0, 1496957378.7340, 2.89320072478, 1, 11.3976666796, 18.7808036804, 13.6720838547, -1.14893615246 586374.150903, 4140677.45851, -28.4471211787, 4.61388874054, 0.417175522267, -0.00206686114541, 0.0, 1496957378.7446, 2.89310659364, 1, 11.443805567, 18.8784618378, 13.6873426437, -1.14893615246 586374.103401, 4140677.46855, -28.44815828, 4.61388874054, 0.462963905267, -0.00206686114541, 0.0, 1496957378.7541, 2.89299402858, 1, 11.4899444544, 18.8784618378, 13.6873426437, -1.14893615246 586374.05587, 4140677.47859, -28.4491560636, 4.625, 0.4093841514, -0.00206686114541, 0.0, 1496957378.7636, 2.89287661156, 1, 11.5361944544, 18.8174266815, 13.6324100494, -1.14893615246 586374.008279, 4140677.48866, -28.4501062166, 4.625, 0.435468208346, -0.00206686114541, 0.0, 1496957378.7743, 2.89280564275, 1, 11.5824444544, 18.8174266815, 13.6324100494, -1.14893615246 586373.960661, 4140677.49876, -28.4509529835, 4.63333320618, 0.41902377052, -0.00206686114541, 0.0, 1496957378.7838, 2.89271888029, 1, 11.6287777865, 18.841840744, 13.6644544601, -1.14893615246 586373.913009, 4140677.50889, -28.4518188173, 4.63333320618, 0.380684395138, -0.00206686114541, 0.0, 1496957378.7945, 2.89266476121, 1, 11.6751111186, 18.841840744, 13.6644544601, -1.14893615246 586373.865335, 4140677.51904, -28.4525771076, 4.63888883591, 0.382773885739, -0.00206686114541, 0.0, 1496957378.8041, 2.89258094667, 1, 11.7215000069, 18.7808036804, 13.6522464752, -1.14893615246 586373.817599, 4140677.52923, -28.4533786168, 4.63888883591, 0.402907685957, -0.00206686114541, 0.0, 1496957378.8136, 2.89250728525, 1, 11.7678888953, 18.7808036804, 13.6522464752, -1.14893615246 586373.769823, 4140677.53948, -28.4541084394, 4.65000009537, 0.483181047114, -0.00206686114541, 0.0, 1496957378.8241, 2.89247870334, 1, 11.8143888962, 18.7197685242, 13.6308841705, -1.14893615246 586373.72202, 4140677.54974, -28.4547535954, 4.65000009537, 0.429207001689, -0.00206686114541, 0.0, 1496957378.8336, 2.89244777555, 1, 11.8608888972, 18.7197685242, 13.6308841705, -1.14893615246 586373.674165, 4140677.56005, -28.4553872617, 4.6555557251, 0.478853215277, -0.00202858508204, 0.000822158849221, 1496957378.8441, 2.89241049677, 1, 11.9074444544, 18.5961704254, 13.6903944016, -1.12765955925 586373.626303, 4140677.57038, -28.4559629178, 4.6555557251, 0.359510624646, -0.00202858508204, 0.0, 1496957378.8535, 2.89235743556, 1, 11.9540000117, 18.5961704254, 13.6903944016, -1.12765955925 586373.578399, 4140677.58075, -28.4565060381, 4.66666650772, 0.356708529872, -0.00199030906694, 0.00082020035142, 1496957378.8641, 2.89231113773, 1, 12.0006666768, 18.413061142, 13.6415653229, -1.10638296604 586373.530466, 4140677.59117, -28.4570255736, 4.66666650772, 0.376967160087, -0.00199030906694, 0.0, 1496957378.8736, 2.89228729753, 1, 12.0473333418, 18.413061142, 13.6415653229, -1.10638296604 586373.482494, 4140677.60161, -28.4574709199, 4.67222213745, 0.384999780957, -0.00199030906694, 0.0, 1496957378.8842, 2.89228970481, 1, 12.0940555632, 18.3398189545, 13.606470108, -1.10638296604 586373.434488, 4140677.6121, -28.4579005763, 4.67222213745, 0.430172780045, -0.00199030906694, 0.0, 1496957378.8941, 2.89227513296, 1, 12.1407777846, 18.3398189545, 13.606470108, -1.10638296604 586373.386442, 4140677.6226, -28.4583079051, 4.67222213745, 0.402376302547, -0.00199030906694, 0.0, 1496957378.9038, 2.89227499151, 1, 12.187500006, 18.3398189545, 13.606470108, -1.10638296604 586373.338352, 4140677.63313, -28.4586020745, 4.67500019073, 0.397685561826, -0.00191375717794, 0.00163747349471, 1496957378.9154, 2.89222953185, 1, 12.2342500079, 18.2787818909, 13.6766614914, -1.06382977962 586373.290252, 4140677.64367, -28.4589199107, 4.68333339691, 0.319275911417, -0.00191375717794, 0.0, 1496957378.9239, 2.89220899629, 1, 12.2810833418, 18.1933326721, 13.6964979172, -1.06382977962 586373.242111, 4140677.65423, -28.4591820892, 4.68333339691, 0.337930389902, -0.00191375717794, 0.0, 1496957378.9346, 2.89218181351, 1, 12.3279166758, 18.1933326721, 13.6964979172, -1.06382977962 586373.193947, 4140677.6648, -28.4594300734, 4.68888902664, 0.323994894689, -0.00187548130221, 0.000816310121851, 1496957378.9441, 2.89213191516, 1, 12.3748055661, 18.2421607971, 13.6568250656, -1.04255318642 586373.145747, 4140677.67538, -28.459697471, 4.68888902664, 0.364707957853, -0.00187548130221, 0.0, 1496957378.9536, 2.89208369039, 1, 12.4216944563, 18.2421607971, 13.6568250656, -1.04255318642 586373.097479, 4140677.686, -28.4599187505, 4.69444465637, 0.45358423344, -0.00187548130221, 0.0, 1496957378.9641, 2.89201904852, 1, 12.4686389029, 18.2055397034, 13.6614027023, -1.04255318642 586373.049173, 4140677.6966, -28.4601707235, 4.69444465637, 0.443538361926, -0.00187548130221, 0.0, 1496957378.9736, 2.89197297353, 1, 12.5155833495, 18.2055397034, 13.6614027023, -1.04255318642 586373.000853, 4140677.70721, -28.4604511149, 4.70277786255, 0.373097985089, -0.00187548130221, 0.0, 1496957378.9842, 2.89189124801, 1, 12.5626111281, 18.0712604523, 13.6415653229, -1.04255318642 586372.952484, 4140677.71781, -28.4607033702, 4.70277786255, 0.341263725738, -0.00187548130221, 0.0, 1496957378.9938, 2.89186306526, 1, 12.6096389067, 18.0712604523, 13.6415653229, -1.04255318642 586372.904078, 4140677.72843, -28.4610296749, 4.705555439, 0.386877253739, -0.00187548130221, 0.0, 1496957379.0043, 2.89175050596, 1, 12.6566944611, 17.9491882324, 13.6797132492, -1.04255318642 586372.855637, 4140677.73905, -28.4613894532, 4.705555439, 0.374136674211, -0.00187548130221, 0.0, 1496957379.0139, 2.89164970642, 1, 12.7037500155, 17.9491882324, 13.6797132492, -1.04255318642 586372.807145, 4140677.74965, -28.4617679445, 4.71388912201, 0.426639678981, -0.00187548130221, 0.0, 1496957379.0238, 2.8915905762, 1, 12.7508889067, 17.8881511688, 13.699549675, -1.04255318642 586372.758612, 4140677.76024, -28.4622319043, 4.71388912201, 0.441757673588, -0.00187548130221, 0.0, 1496957379.0344, 2.89150495639, 1, 12.7980277979, 17.8881511688, 13.699549675, -1.04255318642 586372.710031, 4140677.77083, -28.4627263574, 4.7194442749, 0.441813800803, -0.00187548130221, 0.0, 1496957379.0440, 2.89142471462, 1, 12.8452222407, 17.8759441376, 13.7071790695, -1.04255318642 586372.661403, 4140677.78143, -28.463234446, 4.7194442749, 0.475065228197, -0.00187548130221, 0.0, 1496957379.0546, 2.89135418278, 1, 12.8924166834, 17.8759441376, 13.7071790695, -1.04255318642 586372.61275, 4140677.79201, -28.4638241995, 4.73333311081, 0.377851112126, -0.00187548130221, 0.0, 1496957379.0642, 2.89131308096, 1, 12.9397500145, 17.8515300751, 13.6705579758, -1.04255318642 586372.564045, 4140677.80261, -28.4644101942, 4.73333311081, 0.423168936677, -0.00187548130221, 0.0, 1496957379.0738, 2.89124828693, 1, 12.9870833457, 17.8515300751, 13.6705579758, -1.04255318642 586372.516124, 4140677.81374, -28.4648519577, 4.74166679382, 0.341876818806, -0.00187548130221, 0.0, 1496957379.0842, 2.88967981272, 1, 13.0345000136, 17.9125652313, 13.6308841705, -1.04255318642 586372.468595, 4140677.82489, -28.4653474279, 4.74166679382, 0.382860200134, -0.00187548130221, 0.0, 1496957379.0937, 2.8895846201, 1, 13.0819166815, 17.9125652313, 13.6308841705, -1.04255318642 586372.421054, 4140677.83604, -28.465859713, 4.74722242355, 0.340815202937, -0.00187548130221, 0.0, 1496957379.1043, 2.88951015308, 1, 13.1293889058, 17.8027000427, 13.7315940857, -1.04255318642 586372.373431, 4140677.84723, -28.4665022669, 4.74722242355, 0.513272588101, -0.00187548130221, 0.0, 1496957379.1138, 2.88945621119, 1, 13.17686113, 17.8027000427, 13.7315940857, -1.04255318642 586372.325786, 4140677.85843, -28.4671216812, 4.75555562973, 0.486352576854, -0.00187548130221, 0.0, 1496957379.1243, 2.88939737898, 1, 13.2244166863, 17.6317996979, 13.623254776, -1.04255318642 586372.278103, 4140677.86964, -28.4678335106, 4.75555562973, 0.431257604, -0.00187548130221, 0.0, 1496957379.1338, 2.8893853551, 1, 13.2719722426, 17.6317996979, 13.623254776, -1.04255318642 586372.230385, 4140677.88087, -28.4685293976, 4.76388883591, 0.418356912337, -0.00183720547112, 0.000803457687843, 1496957379.1443, 2.8893169181, 1, 13.319611131, 17.3144130707, 13.6797132492, -1.02127659321 586372.182651, 4140677.89211, -28.4692654936, 4.76388883591, 0.299096998717, -0.00183720547112, 0.0, 1496957379.1538, 2.889297691, 1, 13.3672500193, 17.3144130707, 13.6797132492, -1.02127659321 586372.134874, 4140677.90337, -28.4700408531, 4.77500009537, 0.370942650274, -0.00179892968375, 0.000801587154021, 1496957379.1643, 2.88922647601, 1, 13.4150000203, 16.9359874725, 13.6491947174, -1.0 586372.087072, 4140677.91462, -28.4707306363, 4.77500009537, 0.298760348262, -0.00179892968375, 0.0, 1496957379.1738, 2.8891782674, 1, 13.4627500212, 16.9359874725, 13.6491947174, -1.0 586372.03923, 4140677.92588, -28.4715107679, 4.7805557251, 0.350357535598, -0.00172237823654, 0.00160130854264, 1496957379.1843, 2.88910991726, 1, 13.5105555785, 16.9237804413, 13.6766614914, -0.957446813583 586371.991359, 4140677.93715, -28.472223619, 4.7805557251, 0.328954610286, -0.00172237823654, 0.0, 1496957379.1938, 2.88904872757, 1, 13.5583611357, 16.9237804413, 13.6766614914, -0.957446813583 586371.943448, 4140677.9484, -28.4729670892, 4.78611087799, 0.320417569093, -0.00160755137088, 0.0023991685231, 1496957379.2043, 2.88896845659, 1, 13.6062222445, 16.8505382538, 13.6629285812, -0.893617033958 586371.895499, 4140677.95964, -28.4737201286, 4.78611087799, 0.352395524791, -0.00160755137088, 0.0, 1496957379.2138, 2.88892646958, 1, 13.6540833533, 16.8505382538, 13.6629285812, -0.893617033958 586371.847532, 4140677.97087, -28.4745180253, 4.79166650772, 0.276868940824, -0.00149272484953, 0.00239637965542, 1496957379.2243, 2.88882244576, 1, 13.7020000184, 16.91157341, 13.640039444, -0.829787254333 586371.799515, 4140677.9821, -28.4753323607, 4.79166650772, 0.342641930594, -0.00149272484953, 0.0, 1496957379.2338, 2.88873851636, 1, 13.7499166834, 16.91157341, 13.640039444, -0.829787254333 586371.751453, 4140677.99332, -28.4761615694, 4.80277776718, 0.373898329403, -0.00137789864791, 0.00239082895751, 1496957379.2443, 2.88865213068, 1, 13.7979444611, 16.862745285, 13.6522464752, -0.765957474709 586371.703341, 4140678.00455, -28.4770005234, 4.80277776718, 0.455317283817, -0.00137789864791, 0.0, 1496957379.2538, 2.88855604602, 1, 13.8459722388, 16.862745285, 13.6522464752, -0.765957474709 586371.655203, 4140678.01579, -28.4778503422, 4.81111097336, 0.409425191122, -0.00130134790508, 0.00159112403044, 1496957379.2643, 2.88844923832, 1, 13.8940833485, 16.8017082214, 13.6034183502, -0.723404228687 586371.60705, 4140678.02704, -28.4786424646, 4.81111097336, 0.344445933661, -0.00130134790508, 0.0, 1496957379.2738, 2.88833788311, 1, 13.9421944582, 16.8017082214, 13.6034183502, -0.723404228687 586371.558849, 4140678.03831, -28.4794595893, 4.82222223282, 0.288880488401, -0.00118652218167, 0.00238117859073, 1496957379.2843, 2.88823808337, 1, 13.9904166806, 16.7406730652, 13.6537723541, -0.659574449062 586371.510632, 4140678.0496, -28.4801854277, 4.82222223282, 0.266407495706, -0.00118652218167, 0.0, 1496957379.2938, 2.88812788972, 1, 14.0386389029, 16.7406730652, 13.6537723541, -0.659574449062 586371.4624, 4140678.0609, -28.4809141634, 4.82499980927, 0.236600970347, -0.00114824699823, 0.000793268082046, 1496957379.3042, 2.8880380183, 1, 14.086888901, 16.7040519714, 13.6598768234, -0.638297855854 586371.414145, 4140678.07221, -28.4815730006, 4.82499980927, 0.222835484589, -0.00114824699823, 0.0, 1496957379.3136, 2.88801691908, 1, 14.1351388991, 16.7040519714, 13.6598768234, -0.638297855854 586371.365868, 4140678.08353, -28.4822396562, 4.82777786255, 0.21845308888, -0.00110997184211, 0.000792811044934, 1496957379.3242, 2.88788532883, 1, 14.1834166777, 16.7528800964, 13.6781873703, -0.617021262646 586371.31755, 4140678.09487, -28.482830707, 4.82777786255, 0.273292277781, -0.00110997184211, 0.0, 1496957379.3338, 2.88781415061, 1, 14.2316944563, 16.7528800964, 13.6781873703, -0.617021262646 586371.269196, 4140678.10622, -28.4833854735, 4.83611106873, 0.340459370395, -0.0010716967124, 0.000791444389089, 1496957379.3443, 2.8877411902, 1, 14.280055567, 16.7528800964, 13.7056531906, -0.595744669437 586371.220825, 4140678.11757, -28.4838817799, 4.83611106873, 0.266983698711, -0.0010716967124, 0.0, 1496957379.3537, 2.88769659269, 1, 14.3284166777, 16.7528800964, 13.7056531906, -0.595744669437 586371.172432, 4140678.12894, -28.4843092375, 4.84166669846, 0.270986410276, -0.0010716967124, 0.0, 1496957379.3643, 2.88763070547, 1, 14.3768333447, 16.8383312225, 13.5988407135, -0.595744669437 586371.124019, 4140678.14029, -28.484703633, 4.84166669846, 0.18797575948, -0.0010716967124, 0.0, 1496957379.3738, 2.88755970023, 1, 14.4252500117, 16.8383312225, 13.5988407135, -0.595744669437 586371.075577, 4140678.15165, -28.4850557279, 4.8444442749, 0.178367496854, -0.0010716967124, 0.0, 1496957379.3843, 2.88755119222, 1, 14.4736944544, 16.6674289703, 13.6797132492, -0.595744669437 586371.027123, 4140678.16299, -28.4853918022, 4.8444442749, 0.168629747059, -0.0010716967124, 0.0, 1496957379.3939, 2.88750843687, 1, 14.5221388972, 16.6674289703, 13.6797132492, -0.595744669437 586370.978631, 4140678.17435, -28.4857337149, 4.84722232819, 0.249044032518, -0.0010716967124, 0.0, 1496957379.4045, 2.88740731659, 1, 14.5706111205, 16.6796360016, 13.6095218658, -0.595744669437 586370.930117, 4140678.18572, -28.4861040022, 4.84722232819, 0.282614173192, -0.0010716967124, 0.0, 1496957379.4141, 2.88735967692, 1, 14.6190833437, 16.6796360016, 13.6095218658, -0.595744669437 586370.881584, 4140678.19709, -28.4864955908, 4.84999990463, 0.321435854936, -0.0010716967124, 0.0, 1496957379.4239, 2.88734826193, 1, 14.6675833428, 16.6186008453, 13.716334343, -0.595744669437 586370.832994, 4140678.20847, -28.4869363802, 4.84999990463, 0.318952894665, -0.0010716967124, 0.0, 1496957379.4345, 2.88733509763, 1, 14.7160833418, 16.6186008453, 13.716334343, -0.595744669437 586370.784407, 4140678.21986, -28.4874050161, 4.85555553436, 0.24244547946, -0.0010716967124, 0.0, 1496957379.4441, 2.88727818158, 1, 14.7646388972, 16.6552219391, 13.6690320969, -0.595744669437 586370.735791, 4140678.23126, -28.4878826234, 4.85555553436, 0.233994672222, -0.0010716967124, 0.0, 1496957379.4536, 2.88728504906, 1, 14.8131944525, 16.6552219391, 13.6690320969, -0.595744669437 586370.687157, 4140678.24265, -28.4884182941, 4.85833311081, 0.216860734537, -0.0010716967124, 0.0, 1496957379.4641, 2.8872865883, 1, 14.8617777836, 16.6674289703, 13.6690320969, -0.595744669437 586370.638501, 4140678.25408, -28.4890032336, 4.85833311081, 0.271272337862, -0.0010716967124, 0.0, 1496957379.4735, 2.88725030812, 1, 14.9103611147, 16.6674289703, 13.6690320969, -0.595744669437 586370.589812, 4140678.26549, -28.4895848325, 4.86111116409, 0.246370034398, -0.0010716967124, 0.0, 1496957379.4841, 2.88725991109, 1, 14.9589722264, 16.6918449402, 13.6461429596, -0.595744669437 586370.541113, 4140678.27692, -28.4902256252, 4.86111116409, 0.257806606023, -0.0010716967124, 0.0, 1496957379.4936, 2.88719927348, 1, 15.007583338, 16.6918449402, 13.6461429596, -0.595744669437 586370.49239, 4140678.28835, -28.4908698089, 4.86388874054, 0.220960155794, -0.0010716967124, 0.0, 1496957379.5042, 2.88719488639, 1, 15.0562222254, 16.6308078766, 13.6476688385, -0.595744669437 586370.443668, 4140678.2998, -28.4915302573, 4.86388874054, 0.165450461525, -0.0010716967124, 0.0, 1496957379.5136, 2.88717509384, 1, 15.1048611128, 16.6308078766, 13.6476688385, -0.595744669437 586370.394928, 4140678.31124, -28.4922221033, 4.86944437027, 0.10459789493, -0.0010716967124, 0.0, 1496957379.5243, 2.8871714382, 1, 15.1535555565, 16.7040519714, 13.579003334, -0.595744669437 586370.346171, 4140678.32269, -28.4929244667, 4.86944437027, 0.163451824123, -0.0010716967124, 0.0, 1496957379.5338, 2.88715249566, 1, 15.2022500002, 16.7040519714, 13.579003334, -0.595744669437 586370.297407, 4140678.33414, -28.493696494, 4.87222242355, 0.147840992212, -0.00103342160821, 0.00078557793285, 1496957379.5443, 2.88710208187, 1, 15.2509722245, 16.6674289703, 13.6491947174, -0.574468076229 586370.248607, 4140678.34559, -28.4944765642, 4.87222242355, 0.211236227729, -0.00103342160821, 0.0, 1496957379.5539, 2.88710071281, 1, 15.2996944487, 16.6674289703, 13.6491947174, -0.574468076229 586370.199785, 4140678.35703, -28.4952803636, 4.87777757645, 0.269831676352, -0.00103342160821, 0.0, 1496957379.5644, 2.88708231701, 1, 15.3484722245, 16.5453567505, 13.6659803391, -0.574468076229 586370.150937, 4140678.36848, -28.4960481357, 4.87777757645, 0.247763286804, -0.00103342160821, 0.0, 1496957379.5740, 2.88704868601, 1, 15.3972500002, 16.5453567505, 13.6659803391, -0.574468076229 586370.102088, 4140678.37992, -28.4967445591, 4.88333320618, 0.0962845079749, -0.0009951465286, 0.00078379004645, 1496957379.5846, 2.88699680098, 1, 15.4460833323, 16.4599075317, 13.6202030182, -0.553191483021 586370.053224, 4140678.39134, -28.4974167021, 4.88333320618, 0.0707306714174, -0.0009951465286, 0.0, 1496957379.5942, 2.88694285315, 1, 15.4949166644, 16.4599075317, 13.6202030182, -0.553191483021 586370.004355, 4140678.40277, -28.4980245242, 4.88611125946, 0.0574852678372, -0.000956871472678, 0.000783343929141, 1496957379.6036, 2.8869222849, 1, 15.543777777, 16.4232845306, 13.6156253815, -0.531914889812 586369.955466, 4140678.41419, -28.4985819682, 4.88611125946, 0.0812510890093, -0.000956871472678, 0.0, 1496957379.6141, 2.88684769508, 1, 15.5926388896, 16.4232845306, 13.6156253815, -0.531914889812 586369.906552, 4140678.42562, -28.4990571039, 4.88888883591, 0.169389043005, -0.000956871472678, 0.0, 1496957379.6235, 2.88680849905, 1, 15.6415277779, 16.4477005005, 13.6003665924, -0.531914889812 586369.857636, 4140678.43702, -28.4995106906, 4.88888883591, 0.0826627806992, -0.000956871472678, 0.0, 1496957379.6341, 2.88676395163, 1, 15.6904166663, 16.4477005005, 13.6003665924, -0.531914889812 586369.8087, 4140678.44843, -28.4998729546, 4.89166688919, 0.0943437178729, -0.000956871472678, 0.0, 1496957379.6436, 2.88670987335, 1, 15.7393333352, 16.4354915619, 13.6003665924, -0.531914889812 586369.759759, 4140678.45986, -28.5002101259, 4.89166688919, 0.0807151545259, -0.000956871472678, 0.0, 1496957379.6541, 2.88666612173, 1, 15.7882500041, 16.4354915619, 13.6446170807, -0.531914889812 586369.71078, 4140678.4713, -28.5004907595, 4.89444446564, 0.180467466956, -0.000956871472678, 0.0, 1496957379.6635, 2.88662526259, 1, 15.8371944487, 16.4232845306, 13.6446170807, -0.531914889812 586369.6618, 4140678.48272, -28.5007218486, 4.89444446564, 0.143492639128, -0.000956871472678, 0.0, 1496957379.6740, 2.886618729, 1, 15.8861388934, 16.4232845306, 13.6339359283, -0.531914889812 586369.612821, 4140678.49416, -28.5010156557, 4.89444446564, 0.0895988164004, -0.000956871472678, 0.0, 1496957379.6846, 2.88661143983, 1, 15.935083338, 16.3256282806, 13.6339359283, -0.531914889812 586369.563836, 4140678.5056, -28.5012229141, 4.89444446564, 0.0553968535609, -0.000956871472678, 0.0, 1496957379.6941, 2.8865442371, 1, 15.9840277827, 16.3256282806, 13.6766614914, -0.531914889812 586369.514831, 4140678.51707, -28.5014770925, 4.89166688919, 0.108312724913, -0.000956871472678, 0.0, 1496957379.7036, 2.88650476836, 1, 16.0329444516, 16.3744564056, 13.6766614914, -0.531914889812 586369.465835, 4140678.52854, -28.5017401278, 4.89166688919, 0.0738631127392, -0.000956871472678, 0.0, 1496957379.7141, 2.88649616335, 1, 16.0818611205, 16.3744564056, 13.6339359283, -0.531914889812 586369.41683, 4140678.54004, -28.5020446908, 4.89166688919, 0.0948342670296, -0.000956871472678, 0.0, 1496957379.7236, 2.88648393525, 1, 16.1307777894, 16.3500423431, 13.6339359283, -0.531914889812 586369.36782, 4140678.55154, -28.5023447219, 4.89166688919, 0.0860367354092, -0.000956871472678, 0.0, 1496957379.7342, 2.88648303361, 1, 16.1796944582, 16.3500423431, 13.6339359283, -0.531914889812 586369.318807, 4140678.56305, -28.5026556337, 4.89722204208, 0.133809429256, -0.000956871472678, 0.0, 1496957379.7438, 2.88644339337, 1, 16.2286666787, 16.3378353119, 13.6736097336, -0.531914889812 586369.269775, 4140678.57462, -28.5029304549, 4.89722204208, 0.0968009579256, -0.000956871472678, 0.0, 1496957379.7543, 2.88646107204, 1, 16.2776388991, 16.3378353119, 13.6736097336, -0.531914889812 586369.220751, 4140678.58618, -28.5032720026, 4.90000009537, 0.0803418023915, -0.000956871472678, 0.0, 1496957379.7638, 2.88649363339, 1, 16.3266389, 16.264591217, 13.6705579758, -0.531914889812 586369.17171, 4140678.59778, -28.5035509933, 4.90000009537, 0.126545199926, -0.000956871472678, 0.0, 1496957379.7744, 2.88654538425, 1, 16.375638901, 16.264591217, 13.6705579758, -0.531914889812 586369.122659, 4140678.60936, -28.5038860524, 4.90277767181, 0.114459021078, -0.000956871472678, 0.0, 1496957379.7841, 2.88657748446, 1, 16.4246666777, 16.3500423431, 13.6705579758, -0.531914889812 586369.0736, 4140678.62096, -28.5041749319, 4.90277767181, 0.120731390046, -0.000956871472678, 0.0, 1496957379.7935, 2.88663512597, 1, 16.4736944544, 16.3500423431, 13.716334343, -0.531914889812 586369.024548, 4140678.63256, -28.5044105873, 4.9055557251, 0.0395120601162, -0.000918596439528, 0.000780238474394, 1496957379.8041, 2.8866864676, 1, 16.5227500117, 16.3378353119, 13.716334343, -0.510638296604 586368.975501, 4140678.64421, -28.5046858182, 4.9055557251, 0.0459056494847, -0.000918596439528, 0.0, 1496957379.8136, 2.88674657674, 1, 16.5718055689, 16.3378353119, 13.6171512604, -0.510638296604 586368.92646, 4140678.65585, -28.504920885, 4.90833330154, -0.0291250298024, -0.000880321428239, 0.000779796499901, 1496957379.8241, 2.8867724507, 1, 16.6208889019, 16.2890052795, 13.6171512604, -0.489361703396 586368.87742, 4140678.66752, -28.5052508116, 4.90833330154, 0.0118307732429, -0.000880321428239, 0.0, 1496957379.8335, 2.8868476139, 1, 16.669972235, 16.2890052795, 13.5896844864, -0.489361703396 586368.828354, 4140678.67921, -28.5056223432, 4.90833330154, 0.135002392371, -0.0008420464379, 0.000779796073072, 1496957379.8441, 2.88685818352, 1, 16.719055568, 16.2767982483, 13.5896844864, -0.468085110188 586368.779284, 4140678.69097, -28.5060452987, 4.90833330154, 0.227340852626, -0.0008420464379, 0.0, 1496957379.8535, 2.88687446851, 1, 16.768138901, 16.2767982483, 13.6583509445, -0.468085110188 586368.730224, 4140678.70273, -28.5065075457, 4.90833330154, 0.129856476023, -0.000803771467601, 0.0007797956648, 1496957379.8641, 2.88690452904, 1, 16.817222234, 16.2767982483, 13.6583509445, -0.446808516979 586368.681175, 4140678.71451, -28.5070264535, 4.90833330154, 0.060441787896, -0.000803771467601, 0.0, 1496957379.8736, 2.88695472543, 1, 16.866305567, 16.2767982483, 13.6720838547, -0.446808516979 586368.632105, 4140678.72629, -28.5075794235, 4.90833330154, 0.0850969216853, -0.00076549651643, 0.000779795275087, 1496957379.8842, 2.88694309289, 1, 16.9153889, 16.1791400909, 13.6720838547, -0.425531923771 586368.583035, 4140678.73808, -28.5081392508, 4.90833330154, 0.132507939469, -0.00076549651643, 0.0, 1496957379.8944, 2.88698021512, 1, 16.9644722331, 16.1791400909, 13.6278324127, -0.425531923771 586368.533936, 4140678.74986, -28.5086671887, 4.91388893127, 0.058442560595, -0.000727221583477, 0.000778913269891, 1496957379.9035, 2.88699301838, 1, 17.0136111224, 16.2523841858, 13.6278324127, -0.404255330563 586368.484841, 4140678.76159, -28.5092775254, 4.91388893127, 0.033120613425, -0.000727221583477, 0.0, 1496957379.9145, 2.88699920001, 1, 17.0627500117, 16.2523841858, 13.6949720383, -0.404255330563 586368.435745, 4140678.77331, -28.5099096717, 4.91666650772, 0.022182714685, -0.00068894666783, 0.000778472885778, 1496957379.9239, 2.88696606774, 1, 17.1119166768, 16.1913490295, 13.6949720383, -0.382978737354 586368.386609, 4140678.785, -28.5106248353, 4.91666650772, 0.150722596217, -0.00068894666783, 0.0, 1496957379.9346, 2.88694391462, 1, 17.1610833418, 16.1913490295, 13.682765007, -0.382978737354 586368.337452, 4140678.79668, -28.5113670947, 4.919444561, 0.217200427441, -0.00068894666783, 0.0, 1496957379.9442, 2.88689868847, 1, 17.2102777874, 16.1913490295, 13.682765007, -0.382978737354 586368.288267, 4140678.80834, -28.5121361203, 4.919444561, 0.189644036909, -0.00068894666783, 0.0, 1496957379.9538, 2.88682874649, 1, 17.2594722331, 16.1913490295, 13.667506218, -0.382978737354 586368.239092, 4140678.81995, -28.512939712, 4.919444561, 0.0599453846061, -0.00068894666783, 0.0, 1496957379.9643, 2.88679937508, 1, 17.3086666787, 16.2523841858, 13.667506218, -0.382978737354 586368.189913, 4140678.83153, -28.5138149625, 4.919444561, -0.00827728766796, -0.00068894666783, 0.0, 1496957379.9739, 2.88674661447, 1, 17.3578611243, 16.2523841858, 13.6446170807, -0.382978737354 586368.140704, 4140678.8431, -28.5146898786, 4.92500019073, 0.0805178414375, -0.00068894666783, 0.0, 1496957379.9845, 2.88672082717, 1, 17.4071111262, 16.2035560608, 13.6446170807, -0.382978737354 586368.091476, 4140678.85463, -28.5156169161, 4.92500019073, 0.123632533973, -0.00068894666783, 0.0, 1496957379.9949, 2.8866841588, 1, 17.4563611281, 16.2035560608, 13.6919202805, -0.382978737354 586368.042237, 4140678.86615, -28.5165451681, 4.92777776718, 0.107712790499, -0.00068894666783, 0.0, 1496957380.0044, 2.88660247094, 1, 17.5056389058, 16.2523841858, 13.6919202805, -0.382978737354 586367.992978, 4140678.87763, -28.5174969379, 4.92777776718, 0.0886163354058, -0.00068894666783, 0.0, 1496957380.0139, 2.88654546414, 1, 17.5549166834, 16.2523841858, 13.6476688385, -0.382978737354 586367.943721, 4140678.88912, -28.5184734892, 4.92777776718, 0.0753316824873, -0.000727221583477, -0.000776717568346, 1496957380.0244, 2.88648305063, 1, 17.6041944611, 16.2767982483, 13.6476688385, -0.404255330563 586367.894447, 4140678.90058, -28.5194300255, 4.92777776718, 0.0486070505787, -0.000727221583477, 0.0, 1496957380.0340, 2.88641633913, 1, 17.6534722388, 16.2767982483, 13.6339359283, -0.404255330563 586367.845159, 4140678.91201, -28.5203646095, 4.93055534363, 0.0645508907932, -0.000727221583477, 0.0, 1496957380.0445, 2.88636678649, 1, 17.7027777922, 16.3012123108, 13.6339359283, -0.404255330563 586367.795882, 4140678.92342, -28.5212946096, 4.93055534363, -0.0425712833125, -0.000727221583477, 0.0, 1496957380.0540, 2.8863398733, 1, 17.7520833457, 16.3012123108, 13.6369876862, -0.404255330563 586367.746602, 4140678.93482, -28.5221779179, 4.93055534363, -0.0152467787583, -0.000727221583477, 0.0, 1496957380.0645, 2.88634070631, 1, 17.8013888991, 16.2890052795, 13.6369876862, -0.404255330563 586367.697304, 4140678.94621, -28.5230146954, 4.93055534363, -0.0103874771674, -0.000727221583477, 0.0, 1496957380.0740, 2.88629652268, 1, 17.8506944525, 16.2890052795, 13.682765007, -0.404255330563 586367.648951, 4140678.95808, -28.5236438569, 4.93055534363, 0.0270024291042, -0.000727221583477, 0.0, 1496957380.0845, 2.88617569829, 1, 17.900000006, 16.2890052795, 13.682765007, -0.404255330563 586367.600404, 4140678.96976, -28.524188281, 4.93055534363, 0.0150677608576, -0.000727221583477, 0.0, 1496957380.0941, 2.88612409208, 1, 17.9493055594, 16.2890052795, 13.6476688385, -0.404255330563 586367.551843, 4140678.98147, -28.5247810408, 4.93055534363, 0.0915202669619, -0.00076549651643, -0.000776280363689, 1496957380.1035, 2.88611122941, 1, 17.9986111128, 16.2279701233, 13.6476688385, -0.425531923771 586367.503314, 4140678.99316, -28.5252644653, 4.93055534363, -0.086543233415, -0.00076549651643, 0.0, 1496957380.1141, 2.88606058165, 1, 18.0479166663, 16.2279701233, 13.6293582916, -0.425531923771 586367.454789, 4140679.00486, -28.5258163651, 4.93055534363, -0.12475499168, -0.00076549651643, 0.0, 1496957380.1235, 2.88603772425, 1, 18.0972222197, 16.3134212494, 13.6293582916, -0.425531923771 586367.406251, 4140679.01653, -28.5263833925, 4.93055534363, -0.0171144575751, -0.00076549651643, 0.0, 1496957380.1341, 2.886034797, 1, 18.1465277731, 16.3134212494, 13.6278324127, -0.425531923771 586367.357704, 4140679.0282, -28.5269596903, 4.93055534363, 0.049711861722, -0.00076549651643, 0.0, 1496957380.1435, 2.88598120639, 1, 18.1958333266, 16.264591217, 13.6278324127, -0.425531923771 586367.30916, 4140679.03984, -28.5275565963, 4.93055534363, 0.0497762843918, -0.00076549651643, 0.0, 1496957380.1542, 2.88595253962, 1, 18.24513888, 16.264591217, 13.6659803391, -0.425531923771 586367.260602, 4140679.05146, -28.5281914985, 4.92777776718, 0.0116122913504, -0.000727221583477, 0.000776717919552, 1496957380.1638, 2.88594287844, 1, 18.2944166577, 16.264591217, 13.6659803391, -0.404255330563 586367.212059, 4140679.06306, -28.5288251853, 4.92777776718, -0.0637971930592, -0.000727221583477, 0.0, 1496957380.1744, 2.88588670724, 1, 18.3436944354, 16.264591217, 13.667506218, -0.404255330563 586367.16351, 4140679.07464, -28.5295070168, 4.93055534363, -0.0645419699269, -0.00068894666783, 0.00077628001268, 1496957380.1840, 2.88582246415, 1, 18.3929999888, 16.264591217, 13.667506218, -0.382978737354 586367.114994, 4140679.08623, -28.5301573398, 4.93055534363, -0.155686223809, -0.00068894666783, 0.0, 1496957380.1935, 2.8857557419, 1, 18.4423055422, 16.264591217, 13.6476688385, -0.382978737354 586367.066475, 4140679.09783, -28.5308731077, 4.92777776718, -0.0667206401968, -0.00068894666783, 0.0, 1496957380.2041, 2.88572009042, 1, 18.4915833199, 16.2523841858, 13.6476688385, -0.382978737354 586367.017995, 4140679.10941, -28.5315479273, 4.92777776718, -0.126252889387, -0.00068894666783, 0.0, 1496957380.2135, 2.88569590571, 1, 18.5408610976, 16.2523841858, 13.6263065338, -0.382978737354 586366.96943, 4140679.12102, -28.532284392, 4.93333339691, 0.133245336497, -0.000650671714967, 0.000775843629115, 1496957380.2241, 2.88561962564, 1, 18.5901944315, 16.3134212494, 13.6263065338, -0.361702114344 586366.920903, 4140679.13266, -28.5329676513, 4.93333339691, 0.0952712549005, -0.000650671714967, 0.0, 1496957380.2346, 2.88554341622, 1, 18.6395277655, 16.3134212494, 13.6858167648, -0.361702114344 586366.872412, 4140679.14434, -28.5336579559, 4.93611097336, -0.0418532393277, -0.000612396831201, 0.000775405657868, 1496957380.2441, 2.88547465681, 1, 18.6888888752, 16.3012123108, 13.6858167648, -0.340425521135 586366.823957, 4140679.15606, -28.534347754, 4.93611097336, -0.176816949079, -0.000612396831201, 0.0, 1496957380.2535, 2.88544903848, 1, 18.738249985, 16.3012123108, 13.606470108, -0.340425521135 586366.775491, 4140679.16778, -28.5349944672, 4.93055534363, -0.114790810119, -0.00053584710648, 0.00155255786389, 1496957380.2640, 2.88539627353, 1, 18.7875555384, 16.3012123108, 13.606470108, -0.297872334719 586366.727083, 4140679.17951, -28.5355445761, 4.93055534363, -0.27442510874, -0.00053584710648, 0.0, 1496957380.2745, 2.88540871274, 1, 18.8368610919, 16.3012123108, 13.6202030182, -0.297872334719 586366.67864, 4140679.19125, -28.536057001, 4.93333339691, -0.0974778746324, -0.000497572263703, 0.000775841397637, 1496957380.2842, 2.88542649179, 1, 18.8861944258, 16.3134212494, 13.6202030182, -0.27659574151 586366.630229, 4140679.20301, -28.5364743331, 4.93333339691, -0.120508383124, -0.000497572263703, 0.0, 1496957380.2938, 2.88543189975, 1, 18.9355277598, 16.3134212494, 13.6446170807, -0.27659574151 586366.581843, 4140679.21475, -28.5368048418, 4.93611097336, -0.187927932073, -0.000459297432768, 0.000775404587577, 1496957380.3044, 2.88544462962, 1, 18.9848888695, 16.264591217, 13.6446170807, -0.255319148302 586366.533479, 4140679.22648, -28.5371307293, 4.93611097336, -0.185021276231, -0.000459297432768, 0.0, 1496957380.3139, 2.88543909642, 1, 19.0342499793, 16.264591217, 13.5927362442, -0.255319148302 586366.485096, 4140679.23823, -28.5374031169, 4.93333339691, -0.107272935431, -0.000421022612763, 0.000775840936045, 1496957380.3244, 2.88537544993, 1, 19.0835833132, 16.264591217, 13.5927362442, -0.234042555094 586366.436757, 4140679.24999, -28.5376409767, 4.93333339691, -0.181175647108, -0.000421022612763, 0.0, 1496957380.3340, 2.8853796817, 1, 19.1329166472, 16.264591217, 13.6156253815, -0.234042555094 586366.388425, 4140679.26176, -28.5379370628, 4.92777776718, -0.149091092601, -0.000421022612763, 0.0, 1496957380.3445, 2.88544415218, 1, 19.1821944249, 16.1791400909, 13.6156253815, -0.234042555094 586366.340083, 4140679.27357, -28.5381474691, 4.92777776718, 0.013428592611, -0.000421022612763, 0.0, 1496957380.3542, 2.88543304783, 1, 19.2314722025, 16.1791400909, 13.6446170807, -0.234042555094 586366.291774, 4140679.2854, -28.5384314759, 4.92777776718, -0.00361928984551, -0.000421022612763, 0.0, 1496957380.3638, 2.88549451313, 1, 19.2807499802, 16.2767982483, 13.6446170807, -0.234042555094 586366.243431, 4140679.29729, -28.5386916222, 4.92777776718, 0.0585036734885, -0.000421022612763, 0.0, 1496957380.3746, 2.88552435312, 1, 19.3300277579, 16.2767982483, 13.6522464752, -0.234042555094 586366.195121, 4140679.30918, -28.53900248, 4.92222213745, -0.01022238589, -0.000421022612763, 0.0, 1496957380.3842, 2.88553624496, 1, 19.3792499793, 16.3012123108, 13.6522464752, -0.234042555094 586366.146873, 4140679.32108, -28.5392875094, 4.92222213745, -0.234541111862, -0.000421022612763, 0.0, 1496957380.3936, 2.88561605713, 1, 19.4284722006, 16.3012123108, 13.6858167648, -0.234042555094 586366.098604, 4140679.333, -28.5395964608, 4.91666650772, -0.125910610295, -0.000421022612763, 0.0, 1496957380.4047, 2.88568590729, 1, 19.4776388657, 16.2767982483, 13.6858167648, -0.234042555094 586366.050376, 4140679.3449, -28.5397914723, 4.91666650772, -0.210731081409, -0.000421022612763, 0.0, 1496957380.4147, 2.88572181688, 1, 19.5268055308, 16.2767982483, 13.6186771393, -0.234042555094 586366.002132, 4140679.35684, -28.5399959004, 4.91111087799, -0.101058918178, -0.000421022612763, 0.0, 1496957380.4241, 2.88570007698, 1, 19.5759166396, 16.2279701233, 13.6186771393, -0.234042555094 586365.953907, 4140679.36876, -28.5400672238, 4.91111087799, -0.115891353746, -0.000421022612763, 0.0, 1496957380.4336, 2.88574794683, 1, 19.6250277483, 16.2279701233, 13.6522464752, -0.234042555094 586365.905697, 4140679.38069, -28.540133494, 4.91388893127, -0.127303497056, -0.000421022612763, 0.0, 1496957380.4442, 2.88576429662, 1, 19.6741666377, 16.2523841858, 13.6522464752, -0.234042555094 586365.857496, 4140679.39257, -28.5400797548, 4.91388893127, -0.156737259221, -0.000421022612763, 0.0, 1496957380.4538, 2.88583098378, 1, 19.723305527, 16.2523841858, 13.5866327286, -0.234042555094 586365.809284, 4140679.40441, -28.5400818065, 4.90833330154, -0.141483896712, -0.000421022612763, 0.0, 1496957380.4643, 2.8858600572, 1, 19.77238886, 16.3744564056, 13.5866327286, -0.234042555094 586365.761101, 4140679.4162, -28.5399793377, 4.90833330154, -0.219512509851, -0.000421022612763, 0.0, 1496957380.4738, 2.88589588227, 1, 19.821472193, 16.3744564056, 13.6629285812, -0.234042555094 586365.712912, 4140679.42797, -28.5399003141, 4.90277767181, -0.170408829153, -0.000421022612763, 0.0, 1496957380.4843, 2.88595450261, 1, 19.8704999697, 16.2890052795, 13.6629285812, -0.234042555094 586365.664746, 4140679.43969, -28.5397199821, 4.90277767181, -0.202568124085, -0.000421022612763, 0.0, 1496957380.4945, 2.88597229139, 1, 19.9195277464, 16.2890052795, 13.6903944016, -0.234042555094 586365.61658, 4140679.45135, -28.5395906121, 4.90000009537, -0.209567805849, -0.000421022612763, 0.0, 1496957380.5043, 2.88598099828, 1, 19.9685277474, 16.1913490295, 13.6903944016, -0.234042555094 586365.52022, 4140679.47462, -28.5393142607, 4.90000009537, 0.00087242306791, -0.000421022612763, 0.0, 1496957380.5138, 2.88592566145, 1, 20.0175277483, 16.1913490295, 13.6430912018, -0.234042555094 586365.52022, 4140679.47462, -28.5393142607, 4.90000009537, 0.00087242306791, -0.000421022612763, 0.0, 1496957380.5243, 2.88592566145, 1, 20.0665277493, 16.2279701233, 13.6430912018, -0.234042555094 586365.472073, 4140679.48622, -28.5391551722, 4.90000009537, -0.142045167488, -0.000421022612763, 0.0, 1496957380.5343, 2.88592025881, 1, 20.1155277503, 16.2279701233, 13.699549675, -0.234042555094 586365.423928, 4140679.49777, -28.5389982108, 4.89166688919, -0.239130598506, -0.000382747802778, 0.000782449231566, 1496957380.5439, 2.88590989852, 1, 20.1644444191, 16.2279701233, 13.699549675, -0.212765961885 586365.375793, 4140679.50928, -28.5388166318, 4.89166688919, -0.18819305851, -0.000382747802778, 0.0, 1496957380.5545, 2.8858864395, 1, 20.213361088, 16.2279701233, 13.5881586075, -0.212765961885 586365.327641, 4140679.5208, -28.5386737892, 4.88611125946, -0.0473279895751, -0.000382747802778, 0.0, 1496957380.5641, 2.88587252071, 1, 20.2622222006, 16.2035560608, 13.5881586075, -0.212765961885 586365.279498, 4140679.53228, -28.5384757053, 4.88611125946, -0.0615730739023, -0.000382747802778, 0.0, 1496957380.5735, 2.88581421768, 1, 20.3110833132, 16.2035560608, 13.667506218, -0.212765961885 586365.231342, 4140679.54374, -28.5383321755, 4.88611125946, -0.00683691706411, -0.000382747802778, 0.0, 1496957380.5841, 2.88571701191, 1, 20.3599444258, 16.2767982483, 13.667506218, -0.212765961885 586365.183217, 4140679.55522, -28.5382343931, 4.88611125946, -0.0747905053448, -0.000382747802778, 0.0, 1496957380.5935, 2.88572122321, 1, 20.4088055384, 16.2767982483, 13.6461429596, -0.212765961885 586365.135081, 4140679.56667, -28.5381813981, 4.88333320618, -0.0829967032961, -0.000382747802778, 0.0, 1496957380.6041, 2.88568758788, 1, 20.4576388705, 16.3500423431, 13.6461429596, -0.212765961885 586365.086973, 4140679.5781, -28.5380685693, 4.88333320618, -0.163420517408, -0.000382747802778, 0.0, 1496957380.6135, 2.8856724903, 1, 20.5064722025, 16.3500423431, 13.6476688385, -0.212765961885 586365.038866, 4140679.58951, -28.5380138438, 4.87777757645, -0.13142838647, -0.000382747802778, 0.0, 1496957380.6241, 2.88562521787, 1, 20.5552499783, 16.2279701233, 13.6476688385, -0.212765961885 586364.990786, 4140679.60093, -28.5379681904, 4.87777757645, -0.147316873707, -0.000382747802778, 0.0, 1496957380.6335, 2.88558437681, 1, 20.6040277541, 16.2279701233, 13.667506218, -0.212765961885 586364.942677, 4140679.61235, -28.5380245913, 4.875, -0.00776330590694, -0.000382747802778, 0.0, 1496957380.6441, 2.885560313, 1, 20.6527777541, 16.3378353119, 13.667506218, -0.212765961885 586364.894596, 4140679.62377, -28.5380426943, 4.875, -0.0780541603896, -0.000382747802778, 0.0, 1496957380.6545, 2.88552859257, 1, 20.7015277541, 16.3378353119, 13.6614027023, -0.212765961885 586364.846503, 4140679.63518, -28.538062999, 4.87777757645, -0.034600099005, -0.000382747802778, 0.0, 1496957380.6641, 2.88550674687, 1, 20.7503055298, 16.1913490295, 13.6614027023, -0.212765961885 586364.798449, 4140679.64656, -28.5381466942, 4.87777757645, -0.138652613858, -0.000382747802778, 0.0, 1496957380.6735, 2.88546297525, 1, 20.7990833056, 16.1913490295, 13.6903944016, -0.212765961885 586364.750384, 4140679.65795, -28.5382458521, 4.875, -0.0189053606745, -0.000382747802778, 0.0, 1496957380.6841, 2.88547528843, 1, 20.8478333056, 16.2401771545, 13.6903944016, -0.212765961885 586364.702326, 4140679.66934, -28.5382764824, 4.875, -0.0865530009123, -0.000382747802778, 0.0, 1496957380.6935, 2.88548695763, 1, 20.8965833056, 16.2401771545, 13.5881586075, -0.212765961885 586364.654268, 4140679.68076, -28.5383109879, 4.87222242355, -0.0789149835692, -0.000421022612763, -0.000785571894259, 1496957380.7041, 2.88549700903, 1, 20.9453055298, 16.2279701233, 13.5881586075, -0.234042555094 586364.606309, 4140679.69212, -28.5382895395, 4.87222242355, -0.432431716616, -0.000421022612763, 0.0, 1496957380.7135, 2.8854699887, 1, 20.9940277541, 16.2279701233, 13.6339359283, -0.234042555094 586364.558325, 4140679.70352, -28.5382930506, 4.86944437027, -0.261727865067, -0.000421022612763, 0.0, 1496957380.7242, 2.88541569906, 1, 21.0427221978, 16.3134212494, 13.6339359283, -0.234042555094 586364.510349, 4140679.71494, -28.5382085927, 4.86944437027, -0.0983077473025, -0.000421022612763, 0.0, 1496957380.7337, 2.88536697611, 1, 21.0914166415, 16.3134212494, 13.6278324127, -0.234042555094 586364.46239, 4140679.72635, -28.5381151298, 4.86944437027, -0.100266708418, -0.000459297432768, -0.00078602027448, 1496957380.7443, 2.88535202513, 1, 21.1401110852, 16.3744564056, 13.6278324127, -0.255319148302 586364.414468, 4140679.73782, -28.5378989056, 4.86944437027, -0.15594115087, -0.000459297432768, 0.0, 1496957380.7538, 2.88538423418, 1, 21.1888055289, 16.3744564056, 13.6644544601, -0.255319148302 586364.366586, 4140679.74927, -28.53758479, 4.87222242355, -0.342548193931, -0.000421022612763, 0.000785572099907, 1496957380.7643, 2.88544274487, 1, 21.2375277531, 16.2890052795, 13.6644544601, -0.234042555094 586364.318768, 4140679.7607, -28.537250462, 4.87222242355, -0.470910293653, -0.000421022612763, 0.0, 1496957380.7739, 2.88551294324, 1, 21.2862499774, 16.2890052795, 13.6110477448, -0.234042555094 586364.270951, 4140679.77217, -28.5368136074, 4.86388874054, -0.288748636141, -0.000382747802778, 0.000786917876353, 1496957380.7836, 2.8855629315, 1, 21.3348888648, 16.3134212494, 13.6110477448, -0.212765961885 586364.223156, 4140679.78359, -28.5363735948, 4.86388874054, -0.261110364661, -0.000382747802778, 0.0, 1496957380.7942, 2.8855667439, 1, 21.3835277522, 16.3134212494, 13.667506218, -0.212765961885 586364.175329, 4140679.79508, -28.536065625, 4.86388874054, 0.0315691989904, -0.000382747802778, 0.0, 1496957380.8037, 2.88565469779, 1, 21.4321666396, 16.3378353119, 13.667506218, -0.212765961885 586364.127498, 4140679.80658, -28.5355627993, 4.86388874054, 0.119310654438, -0.000382747802778, 0.0, 1496957380.8142, 2.88565737397, 1, 21.480805527, 16.3378353119, 13.6507205963, -0.212765961885 586364.079706, 4140679.81813, -28.5350904651, 4.86666679382, 0.0134428243619, -0.000344473001902, 0.000786468490612, 1496957380.8238, 2.88571620838, 1, 21.5294721949, 16.2401771545, 13.6507205963, -0.191489368677 586364.032013, 4140679.82964, -28.534375282, 4.86666679382, -0.399923726043, -0.000344473001902, 0.0, 1496957380.8343, 2.88582476246, 1, 21.5781388628, 16.2401771545, 13.6415653229, -0.191489368677 586363.984346, 4140679.84114, -28.5337701291, 4.85277795792, -0.605082202244, -0.000306198182417, 0.000788719776929, 1496957380.8438, 2.88593502437, 1, 21.6266666424, 16.2523841858, 13.6415653229, -0.170212760568 586363.936659, 4140679.85263, -28.5331165902, 4.85277795792, -0.260668830036, -0.000306198182417, 0.0, 1496957380.8543, 2.88599450892, 1, 21.675194422, 16.2523841858, 13.6430912018, -0.170212760568 586363.888969, 4140679.86417, -28.5324949948, 4.84166669846, -0.074553378427, -0.00022964861801, 0.00158105811851, 1496957380.8639, 2.88605890796, 1, 21.723611089, 16.264591217, 13.6430912018, -0.127659574151 586363.841328, 4140679.87569, -28.5318332035, 4.84166669846, -0.138893931463, -0.00022964861801, 0.0, 1496957380.8746, 2.88610612225, 1, 21.772027756, 16.264591217, 13.623254776, -0.127659574151 586363.793714, 4140679.88722, -28.531204694, 4.83611106873, -0.152618736766, -0.000191373844459, 0.000791437024634, 1496957380.8842, 2.88620482011, 1, 21.8203888667, 16.3134212494, 13.623254776, -0.106382980943 586363.74609, 4140679.89879, -28.530587635, 4.83611106873, -0.106581157794, -0.000191373844459, 0.0, 1496957380.8938, 2.88632852877, 1, 21.8687499774, 16.3134212494, 13.6324100494, -0.106382980943 586363.698484, 4140679.91034, -28.5299703022, 4.83611106873, -0.0762524518033, -0.000153099062061, 0.000791437207603, 1496957380.9048, 2.886421557, 1, 21.917111088, 16.2767982483, 13.6324100494, -0.0851063802838 586363.650873, 4140679.92192, -28.5293315938, 4.83611106873, -0.047489465536, -0.000153099062061, 0.0, 1496957380.9136, 2.88650478347, 1, 21.9654721987, 16.2767982483, 13.6247806549, -0.0851063802838 586363.603284, 4140679.93351, -28.5287698107, 4.83611106873, -0.0408512426455, -0.000114824296708, 0.000791436855121, 1496957380.9241, 2.88655588095, 1, 22.0138333094, 16.2523841858, 13.6247806549, -0.0638297870755 586363.555748, 4140679.94511, -28.5282803718, 4.83611106873, -0.203514289624, -0.000114824296708, 0.0, 1496957380.9347, 2.88661441285, 1, 22.0621944201, 16.2523841858, 13.6522464752, -0.0638297870755 586363.50815, 4140679.95672, -28.5279123653, 4.830555439, 0.095788589886, -7.65495273868e-05, 0.000792347170107, 1496957380.9442, 2.88667126061, 1, 22.1104999745, 16.2401771545, 13.6522464752, -0.0425531901419 586363.460578, 4140679.96832, -28.5275455248, 4.830555439, -0.0127624482418, -7.65495273868e-05, 0.0, 1496957380.9538, 2.88669945863, 1, 22.1588055289, 16.2401771545, 13.6858167648, -0.0425531901419 586363.413023, 4140679.97992, -28.5271913288, 4.81944465637, -0.068259784559, -3.8274763238e-05, 0.000794173745687, 1496957380.9643, 2.88678761565, 1, 22.2069999754, 16.2890052795, 13.6858167648, -0.021276595071 586363.365487, 4140679.9915, -28.5267502302, 4.81944465637, -0.181373717662, -3.8274763238e-05, 0.0, 1496957380.9738, 2.88677930323, 1, 22.255194422, 16.2890052795, 13.6156253815, -0.021276595071 586363.317983, 4140680.00306, -28.5263148565, 4.81666660309, -0.275721919779, -3.8274763238e-05, 0.0, 1496957380.9844, 2.88685900489, 1, 22.303361088, 16.3500423431, 13.6156253815, -0.021276595071 586363.270477, 4140680.01456, -28.5259774523, 4.81666660309, -0.278318550765, -3.8274763238e-05, 0.0, 1496957380.9939, 2.88683637541, 1, 22.3515277541, 16.3500423431, 13.667506218, -0.021276595071 586363.222968, 4140680.02607, -28.525496223, 4.81388902664, -0.123896662471, -3.8274763238e-05, 0.0, 1496957381.0044, 2.88678604374, 1, 22.3996666443, 16.264591217, 13.667506218, -0.021276595071 586363.175463, 4140680.03748, -28.525319308, 4.81388902664, -0.062625475394, -3.8274763238e-05, 0.0, 1496957381.0140, 2.88677565716, 1, 22.4478055346, 16.264591217, 13.6858167648, -0.021276595071 586363.127966, 4140680.04888, -28.5250445809, 4.81388902664, -0.0881935765469, -7.65495273868e-05, -0.000795090288476, 1496957381.0245, 2.88672750092, 1, 22.4959444249, 16.2890052795, 13.6858167648, -0.0425531901419 586363.080412, 4140680.0602, -28.5247602034, 4.81388902664, 0.0290260412424, -7.65495273868e-05, 0.0, 1496957381.0341, 2.88672578378, 1, 22.5440833151, 16.2890052795, 13.6659803391, -0.0425531901419 586363.032904, 4140680.07143, -28.524473289, 4.80833339691, -0.161497242132, -7.65495273868e-05, 0.0, 1496957381.0436, 2.88666882424, 1, 22.5921666491, 16.3134212494, 13.6659803391, -0.0425531901419 586362.985401, 4140680.08264, -28.5242063086, 4.80833339691, -0.220153469027, -7.65495273868e-05, 0.0, 1496957381.0541, 2.88660538529, 1, 22.6402499831, 16.3134212494, 13.6430912018, -0.0425531901419 586362.937945, 4140680.09384, -28.52392508, 4.80833339691, -0.30359995254, -0.000114824296708, -0.000796009056816, 1496957381.0635, 2.88653513734, 1, 22.688333317, 16.3012123108, 13.6430912018, -0.0638297870755 586362.890455, 4140680.10497, -28.5237438902, 4.80833339691, -0.167984344422, -0.000114824296708, 0.0, 1496957381.0741, 2.88651395913, 1, 22.736416651, 16.3012123108, 13.6629285812, -0.0638297870755 586362.843816, 4140680.1163, -28.5233606938, 4.80833339691, -0.146846068101, -0.000153099062061, -0.000796008974275, 1496957381.0835, 2.88745405784, 1, 22.784499985, 16.3622493744, 13.6629285812, -0.0851063802838 586362.796785, 4140680.12741, -28.5230049761, 4.80833339691, -0.0762099519391, -0.000153099062061, 0.0, 1496957381.0941, 2.88743252519, 1, 22.8325833189, 16.3622493744, 13.699549675, -0.0851063802838 586362.749786, 4140680.13855, -28.5228736568, 4.80555534363, -0.0682172686854, -0.000191373844459, -0.000796469495449, 1496957381.1036, 2.88739269417, 1, 22.8806388724, 16.3134212494, 13.699549675, -0.106382980943 586362.702764, 4140680.14967, -28.5225713672, 4.80555534363, -0.0267619692123, -0.000191373844459, 0.0, 1496957381.1141, 2.88739620474, 1, 22.9286944258, 16.3134212494, 13.6202030182, -0.106382980943 586362.655787, 4140680.1608, -28.5223917915, 4.80555534363, -0.133141993094, -0.000191373844459, 0.0, 1496957381.1235, 2.88742091423, 1, 22.9767499793, 16.264591217, 13.6202030182, -0.106382980943 586362.608812, 4140680.17197, -28.5221894281, 4.80555534363, -0.093686061549, -0.000191373844459, 0.0, 1496957381.1341, 2.88741849373, 1, 23.0248055327, 16.264591217, 13.6888685226, -0.106382980943 586362.561823, 4140680.1831, -28.5220653964, 4.81111097336, -0.00766191662775, -0.00022964861801, -0.000795549588489, 1496957381.1436, 2.88742082659, 1, 23.0729166424, 16.264591217, 13.6888685226, -0.127659574151 586362.514885, 4140680.19428, -28.5220216438, 4.81111097336, -0.0377192207332, -0.00022964861801, 0.0, 1496957381.1542, 2.88737963224, 1, 23.1210277522, 16.264591217, 13.6736097336, -0.127659574151 586362.467905, 4140680.20543, -28.5219376767, 4.80277776718, -0.101370816915, -0.000267923397025, -0.000796930044881, 1496957381.1637, 2.88742135388, 1, 23.1690555298, 16.264591217, 13.6736097336, -0.148936167359 586362.420957, 4140680.2166, -28.5217512501, 4.80277776718, -0.0655763729214, -0.000267923397025, 0.0, 1496957381.1743, 2.88743273812, 1, 23.2170833075, 16.264591217, 13.6430912018, -0.148936167359 586362.374067, 4140680.22775, -28.5215538591, 4.79722213745, -0.292397791552, -0.000306198182417, -0.000797853096959, 1496957381.1839, 2.88742944999, 1, 23.2650555289, 16.264591217, 13.6430912018, -0.170212760568 586362.327207, 4140680.23892, -28.5213041455, 4.79722213745, -0.335953407951, -0.000306198182417, 0.0, 1496957381.1946, 2.88744509484, 1, 23.3130277503, 16.264591217, 13.6339359283, -0.170212760568 586362.280311, 4140680.25007, -28.5210623043, 4.80000019073, -0.116927319643, -0.000344473001902, -0.000797392040909, 1496957381.2043, 2.8874452673, 1, 23.3610277522, 16.3134212494, 13.6339359283, -0.191489368677 586362.233457, 4140680.26122, -28.5206829226, 4.80000019073, -0.154420851706, -0.000344473001902, 0.0, 1496957381.2138, 2.88745275449, 1, 23.4090277541, 16.3134212494, 13.7392234802, -0.191489368677 586362.186602, 4140680.2723, -28.5203474807, 4.80000019073, -0.180340588324, -0.000382747802778, -0.000797391653241, 1496957381.2243, 2.88749738039, 1, 23.457027756, 16.3134212494, 13.7392234802, -0.212765961885 586362.13979, 4140680.2834, -28.5200381428, 4.80000019073, -0.220388409319, -0.000382747802778, 0.0, 1496957381.2339, 2.88741512345, 1, 23.5050277579, 16.3134212494, 13.6522464752, -0.212765961885 586362.092964, 4140680.29445, -28.5196656613, 4.794444561, -0.185720944151, -0.000421022612763, -0.000798315831964, 1496957381.2444, 2.88743546959, 1, 23.5529722035, 16.3134212494, 13.6522464752, -0.234042555094 586362.046163, 4140680.30544, -28.5192920091, 4.794444561, -0.284267679653, -0.000421022612763, 0.0, 1496957381.2540, 2.88738272748, 1, 23.6009166491, 16.3134212494, 13.667506218, -0.234042555094 586361.999351, 4140680.31646, -28.5188483894, 4.78888893127, -0.133509050165, -0.000497572263703, -0.00159848457625, 1496957381.2645, 2.88731528006, 1, 23.6488055384, 16.2279701233, 13.667506218, -0.27659574151 586361.95259, 4140680.32743, -28.518519586, 4.78888893127, -0.270515371468, -0.000497572263703, 0.0, 1496957381.2740, 2.88728071144, 1, 23.6966944277, 16.2279701233, 13.6278324127, -0.27659574151 586361.905814, 4140680.33846, -28.5178112825, 4.78333330154, -0.136836383702, -0.000574121962009, -0.00160034213549, 1496957381.2846, 2.88723048659, 1, 23.7445277607, 16.264591217, 13.6278324127, -0.319148927927 586361.859116, 4140680.34947, -28.5173264537, 4.78333330154, -0.268818164607, -0.000574121962009, 0.0, 1496957381.2941, 2.88716806234, 1, 23.7923610938, 16.264591217, 13.6385135651, -0.319148927927 586361.812473, 4140680.36046, -28.5166591983, 4.77777767181, -0.445885078309, -0.000650671714967, -0.00160220416722, 1496957381.3035, 2.88716239009, 1, 23.8401388705, 16.2767982483, 13.6385135651, -0.361702114344 586361.765734, 4140680.37151, -28.5158974696, 4.77777767181, -0.121738443069, -0.000650671714967, 0.0, 1496957381.3140, 2.88710790701, 1, 23.8879166472, 16.2767982483, 13.5866327286, -0.361702114344 586361.719075, 4140680.38245, -28.5152995447, 4.77777767181, -0.166174681401, -0.000727221583477, -0.00160220658574, 1496957381.3245, 2.8870647766, 1, 23.9356944239, 16.2767982483, 13.5866327286, -0.404255330563 586361.672437, 4140680.39343, -28.5145969531, 4.77777767181, -0.24805751208, -0.000727221583477, 0.0, 1496957381.3340, 2.88703863754, 1, 23.9834722006, 16.2767982483, 13.6263065338, -0.404255330563 586361.625798, 4140680.40445, -28.5138046509, 4.76944446564, -0.101621785599, -0.0008420464379, -0.00240751004128, 1496957381.3435, 2.88701264022, 1, 24.0311666453, 16.3622493744, 13.6263065338, -0.468085110188 586361.579212, 4140680.41536, -28.5131234191, 4.76944446564, -0.243962421349, -0.0008420464379, 0.0, 1496957381.3540, 2.88708255389, 1, 24.0788610899, 16.3622493744, 13.6354618073, -0.468085110188 586361.532624, 4140680.42635, -28.5123518957, 4.76111125946, -0.281723600337, -0.000956871472678, -0.0024117276098, 1496957381.3646, 2.8870409132, 1, 24.1264722025, 16.3134212494, 13.6354618073, -0.531914889812 586361.486067, 4140680.43729, -28.5116314413, 4.76111125946, -0.271633402665, -0.000956871472678, 0.0, 1496957381.3744, 2.88702990783, 1, 24.1740833151, 16.3134212494, 13.6766614914, -0.531914889812 586361.439542, 4140680.44822, -28.5110028749, 4.75277757645, -0.251270370523, -0.0010716967124, -0.00241596072778, 1496957381.3839, 2.88698107378, 1, 24.2216110909, 16.2523841858, 13.6766614914, -0.595744669437 586361.392994, 4140680.45922, -28.5104656573, 4.75277757645, 0.0391344733425, -0.0010716967124, 0.0, 1496957381.3945, 2.88696982275, 1, 24.2691388667, 16.2523841858, 13.6812391281, -0.595744669437 586361.346466, 4140680.47016, -28.5099419011, 4.75, -0.0852902791311, -0.00114824699823, -0.00161158496469, 1496957381.4042, 2.88694104673, 1, 24.3166388667, 16.2523841858, 13.6812391281, -0.638297855854 586361.299951, 4140680.48117, -28.5095679723, 4.75, 0.0180091594774, -0.00114824699823, 0.0, 1496957381.4138, 2.88693771971, 1, 24.3641388667, 16.2523841858, 13.6598768234, -0.638297855854 586361.253426, 4140680.49214, -28.5091253184, 4.75, -0.0172422352304, -0.00118652218167, -0.000805793335699, 1496957381.4243, 2.88694811933, 1, 24.4116388667, 16.264591217, 13.6598768234, -0.659574449062 586361.206989, 4140680.50311, -28.508750665, 4.75, -0.305534474202, -0.00118652218167, 0.0, 1496957381.4338, 2.88691223758, 1, 24.4591388667, 16.264591217, 13.6598768234, -0.659574449062 586361.160524, 4140680.5141, -28.5081630396, 4.74722242355, -0.204601894944, -0.00122479739336, -0.000806265396229, 1496957381.4442, 2.88688706917, 1, 24.5066110909, 16.3256282806, 13.6598768234, -0.680851042271 586361.114145, 4140680.52505, -28.5078860093, 4.74722242355, -0.375434388508, -0.00122479739336, 0.0, 1496957381.4537, 2.88683400233, 1, 24.5540833151, 16.3256282806, 13.6324100494, -0.680851042271 586361.067723, 4140680.53606, -28.5072897272, 4.75, -0.143401082623, -0.00126307263419, -0.000805794543821, 1496957381.4642, 2.88675031398, 1, 24.6015833151, 16.3378353119, 13.6324100494, -0.702127635479 586361.021365, 4140680.54707, -28.5069568036, 4.75, -0.174870984149, -0.00126307263419, 0.0, 1496957381.4737, 2.88674220471, 1, 24.6490833151, 16.3378353119, 13.6629285812, -0.702127635479 586360.974993, 4140680.55808, -28.5065408098, 4.74722242355, -0.144224915443, -0.00130134790508, -0.000806266643435, 1496957381.4843, 2.88672235559, 1, 24.6965555394, 16.2767982483, 13.6629285812, -0.723404228687 586360.928615, 4140680.56913, -28.5062581133, 4.74722242355, 0.0218295921444, -0.00130134790508, 0.0, 1496957381.4939, 2.88672696388, 1, 24.7440277636, 16.2767982483, 13.6888685226, -0.723404228687 586360.882237, 4140680.5801, -28.5059861289, 4.74722242355, 0.00592945488528, -0.00130134790508, 0.0, 1496957381.5046, 2.88670091225, 1, 24.7914999878, 16.3622493744, 13.6888685226, -0.723404228687 586360.835882, 4140680.59109, -28.5058658049, 4.74722242355, -0.0803546381391, -0.00130134790508, 0.0, 1496957381.5141, 2.88659372243, 1, 24.8389722121, 16.3622493744, 13.6858167648, -0.723404228687 586360.789542, 4140680.6021, -28.5058151148, 4.74444437027, -0.0633585712642, -0.00130134790508, 0.0, 1496957381.5237, 2.88654360995, 1, 24.8864166558, 16.2767982483, 13.6858167648, -0.723404228687 586360.743219, 4140680.6131, -28.5057809791, 4.74444437027, -0.170123224687, -0.00130134790508, 0.0, 1496957381.5343, 2.8864172713, 1, 24.9338610995, 16.2767982483, 13.6369876862, -0.723404228687 586360.696915, 4140680.62411, -28.5058744913, 4.73611116409, -0.116023937343, -0.00130134790508, 0.0, 1496957381.5438, 2.88640157018, 1, 24.9812222111, 16.2767982483, 13.6369876862, -0.723404228687 586360.650589, 4140680.63516, -28.5058905464, 4.73611116409, 0.047387879009, -0.00130134790508, 0.0, 1496957381.5543, 2.88630392404, 1, 25.0285833228, 16.2767982483, 13.6324100494, -0.723404228687 586360.604319, 4140680.64621, -28.5060660811, 4.73611116409, -0.121043366412, -0.00133962320694, -0.000808158857233, 1496957381.5639, 2.88626565521, 1, 25.0759444344, 16.2767982483, 13.6324100494, -0.744680821896 586360.558039, 4140680.6573, -28.5060945414, 4.73611116409, -0.104735660359, -0.00133962320694, 0.0, 1496957381.5744, 2.88619844995, 1, 25.123305546, 16.2767982483, 13.6659803391, -0.744680821896 586360.511778, 4140680.66836, -28.5063270312, 4.73888874054, -0.0792263521443, -0.00133962320694, 0.0, 1496957381.5839, 2.88615697476, 1, 25.1706944335, 16.3134212494, 13.6659803391, -0.744680821896 586360.465535, 4140680.67942, -28.5063004689, 4.73888874054, -0.207676518735, -0.00133962320694, 0.0, 1496957381.5945, 2.88608875586, 1, 25.2180833209, 16.3134212494, 13.6629285812, -0.744680821896 586360.419324, 4140680.69045, -28.5064662267, 4.73611116409, -0.238441861682, -0.00137789864791, -0.000808161794377, 1496957381.6039, 2.88605196243, 1, 25.2654444325, 16.3622493744, 13.6629285812, -0.765957474709 586360.373112, 4140680.7015, -28.5065070037, 4.73611116409, -0.122224363009, -0.00137789864791, 0.0, 1496957381.6144, 2.8860225643, 1, 25.3128055441, 16.3622493744, 13.6659803391, -0.765957474709 586360.326947, 4140680.71252, -28.5065453798, 4.73333311081, -0.219600056377, -0.00145444941468, -0.00161726979656, 1496957381.6242, 2.88598506597, 1, 25.3601388752, 16.2767982483, 13.6659803391, -0.808510661125 586360.280742, 4140680.72353, -28.5065886723, 4.73333311081, -0.187263304776, -0.00145444941468, 0.0, 1496957381.6336, 2.88596753176, 1, 25.4074722064, 16.2767982483, 13.6461429596, -0.808510661125 586360.234575, 4140680.73451, -28.506584161, 4.73055553436, -0.178153309636, -0.00149272484953, -0.000809110781454, 1496957381.6441, 2.8859329214, 1, 25.4547777617, 16.3256282806, 13.6461429596, -0.829787254333 586360.18841, 4140680.74548, -28.5065253321, 4.73055553436, -0.129103152486, -0.00149272484953, 0.0, 1496957381.6535, 2.88583242272, 1, 25.502083317, 16.3256282806, 13.7376976013, -0.829787254333 586360.142275, 4140680.75644, -28.5064090742, 4.72777795792, -0.183767784276, -0.00156927582672, -0.00161917454392, 1496957381.6640, 2.88583658456, 1, 25.5493610966, 16.264591217, 13.7376976013, -0.87234044075 586360.09617, 4140680.76737, -28.5063006086, 4.72777795792, -0.310000440496, -0.00156927582672, 0.0, 1496957381.6746, 2.88579964342, 1, 25.5966388762, 16.264591217, 13.6736097336, -0.87234044075 586360.050086, 4140680.77826, -28.5060365554, 4.72499990463, -0.350317535649, -0.00160755137088, -0.000810064442986, 1496957381.6842, 2.88573369442, 1, 25.6438888752, 16.2401771545, 13.6736097336, -0.893617033958 586360.004018, 4140680.78913, -28.5058393236, 4.72499990463, -0.314704726382, -0.00160755137088, 0.0, 1496957381.6936, 2.88562505623, 1, 25.6911388743, 16.2401771545, 13.6598768234, -0.893617033958 586359.95796, 4140680.8, -28.5055706343, 4.71666669846, -0.179616562926, -0.00168410257488, -0.00162299371347, 1496957381.7042, 2.88556772011, 1, 25.7383055413, 16.3378353119, 13.6598768234, -0.936170220375 586359.911884, 4140680.81088, -28.5053118551, 4.71666669846, -0.014524622484, -0.00168410257488, 0.0, 1496957381.7136, 2.88549648693, 1, 25.7854722083, 16.3378353119, 13.682765007, -0.936170220375 586359.865865, 4140680.82174, -28.5050918981, 4.71666669846, -0.178853472412, -0.00172237823654, -0.000811498121692, 1496957381.7241, 2.88539627083, 1, 25.8326388752, 16.3134212494, 13.682765007, -0.957446813583 586359.819824, 4140680.83258, -28.5047907308, 4.71666669846, -0.102620117827, -0.00172237823654, 0.0, 1496957381.7335, 2.88537628532, 1, 25.8798055422, 16.3134212494, 13.6507205963, -0.957446813583 586359.773802, 4140680.84338, -28.5045631472, 4.71111106873, -0.154079401293, -0.00172237823654, 0.0, 1496957381.7441, 2.88528980088, 1, 25.9269166529, 16.3134212494, 13.6507205963, -0.957446813583 586359.727796, 4140680.8542, -28.5041694809, 4.71111106873, -0.161466181432, -0.00172237823654, 0.0, 1496957381.7536, 2.88514471941, 1, 25.9740277636, 16.3134212494, 13.6705579758, -0.957446813583 586359.681788, 4140680.86502, -28.5038673989, 4.71111106873, -0.0935386635459, -0.00168410257488, 0.00081245508981, 1496957381.7641, 2.88507084958, 1, 26.0211388743, 16.2767982483, 13.6705579758, -0.936170220375 586359.635832, 4140680.87584, -28.5035331473, 4.71111106873, -0.149331331627, -0.00168410257488, 0.0, 1496957381.7735, 2.88492281699, 1, 26.068249985, 16.2767982483, 13.640039444, -0.936170220375 586359.589906, 4140680.88667, -28.5031547016, 4.69999980927, -0.388149066689, -0.00168410257488, 0.0, 1496957381.7841, 2.8847797353, 1, 26.1152499831, 16.2523841858, 13.640039444, -0.936170220375 586359.54399, 4140680.89755, -28.5028566793, 4.69999980927, -0.233598427752, -0.00168410257488, 0.0, 1496957381.7936, 2.88470472043, 1, 26.1622499812, 16.2523841858, 13.6140995026, -0.936170220375 586359.49807, 4140680.90848, -28.5024446333, 4.69166660309, 0.00426552641312, -0.00164582695329, 0.000815821430271, 1496957381.8042, 2.88460681198, 1, 26.2091666472, 16.3378353119, 13.6140995026, -0.914893627167 586359.45223, 4140680.91939, -28.5021558488, 4.69166660309, -0.215189005631, -0.00164582695329, 0.0, 1496957381.8137, 2.88452357526, 1, 26.2560833132, 16.3378353119, 13.6949720383, -0.914893627167 586359.406357, 4140680.93031, -28.5018351506, 4.69166660309, -0.0703089855906, -0.00160755137088, 0.000815820595416, 1496957381.8243, 2.88441248864, 1, 26.3029999793, 16.2523841858, 13.6949720383, -0.893617033958 586359.360403, 4140680.94131, -28.5015857536, 4.69166660309, 0.302563434699, -0.00160755137088, 0.0, 1496957381.8338, 2.88435238325, 1, 26.3499166453, 16.2523841858, 13.7071790695, -0.893617033958 586359.314518, 4140680.95233, -28.5011833357, 4.70277786255, 0.0649989653619, -0.00160755137088, 0.0, 1496957381.8443, 2.88433778165, 1, 26.3969444239, 16.2401771545, 13.7071790695, -0.893617033958 586359.268711, 4140680.96325, -28.5009054877, 4.70277786255, -0.386570991125, -0.00160755137088, 0.0, 1496957381.8538, 2.88425348521, 1, 26.4439722025, 16.2401771545, 13.6140995026, -0.893617033958 586359.222871, 4140680.97416, -28.5005839048, 4.68611097336, -0.244402141088, -0.00153100031991, 0.00163357315705, 1496957381.8644, 2.88415203045, 1, 26.4908333123, 16.2523841858, 13.6140995026, -0.851063847542 586359.177095, 4140680.98508, -28.500231294, 4.68611097336, -0.356347266337, -0.00153100031991, 0.0, 1496957381.8741, 2.88402143781, 1, 26.537694422, 16.2523841858, 13.6659803391, -0.851063847542 586359.131375, 4140680.99606, -28.4999009259, 4.66666650772, -0.371912804287, -0.00156927582672, -0.000820189459617, 1496957381.8841, 2.8839440543, 1, 26.5843610871, 16.2401771545, 13.6659803391, -0.87234044075 586359.085593, 4140681.0071, -28.4996119514, 4.66666650772, 0.0570222317748, -0.00156927582672, 0.0, 1496957381.8946, 2.88386037595, 1, 26.6310277522, 16.2401771545, 13.6720838547, -0.87234044075 586359.039841, 4140681.01808, -28.499207898, 4.67222213745, -0.0867769046066, -0.00160755137088, -0.000819214990909, 1496957381.9042, 2.88381157107, 1, 26.6777499735, 16.2767982483, 13.6720838547, -0.893617033958 586358.994127, 4140681.02905, -28.4989153808, 4.67222213745, -0.135446439261, -0.00160755137088, 0.0, 1496957381.9136, 2.88373852401, 1, 26.7244721949, 16.2767982483, 13.6385135651, -0.893617033958 586358.948314, 4140681.04006, -28.4985487126, 4.67777776718, 0.289899236252, -0.00160755137088, 0.0, 1496957381.9241, 2.88367858906, 1, 26.7712499726, 16.3500423431, 13.6385135651, -0.893617033958 586358.902554, 4140681.05101, -28.4982878938, 4.67777776718, -0.00231438125091, -0.00160755137088, 0.0, 1496957381.9336, 2.88362079555, 1, 26.8180277503, 16.3500423431, 13.6095218658, -0.893617033958 586358.856847, 4140681.06191, -28.4978105612, 4.67500019073, -0.337165057516, -0.00160755137088, 0.0, 1496957381.9442, 2.88353868764, 1, 26.8647777522, 16.3500423431, 13.6095218658, -0.893617033958 586358.811147, 4140681.07278, -28.4976101527, 4.67500019073, -0.263976006881, -0.00160755137088, 0.0, 1496957381.9536, 2.88342142526, 1, 26.9115277541, 16.3500423431, 13.6522464752, -0.893617033958 586358.765478, 4140681.08365, -28.4971629465, 4.66111087799, -0.368884656016, -0.00160755137088, 0.0, 1496957381.9642, 2.88329743864, 1, 26.9581388628, 16.2767982483, 13.6522464752, -0.893617033958 586358.71982, 4140681.09457, -28.4968036693, 4.66111087799, -0.175777950128, -0.00160755137088, 0.0, 1496957381.9737, 2.88319252329, 1, 27.0047499716, 16.2767982483, 13.6156253815, -0.893617033958 586358.674192, 4140681.1055, -28.4964043098, 4.65277767181, -0.249419281134, -0.00168410257488, -0.00164527964585, 1496957381.9842, 2.88304387551, 1, 27.0512777483, 16.2767982483, 13.6156253815, -0.936170220375 586358.628715, 4140681.11638, -28.4958784869, 4.65277767181, -0.74470671887, -0.00168410257488, 0.0, 1496957381.9942, 2.88297613929, 1, 27.0978055251, 16.2767982483, 13.6385135651, -0.936170220375 586358.583221, 4140681.12726, -28.4955278588, 4.64722204208, -0.518562814649, -0.00172237823654, -0.000823624550707, 1496957382.0039, 2.8828162883, 1, 27.1442777455, 16.3256282806, 13.6385135651, -0.957446813583 586358.537661, 4140681.13827, -28.4951632237, 4.64722204208, 0.117174559074, -0.00172237823654, 0.0, 1496957382.0145, 2.88267631213, 1, 27.1907499659, 16.3256282806, 13.6278324127, -0.957446813583 586358.492092, 4140681.14933, -28.4947053334, 4.6555557251, 0.435287487107, -0.00183720547112, -0.00246645602289, 1496957382.0241, 2.88260995712, 1, 27.2373055232, 16.2767982483, 13.6278324127, -1.02127659321 586358.446565, 4140681.16031, -28.4943013266, 4.6555557251, 0.0767080321797, -0.00183720547112, 0.0, 1496957382.0336, 2.88255643167, 1, 27.2838610804, 16.2767982483, 13.7148084641, -1.02127659321 586358.40106, 4140681.17126, -28.4938635938, 4.669444561, -0.247117214469, -0.00179892968375, 0.000819707502015, 1496957382.0442, 2.88247569148, 1, 27.330555526, 16.2279701233, 13.7148084641, -1.0 586358.355604, 4140681.18208, -28.4934532633, 4.669444561, -0.499189802553, -0.00179892968375, 0.0, 1496957382.0537, 2.88240637875, 1, 27.3772499716, 16.2279701233, 13.6903944016, -1.0 586358.310114, 4140681.1929, -28.49298828, 4.65833330154, -0.324409904551, -0.0017606539392, 0.000821661784995, 1496957382.0642, 2.88221326231, 1, 27.4238333046, 16.2523841858, 13.6903944016, -0.978723406792 586358.264614, 4140681.20372, -28.4926153049, 4.65833330154, -0.0681223508444, -0.0017606539392, 0.0, 1496957382.0742, 2.88206864807, 1, 27.4704166377, 16.2523841858, 13.667506218, -0.978723406792 586358.21903, 4140681.21465, -28.492340385, 4.65277767181, -0.0590295530951, -0.00183720547112, -0.00164528669378, 1496957382.0837, 2.88316702786, 1, 27.5169444144, 16.1547260284, 13.667506218, -1.02127659321 586358.173257, 4140681.22565, -28.4920559712, 4.65277767181, 0.129952529985, -0.00183720547112, 0.0, 1496957382.0943, 2.88312601052, 1, 27.5634721911, 16.1547260284, 13.5851068497, -1.02127659321 586358.127456, 4140681.2366, -28.4918423016, 4.65000009537, 0.0477300651182, -0.00183720547112, 0.0, 1496957382.1038, 2.88306809094, 1, 27.609972192, 15.9960327148, 13.5851068497, -1.02127659321 586358.081703, 4140681.24752, -28.4915524451, 4.65000009537, -0.15746998997, -0.00183720547112, 0.0, 1496957382.1144, 2.88300331826, 1, 27.656472193, 15.9960327148, 13.6644544601, -1.02127659321 586358.035967, 4140681.25842, -28.4912968362, 4.64444446564, -0.242698354163, -0.00179892968375, 0.000824119819973, 1496957382.1238, 2.8829031427, 1, 27.7029166377, 15.6664381027, 13.6644544601, -1.0 586357.990265, 4140681.26931, -28.49105547, 4.64444446564, -0.27985604576, -0.00179892968375, 0.0, 1496957382.1344, 2.8827799873, 1, 27.7493610823, 15.6664381027, 13.6293582916, -1.0 586357.944565, 4140681.28019, -28.490813287, 4.63888883591, -0.241232935241, -0.0017606539392, 0.000825105880103, 1496957382.1439, 2.88265189997, 1, 27.7957499707, 15.3490505219, 13.6293582916, -0.978723406792 586357.898879, 4140681.29112, -28.4906033147, 4.63888883591, -0.122936318347, -0.0017606539392, 0.0, 1496957382.1546, 2.88249555972, 1, 27.842138859, 15.3490505219, 13.6858167648, -0.978723406792 586357.853191, 4140681.30203, -28.4903108189, 4.63888883591, -0.0445675357763, -0.0017606539392, 0.0, 1496957382.1641, 2.88236572485, 1, 27.8885277474, 15.2635993958, 13.6858167648, -0.978723406792 586357.80752, 4140681.31295, -28.4900221452, 4.63888883591, -0.0888997345606, -0.0017606539392, 0.0, 1496957382.1736, 2.88225044797, 1, 27.9349166358, 15.2635993958, 13.6568250656, -0.978723406792 586357.761855, 4140681.32386, -28.4897672497, 4.63611125946, -0.0729525285642, -0.00172237823654, 0.000825599311856, 1496957382.1841, 2.88213156219, 1, 27.9812777483, 15.3124284744, 13.6568250656, -0.957446813583 586357.716211, 4140681.33479, -28.4894112423, 4.63611125946, -0.116695463344, -0.00172237823654, 0.0, 1496957382.1935, 2.88201971449, 1, 28.0276388609, 15.3124284744, 13.667506218, -0.957446813583 586357.670622, 4140681.34567, -28.48905122, 4.63333320618, -0.343633150746, -0.00172237823654, 0.0, 1496957382.2041, 2.88191664413, 1, 28.073972193, 15.3612575531, 13.667506218, -0.957446813583 586357.62504, 4140681.35654, -28.4886258347, 4.63333320618, -0.306822581873, -0.00172237823654, 0.0, 1496957382.2136, 2.88184030827, 1, 28.1203055251, 15.3612575531, 13.6430912018, -0.957446813583 586357.579517, 4140681.36737, -28.4881504858, 4.63055562973, -0.467149206368, -0.00172237823654, 0.0, 1496957382.2242, 2.8816628431, 1, 28.1666110814, 15.3612575531, 13.6430912018, -0.957446813583 586357.533966, 4140681.37822, -28.4876187276, 4.63055562973, -0.226712631648, -0.00172237823654, 0.0, 1496957382.2338, 2.88152348568, 1, 28.2129166377, 15.3612575531, 13.6446170807, -0.957446813583 586357.488424, 4140681.38908, -28.4871437093, 4.63055562973, -0.00574673986761, -0.00172237823654, 0.0, 1496957382.2443, 2.88137980835, 1, 28.259222194, 15.3246355057, 13.6446170807, -0.957446813583 586357.44285, 4140681.39993, -28.4865478072, 4.63055562973, 0.0223596661981, -0.00172237823654, 0.0, 1496957382.2538, 2.88125770056, 1, 28.3055277503, 15.3246355057, 13.6125736237, -0.957446813583 586357.39737, 4140681.4107, -28.4860499753, 4.625, -0.335197003399, -0.00168410257488, 0.000827581873826, 1496957382.2643, 2.88107727338, 1, 28.3517777503, 15.2880144119, 13.6125736237, -0.936170220375 586357.351886, 4140681.42151, -28.4855205724, 4.625, -0.23585796812, -0.00168410257488, 0.0, 1496957382.2738, 2.88088592682, 1, 28.3980277503, 15.2880144119, 13.6873426437, -0.936170220375 586357.306397, 4140681.43235, -28.4849714637, 4.61944437027, -0.112042845125, -0.00172237823654, -0.000828577175012, 1496957382.2845, 2.88078162982, 1, 28.444222194, 15.2880144119, 13.6873426437, -0.957446813583 586357.260954, 4140681.44316, -28.4844456082, 4.61944437027, -0.171586802367, -0.00172237823654, 0.0, 1496957382.2939, 2.88063620079, 1, 28.4904166377, 15.2880144119, 13.6568250656, -0.957446813583 586357.215485, 4140681.45402, -28.4839974372, 4.61388874054, 0.00958072024953, -0.00172237823654, 0.0, 1496957382.3044, 2.88051816701, 1, 28.5365555251, 15.2880144119, 13.6568250656, -0.957446813583 586357.170068, 4140681.46495, -28.4835405108, 4.61388874054, -0.072041590643, -0.00172237823654, 0.0, 1496957382.3140, 2.88044259793, 1, 28.5826944125, 15.2880144119, 13.6873426437, -0.957446813583 586357.124751, 4140681.47589, -28.4830621174, 4.61111116409, -0.427639321021, -0.00172237823654, 0.0, 1496957382.3244, 2.88038396989, 1, 28.6288055241, 15.3368425369, 13.6873426437, -0.957446813583 586357.079462, 4140681.48686, -28.4827654622, 4.61111116409, -0.431687429849, -0.00172237823654, 0.0, 1496957382.3340, 2.88030950928, 1, 28.6749166358, 15.3368425369, 13.5896844864, -0.957446813583 586357.034169, 4140681.49788, -28.4824237106, 4.60277795792, -0.197458853964, -0.00172237823654, 0.0, 1496957382.3445, 2.88028586407, 1, 28.7209444153, 15.3124284744, 13.5896844864, -0.957446813583 586356.988889, 4140681.50893, -28.4822137831, 4.60277795792, -0.0611572091689, -0.00172237823654, 0.0, 1496957382.3537, 2.88022651108, 1, 28.7669721949, 15.3124284744, 13.6476688385, -0.957446813583 586356.943744, 4140681.52002, -28.4821248557, 4.5944442749, -0.413837497492, -0.00172237823654, 0.0, 1496957382.3640, 2.8801860631, 1, 28.8129166377, 15.2880144119, 13.6476688385, -0.957446813583 586356.898635, 4140681.53121, -28.4821089795, 4.5944442749, -0.458282194214, -0.00172237823654, 0.0, 1496957382.3743, 2.88023278931, 1, 28.8588610804, 15.2880144119, 13.623254776, -0.957446813583 586356.853577, 4140681.54238, -28.4820225611, 4.59166669846, -0.478565773856, -0.00168410257488, 0.000833589721948, 1496957382.3838, 2.88027145957, 1, 28.9047777474, 15.2635993958, 13.623254776, -0.936170220375 586356.808583, 4140681.55358, -28.4820750561, 4.59166669846, -0.442621951163, -0.00168410257488, 0.0, 1496957382.3943, 2.88033711793, 1, 28.9506944144, 15.2635993958, 13.6339359283, -0.936170220375 586356.763499, 4140681.56481, -28.4821105497, 4.60833311081, 0.0849303475367, -0.00160755137088, 0.00166114736414, 1496957382.4038, 2.88038210931, 1, 28.9967777455, 15.3368425369, 13.6339359283, -0.893617033958 586356.718445, 4140681.57607, -28.4821809279, 4.60833311081, 0.106645068613, -0.00160755137088, 0.0, 1496957382.4144, 2.88036329124, 1, 29.0428610766, 15.3368425369, 13.6461429596, -0.893617033958 586356.673454, 4140681.58744, -28.4823819296, 4.625, -0.0229204817491, -0.00156927582672, 0.000827579333158, 1496957382.4239, 2.88040377122, 1, 29.0891110766, 15.275806427, 13.6461429596, -0.87234044075 586356.628465, 4140681.59884, -28.4827821618, 4.625, -0.0296563819117, -0.00156927582672, 0.0, 1496957382.4346, 2.88049862486, 1, 29.1353610766, 15.275806427, 13.6308841705, -0.87234044075 586356.583497, 4140681.61024, -28.4832086684, 4.61388874054, 0.00554864759822, -0.00145444941468, 0.00248871220127, 1496957382.4442, 2.88051265737, 1, 29.181499964, 15.2635993958, 13.6308841705, -0.808510661125 586356.538577, 4140681.6216, -28.4840178583, 4.61388874054, -0.186693357001, -0.00145444941468, 0.0, 1496957382.4538, 2.8805346887, 1, 29.2276388514, 15.2635993958, 13.6171512604, -0.808510661125 586356.493645, 4140681.63318, -28.4845462674, 4.60555553436, 0.0130897443238, -0.00145444941468, 0.0, 1496957382.4643, 2.8805103713, 1, 29.2736944067, 15.2513923645, 13.6171512604, -0.808510661125 586356.448721, 4140681.64469, -28.4852089351, 4.60555553436, -0.00274140711155, -0.00145444941468, 0.0, 1496957382.4738, 2.88057532157, 1, 29.3197499621, 15.2513923645, 13.6156253815, -0.808510661125 586356.403928, 4140681.65627, -28.4859135319, 4.60555553436, -0.341689673303, -0.00141617401444, 0.000831070214042, 1496957382.4843, 2.88045015078, 1, 29.3658055174, 15.275806427, 13.6156253815, -0.787234067917 586356.359084, 4140681.66782, -28.4862536509, 4.60555553436, -0.259857422639, -0.00141617401444, 0.0, 1496957382.4941, 2.8804340847, 1, 29.4118610728, 15.275806427, 13.6537723541, -0.787234067917 586356.314306, 4140681.67927, -28.4869440645, 4.60555553436, -0.429456748256, -0.00141617401444, 0.0, 1496957382.5036, 2.88041334229, 1, 29.4579166281, 15.3368425369, 13.6537723541, -0.787234067917 586356.269535, 4140681.69081, -28.4873858765, 4.60555553436, -0.324758493636, -0.00141617401444, 0.0, 1496957382.5140, 2.88029316788, 1, 29.5039721835, 15.3368425369, 13.6690320969, -0.787234067917 586356.22471, 4140681.70224, -28.4880484315, 4.60555553436, 0.013391229825, -0.00141617401444, 0.0, 1496957382.5245, 2.88023730046, 1, 29.5500277388, 15.2513923645, 13.6690320969, -0.787234067917 586356.179854, 4140681.71369, -28.488831928, 4.60555553436, 0.218451913364, -0.00141617401444, 0.0, 1496957382.5345, 2.88010943992, 1, 29.5960832942, 15.2513923645, 13.6217288971, -0.787234067917 586356.134983, 4140681.72505, -28.4894473711, 4.59999990463, 0.0750582782822, -0.00145444941468, -0.000832073935452, 1496957382.5441, 2.88007785659, 1, 29.6420832932, 15.2513923645, 13.6217288971, -0.808510661125 586356.090084, 4140681.7365, -28.4899283303, 4.59999990463, 0.267528796593, -0.00145444941468, 0.0, 1496957382.5536, 2.87997782342, 1, 29.6880832922, 15.2513923645, 13.6430912018, -0.808510661125 586356.045325, 4140681.74784, -28.4905250352, 4.59999990463, -0.298370530278, -0.00145444941468, 0.0, 1496957382.5642, 2.87987972549, 1, 29.7340832913, 15.3246355057, 13.6430912018, -0.808510661125 586356.000506, 4140681.75915, -28.4911145056, 4.59166669846, -0.410282446656, -0.00145444941468, 0.0, 1496957382.5738, 2.87978454496, 1, 29.7799999583, 15.3246355057, 13.623254776, -0.808510661125 586355.95569, 4140681.77054, -28.4912139997, 4.59166669846, -0.0778988568476, -0.00145444941468, 0.0, 1496957382.5842, 2.8796264441, 1, 29.8259166253, 15.2635993958, 13.623254776, -0.808510661125 586355.911052, 4140681.78165, -28.4915977335, 4.59166669846, -0.943574212123, -0.00153100031991, -0.00166717033823, 1496957382.5937, 2.87948519337, 1, 29.8718332922, 15.2635993958, 13.6018924713, -0.851063847542 586355.866391, 4140681.79294, -28.4914230956, 4.59166669846, -0.653626141575, -0.00153100031991, 0.0, 1496957382.6043, 2.87924042015, 1, 29.9177499592, 15.3490505219, 13.6018924713, -0.851063847542 586355.821857, 4140681.80403, -28.4911468774, 4.58888912201, -0.896504814525, -0.00164582695329, -0.00250227517671, 1496957382.6139, 2.87911021453, 1, 29.9636388505, 15.3490505219, 13.6369876862, -0.914893627167 586355.777279, 4140681.81501, -28.4910245305, 4.58888912201, -0.556394612097, -0.00164582695329, 0.0, 1496957382.6245, 2.87892696943, 1, 30.0095277417, 15.2635993958, 13.6369876862, -0.914893627167 586355.732745, 4140681.82608, -28.4907144513, 4.57777786255, -0.363201610924, -0.0017606539392, -0.00250835644175, 1496957382.6340, 2.87872375284, 1, 30.0553055203, 15.2635993958, 13.7346458435, -0.978723406792 586355.688043, 4140681.83697, -28.490495488, 4.57777786255, 0.307641716669, -0.0017606539392, 0.0, 1496957382.6446, 2.87863916613, 1, 30.1010832989, 15.2635993958, 13.7346458435, -0.978723406792 586355.643395, 4140681.84785, -28.4900802458, 4.56111097336, 0.206860608851, -0.00191375717794, -0.00335670935522, 1496957382.6541, 2.87840488046, 1, 30.1466944087, 15.2635993958, 13.7132825851, -1.06382977962 586355.598709, 4140681.85872, -28.4897159152, 4.56111097336, 0.252808467528, -0.00191375717794, 0.0, 1496957382.6637, 2.87829762719, 1, 30.1923055184, 15.275806427, 13.7132825851, -1.06382977962 586355.554043, 4140681.86952, -28.4893130343, 4.55277776718, -0.00463425229235, -0.00206686114541, -0.00336286933605, 1496957382.6742, 2.87807790803, 1, 30.2378332961, 15.275806427, 13.7026014328, -1.14893615246 586355.509416, 4140681.88024, -28.4887440596, 4.55277776718, -0.300535742137, -0.00206686114541, 0.0, 1496957382.6837, 2.87782375035, 1, 30.2833610737, 15.2513923645, 13.7026014328, -1.14893615246 586355.464791, 4140681.89088, -28.4882572638, 4.54722213745, -0.44676171775, -0.00221996589991, -0.00336699527476, 1496957382.6943, 2.8776358324, 1, 30.3288332951, 15.2513923645, 13.7850008011, -1.23404252529 586355.420194, 4140681.90153, -28.4876925685, 4.54722213745, -0.359216407941, -0.00221996589991, 0.0, 1496957382.7038, 2.87732290819, 1, 30.3743055165, 15.275806427, 13.7850008011, -1.23404252529 586355.37567, 4140681.91208, -28.4872304369, 4.544444561, -0.476918303366, -0.00237307149975, -0.00336907179259, 1496957382.7143, 2.87712372512, 1, 30.4197499621, 15.275806427, 13.8277254105, -1.31914889812 586355.331107, 4140681.92263, -28.4866509493, 4.544444561, -0.367338630878, -0.00237307149975, 0.0, 1496957382.7238, 2.87699265915, 1, 30.4651944077, 15.2635993958, 13.8277254105, -1.31914889812 586355.286556, 4140681.93317, -28.4860914331, 4.544444561, -0.122365818844, -0.00252617800322, -0.00336909167709, 1496957382.7344, 2.87683232004, 1, 30.5106388533, 15.2635993958, 13.8811321259, -1.40425527096 586355.241996, 4140681.9437, -28.485436148, 4.544444561, -0.0181990946408, -0.00252617800322, 0.0, 1496957382.7440, 2.87670595249, 1, 30.5560832989, 15.2635993958, 13.8811321259, -1.40425527096 586355.197432, 4140681.9543, -28.4847664088, 4.53333330154, 0.101596109801, -0.00264100850892, -0.00253302587868, 1496957382.7545, 2.87654893947, 1, 30.6014166319, 15.2635993958, 14.0321969986, -1.46808505058 586355.152873, 4140681.96488, -28.4840488117, 4.53333330154, 0.070380049131, -0.00264100850892, 0.0, 1496957382.7641, 2.87645327858, 1, 30.646749965, 15.2880144119, 14.0321969986, -1.46808505058 586355.108287, 4140681.97546, -28.4832100589, 4.52500009537, 0.0905523586382, -0.00279411694852, -0.00338361185372, 1496957382.7746, 2.87629989979, 1, 30.6919999659, 15.2880144119, 14.1435871124, -1.55319154263 586355.063786, 4140681.98605, -28.4823752036, 4.52500009537, -0.231684188994, -0.00279411694852, 0.0, 1496957382.7843, 2.87613870055, 1, 30.7372499669, 15.3124284744, 14.1435871124, -1.55319154263 586355.019305, 4140681.99664, -28.4816076988, 4.52222204208, -0.304934503632, -0.00290894881244, -0.00253927964717, 1496957382.7938, 2.87596884175, 1, 30.7824721873, 15.3124284744, 14.2244606018, -1.61702132225 586354.974825, 4140682.00722, -28.4807559475, 4.51388883591, -0.225101204333, -0.00302378129945, -0.0025439812805, 1496957382.8043, 2.87580468656, 1, 30.8276110756, 15.2635993958, 14.2244606018, -1.68085110188 586354.93036, 4140682.0178, -28.4799862774, 4.51388883591, -0.137668157996, -0.00302378129945, 0.0, 1496957382.8138, 2.87561469698, 1, 30.872749964, 15.2635993958, 14.4823379517, -1.68085110188 586354.885915, 4140682.02834, -28.4791665338, 4.51388883591, -0.203678802764, -0.00313861443415, -0.00254399562941, 1496957382.8243, 2.87549078894, 1, 30.9178888524, 15.2391853333, 14.4823379517, -1.7446808815 586354.841528, 4140682.03888, -28.4783870261, 4.51388883591, -0.410149971936, -0.00313861443415, 0.0, 1496957382.8339, 2.87534219475, 1, 30.9630277407, 15.2391853333, 14.7188529968, -1.7446808815 586354.797155, 4140682.04935, -28.4775583483, 4.51388883591, -0.419600258253, -0.00313861443415, 0.0, 1496957382.8444, 2.87522354321, 1, 31.0081666291, 15.3612575531, 14.7188529968, -1.7446808815 586354.752785, 4140682.05988, -28.4768324373, 4.50833320618, -0.127340795278, -0.00321517022926, -0.00169809531843, 1496957382.8543, 2.87508623767, 1, 31.0532499611, 15.3612575531, 14.944685936, -1.78723406792 586354.708407, 4140682.07039, -28.4761530906, 4.50833320618, -0.0203623518545, -0.00321517022926, 0.0, 1496957382.8638, 2.8749551251, 1, 31.0983332932, 15.2513923645, 14.944685936, -1.78723406792 586354.66397, 4140682.08095, -28.4755165745, 4.50555562973, 0.347074478533, -0.00329172633046, -0.00169914895058, 1496957382.8758, 2.87480986097, 1, 31.1433888495, 15.2513923645, 14.9919891357, -1.82978725433 586354.619551, 4140682.09158, -28.4748987444, 4.50555562973, 0.257589423099, -0.00340656107212, -0.00254873651769, 1496957382.8843, 2.87468801011, 1, 31.1884444058, 15.275806427, 14.9919891357, -1.89361703396 586354.575234, 4140682.10221, -28.4742209185, 4.50555562973, -0.273866535454, -0.00340656107212, 0.0, 1496957382.8938, 2.87456056077, 1, 31.2334999621, 15.275806427, 15.020980835, -1.89361703396 586354.530898, 4140682.11286, -28.4736383865, 4.49166679382, -0.198667323699, -0.00344483948028, -0.000852209433994, 1496957382.9044, 2.87441008614, 1, 31.27841663, 15.2880144119, 15.020980835, -1.91489362717 586354.486595, 4140682.12356, -28.4730816642, 4.49166679382, -0.206252854655, -0.00344483948028, 0.0, 1496957382.9139, 2.87425529748, 1, 31.323333298, 15.2880144119, 15.1033802032, -1.91489362717 586354.442358, 4140682.13439, -28.4725680696, 4.49166679382, -0.172056107703, -0.00344483948028, 0.0, 1496957382.9244, 2.87404867416, 1, 31.3682499659, 15.2025632858, 15.1033802032, -1.91489362717 586354.398118, 4140682.14532, -28.4720260417, 4.48611116409, -0.014763664476, -0.00348311797043, -0.00085326664341, 1496957382.9339, 2.87390960285, 1, 31.4131110775, 15.2025632858, 15.3429460526, -1.93617022038 586354.354003, 4140682.15631, -28.4713601908, 4.48611116409, -0.392929681614, -0.00348311797043, 0.0, 1496957382.9445, 2.87384596704, 1, 31.4579721892, 15.2880144119, 15.3429460526, -1.93617022038 586354.309927, 4140682.16737, -28.4706413923, 4.48611116409, -0.450172522374, -0.00359795394193, -0.00255981109906, 1496957382.9540, 2.8737607894, 1, 31.5028333008, 15.2880144119, 15.7473106384, -2.0 586354.265895, 4140682.17849, -28.4698051875, 4.48611116409, -0.423707111226, -0.00359795394193, 0.0, 1496957382.9645, 2.8736812143, 1, 31.5476944125, 15.2635993958, 15.7473106384, -2.0 586354.221941, 4140682.18972, -28.4688083138, 4.48611116409, -0.400149830933, -0.00375106977371, -0.00341310828436, 1496957382.9741, 2.87360850744, 1, 31.5925555241, 15.2635993958, 16.2447547913, -2.08510637283 586354.178059, 4140682.20087, -28.4675969733, 4.48611116409, -0.668408957907, -0.00375106977371, 0.0, 1496957382.9835, 2.87355254714, 1, 31.6374166358, 15.2391853333, 16.2447547913, -2.08510637283 586354.134256, 4140682.21223, -28.4662936004, 4.48611116409, -0.630889407812, -0.00390418703397, -0.0034131401263, 1496957382.9961, 2.87344912029, 1, 31.6822777474, 15.2391853333, 16.9222545624, -2.17021274567 586354.090536, 4140682.22359, -28.4646672318, 4.48611116409, -0.676992304727, -0.00390418703397, 0.0, 1496957383.0046, 2.87345754308, 1, 31.727138859, 15.2635993958, 16.9222545624, -2.17021274567 586354.046915, 4140682.23499, -28.4631698765, 4.47499990463, -0.696958275191, -0.00409558592139, -0.00427707020114, 1496957383.0142, 2.87341569555, 1, 31.7718888581, 15.2635993958, 17.662317276, -2.27659583092 586354.003243, 4140682.24648, -28.461582128, 4.47499990463, -0.299416586792, -0.00409558592139, 0.0, 1496957383.0236, 2.87340138536, 1, 31.8166388571, 15.2513923645, 17.662317276, -2.27659583092 586353.959631, 4140682.25794, -28.4602084076, 4.46666669846, -0.140759455638, -0.00432526755582, -0.0051421261075, 1496957383.0341, 2.87342525101, 1, 31.8613055241, 15.2513923645, 18.3840694427, -2.40425539017 586353.915975, 4140682.26953, -28.458719058, 4.46666669846, 0.139602945398, -0.00432526755582, 0.0, 1496957383.0435, 2.87331493098, 1, 31.9059721911, 15.2513923645, 18.3840694427, -2.40425539017 586353.872334, 4140682.28106, -28.4573780075, 4.455555439, 0.156216510177, -0.00455495289644, -0.00515503271722, 1496957383.0540, 2.87331992427, 1, 31.9505277455, 15.3368425369, 18.7319755554, -2.53191494942 586353.828708, 4140682.29263, -28.4559583804, 4.455555439, 0.00889596216199, -0.00455495289644, 0.0, 1496957383.0636, 2.87323984673, 1, 31.9950832999, 15.226978302, 18.7319755554, -2.53191494942 586353.785119, 4140682.30424, -28.4544548523, 4.44999980927, -0.0854687643304, -0.00478464214011, -0.00516155625868, 1496957383.0741, 2.87314936774, 1, 32.039583298, 15.226978302, 18.9532318115, -2.65957450867 586353.741652, 4140682.31605, -28.4530490255, 4.44999980927, -0.445528015669, -0.00478464214011, 0.0, 1496957383.0836, 2.87390941084, 1, 32.0840832961, 15.2635993958, 18.9532318115, -2.65957450867 586353.698139, 4140682.3278, -28.4515934754, 4.44999980927, -0.495942367997, -0.00501433548371, -0.00516164839216, 1496957383.0941, 2.8737866044, 1, 32.1285832942, 15.2635993958, 19.0356292725, -2.78723406792 586353.654648, 4140682.33951, -28.4502875125, 4.44999980927, -0.429217340941, -0.00501433548371, 0.0, 1496957383.1046, 2.87369003191, 1, 32.1730832922, 15.3612575531, 19.0356292725, -2.78723406792 586353.611164, 4140682.35126, -28.4490869753, 4.44722223282, -0.178560861881, -0.00528231628131, -0.00602580180554, 1496957383.1140, 2.87356387435, 1, 32.2175555146, 15.3612575531, 19.0218963623, -2.93617010117 586353.567673, 4140682.36302, -28.4478002135, 4.44722223282, -0.011147400474, -0.00528231628131, 0.0, 1496957383.1245, 2.87341046853, 1, 32.2620277369, 15.1903562546, 19.0218963623, -2.93617010117 586353.524151, 4140682.37471, -28.4467455586, 4.44166660309, 0.11724011161, -0.00558858828667, -0.00689542986284, 1496957383.1341, 2.87324565274, 1, 32.3064444029, 15.1903562546, 18.9532318115, -3.10638308525 586353.480618, 4140682.38639, -28.4456128515, 4.44166660309, 0.134837062821, -0.00558858828667, 0.0, 1496957383.1435, 2.87304144761, 1, 32.350861069, 15.2147703171, 18.9532318115, -3.10638308525 586353.437088, 4140682.39797, -28.4447211791, 4.43333339691, 0.0141095849352, -0.0058948683771, -0.00690857336936, 1496957383.1541, 2.87281580665, 1, 32.3951944029, 15.2147703171, 18.8784618378, -3.27659583092 586353.393502, 4140682.40949, -28.4438864058, 4.43333339691, 0.0847521766746, -0.0058948683771, 0.0, 1496957383.1636, 2.87251375858, 1, 32.4395277369, 15.2635993958, 18.8784618378, -3.27659583092 586353.349979, 4140682.42095, -28.4432059824, 4.42500019073, -0.155526026737, -0.0062394440226, -0.00778701990165, 1496957383.1742, 2.87221408571, 1, 32.4837777388, 15.2635993958, 18.9883270264, -3.46808505058 586353.306463, 4140682.43232, -28.4426064352, 4.42500019073, -0.204426438607, -0.0062394440226, 0.0, 1496957383.1838, 2.8718670106, 1, 32.5280277407, 15.2635993958, 18.9883270264, -3.46808505058 586353.262913, 4140682.44365, -28.4420653963, 4.42500019073, -0.215652877806, -0.00669889733292, -0.0103831252092, 1496957383.1944, 2.87153910935, 1, 32.5722777426, 15.2635993958, 19.1424427032, -3.72340416908 586353.219443, 4140682.45489, -28.4417143632, 4.42500019073, -0.434134240701, -0.00669889733292, 0.0, 1496957383.2039, 2.87122388933, 1, 32.6165277445, 15.2635993958, 19.1424427032, -3.72340416908 586353.175994, 4140682.46605, -28.4412986897, 4.42500019073, -0.455998858365, -0.00715837360838, -0.0103836441956, 1496957383.2145, 2.87082096625, 1, 32.6607777464, 15.2635993958, 19.3926906586, -3.97872328758 586353.132535, 4140682.47715, -28.4410504811, 4.42500019073, -0.310208621018, -0.00715837360838, 0.0, 1496957383.2241, 2.87047104121, 1, 32.7050277483, 15.2391853333, 19.3926906586, -3.97872328758 586353.089079, 4140682.48821, -28.4407720128, 4.43055534363, -0.173812058283, -0.00761787485453, -0.010371188497, 1496957383.2336, 2.8700571034, 1, 32.7493333018, 15.2391853333, 19.7253379822, -4.2340426445 586353.045625, 4140682.49925, -28.4405569425, 4.43055534363, -0.122552653526, -0.00761787485453, 0.0, 1496957383.2443, 2.8696471715, 1, 32.7936388552, 15.2635993958, 19.7253379822, -4.2340426445 586353.002218, 4140682.51021, -28.4403793439, 4.43055534363, -0.305108116226, -0.00815399183345, -0.012100446498, 1496957383.2539, 2.86928291377, 1, 32.8379444087, 15.2635993958, 20.0045776367, -4.531914711 586352.9588, 4140682.52113, -28.4401966892, 4.43055534363, -0.194177672358, -0.00815399183345, 0.0, 1496957383.2644, 2.86885612369, 1, 32.8822499621, 15.3612575531, 20.0045776367, -4.531914711 586352.915402, 4140682.53205, -28.4400806669, 4.43055534363, -0.145956190362, -0.00861355123367, -0.0103725010653, 1496957383.2739, 2.86839030953, 1, 32.9265555155, 15.3612575531, 20.1632709503, -4.7872338295 586352.872005, 4140682.54299, -28.4399536746, 4.43055534363, -0.108971265088, -0.00861355123367, 0.0, 1496957383.2836, 2.86799298237, 1, 32.970861069, 15.2635993958, 20.1632709503, -4.7872338295 586352.828649, 4140682.55393, -28.4398272224, 4.42777776718, -0.237174196568, -0.00922634417661, -0.0138397402751, 1496957383.2942, 2.86756442565, 1, 33.0151388466, 15.2635993958, 20.2319374084, -5.12765979767 586352.785328, 4140682.56487, -28.4396833051, 4.42777776718, -0.277911395528, -0.00922634417661, 0.0, 1496957383.3037, 2.86709149789, 1, 33.0594166243, 15.2880144119, 20.2319374084, -5.12765979767 586352.74203, 4140682.57581, -28.4395632492, 4.42777776718, -0.272693926776, -0.00980088712689, -0.0129758759472, 1496957383.3143, 2.86670569982, 1, 33.103694402, 15.2880144119, 20.2288856506, -5.44680833817 586352.698778, 4140682.58674, -28.4394396422, 4.42777776718, -0.336309251802, -0.00980088712689, 0.0, 1496957383.3239, 2.86625512598, 1, 33.1479721797, 15.2513923645, 20.2288856506, -5.44680833817 586352.655568, 4140682.5977, -28.4393279506, 4.42222213745, -0.367489225944, -0.0104137915925, -0.0138596489847, 1496957383.3345, 2.86573992656, 1, 33.192194401, 15.2513923645, 20.2517738342, -5.7872338295 586352.612416, 4140682.60864, -28.4392216848, 4.42222213745, -0.45457567553, -0.0104137915925, 0.0, 1496957383.3442, 2.86525517336, 1, 33.2364166224, 15.2635993958, 20.2517738342, -5.7872338295 586352.569295, 4140682.6196, -28.4392349161, 4.41666650772, -0.387582591416, -0.0110650728942, -0.0147459922688, 1496957383.3537, 2.86477657442, 1, 33.2805832875, 15.2635993958, 20.2594032288, -6.14893627167 586352.526164, 4140682.63055, -28.4392538518, 4.41666650772, -0.189164611494, -0.0110650728942, 0.0, 1496957383.3644, 2.86424749704, 1, 33.3247499526, 15.3124284744, 20.2594032288, -6.14893627167 586352.483027, 4140682.64149, -28.4393816488, 4.41388893127, -0.0223725331069, -0.0117930653775, -0.0164932216153, 1496957383.3740, 2.86370116354, 1, 33.3688888419, 15.3124284744, 20.222782135, -6.55319166183 586352.43992, 4140682.65241, -28.4396497123, 4.41388893127, -0.0523494995336, -0.0117930653775, 0.0, 1496957383.3835, 2.86315191034, 1, 33.4130277312, 15.226978302, 20.222782135, -6.55319166183 586352.396775, 4140682.66327, -28.4399080463, 4.41111087799, -0.0182544587111, -0.0125211584329, -0.0165058887766, 1496957383.3940, 2.86254471251, 1, 33.45713884, 15.226978302, 20.1770038605, -6.95744657516 586352.353651, 4140682.67408, -28.4401957216, 4.41111087799, -0.102541623192, -0.0125211584329, 0.0, 1496957383.4048, 2.86192827073, 1, 33.5012499487, 15.3368425369, 20.1770038605, -6.95744657516 586352.310587, 4140682.68484, -28.4403683459, 4.40277767181, -0.354428884321, -0.0133260197869, -0.0182807630551, 1496957383.4143, 2.86123209952, 1, 33.5452777255, 15.3368425369, 20.2212562561, -7.40425539017 586352.267569, 4140682.69554, -28.4404363735, 4.40277767181, -0.590445887121, -0.0133260197869, 0.0, 1496957383.4238, 2.86052023967, 1, 33.5893055022, 15.3124284744, 20.2212562561, -7.40425539017 586352.224601, 4140682.70627, -28.4406512361, 4.40000009537, -0.490011452396, -0.0141693571342, -0.0191667574775, 1496957383.4343, 2.85980445165, 1, 33.6333055031, 15.3124284744, 20.2166786194, -7.87234020233 586352.181638, 4140682.71692, -28.4407182653, 4.40000009537, -0.481734955336, -0.0141693571342, 0.0, 1496957383.4439, 2.85905817038, 1, 33.6773055041, 15.2391853333, 20.2166786194, -7.87234020233 586352.138738, 4140682.7277, -28.4409839241, 4.39444446564, -0.305091338626, -0.015012858815, -0.0191947284209, 1496957383.4545, 2.85834784186, 1, 33.7212499487, 15.2391853333, 20.2517738342, -8.34042549133 586352.095861, 4140682.73839, -28.4410311775, 4.39444446564, -0.378228522508, -0.015012858815, 0.0, 1496957383.4641, 2.85760571669, 1, 33.7651943934, 15.2147703171, 20.2517738342, -8.34042549133 586352.053067, 4140682.74915, -28.4413388502, 4.38611125946, -0.426296982616, -0.0159332399159, -0.0209839889252, 1496957383.4746, 2.85687025991, 1, 33.809055506, 15.2147703171, 20.3143367767, -8.85106372833 586352.010306, 4140682.75999, -28.441445414, 4.38611125946, -0.345612579239, -0.0159332399159, 0.0, 1496957383.4842, 2.85613467942, 1, 33.8529166186, 15.3124284744, 20.3143367767, -8.85106372833 586351.967605, 4140682.77085, -28.4417388784, 4.38055562973, -0.361501147877, -0.0168922029315, -0.0218913557239, 1496957383.4938, 2.85536728601, 1, 33.8967221749, 15.3124284744, 20.4196224213, -9.38297843933 586351.924952, 4140682.7818, -28.442185889, 4.38055562973, -0.239167900286, -0.0168922029315, 0.0, 1496957383.5044, 2.85459704952, 1, 33.9405277312, 15.2147703171, 20.4196224213, -9.38297843933 586351.882263, 4140682.79284, -28.4425142044, 4.375, -0.0385158797629, -0.0178897933325, -0.0228020663092, 1496957383.5139, 2.85386253711, 1, 33.9842777312, 15.2147703171, 20.3631649017, -9.936170578 586351.839701, 4140682.80391, -28.4430775968, 4.375, -0.278214355003, -0.0178897933325, 0.0, 1496957383.5245, 2.85308514984, 1, 34.0280277312, 15.2635993958, 20.3631649017, -9.936170578 586351.797159, 4140682.81512, -28.4433594961, 4.36666679382, -0.25370926752, -0.0188876705674, -0.0228521497509, 1496957383.5340, 2.8522903827, 1, 34.0716943991, 15.2635993958, 20.3158626556, -10.489361763 586351.754678, 4140682.82635, -28.4436091082, 4.36666679382, -0.34547600785, -0.0188876705674, 0.0, 1496957383.5445, 2.85162237493, 1, 34.1153610671, 15.226978302, 20.3158626556, -10.489361763 586351.712318, 4140682.83765, -28.4439006252, 4.36111116409, -0.593251309094, -0.019962650181, -0.0246492137722, 1496957383.5541, 2.85083014496, 1, 34.1589721787, 15.226978302, 20.3402767181, -11.0851068497 586351.66998, 4140682.84902, -28.4440020015, 4.36111116409, -0.456411616191, -0.019962650181, 0.0, 1496957383.5635, 2.85001642192, 1, 34.2025832903, 15.3124284744, 20.3402767181, -11.0851068497 586351.627725, 4140682.86032, -28.4441847568, 4.35555553436, -0.637558375051, -0.0209995898498, -0.0238072884283, 1496957383.5740, 2.84923940985, 1, 34.2461388457, 15.3124284744, 20.2853431702, -11.6595745087 586351.585505, 4140682.87174, -28.4442210523, 4.35555553436, -0.444483543685, -0.0209995898498, 0.0, 1496957383.5847, 2.84835002877, 1, 34.289694401, 15.1537342072, 20.2853431702, -11.6595745087 586351.543357, 4140682.88317, -28.4441827498, 4.34722232819, -0.457593664913, -0.0220368951451, -0.0238613352855, 1496957383.5942, 2.84747597469, 1, 34.3331666243, 15.1537342072, 20.3616390228, -12.2340421677 586351.501229, 4140682.89461, -28.4440665403, 4.34722232819, -0.406956036262, -0.0220368951451, 0.0, 1496957383.6037, 2.84662602688, 1, 34.3766388476, 15.2391853333, 20.3616390228, -12.2340421677 586351.45915, 4140682.90606, -28.4438189622, 4.33888912201, -0.393680686514, -0.0230745859893, -0.0239160489022, 1496957383.6142, 2.8456701965, 1, 34.4200277388, 15.2391853333, 20.3219661713, -12.8085107803 586351.417123, 4140682.91752, -28.4435620951, 4.33888912201, -0.454315304499, -0.0230745859893, 0.0, 1496957383.6237, 2.84474589817, 1, 34.46341663, 15.275806427, 20.3219661713, -12.8085107803 586351.375158, 4140682.92896, -28.4431327684, 4.32777786255, -0.519922841979, -0.0241511327521, -0.0248752777277, 1496957383.6343, 2.84370068688, 1, 34.5066944087, 15.275806427, 20.3326473236, -13.4042549133 586351.33323, 4140682.94046, -28.4427657137, 4.32777786255, -0.434368882504, -0.0241511327521, 0.0, 1496957383.6439, 2.84267297592, 1, 34.5499721873, 15.226978302, 20.3326473236, -13.4042549133 586351.291387, 4140682.95193, -28.4422407905, 4.31944465637, -0.556069809052, -0.0252281339835, -0.0249337893437, 1496957383.6544, 2.84161599232, 1, 34.5931666338, 15.226978302, 20.3234920502, -14.0 586351.249571, 4140682.96339, -28.4416659875, 4.31944465637, -0.608225480916, -0.0252281339835, 0.0, 1496957383.6641, 2.84058898144, 1, 34.6363610804, 15.1903562546, 20.3234920502, -14.0 586351.207838, 4140682.97487, -28.4410460405, 4.30555534363, -0.6052738329, -0.0263056083538, -0.0250252124132, 1496957383.6736, 2.83954910593, 1, 34.6794166338, 15.1903562546, 20.2914466858, -14.5957450867 586351.166182, 4140682.98633, -28.4403584916, 4.30555534363, -0.674474155576, -0.0263056083538, 0.0, 1496957383.6842, 2.83842204194, 1, 34.7224721873, 15.3368425369, 20.2914466858, -14.5957450867 586351.124557, 4140682.99782, -28.4396478189, 4.29722213745, -0.534003598587, -0.0274220825593, -0.0259813007042, 1496957383.6938, 2.83729697394, 1, 34.7654444087, 15.3368425369, 20.3341732025, -15.2127656937 586351.082982, 4140683.00931, -28.4389359215, 4.29722213745, -0.444839774537, -0.0274220825593, 0.0, 1496957383.7043, 2.83610885649, 1, 34.80841663, 15.226978302, 20.3341732025, -15.2127656937 586351.041456, 4140683.02085, -28.4381879577, 4.28888893127, -0.430303894286, -0.0285776387778, -0.0269430203724, 1496957383.7138, 2.83492383134, 1, 34.8513055193, 15.226978302, 20.2975502014, -15.8510637283 586350.999988, 4140683.03245, -28.4374364903, 4.28888893127, -0.364996562578, -0.0285776387778, 0.0, 1496957383.7243, 2.83367331304, 1, 34.8941944087, 15.3612575531, 20.2975502014, -15.8510637283 586350.95858, 4140683.04409, -28.4366621785, 4.2805557251, -0.378740889871, -0.0296952603787, -0.0261092641405, 1496957383.7339, 2.83244592171, 1, 34.9369999659, 15.3612575531, 20.2822914124, -16.4680843353 586350.917228, 4140683.05579, -28.4359806329, 4.2805557251, -0.366999089801, -0.0296952603787, 0.0, 1496957383.7443, 2.83120644294, 1, 34.9798055232, 15.3612575531, 20.2822914124, -16.4680843353 586350.875912, 4140683.06756, -28.4352238188, 4.27222204208, -0.29345353713, -0.0308134822984, -0.0261742462985, 1496957383.7539, 2.82994073716, 1, 35.0225277436, 15.275806427, 20.2471961975, -17.085105896 586350.83467, 4140683.0794, -28.4345737593, 4.27222204208, -0.315111622259, -0.0308134822984, 0.0, 1496957383.7643, 2.82867770527, 1, 35.065249964, 15.3246355057, 20.2471961975, -17.085105896 586350.793454, 4140683.09128, -28.43399568, 4.26666688919, -0.248848908857, -0.0320095103164, -0.0280319052096, 1496957383.7738, 2.82734736548, 1, 35.1079166329, 15.3246355057, 20.184633255, -17.7446804047 586350.752274, 4140683.10319, -28.4334125146, 4.26666688919, -0.267508440815, -0.0320095103164, 0.0, 1496957383.7849, 2.82596071411, 1, 35.1505833018, 15.3734645844, 20.184633255, -17.7446804047 586350.711154, 4140683.11512, -28.4328504661, 4.26111125946, -0.326962351713, -0.0332448942371, -0.0289920597106, 1496957383.7945, 2.82456783458, 1, 35.1931944144, 15.3734645844, 20.2121009827, -18.4255313873 586350.670099, 4140683.12705, -28.432260274, 4.26111125946, -0.450236144241, -0.0332448942371, 0.0, 1496957383.8041, 2.82313143749, 1, 35.235805527, 15.2025632858, 20.2121009827, -18.4255313873 586350.629118, 4140683.13902, -28.4315649699, 4.25, -0.567339131526, -0.0345197401803, -0.0299963751343, 1496957383.8136, 2.8216858437, 1, 35.278305527, 15.2025632858, 20.205997467, -19.127658844 586350.588194, 4140683.15102, -28.4308314528, 4.25, -0.570873119409, -0.0345197401803, 0.0, 1496957383.8241, 2.82022129533, 1, 35.320805527, 15.1781492233, 20.205997467, -19.127658844 586350.547322, 4140683.16296, -28.4301066296, 4.24444437027, -0.603990381154, -0.0358341661981, -0.0309681527921, 1496957383.8336, 2.81872721411, 1, 35.3632499707, 15.1781492233, 20.2243080139, -19.851064682 586350.506495, 4140683.17497, -28.4294172293, 4.24444437027, -0.472591967638, -0.0358341661981, 0.0, 1496957383.8442, 2.81722354975, 1, 35.4056944144, 15.2391853333, 20.2243080139, -19.851064682 586350.465683, 4140683.18695, -28.4285465749, 4.24166679382, -0.328615789641, -0.0371882889094, -0.0319243065794, 1496957383.8537, 2.81566612776, 1, 35.4481110823, 15.2391853333, 20.2609291077, -20.5957450867 586350.42496, 4140683.19893, -28.4277171679, 4.24166679382, -0.530543880623, -0.0371882889094, 0.0, 1496957383.8643, 2.81409527834, 1, 35.4905277503, 15.3002214432, 20.2609291077, -20.5957450867 586350.384306, 4140683.21088, -28.4268699549, 4.23611116409, -0.631577894166, -0.0386209826041, -0.0338209654839, 1496957383.8738, 2.81246578327, 1, 35.5328888619, 15.3002214432, 20.3616390228, -21.3829784393 586350.343706, 4140683.22287, -28.4260056792, 4.23611116409, -0.628330140132, -0.0386209826041, 0.0, 1496957383.8844, 2.81085689243, 1, 35.5752499735, 15.3612575531, 20.3616390228, -21.3829784393 586350.303196, 4140683.23484, -28.4251828287, 4.22222232819, -0.684904904363, -0.040093727106, -0.0348807899601, 1496957383.8939, 2.80920593153, 1, 35.6174721968, 15.3612575531, 20.375371933, -22.1914901733 586350.262751, 4140683.24685, -28.4242600761, 4.22222232819, -0.661059550578, -0.040093727106, 0.0, 1496957383.9046, 2.8075868518, 1, 35.6596944201, 15.2635993958, 20.375371933, -22.1914901733 586350.222404, 4140683.25889, -28.4234893918, 4.21388912201, -0.665116121726, -0.0416454893923, -0.0368249434512, 1496957383.9141, 2.80591506766, 1, 35.7018333113, 15.2635993958, 20.3555355072, -23.042552948 586350.18211, 4140683.27096, -28.4225392211, 4.21388912201, -0.618826671034, -0.0416454893923, 0.0, 1496957383.9235, 2.80422678898, 1, 35.7439722025, 15.2391853333, 20.3555355072, -23.042552948 586350.141925, 4140683.28309, -28.4218040658, 4.20833349228, -0.672975948996, -0.04319886326, -0.0369118528881, 1496957383.9340, 2.80251381923, 1, 35.7860555375, 15.2391853333, 20.3967342377, -23.89361763 586350.101821, 4140683.29531, -28.4210636215, 4.20833349228, -0.580231998275, -0.04319886326, 0.0, 1496957383.9445, 2.80072629027, 1, 35.8281388724, 15.4345006943, 20.3967342377, -23.89361763 586350.061825, 4140683.30763, -28.420349136, 4.19722223282, -0.594146820808, -0.0448317000965, -0.0389027968001, 1496957383.9541, 2.79893042512, 1, 35.8701110947, 15.4345006943, 20.3204402924, -24.7872333527 586350.021909, 4140683.32001, -28.4198082089, 4.19722223282, -0.553293714754, -0.0448317000965, 0.0, 1496957383.9636, 2.79712059252, 1, 35.912083317, 15.2147703171, 20.3204402924, -24.7872333527 586349.982106, 4140683.33247, -28.4192645792, 4.18611097336, -0.583909350768, -0.0464664532097, -0.0390518341147, 1496957383.9742, 2.795262468, 1, 35.9539444268, 15.2147703171, 20.1815814972, -25.6808509827 586349.942338, 4140683.34502, -28.4188335054, 4.18611097336, -0.471552413498, -0.0464664532097, 0.0, 1496957383.9837, 2.79338827688, 1, 35.9958055365, 15.2635993958, 20.1815814972, -25.6808509827 586349.902659, 4140683.35763, -28.4183774879, 4.18333339691, -0.474231510476, -0.0481421857204, -0.0400573502454, 1496957383.9943, 2.79151959272, 1, 36.0376388705, 15.2635993958, 20.1632709503, -26.5957450867 586349.902659, 4140683.35763, -28.4183774879, 4.18333339691, -0.474231510476, -0.0481421857204, 0.0, 1496957384.0037, 2.79151959272, 1, 36.0794722044, 15.2147703171, 20.1632709503, -26.5957450867 586349.823587, 4140683.38294, -28.4174927427, 4.18055534363, -0.665156086544, -0.049898171312, -0.0420036441864, 1496957384.0142, 2.78756124063, 1, 36.1212777579, 15.2147703171, 20.1022357941, -27.5531921387 586349.784167, 4140683.39562, -28.4171242705, 4.18055534363, -0.569346539325, -0.049898171312, 0.0, 1496957384.0237, 2.78551178843, 1, 36.1630833113, 15.2635993958, 20.1022357941, -27.5531921387 586349.744782, 4140683.40833, -28.4167090403, 4.17777776718, -0.523897708284, -0.0516566102405, -0.0420902936091, 1496957384.0343, 2.78346375524, 1, 36.204861089, 15.2635993958, 19.8535137177, -28.5106391907 586349.705467, 4140683.42106, -28.4163831817, 4.17777776718, -0.515350803516, -0.0516566102405, 0.0, 1496957384.0439, 2.78134869514, 1, 36.2466388667, 15.2513923645, 19.8535137177, -28.5106391907 586349.666191, 4140683.43374, -28.416099376, 4.17222213745, -0.509061096213, -0.0534175890633, -0.0422072163182, 1496957384.0545, 2.77914332978, 1, 36.288361088, 15.2513923645, 19.6383609772, -29.4680843353 586349.626981, 4140683.44647, -28.4158667978, 4.17222213745, -0.515485654452, -0.0534175890633, 0.0, 1496957384.0641, 2.77691428437, 1, 36.3300833094, 15.1903562546, 19.6383609772, -29.4680843353 586349.587831, 4140683.45924, -28.41562247, 4.16666650772, -0.425005209328, -0.0551812053707, -0.0423267929912, 1496957384.0737, 2.77465456303, 1, 36.3717499745, 15.1903562546, 19.2309455872, -30.4255313873 586349.549013, 4140683.47356, -28.4152854355, 4.16666650772, -0.446715834242, -0.0551812053707, 0.0, 1496957384.0843, 2.77596693168, 1, 36.4134166396, 15.2635993958, 19.2309455872, -30.4255313873 586349.510205, 4140683.48766, -28.4150206428, 4.15833330154, -0.482010722281, -0.0569082646995, -0.0415324891865, 1496957384.0939, 2.77360016527, 1, 36.4549999726, 15.2635993958, 18.5381851196, -31.3617019653 586349.471484, 4140683.50178, -28.4147729604, 4.15833330154, -0.566545304544, -0.0569082646995, 0.0, 1496957384.1043, 2.77120682634, 1, 36.4965833056, 15.2635993958, 18.5381851196, -31.3617019653 586349.432828, 4140683.51598, -28.4145286772, 4.14722204208, -0.509139544672, -0.0585986722202, -0.0407599955718, 1496957384.1139, 2.76876982837, 1, 36.538055526, 15.2635993958, 17.7126731873, -32.2765960693 586349.39426, 4140683.53022, -28.4142826665, 4.14722204208, -0.510822134941, -0.0585986722202, 0.0, 1496957384.1244, 2.7663167801, 1, 36.5795277464, 15.3124284744, 17.7126731873, -32.2765960693 586349.355752, 4140683.54452, -28.4140504384, 4.13611125946, -0.570199314343, -0.0602523227805, -0.0399808045914, 1496957384.1340, 2.76377400006, 1, 36.620888859, 15.3124284744, 16.7132072449, -33.170211792 586349.317338, 4140683.5589, -28.4138239492, 4.13611125946, -0.490513334239, -0.0602523227805, 0.0, 1496957384.1445, 2.76122703689, 1, 36.6622499716, 15.3734645844, 16.7132072449, -33.170211792 586349.279011, 4140683.57334, -28.4135791361, 4.12777757645, -0.542595766682, -0.061829655336, -0.0382126344337, 1496957384.1540, 2.75868224804, 1, 36.7035277474, 15.3734645844, 15.6527042389, -34.0212783813 586349.240766, 4140683.58783, -28.4133404735, 4.12777757645, -0.571070535185, -0.061829655336, 0.0, 1496957384.1644, 2.75609922452, 1, 36.7448055232, 15.1781492233, 15.6527042389, -34.0212783813 586349.202617, 4140683.60236, -28.4130599964, 4.11666679382, -0.662529945544, -0.0633303622976, -0.0364544189925, 1496957384.1739, 2.75337288006, 1, 36.7859721911, 15.1781492233, 14.6959638596, -34.829788208 586349.164541, 4140683.61695, -28.4127325807, 4.11666679382, -0.605947288951, -0.0633303622976, 0.0, 1496957384.1844, 2.75069845741, 1, 36.827138859, 15.2513923645, 14.6959638596, -34.829788208 586349.126581, 4140683.63164, -28.4123830833, 4.10833311081, -0.619392667008, -0.0648333165061, -0.0365830658807, 1496957384.1940, 2.74800666379, 1, 36.8682221901, 15.2513923645, 13.7941560745, -35.6382980347 586349.08871, 4140683.64639, -28.4120370327, 4.10833311081, -0.593988561168, -0.0648333165061, 0.0, 1496957384.2045, 2.74528386083, 1, 36.9093055212, 15.2513923645, 13.7941560745, -35.6382980347 586349.050901, 4140683.66117, -28.4116900777, 4.10277795792, -0.553834035342, -0.0662592926681, -0.0347563571957, 1496957384.2139, 2.74249074007, 1, 36.9503333008, 15.2635993958, 13.7529563904, -36.4042549133 586349.013139, 4140683.67604, -28.4113154914, 4.10277795792, -0.369492451977, -0.0662592926681, 0.0, 1496957384.2245, 2.73967038157, 1, 36.9913610804, 15.2635993958, 13.7529563904, -36.4042549133 586348.975463, 4140683.69097, -28.4109920319, 4.09722232819, -0.360448666732, -0.0676476908317, -0.033886327185, 1496957384.2341, 2.73684111853, 1, 37.0323333037, 15.3002214432, 13.7315940857, -37.1489372253 586348.937873, 4140683.70599, -28.4107245412, 4.09722232819, -0.4259724859, -0.0676476908317, 0.0, 1496957384.2436, 2.73406539067, 1, 37.073305527, 15.3002214432, 13.7315940857, -37.1489372253 586348.900335, 4140683.72107, -28.410468081, 4.09166669846, -0.354616373389, -0.068998375435, -0.0330106214107, 1496957384.2541, 2.73115045881, 1, 37.114222194, 15.2635993958, 13.6614027023, -37.872341156 586348.862869, 4140683.7362, -28.4103395706, 4.09166669846, -0.338242086978, -0.068998375435, 0.0, 1496957384.2635, 2.72828124429, 1, 37.1551388609, 15.2635993958, 13.6614027023, -37.872341156 586348.825453, 4140683.75141, -28.4102300229, 4.08611106873, -0.281356379368, -0.0703112157588, -0.0321293352475, 1496957384.2741, 2.72533860237, 1, 37.1959999716, 15.2635993958, 13.667506218, -38.5744667053 586348.788099, 4140683.76671, -28.410191441, 4.08611106873, -0.191927627265, -0.0703112157588, 0.0, 1496957384.2841, 2.72236808452, 1, 37.2368610823, 15.2635993958, 13.667506218, -38.5744667053 586348.750836, 4140683.7821, -28.4101301329, 4.08333349228, -0.278327373938, -0.0715860864544, -0.0312213219427, 1496957384.2936, 2.71934108973, 1, 37.2776944172, 15.4100866318, 13.6629285812, -39.255317688 586348.713661, 4140683.79757, -28.4100472406, 4.08333349228, -0.419788761503, -0.0715860864544, 0.0, 1496957384.3042, 2.71632928325, 1, 37.3185277522, 15.4100866318, 13.6629285812, -39.255317688 586348.676581, 4140683.81312, -28.4099159297, 4.080555439, -0.530727219553, -0.0728627742888, -0.0312871091561, 1496957384.3138, 2.71332183906, 1, 37.3593333066, 15.1537342072, 13.6644544601, -39.9361686707 586348.63958, 4140683.82877, -28.4097565319, 4.080555439, -0.456316643446, -0.0728627742888, 0.0, 1496957384.3243, 2.71023513437, 1, 37.4001388609, 15.1537342072, 13.6644544601, -39.9361686707 586348.602647, 4140683.84447, -28.40956493, 4.07777786255, -0.410856843636, -0.0740613510946, -0.0293928910843, 1496957384.3338, 2.70719954677, 1, 37.4409166396, 15.1415271759, 13.7132825851, -40.5744667053 586348.565781, 4140683.86025, -28.4093909394, 4.07777786255, -0.341348272268, -0.0740613510946, 0.0, 1496957384.3443, 2.70404391212, 1, 37.4816944182, 15.1415271759, 13.7132825851, -40.5744667053 586348.52899, 4140683.87612, -28.4092322346, 4.07222223282, -0.309980545861, -0.0753016248823, -0.0304569278596, 1496957384.3539, 2.70089132076, 1, 37.5224166405, 15.3124284744, 13.6888685226, -41.2340431213 586348.492278, 4140683.89205, -28.4090728285, 4.07222223282, -0.369648130833, -0.0753016248823, 0.0, 1496957384.3645, 2.6977561688, 1, 37.5631388628, 15.3124284744, 13.6888685226, -41.2340431213 586348.455632, 4140683.90807, -28.4089525202, 4.06666660309, -0.303248107943, -0.0764234171541, -0.0275850562932, 1496957384.3740, 2.69458066629, 1, 37.6038055289, 15.2391853333, 13.682765007, -41.829788208 586348.419068, 4140683.92413, -28.4088626066, 4.06666660309, -0.396637311297, -0.0764234171541, 0.0, 1496957384.3845, 2.6913684908, 1, 37.6444721949, 15.2391853333, 13.682765007, -41.829788208 586348.382553, 4140683.94026, -28.4088287717, 4.06388902664, -0.356847766845, -0.0775065562956, -0.0266527735975, 1496957384.3941, 2.6881633175, 1, 37.6851110852, 15.2635993958, 13.667506218, -42.4042549133 586348.346135, 4140683.95643, -28.408782064, 4.06388902664, -0.451715117171, -0.0775065562956, 0.0, 1496957384.4045, 2.68492169677, 1, 37.7257499754, 15.2635993958, 13.667506218, -42.4042549133 586348.309809, 4140683.97267, -28.4088134272, 4.05555534363, -0.482053256345, -0.0785509155441, -0.025751325281, 1496957384.4145, 2.68166222711, 1, 37.7663055289, 15.2147703171, 13.6476688385, -42.957447052 586348.273573, 4140683.98899, -28.408807938, 4.05555534363, -0.505485451805, -0.0785509155441, 0.0, 1496957384.4239, 2.67839815853, 1, 37.8068610823, 15.2147703171, 13.6476688385, -42.957447052 586348.237434, 4140684.00539, -28.4088815274, 4.04722213745, -0.496506824284, -0.0794758746014, -0.0228541707348, 1496957384.4345, 2.67511544994, 1, 37.8473333037, 15.2880144119, 13.6415653229, -43.4468078613 586348.201391, 4140684.0219, -28.4089293508, 4.04722213745, -0.454277150074, -0.0794758746014, 0.0, 1496957384.4441, 2.67184328263, 1, 37.8878055251, 15.2880144119, 13.6415653229, -43.4468078613 586348.165397, 4140684.03847, -28.4088608418, 4.04166650772, -0.406601502295, -0.0804018855355, -0.0229116116429, 1496957384.4535, 2.66853165806, 1, 37.9282221901, 15.2391853333, 13.6949720383, -43.9361686707 586348.129531, 4140684.05514, -28.4087862875, 4.04166650772, -0.445876790103, -0.0804018855355, 0.0, 1496957384.4642, 2.66519222769, 1, 37.9686388552, 15.2391853333, 13.6949720383, -43.9361686707 586348.093773, 4140684.07186, -28.4085927028, 4.03888893127, -0.531576325661, -0.0812886355915, -0.021955296891, 1496957384.4737, 2.66186917216, 1, 38.0090277445, 15.2391853333, 13.6766614914, -44.4042549133 586348.058119, 4140684.08866, -28.4084097669, 4.03888893127, -0.597791877933, -0.0812886355915, 0.0, 1496957384.4842, 2.65848961547, 1, 38.0494166338, 15.2391853333, 13.6766614914, -44.4042549133 586348.022611, 4140684.10563, -28.4082008563, 4.03333330154, -0.628376864234, -0.0821359956949, -0.0210089283493, 1496957384.4937, 2.65511028999, 1, 38.0897499669, 15.2635993958, 13.7041273117, -44.8510627747 586347.987185, 4140684.12268, -28.4078200944, 4.03333330154, -0.512731048182, -0.0821359956949, 0.0, 1496957384.5042, 2.65175377695, 1, 38.1300832999, 15.2635993958, 13.7041273117, -44.8510627747 586347.916739, 4140684.15712, -28.4071140308, 4.02500009537, -0.596084312244, -0.0830246851404, -0.0220792403593, 1496957384.5137, 2.64492266481, 1, 38.1703333008, 15.3002214432, 13.6537723541, -45.3191490173 586347.916739, 4140684.15712, -28.4071140308, 4.02500009537, -0.596084312244, -0.0830246851404, 0.0, 1496957384.5242, 2.64492266481, 1, 38.2105833018, 15.3002214432, 13.6537723541, -45.3191490173 586347.881697, 4140684.17454, -28.4065258717, 4.01944446564, -0.483225424599, -0.0839548455537, -0.0231415167246, 1496957384.5338, 2.6414832089, 1, 38.2507777464, 15.1903562546, 13.6690320969, -45.8085098267 586347.846825, 4140684.19205, -28.4059240697, 4.01944446564, -0.676606343582, -0.0839548455537, 0.0, 1496957384.5442, 2.63808285866, 1, 38.2909721911, 15.1903562546, 13.6690320969, -45.8085098267 586347.812103, 4140684.2097, -28.405060282, 4.00833320618, -0.797825371536, -0.0849266427844, -0.0242444223265, 1496957384.5537, 2.63465632912, 1, 38.3310555232, 15.2391853333, 13.6781873703, -46.3191490173 586347.777521, 4140684.22743, -28.4041529745, 4.00833320618, -0.782843737648, -0.0849266427844, 0.0, 1496957384.5642, 2.63121789386, 1, 38.3711388552, 15.2391853333, 13.6781873703, -46.3191490173 586347.743088, 4140684.24529, -28.4031966943, 3.99444437027, -0.768835261824, -0.0858591013399, -0.0233438863836, 1496957384.5738, 2.62780854454, 1, 38.4110832989, 15.275806427, 13.699549675, -46.8085098267 586347.708775, 4140684.26326, -28.4021014068, 3.99444437027, -0.674832231016, -0.0858591013399, 0.0, 1496957384.5843, 2.62439387194, 1, 38.4510277426, 15.275806427, 13.699549675, -46.8085098267 586347.674554, 4140684.28131, -28.4009695267, 3.98055553436, -0.463644079579, -0.0867927055211, -0.0234541177274, 1496957384.5939, 2.62091464294, 1, 38.490833298, 15.4955368042, 13.6583509445, -47.297870636 586347.640438, 4140684.29946, -28.3997605806, 3.98055553436, -0.464705727096, -0.0867927055211, 0.0, 1496957384.6044, 2.61746859416, 1, 38.5306388533, 15.4955368042, 13.6583509445, -47.297870636 586347.606396, 4140684.31769, -28.398427478, 3.96944451332, -0.362312838539, -0.0877274765072, -0.0235491636905, 1496957384.6140, 2.61398048899, 1, 38.5703332984, 15.678645134, 13.6720838547, -47.78723526 586347.572517, 4140684.336, -28.3971256288, 3.96944451332, -0.608021065996, -0.0877274765072, 0.0, 1496957384.6245, 2.61052023683, 1, 38.6100277436, 15.678645134, 13.6720838547, -47.78723526 586347.538746, 4140684.3544, -28.3957129493, 3.955555439, -0.595746505623, -0.0886226926736, -0.0226318700426, 1496957384.6341, 2.60702290882, 1, 38.649583298, 15.8129243851, 13.6507205963, -48.255317688 586347.505107, 4140684.37286, -28.3941837354, 3.955555439, -0.680680110408, -0.0886226926736, 0.0, 1496957384.6436, 2.60354017391, 1, 38.6891388524, 15.8129243851, 13.6507205963, -48.255317688 586347.471617, 4140684.39144, -28.392659178, 3.94166660309, -0.722087135481, -0.0895597727068, -0.0237737010144, 1496957384.6542, 2.60002150233, 1, 38.7285555184, 16.0448608398, 13.699549675, -48.744682312 586347.438258, 4140684.41009, -28.3909826893, 3.94166660309, -0.728439766717, -0.0895597727068, 0.0, 1496957384.6636, 2.59648548126, 1, 38.7679721844, 16.0448608398, 13.699549675, -48.744682312 586347.405034, 4140684.42884, -28.3894070433, 3.92499995232, -0.722029328613, -0.0904980463892, -0.0239050622637, 1496957384.6741, 2.59292963974, 1, 38.8072221839, 16.1425189972, 13.6629285812, -49.2340431213 586347.371927, 4140684.44769, -28.387646988, 3.92499995232, -0.603544473835, -0.0904980463892, 0.0, 1496957384.6845, 2.58936867534, 1, 38.8464721835, 16.1425189972, 13.6629285812, -49.2340431213 586347.338968, 4140684.46666, -28.3859593282, 3.90833330154, -0.611135355045, -0.0914784137923, -0.0250840275748, 1496957384.6940, 2.58579502619, 1, 38.8855555165, 16.3012123108, 13.6797132492, -49.744682312 586347.306126, 4140684.48572, -28.3842150569, 3.90833330154, -0.561435187291, -0.0914784137923, 0.0, 1496957384.7046, 2.58219871696, 1, 38.9246388495, 16.3012123108, 13.6797132492, -49.744682312 586347.273404, 4140684.50492, -28.3824534183, 3.89444446564, -0.415568226412, -0.0925010501762, -0.0262588513686, 1496957384.7141, 2.578603271, 1, 38.9635832942, 16.6308078766, 13.6583509445, -50.2765960693 586347.240837, 4140684.52422, -28.3807584345, 3.89444446564, -0.527976165731, -0.0925010501762, 0.0, 1496957384.7236, 2.57502116679, 1, 39.0025277388, 16.6308078766, 13.6583509445, -50.2765960693 586347.208377, 4140684.5436, -28.3789212266, 3.88611102104, -0.560586110623, -0.0935251580342, -0.0263530262643, 1496957384.7343, 2.57137659418, 1, 39.041388849, 16.8871593475, 13.682765007, -50.8085098267 586347.176058, 4140684.56306, -28.3771147318, 3.88611102104, -0.61602110699, -0.0935251580342, 0.0, 1496957384.7438, 2.56766801171, 1, 39.0802499592, 16.8871593475, 13.682765007, -50.8085098267 586347.143854, 4140684.58257, -28.3752681594, 3.87777781487, -0.688784308505, -0.0945097068877, -0.0253895117394, 1496957384.7542, 2.56397419765, 1, 39.1190277374, 17.1801319122, 13.6858167648, -51.3191490173 586347.11175, 4140684.60214, -28.3733441457, 3.87777781487, -0.679021751941, -0.0945097068877, 0.0, 1496957384.7638, 2.56023610404, 1, 39.1578055155, 17.1801319122, 13.6858167648, -51.3191490173 586347.07977, 4140684.62177, -28.3714577146, 3.86388897896, -0.628028807312, -0.0955367524335, -0.0265806173876, 1496957384.7745, 2.55646604655, 1, 39.1964444053, 17.7538719177, 13.6980237961, -51.8510627747 586347.047878, 4140684.64146, -28.369506266, 3.86388897896, -0.535667905306, -0.0955367524335, 0.0, 1496957384.7843, 2.55264755325, 1, 39.2350832951, 17.7538719177, 13.6980237961, -51.8510627747 586347.016085, 4140684.66122, -28.3675499726, 3.85555553436, -0.474057750718, -0.0965241557547, -0.0256098845521, 1496957384.7940, 2.54886393459, 1, 39.2736388505, 18.156709671, 13.6217288971, -52.3617019653 586346.984393, 4140684.68104, -28.3655532617, 3.85555553436, -0.474442277374, -0.0965241557547, 0.0, 1496957384.8046, 2.54504006082, 1, 39.3121944058, 18.156709671, 13.6217288971, -52.3617019653 586346.952762, 4140684.70094, -28.3636305472, 3.84444451332, -0.312752822202, -0.0975129823506, -0.0257209225529, 1496957384.8141, 2.54118020021, 1, 39.3506388509, 18.4740982056, 13.6446170807, -52.872341156 586346.921256, 4140684.72093, -28.3617235469, 3.84444451332, -0.340342240775, -0.0975129823506, 0.0, 1496957384.8236, 2.53723038006, 1, 39.3890832961, 18.4740982056, 13.6446170807, -52.872341156 586346.889877, 4140684.74096, -28.3598809997, 3.82500004768, -0.569225325742, -0.0984619554195, -0.0248097531276, 1496957384.8342, 2.53340516659, 1, 39.4273332965, 19.0493621826, 13.6446170807, -53.3617019653 586346.858644, 4140684.76105, -28.358123647, 3.82500004768, -0.70542548252, -0.0984619554195, 0.0, 1496957384.8437, 2.52955055888, 1, 39.465583297, 19.0493621826, 13.6446170807, -53.3617019653 586346.827505, 4140684.7812, -28.3564071609, 3.80833339691, -0.679548086681, -0.099412265664, -0.0249534414509, 1496957384.8543, 2.52567541847, 1, 39.503666631, 19.794002533, 13.699549675, -53.8510627747 586346.796486, 4140684.80152, -28.3547889953, 3.80833339691, -0.363927525809, -0.099412265664, 0.0, 1496957384.8639, 2.52172902486, 1, 39.541749965, 19.794002533, 13.699549675, -53.8510627747 586346.765591, 4140684.82194, -28.3532736395, 3.80555558205, -0.291625405756, -0.10040533897, -0.0260953567624, 1496957384.8745, 2.51788872885, 1, 39.5798055208, 20.5264358521, 13.6385135651, -54.3617019653 586346.734801, 4140684.84244, -28.3517323211, 3.80555558205, -0.322288283738, -0.10040533897, 0.0, 1496957384.8835, 2.51397413257, 1, 39.6178610766, 20.5264358521, 13.6385135651, -54.3617019653 586346.70416, 4140684.86306, -28.350227816, 3.80555558205, -0.42226956768, -0.10131696446, -0.0239551221909, 1496957384.8940, 2.51006224967, 1, 39.6559166324, 21.3931484222, 13.6781873703, -54.829788208 586346.673656, 4140684.88376, -28.3487372287, 3.80555558205, -0.513704298583, -0.10131696446, 0.0, 1496957384.9055, 2.50617023836, 1, 39.6939721882, 21.3931484222, 13.6781873703, -54.829788208 586346.643299, 4140684.90455, -28.3472888451, 3.79999995232, -0.531921357395, -0.102146804928, -0.0218379073291, 1496957384.9139, 2.50228748537, 1, 39.7319721878, 22.066072464, 13.6629285812, -55.255317688 586346.613056, 4140684.92546, -28.3457660656, 3.79999995232, -0.54736946206, -0.102146804928, 0.0, 1496957384.9244, 2.49838926191, 1, 39.7699721873, 22.066072464, 13.6629285812, -55.255317688 586346.582985, 4140684.94648, -28.3443153566, 3.78888893127, -0.524954636432, -0.103019283969, -0.0230273058176, 1496957384.9340, 2.49449478405, 1, 39.8078610766, 22.8351268768, 13.7285423279, -55.702129364 586346.553045, 4140684.96756, -28.3427936789, 3.78888893127, -0.608917081977, -0.103019283969, 0.0, 1496957384.9446, 2.49058988088, 1, 39.8457499659, 22.8351268768, 13.7285423279, -55.702129364 586346.523209, 4140684.98877, -28.3413160993, 3.78611111641, -0.393044035521, -0.10389292996, -0.0230750224745, 1496957384.9541, 2.48666559753, 1, 39.8836110771, 23.2867927551, 13.6690320969, -56.1489372253 586346.493481, 4140685.01003, -28.3397816345, 3.78611111641, -0.401357254177, -0.10389292996, 0.0, 1496957384.9636, 2.48277184717, 1, 39.9214721882, 23.2867927551, 13.6690320969, -56.1489372253 586346.463874, 4140685.03134, -28.3383008894, 3.78055548668, -0.474620846055, -0.104726072618, -0.0220375725572, 1496957384.9741, 2.47879976394, 1, 39.9592777431, 23.4821090698, 13.6598768234, -56.5744667053 586346.43436, 4140685.05273, -28.3367797201, 3.78055548668, -0.449598016693, -0.104726072618, 0.0, 1496957384.9835, 2.47483027658, 1, 39.997083298, 23.4821090698, 13.6598768234, -56.5744667053 586346.404948, 4140685.07415, -28.3352788985, 3.7722222805, -0.474134598237, -0.105518567377, -0.0210086972619, 1496957384.9941, 2.47077593562, 1, 40.0348055208, 23.5187301636, 13.6247806549, -56.9787216187 586346.404948, 4140685.07415, -28.3352788985, 3.7722222805, -0.474134598237, -0.105518567377, 0.0, 1496957385.0035, 2.47077593562, 1, 40.0725277436, 23.5187301636, 13.6247806549, -56.9787216187 586346.346436, 4140685.11717, -28.3322832715, 3.76666665077, -0.447344114178, -0.106312058141, -0.0210661265551, 1496957385.0140, 2.46271657555, 1, 40.1101944101, 23.5187301636, 13.6598768234, -57.3829803467 586346.317296, 4140685.13877, -28.3307721298, 3.76666665077, -0.354843410936, -0.106312058141, 0.0, 1496957385.0245, 2.4586293802, 1, 40.1478610766, 23.5187301636, 13.6598768234, -57.3829803467 586346.288249, 4140685.16044, -28.3293206105, 3.76666665077, -0.261712005936, -0.107232070285, -0.0244251012627, 1496957385.0340, 2.45449834151, 1, 40.1855277431, 23.6041812897, 13.6919202805, -57.8510627747 586346.259268, 4140685.18219, -28.3278674027, 3.76666665077, -0.16507351499, -0.107232070285, 0.0, 1496957385.0445, 2.45036096229, 1, 40.2231944096, 23.6041812897, 13.6919202805, -57.8510627747 586346.230369, 4140685.20399, -28.3264137302, 3.76388883591, -0.162786221922, -0.108111527062, -0.0233656416469, 1496957385.0541, 2.44623315349, 1, 40.260833298, 23.4943161011, 13.640039444, -58.297870636 586346.201586, 4140685.22587, -28.3250049222, 3.76388883591, -0.224147462173, -0.108111527062, 0.0, 1496957385.0646, 2.44199748878, 1, 40.2984721863, 23.4943161011, 13.640039444, -58.297870636 586346.172912, 4140685.24784, -28.3235442406, 3.75555562973, -0.333998980833, -0.108992233716, -0.023450768437, 1496957385.0741, 2.43777582537, 1, 40.3360277426, 23.5065231323, 13.6095218658, -58.744682312 586346.145402, 4140685.27177, -28.3222273272, 3.75555562973, -0.303180269963, -0.108992233716, 0.0, 1496957385.0836, 2.44095863559, 1, 40.3735832989, 23.5065231323, 13.6095218658, -58.744682312 586346.118638, 4140685.29666, -28.3208597992, 3.75, -0.160261474941, -0.109790137539, -0.0212774352844, 1496957385.0941, 2.43673254264, 1, 40.4110832989, 23.5309371948, 13.6797132492, -59.1489372253 586346.09198, 4140685.32164, -28.3194390079, 3.75, -0.155518954736, -0.109790137539, 0.0, 1496957385.1036, 2.43251539709, 1, 40.4485832989, 23.5309371948, 13.6797132492, -59.1489372253 586346.065437, 4140685.34672, -28.3180545708, 3.75, -0.165018942831, -0.110546997961, -0.0201829445783, 1496957385.1141, 2.4282417902, 1, 40.4860832989, 23.5309371948, 13.6415653229, -59.5319137573 586346.039027, 4140685.37192, -28.3165469142, 3.75, -0.222525434868, -0.110546997961, 0.0, 1496957385.1235, 2.42397450093, 1, 40.5235832989, 23.5309371948, 13.6415653229, -59.5319137573 586346.012742, 4140685.39721, -28.3150054188, 3.74444437027, -0.295443675433, -0.111220556704, -0.0179882160432, 1496957385.1340, 2.41970704001, 1, 40.5610277426, 23.4943161011, 13.6980237961, -59.872341156 586345.986588, 4140685.42261, -28.3134147739, 3.74444437027, -0.266886482652, -0.111220556704, 0.0, 1496957385.1446, 2.41543873773, 1, 40.5984721863, 23.4943161011, 13.6980237961, -59.872341156 586345.960566, 4140685.44814, -28.3116826769, 3.73611116409, -0.225927832777, -0.111810525503, -0.0157909862038, 1496957385.1542, 2.41116277492, 1, 40.635833298, 23.4699020386, 13.6842908859, -60.170211792 586345.934664, 4140685.47376, -28.3099706108, 3.73611116409, -0.227488647281, -0.111810525503, 0.0, 1496957385.1638, 2.4069383258, 1, 40.6731944096, 23.4699020386, 13.6842908859, -60.170211792 586345.908917, 4140685.49951, -28.3081189031, 3.73055553436, -0.254934695042, -0.112401076356, -0.015830104872, 1496957385.1744, 2.40263828556, 1, 40.710499965, 23.4699020386, 13.6171512604, -60.4680862427 586345.883294, 4140685.52537, -28.306218164, 3.73055553436, -0.234287722241, -0.112401076356, 0.0, 1496957385.1840, 2.39836950212, 1, 40.7478055203, 23.4699020386, 13.6171512604, -60.4680862427 586345.857815, 4140685.55134, -28.3042757344, 3.72499990463, -0.257750305927, -0.112823246715, -0.0113334327464, 1496957385.1946, 2.39404681967, 1, 40.7850555193, 23.4821090698, 13.7224388123, -60.6808509827 586345.832458, 4140685.57744, -28.3022272624, 3.72499990463, -0.167184793495, -0.112823246715, 0.0, 1496957385.2042, 2.38977183716, 1, 40.8223055184, 23.4821090698, 13.7224388123, -60.6808509827 586345.80726, 4140685.60365, -28.3002015697, 3.71944451332, -0.205131272158, -0.113161196244, -0.00908602152247, 1496957385.2137, 2.38551193999, 1, 40.8594999635, 23.4821090698, 13.6766614914, -60.8510627747 586345.782195, 4140685.63001, -28.2980842097, 3.71944451332, -0.16121279909, -0.113161196244, 0.0, 1496957385.2242, 2.38119636115, 1, 40.8966944087, 23.4821090698, 13.6766614914, -60.8510627747 586345.757251, 4140685.65647, -28.2959278366, 3.71111106873, -0.112395867853, -0.113499343633, -0.00911175608469, 1496957385.2337, 2.37690434687, 1, 40.9338055193, 23.5187301636, 13.6263065338, -61.0212783813 586345.732437, 4140685.68307, -28.2937718173, 3.71111106873, -0.0936880827144, -0.113499343633, 0.0, 1496957385.2443, 2.37261863653, 1, 40.97091663, 23.5187301636, 13.6263065338, -61.0212783813 586345.707752, 4140685.70978, -28.2915534927, 3.705555439, -0.0669622439558, -0.113753073769, -0.0068472902668, 1496957385.2538, 2.36835034113, 1, 41.0079721844, 23.4699020386, 13.655298233, -61.1489372253 586345.683168, 4140685.73662, -28.2893622722, 3.705555439, 0.00862734038823, -0.113753073769, 0.0, 1496957385.2643, 2.36403912196, 1, 41.0450277388, 23.4699020386, 13.655298233, -61.1489372253 586345.658697, 4140685.76357, -28.2870653123, 3.70277786255, 0.0199207015438, -0.114006911605, -0.0068553352246, 1496957385.2738, 2.35974653036, 1, 41.0820555174, 23.5065231323, 13.6186771393, -61.2765960693 586345.634332, 4140685.79065, -28.2848445978, 3.70277786255, 0.0771698014163, -0.114006911605, 0.0, 1496957385.2856, 2.35543436433, 1, 41.1190832961, 23.5065231323, 13.6186771393, -61.2765960693 586345.610058, 4140685.81782, -28.282554944, 3.70000004768, 0.0449425607086, -0.114260857424, -0.00686340043824, 1496957385.2941, 2.35109208334, 1, 41.1560832965, 23.4821090698, 13.6583509445, -61.4042549133 586345.585883, 4140685.8451, -28.2802802082, 3.70000004768, 0.061663923107, -0.114260857424, 0.0, 1496957385.3036, 2.34675210679, 1, 41.193083297, 23.4821090698, 13.6583509445, -61.4042549133 586345.561805, 4140685.87247, -28.2779819928, 3.70000004768, 0.0283757175181, -0.114472565432, -0.00572183796524, 1496957385.3141, 2.34241325982, 1, 41.2300832975, 23.4454879761, 13.6385135651, -61.5106391907 586345.53782, 4140685.89995, -28.2756787222, 3.70000004768, 0.0585669004366, -0.114472565432, 0.0, 1496957385.3236, 2.3380601113, 1, 41.267083298, 23.4454879761, 13.6385135651, -61.5106391907 586345.513907, 4140685.92754, -28.2733665323, 3.70000004768, 0.145466990222, -0.114599620321, -0.00343391589394, 1496957385.3342, 2.33368397386, 1, 41.3040832984, 23.152513504, 13.682765007, -61.5744667053 586345.490093, 4140685.95522, -28.2710923087, 3.70000004768, 0.117707220376, -0.114599620321, 0.0, 1496957385.3437, 2.32933109171, 1, 41.3410832989, 23.152513504, 13.682765007, -61.5744667053 586345.466352, 4140685.98301, -28.2687764764, 3.70000004768, 0.146797709176, -0.114726709969, -0.00343485529373, 1496957385.3547, 2.32493284553, 1, 41.3780832994, 23.4821090698, 13.6629285812, -61.6382980347 586345.442688, 4140686.01089, -28.2665106645, 3.70000004768, 0.183395560417, -0.114726709969, 0.0, 1496957385.3645, 2.32050716228, 1, 41.4150832999, 23.4821090698, 13.6629285812, -61.6382980347 586345.419114, 4140686.03887, -28.2642616797, 3.69722223282, 0.184633608553, -0.114853826817, -0.00343817170084, 1496957385.3745, 2.31607480522, 1, 41.4520555222, 23.5065231323, 13.6659803391, -61.702129364 586345.395619, 4140686.06693, -28.2619891725, 3.69722223282, 0.149609167479, -0.114853826817, 0.0, 1496957385.3839, 2.31165772463, 1, 41.4890277445, 23.5065231323, 13.6659803391, -61.702129364 586345.372196, 4140686.09513, -28.2597779399, 3.69722223282, 0.193504560462, -0.114896200086, -0.00114608388785, 1496957385.3945, 2.30722112817, 1, 41.5259999669, 23.4699020386, 13.6415653229, -61.7234039307 586345.348863, 4140686.12342, -28.2574886456, 3.69722223282, 0.209082120908, -0.114896200086, 0.0, 1496957385.4046, 2.30274959005, 1, 41.5629721892, 23.4699020386, 13.6415653229, -61.7234039307 586345.325634, 4140686.15182, -28.2552925488, 3.69722223282, 0.188643628438, -0.114896200086, 0.0, 1496957385.4136, 2.29833134511, 1, 41.5999444115, 23.4699020386, 13.6415653229, -61.7234039307 586345.302464, 4140686.18033, -28.2530689463, 3.69722223282, 0.261078965256, -0.114896200086, 0.0, 1496957385.4241, 2.29389879878, 1, 41.6369166338, 23.4699020386, 13.6385135651, -61.7234039307 586345.279363, 4140686.20894, -28.2508534938, 3.70000004768, 0.26887932456, -0.114896200086, 0.0, 1496957385.4336, 2.28943945639, 1, 41.6739166343, 23.4821090698, 13.6263065338, -61.7234039307 586345.256351, 4140686.23768, -28.2486637821, 3.70000004768, 0.377949039012, -0.114896200086, 0.0, 1496957385.4442, 2.28500926258, 1, 41.7109166348, 23.4821090698, 13.6263065338, -61.7234039307 586345.233404, 4140686.26654, -28.2464600392, 3.705555439, 0.40468431457, -0.114896200086, 0.0, 1496957385.4537, 2.28054471926, 1, 41.7479721892, 23.4699020386, 13.640039444, -61.7234039307 586345.210547, 4140686.29553, -28.2443369944, 3.705555439, 0.458209264019, -0.114896200086, 0.0, 1496957385.4643, 2.27610090082, 1, 41.7850277436, 23.4699020386, 13.640039444, -61.7234039307 586345.187764, 4140686.32466, -28.242189398, 3.71388888359, 0.510542810003, -0.114853826817, 0.00114094065914, 1496957385.4743, 2.27164197731, 1, 41.8221666324, 23.4699020386, 13.6049442291, -61.702129364 586345.165072, 4140686.35387, -28.2400469743, 3.71388888359, 0.326786837396, -0.114853826817, 0.0, 1496957385.4838, 2.2672080715, 1, 41.8593055212, 23.4699020386, 13.6049442291, -61.702129364 586345.142477, 4140686.38321, -28.2378920093, 3.71388888359, 0.280504321096, -0.114811448978, 0.00114106374947, 1496957385.4943, 2.26278441379, 1, 41.8964444101, 23.4699020386, 13.6217288971, -61.6808509827 586345.119982, 4140686.41267, -28.235786167, 3.71388888359, 0.288218667353, -0.114811448978, 0.0, 1496957385.5038, 2.25834637768, 1, 41.9335832989, 23.4699020386, 13.6217288971, -61.6808509827 586345.07531, 4140686.47209, -28.2317112871, 3.71111106873, 0.393358633208, -0.114769074163, 0.00114183632882, 1496957385.5142, 2.24952103632, 1, 41.9706944096, 23.5065231323, 13.6507205963, -61.6595726013 586345.07531, 4140686.47209, -28.2317112871, 3.71111106873, 0.513196359172, -0.114769074163, 0.0, 1496957385.5238, 2.24952103632, 1, 42.0078055203, 23.5065231323, 13.6507205963, -61.6595726013 586345.05315, 4140686.50208, -28.2299333373, 3.71388888359, 0.754529145497, -0.114769074163, 0.0, 1496957385.5342, 2.24515291034, 1, 42.0449444091, 23.4821090698, 13.7071790695, -61.6595726013 586345.03113, 4140686.53227, -28.2281262623, 3.71388888359, 0.688743445574, -0.114769074163, 0.0, 1496957385.5438, 2.2407789305, 1, 42.082083298, 23.4821090698, 13.7071790695, -61.6595726013 586345.009225, 4140686.56261, -28.2264335668, 3.71666669846, 0.601897066496, -0.114726709969, 0.00113984378561, 1496957385.5543, 2.23640244887, 1, 42.119249965, 23.5065231323, 13.7010755539, -61.6382980347 586344.987467, 4140686.59311, -28.2247554883, 3.71666669846, 0.485185686406, -0.114726709969, 0.0, 1496957385.5638, 2.23201546654, 1, 42.1564166319, 23.5065231323, 13.7010755539, -61.6382980347 586344.96587, 4140686.62375, -28.2230326347, 3.71388888359, 0.325320038013, -0.114726709969, 0.0, 1496957385.5743, 2.22769226533, 1, 42.1935555208, 23.4699020386, 13.7041273117, -61.6382980347 586344.944446, 4140686.65459, -28.2212390909, 3.71388888359, 0.34222285091, -0.114726709969, 0.0, 1496957385.5838, 2.22334210247, 1, 42.2306944096, 23.4699020386, 13.7041273117, -61.6382980347 586344.923191, 4140686.68551, -28.2194850622, 3.71944451332, 0.0562949392845, -0.114769074163, -0.0011389925093, 1496957385.5944, 2.21900565128, 1, 42.2678888547, 23.4699020386, 13.6217288971, -61.6595726013 586344.902026, 4140686.71657, -28.2175554363, 3.71944451332, 0.131400369195, -0.114769074163, 0.0, 1496957385.6041, 2.21467979358, 1, 42.3050832999, 23.4699020386, 13.6217288971, -61.6595726013 586344.881006, 4140686.74777, -28.2156392932, 3.72499990463, 0.219805051579, -0.114769074163, 0.0, 1496957385.6135, 2.21036903378, 1, 42.3423332989, 23.5187301636, 13.6369876862, -61.6595726013 586344.860146, 4140686.77911, -28.213722921, 3.72499990463, 0.226112983727, -0.114769074163, 0.0, 1496957385.6240, 2.20597193147, 1, 42.379583298, 23.5187301636, 13.6369876862, -61.6595726013 586344.839306, 4140686.81059, -28.2116918564, 3.73055553436, 0.501698872796, -0.114811448978, -0.00113588482989, 1496957385.6346, 2.20167272378, 1, 42.4168888533, 23.4699020386, 13.6476688385, -61.6808509827 586344.818615, 4140686.8422, -28.2098898981, 3.73055553436, 0.527574709998, -0.114811448978, 0.0, 1496957385.6442, 2.19727861238, 1, 42.4541944087, 23.4699020386, 13.6476688385, -61.6808509827 586344.797955, 4140686.87393, -28.2078956775, 3.73611116409, 0.538104632013, -0.114853826817, -0.00113427673549, 1496957385.6537, 2.19287076714, 1, 42.4915555203, 23.4821090698, 13.640039444, -61.702129364 586344.777423, 4140686.90578, -28.2061070958, 3.73611116409, 0.520793945378, -0.114853826817, 0.0, 1496957385.6642, 2.18843567326, 1, 42.5289166319, 23.4821090698, 13.640039444, -61.702129364 586344.756994, 4140686.9378, -28.2042110283, 3.7416665554, 0.569507334998, -0.114853826817, 0.0, 1496957385.6738, 2.18408625348, 1, 42.5663332975, 23.4699020386, 13.6537723541, -61.702129364 586344.736648, 4140686.96992, -28.2024543704, 3.7416665554, 0.488472123957, -0.114853826817, 0.0, 1496957385.6843, 2.1796373609, 1, 42.603749963, 23.4699020386, 13.6537723541, -61.702129364 586344.716427, 4140687.00217, -28.2006319715, 3.74722218513, 0.407596859065, -0.114896200086, -0.00113079145604, 1496957385.6938, 2.17524931942, 1, 42.6412221849, 23.5431442261, 13.6736097336, -61.7234039307 586344.696324, 4140687.0345, -28.1986971321, 3.74722218513, 0.243095723308, -0.114896200086, 0.0, 1496957385.7043, 2.17085319173, 1, 42.6786944067, 23.5431442261, 13.6736097336, -61.7234039307 586344.676316, 4140687.06698, -28.1969022434, 3.75277781487, 0.347793971766, -0.114853826817, 0.00112911742711, 1496957385.7138, 2.16645226021, 1, 42.7162221849, 23.4699020386, 13.6690320969, -61.702129364 586344.65639, 4140687.09959, -28.1949385218, 3.75277781487, 0.472698483934, -0.114853826817, 0.0, 1496957385.7244, 2.16200053619, 1, 42.753749963, 23.4699020386, 13.6690320969, -61.702129364 586344.636571, 4140687.13231, -28.1930982592, 3.76111102104, 0.517160404835, -0.114853826817, 0.0, 1496957385.7339, 2.15755362559, 1, 42.7913610733, 23.5553512573, 13.6125736237, -61.702129364 586344.61686, 4140687.16518, -28.1911573857, 3.76111102104, 0.5126526715, -0.114853826817, 0.0, 1496957385.7445, 2.15309173953, 1, 42.8289721835, 23.5553512573, 13.6125736237, -61.702129364 586344.597304, 4140687.19818, -28.189285419, 3.76388883591, 0.402636539438, -0.114853826817, 0.0, 1496957385.7540, 2.14864223107, 1, 42.8666110718, 23.701839447, 13.6217288971, -61.702129364 586344.577854, 4140687.23136, -28.187390374, 3.76388883591, 0.601000943508, -0.114853826817, 0.0, 1496957385.7645, 2.1441594064, 1, 42.9042499602, 23.701839447, 13.6217288971, -61.702129364 586344.55848, 4140687.26466, -28.1854635123, 3.76666665077, 0.601087993323, -0.114769074163, 0.00225007047317, 1496957385.7740, 2.13971092692, 1, 42.9419166267, 23.7384605408, 13.623254776, -61.6595726013 586344.539255, 4140687.29809, -28.1836712286, 3.76666665077, 0.533953435986, -0.114769074163, 0.0, 1496957385.7846, 2.13522179027, 1, 42.9795832932, 23.7384605408, 13.623254776, -61.6595726013 586344.520126, 4140687.33166, -28.181783516, 3.77500009537, 0.569215996382, -0.114599620321, 0.00448884338065, 1496957385.7942, 2.13073393081, 1, 43.0173332942, 23.7262535095, 13.6736097336, -61.5744667053 586344.501112, 4140687.36538, -28.179970786, 3.77500009537, 0.629582067659, -0.114599620321, 0.0, 1496957385.8038, 2.12620772634, 1, 43.0550832951, 23.7262535095, 13.6736097336, -61.5744667053 586344.482242, 4140687.39922, -28.1781868143, 3.78888893127, 0.456792859938, -0.114387874713, 0.00558859369427, 1496957385.8144, 2.12166978394, 1, 43.0929721844, 23.6652164459, 13.667506218, -61.4680862427 586344.463467, 4140687.4332, -28.1763800159, 3.78888893127, 0.509225834736, -0.114387874713, 0.0, 1496957385.8241, 2.11717969669, 1, 43.1308610737, 23.6652164459, 13.667506218, -61.4680862427 586344.44481, 4140687.4673, -28.174612212, 3.79722213745, 0.511310348382, -0.114133874793, 0.00668909828188, 1496957385.8335, 2.1126738842, 1, 43.1688332951, 23.7262535095, 13.667506218, -61.3404273987 586344.426287, 4140687.50155, -28.1729077464, 3.79722213745, 0.549743851511, -0.114133874793, 0.0, 1496957385.8441, 2.10817365693, 1, 43.2068055165, 23.7262535095, 13.6247806549, -61.3404273987 586344.40783, 4140687.53593, -28.1712113172, 3.80555558205, 0.696850992278, -0.113795368797, 0.00889504800963, 1496957385.8535, 2.10370744097, 1, 43.2448610723, 23.7262535095, 13.6629285812, -61.170211792 586344.389449, 4140687.57046, -28.1695740456, 3.80555558205, 0.774893717247, -0.113795368797, 0.0, 1496957385.8641, 2.09921417193, 1, 43.2829166281, 23.7262535095, 13.6629285812, -61.170211792 586344.371163, 4140687.60513, -28.1679488067, 3.82222223282, 0.762550171064, -0.113499343633, 0.00774484438395, 1496957385.8736, 2.09467513363, 1, 43.3211388505, 23.701839447, 13.6263065338, -61.0212783813 586344.352968, 4140687.63995, -28.166372152, 3.82222223282, 0.80156028717, -0.113499343633, 0.0, 1496957385.8842, 2.09020157574, 1, 43.3593610728, 23.701839447, 13.6263065338, -61.0212783813 586344.334881, 4140687.6749, -28.1648400724, 3.83333325386, 0.803900851798, -0.113118945949, 0.00992341804951, 1496957385.8937, 2.08565539153, 1, 43.3976944053, 23.7384605408, 13.6583509445, -60.829788208 586344.316901, 4140687.70999, -28.1634272728, 3.83333325386, 0.742714078949, -0.113118945949, 0.0, 1496957385.9042, 2.08116442725, 1, 43.4360277379, 23.7384605408, 13.6583509445, -60.829788208 586344.299027, 4140687.74523, -28.1620171452, 3.83888888359, 0.698957591014, -0.112781012584, 0.00880289519259, 1496957385.9139, 2.07665643234, 1, 43.4744166267, 23.7262535095, 13.6583509445, -60.6595726013 586344.281266, 4140687.78061, -28.1606150167, 3.83888888359, 0.735496491093, -0.112781012584, 0.0, 1496957385.9243, 2.07216703531, 1, 43.5128055155, 23.7262535095, 13.6705579758, -60.6595726013 586344.263594, 4140687.81613, -28.1593720214, 3.8527777195, 0.76832703981, -0.112443276314, 0.00876604605516, 1496957385.9339, 2.06770043672, 1, 43.5513332927, 23.7384605408, 13.6781873703, -60.4893608093 586344.246043, 4140687.85175, -28.1580644166, 3.8527777195, 0.569815198135, -0.112443276314, 0.0, 1496957385.9445, 2.06323925219, 1, 43.5898610699, 23.7384605408, 13.6781873703, -60.4893608093 586344.228602, 4140687.88754, -28.1567865433, 3.8666665554, 0.707805973115, -0.112105728892, 0.00872967497109, 1496957385.9541, 2.05874890089, 1, 43.6285277355, 23.7384605408, 13.6140995026, -60.3191490173 586344.211249, 4140687.92346, -28.1556271389, 3.8666665554, 0.771449300712, -0.112105728892, 0.0, 1496957385.9635, 2.05426038643, 1, 43.667194401, 23.7384605408, 13.6140995026, -60.3191490173 586344.194036, 4140687.95954, -28.1543896189, 3.87777781487, 0.751902845941, -0.111768369644, 0.00869980859769, 1496957385.9741, 2.04975512998, 1, 43.7059721792, 23.7140464783, 13.7087049484, -60.1489372253 586344.176895, 4140687.99575, -28.1532611325, 3.87777781487, 0.798593485648, -0.111768369644, 0.0, 1496957385.9836, 2.04530521377, 1, 43.7447499573, 23.7140464783, 13.7087049484, -60.1489372253 586344.159879, 4140688.0321, -28.1521930192, 3.89166665077, 0.800436829231, -0.11147333036, 0.00758130926668, 1496957385.9941, 2.0407729326, 1, 43.7836666238, 23.6896324158, 13.6018924713, -60.0 586344.142996, 4140688.06859, -28.151080302, 3.89166665077, 0.763550086095, -0.11147333036, 0.0, 1496957386.0035, 2.03628778277, 1, 43.8225832903, 23.6896324158, 13.6018924713, -60.0 586344.126185, 4140688.10521, -28.1500571417, 3.90277767181, 0.696687257902, -0.111136322135, 0.00863508641845, 1496957386.0140, 2.03186186373, 1, 43.8616110671, 23.6774234772, 13.5881586075, -59.829788208 586344.109489, 4140688.14197, -28.1489374284, 3.90277767181, 0.710457317788, -0.111136322135, 0.0, 1496957386.0246, 2.02730155918, 1, 43.9006388438, 23.6774234772, 13.5881586075, -59.829788208 586344.092918, 4140688.17886, -28.1479014037, 3.91388893127, 0.691511443697, -0.110757406703, 0.00968130263021, 1496957386.0342, 2.02280235735, 1, 43.9397777331, 23.6652164459, 13.6842908859, -59.6382980347 586344.07643, 4140688.21588, -28.1468577115, 3.91388893127, 0.735888683162, -0.110757406703, 0.0, 1496957386.0438, 2.01829714525, 1, 43.9789166224, 23.6652164459, 13.6842908859, -59.6382980347 586344.060088, 4140688.25301, -28.1457996555, 3.92499995232, 0.640508711671, -0.110420793464, 0.00857613356726, 1496957386.0543, 2.01376398405, 1, 44.0181666219, 23.6652164459, 13.5988407135, -59.4680862427 586344.043834, 4140688.29028, -28.1447640257, 3.92499995232, 0.645843772978, -0.110420793464, 0.0, 1496957386.0638, 2.00924077141, 1, 44.0574166214, 23.6652164459, 13.5988407135, -59.4680862427 586344.027672, 4140688.32766, -28.1437203959, 3.93611121178, 0.685533216424, -0.110084357523, 0.0085474196174, 1496957386.0743, 2.00473145752, 1, 44.0967777336, 23.6896324158, 13.6263065338, -59.297870636 586344.0147, 4140688.36849, -28.143147856, 3.93611121178, 0.66017476237, -0.110084357523, 0.0, 1496957386.0838, 2.00658064435, 1, 44.1361388457, 23.6896324158, 13.6263065338, -59.297870636 586344.000888, 4140688.40792, -28.142548657, 3.94722223282, 0.760587823144, -0.109748113293, 0.0085185026324, 1496957386.0944, 2.00204441841, 1, 44.175611068, 23.701839447, 13.6171512604, -59.127658844 586343.987212, 4140688.44749, -28.1420421824, 3.94722223282, 0.844931953533, -0.109748113293, 0.0, 1496957386.1039, 1.99751865721, 1, 44.2150832903, 23.701839447, 13.6171512604, -59.127658844 586343.973647, 4140688.48719, -28.1414941913, 3.95833325386, 0.7727030162, -0.109370054085, 0.00955096964478, 1496957386.1145, 1.99296621035, 1, 44.2546666229, 23.6896324158, 13.6507205963, -58.9361686707 586343.96019, 4140688.52706, -28.1410413887, 3.95833325386, 0.870941304734, -0.109370054085, 0.0, 1496957386.1241, 1.98841686052, 1, 44.2942499554, 23.6896324158, 13.6507205963, -58.9361686707 586343.946864, 4140688.56707, -28.1406069556, 3.97222232819, 0.897631747241, -0.109076174693, 0.00739836211768, 1496957386.1336, 1.98383776887, 1, 44.3339721787, 23.6530094147, 13.6339359283, -58.78723526 586343.933674, 4140688.60722, -28.1402202537, 3.97222232819, 0.867690933598, -0.109076174693, 0.0, 1496957386.1442, 1.97928999553, 1, 44.373694402, 23.6530094147, 13.6339359283, -58.78723526 586343.920584, 4140688.64751, -28.1398589397, 3.98611116409, 0.773910211133, -0.108782427261, 0.00736927345322, 1496957386.1537, 1.97469909731, 1, 44.4135555136, 23.701839447, 13.667506218, -58.6382980347 586343.907622, 4140688.68794, -28.1395612899, 3.98611116409, 0.827004222028, -0.108782427261, 0.0, 1496957386.1643, 1.97017845613, 1, 44.4534166253, 23.701839447, 13.667506218, -58.6382980347 586343.894789, 4140688.7285, -28.1392778615, 3.99722218513, 0.793498865502, -0.108530757658, 0.00629611244326, 1496957386.1738, 1.96562983626, 1, 44.4933888471, 23.701839447, 13.6385135651, -58.5106391907 586343.882071, 4140688.76921, -28.1391220223, 3.99722218513, 0.887013584435, -0.108530757658, 0.0, 1496957386.1844, 1.96107581741, 1, 44.533361069, 23.701839447, 13.6385135651, -58.5106391907 586343.86947, 4140688.81006, -28.1389804902, 4.00833320618, 0.865121770573, -0.108279189932, 0.00627611810946, 1496957386.1941, 1.95649334691, 1, 44.573444401, 23.701839447, 13.6476688385, -58.3829803467 586343.856988, 4140688.85108, -28.1388775464, 4.00833320618, 1.0079331247, -0.108279189932, 0.0, 1496957386.2036, 1.95195771432, 1, 44.6135277331, 23.701839447, 13.6476688385, -58.3829803467 586343.844657, 4140688.89221, -28.1389214955, 4.02222204208, 0.885530890208, -0.108111527062, 0.00416841407683, 1496957386.2141, 1.94742461471, 1, 44.6537499535, 23.7262535095, 13.6186771393, -58.297870636 586343.83246, 4140688.93349, -28.1389026511, 4.02222204208, 0.749293681472, -0.108111527062, 0.0, 1496957386.2237, 1.94288271393, 1, 44.6939721739, 23.7262535095, 13.6186771393, -58.297870636 586343.820415, 4140688.97492, -28.1390674068, 4.03333330154, 0.834395405251, -0.107860128518, 0.00623302179805, 1496957386.2343, 1.9383915228, 1, 44.7343055069, 23.701839447, 13.6110477448, -58.170211792 586343.808518, 4140689.01649, -28.1391605614, 4.03333330154, 0.80776903804, -0.107860128518, 0.0, 1496957386.2437, 1.93387532325, 1, 44.77463884, 23.701839447, 13.6110477448, -58.170211792 586343.79679, 4140689.0582, -28.1394175263, 4.044444561, 0.812907668893, -0.107650710756, 0.00517791154795, 1496957386.2542, 1.92935294395, 1, 44.8150832856, 23.6896324158, 13.6156253815, -58.0638313293 586343.785196, 4140689.10008, -28.1397112887, 4.044444561, 0.860068430839, -0.107650710756, 0.0, 1496957386.2638, 1.92485469885, 1, 44.8555277312, 23.6896324158, 13.6156253815, -58.0638313293 586343.77375, 4140689.14206, -28.140060287, 4.05833339691, 0.810018601311, -0.107399489916, 0.00619024648995, 1496957386.2744, 1.92036752082, 1, 44.8961110651, 23.6774234772, 13.6446170807, -57.9361686707 586343.762473, 4140689.18422, -28.1404887019, 4.05833339691, 0.902116839912, -0.107399489916, 0.0, 1496957386.2839, 1.91581839076, 1, 44.9366943991, 23.6774234772, 13.6446170807, -57.9361686707 586343.751347, 4140689.22652, -28.1410258207, 4.07499980927, 0.940201453155, -0.107148377216, 0.00616227512849, 1496957386.2946, 1.91128322123, 1, 44.9774443972, 23.6530094147, 13.6736097336, -57.8085098267 586343.740388, 4140689.26895, -28.1416570982, 4.07499980927, 0.850669388994, -0.107148377216, 0.0, 1496957386.3042, 1.90676381138, 1, 45.0181943953, 23.6530094147, 13.6736097336, -57.8085098267 586343.729575, 4140689.31153, -28.1423933059, 4.08888912201, 0.822444412276, -0.106855535471, 0.0071618900869, 1496957386.3138, 1.9022432493, 1, 45.0590832865, 23.701839447, 13.6736097336, -57.6595726013 586343.718917, 4140689.35424, -28.1432359787, 4.08888912201, 0.871834983137, -0.106855535471, 0.0, 1496957386.3243, 1.89773896437, 1, 45.0999721777, 23.701839447, 13.5988407135, -57.6595726013 586343.708436, 4140689.39709, -28.1441304618, 4.09722232819, 0.805596712378, -0.10652103018, 0.00816419671843, 1496957386.3337, 1.89316595742, 1, 45.140944401, 23.7384605408, 13.5988407135, -57.4893608093 586343.698087, 4140689.44007, -28.145200327, 4.09722232819, 0.862081754246, -0.10652103018, 0.0, 1496957386.3442, 1.88867852336, 1, 45.1819166243, 23.7384605408, 13.6079959869, -57.4893608093 586343.68788, 4140689.48319, -28.1463020807, 4.11388874054, 0.857317915682, -0.106186702081, 0.00812681431943, 1496957386.3537, 1.88416041848, 1, 45.2230555117, 23.6530094147, 13.6079959869, -57.3191490173 586343.677839, 4140689.52645, -28.1475537447, 4.11388874054, 0.889712216363, -0.106186702081, 0.0, 1496957386.3645, 1.87961444565, 1, 45.2641943991, 23.6530094147, 13.6217288971, -57.3191490173 586343.667942, 4140689.56983, -28.1488281311, 4.13333320618, 0.870991426353, -0.105769040143, 0.0101047246124, 1496957386.3741, 1.8750853552, 1, 45.3055277312, 23.6896324158, 13.6217288971, -57.1063842773 586343.658192, 4140689.61339, -28.1502228482, 4.13333320618, 0.95980730034, -0.105769040143, 0.0, 1496957386.3835, 1.87058024085, 1, 45.3468610632, 23.6896324158, 13.6568250656, -57.1063842773 586343.648546, 4140689.65706, -28.1516099926, 4.15277767181, 0.905213995947, -0.105351645306, 0.0100509796253, 1496957386.3940, 1.86603295906, 1, 45.38838884, 23.6774234772, 13.6568250656, -56.8936157227 586343.639101, 4140689.70086, -28.1530367611, 4.15277767181, 0.848206627549, -0.105351645306, 0.0, 1496957386.4039, 1.86147843563, 1, 45.4299166167, 23.6774234772, 13.6003665924, -56.8936157227 586343.629788, 4140689.74483, -28.1545000635, 4.169444561, 1.00209167126, -0.104809446433, 0.013004103177, 1496957386.4141, 1.85695627136, 1, 45.4716110623, 23.701839447, 13.6217288971, -56.6170196533 586343.62064, 4140689.78887, -28.155946916, 4.169444561, 0.774247596714, -0.104809446433, 0.0, 1496957386.4245, 1.85239859391, 1, 45.5133055079, 23.701839447, 13.6217288971, -56.6170196533 586343.611646, 4140689.83307, -28.157373175, 4.18611097336, 0.743661085093, -0.104184403285, 0.0149313563811, 1496957386.4340, 1.84786573814, 1, 45.5551666176, 23.6774234772, 13.6217288971, -56.297870636 586343.602815, 4140689.87739, -28.1588705499, 4.18611097336, 0.721031155666, -0.104184403285, 0.0, 1496957386.4446, 1.84335116201, 1, 45.5970277274, 23.6774234772, 13.6110477448, -56.297870636 586343.594176, 4140689.92187, -28.1603075173, 4.20277786255, 0.869908675919, -0.103559967189, 0.0148576992778, 1496957386.4541, 1.83884401975, 1, 45.639055506, 23.6408023834, 13.6110477448, -55.9787216187 586343.585686, 4140689.96644, -28.1617189273, 4.20277786255, 0.734394883533, -0.103559967189, 0.0, 1496957386.4636, 1.83428541308, 1, 45.6810832846, 23.6408023834, 13.6430912018, -55.9787216187 586343.57737, 4140690.01116, -28.1633449923, 4.21666669846, 0.904544446601, -0.102853001971, 0.0167659734309, 1496957386.4741, 1.82978558045, 1, 45.7232499516, 23.6774234772, 13.6430912018, -55.6170196533 586343.569226, 4140690.05607, -28.1648057653, 4.21666669846, 0.990814696024, -0.102853001971, 0.0, 1496957386.4835, 1.82524608892, 1, 45.7654166186, 23.6774234772, 13.6110477448, -55.6170196533 586343.5613, 4140690.10109, -28.1664099358, 4.23055553436, 0.915406613746, -0.10198075277, 0.0206178406916, 1496957386.4940, 1.82071826871, 1, 45.8077221739, 23.6774234772, 13.6110477448, -55.170211792 586343.553527, 4140690.14627, -28.1678813957, 4.23055553436, 0.946023514964, -0.10198075277, 0.0, 1496957386.5045, 1.81622171251, 1, 45.8500277293, 23.6774234772, 13.640039444, -55.170211792 586343.53863, 4140690.23699, -28.1708041765, 4.24722242355, 0.751921082428, -0.101109664273, 0.0205096039195, 1496957386.5141, 1.80734732921, 1, 45.8924999535, 23.6163883209, 13.640039444, -54.7234039307 586343.53863, 4140690.23699, -28.1708041765, 4.24722242355, 0.751921082428, -0.101109664273, 0.0, 1496957386.5246, 1.80734732921, 1, 45.9349721777, 23.6163883209, 13.6507205963, -54.7234039307 586343.531528, 4140690.28257, -28.1721705506, 4.25833320618, 0.793271970522, -0.100115537981, 0.0233454322269, 1496957386.5341, 1.80291144589, 1, 45.9775555098, 23.6774234772, 13.6507205963, -54.21276474 586343.524574, 4140690.32821, -28.1733776135, 4.25833320618, 0.593339058529, -0.100115537981, 0.0, 1496957386.5435, 1.79849563958, 1, 46.0201388419, 23.6774234772, 13.7087049484, -54.21276474 586343.51789, 4140690.37401, -28.1746120434, 4.26944446564, 0.587516465306, -0.0990815716704, 0.0242178184705, 1496957386.5541, 1.79415695472, 1, 46.0628332865, 23.6530094147, 13.7087049484, -53.6808509827 586343.511365, 4140690.41994, -28.175723318, 4.26944446564, 0.744223378856, -0.0990815716704, 0.0, 1496957386.5635, 1.7898084196, 1, 46.1055277312, 23.6530094147, 13.6156253815, -53.6808509827 586343.505056, 4140690.466, -28.1768281264, 4.27777767181, 0.801212565226, -0.0979666750692, 0.0260625185958, 1496957386.5741, 1.7854650647, 1, 46.1483055079, 23.5919742584, 13.6156253815, -53.1063842773 586343.498965, 4140690.51222, -28.1779072229, 4.27777767181, 0.921344195967, -0.0979666750692, 0.0, 1496957386.5836, 1.78113438959, 1, 46.1910832846, 23.5919742584, 13.5835809708, -53.1063842773 586343.493036, 4140690.55853, -28.1788130682, 4.28611087799, 0.806260353195, -0.0968536031955, 0.0259692739021, 1496957386.5942, 1.77685553743, 1, 46.2339443934, 23.5187301636, 13.5835809708, -52.5319137573 586343.487306, 4140690.60497, -28.1797533752, 4.28611087799, 0.770403424501, -0.0968536031955, 0.0, 1496957386.6037, 1.77259023156, 1, 46.2768055022, 23.5187301636, 13.6140995026, -52.5319137573 586343.481769, 4140690.65156, -28.1805633903, 4.29722213745, 0.803976636593, -0.095701220291, 0.0268169265569, 1496957386.6141, 1.76833849742, 1, 46.3197777236, 23.5797672272, 13.6140995026, -51.9361686707 586343.476437, 4140690.69824, -28.1813667053, 4.29722213745, 0.757762267434, -0.095701220291, 0.0, 1496957386.6236, 1.76411371145, 1, 46.3627499449, 23.5797672272, 13.6354618073, -51.9361686707 586343.471296, 4140690.74505, -28.1821610313, 4.30555534363, 0.784188798756, -0.0945507631708, 0.0267202957191, 1496957386.6341, 1.75990292431, 1, 46.4058054984, 23.5797672272, 13.6354618073, -51.3404273987 586343.466332, 4140690.79198, -28.1829525065, 4.30555534363, 0.78128769926, -0.0945507631708, 0.0, 1496957386.6436, 1.75569638701, 1, 46.4488610518, 23.5797672272, 13.6308841705, -51.3404273987 586343.461564, 4140690.83903, -28.1836178517, 4.31388902664, 0.78254251093, -0.0934021909033, 0.0266249841025, 1496957386.6541, 1.75152588818, 1, 46.4919999421, 23.5797672272, 13.6308841705, -50.744682312 586343.456993, 4140690.88622, -28.1844446789, 4.31388902664, 0.924601616562, -0.0934021909033, 0.0, 1496957386.6636, 1.74739096769, 1, 46.5351388323, 23.5797672272, 13.6217288971, -50.744682312 586343.452566, 4140690.93352, -28.1850491166, 4.32222223282, 0.831281409756, -0.0922554848192, 0.0265304748869, 1496957386.6741, 1.74318723209, 1, 46.5783610547, 23.5675601959, 13.6217288971, -50.1489372253 586343.448375, 4140690.98095, -28.1858195495, 4.32222223282, 0.900793773873, -0.0922554848192, 0.0, 1496957386.6836, 1.73905853353, 1, 46.621583277, 23.5675601959, 13.6018924713, -50.1489372253 586343.444301, 4140691.02846, -28.1864830414, 4.33333349228, 0.772530338307, -0.0911514717722, 0.0254772232271, 1496957386.6941, 1.73489890373, 1, 46.6649166119, 23.6530094147, 13.6018924713, -49.5744667053 586343.440412, 4140691.07612, -28.1871631145, 4.33333349228, 0.795699675407, -0.0911514717722, 0.0, 1496957386.7036, 1.73079135924, 1, 46.7082499468, 23.6530094147, 13.6629285812, -49.5744667053 586343.436696, 4140691.12391, -28.1878577862, 4.3444442749, 0.990692894477, -0.0900491541654, 0.0253730405335, 1496957386.7142, 1.72671357309, 1, 46.7516943896, 23.6408023834, 13.6629285812, -49.0 586343.433091, 4140691.17179, -28.1886174018, 4.3444442749, 0.938982075572, -0.0900491541654, 0.0, 1496957386.7237, 1.72261888686, 1, 46.7951388323, 23.6408023834, 13.6110477448, -49.0 586343.429652, 4140691.21981, -28.1892954074, 4.35833311081, 0.986658057612, -0.0889485017128, 0.0252539772581, 1496957386.7342, 1.71852566679, 1, 46.8387221634, 23.5675601959, 13.6110477448, -48.4255332947 586343.426344, 4140691.26794, -28.1901049577, 4.35833311081, 0.961845258591, -0.0889485017128, 0.0, 1496957386.7437, 1.714451315, 1, 46.8823054945, 23.5675601959, 13.6354618073, -48.4255332947 586343.42322, 4140691.31617, -28.1909665875, 4.37222242355, 0.892084771179, -0.0878901628671, 0.0242059699413, 1496957386.7542, 1.7103816229, 1, 46.9260277188, 23.6041812897, 13.6354618073, -47.872341156 586343.420212, 4140691.36452, -28.1917361459, 4.37222242355, 0.839506564879, -0.0878901628671, 0.0, 1496957386.7636, 1.70636188095, 1, 46.969749943, 23.6041812897, 13.640039444, -47.872341156 586343.417395, 4140691.41295, -28.1927200286, 4.38333320618, 0.826614954076, -0.0869145683327, 0.0222569101762, 1496957386.7741, 1.70235007685, 1, 47.0135832751, 23.6041812897, 13.640039444, -47.3617019653 586343.414672, 4140691.46152, -28.1935959989, 4.38333320618, 0.926099039366, -0.0869145683327, 0.0, 1496957386.7859, 1.69840803767, 1, 47.0574166071, 23.6041812897, 13.579003334, -47.3617019653 586343.412081, 4140691.51017, -28.1945755444, 4.39722204208, 0.937765417507, -0.0858996723824, 0.0230803889503, 1496957386.7944, 1.69440880169, 1, 47.1013888276, 23.6408023834, 13.579003334, -46.829788208 586343.409643, 4140691.559, -28.195597643, 4.39722204208, 1.06491110117, -0.0858996723824, 0.0, 1496957386.8039, 1.69042307248, 1, 47.145361048, 23.6408023834, 13.5866327286, -46.829788208 586343.407313, 4140691.6079, -28.1965652108, 4.41388893127, 0.967043550419, -0.0849266427844, 0.022044723216, 1496957386.8145, 1.68649351603, 1, 47.1894999373, 23.6163883209, 13.5866327286, -46.3191490173 586343.405194, 4140691.65692, -28.1976830205, 4.41388893127, 0.941140324545, -0.0849266427844, 0.0, 1496957386.8241, 1.68254460413, 1, 47.2336388266, 23.6163883209, 13.6629285812, -46.3191490173 586343.403174, 4140691.70606, -28.1987000993, 4.42777776718, 0.970849492344, -0.0839953160299, 0.0210337285092, 1496957386.8335, 1.67858680667, 1, 47.2779166043, 23.5553512573, 13.6629285812, -45.829788208 586343.401293, 4140691.75529, -28.1998439068, 4.42777776718, 0.922591756291, -0.0839953160299, 0.0, 1496957386.8441, 1.67471331535, 1, 47.322194382, 23.5553512573, 13.6583509445, -45.829788208 586343.3996, 4140691.80466, -28.2010125639, 4.43888902664, 1.01995702542, -0.0831055243271, 0.0200453694043, 1496957386.8535, 1.67083656879, 1, 47.3665832722, 23.4454879761, 13.6583509445, -45.3617019653 586343.397997, 4140691.85412, -28.2021823348, 4.43888902664, 0.941324639796, -0.0831055243271, 0.0, 1496957386.8641, 1.66687963724, 1, 47.4109721625, 23.4454879761, 13.5988407135, -45.3617019653 586343.396583, 4140691.90369, -28.2034309264, 4.45277786255, 0.938944859521, -0.0821763722208, 0.0208667967481, 1496957386.8736, 1.6630703385, 1, 47.4554999411, 23.408864975, 13.5988407135, -44.872341156 586343.395309, 4140691.95338, -28.2046652483, 4.45277786255, 0.971033494752, -0.0821763722208, 0.0, 1496957386.8841, 1.65919523017, 1, 47.5000277197, 23.408864975, 13.6018924713, -44.872341156 586343.394183, 4140692.00315, -28.2059260719, 4.46666669846, 0.872665759913, -0.0812483114013, 0.0207774808862, 1496957386.8936, 1.65537708448, 1, 47.5446943867, 23.2013435364, 13.6018924713, -44.3829803467 586343.393189, 4140692.05303, -28.207177774, 4.46666669846, 0.83868673681, -0.0812483114013, 0.0, 1496957386.9044, 1.65153697411, 1, 47.5893610537, 23.2013435364, 13.6430912018, -44.3829803467 586343.392341, 4140692.10298, -28.2084975708, 4.47777795792, 0.822362050816, -0.080321321062, 0.0207020166702, 1496957386.9136, 1.6477054211, 1, 47.6341388333, 23.1769275665, 13.6430912018, -43.8936157227 586343.391625, 4140692.15305, -28.2097623739, 4.47777795792, 0.890019861912, -0.080321321062, 0.0, 1496957386.9241, 1.6439050238, 1, 47.6789166129, 23.1769275665, 13.7087049484, -43.8936157227 586343.391084, 4140692.20322, -28.2110575968, 4.49166679382, 0.8903497233, -0.0793149376015, 0.0224055680591, 1496957386.9345, 1.64010313406, 1, 47.7238332808, 23.1280994415, 13.7087049484, -43.3617019653 586343.390666, 4140692.25347, -28.2121648733, 4.49166679382, 0.80037928997, -0.0793149376015, 0.0, 1496957386.9442, 1.63626786292, 1, 47.7687499487, 23.1280994415, 13.6263065338, -43.3617019653 586343.390386, 4140692.3038, -28.2133375658, 4.50833320618, 0.713121804733, -0.0783097941455, 0.0222952344043, 1496957386.9536, 1.63254098617, 1, 47.8138332808, 23.0548553467, 13.6263065338, -42.829788208 586343.390307, 4140692.35425, -28.2143929936, 4.50833320618, 0.770971239763, -0.0783097941455, 0.0, 1496957386.9642, 1.62876299159, 1, 47.8589166129, 23.0548553467, 13.6186771393, -42.829788208 586343.390389, 4140692.40474, -28.2153662629, 4.51666688919, 0.651201599639, -0.0772256052313, 0.0240041814202, 1496957386.9738, 1.62505448791, 1, 47.9040832818, 23.1158924103, 13.6186771393, -42.255317688 586343.390624, 4140692.45532, -28.2163020205, 4.51666688919, 0.676761268925, -0.0772256052313, 0.0, 1496957386.9844, 1.62134836176, 1, 47.9492499506, 23.1158924103, 13.6308841705, -42.255317688 586343.391044, 4140692.50598, -28.2172188265, 4.52500009537, 0.680395557346, -0.076102748587, 0.0248145109522, 1496957386.9939, 1.61770576758, 1, 47.9944999516, 23.0548553467, 13.6308841705, -41.6595726013 586343.39165, 4140692.55677, -28.2179944348, 4.52500009537, 0.822371735068, -0.076102748587, 0.0, 1496957387.0045, 1.61405314985, 1, 48.0397499526, 23.0548553467, 13.6278324127, -41.6595726013 586343.392441, 4140692.60762, -28.2188143646, 4.53888893127, 0.765054981677, -0.0749413607773, 0.025587491284, 1496957387.0140, 1.61044262728, 1, 48.0851388419, 23.0426483154, 13.6278324127, -41.042552948 586343.39341, 4140692.65854, -28.2194240745, 4.53888893127, 0.693544310261, -0.0749413607773, 0.0, 1496957387.0235, 1.60682196229, 1, 48.1305277312, 23.0426483154, 13.6537723541, -41.042552948 586343.394554, 4140692.70955, -28.22005565, 4.55000019073, 0.708859830011, -0.0737415717116, 0.0263689893503, 1496957387.0343, 1.60322255879, 1, 48.1760277331, 22.810710907, 13.6537723541, -40.4042549133 586343.395921, 4140692.76063, -28.2206930909, 4.55000019073, 0.687106057877, -0.0737415717116, 0.0, 1496957387.0439, 1.59966781258, 1, 48.221527735, 22.810710907, 13.6278324127, -40.4042549133 586343.397443, 4140692.81183, -28.2211783547, 4.55833339691, 0.817563047334, -0.0724237117423, 0.028911004407, 1496957387.0544, 1.59606022091, 1, 48.267111069, 22.554359436, 13.6278324127, -39.702129364 586343.399204, 4140692.86309, -28.2216851385, 4.55833339691, 0.785228069676, -0.0724237117423, 0.0, 1496957387.0639, 1.59251862099, 1, 48.3126944029, 22.554359436, 13.6659803391, -39.702129364 586343.401122, 4140692.91444, -28.2220671941, 4.56388902664, 0.719516048273, -0.0710679523838, 0.0297062297231, 1496957387.0745, 1.58905680956, 1, 48.3583332932, 22.3834590912, 13.6659803391, -38.9787216187 586343.405812, 4140692.962, -28.2225506464, 4.56388902664, 0.727487746103, -0.0710679523838, 0.0, 1496957387.0841, 1.57505333623, 1, 48.4039721835, 22.3834590912, 13.6156253815, -38.9787216187 586343.409352, 4140693.00904, -28.2228939757, 4.56944465637, 0.7167728961, -0.0689188696465, 0.0470315957167, 1496957387.0936, 1.57165270401, 1, 48.44966663, 22.4200801849, 13.6156253815, -37.829788208 586343.413048, 4140693.05613, -28.2232410721, 4.56944465637, 0.649872506583, -0.0689188696465, 0.0, 1496957387.1042, 1.5682244614, 1, 48.4953610766, 22.4200801849, 13.655298233, -37.829788208 586343.416946, 4140693.10331, -28.2234982373, 4.57777786255, 0.706672600402, -0.0675286031215, 0.0303698992551, 1496957387.1136, 1.56483545272, 1, 48.5411388552, 22.3834590912, 13.655298233, -37.085105896 586343.421036, 4140693.15054, -28.2237608684, 4.57777786255, 0.655943577245, -0.0675286031215, 0.0, 1496957387.1242, 1.56144613263, 1, 48.5869166338, 22.3834590912, 13.6308841705, -37.085105896 586343.425328, 4140693.19784, -28.2240394112, 4.58611106873, 0.656673818581, -0.0661007480344, 0.0311343328952, 1496957387.1337, 1.55812170829, 1, 48.6327777445, 22.3590450287, 13.6308841705, -36.3191490173 586343.429806, 4140693.24522, -28.2243321147, 4.58611106873, 0.737840945176, -0.0661007480344, 0.0, 1496957387.1442, 1.55484332197, 1, 48.6786388552, 22.3590450287, 13.6156253815, -36.3191490173 586343.434525, 4140693.29271, -28.224694496, 4.5944442749, 0.842692214413, -0.0645958573501, 0.0327545747486, 1496957387.1538, 1.55158969734, 1, 48.724583298, 22.3590450287, 13.6156253815, -35.5106391907 586343.439418, 4140693.34017, -28.2249886142, 4.5944442749, 0.447813620445, -0.0645958573501, 0.0, 1496957387.1643, 1.54844551446, 1, 48.7705277407, 22.3590450287, 13.699549675, -35.5106391907 586343.444487, 4140693.38771, -28.2254114412, 4.60277795792, 0.594468919574, -0.0630537468665, 0.0335039078089, 1496957387.1738, 1.54528620977, 1, 48.8165555203, 22.3468379974, 13.699549675, -34.6808509827 586343.449749, 4140693.43536, -28.2258750321, 4.60277795792, 0.795074097571, -0.0630537468665, 0.0, 1496957387.1843, 1.54213617588, 1, 48.8625832999, 22.3468379974, 13.5866327286, -34.6808509827 586343.455229, 4140693.48306, -28.2263706876, 4.61388874054, 0.727713728805, -0.0615534477034, 0.0325170208344, 1496957387.1939, 1.53903297546, 1, 48.9087221873, 22.3590450287, 13.5866327286, -33.872341156 586343.460933, 4140693.53088, -28.2269245936, 4.61388874054, 0.989991676183, -0.0615534477034, 0.0, 1496957387.2045, 1.53598259353, 1, 48.9548610747, 22.3590450287, 13.6247806549, -33.872341156 586343.46685, 4140693.57871, -28.2275481205, 4.625, 0.698617000711, -0.0600159303292, 0.0332436189031, 1496957387.2140, 1.53302306274, 1, 49.0011110747, 22.3956661224, 13.6247806549, -33.042552948 586343.47293, 4140693.62659, -28.228153755, 4.625, 0.59630659649, -0.0600159303292, 0.0, 1496957387.2245, 1.53009104574, 1, 49.0473610747, 22.3956661224, 13.6095218658, -33.042552948 586343.479215, 4140693.67452, -28.2288877787, 4.63333320618, 0.576490311505, -0.0585199909586, 0.0322864621211, 1496957387.2341, 1.5271884499, 1, 49.0936944067, 22.3590450287, 13.6095218658, -32.2340431213 586343.485687, 4140693.72255, -28.2296788134, 4.63333320618, 0.751471366994, -0.0585199909586, 0.0, 1496957387.2435, 1.52435264899, 1, 49.1400277388, 22.3590450287, 13.6430912018, -32.2340431213 586343.492309, 4140693.77068, -28.2305406295, 4.64722204208, 0.956195306491, -0.0569475467567, 0.0338362184478, 1496957387.2539, 1.52157382656, 1, 49.1864999592, 22.3468379974, 13.6430912018, -31.3829784393 586343.4991, 4140693.81885, -28.2314985897, 4.64722204208, 0.900220312936, -0.0569475467567, 0.0, 1496957387.2645, 1.51873965572, 1, 49.2329721797, 22.3468379974, 13.6461429596, -31.3829784393 586343.506042, 4140693.86714, -28.2323939288, 4.66388893127, 0.894488949569, -0.0554165602218, 0.03282639354, 1496957387.2740, 1.5159978659, 1, 49.279611069, 22.2980079651, 13.6461429596, -30.5531921387 586343.51318, 4140693.91545, -28.2334303446, 4.66388893127, 0.758757146814, -0.0554165602218, 0.0, 1496957387.2846, 1.51327529885, 1, 49.3262499583, 22.2980079651, 13.6186771393, -30.5531921387 586343.520425, 4140693.96386, -28.2344310964, 4.67777776718, 0.760156924196, -0.053926804125, 0.031847517581, 1496957387.2941, 1.51055006946, 1, 49.3730277359, 22.1759357452, 13.6186771393, -29.7446804047 586343.527848, 4140694.01232, -28.2354633138, 4.67777776718, 0.756193056454, -0.053926804125, 0.0, 1496957387.3036, 1.5078935792, 1, 49.4198055136, 22.1759357452, 13.6369876862, -29.7446804047 586343.535408, 4140694.06084, -28.2364501785, 4.68333339691, 0.760478630563, -0.0523998197209, 0.0326046487552, 1496957387.3142, 1.50525208909, 1, 49.4666388476, 22.0294494629, 13.6369876862, -28.914894104 586343.543072, 4140694.10939, -28.237483209, 4.68333339691, 0.516186837527, -0.0523998197209, 0.0, 1496957387.3237, 1.50264526543, 1, 49.5134721816, 22.0294494629, 13.6659803391, -28.914894104 586343.550882, 4140694.15804, -28.2383887572, 4.69166660309, 0.684342524887, -0.0509529317126, 0.0308395316786, 1496957387.3342, 1.50008268194, 1, 49.5603888476, 22.0172424316, 13.6659803391, -28.127658844 586343.558806, 4140694.20673, -28.2393035255, 4.69166660309, 0.655255347206, -0.0509529317126, 0.0, 1496957387.3438, 1.49753076061, 1, 49.6073055136, 22.0172424316, 13.640039444, -28.127658844 586343.566883, 4140694.25549, -28.2401408944, 4.70277786255, 0.715566496345, -0.0495077422698, 0.0307305487322, 1496957387.3542, 1.49496444973, 1, 49.6543332922, 22.0172424316, 13.640039444, -27.3404254913 586343.575046, 4140694.3043, -28.2407743363, 4.70277786255, 0.574285362198, -0.0495077422698, 0.0, 1496957387.3638, 1.49247864908, 1, 49.7013610709, 22.0172424316, 13.667506218, -27.3404254913 586343.583354, 4140694.35316, -28.2416035617, 4.71388912201, 0.63629482079, -0.0481421857204, 0.0289687880655, 1496957387.3743, 1.48999811865, 1, 49.7484999621, 21.9440002441, 13.667506218, -26.5957450867 586343.591804, 4140694.40209, -28.2422176944, 4.71388912201, 0.637522358303, -0.0481421857204, 0.0, 1496957387.3838, 1.48751866304, 1, 49.7956388533, 21.9440002441, 13.6446170807, -26.5957450867 586343.600384, 4140694.45108, -28.2429584041, 4.7194442749, 0.721080276078, -0.0467391013405, 0.0297298643275, 1496957387.3943, 1.48510218249, 1, 49.8428332961, 21.8707561493, 13.6446170807, -25.8297863007 586343.609072, 4140694.50013, -28.2434612932, 4.7194442749, 0.703592262696, -0.0467391013405, 0.0, 1496957387.4039, 1.48269805979, 1, 49.8900277388, 21.8707561493, 13.5866327286, -25.8297863007 586343.617906, 4140694.54922, -28.2440923871, 4.72777795792, 0.633534098462, -0.0453374875998, 0.0296463529624, 1496957387.4136, 1.48033584707, 1, 49.9373055184, 21.8448162079, 13.5866327286, -25.063829422 586343.626857, 4140694.59839, -28.2444805773, 4.72777795792, 0.653604775724, -0.0453374875998, 0.0, 1496957387.4242, 1.47799621963, 1, 49.984583298, 21.8448162079, 13.6476688385, -25.063829422 586343.635951, 4140694.64757, -28.2448862055, 4.73333311081, 0.531106956216, -0.0439761707756, 0.0287602159477, 1496957387.4336, 1.47572309574, 1, 50.0319166291, 21.858549118, 13.6476688385, -24.3191490173 586343.645179, 4140694.69682, -28.2452653889, 4.73333311081, 0.537457908765, -0.0439761707756, 0.0, 1496957387.4442, 1.47345137095, 1, 50.0792499602, 21.858549118, 13.6110477448, -24.3191490173 586343.654474, 4140694.74603, -28.2454655431, 4.73333311081, 0.225773855157, -0.042654995801, 0.0279121486627, 1496957387.4538, 1.47124423315, 1, 50.1265832913, 21.771572113, 13.6110477448, -23.5957450867 586343.66393, 4140694.79533, -28.245810993, 4.73333311081, 0.491908439178, -0.042654995801, 0.0, 1496957387.4643, 1.46902160505, 1, 50.1739166224, 21.771572113, 13.6629285812, -23.5957450867 586343.673531, 4140694.84466, -28.2459693039, 4.73333311081, 0.47070483114, -0.04133501165, 0.0278869904167, 1496957387.4738, 1.46677021619, 1, 50.2212499535, 21.8204021454, 13.6629285812, -22.872341156 586343.683252, 4140694.89407, -28.2462517796, 4.73333311081, 0.692840766503, -0.04133501165, 0.0, 1496957387.4843, 1.46463821931, 1, 50.2685832846, 21.8204021454, 13.6919202805, -22.872341156 586343.69314, 4140694.94348, -28.246425081, 4.73611116409, 0.467415276078, -0.040093727106, 0.0262089402247, 1496957387.4938, 1.46244589292, 1, 50.3159443963, 21.9317913055, 13.6919202805, -22.1914901733 586343.70307, 4140694.99279, -28.2464577742, 4.73611116409, -0.13908106532, -0.040093727106, 0.0, 1496957387.5043, 1.46030097757, 1, 50.3633055079, 21.9317913055, 13.6125736237, -22.1914901733 586343.72321, 4140695.09167, -28.2467013216, 4.75277757645, 0.539067745891, -0.0388921767093, 0.0252810146774, 1496957387.5138, 1.45602858389, 1, 50.4108332837, 21.8570232391, 13.6125736237, -21.5319156647 586343.72321, 4140695.09167, -28.2467013216, 4.75277757645, 0.539067745891, -0.0388921767093, 0.0, 1496957387.5243, 1.45602858389, 1, 50.4583610594, 21.8570232391, 13.6247806549, -21.5319156647 586343.73347, 4140695.14128, -28.2466596048, 4.7805557251, 0.988975998716, -0.0378851190996, 0.0210657017219, 1496957387.5338, 1.45391072932, 1, 50.5061666167, 21.8814373016, 13.6247806549, -20.978723526 586343.743899, 4140695.19086, -28.2468691561, 4.7805557251, 0.767240175745, -0.0378851190996, 0.0, 1496957387.5443, 1.45186902595, 1, 50.5539721739, 21.8814373016, 13.5820550919, -20.978723526 586343.75438, 4140695.24052, -28.2467779825, 4.80000019073, 0.5998610926, -0.0369947741594, 0.0185488521848, 1496957387.5539, 1.44996169394, 1, 50.6019721758, 21.8692302704, 13.5820550919, -20.4893608093 586343.764916, 4140695.29018, -28.2469148366, 4.80000019073, 0.455939002278, -0.0369947741594, 0.0, 1496957387.5644, 1.44806189982, 1, 50.6499721777, 21.8692302704, 13.6385135651, -20.4893608093 586343.775473, 4140695.3399, -28.2469636519, 4.80277776718, 0.373579074296, -0.0361049036051, 0.0185282475572, 1496957387.5743, 1.44612341981, 1, 50.6979999554, 21.8707561493, 13.6385135651, -20.0 586343.786171, 4140695.38971, -28.2471673023, 4.80277776718, 0.699984908188, -0.0361049036051, 0.0, 1496957387.5838, 1.44422096151, 1, 50.7460277331, 21.8707561493, 13.579003334, -20.0 586343.796965, 4140695.43956, -28.2474461216, 4.80555534363, 0.804777645433, -0.035486133775, 0.0128761357592, 1496957387.5944, 1.442350121, 1, 50.7940832865, 21.8570232391, 13.579003334, -19.6595745087 586343.80785, 4140695.48947, -28.2477279305, 4.80555534363, 0.676479429927, -0.035486133775, 0.0, 1496957387.6039, 1.44052967711, 1, 50.84213884, 21.8570232391, 13.667506218, -19.6595745087 586343.818876, 4140695.53941, -28.2480470045, 4.81388902664, 0.621326648622, -0.0349835436353, 0.0104404180682, 1496957387.6145, 1.43873066903, 1, 50.8902777302, 22.0050354004, 13.667506218, -19.3829784393 586343.83, 4140695.58942, -28.2484365972, 4.81388902664, 0.649293261267, -0.0349835436353, 0.0, 1496957387.6242, 1.43692422048, 1, 50.9384166205, 22.0050354004, 13.6507205963, -19.3829784393 586343.841281, 4140695.63949, -28.2489313129, 4.82222223282, 0.787443223012, -0.0346356823809, 0.00721371263419, 1496957387.6337, 1.43517988213, 1, 50.9866388428, 21.8570232391, 13.6507205963, -19.1914901733 586343.852627, 4140695.68958, -28.2494227383, 4.82222223282, 0.586463774811, -0.0346356823809, 0.0, 1496957387.6442, 1.43346846878, 1, 51.0348610651, 21.8570232391, 13.6079959869, -19.1914901733 586343.864052, 4140695.73971, -28.2500444176, 4.82777786255, 0.559620962502, -0.034287885078, 0.00720408669835, 1496957387.6538, 1.43174692221, 1, 51.0831388438, 21.8570232391, 13.6079959869, -19.0 586343.875632, 4140695.78988, -28.250735851, 4.82777786255, 0.539862356036, -0.034287885078, 0.0, 1496957387.6644, 1.43002119516, 1, 51.1314166224, 21.8570232391, 13.6491947174, -19.0 586343.887306, 4140695.84009, -28.2514379565, 4.83611106873, 0.533388954549, -0.0341333314979, 0.00319582362559, 1496957387.6739, 1.42838133069, 1, 51.1797777331, 21.8692302704, 13.6491947174, -18.914894104 586343.899125, 4140695.89034, -28.2522226637, 4.83611106873, 0.605801862247, -0.0341333314979, 0.0, 1496957387.6844, 1.42669555888, 1, 51.2281388438, 21.8692302704, 13.5912103653, -18.914894104 586343.911065, 4140695.94064, -28.2530175252, 4.84722232819, 0.588171997875, -0.0340174249261, 0.00239119569947, 1496957387.6940, 1.42507664858, 1, 51.2766110671, 21.8448162079, 13.5912103653, -18.851064682 586343.923079, 4140695.99095, -28.2538015312, 4.84722232819, 0.467934271498, -0.0340174249261, 0.0, 1496957387.7045, 1.4234501253, 1, 51.3250832903, 21.8448162079, 13.6110477448, -18.851064682 586343.935218, 4140696.04131, -28.2546220776, 4.85833311081, 0.462557094915, -0.0338628908029, 0.0031808054253, 1496957387.7139, 1.42183892573, 1, 51.3736666214, 21.8707561493, 13.6110477448, -18.7659568787 586343.947483, 4140696.09167, -28.2553747799, 4.85833311081, 0.392554500295, -0.0338628908029, 0.0, 1496957387.7245, 1.42020308383, 1, 51.4222499526, 21.8707561493, 13.6110477448, -18.7659568787 586343.959815, 4140696.14202, -28.256178733, 4.86944437027, 0.282797253136, -0.033669745772, 0.00396646960497, 1496957387.7340, 1.41860144626, 1, 51.4709443963, 21.7837791443, 13.6110477448, -18.6595745087 586343.972256, 4140696.1925, -28.2569076419, 4.86944437027, 0.505095163731, -0.033669745772, 0.0, 1496957387.7446, 1.4169684029, 1, 51.51963884, 21.7837791443, 13.6018924713, -18.6595745087 586343.984815, 4140696.24295, -28.2575917654, 4.87777757645, 0.464259730345, -0.0335152443087, 0.00316745609898, 1496957387.7541, 1.41524641995, 1, 51.5684166157, 21.771572113, 13.6018924713, -18.5744686127 586343.997492, 4140696.29346, -28.2582851704, 4.87777757645, 0.504525383027, -0.0335152443087, 0.0, 1496957387.7646, 1.41360792145, 1, 51.6171943915, 21.771572113, 13.6644544601, -18.5744686127 586344.010318, 4140696.34395, -28.2589826025, 4.88611125946, 0.363669661774, -0.03343799841, 0.00158092795191, 1496957387.7741, 1.41193005456, 1, 51.6660555041, 21.7105369568, 13.6644544601, -18.5319156647 586344.023223, 4140696.3945, -28.2597148949, 4.88611125946, 0.444501798578, -0.03343799841, 0.0, 1496957387.7835, 1.41030337103, 1, 51.7149166167, 21.7105369568, 13.6202030182, -18.5319156647 586344.036213, 4140696.44505, -28.260444575, 4.89166688919, 0.362501713211, -0.0332835127789, 0.00315813882279, 1496957387.7941, 1.40866639771, 1, 51.7638332856, 21.6372928619, 13.6202030182, -18.4468078613 586344.049298, 4140696.49564, -28.2610618807, 4.89166688919, 0.365955096863, -0.0332835127789, 0.0, 1496957387.8035, 1.40701910066, 1, 51.8127499545, 21.6372928619, 13.5942630768, -18.4468078613 586344.062436, 4140696.54624, -28.2617277205, 4.89722204208, 0.342322173003, -0.0331676595473, 0.00236569284833, 1496957387.8140, 1.40533014805, 1, 51.8617221749, 21.5762577057, 13.5942630768, -18.3829784393 586344.075696, 4140696.59688, -28.2623288175, 4.89722204208, 0.328867954249, -0.0331676595473, 0.0, 1496957387.8245, 1.40364267592, 1, 51.9106943953, 21.5762577057, 13.6125736237, -18.3829784393 586344.089042, 4140696.6475, -28.2629242912, 4.90277767181, 0.28552740456, -0.033090428043, 0.00157526017825, 1496957387.8340, 1.40195576153, 1, 51.959722172, 21.5640506744, 13.6125736237, -18.3404254913 586344.102509, 4140696.69819, -28.2636884395, 4.90277767181, 0.480656110194, -0.033090428043, 0.0, 1496957387.8445, 1.40027385158, 1, 52.0087499487, 21.5640506744, 13.6049442291, -18.3404254913 586344.116091, 4140696.74893, -28.2643052433, 4.91111087799, 0.591826524193, -0.0330518134831, 0.000786269357398, 1496957387.8540, 1.39855011041, 1, 52.0578610575, 21.5640506744, 13.6049442291, -18.3191490173 586344.12978, 4140696.79968, -28.2649974693, 4.91111087799, 0.513316959395, -0.0330518134831, 0.0, 1496957387.8646, 1.39682947933, 1, 52.1069721663, 21.5640506744, 13.606470108, -18.3191490173 586344.143617, 4140696.85046, -28.2657235982, 4.92222213745, 0.503157304778, -0.0330131997167, 0.000784478337588, 1496957387.8740, 1.39517794739, 1, 52.1561943877, 21.2710762024, 13.606470108, -18.2978725433 586344.157508, 4140696.90127, -28.2662947746, 4.92222213745, 0.49678182039, -0.0330131997167, 0.0, 1496957387.8845, 1.39352657668, 1, 52.205416609, 21.2710762024, 13.6476688385, -18.2978725433 586344.17156, 4140696.95212, -28.2669065846, 4.92777776718, 0.407277163563, -0.0328973631693, 0.00235068529515, 1496957387.8941, 1.39181697869, 1, 52.2546943867, 20.8560314178, 13.6476688385, -18.2340431213 586344.185667, 4140697.00298, -28.2675308278, 4.92777776718, 0.383818195124, -0.0328973631693, 0.0, 1496957387.9035, 1.39012030929, 1, 52.3039721644, 20.8560314178, 13.6034183502, -18.2340431213 586344.199959, 4140697.05391, -28.2680797931, 4.93888902664, 0.64587314551, -0.0328973631693, 0.0, 1496957387.9146, 1.38840610054, 1, 52.3533610547, 20.4287776947, 13.6034183502, -18.2340431213 586344.214306, 4140697.10482, -28.2687138896, 4.93888902664, 0.467676308279, -0.0328973631693, 0.0, 1496957387.9241, 1.38671406056, 1, 52.4027499449, 20.4287776947, 13.5576410294, -18.2340431213 586344.228756, 4140697.15577, -28.2693236982, 4.94444465637, 0.417103037071, -0.0327815337299, 0.0023426177751, 1496957387.9346, 1.3850106571, 1, 52.4521943915, 20.0747699738, 13.5576410294, -18.1702136993 586344.243301, 4140697.20677, -28.2700195517, 4.94444465637, 0.506878637548, -0.0327815337299, 0.0, 1496957387.9442, 1.38328809934, 1, 52.5016388381, 20.0747699738, 13.667506218, -18.1702136993 586344.257924, 4140697.25783, -28.2708758125, 4.955555439, 0.61803858945, -0.0326657079121, 0.00233729234251, 1496957387.9538, 1.38159318307, 1, 52.5511943924, 19.5620651245, 13.667506218, -18.10638237 586344.272632, 4140697.30892, -28.2716092253, 4.955555439, 0.597372436006, -0.0326657079121, 0.0, 1496957387.9643, 1.37989601511, 1, 52.6007499468, 19.5620651245, 13.6140995026, -18.10638237 586344.287381, 4140697.36006, -28.2725817524, 4.96666669846, 0.582110436176, -0.0325112890764, 0.00310910405501, 1496957387.9738, 1.3781756677, 1, 52.6504166138, 19.1226062775, 13.6140995026, -18.021276474 586344.302241, 4140697.41124, -28.2735406458, 4.96666669846, 0.61964525111, -0.0325112890764, 0.0, 1496957387.9843, 1.37646780052, 1, 52.7000832808, 19.1226062775, 13.5988407135, -18.021276474 586344.317181, 4140697.46245, -28.2745976457, 4.97222232819, 0.592739067274, -0.0323182830825, 0.00388168471187, 1496957387.9939, 1.3747441032, 1, 52.7498055041, 18.6205844879, 13.5988407135, -17.914894104 586344.332174, 4140697.51373, -28.2757267971, 4.97222232819, 0.681982814967, -0.0323182830825, 0.0, 1496957388.0044, 1.37309770239, 1, 52.7995277274, 18.6205844879, 13.6263065338, -17.914894104 586344.347219, 4140697.56503, -28.2768405629, 4.98333311081, 0.473151004002, -0.0320481037814, 0.00542165845699, 1496957388.0139, 1.37134018053, 1, 52.8493610585, 17.8637371063, 13.6263065338, -17.7659568787 586344.362383, 4140697.61633, -28.2777107824, 4.98333311081, 0.503691748984, -0.0320481037814, 0.0, 1496957388.0244, 1.3696632226, 1, 52.8991943896, 17.8637371063, 13.5713739395, -17.7659568787 586344.377535, 4140697.66764, -28.2787302984, 5.00277757645, 0.15703010533, -0.0316622035832, 0.00771371887554, 1496957388.0339, 1.36794765803, 1, 52.9492221653, 16.7162590027, 13.5713739395, -17.5531921387 586344.392854, 4140697.71903, -28.2795968726, 5.00277757645, 0.408941718737, -0.0316622035832, 0.0, 1496957388.0445, 1.3662010061, 1, 52.9992499411, 16.7162590027, 13.6293582916, -17.5531921387 586344.408215, 4140697.77045, -28.2804104965, 5.01666688919, 0.542492640558, -0.0311606432917, 0.00999787912121, 1496957388.0541, 1.36453144326, 1, 53.04941661, 16.1303119659, 13.6293582916, -17.2765960693 586344.423683, 4140697.82187, -28.2811945863, 5.01666688919, 0.395127613717, -0.0311606432917, 0.0, 1496957388.0635, 1.36278453565, 1, 53.0995832789, 16.1303119659, 13.6369876862, -17.2765960693 586344.439293, 4140697.87338, -28.2818623055, 5.02500009537, 0.57844708131, -0.0306592093141, 0.00997878543371, 1496957388.0740, 1.36117361512, 1, 53.1498332798, 15.6908521652, 13.6369876862, -17.0 586344.454099, 4140697.92543, -28.2824572073, 5.02500009537, 0.540361512363, -0.0306592093141, 0.0, 1496957388.0844, 1.35929233763, 1, 53.2000832808, 15.6908521652, 13.6003665924, -17.0 586344.468114, 4140697.97814, -28.2830523271, 5.02777767181, 0.339721260774, -0.0300422309516, 0.0122713931056, 1496957388.0939, 1.35770653767, 1, 53.2503610575, 15.2635993958, 13.6003665924, -16.6595745087 586344.482215, 4140698.03088, -28.2834648779, 5.02777767181, 0.321805495193, -0.0300422309516, 0.0, 1496957388.1044, 1.35604979212, 1, 53.3006388342, 15.2635993958, 13.5851068497, -16.6595745087 586344.496423, 4140698.08365, -28.2838990735, 5.03333330154, 0.331704783863, -0.0293868935842, 0.013019947778, 1496957388.1140, 1.35439070113, 1, 53.3509721673, 15.4589147568, 13.5851068497, -16.2978725433 586344.510715, 4140698.13639, -28.2841920312, 5.03333330154, 0.213283153673, -0.0293868935842, 0.0, 1496957388.1245, 1.35274008044, 1, 53.4013055003, 15.4589147568, 13.5896844864, -16.2978725433 586344.525114, 4140698.18915, -28.2843731074, 5.0305557251, 0.178792839011, -0.0286932271806, 0.0137890611204, 1496957388.1341, 1.3511079128, 1, 53.4516110575, 15.2635993958, 13.5896844864, -15.9148931503 586344.539576, 4140698.24191, -28.2846667729, 5.0305557251, 0.179068188387, -0.0286932271806, 0.0, 1496957388.1435, 1.34952142571, 1, 53.5019166148, 15.2635993958, 13.6308841705, -15.9148931503 586344.55414, 4140698.29475, -28.2847723989, 5.03888893127, 0.447164607576, -0.0279997852271, 0.013761802709, 1496957388.1541, 1.3479244409, 1, 53.5523055041, 15.2635993958, 13.6308841705, -15.531914711 586344.568793, 4140698.34753, -28.2849091468, 5.03888893127, 0.245509225862, -0.0279997852271, 0.0, 1496957388.1635, 1.34638951719, 1, 53.6026943934, 15.2635993958, 13.6247806549, -15.531914711 586344.583469, 4140698.40036, -28.285096962, 5.044444561, 0.272055127227, -0.027191044414, 0.0160323064967, 1496957388.1741, 1.34485169102, 1, 53.653138839, 15.2880144119, 13.6247806549, -15.0851068497 586344.598254, 4140698.45324, -28.2851797333, 5.044444561, 0.457264911766, -0.027191044414, 0.0, 1496957388.1845, 1.34334374841, 1, 53.7035832846, 15.2880144119, 13.580529213, -15.0851068497 586344.613104, 4140698.50608, -28.285372315, 5.05000019073, 0.282923131273, -0.0263825889602, 0.0160090182825, 1496957388.1940, 1.34182452762, 1, 53.7540832865, 15.3246355057, 13.580529213, -14.6382980347 586344.628128, 4140698.55896, -28.2853952944, 5.05000019073, 0.3977299328, -0.0263825889602, 0.0, 1496957388.2046, 1.34031901473, 1, 53.8045832884, 15.3246355057, 13.6339359283, -14.6382980347 586344.643198, 4140698.61185, -28.2854125043, 5.05277776718, 0.241392457643, -0.0256128901449, 0.0152331816435, 1496957388.2141, 1.33888703432, 1, 53.8551110661, 15.3368425369, 13.6339359283, -14.2127656937 586344.658438, 4140698.66473, -28.2851477312, 5.05277776718, 0.195654754397, -0.0256128901449, 0.0, 1496957388.2236, 1.33746547991, 1, 53.9056388438, 15.3368425369, 13.5988407135, -14.2127656937 586344.673731, 4140698.71753, -28.2851551622, 5.05555534363, -0.0769977376901, -0.0248434381709, 0.0152199297949, 1496957388.2341, 1.33609127879, 1, 53.9561943972, 15.2880144119, 13.5988407135, -13.7872343063 586344.689188, 4140698.77039, -28.2848491957, 5.05555534363, 0.121142334181, -0.0248434381709, 0.0, 1496957388.2435, 1.33474038871, 1, 54.0067499506, 15.2880144119, 13.6354618073, -13.7872343063 586344.70472, 4140698.82321, -28.2848244738, 5.05833339691, 0.176833467797, -0.0240357677142, 0.0159671257953, 1496957388.2540, 1.33342758862, 1, 54.0573332846, 15.3002214432, 13.6354618073, -13.3404254913 586344.720339, 4140698.87609, -28.284576159, 5.05833339691, 0.342925715918, -0.0240357677142, 0.0, 1496957388.2645, 1.33214502303, 1, 54.1079166186, 15.3002214432, 13.579003334, -13.3404254913 586344.73607, 4140698.92895, -28.2844459666, 5.06111097336, 0.347433710781, -0.0233052381038, 0.014434174914, 1496957388.2742, 1.33089034162, 1, 54.1585277283, 15.3002214432, 13.579003334, -12.936170578 586344.751906, 4140698.98177, -28.284379065, 5.06111097336, 0.169193388775, -0.0233052381038, 0.0, 1496957388.2837, 1.32966508566, 1, 54.2091388381, 15.3002214432, 13.6018924713, -12.936170578 586344.76782, 4140699.03467, -28.2843625005, 5.06388902664, 0.302485751058, -0.0225749078732, 0.0144223190271, 1496957388.2942, 1.3284581129, 1, 54.2597777283, 15.275806427, 13.6018924713, -12.531914711 586344.783781, 4140699.08758, -28.2844037535, 5.06388902664, 0.456227861228, -0.0225749078732, 0.0, 1496957388.3037, 1.32724720783, 1, 54.3104166186, 15.275806427, 13.6079959869, -12.531914711 586344.799877, 4140699.14048, -28.2844675435, 5.06666660309, 0.319282490144, -0.0218831972723, 0.0136521830831, 1496957388.3142, 1.32606573012, 1, 54.3610832846, 15.2880144119, 13.6079959869, -12.1489362717 586344.816029, 4140699.19339, -28.2845503818, 5.06666660309, 0.325634423097, -0.0218831972723, 0.0, 1496957388.3238, 1.32494442892, 1, 54.4117499506, 15.2880144119, 13.6125736237, -12.1489362717 586344.832206, 4140699.24634, -28.2844840251, 5.07499980927, 0.301326893385, -0.0211532404328, 0.014383386541, 1496957388.3342, 1.32383004561, 1, 54.4624999487, 15.3612575531, 13.6125736237, -11.7446804047 586344.848505, 4140699.29923, -28.2845681468, 5.07499980927, 0.0763144855419, -0.0211532404328, 0.0, 1496957388.3437, 1.32266193092, 1, 54.5132499468, 15.3612575531, 13.6125736237, -11.7446804047 586344.864794, 4140699.35214, -28.2845451348, 5.07222223282, 0.079386450863, -0.0204618721721, 0.0136304804663, 1496957388.3543, 1.32163617369, 1, 54.5639721692, 15.2635993958, 13.6125736237, -11.3617019653 586344.88118, 4140699.40508, -28.2846687092, 5.07222223282, 0.196848129207, -0.0204618721721, 0.0, 1496957388.3638, 1.32055194717, 1, 54.6146943915, 15.2635993958, 13.6537723541, -11.3617019653 586344.897645, 4140699.45802, -28.2846867265, 5.06944465637, 0.267558479938, -0.0197706622221, 0.0136348258415, 1496957388.3744, 1.31946725855, 1, 54.6653888381, 15.2635993958, 13.6537723541, -10.978723526 586344.914209, 4140699.51094, -28.2846170217, 5.06944465637, 0.141413566265, -0.0197706622221, 0.0, 1496957388.3845, 1.31845073094, 1, 54.7160832846, 15.2635993958, 13.5835809708, -10.978723526 586344.930884, 4140699.56386, -28.2846678756, 5.07222223282, 0.288766560321, -0.0191179931455, 0.0128675173652, 1496957388.3941, 1.31746245431, 1, 54.7668055069, 15.3368425369, 13.5835809708, -10.6170215607 586344.947622, 4140699.61676, -28.2844287604, 5.07222223282, 0.0378009274395, -0.0191179931455, 0.0, 1496957388.4052, 1.31643772097, 1, 54.8175277293, 15.3368425369, 13.6217288971, -10.6170215607 586344.964436, 4140699.66964, -28.2844899716, 5.07499980927, 0.134992413095, -0.0184270738982, 0.0136141728716, 1496957388.4145, 1.31545020978, 1, 54.8682777274, 15.3002214432, 13.6217288971, -10.2340421677 586344.981354, 4140699.72255, -28.2843943173, 5.07499980927, 0.157505648022, -0.0184270738982, 0.0, 1496957388.4240, 1.31445923745, 1, 54.9190277255, 15.3002214432, 13.5774774551, -10.2340421677 586344.99835, 4140699.77546, -28.2843537917, 5.07499980927, 0.25263527459, -0.0184270738982, 0.0, 1496957388.4345, 1.31349783498, 1, 54.9697777236, 15.3368425369, 13.5774774551, -10.2340421677 586345.015393, 4140699.82835, -28.2843683641, 5.07499980927, 0.176597041943, -0.017736298848, 0.0136113315509, 1496957388.4440, 1.31254731234, 1, 55.0205277216, 15.3368425369, 13.6415653229, -9.85106372833 586345.03251, 4140699.88125, -28.2844350962, 5.07499980927, 0.168987759944, -0.017736298848, 0.0, 1496957388.4546, 1.31157551118, 1, 55.0712777197, 15.3734645844, 13.6415653229, -9.85106372833 586345.049688, 4140699.93413, -28.2844681926, 5.07499980927, 0.106870805506, -0.0170072962341, 0.0143645840637, 1496957388.4642, 1.31065266779, 1, 55.1220277178, 15.3734645844, 13.5698480606, -9.446808815 586345.066902, 4140699.98701, -28.2846369976, 5.07499980927, 0.0458894922073, -0.0170072962341, 0.0, 1496957388.4736, 1.30973638424, 1, 55.1727777159, 15.3246355057, 13.5698480606, -9.446808815 586345.084155, 4140700.03986, -28.2846744033, 5.07777786255, -0.0765281446157, -0.0163167954771, 0.0135984829531, 1496957388.4842, 1.30883786842, 1, 55.2235554945, 15.3246355057, 13.6507205963, -9.063829422 586345.101459, 4140700.09273, -28.2848756593, 5.080555439, 0.122055440649, -0.0156264225246, 0.0135885330011, 1496957388.4938, 1.30799132494, 1, 55.2743610489, 15.3124284744, 13.6507205963, -8.68085098267 586345.118834, 4140700.14563, -28.2851209827, 5.080555439, 0.319396673082, -0.0156264225246, 0.0, 1496957388.5043, 1.30707777413, 1, 55.3251666033, 15.3124284744, 13.6308841705, -8.68085098267 586345.136281, 4140700.19855, -28.2853818927, 5.08611106873, 0.322588560325, -0.015012858815, 0.0120635137806, 1496957388.5138, 1.30623029077, 1, 55.376027714, 15.3002214432, 13.6308841705, -8.34042549133 586345.153747, 4140700.25144, -28.2857440086, 5.08611106873, 0.226021926609, -0.015012858815, 0.0, 1496957388.5244, 1.30536231887, 1, 55.4268888247, 15.3002214432, 13.6598768234, -8.34042549133 586345.171291, 4140700.30434, -28.2861068565, 5.08888912201, 0.187809863761, -0.014476065434, 0.0105483410638, 1496957388.5339, 1.30453530297, 1, 55.4777777159, 15.3368425369, 13.6598768234, -8.042552948 586345.188884, 4140700.35724, -28.2865421763, 5.08888912201, 0.173945158488, -0.014476065434, 0.0, 1496957388.5444, 1.3037351235, 1, 55.5286666071, 15.3368425369, 13.5912103653, -8.042552948 586345.206561, 4140700.41014, -28.2869603578, 5.08888912201, 0.173558510347, -0.0139776756684, 0.00979368490138, 1496957388.5540, 1.30288663408, 1, 55.5795554984, 15.2880144119, 13.5912103653, -7.7659573555 586345.224306, 4140700.46303, -28.2875086861, 5.08888912201, 0.169855011915, -0.0139776756684, 0.0, 1496957388.5646, 1.30213219965, 1, 55.6304443896, 15.2880144119, 13.6476688385, -7.7659573555 586345.242087, 4140700.51595, -28.2880652379, 5.08888912201, 0.244151430142, -0.0139776756684, 0.0, 1496957388.5741, 1.30139091236, 1, 55.6813332808, 15.2635993958, 13.6476688385, -7.7659573555 586345.259948, 4140700.56885, -28.2887021573, 5.09722232819, 0.191991481832, -0.0135943376102, 0.00752052850678, 1496957388.5836, 1.30062965126, 1, 55.7323055041, 15.2635993958, 13.6446170807, -7.55319166183 586345.277863, 4140700.62173, -28.2893476179, 5.09722232819, 0.0769745010907, -0.0132876901924, 0.00601597101366, 1496957388.5942, 1.29989112358, 1, 55.7832777274, 15.3246355057, 13.6446170807, -7.38297891617 586345.295823, 4140700.67464, -28.2900193967, 5.09722232819, 0.129998112578, -0.0132876901924, 0.0, 1496957388.6036, 1.29919579678, 1, 55.8342499506, 15.3246355057, 13.640039444, -7.38297891617 586345.313796, 4140700.72752, -28.2907736516, 5.09722232819, 0.0497688033796, -0.0130193901287, 0.00526365236653, 1496957388.6142, 1.29848226346, 1, 55.8852221739, 15.2880144119, 13.640039444, -7.2340426445 586345.331844, 4140700.7804, -28.2915198887, 5.09722232819, 0.109897159989, -0.0130193901287, 0.0, 1496957388.6237, 1.29780695991, 1, 55.9361943972, 15.2880144119, 13.6263065338, -7.2340426445 586345.349891, 4140700.83332, -28.2923790375, 5.10277795792, 0.213973708532, -0.0127894305124, 0.00450655737353, 1496957388.6342, 1.29710364601, 1, 55.9872221768, 15.2147703171, 13.6263065338, -7.10638284683 586345.367951, 4140700.88623, -28.2933354462, 5.10277795792, 0.191140087206, -0.0127894305124, 0.0, 1496957388.6436, 1.29644889384, 1, 56.0382499564, 15.2147703171, 13.6324100494, -7.10638284683 586345.386044, 4140700.93917, -28.294235561, 5.10555553436, 0.178439645782, -0.012597806461, 0.00375324585354, 1496957388.6541, 1.29572876696, 1, 56.0893055117, 15.2391853333, 13.6324100494, -7.0 586345.404142, 4140700.99212, -28.2950885501, 5.10555553436, 0.234418035196, -0.012597806461, 0.0, 1496957388.6635, 1.29507112983, 1, 56.1403610671, 15.2391853333, 13.7148084641, -7.0 586345.422276, 4140701.04505, -28.2958390843, 5.11666679382, 0.103050171312, -0.012444512457, 0.00299597394413, 1496957388.6740, 1.29444817911, 1, 56.191527735, 15.2635993958, 13.7148084641, -6.91489362717 586345.440418, 4140701.098, -28.2964972891, 5.11666679382, -0.0284041349079, -0.012444512457, 0.0, 1496957388.6835, 1.29378180526, 1, 56.2426944029, 15.2635993958, 13.9116506577, -6.91489362717 586345.458574, 4140701.15088, -28.2971188771, 5.11388874054, -0.213429183055, -0.0122912231976, 0.0029975086915, 1496957388.6941, 1.29309984527, 1, 56.2938332903, 15.3490505219, 13.9116506577, -6.82978725433 586345.476695, 4140701.20377, -28.2976246234, 5.11388874054, -0.277528823783, -0.0122912231976, 0.0, 1496957388.7036, 1.2924513675, 1, 56.3449721777, 15.3490505219, 14.373998642, -6.82978725433 586345.494895, 4140701.25667, -28.2980087278, 5.11111116409, -0.06248132621, -0.0120996184206, 0.00374878907566, 1496957388.7141, 1.29182356951, 1, 56.3960832894, 15.2880144119, 14.373998642, -6.7234044075 586345.513062, 4140701.30954, -28.2983505027, 5.11111116409, -0.0635295459339, -0.0120996184206, 0.0, 1496957388.7236, 1.29114968462, 1, 56.447194401, 15.2880144119, 14.8485546112, -6.7234044075 586345.531271, 4140701.36241, -28.2986955754, 5.11388874054, -0.00928275250118, -0.011946339622, 0.00299730413331, 1496957388.7342, 1.29049006482, 1, 56.4983332884, 15.275806427, 14.8485546112, -6.63829803467 586345.549516, 4140701.41532, -28.2989092283, 5.11388874054, 0.105293426488, -0.011946339622, 0.0, 1496957388.7437, 1.28984275824, 1, 56.5494721758, 15.275806427, 15.2651252747, -6.63829803467 586345.567778, 4140701.46819, -28.2991463142, 5.11388874054, 0.0346067362194, -0.011946339622, 0.0, 1496957388.7542, 1.28918442042, 1, 56.6006110632, 15.1903562546, 15.2651252747, -6.63829803467 586345.586084, 4140701.52108, -28.2992947111, 5.11388874054, 0.0825415797226, -0.0117547468771, 0.00374651766364, 1496957388.7637, 1.28851020809, 1, 56.6517499506, 15.1903562546, 15.617609024, -6.531914711 586345.604384, 4140701.57394, -28.2994806506, 5.11388874054, 0.0180456194081, -0.0117547468771, 0.0, 1496957388.7742, 1.28784954255, 1, 56.7028888381, 15.2635993958, 15.617609024, -6.531914711 586345.622745, 4140701.62679, -28.2997252326, 5.11111116409, -0.00979908203364, -0.0115248460172, 0.00449806025583, 1496957388.7837, 1.28721906675, 1, 56.7539999497, 15.2635993958, 15.965514183, -6.40425539017 586345.641131, 4140701.67967, -28.2998071741, 5.11111116409, 0.0273231019407, -0.0115248460172, 0.0, 1496957388.7943, 1.28654944836, 1, 56.8051110613, 15.2635993958, 15.965514183, -6.40425539017 586345.659559, 4140701.73251, -28.2999444026, 5.10833311081, 0.0273458366298, -0.0112566401106, 0.00525036055315, 1496957388.8039, 1.28589043805, 1, 56.8561943924, 15.2635993958, 16.2386512756, -6.2553191185 586345.678022, 4140701.78535, -28.300090366, 5.10833311081, 0.0161768983836, -0.0112566401106, 0.0, 1496957388.8145, 1.28520874132, 1, 56.9072777236, 15.226978302, 16.2386512756, -6.2553191185 586345.696556, 4140701.83818, -28.3002528939, 5.10833311081, 0.100005475904, -0.0109884473441, 0.00525010332533, 1496957388.8240, 1.28455022354, 1, 56.9583610547, 15.226978302, 16.5331497192, -6.10638284683 586345.715167, 4140701.891, -28.3004194414, 5.10833311081, 0.0233640239723, -0.0109884473441, 0.0, 1496957388.8335, 1.28391308411, 1, 57.0094443858, 15.2880144119, 16.5331497192, -6.10638284683 586345.733819, 4140701.94382, -28.3006148022, 5.10555553436, 0.0897762450517, -0.0107202674039, 0.00525270831641, 1496957388.8441, 1.2832859902, 1, 57.0604999411, 15.2880144119, 16.7849235535, -5.95744657516 586345.752509, 4140701.99663, -28.300844389, 5.10555553436, 0.106546166855, -0.0107202674039, 0.0, 1496957388.8536, 1.28268356205, 1, 57.1115554965, 15.2635993958, 16.7849235535, -5.95744657516 586345.771256, 4140702.04947, -28.3010633988, 5.10555553436, 0.21171708407, -0.0103754834565, 0.00675311325274, 1496957388.8642, 1.28207155411, 1, 57.1626110518, 15.2635993958, 17.0382232666, -5.7659573555 586345.790004, 4140702.10226, -28.301353896, 5.10555553436, 0.0651408827266, -0.0103754834565, 0.0, 1496957388.8736, 1.28145477107, 1, 57.2136666071, 15.3124284744, 17.0382232666, -5.7659573555 586345.808821, 4140702.15506, -28.3016358521, 5.10833311081, 0.040899870953, -0.0100690254716, 0.00599917777938, 1496957388.8848, 1.28085456302, 1, 57.2647499382, 15.3124284744, 17.4135951996, -5.59574460983 586345.827646, 4140702.20782, -28.3019962171, 5.10833311081, -0.0721640331287, -0.0100690254716, 0.0, 1496957388.8944, 1.28025950098, 1, 57.3158332694, 15.2635993958, 17.4135951996, -5.59574460983 586345.846505, 4140702.2606, -28.3024876248, 5.10555553436, 0.055049979082, -0.00976258283536, 0.00600214088715, 1496957388.9039, 1.27971750033, 1, 57.3668888247, 15.2635993958, 17.7141990662, -5.42553186417 586345.8654, 4140702.31341, -28.3029690096, 5.10555553436, 0.133376890321, -0.00976258283536, 0.0, 1496957388.9151, 1.27917110986, 1, 57.41794438, 15.275806427, 17.7141990662, -5.42553186417 586345.884367, 4140702.36617, -28.3036155123, 5.10833311081, 0.145259827836, -0.0094561550799, 0.00599858601267, 1496957388.9245, 1.27864179758, 1, 57.4690277112, 15.275806427, 18.1399250031, -5.2553191185 586345.903354, 4140702.41893, -28.304223612, 5.10833311081, 0.0528482490707, -0.0094561550799, 0.0, 1496957388.9341, 1.27812329171, 1, 57.5201110423, 15.2391853333, 18.1399250031, -5.2553191185 586345.922428, 4140702.47168, -28.3049938018, 5.11111116409, 0.130495900844, -0.00911144127435, 0.00674440047339, 1496957388.9446, 1.27760637141, 1, 57.5712221539, 15.2391853333, 18.6068515778, -5.06382989883 586345.94155, 4140702.52442, -28.305831559, 5.11111116409, 0.112121836238, -0.00911144127435, 0.0, 1496957388.9542, 1.27713066516, 1, 57.6223332655, 15.2513923645, 18.6068515778, -5.06382989883 586345.960741, 4140702.57715, -28.3067389019, 5.11111116409, 0.142746354456, -0.00872844585167, 0.007493388627, 1496957388.9637, 1.27668436563, 1, 57.6734443772, 15.2513923645, 18.9562835693, -4.85106372833 586345.97998, 4140702.62988, -28.3076940104, 5.11111116409, 0.170049263899, -0.00872844585167, 0.0, 1496957388.9742, 1.27626492545, 1, 57.7245554888, 15.2635993958, 18.9562835693, -4.85106372833 586345.999307, 4140702.68261, -28.3087334679, 5.11944437027, 0.193849002472, -0.0083071751158, 0.00822883706503, 1496957388.9836, 1.27581810159, 1, 57.7757499325, 15.2635993958, 19.3316555023, -4.61702108383 586346.018642, 4140702.7353, -28.3096506922, 5.11944437027, -0.0129204572824, -0.0083071751158, 0.0, 1496957388.9940, 1.27544254805, 1, 57.8269443762, 15.2513923645, 19.3316555023, -4.61702108383 586346.038051, 4140702.788, -28.3106322922, 5.11388874054, 0.049595431222, -0.00784763452979, 0.00898612796118, 1496957389.0045, 1.27505833561, 1, 57.8780832636, 15.2513923645, 19.4979782104, -4.36170196533 586346.057497, 4140702.84066, -28.3115331493, 5.11388874054, -0.0389823880436, -0.00784763452979, 0.0, 1496957389.0140, 1.27472251065, 1, 57.929222151, 15.3368425369, 19.4979782104, -4.36170196533 586346.077036, 4140702.89349, -28.3123654285, 5.11388874054, -0.167943039313, -0.00734982942373, 0.00973437497991, 1496957389.0246, 1.27432706808, 1, 57.9803610384, 15.3368425369, 19.7695884705, -4.08510637283 586346.096566, 4140702.94611, -28.3131595952, 5.11388874054, -0.100019312062, -0.00734982942373, 0.0, 1496957389.0341, 1.27395961661, 1, 58.0314999259, 15.2880144119, 19.7695884705, -4.08510637283 586346.116122, 4140702.99874, -28.3138312623, 5.11944437027, -0.0512327610275, -0.00681376440175, 0.0104711563053, 1496957389.0435, 1.27361650721, 1, 58.0826943696, 15.2880144119, 19.9877929688, -3.78723406792 586346.135732, 4140703.05132, -28.3144686315, 5.11944437027, -0.0810633908629, -0.00681376440175, 0.0, 1496957389.0540, 1.27324888491, 1, 58.1338888133, 15.2635993958, 19.9877929688, -3.78723406792 586346.155393, 4140703.1039, -28.3151089652, 5.11944437027, -0.0324539700115, -0.0062394440226, 0.0112184123434, 1496957389.0646, 1.27293682799, 1, 58.185083257, 15.2635993958, 20.0915546417, -3.46808505058 586346.175051, 4140703.15646, -28.315731083, 5.11944437027, -0.0852043638073, -0.0062394440226, 0.0, 1496957389.0742, 1.27258566204, 1, 58.2362777007, 15.4589147568, 20.0915546417, -3.46808505058 586346.194692, 4140703.20901, -28.3162221136, 5.11666679382, -0.111712520822, -0.00574172723845, 0.00972736361795, 1496957389.0835, 1.27226396101, 1, 58.2874443686, 15.4589147568, 20.1403827667, -3.19148945808 586346.214316, 4140703.26153, -28.3167272592, 5.11666679382, -0.151102870202, -0.00574172723845, 0.0, 1496957389.0941, 1.27194371768, 1, 58.3386110365, 15.3490505219, 20.1403827667, -3.19148945808 586346.233948, 4140703.31404, -28.3171997527, 5.11388874054, -0.0896896001305, -0.00520574966284, 0.010480821989, 1496957389.1036, 1.27167976313, 1, 58.3897499239, 15.3490505219, 20.1571674347, -2.89361691475 586346.253563, 4140703.36656, -28.3176244106, 5.11388874054, -0.130721628897, -0.00520574966284, 0.0, 1496957389.1141, 1.27131177458, 1, 58.4408888113, 15.2513923645, 20.1571674347, -2.89361691475 586346.273183, 4140703.4191, -28.3179694088, 5.11388874054, 0.0745189211542, -0.00463151553427, 0.0112289132148, 1496957389.1246, 1.27099677772, 1, 58.4920276988, 15.2513923645, 20.1571674347, -2.57446813583 586346.292799, 4140703.47158, -28.3183756564, 5.11388874054, -0.184574512176, -0.00463151553427, 0.0, 1496957389.1341, 1.27066564466, 1, 58.5431665862, 15.226978302, 20.1571674347, -2.57446813583 586346.31239, 4140703.52406, -28.3186142417, 5.10833311081, -0.145763716903, -0.00401902616615, 0.0119900044659, 1496957389.1435, 1.27039771299, 1, 58.5942499173, 15.226978302, 20.2380409241, -2.2340426445 586346.331947, 4140703.57656, -28.3189736893, 5.10833311081, -0.133849337962, -0.00401902616615, 0.0, 1496957389.1541, 1.27011374553, 1, 58.6453332484, 15.3124284744, 20.2380409241, -2.2340426445 586346.351517, 4140703.62907, -28.319147869, 5.10555553436, -0.0407731117532, -0.00340656107212, 0.0119960519458, 1496957389.1636, 1.26985013633, 1, 58.6963888037, 15.3124284744, 20.3341732025, -1.89361703396 586346.371037, 4140703.68156, -28.3193727518, 5.10555553436, -0.114527390397, -0.00340656107212, 0.0, 1496957389.1741, 1.26955617434, 1, 58.7474443591, 15.2635993958, 20.3341732025, -1.89361703396 586346.390559, 4140703.73403, -28.3195665469, 5.10277795792, -0.0893261278197, -0.00279411694852, 0.0120021707519, 1496957389.1835, 1.26935013476, 1, 58.7984721386, 15.2635993958, 20.4592971802, -1.55319154263 586346.410049, 4140703.78648, -28.3196723005, 5.10277795792, -0.300233433128, -0.00279411694852, 0.0, 1496957389.1940, 1.26914488497, 1, 58.8494999182, 15.2635993958, 20.4592971802, -1.55319154263 586346.429524, 4140703.83883, -28.3197849169, 5.09166669846, -0.558473749971, -0.00221996589991, 0.0112762889367, 1496957389.2046, 1.2689557013, 1, 58.9004165852, 15.2635993958, 20.6256198883, -1.23404252529 586346.449049, 4140703.89117, -28.3200173909, 5.09166669846, -0.349935205668, -0.00221996589991, 0.0, 1496957389.2141, 1.26880552117, 1, 58.9513332522, 15.3124284744, 20.6256198883, -1.23404252529 586346.468574, 4140703.9435, -28.3201634288, 5.08333349228, -0.267958057546, -0.0017606539392, 0.00903564484632, 1496957389.2236, 1.26864477453, 1, 59.0021665871, 15.3124284744, 20.8361949921, -0.978723406792 586346.488111, 4140703.9958, -28.3204130651, 5.08333349228, -0.176871257079, -0.0017606539392, 0.0, 1496957389.2342, 1.26852560199, 1, 59.052999922, 15.2147703171, 20.8361949921, -0.978723406792 586346.507697, 4140704.04805, -28.3206233475, 5.080555439, -0.232873360921, -0.00118652218167, 0.0113005706643, 1496957389.2437, 1.26839635362, 1, 59.1038054764, 15.2147703171, 21.0330352783, -0.659574449062 586346.527373, 4140704.10024, -28.320849916, 5.080555439, -0.296195646024, -0.00118652218167, 0.0, 1496957389.2542, 1.26836901842, 1, 59.1546110308, 15.1781492233, 21.0330352783, -0.659574449062 586346.547047, 4140704.15237, -28.3209598446, 5.07777786255, -0.409741171935, -0.00076549651643, 0.00829153375037, 1496957389.2638, 1.26832865079, 1, 59.2053888094, 15.1781492233, 21.1398487091, -0.425531923771 586346.566776, 4140704.20446, -28.3211828563, 5.07777786255, -0.344898482694, -0.00076549651643, 0.0, 1496957389.2744, 1.26830511632, 1, 59.2561665881, 15.275806427, 21.1398487091, -0.425531923771 586346.586513, 4140704.25651, -28.3215105673, 5.07499980927, -0.338184168581, -0.000306198182417, 0.00905021381823, 1496957389.2843, 1.26829087856, 1, 59.3069165862, 15.275806427, 21.1596851349, -0.170212760568 586346.606319, 4140704.30852, -28.3217432573, 5.07499980927, -0.218997469876, -0.000306198182417, 0.0, 1496957389.2938, 1.2683253729, 1, 59.3576665843, 15.0926980972, 21.1596851349, -0.170212760568 586346.626117, 4140704.36048, -28.3221714953, 5.06666660309, -0.357587178031, 7.65495273868e-05, 0.00755423120934, 1496957389.3042, 1.26838972189, 1, 59.4083332503, 15.0926980972, 21.2161445618, 0.0425531901419 586346.645936, 4140704.4124, -28.3226508573, 5.06666660309, -0.298005121641, 7.65495273868e-05, 0.0, 1496957389.3137, 1.26847398522, 1, 59.4589999163, 15.2880144119, 21.2161445618, 0.0425531901419 586346.665799, 4140704.46434, -28.3231165763, 5.06388902664, -0.0773995283885, 0.00053584710648, 0.00907005616981, 1496957389.3242, 1.26854335054, 1, 59.5096388066, 15.2880144119, 21.2085151672, 0.297872334719 586346.685635, 4140704.51621, -28.3236983595, 5.06388902664, -0.227094740299, 0.00053584710648, 0.0, 1496957389.3336, 1.26862584737, 1, 59.5602776968, 15.2147703171, 21.2085151672, 0.297872334719 586346.705509, 4140704.56806, -28.324323005, 5.06388902664, -0.224097759996, 0.000880321428239, 0.00680256458913, 1496957389.3441, 1.26870276727, 1, 59.6109165871, 15.2147703171, 21.261920929, 0.489361703396 586346.725404, 4140704.61992, -28.325023205, 5.06388902664, -0.0821253625879, 0.000880321428239, 0.0, 1496957389.3546, 1.26881914737, 1, 59.6615554774, 15.2635993958, 21.261920929, 0.489361703396 586346.745249, 4140704.67173, -28.3257729374, 5.06111097336, -0.19834683213, 0.00114824699823, 0.00529380943034, 1496957389.3641, 1.26895232089, 1, 59.7121665871, 15.2635993958, 21.2924385071, 0.638297855854 586346.765088, 4140704.72354, -28.3265728718, 5.06111097336, -0.19419931962, 0.00114824699823, 0.0, 1496957389.3736, 1.26908168324, 1, 59.7627776968, 15.226978302, 21.2924385071, 0.638297855854 586346.784917, 4140704.77533, -28.3273934452, 5.05833339691, -0.186611618228, 0.00149272484953, 0.00681010570621, 1496957389.3841, 1.2691559887, 1, 59.8133610308, 15.226978302, 21.2161445618, 0.829787254333 586346.804715, 4140704.82706, -28.3281689081, 5.05833339691, -0.374377314806, 0.00149272484953, 0.0, 1496957389.3936, 1.26927920283, 1, 59.8639443648, 15.3002214432, 21.2161445618, 0.829787254333 586346.824466, 4140704.87874, -28.3290808871, 5.05000019073, -0.467209853086, 0.00172237823654, 0.00454759165026, 1496957389.4047, 1.26938500418, 1, 59.9144443667, 15.3002214432, 21.2344551086, 0.957446813583 586346.84423, 4140704.93043, -28.3299436951, 5.05000019073, -0.328807008129, 0.00172237823654, 0.0, 1496957389.4142, 1.26948599145, 1, 59.9649443686, 15.275806427, 21.2344551086, 0.957446813583 586346.863921, 4140704.98206, -28.3307859097, 5.03611087799, -0.465719259496, 0.00195203309921, 0.00456016295581, 1496957389.4237, 1.26960044555, 1, 60.0153054774, 15.275806427, 21.2298774719, 1.08510637283 586346.883601, 4140705.03365, -28.3315899204, 5.03611087799, -0.438925602808, 0.00195203309921, 0.0, 1496957389.4342, 1.26967396492, 1, 60.0656665862, 15.3002214432, 21.2298774719, 1.08510637283 586346.903203, 4140705.08518, -28.3323782459, 5.0305557251, -0.604294890825, 0.00214341342064, 0.00380435744845, 1496957389.4437, 1.26978229501, 1, 60.1159721434, 15.3002214432, 21.3168544769, 1.19148933887 586346.922785, 4140705.13671, -28.3330637459, 5.0305557251, -0.470797247398, 0.00214341342064, 0.0, 1496957389.4544, 1.26986317076, 1, 60.1662777007, 15.2880144119, 21.3168544769, 1.19148933887 586346.942306, 4140705.18818, -28.3337611044, 5.02777767181, -0.563312661679, 0.00225824221834, 0.00228388773728, 1496957389.4639, 1.26994449415, 1, 60.2165554774, 15.2880144119, 21.412984848, 1.2553191185 586346.961825, 4140705.23964, -28.334328305, 5.02777767181, -0.449972854067, 0.00225824221834, 0.0, 1496957389.4745, 1.26999498249, 1, 60.2668332541, 15.2635993958, 21.412984848, 1.2553191185 586346.981316, 4140705.29104, -28.3348282287, 5.01944446564, -0.447980310227, 0.00229651859052, 0.000762561921693, 1496957389.4839, 1.27007694123, 1, 60.3170276988, 15.2635993958, 21.4084072113, 1.27659571171 586347.000752, 4140705.34238, -28.3353567831, 5.01944446564, -0.542794702361, 0.00229651859052, 0.0, 1496957389.4947, 1.27016413677, 1, 60.3672221434, 15.275806427, 21.4084072113, 1.27659571171 586347.020196, 4140705.3937, -28.3357478306, 5.00833320618, -0.509334788881, 0.00233479501735, 0.000764254798057, 1496957389.5042, 1.27023138679, 1, 60.4173054755, 15.275806427, 21.4435043335, 1.29787230492 586347.039601, 4140705.44495, -28.3361369679, 5.00833320618, -0.557841506069, 0.00233479501735, 0.0, 1496957389.5137, 1.27030842934, 1, 60.4673888075, 15.3002214432, 21.4435043335, 1.29787230492 586347.058995, 4140705.49618, -28.3365211189, 4.99722242355, -0.468964426829, 0.00237307149975, 0.000765955147742, 1496957389.5243, 1.27040780201, 1, 60.5173610318, 15.3002214432, 21.4724960327, 1.31914889812 586347.078388, 4140705.54735, -28.3368440038, 4.99722242355, -0.472586357376, 0.00237307149975, 0.0, 1496957389.5337, 1.27047523989, 1, 60.567333256, 15.3002214432, 21.4724960327, 1.31914889812 586347.097766, 4140705.59849, -28.337162748, 4.98888874054, -0.447854445422, 0.00237307149975, 0.0, 1496957389.5442, 1.27057613322, 1, 60.6172221434, 15.3002214432, 21.5121688843, 1.31914889812 586347.117135, 4140705.64959, -28.3373546805, 4.98888874054, -0.427357297007, 0.00237307149975, 0.0, 1496957389.5539, 1.27065386142, 1, 60.6671110308, 15.2391853333, 21.5121688843, 1.31914889812 586347.136477, 4140705.70062, -28.3375382796, 4.98055553436, -0.554091980347, 0.00233479501735, -0.000768518333612, 1496957389.5644, 1.27079523974, 1, 60.7169165862, 15.2391853333, 21.4724960327, 1.29787230492 586347.155803, 4140705.75161, -28.337656552, 4.98055553436, -0.556912408274, 0.00233479501735, 0.0, 1496957389.5742, 1.2708435179, 1, 60.7667221415, 15.2147703171, 21.4724960327, 1.29787230492 586347.175127, 4140705.80256, -28.3377150577, 4.9694442749, -0.480796150741, 0.00237307149975, 0.000770236675973, 1496957389.5837, 1.27091799513, 1, 60.8164165843, 15.2147703171, 21.4801254272, 1.31914889812 586347.194459, 4140705.85346, -28.337808365, 4.9694442749, -0.462649593708, 0.00237307149975, 0.0, 1496957389.5942, 1.27100042482, 1, 60.866111027, 15.226978302, 21.4801254272, 1.31914889812 586347.213811, 4140705.90429, -28.3378663575, 4.955555439, -0.490493304599, 0.00237307149975, 0.0, 1496957389.6038, 1.27105120342, 1, 60.9156665814, 15.226978302, 21.5686283112, 1.31914889812 586347.233145, 4140705.95508, -28.3379337881, 4.955555439, -0.476793592334, 0.00237307149975, 0.0, 1496957389.6144, 1.2711642912, 1, 60.9652221358, 15.2880144119, 21.5686283112, 1.31914889812 586347.252508, 4140706.00586, -28.3379281946, 4.94166660309, -0.438506343113, 0.00237307149975, 0.0, 1496957389.6239, 1.27122879246, 1, 61.0146388018, 15.2880144119, 21.5197982788, 1.31914889812 586347.271827, 4140706.05651, -28.337930005, 4.94166660309, -0.656604733009, 0.00237307149975, 0.0, 1496957389.6345, 1.27131136164, 1, 61.0640554678, 15.2391853333, 21.5197982788, 1.31914889812 586347.291146, 4140706.10713, -28.3379291128, 4.93333339691, -0.63133209231, 0.00237307149975, 0.0, 1496957389.6441, 1.27138232478, 1, 61.1133888018, 15.2391853333, 21.6189823151, 1.31914889812 586347.310467, 4140706.15769, -28.3379449099, 4.93333339691, -0.553177001009, 0.00237307149975, 0.0, 1496957389.6536, 1.27147274756, 1, 61.1627221358, 15.2635993958, 21.6189823151, 1.31914889812 586347.329739, 4140706.20822, -28.3380355425, 4.919444561, -0.493094892823, 0.00237307149975, 0.0, 1496957389.6643, 1.27153925872, 1, 61.2119165814, 15.2635993958, 21.6021976471, 1.31914889812 586347.349001, 4140706.25872, -28.3382574273, 4.919444561, -0.357390590434, 0.00237307149975, 0.0, 1496957389.6738, 1.27156441827, 1, 61.261111027, 15.2147703171, 21.6021976471, 1.31914889812 586347.368246, 4140706.30919, -28.3383966619, 4.91111087799, -0.359147864986, 0.00237307149975, 0.0, 1496957389.6843, 1.27159454294, 1, 61.3102221358, 15.2147703171, 21.635766983, 1.31914889812 586347.3874, 4140706.35959, -28.3387306323, 4.91111087799, -0.487494114977, 0.00237307149975, 0.0, 1496957389.6939, 1.27161338493, 1, 61.3593332446, 15.3368425369, 21.635766983, 1.31914889812 586347.406598, 4140706.41, -28.3389394665, 4.9055557251, -0.33608845249, 0.00233479501735, -0.000780268017372, 1496957389.7044, 1.27162413707, 1, 61.4083888018, 15.3368425369, 21.739528656, 1.29787230492 586347.425696, 4140706.46038, -28.3392546559, 4.9055557251, -0.327428739957, 0.00233479501735, 0.0, 1496957389.7139, 1.27170559517, 1, 61.4574443591, 15.2391853333, 21.739528656, 1.29787230492 586347.444826, 4140706.51069, -28.3396667549, 4.90000009537, -0.397745229006, 0.00237307149975, 0.000781152686783, 1496957389.7245, 1.27169210207, 1, 61.50644436, 15.2391853333, 21.7654685974, 1.31914889812 586347.463933, 4140706.56096, -28.3400570126, 4.90000009537, -0.479476300894, 0.00237307149975, 0.0, 1496957389.7340, 1.27173881585, 1, 61.555444361, 15.2635993958, 21.7654685974, 1.31914889812 586347.483029, 4140706.61115, -28.3405471146, 4.88888883591, -0.57415273332, 0.00229651859052, -0.00156585497846, 1496957389.7445, 1.27178109482, 1, 61.6043332493, 15.2635993958, 21.8570232391, 1.27659571171 586347.502106, 4140706.66129, -28.3408441981, 4.88888883591, -0.681086596178, 0.00229651859052, 0.0, 1496957389.7540, 1.27184975617, 1, 61.6532221377, 15.2025632858, 21.8570232391, 1.27659571171 586347.521153, 4140706.71136, -28.3411180805, 4.875, -0.669246490568, 0.00229651859052, 0.0, 1496957389.7645, 1.27190392241, 1, 61.7019721377, 15.2025632858, 21.9180583954, 1.27659571171 586347.540199, 4140706.76144, -28.3414428849, 4.875, -0.474075632543, 0.00229651859052, 0.0, 1496957389.7741, 1.27201553182, 1, 61.7507221377, 15.2147703171, 21.9180583954, 1.27659571171 586347.559286, 4140706.81141, -28.3417325132, 4.86666679382, -0.499973316385, 0.00233479501735, 0.000786501900633, 1496957389.7836, 1.27210983714, 1, 61.7993888056, 15.2147703171, 22.0706501007, 1.29787230492 586347.578343, 4140706.86135, -28.3420379348, 4.86666679382, -0.492405355833, 0.00233479501735, 0.0, 1496957389.7941, 1.27220690693, 1, 61.8480554736, 15.2635993958, 22.0706501007, 1.29787230492 586347.597391, 4140706.91121, -28.3424247839, 4.86111116409, -0.641454234289, 0.00244962463489, 0.00236220924927, 1496957389.8046, 1.27228585572, 1, 61.8966665852, 15.2635993958, 22.1683063507, 1.36170208454 586347.616511, 4140706.961, -28.3427604428, 4.86111116409, -0.58333636221, 0.00244962463489, 0.0, 1496957389.8142, 1.2724134172, 1, 61.9452776968, 15.1781492233, 22.1683063507, 1.36170208454 586347.635631, 4140707.01073, -28.3431513766, 4.8444442749, -0.519217817634, 0.00248790128945, 0.000790114456703, 1496957389.8236, 1.27249888145, 1, 61.9937221396, 15.1781492233, 22.1850910187, 1.38297867775 586347.65475, 4140707.06041, -28.3435243228, 4.8444442749, -0.524070003313, 0.00248790128945, 0.0, 1496957389.8342, 1.27259117433, 1, 62.0421665823, 15.2880144119, 22.1850910187, 1.38297867775 586347.673859, 4140707.11003, -28.3439399414, 4.83333349228, -0.581162826813, 0.00256445477712, 0.00158386521003, 1496957389.8438, 1.27271238061, 1, 62.0904999173, 15.2880144119, 22.1759357452, 1.42553186417 586347.692976, 4140707.15956, -28.3442128124, 4.83333349228, -0.703002670453, 0.00256445477712, 0.0, 1496957389.8543, 1.27282833536, 1, 62.1388332522, 15.3368425369, 22.1759357452, 1.42553186417 586347.712037, 4140707.20905, -28.3444333998, 4.82499980927, -0.665180029611, 0.00260273161204, 0.000793302309659, 1496957389.8638, 1.27300494247, 1, 62.1870832503, 15.3368425369, 22.201877594, 1.44680845737 586347.731011, 4140707.25849, -28.3446049485, 4.82499980927, -0.701023895816, 0.00260273161204, 0.0, 1496957389.8743, 1.27310527798, 1, 62.2353332484, 15.2391853333, 22.201877594, 1.44680845737 586347.749987, 4140707.30787, -28.3446069425, 4.81666660309, -0.69673887566, 0.00264100850892, 0.000794676070111, 1496957389.8843, 1.27325082182, 1, 62.2834999144, 15.2391853333, 22.1698322296, 1.46808505058 586347.768895, 4140707.35719, -28.3446516115, 4.81666660309, -0.708260445288, 0.00264100850892, 0.0, 1496957389.8939, 1.27327980088, 1, 62.3316665804, 15.2391853333, 22.1698322296, 1.46808505058 586347.787744, 4140707.40639, -28.3445061175, 4.79166650772, -0.969928858242, 0.00260273161204, -0.000798822222083, 1496957389.9046, 1.27340715334, 1, 62.3795832455, 15.2391853333, 22.1698322296, 1.44680845737 586347.806571, 4140707.45553, -28.3443896808, 4.79166650772, -0.941692910024, 0.00260273161204, 0.0, 1496957389.9141, 1.27353181447, 1, 62.4274999106, 15.3124284744, 22.1698322296, 1.44680845737 586347.825349, 4140707.50466, -28.344246109, 4.77500009537, -0.644727724558, 0.00260273161204, 0.0, 1496957389.9236, 1.27366802952, 1, 62.4752499115, 15.3124284744, 22.1499958038, 1.44680845737 586347.844048, 4140707.55375, -28.344055796, 4.77500009537, -0.540990397625, 0.00260273161204, 0.0, 1496957389.9341, 1.27379370625, 1, 62.5229999125, 15.2635993958, 22.1499958038, 1.44680845737 586347.862735, 4140707.60277, -28.3439405337, 4.76944446564, -0.579375682586, 0.00260273161204, 0.0, 1496957389.9446, 1.27385970933, 1, 62.5706943572, 15.2635993958, 22.1835651398, 1.44680845737 586347.881365, 4140707.65172, -28.3437924013, 4.76944446564, -0.720147052077, 0.00260273161204, 0.0, 1496957389.9541, 1.27394114146, 1, 62.6183888018, 15.2147703171, 22.1835651398, 1.44680845737 586347.899984, 4140707.70055, -28.3436215604, 4.75555562973, -0.948779584095, 0.00252617800322, -0.00160977212304, 1496957389.9636, 1.27402737864, 1, 62.6659443581, 15.2147703171, 22.1942481995, 1.40425527096 586347.918605, 4140707.74933, -28.343525352, 4.75555562973, -0.734880568807, 0.00252617800322, 0.0, 1496957389.9742, 1.27410646246, 1, 62.7134999144, 15.226978302, 22.1942481995, 1.40425527096 586347.937092, 4140707.79805, -28.343336626, 4.73333311081, -0.841155033527, 0.00244962463489, -0.0016173247592, 1496957389.9838, 1.27422109919, 1, 62.7608332455, 15.226978302, 22.1713581085, 1.36170208454 586347.955682, 4140707.84669, -28.3432774218, 4.73333311081, -0.705102174772, 0.00244962463489, 0.0, 1496957389.9944, 1.27431285373, 1, 62.8081665766, 15.226978302, 22.1713581085, 1.36170208454 586347.955682, 4140707.84669, -28.3432774218, 4.7194442749, -0.705102174772, 0.00244962463489, 0.0, 1496957390.0039, 1.27431285373, 1, 62.8553610194, 15.226978302, 22.1789875031, 1.36170208454 586347.992663, 4140707.94378, -28.3430104386, 4.7194442749, -0.766358951179, 0.00244962463489, 0.0, 1496957390.0145, 1.27458633957, 1, 62.9025554621, 15.3246355057, 22.1789875031, 1.36170208454 586348.011118, 4140707.99208, -28.3429569602, 4.705555439, -0.669990614872, 0.00244962463489, 0.0, 1496957390.0241, 1.27466505606, 1, 62.9496110165, 15.3246355057, 22.2201881409, 1.36170208454 586348.029623, 4140708.04048, -28.3428872079, 4.705555439, -0.504470125529, 0.00244962463489, 0.0, 1496957390.0335, 1.27481682275, 1, 62.9966665709, 15.1781492233, 22.2201881409, 1.36170208454 586348.048126, 4140708.08877, -28.3430021554, 4.69166660309, -0.642513529865, 0.00244962463489, 0.0, 1496957390.0441, 1.27495079233, 1, 63.0435832369, 15.1781492233, 22.1957740784, 1.36170208454 586348.066624, 4140708.13701, -28.3430988118, 4.69166660309, -0.633737132856, 0.00244962463489, 0.0, 1496957390.0546, 1.27504272677, 1, 63.090499903, 15.2635993958, 22.1957740784, 1.36170208454 586348.085125, 4140708.18518, -28.3432455854, 4.67777776718, -0.597113594814, 0.00244962463489, 0.0, 1496957390.0642, 1.27514080314, 1, 63.1372776806, 15.2635993958, 22.2110328674, 1.36170208454 586348.103638, 4140708.23324, -28.3434424652, 4.67777776718, -0.76579971468, 0.00244962463489, 0.0, 1496957390.0737, 1.27524371868, 1, 63.1840554583, 15.2391853333, 22.2110328674, 1.36170208454 586348.122043, 4140708.28119, -28.3436991712, 4.66666650772, -0.646134824514, 0.00244962463489, 0.0, 1496957390.0842, 1.27530029011, 1, 63.2307221234, 15.2391853333, 22.2751197815, 1.36170208454 586348.140436, 4140708.32902, -28.3439755039, 4.66666650772, -0.67473233969, 0.00244962463489, 0.0, 1496957390.0939, 1.27545385279, 1, 63.2773887885, 15.2635993958, 22.2751197815, 1.36170208454 586348.158821, 4140708.37674, -28.3442815887, 4.6555557251, -0.770812446009, 0.00244962463489, 0.0, 1496957390.1044, 1.27558372721, 1, 63.3239443457, 15.2635993958, 22.2446022034, 1.36170208454 586348.177155, 4140708.4244, -28.3446591226, 4.6555557251, -0.815281099519, 0.00244962463489, 0.0, 1496957390.1140, 1.2757284668, 1, 63.370499903, 15.2391853333, 22.2446022034, 1.36170208454 586348.195518, 4140708.47202, -28.3449910497, 4.64444446564, -0.599407696712, 0.00248790128945, 0.000824138491613, 1496957390.1245, 1.2759294282, 1, 63.4169443476, 15.2391853333, 22.3147945404, 1.38297867775 586348.213781, 4140708.51958, -28.3454725044, 4.64444446564, -0.618031325763, 0.00248790128945, 0.0, 1496957390.1341, 1.27600834651, 1, 63.4633887923, 15.2635993958, 22.3147945404, 1.38297867775 586348.232082, 4140708.56701, -28.3459450537, 4.63055562973, -0.84742551423, 0.00248790128945, 0.0, 1496957390.1435, 1.2761282116, 1, 63.5096943486, 15.2635993958, 22.3117408752, 1.38297867775 586348.250419, 4140708.61444, -28.3464727281, 4.63055562973, -0.55168916672, 0.00248790128945, 0.0, 1496957390.1540, 1.27628912496, 1, 63.5559999049, 15.2635993958, 22.3117408752, 1.38297867775 586348.268716, 4140708.66172, -28.3471143963, 4.61388874054, -0.795589908087, 0.00252617800322, 0.000829597676191, 1496957390.1646, 1.27644359908, 1, 63.6021387923, 15.2635993958, 22.3285274506, 1.40425527096 586348.287045, 4140708.70901, -28.3476428613, 4.61388874054, -0.49244075591, 0.00252617800322, 0.0, 1496957390.1742, 1.27666196624, 1, 63.6482776797, 15.2025632858, 22.3285274506, 1.40425527096 586348.305353, 4140708.75615, -28.3483848237, 4.60555553436, -0.757618783177, 0.00260273161204, 0.0016622014055, 1496957390.1838, 1.2768238668, 1, 63.694333235, 15.2025632858, 22.3910884857, 1.44680845737 586348.323634, 4140708.80323, -28.3489316981, 4.60555553436, -0.865896417485, 0.00260273161204, 0.0, 1496957390.1943, 1.27700092878, 1, 63.7403887904, 15.275806427, 22.3910884857, 1.44680845737 586348.34194, 4140708.85023, -28.3496816903, 4.5944442749, -0.765694523377, 0.00275583979477, 0.00333246359212, 1496957390.2039, 1.27712833624, 1, 63.7863332331, 15.275806427, 22.4826431274, 1.53191494942 586348.360273, 4140708.89716, -28.3503816128, 4.5944442749, -0.693731415773, 0.00275583979477, 0.0, 1496957390.2144, 1.27729936723, 1, 63.8322776759, 15.275806427, 22.4826431274, 1.53191494942 586348.378534, 4140708.94403, -28.3510993561, 4.580555439, -0.704811594332, 0.00279411694852, 0.000835644372566, 1496957390.2240, 1.27745420949, 1, 63.8780832303, 15.275806427, 22.5024795532, 1.55319154263 586348.39682, 4140708.99082, -28.3519715145, 4.580555439, -0.576717443358, 0.00279411694852, 0.0, 1496957390.2346, 1.2776214147, 1, 63.9238887846, 15.3002214432, 22.5024795532, 1.55319154263 586348.415114, 4140709.03755, -28.3526927056, 4.56944465637, -0.727665209424, 0.00287067145645, 0.00167535693465, 1496957390.2442, 1.2777599915, 1, 63.9695832312, 15.3002214432, 22.5268936157, 1.59574472904 586348.43335, 4140709.08419, -28.35344717, 4.56944465637, -0.788810715481, 0.00287067145645, 0.0, 1496957390.2537, 1.27800027295, 1, 64.0152776778, 15.2025632858, 22.5268936157, 1.59574472904 586348.451545, 4140709.1308, -28.3541275188, 4.55000019073, -0.702691493865, 0.00298550373303, 0.0025237861926, 1496957390.2642, 1.27815766863, 1, 64.0607776797, 15.2025632858, 22.5467300415, 1.65957450867 586348.469712, 4140709.17726, -28.354744927, 4.55000019073, -0.906829686463, 0.00298550373303, 0.0, 1496957390.2738, 1.27833512092, 1, 64.1062776816, 15.2391853333, 22.5467300415, 1.65957450867 586348.48782, 4140709.22367, -28.3553424403, 4.53333330154, -0.938647552055, 0.00313861443415, 0.00337744196021, 1496957390.2843, 1.27846017581, 1, 64.1516110146, 15.2391853333, 22.6169223785, 1.7446808815 586348.505857, 4140709.27004, -28.3559943829, 4.53333330154, -0.843926916194, 0.00313861443415, 0.0, 1496957390.2938, 1.27862006525, 1, 64.1969443476, 15.3734645844, 22.6169223785, 1.7446808815 586348.523917, 4140709.31632, -28.3565477924, 4.51944446564, -0.752600610004, 0.00321517022926, 0.00169392047397, 1496957390.3043, 1.27878220935, 1, 64.2421387923, 15.3734645844, 22.7054252625, 1.78723406792 586348.541914, 4140709.36255, -28.3570565209, 4.51944446564, -0.704408625684, 0.00321517022926, 0.0, 1496957390.3138, 1.27897389425, 1, 64.2873332369, 15.1537342072, 22.7054252625, 1.78723406792 586348.559885, 4140709.40868, -28.3575534858, 4.50555562973, -0.83384721964, 0.00329172633046, 0.00169914895058, 1496957390.3244, 1.27913732172, 1, 64.3323887932, 15.1537342072, 22.7573051453, 1.82978725433 586348.577799, 4140709.45472, -28.3577930154, 4.50555562973, -0.992898004493, 0.00329172633046, 0.0, 1496957390.3339, 1.27933173072, 1, 64.3774443495, 15.226978302, 22.7573051453, 1.82978725433 586348.595709, 4140709.50063, -28.3581899125, 4.48611116409, -1.1181809466, 0.00344483948028, 0.00341304850058, 1496957390.3445, 1.27950477523, 1, 64.4223054612, 15.226978302, 22.8473339081, 1.91489362717 586348.613597, 4140709.54648, -28.3583768662, 4.48611116409, -1.01963653711, 0.00344483948028, 0.0, 1496957390.3540, 1.27973640996, 1, 64.4671665728, 15.2147703171, 22.8473339081, 1.91489362717 586348.631464, 4140709.59223, -28.3585886313, 4.4694442749, -0.957599624456, 0.00359795394193, 0.00342580536252, 1496957390.3646, 1.27992155159, 1, 64.5118610156, 15.2147703171, 22.9266796112, 2.0 586348.64933, 4140709.63792, -28.3587064939, 4.4694442749, -0.836267385261, 0.00359795394193, 0.0, 1496957390.3742, 1.28015035856, 1, 64.5565554583, 15.2880144119, 22.9266796112, 2.0 586348.667159, 4140709.68352, -28.3587355027, 4.44999980927, -0.849757429868, 0.0037127908986, 0.00258060587851, 1496957390.3839, 1.28040916603, 1, 64.6010554564, 15.2880144119, 23.0045013428, 2.06382989883 586348.684993, 4140709.72901, -28.358739295, 4.44999980927, -0.913307676315, 0.0037127908986, 0.0, 1496957390.3946, 1.28063331189, 1, 64.6455554545, 15.3124284744, 23.0045013428, 2.06382989883 586348.702778, 4140709.77443, -28.3586102687, 4.43055534363, -0.922456802442, 0.00382762822164, 0.00259193970354, 1496957390.4042, 1.28087762431, 1, 64.6898610079, 15.3124284744, 23.0685901642, 2.12765955925 586348.720505, 4140709.81974, -28.3584531359, 4.43055534363, -1.10730103327, 0.00382762822164, 0.0, 1496957390.4147, 1.28114617865, 1, 64.7341665614, 15.2635993958, 23.0685901642, 2.12765955925 586348.73818, 4140709.86498, -28.3582335487, 4.41388893127, -1.00922333565, 0.00394246679354, 0.00260175490791, 1496957390.4242, 1.2813066592, 1, 64.7783054507, 15.2635993958, 23.1357288361, 2.19148945808 586348.755803, 4140709.91012, -28.3580598114, 4.41388893127, -1.00367065844, 0.00394246679354, 0.0, 1496957390.4337, 1.28152980881, 1, 64.82244434, 15.2391853333, 23.1357288361, 2.19148945808 586348.773378, 4140709.95522, -28.3578484431, 4.39444446564, -0.818496103888, 0.00409558592139, 0.00348437963092, 1496957390.4443, 1.28172798832, 1, 64.8663887846, 15.2391853333, 23.0731678009, 2.27659583092 586348.790884, 4140710.00027, -28.3577067507, 4.39444446564, -0.659114491075, 0.00409558592139, 0.0, 1496957390.4538, 1.28190777415, 1, 64.9103332293, 15.2635993958, 23.0731678009, 2.27659583092 586348.808308, 4140710.04521, -28.3574921228, 4.37777757645, -0.922492734578, 0.00417214606656, 0.00174883588373, 1496957390.4643, 1.28204964163, 1, 64.9541110051, 15.2635993958, 23.0746936798, 2.31914901733 586348.825704, 4140710.09009, -28.3573746048, 4.37777757645, -0.870337048653, 0.00417214606656, 0.0, 1496957390.4738, 1.28223192767, 1, 64.9978887808, 15.275806427, 23.0746936798, 2.31914901733 586348.842996, 4140710.13486, -28.3572496297, 4.35277795792, -1.03686472848, 0.00424870660894, 0.00175888922251, 1496957390.4843, 1.28234291911, 1, 65.0414165604, 15.275806427, 23.1067371368, 2.36170220375 586348.860282, 4140710.17958, -28.3572726473, 4.35277795792, -0.830652173077, 0.00424870660894, 0.0, 1496957390.4939, 1.28247353218, 1, 65.08494434, 15.275806427, 23.1067371368, 2.36170220375 586348.87745, 4140710.22425, -28.357207831, 4.330555439, -0.797628893546, 0.00428698681688, 0.000883956076418, 1496957390.5044, 1.28261561176, 1, 65.1282498944, 15.275806427, 23.0075531006, 2.38297867775 586348.894582, 4140710.26881, -28.3572768979, 4.330555439, -0.900298809147, 0.00428698681688, 0.0, 1496957390.5139, 1.28268140826, 1, 65.1715554488, 15.2391853333, 23.0075531006, 2.38297867775 586348.911617, 4140710.31332, -28.3572058128, 4.31111097336, -0.904751918567, 0.00436354796876, 0.00177590306413, 1496957390.5244, 1.28282280362, 1, 65.2146665585, 15.2391853333, 23.0960559845, 2.42553186417 586348.928575, 4140710.35769, -28.3571835645, 4.31111097336, -1.15337081039, 0.00436354796876, 0.0, 1496957390.5340, 1.28294319499, 1, 65.2577776682, 15.2635993958, 23.0960559845, 2.42553186417 586348.945542, 4140710.40201, -28.3571876017, 4.294444561, -0.904016209726, 0.00436354796876, 0.0, 1496957390.5435, 1.28303870182, 1, 65.3007221138, 15.2635993958, 23.1021595001, 2.42553186417 586348.962407, 4140710.44622, -28.3571839556, 4.294444561, -0.971788314259, 0.00436354796876, 0.0, 1496957390.5542, 1.28317601824, 1, 65.3436665595, 15.2391853333, 23.1021595001, 2.42553186417 586348.979299, 4140710.49034, -28.3573930459, 4.27222204208, -1.06511541824, 0.00436354796876, 0.0, 1496957390.5638, 1.2832437604, 1, 65.3863887799, 15.2391853333, 23.2104988098, 2.42553186417 586348.996124, 4140710.53439, -28.357408789, 4.27222204208, -0.973286832933, 0.00436354796876, 0.0, 1496957390.5743, 1.28339386243, 1, 65.4291110003, 15.2391853333, 23.2104988098, 2.42553186417 586349.012926, 4140710.57822, -28.3576188553, 4.24444437027, -1.27811286613, 0.00432526755582, -0.000901894561275, 1496957390.5839, 1.2835071579, 1, 65.471555444, 15.2391853333, 23.2623786926, 2.40425539017 586349.029685, 4140710.62204, -28.3578050761, 4.24444437027, -1.03217957114, 0.00432526755582, 0.0, 1496957390.5945, 1.28366576532, 1, 65.5139998877, 15.2635993958, 23.2623786926, 2.40425539017 586349.046491, 4140710.66571, -28.3581194021, 4.22777795792, -1.04628768844, 0.00432526755582, 0.0, 1496957390.6041, 1.28382197371, 1, 65.5562776673, 15.2635993958, 23.4149684906, 2.40425539017 586349.063304, 4140710.70928, -28.3583046813, 4.22777795792, -1.01341638246, 0.00432526755582, 0.0, 1496957390.6135, 1.28398857397, 1, 65.5985554469, 15.2635993958, 23.4149684906, 2.40425539017 586349.080085, 4140710.75275, -28.3587000947, 4.21388912201, -1.0332169627, 0.00428698681688, -0.000908442007698, 1496957390.6241, 1.28416546157, 1, 65.6406943381, 15.2635993958, 23.5141525269, 2.38297867775 586349.096905, 4140710.79609, -28.3590066554, 4.21388912201, -1.05260450473, 0.00428698681688, 0.0, 1496957390.6346, 1.28439032357, 1, 65.6828332293, 15.2635993958, 23.5141525269, 2.38297867775 586349.113698, 4140710.83931, -28.3593972661, 4.19166660309, -1.10920099542, 0.00424870660894, -0.000913245531442, 1496957390.6442, 1.28461615844, 1, 65.7247498953, 15.2635993958, 23.5812931061, 2.36170220375 586349.13048, 4140710.88245, -28.3598070713, 4.19166660309, -1.03058390945, 0.00424870660894, 0.0, 1496957390.6538, 1.28486174728, 1, 65.7666665614, 15.2635993958, 23.5812931061, 2.36170220375 586349.147211, 4140710.92546, -28.3602899443, 4.17777776718, -1.09886563644, 0.00424870660894, 0.0, 1496957390.6643, 1.28505938457, 1, 65.808444339, 15.2635993958, 23.5370407104, 2.36170220375 586349.163946, 4140710.96841, -28.3607373489, 4.17777776718, -0.937592003464, 0.00424870660894, 0.0, 1496957390.6738, 1.28529869537, 1, 65.8502221167, 15.2880144119, 23.5370407104, 2.36170220375 586349.180632, 4140711.01125, -28.3611260746, 4.16111087799, -1.00353503793, 0.00424870660894, 0.0, 1496957390.6843, 1.28552287775, 1, 65.8918332255, 15.2880144119, 23.6285953522, 2.36170220375 586349.197303, 4140711.05398, -28.3615868846, 4.16111087799, -1.028391715, 0.00424870660894, 0.0, 1496957390.6939, 1.28576386482, 1, 65.9334443343, 15.2513923645, 23.6285953522, 2.36170220375 586349.213928, 4140711.0966, -28.361916258, 4.13888883591, -1.13828672999, 0.00424870660894, 0.0, 1496957390.7045, 1.28602866211, 1, 65.9748332226, 15.2513923645, 23.6743717194, 2.36170220375 586349.230564, 4140711.13908, -28.3623002721, 4.13888883591, -1.21631767352, 0.00424870660894, 0.0, 1496957390.7141, 1.28624387347, 1, 66.016222111, 15.2147703171, 23.6743717194, 2.36170220375 586349.2471, 4140711.18149, -28.3625972858, 4.11388874054, -1.18536613096, 0.00424870660894, 0.0, 1496957390.7245, 1.28648157964, 1, 66.0573609984, 15.2147703171, 23.7033653259, 2.36170220375 586349.26364, 4140711.22376, -28.3628962068, 4.11388874054, -1.17642280168, 0.00424870660894, 0.0, 1496957390.7340, 1.28670392908, 1, 66.0984998858, 15.2147703171, 23.7033653259, 2.36170220375 586349.280162, 4140711.26593, -28.3630790878, 4.0944442749, -1.1992861597, 0.00424870660894, 0.0, 1496957390.7445, 1.28685411821, 1, 66.1394443285, 15.2391853333, 23.6972618103, 2.36170220375 586349.296609, 4140711.30794, -28.3633577945, 4.0944442749, -1.34171250613, 0.00424870660894, 0.0, 1496957390.7541, 1.28708485647, 1, 66.1803887713, 15.2391853333, 23.6972618103, 2.36170220375 586349.313064, 4140711.34986, -28.3635781258, 4.06388902664, -1.26524603131, 0.00428698681688, 0.000941959972202, 1496957390.7646, 1.28728503478, 1, 66.2210276616, 15.1659421921, 23.7155723572, 2.38297867775 586349.329433, 4140711.39166, -28.3636875469, 4.06388902664, -1.28314136658, 0.00428698681688, 0.0, 1496957390.7742, 1.28740812204, 1, 66.2616665518, 15.1659421921, 23.7155723572, 2.38297867775 586349.345793, 4140711.43329, -28.3638235219, 4.03888893127, -1.40956877889, 0.00436354796876, 0.00189559933875, 1496957390.7836, 1.28758539265, 1, 66.3020554411, 15.2635993958, 23.8529033661, 2.42553186417 586349.362132, 4140711.4748, -28.3638425805, 4.03888893127, -1.38977075973, 0.00436354796876, 0.0, 1496957390.7941, 1.28783636909, 1, 66.3424443305, 15.2635993958, 23.8529033661, 2.42553186417 586349.378375, 4140711.51618, -28.3639482912, 4.01388883591, -1.49228010947, 0.00440182891451, 0.000953712155927, 1496957390.8035, 1.28798490591, 1, 66.3825832188, 15.2147703171, 23.9017314911, 2.44680857658 586349.394658, 4140711.55741, -28.3640182754, 4.01388883591, -1.3692059989, 0.00440182891451, 0.0, 1496957390.8141, 1.28816531235, 1, 66.4227221072, 15.2147703171, 23.9017314911, 2.44680857658 586349.410873, 4140711.59857, -28.363887378, 3.99444437027, -1.25424646154, 0.00447839069228, 0.00191670657236, 1496957390.8235, 1.28838011599, 1, 66.4626665509, 15.2391853333, 23.8529033661, 2.489361763 586349.427032, 4140711.63958, -28.3640003093, 3.99444437027, -1.23904333249, 0.00447839069228, 0.0, 1496957390.8341, 1.28854841278, 1, 66.5026109946, 15.2391853333, 23.8529033661, 2.489361763 586349.443163, 4140711.68044, -28.3637285829, 3.97222232819, -1.47987952335, 0.00455495289644, 0.00192744005318, 1496957390.8436, 1.28874146913, 1, 66.5423332179, 15.2391853333, 23.854429245, 2.53191494942 586349.45928, 4140711.7212, -28.3637027992, 3.97222232819, -1.24216612857, 0.00455495289644, 0.0, 1496957390.8541, 1.28889201741, 1, 66.5820554411, 15.2391853333, 23.854429245, 2.53191494942 586349.475345, 4140711.7618, -28.3635614673, 3.94722223282, -1.39707364902, 0.00455495289644, 0.0, 1496957390.8635, 1.28910325519, 1, 66.6215276635, 15.2635993958, 23.8498516083, 2.53191494942 586349.491404, 4140711.80233, -28.3633974073, 3.94722223282, -1.21645749439, 0.00455495289644, 0.0, 1496957390.8740, 1.28931042493, 1, 66.6609998858, 15.2635993958, 23.8498516083, 2.53191494942 586349.507394, 4140711.84269, -28.3633318702, 3.91666674614, -1.30689379955, 0.00455495289644, 0.0, 1496957390.8836, 1.2894889763, 1, 66.7001665533, 15.2513923645, 23.8101768494, 2.53191494942 586349.523312, 4140711.88292, -28.3632000992, 3.91666674614, -1.46958453683, 0.00455495289644, 0.0, 1496957390.8942, 1.28971773362, 1, 66.7393332207, 15.2513923645, 23.8101768494, 2.53191494942 586349.539226, 4140711.92305, -28.3631202867, 3.88611102104, -1.27324747868, 0.00451667152613, -0.000985081746408, 1496957390.9038, 1.28984846267, 1, 66.7781943309, 15.3490505219, 23.8391704559, 2.510638237 586349.555074, 4140711.96299, -28.3630212834, 3.88611102104, -1.49852567869, 0.00451667152613, 0.0, 1496957390.9143, 1.2900676493, 1, 66.8170554411, 15.2635993958, 23.8391704559, 2.510638237 586349.570846, 4140712.00286, -28.362881775, 3.86111116409, -1.35200228843, 0.00440182891451, -0.00297434097944, 1496957390.9242, 1.29025814181, 1, 66.8556665528, 15.2635993958, 23.8834209442, 2.44680857658 586349.586511, 4140712.04256, -28.3628924889, 3.86111116409, -1.47207748281, 0.00440182891451, 0.0, 1496957390.9338, 1.29044038353, 1, 66.8942776644, 15.2635993958, 23.8834209442, 2.44680857658 586349.602116, 4140712.08216, -28.3627597345, 3.830555439, -1.47570900702, 0.00432526755582, -0.00199870123027, 1496957390.9443, 1.29058162633, 1, 66.9325832188, 15.3368425369, 23.94140625, 2.40425539017 586349.617662, 4140712.12161, -28.3627845105, 3.830555439, -1.40978499074, 0.00432526755582, 0.0, 1496957390.9538, 1.29079610068, 1, 66.9708887732, 15.3368425369, 23.94140625, 2.40425539017 586349.633129, 4140712.16093, -28.3627966074, 3.80555558205, -1.47738390537, 0.00428698681688, -0.00100591722067, 1496957390.9644, 1.29097722497, 1, 67.008944329, 15.2635993958, 23.920042038, 2.38297867775 586349.648544, 4140712.20013, -28.362794525, 3.80555558205, -1.41665682297, 0.00428698681688, 0.0, 1496957390.9740, 1.29118378893, 1, 67.0469998848, 15.2635993958, 23.920042038, 2.38297867775 586349.663921, 4140712.23915, -28.3627522308, 3.77777767181, -1.53724650105, 0.00428698681688, 0.0, 1496957390.9845, 1.29137073377, 1, 67.0847776616, 15.2880144119, 23.9490356445, 2.38297867775 586349.679262, 4140712.27803, -28.3628321085, 3.77777767181, -1.5019217605, 0.00428698681688, 0.0, 1496957390.9941, 1.2915482623, 1, 67.1225554383, 15.2880144119, 23.9490356445, 2.38297867775 586349.694579, 4140712.31681, -28.3628054289, 3.75277781487, -1.38315045965, 0.00428698681688, 0.0, 1496957391.0051, 1.29178717884, 1, 67.1600832164, 15.2391853333, 23.9276714325, 2.38297867775 586349.709867, 4140712.35538, -28.3629214698, 3.75277781487, -1.53016655355, 0.00428698681688, 0.0, 1496957391.0146, 1.29199574009, 1, 67.1976109946, 15.2391853333, 23.9276714325, 2.38297867775 586349.725099, 4140712.39377, -28.3629432488, 3.72222232819, -1.46337993469, 0.00428698681688, 0.0, 1496957391.0242, 1.29213209153, 1, 67.2348332179, 15.2391853333, 23.8941020966, 2.38297867775 586349.740363, 4140712.4321, -28.3629272012, 3.72222232819, -1.42556980556, 0.00428698681688, 0.0, 1496957391.0337, 1.2923695041, 1, 67.2720554411, 15.2391853333, 23.8941020966, 2.38297867775 586349.755612, 4140712.47025, -28.3629854163, 3.70000004768, -1.43142594825, 0.00432526755582, 0.00103461455267, 1496957391.0443, 1.29253950266, 1, 67.3090554416, 15.2147703171, 23.871213913, 2.40425539017 586349.770804, 4140712.50827, -28.3630580679, 3.70000004768, -1.49465746651, 0.00432526755582, 0.0, 1496957391.0538, 1.29273764915, 1, 67.3460554421, 15.2147703171, 23.871213913, 2.40425539017 586349.785989, 4140712.54614, -28.3630174929, 3.67499995232, -1.48652598905, 0.00432526755582, 0.0, 1496957391.0643, 1.29290427043, 1, 67.3828054416, 15.2635993958, 23.8941020966, 2.40425539017 586349.800974, 4140712.58375, -28.3630985757, 3.67499995232, -1.46002887233, 0.00432526755582, 0.0, 1496957391.0739, 1.29298817394, 1, 67.4195554411, 15.2635993958, 23.8941020966, 2.40425539017 586349.815849, 4140712.62117, -28.3630547412, 3.6472222805, -1.34796192715, 0.00436354796876, 0.00104957718471, 1496957391.0844, 1.29314158187, 1, 67.4560276639, 15.3002214432, 23.8284893036, 2.42553186417 586349.830641, 4140712.65843, -28.3630461544, 3.6472222805, -1.45871487835, 0.00436354796876, 0.0, 1496957391.0940, 1.29330878271, 1, 67.4924998868, 15.3002214432, 23.8284893036, 2.42553186417 586349.845403, 4140712.69555, -28.3630265733, 3.6166665554, -1.51491210558, 0.00440182891451, 0.00105845936215, 1496957391.1035, 1.29347461558, 1, 67.5286665523, 15.2391853333, 23.8605327606, 2.44680857658 586349.860127, 4140712.73249, -28.3629452884, 3.6166665554, -1.61187997329, 0.00440182891451, 0.0, 1496957391.1141, 1.293644198, 1, 67.5648332179, 15.2391853333, 23.8605327606, 2.44680857658 586349.874765, 4140712.76932, -28.362964713, 3.58611106873, -1.52031151087, 0.00440182891451, 0.0, 1496957391.1235, 1.2937945055, 1, 67.6006943285, 15.2391853333, 23.8666362762, 2.44680857658 586349.889409, 4140712.80605, -28.3629698567, 3.58611106873, -1.3031039312, 0.00440182891451, 0.0, 1496957391.1341, 1.29398498292, 1, 67.6365554392, 15.2391853333, 23.8666362762, 2.44680857658 586349.903971, 4140712.84263, -28.362910118, 3.56388878822, -1.35762094096, 0.00440182891451, 0.0, 1496957391.1435, 1.29414648096, 1, 67.6721943271, 15.2635993958, 23.8834209442, 2.44680857658 586349.918499, 4140712.87908, -28.3630338786, 3.56388878822, -1.3599115785, 0.00440182891451, 0.0, 1496957391.1541, 1.29428800813, 1, 67.707833215, 15.2635993958, 23.8834209442, 2.44680857658 586349.933004, 4140712.91538, -28.3630929179, 3.53055548668, -1.40402384775, 0.00436354796876, -0.00108427543195, 1496957391.1635, 1.2944679436, 1, 67.7431387699, 15.226978302, 23.8208599091, 2.42553186417 586349.947465, 4140712.95152, -28.363203465, 3.53055548668, -1.47979745936, 0.00436354796876, 0.0, 1496957391.1740, 1.29465610146, 1, 67.7784443247, 15.226978302, 23.8208599091, 2.42553186417 586349.961915, 4140712.98755, -28.3633816456, 3.49444437027, -1.39712472336, 0.00432526755582, -0.00109546494022, 1496957391.1845, 1.29485834902, 1, 67.8133887684, 15.2635993958, 23.8498516083, 2.40425539017 586349.976343, 4140713.02343, -28.3635387383, 3.49444437027, -1.40495835304, 0.00432526755582, 0.0, 1496957391.1941, 1.29507263669, 1, 67.8483332121, 15.2635993958, 23.8498516083, 2.40425539017 586349.990769, 4140713.05912, -28.3637540601, 3.46944451332, -1.53229257435, 0.00428698681688, -0.00110336795401, 1496957391.2035, 1.29525559046, 1, 67.8830276573, 15.3612575531, 23.8269634247, 2.38297867775 586350.005157, 4140713.09471, -28.3640488749, 3.46944451332, -1.37379799997, 0.00428698681688, 0.0, 1496957391.2140, 1.29544234476, 1, 67.9177221024, 15.3612575531, 23.8269634247, 2.38297867775 586350.019519, 4140713.13015, -28.3643354448, 3.43888878822, -1.39604816365, 0.00424870660894, -0.0011131563218, 1496957391.2245, 1.29563910172, 1, 67.9521109903, 15.226978302, 23.871213913, 2.36170220375 586350.033859, 4140713.16548, -28.3646778846, 3.43888878822, -1.32244720528, 0.00424870660894, 0.0, 1496957391.2340, 1.29577637584, 1, 67.9864998782, 15.226978302, 23.871213913, 2.36170220375 586350.048122, 4140713.20064, -28.3651402164, 3.41111111641, -1.40740495897, 0.00421042607316, -0.00112223068877, 1496957391.2444, 1.29596692745, 1, 68.0206109893, 15.2025632858, 23.8773174286, 2.34042549133 586350.062373, 4140713.23566, -28.3655193578, 3.41111111641, -1.46617361423, 0.00421042607316, 0.0, 1496957391.2540, 1.29616601468, 1, 68.0547221005, 15.2025632858, 23.8773174286, 2.34042549133 586350.076563, 4140713.27056, -28.3659963161, 3.3833334446, -1.40058394938, 0.00417214606656, -0.00113142872945, 1496957391.2644, 1.29633286176, 1, 68.0885554349, 15.2513923645, 23.8605327606, 2.31914901733 586350.090698, 4140713.30534, -28.3665956268, 3.3833334446, -1.32427918144, 0.00417214606656, 0.0, 1496957391.2740, 1.29649223135, 1, 68.1223887694, 15.2513923645, 23.8605327606, 2.31914901733 586350.104778, 4140713.34001, -28.3670664486, 3.36111116409, -1.30197974328, 0.0041338657303, -0.00113891907728, 1496957391.2845, 1.29669078485, 1, 68.155999881, 15.275806427, 23.886472702, 2.29787230492 586350.118805, 4140713.37451, -28.3676486332, 3.36111116409, -1.41919869827, 0.0041338657303, 0.0, 1496957391.2940, 1.29683174128, 1, 68.1896109927, 15.275806427, 23.886472702, 2.29787230492 586350.132767, 4140713.40886, -28.3682142934, 3.33333325386, -1.51952541343, 0.00401902616615, -0.00344518700673, 1496957391.3044, 1.29697783753, 1, 68.2229443252, 15.3490505219, 23.8696880341, 2.2340426445 586350.146678, 4140713.4431, -28.3687320026, 3.33333325386, -1.46617679081, 0.00401902616615, 0.0, 1496957391.3139, 1.2971241815, 1, 68.2562776577, 15.3490505219, 23.8696880341, 2.2340426445 586350.160533, 4140713.47722, -28.3692903761, 3.30277776718, -1.42130410556, 0.00390418703397, -0.00347704690641, 1496957391.3244, 1.29728263645, 1, 68.2893054354, 15.226978302, 23.8818950653, 2.17021274567 586350.174308, 4140713.51118, -28.3697419632, 3.30277776718, -1.47657321137, 0.00390418703397, 0.0, 1496957391.3340, 1.29740319975, 1, 68.3223332131, 15.226978302, 23.8818950653, 2.17021274567 586350.188015, 4140713.54502, -28.370278867, 3.27500009537, -1.49591344115, 0.00382762822164, -0.00233767359084, 1496957391.3446, 1.2975612668, 1, 68.355083214, 15.2635993958, 23.9322490692, 2.12765955925 586350.201665, 4140713.5787, -28.3707160922, 3.27500009537, -1.60307862468, 0.00382762822164, 0.0, 1496957391.3542, 1.2976351572, 1, 68.387833215, 15.2635993958, 23.9322490692, 2.12765955925 586350.215292, 4140713.61225, -28.3711459041, 3.24722218513, -1.47535960735, 0.0037127908986, -0.00353647876528, 1496957391.3637, 1.29770522682, 1, 68.4203054368, 15.2391853333, 23.9642944336, 2.06382989883 586350.228831, 4140713.64561, -28.3715013778, 3.24722218513, -1.66771688578, 0.0037127908986, 0.0, 1496957391.3742, 1.29781965488, 1, 68.4527776587, 15.2391853333, 23.9642944336, 2.06382989883 586350.242345, 4140713.67878, -28.3719129972, 3.21388888359, -1.79420871394, 0.00355967520034, -0.00476418768045, 1496957391.3842, 1.29788984464, 1, 68.4849165475, 15.2391853333, 23.9917602539, 1.97872340679 586350.255832, 4140713.71188, -28.3722255612, 3.21388888359, -1.47357623785, 0.00355967520034, 0.0, 1496957391.3938, 1.29796559953, 1, 68.5170554364, 15.2391853333, 23.9917602539, 1.97872340679 586350.269236, 4140713.74481, -28.372485932, 3.18611121178, -1.57437321576, 0.00344483948028, -0.00360425962647, 1496957391.4046, 1.29809452023, 1, 68.5489165485, 15.2391853333, 24.0817890167, 1.91489362717 586350.282582, 4140713.77762, -28.3728232728, 3.18611121178, -1.46630687375, 0.00344483948028, 0.0, 1496957391.4137, 1.29815908701, 1, 68.5807776606, 15.2391853333, 24.0817890167, 1.91489362717 586350.295882, 4140713.81031, -28.3730466152, 3.16666674614, -1.3764711212, 0.00336828274504, -0.00241758105227, 1496957391.4242, 1.29827605542, 1, 68.6124443281, 15.3246355057, 24.0527954102, 1.87234044075 586350.309116, 4140713.84281, -28.3733270355, 3.16666674614, -1.57945231453, 0.00336828274504, 0.0, 1496957391.4337, 1.29834622465, 1, 68.6441109955, 15.3246355057, 24.0527954102, 1.87234044075 586350.322329, 4140713.87521, -28.3735893518, 3.13888883591, -1.38600306637, 0.00321517022926, -0.00487792093896, 1496957391.4442, 1.29839932819, 1, 68.6754998839, 15.2391853333, 24.0268554688, 1.78723406792 586350.335509, 4140713.90746, -28.3738727067, 3.13888883591, -1.43812777007, 0.00321517022926, 0.0, 1496957391.4538, 1.29849401766, 1, 68.7068887722, 15.2391853333, 24.0268554688, 1.78723406792 586350.348626, 4140713.93956, -28.3740870608, 3.10833334923, -1.51032353608, 0.00306205893783, -0.00492583240683, 1496957391.4644, 1.29860667577, 1, 68.7379721057, 15.2147703171, 24.0650043488, 1.70212769508 586350.361732, 4140713.97151, -28.374347006, 3.10833334923, -1.50430547918, 0.00306205893783, 0.0, 1496957391.4739, 1.29868871749, 1, 68.7690554392, 15.2147703171, 24.0650043488, 1.70212769508 586350.374808, 4140714.0033, -28.3745628688, 3.07777786255, -1.56691805578, 0.00283239416878, -0.00746203200193, 1496957391.4845, 1.29876860462, 1, 68.7998332179, 15.2635993958, 24.0466918945, 1.57446813583 586350.387844, 4140714.03494, -28.3747119838, 3.07777786255, -1.59161804621, 0.00283239416878, 0.0, 1496957391.4941, 1.29887922959, 1, 68.8306109965, 15.2635993958, 24.0466918945, 1.57446813583 586350.387844, 4140714.03494, -28.3747119838, 3.04999995232, -1.59161804621, 0.00264100850892, -0.00627493976581, 1496957391.5038, 1.29887922959, 1, 68.861110996, 15.2025632858, 24.093996048, 1.46808505058 586350.426777, 4140714.12899, -28.3749486925, 3.04999995232, -1.52271246903, 0.00264100850892, 0.0, 1496957391.5142, 1.29917481273, 1, 68.8916109955, 15.2025632858, 24.093996048, 1.46808505058 586350.426777, 4140714.12899, -28.3749486925, 3.01944446564, -1.52271246903, 0.00244962463489, -0.00633838032822, 1496957391.5237, 1.29917481273, 1, 68.9218054402, 15.2513923645, 24.0405883789, 1.36170208454 586350.439708, 4140714.16004, -28.3749197461, 3.01944446564, -1.48749721076, 0.00244962463489, 0.0, 1496957391.5342, 1.29929223891, 1, 68.9519998848, 15.2513923645, 24.0405883789, 1.36170208454 586350.452562, 4140714.19091, -28.3749381108, 2.98888897896, -1.66389603388, 0.00225824221834, -0.00640312898502, 1496957391.5438, 1.29942212348, 1, 68.9818887746, 15.1903562546, 24.0161743164, 1.2553191185 586350.465402, 4140714.22164, -28.3748467416, 2.98888897896, -1.62609782479, 0.00225824221834, 0.0, 1496957391.5544, 1.29950402563, 1, 69.0117776644, 15.1903562546, 24.0161743164, 1.2553191185 586350.478178, 4140714.25222, -28.374763757, 2.95833325386, -1.646395546, 0.00202858508204, -0.0077630583372, 1496957391.5639, 1.29958491497, 1, 69.041360997, 15.2635993958, 23.9841308594, 1.12765955925 586350.490942, 4140714.28265, -28.3746033665, 2.95833325386, -1.55477110717, 0.00202858508204, 0.0, 1496957391.5745, 1.29967787059, 1, 69.0709443295, 15.2635993958, 23.9841308594, 1.12765955925 586350.503649, 4140714.31293, -28.3743889648, 2.92499995232, -1.56474867214, 0.00179892968375, -0.00785146673603, 1496957391.5841, 1.29977573886, 1, 69.100194329, 15.2880144119, 24.0482177734, 1.0 586350.516295, 4140714.34304, -28.3741782224, 2.92499995232, -1.66574667572, 0.00179892968375, 0.0, 1496957391.5935, 1.29984572391, 1, 69.1294443285, 15.2880144119, 24.0482177734, 1.0 586350.528906, 4140714.37299, -28.3738292381, 2.89166665077, -1.69121573598, 0.00153100031991, -0.00926556882952, 1496957391.6041, 1.29991498715, 1, 69.1583609951, 15.2147703171, 24.0344848633, 0.851063847542 586350.541412, 4140714.40279, -28.3735823873, 2.89166665077, -1.68091335107, 0.00153100031991, 0.0, 1496957391.6145, 1.3000116566, 1, 69.1872776616, 15.2147703171, 24.0344848633, 0.851063847542 586350.55388, 4140714.43249, -28.3732513851, 2.86111116409, -1.4800154132, 0.00137789864791, -0.00535112630086, 1496957391.6240, 1.30002455717, 1, 69.2158887732, 15.2391853333, 23.9749755859, 0.765957474709 586350.566273, 4140714.46203, -28.372999412, 2.86111116409, -1.50465699378, 0.00137789864791, 0.0, 1496957391.6346, 1.30009685068, 1, 69.2444998848, 15.2391853333, 23.9749755859, 0.765957474709 586350.578598, 4140714.49145, -28.3727484141, 2.83333325386, -1.39072205689, 0.00130134790508, -0.00270179099914, 1496957391.6442, 1.30014702504, 1, 69.2728332174, 15.2513923645, 23.9475097656, 0.723404228687 586350.590874, 4140714.52076, -28.3725628452, 2.83333325386, -1.39817046866, 0.00130134790508, 0.0, 1496957391.6536, 1.30013826058, 1, 69.3011665499, 15.2513923645, 23.9475097656, 0.723404228687 586350.60309, 4140714.54993, -28.3723607408, 2.80277776718, -1.3528064333, 0.00118652218167, -0.0040968543689, 1496957391.6642, 1.30015843114, 1, 69.3291943276, 15.2513923645, 23.9322490692, 0.659574449062 586350.615254, 4140714.57896, -28.3721596412, 2.80277776718, -1.38038287491, 0.00118652218167, 0.0, 1496957391.6737, 1.30015106787, 1, 69.3572221053, 15.2513923645, 23.9322490692, 0.659574449062 586350.627378, 4140714.60785, -28.3720263354, 2.77500009537, -1.43768974233, 0.00118652218167, 0.0, 1496957391.6844, 1.30017102258, 1, 69.3849721062, 15.2635993958, 23.9169902802, 0.659574449062 586350.639485, 4140714.63662, -28.3719595969, 2.77500009537, -1.36896515642, 0.00118652218167, 0.0, 1496957391.6940, 1.30018093361, 1, 69.4127221072, 15.2635993958, 23.9169902802, 0.659574449062 586350.651586, 4140714.66524, -28.3719406882, 2.74722218513, -1.347185907, 0.00114824699823, -0.00139323217659, 1496957391.7046, 1.30015088312, 1, 69.440194329, 15.2025632858, 23.9185161591, 0.638297855854 586350.663655, 4140714.69375, -28.3719221428, 2.74722218513, -1.25446811083, 0.00114824699823, 0.0, 1496957391.7142, 1.30019354359, 1, 69.4676665509, 15.2025632858, 23.9185161591, 0.638297855854 586350.675688, 4140714.72211, -28.3718896043, 2.72222232819, -1.37685922393, 0.00114824699823, 0.0, 1496957391.7238, 1.30016372239, 1, 69.4948887742, 15.2513923645, 23.935300827, 0.638297855854 586350.687709, 4140714.75033, -28.3718881737, 2.72222232819, -1.33775079447, 0.00114824699823, 0.0, 1496957391.7344, 1.30013138844, 1, 69.5221109974, 15.2513923645, 23.935300827, 0.638297855854 586350.699702, 4140714.77838, -28.3719013138, 2.69444441795, -1.49756185952, 0.00114824699823, 0.0, 1496957391.7439, 1.30016246913, 1, 69.5490554416, 15.1781492233, 23.9505615234, 0.638297855854 586350.711669, 4140714.80627, -28.3719846569, 2.69444441795, -1.60410648927, 0.00114824699823, 0.0, 1496957391.7545, 1.3001769628, 1, 69.5759998858, 15.1781492233, 23.9505615234, 0.638297855854 586350.723619, 4140714.83405, -28.3719391562, 2.66388893127, -1.46401061966, 0.00114824699823, 0.0, 1496957391.7641, 1.30023953266, 1, 69.6026387751, 15.226978302, 23.9307231903, 0.638297855854 586350.735537, 4140714.86164, -28.3719792981, 2.66388893127, -1.57466870412, 0.00114824699823, 0.0, 1496957391.7746, 1.30019758611, 1, 69.6292776644, 15.226978302, 23.9307231903, 0.638297855854 586350.747418, 4140714.88909, -28.3719155714, 2.63611102104, -1.5418493463, 0.00114824699823, 0.0, 1496957391.7840, 1.30026172343, 1, 69.6556387746, 15.2635993958, 23.9185161591, 0.638297855854 586350.759273, 4140714.91639, -28.371944095, 2.63611102104, -1.51206137634, 0.00114824699823, 0.0, 1496957391.7945, 1.30021670334, 1, 69.6819998848, 15.2635993958, 23.9185161591, 0.638297855854 586350.771078, 4140714.94356, -28.3718998926, 2.60555553436, -1.52808248939, 0.00110997184211, -0.00146898254957, 1496957391.8041, 1.3002904386, 1, 69.7080554402, 15.2635993958, 23.9658203125, 0.617021262646 586350.782848, 4140714.97056, -28.3718353389, 2.60555553436, -1.55038785388, 0.00110997184211, 0.0, 1496957391.8136, 1.30030363393, 1, 69.7341109955, 15.2635993958, 23.9658203125, 0.617021262646 586350.794575, 4140714.99739, -28.3718282981, 2.57777786255, -1.66437235909, 0.0010716967124, -0.00148481101726, 1496957391.8242, 1.30034277511, 1, 69.7598887742, 15.2635993958, 23.9993896484, 0.595744669437 586350.806271, 4140715.02407, -28.3717578771, 2.57777786255, -1.65468368742, 0.0010716967124, 0.0, 1496957391.8337, 1.30043943226, 1, 69.7856665528, 15.2635993958, 23.9993896484, 0.595744669437 586350.817953, 4140715.05058, -28.371771967, 2.54722213745, -1.62167546651, 0.0010716967124, 0.0, 1496957391.8442, 1.30048030496, 1, 69.8111387742, 15.2391853333, 23.9566650391, 0.595744669437 586350.829615, 4140715.07696, -28.3716586977, 2.54722213745, -1.56491814001, 0.0010716967124, 0.0, 1496957391.8538, 1.30055324166, 1, 69.8366109955, 15.2391853333, 23.9566650391, 0.595744669437 586350.841237, 4140715.10315, -28.3716911254, 2.51666665077, -1.62345320394, 0.00103342160821, -0.00152086507711, 1496957391.8643, 1.30063315199, 1, 69.861777662, 15.2513923645, 23.9475097656, 0.574468076229 586350.852839, 4140715.12922, -28.3716323804, 2.51666665077, -1.51259505801, 0.00103342160821, 0.0, 1496957391.8738, 1.30073205151, 1, 69.8869443285, 15.2513923645, 23.9475097656, 0.574468076229 586350.864436, 4140715.1551, -28.3716058526, 2.48611116409, -1.62197626917, 0.0009951465286, -0.0015395562418, 1496957391.8845, 1.30077031911, 1, 69.9118054402, 15.2513923645, 23.9719238281, 0.553191483021 586350.875998, 4140715.18083, -28.3715579836, 2.48611116409, -1.61298002987, 0.0009951465286, 0.0, 1496957391.8940, 1.30091812853, 1, 69.9366665518, 15.2513923645, 23.9719238281, 0.553191483021 586350.887534, 4140715.20638, -28.3714880608, 2.45833325386, -1.65582952091, 0.000956871472678, -0.00155695147767, 1496957391.9039, 1.30099774398, 1, 69.9612498844, 15.2391853333, 23.9047832489, 0.531914889812 586350.899031, 4140715.23178, -28.3714415953, 2.45833325386, -1.64625034285, 0.000956871472678, 0.0, 1496957391.9146, 1.30106448438, 1, 69.9858332169, 15.2391853333, 23.9047832489, 0.531914889812 586350.910503, 4140715.25702, -28.3713704357, 2.42777776718, -1.64149842639, 0.000956871472678, 0.0, 1496957391.9241, 1.30117521843, 1, 70.0101109946, 15.2635993958, 23.9719238281, 0.531914889812 586350.92196, 4140715.2821, -28.3712606691, 2.42777776718, -1.59602795376, 0.000956871472678, 0.0, 1496957391.9335, 1.30126975764, 1, 70.0343887722, 15.2635993958, 23.9719238281, 0.531914889812 586350.933349, 4140715.30703, -28.3711576937, 2.40000009537, -1.64432893443, 0.000956871472678, 0.0, 1496957391.9441, 1.3013484848, 1, 70.0583887732, 15.2391853333, 23.9887084961, 0.531914889812 586350.944712, 4140715.33179, -28.371081342, 2.40000009537, -1.63565543912, 0.000956871472678, 0.0, 1496957391.9536, 1.30139873929, 1, 70.0823887742, 15.2391853333, 23.9887084961, 0.531914889812 586350.956021, 4140715.35638, -28.3709608819, 2.36944437027, -1.66338470228, 0.000956871472678, 0.0, 1496957391.9642, 1.30143741166, 1, 70.1060832179, 15.2391853333, 23.9475097656, 0.531914889812 586350.967299, 4140715.38084, -28.3708093213, 2.36944437027, -1.60852668559, 0.000956871472678, 0.0, 1496957391.9737, 1.30151707538, 1, 70.1297776616, 15.2391853333, 23.9475097656, 0.531914889812 586350.978521, 4140715.40515, -28.3706807997, 2.33888888359, -1.60016202351, 0.000956871472678, 0.0, 1496957391.9842, 1.3015971138, 1, 70.1531665504, 15.2147703171, 23.871213913, 0.531914889812 586350.989688, 4140715.42929, -28.3705592519, 2.33888888359, -1.61576211631, 0.000956871472678, 0.0, 1496957391.9938, 1.30157657693, 1, 70.1765554392, 15.2147703171, 23.871213913, 0.531914889812 586351.000806, 4140715.4533, -28.3704921193, 2.30555558205, -1.54786181136, 0.000956871472678, 0.0, 1496957392.0048, 1.30162260654, 1, 70.1996109951, 15.2635993958, 23.871213913, 0.531914889812 586351.011871, 4140715.47716, -28.3703955058, 2.30555558205, -1.54008393829, 0.000956871472678, 0.0, 1496957392.0144, 1.30162849065, 1, 70.2226665509, 15.2635993958, 23.871213913, 0.531914889812 586351.022898, 4140715.50085, -28.3703297023, 2.27500009537, -1.58625608874, 0.000956871472678, 0.0, 1496957392.0240, 1.30163641021, 1, 70.2454165518, 15.2391853333, 23.871213913, 0.531914889812 586351.03387, 4140715.5244, -28.3702765899, 2.27500009537, -1.58465539997, 0.000956871472678, 0.0, 1496957392.0345, 1.30161630115, 1, 70.2681665528, 15.2391853333, 23.871213913, 0.531914889812 586351.04481, 4140715.5478, -28.3702549059, 2.2416665554, -1.52024392387, 0.000956871472678, 0.0, 1496957392.0441, 1.30164189707, 1, 70.2905832183, 15.2025632858, 23.8208599091, 0.531914889812 586351.055704, 4140715.57106, -28.3702690629, 2.2416665554, -1.50484158855, 0.000956871472678, 0.0, 1496957392.0535, 1.30162702352, 1, 70.3129998839, 15.2025632858, 23.8208599091, 0.531914889812 586351.066555, 4140715.59417, -28.3702757806, 2.20833325386, -1.52761268093, 0.000956871472678, 0.0, 1496957392.0641, 1.30160717297, 1, 70.3350832164, 15.2880144119, 23.8605327606, 0.531914889812 586351.077213, 4140715.61699, -28.3703241283, 2.20833325386, -1.59497798464, 0.000956871472678, 0.0, 1496957392.0747, 1.30151209833, 1, 70.357166549, 15.2880144119, 23.8605327606, 0.531914889812 586351.087881, 4140715.63971, -28.3704111902, 2.18055558205, -1.49845825166, 0.000956871472678, 0.0, 1496957392.0842, 1.30150180507, 1, 70.3789721048, 15.2391853333, 23.8132305145, 0.531914889812 586351.098521, 4140715.66226, -28.3704981068, 2.18055558205, -1.52885043395, 0.000956871472678, 0.0, 1496957392.0937, 1.30150028303, 1, 70.4007776606, 15.2391853333, 23.8132305145, 0.531914889812 586351.109152, 4140715.68466, -28.370593356, 2.15000009537, -1.49515892515, 0.000956871472678, 0.0, 1496957392.1043, 1.30150573937, 1, 70.4222776616, 15.2635993958, 23.8498516083, 0.531914889812 586351.119739, 4140715.7069, -28.3707230473, 2.15000009537, -1.53951393026, 0.000956871472678, 0.0, 1496957392.1139, 1.30153377477, 1, 70.4437776625, 15.2635993958, 23.8498516083, 0.531914889812 586351.130319, 4140715.729, -28.37090577, 2.1166665554, -1.54703613426, 0.000918596439528, -0.00180826937773, 1496957392.1243, 1.30153390071, 1, 70.4649443281, 15.3124284744, 23.8178081512, 0.510638296604 586351.140862, 4140715.75095, -28.3711151332, 2.1166665554, -1.46806498293, 0.000918596439528, 0.0, 1496957392.1338, 1.30158347529, 1, 70.4861109936, 15.3124284744, 23.8178081512, 0.510638296604 586351.151383, 4140715.77274, -28.3713715253, 2.08611106873, -1.51947312485, 0.000918596439528, 0.0, 1496957392.1443, 1.30162777384, 1, 70.5069721043, 15.2635993958, 23.8147563934, 0.510638296604 586351.161893, 4140715.7944, -28.3715970553, 2.08611106873, -1.44832799417, 0.000918596439528, 0.0, 1496957392.1539, 1.30168416632, 1, 70.527833215, 15.2635993958, 23.8147563934, 0.510638296604 586351.17237, 4140715.81588, -28.3718192279, 2.05833339691, -1.53357279007, 0.000918596439528, 0.0, 1496957392.1645, 1.30173652304, 1, 70.548416549, 15.226978302, 23.8513774872, 0.510638296604 586351.182807, 4140715.83721, -28.3721008291, 2.05833339691, -1.58415864858, 0.000918596439528, 0.0, 1496957392.1745, 1.30182701995, 1, 70.5689998829, 15.226978302, 23.8513774872, 0.510638296604 586351.193225, 4140715.8584, -28.3723407881, 2.03055548668, -1.5180323263, 0.000880321428239, -0.00188495274027, 1496957392.1841, 1.30192276876, 1, 70.5893054378, 15.2391853333, 23.8010215759, 0.489361703396 586351.203611, 4140715.87944, -28.3725987542, 2.03055548668, -1.50293963389, 0.000880321428239, 0.0, 1496957392.1936, 1.3019974722, 1, 70.6096109927, 15.2391853333, 23.8010215759, 0.489361703396 586351.213966, 4140715.90033, -28.3728475794, 2.0, -1.5460602023, 0.0008420464379, -0.00191374951694, 1496957392.2041, 1.30207541138, 1, 70.6296109927, 15.2635993958, 23.8010215759, 0.468085110188 586351.224275, 4140715.92108, -28.3730062656, 2.0, -1.52952282287, 0.0008420464379, 0.0, 1496957392.2136, 1.30215350225, 1, 70.6496109927, 15.2635993958, 23.7125205994, 0.468085110188 586351.234553, 4140715.94167, -28.3732117275, 1.97500002384, -1.51967155616, 0.0008420464379, 0.0, 1496957392.2241, 1.30222958052, 1, 70.6693609929, 15.2025632858, 23.7125205994, 0.468085110188 586351.244763, 4140715.96212, -28.3733093916, 1.97500002384, -1.56798089861, 0.0008420464379, 0.0, 1496957392.2336, 1.30222336395, 1, 70.6891109931, 15.2025632858, 23.6743717194, 0.468085110188 586351.254921, 4140715.98241, -28.3734690351, 1.9416667223, -1.61421246038, 0.000803771467601, -0.00197124304907, 1496957392.2442, 1.30227452245, 1, 70.7085276604, 15.2391853333, 23.6041812897, 0.446808516979 586351.265015, 4140716.00255, -28.3735165009, 1.9416667223, -1.61887563919, 0.000803771467601, 0.0, 1496957392.2536, 1.30233230751, 1, 70.7279443276, 15.2391853333, 23.6041812897, 0.446808516979 586351.275036, 4140716.02253, -28.3735860148, 1.91111111641, -1.67983648176, 0.00076549651643, -0.00200275906735, 1496957392.2642, 1.30234999837, 1, 70.7470554388, 15.2513923645, 23.6041812897, 0.425531923771 586351.285003, 4140716.04238, -28.3736570561, 1.91111111641, -1.61768970917, 0.00076549651643, 0.0, 1496957392.2737, 1.30240196828, 1, 70.7661665499, 15.2513923645, 23.5431442261, 0.425531923771 586351.294912, 4140716.06207, -28.3737068456, 1.88055551052, -1.56119061837, 0.000727221583477, -0.00203529928998, 1496957392.2843, 1.30240136983, 1, 70.784972105, 15.226978302, 23.4729537964, 0.404255330563 586351.304761, 4140716.08163, -28.3737391373, 1.88055551052, -1.54995045712, 0.000727221583477, 0.0, 1496957392.2938, 1.30239300025, 1, 70.8037776601, 15.226978302, 23.4729537964, 0.404255330563 586351.314549, 4140716.10103, -28.3737373315, 1.8527777195, -1.5528743468, 0.00068894666783, -0.00206581260364, 1496957392.3043, 1.30242001487, 1, 70.8223054373, 15.2513923645, 23.4744796753, 0.382978737354 586351.324281, 4140716.12029, -28.3737357091, 1.8527777195, -1.55363574731, 0.00068894666783, 0.0, 1496957392.3137, 1.30241421246, 1, 70.8408332145, 15.2513923645, 23.4744796753, 0.382978737354 586351.333962, 4140716.13941, -28.3737013638, 1.82222223282, -1.55157405083, 0.000650671714967, -0.00210045471807, 1496957392.3242, 1.30241163152, 1, 70.8590554368, 15.1903562546, 23.3325710297, 0.361702114344 586351.343584, 4140716.15835, -28.3736878363, 1.82222223282, -1.68473106821, 0.000650671714967, 0.0, 1496957392.3338, 1.30240705336, 1, 70.8772776592, 15.1903562546, 23.3325710297, 0.361702114344 586351.35316, 4140716.17715, -28.3736817949, 1.78888893127, -1.64121162746, 0.000650671714967, 0.0, 1496957392.3444, 1.30236736153, 1, 70.8951665485, 15.1781492233, 23.3249416351, 0.361702114344 586351.362706, 4140716.19581, -28.3736609519, 1.78888893127, -1.53795706761, 0.000650671714967, 0.0, 1496957392.3539, 1.30236430213, 1, 70.9130554378, 15.1781492233, 23.3249416351, 0.361702114344 586351.372234, 4140716.21429, -28.3736888124, 1.75833332539, -1.5776196868, 0.000650671714967, 0.0, 1496957392.3644, 1.30237553709, 1, 70.9306387711, 15.2880144119, 23.3524074554, 0.361702114344 586351.381711, 4140716.2326, -28.3736829842, 1.75833332539, -1.6669164374, 0.000650671714967, 0.0, 1496957392.3739, 1.3023788902, 1, 70.9482221043, 15.2880144119, 23.3524074554, 0.361702114344 586351.391161, 4140716.25076, -28.3736784393, 1.7277777195, -1.66332808731, 0.000612396831201, -0.00221526665925, 1496957392.3841, 1.30236396719, 1, 70.9654998815, 15.226978302, 23.3249416351, 0.340425521135 586351.400567, 4140716.26876, -28.3737170557, 1.7277777195, -1.64146254813, 0.000612396831201, 0.0, 1496957392.3941, 1.30239586987, 1, 70.9827776587, 15.226978302, 23.3249416351, 0.340425521135 586351.409949, 4140716.2866, -28.3737124167, 1.69444441795, -1.64810240788, 0.000574121962009, -0.00225884477452, 1496957392.4048, 1.30237903377, 1, 70.9997221029, 15.226978302, 23.2989997864, 0.319148927927 586351.419295, 4140716.30426, -28.3737495206, 1.69444441795, -1.70181828693, 0.000574121962009, 0.0, 1496957392.4138, 1.30238476952, 1, 71.0166665471, 15.226978302, 23.2989997864, 0.319148927927 586351.428597, 4140716.32174, -28.3737655384, 1.66111111641, -1.77155538149, 0.000497572263703, -0.00460834302711, 1496957392.4249, 1.30239376309, 1, 71.0332776582, 15.2635993958, 23.2715339661, 0.27659574151 586351.437863, 4140716.33905, -28.3737898162, 1.66111111641, -1.75235675034, 0.000497572263703, 0.0, 1496957392.4345, 1.30234131892, 1, 71.0498887694, 15.2635993958, 23.2715339661, 0.27659574151 586351.447115, 4140716.35621, -28.3738348112, 1.63055551052, -1.68016053669, 0.000382747802778, -0.00704204549827, 1496957392.4442, 1.30235643409, 1, 71.0661943245, 15.2635993958, 23.2715339661, 0.212765961885 586351.456321, 4140716.3732, -28.3738389937, 1.63055551052, -1.68356742357, 0.000382747802778, 0.0, 1496957392.4538, 1.30235214208, 1, 71.0824998796, 15.2635993958, 23.256275177, 0.212765961885 586351.465477, 4140716.39002, -28.373859955, 1.6027777195, -1.72076433646, 0.000267923397025, -0.00716408796777, 1496957392.4643, 1.30240770062, 1, 71.0985276568, 15.2147703171, 23.256275177, 0.148936167359 586351.474564, 4140716.40668, -28.3738682121, 1.6027777195, -1.75547048287, 0.000267923397025, 0.0, 1496957392.4738, 1.3023812447, 1, 71.114555434, 15.2147703171, 23.2089729309, 0.148936167359 586351.483603, 4140716.42319, -28.3738793414, 1.57500004768, -1.67248217125, 0.000153099062061, -0.00729043374529, 1496957392.4843, 1.3023975458, 1, 71.1303054345, 15.2147703171, 23.2089729309, 0.0851063802838 586351.492591, 4140716.43954, -28.3738958864, 1.57500004768, -1.63373783494, 0.000153099062061, 0.0, 1496957392.4937, 1.30244002282, 1, 71.1460554349, 15.2147703171, 23.1738758087, 0.0851063802838 586351.501522, 4140716.45573, -28.3738936083, 1.54722225666, -1.64418109315, 7.65495273868e-05, -0.00494754611655, 1496957392.5049, 1.30241220101, 1, 71.1615276575, 15.2635993958, 23.1738758087, 0.0425531901419 586351.510385, 4140716.47177, -28.3738733437, 1.54722225666, -1.65725695855, 7.65495273868e-05, 0.0, 1496957392.5144, 1.30244470463, 1, 71.1769998801, 15.2635993958, 23.1219959259, 0.0425531901419 586351.519203, 4140716.48765, -28.3738812236, 1.51666665077, -1.65567560296, 0.0, -0.00504722163884, 1496957392.5240, 1.30244003224, 1, 71.1921665466, 15.2391853333, 23.1219959259, 0.0 586351.52795, 4140716.50338, -28.373857093, 1.51666665077, -1.6503998999, 0.0, 0.0, 1496957392.5337, 1.30243460783, 1, 71.2073332131, 15.2391853333, 23.0640125275, 0.0 586351.536664, 4140716.51897, -28.3738294877, 1.48611116409, -1.58802273558, -0.000114824296708, -0.0077264944563, 1496957392.5442, 1.30242885669, 1, 71.2221943247, 15.2635993958, 23.0640125275, -0.0638297870755 586351.545317, 4140716.53438, -28.3737688158, 1.48611116409, -1.63787627781, -0.000114824296708, 0.0, 1496957392.5538, 1.30246950575, 1, 71.2370554364, 15.2635993958, 23.0106048584, -0.0638297870755 586351.553932, 4140716.54966, -28.3736700416, 1.4555555582, -1.62868496073, -0.000153099062061, -0.00262956402706, 1496957392.5644, 1.30242409975, 1, 71.251610992, 15.2391853333, 23.0106048584, -0.0851063802838 586351.562523, 4140716.56476, -28.3735571168, 1.4555555582, -1.62150291268, -0.000153099062061, 0.0, 1496957392.5742, 1.3024602129, 1, 71.2661665475, 15.2391853333, 22.8931102753, -0.0851063802838 586351.571078, 4140716.57971, -28.3734045653, 1.42222225666, -1.61796773532, -0.000153099062061, 0.0, 1496957392.5837, 1.30245787578, 1, 71.2803887701, 15.2391853333, 22.8931102753, -0.0851063802838 586351.579617, 4140716.59451, -28.3732021935, 1.42222225666, -1.60740662223, -0.000153099062061, 0.0, 1496957392.5942, 1.30246658404, 1, 71.2946109927, 15.2391853333, 22.8305492401, -0.0851063802838 586351.588133, 4140716.60913, -28.3729854869, 1.38888883591, -1.64346871949, -0.000153099062061, 0.0, 1496957392.6038, 1.30246775878, 1, 71.308499881, 15.2391853333, 22.8305492401, -0.0851063802838 586351.596626, 4140716.62359, -28.3726964742, 1.38888883591, -1.67981734233, -0.000153099062061, 0.0, 1496957392.6143, 1.30246561899, 1, 71.3223887694, 15.2391853333, 22.8336009979, -0.0851063802838 586351.6051, 4140716.63787, -28.3724075779, 1.35833334923, -1.71102953574, -0.000153099062061, 0.0, 1496957392.6238, 1.30248184659, 1, 71.3359721029, 15.2635993958, 22.8336009979, -0.0851063802838 586351.613538, 4140716.65199, -28.372055335, 1.35833334923, -1.70527163396, -0.000153099062061, 0.0, 1496957392.6342, 1.30250961105, 1, 71.3495554364, 15.2635993958, 22.7985038757, -0.0851063802838 586351.621964, 4140716.66594, -28.3716507191, 1.32777774334, -1.70087557817, -0.000114824296708, 0.00288261838583, 1496957392.6439, 1.30250446672, 1, 71.3628332138, 15.2391853333, 22.7985038757, -0.0638297870755 586351.63037, 4140716.67975, -28.3712289585, 1.32777774334, -1.60019136317, -0.000114824296708, 0.0, 1496957392.6545, 1.3025475837, 1, 71.3761109912, 15.2391853333, 22.7405204773, -0.0638297870755 586351.638743, 4140716.69341, -28.3708075332, 1.29722225666, -1.53740114263, -0.000114824296708, 0.0, 1496957392.6641, 1.30259298822, 1, 71.3890832138, 15.2147703171, 22.7405204773, -0.0638297870755 586351.64711, 4140716.70693, -28.3703861814, 1.29722225666, -1.42775363293, -0.000114824296708, 0.0, 1496957392.6735, 1.30259247114, 1, 71.4020554364, 15.2147703171, 22.7161064148, -0.0638297870755 586351.655454, 4140716.72033, -28.3699476523, 1.26666665077, -1.34741255802, -7.65495273868e-05, 0.00302169235276, 1496957392.6842, 1.30262847257, 1, 71.4147221029, 15.2025632858, 22.7161064148, -0.0425531901419 586351.663753, 4140716.73359, -28.3695283597, 1.26666665077, -1.33369795661, -7.65495273868e-05, 0.0, 1496957392.6938, 1.30264437607, 1, 71.4273887694, 15.2025632858, 22.626077652, -0.0425531901419 586351.672026, 4140716.74672, -28.3691013344, 1.23611116409, -1.32594631059, -3.8274763238e-05, 0.00309638528157, 1496957392.7043, 1.30260985998, 1, 71.439749881, 15.2391853333, 22.626077652, -0.021276595071 586351.680262, 4140716.75972, -28.3687168332, 1.23611116409, -1.34395773762, -3.8274763238e-05, 0.0, 1496957392.7139, 1.30262036787, 1, 71.4521109927, 15.2391853333, 22.5757236481, -0.021276595071 586351.688472, 4140716.77261, -28.3683148297, 1.20833337307, -1.25381014297, 0.0, 0.00316756650863, 1496957392.7244, 1.30263570651, 1, 71.4641943264, 15.275806427, 22.5757236481, 0.0 586351.696639, 4140716.78538, -28.3679852104, 1.20833337307, -1.24561889728, 0.0, 0.0, 1496957392.7340, 1.30262794535, 1, 71.4762776601, 15.275806427, 22.5192642212, 0.0 586351.704775, 4140716.79804, -28.3676733635, 1.17777776718, -1.16464632187, 0.0, 0.0, 1496957392.7446, 1.3026250578, 1, 71.4880554378, 15.2391853333, 22.5192642212, 0.0 586351.7129, 4140716.8106, -28.3674367126, 1.17777776718, -1.06966267915, 0.0, 0.0, 1496957392.7541, 1.30266326753, 1, 71.4998332155, 15.2391853333, 22.4322872162, 0.0 586351.720994, 4140716.82307, -28.3672264116, 1.14999997616, -0.97890198899, 7.65495273868e-05, 0.00665648078033, 1496957392.7636, 1.30263757611, 1, 71.5113332152, 15.2635993958, 22.4322872162, 0.0425531901419 586351.729082, 4140716.83545, -28.3670241805, 1.14999997616, -0.926058557797, 7.65495273868e-05, 0.0, 1496957392.7741, 1.30264867989, 1, 71.522833215, 15.2635993958, 22.386510849, 0.0425531901419 586351.737156, 4140716.84774, -28.3668685388, 1.12777781487, -0.917845263724, 0.000114824296708, 0.00339382179866, 1496957392.7836, 1.30265715534, 1, 71.5341109931, 15.2025632858, 22.386510849, 0.0638297870755 586351.745223, 4140716.85991, -28.366751208, 1.12777781487, -0.982879803076, 0.000114824296708, 0.0, 1496957392.7942, 1.30263766352, 1, 71.5453887713, 15.2025632858, 22.3620967865, 0.0638297870755 586351.753287, 4140716.87199, -28.3666484281, 1.10555553436, -0.952471989176, 0.00022964861801, 0.0103861197138, 1496957392.8036, 1.30264287389, 1, 71.5564443266, 15.3002214432, 22.3620967865, 0.127659574151 586351.761323, 4140716.88398, -28.3665794795, 1.10555553436, -0.917577538782, 0.00022964861801, 0.0, 1496957392.8141, 1.30259809208, 1, 71.567499882, 15.3002214432, 22.3132686615, 0.127659574151 586351.76934, 4140716.89589, -28.366511506, 1.08333337307, -0.928055212702, 0.000267923397025, 0.00353305639492, 1496957392.8235, 1.3026191316, 1, 71.5783332157, 15.2391853333, 22.3132686615, 0.148936167359 586351.777336, 4140716.9077, -28.366461738, 1.08333337307, -0.911403701173, 0.000267923397025, 0.0, 1496957392.8341, 1.30262243634, 1, 71.5891665494, 15.2391853333, 22.2384986877, 0.148936167359 586351.785303, 4140716.91942, -28.3664147714, 1.0583332777, -0.931598679361, 0.000344473001902, 0.00723303391181, 1496957392.8435, 1.3026218223, 1, 71.5997498822, 15.2880144119, 22.2384986877, 0.191489368677 586351.793233, 4140716.93106, -28.3663320653, 1.0583332777, -0.936598760819, 0.000344473001902, 0.0, 1496957392.8541, 1.30267069482, 1, 71.610333215, 15.2880144119, 22.3315792084, 0.191489368677 586351.801127, 4140716.94259, -28.3662750293, 1.03888893127, -1.00721255199, 0.000421022612763, 0.00736841144008, 1496957392.8635, 1.30264478671, 1, 71.6207221043, 15.1903562546, 22.3315792084, 0.234042555094 586351.808989, 4140716.95403, -28.3661541007, 1.03888893127, -1.0243711054, 0.000421022612763, 0.0, 1496957392.8740, 1.30265356086, 1, 71.6311109936, 15.1903562546, 22.3483638763, 0.234042555094 586351.816818, 4140716.96538, -28.3660520343, 1.01666665077, -1.01380094288, 0.000497572263703, 0.00752947398068, 1496957392.8846, 1.30262185099, 1, 71.6412776601, 15.2147703171, 22.3483638763, 0.27659574151 586351.82462, 4140716.97664, -28.3659061706, 1.01666665077, -0.951137979528, 0.000497572263703, 0.0, 1496957392.8942, 1.30261523302, 1, 71.6514443266, 15.2147703171, 22.3193721771, 0.27659574151 586351.832383, 4140716.98781, -28.3657483906, 0.99722224474, -0.932257023178, 0.00053584710648, 0.0038381457071, 1496957392.9041, 1.30262868971, 1, 71.6614165491, 15.2635993958, 22.3193721771, 0.297872334719 586351.840126, 4140716.9989, -28.3656073874, 0.99722224474, -0.929525332578, 0.00053584710648, 0.0, 1496957392.9140, 1.30258393363, 1, 71.6713887715, 15.2635993958, 22.3529415131, 0.297872334719 586351.84785, 4140717.00989, -28.3654168444, 0.975000023842, -0.935642805043, 0.000574121962009, 0.0039256261121, 1496957392.9247, 1.30259550081, 1, 71.6811387718, 15.2147703171, 22.3529415131, 0.319148927927 586351.855538, 4140717.02078, -28.3652393557, 0.975000023842, -0.987336960352, 0.000574121962009, 0.0, 1496957392.9342, 1.30259349075, 1, 71.690888772, 15.2147703171, 22.3453121185, 0.319148927927 586351.863212, 4140717.03158, -28.3650402538, 0.952777802944, -0.99558834255, 0.000612396831201, 0.00401718733096, 1496957392.9438, 1.30259285203, 1, 71.70041655, 15.2391853333, 22.3453121185, 0.340425521135 586351.870858, 4140717.04228, -28.3648233851, 0.952777802944, -0.999544145075, 0.000612396831201, 0.0, 1496957392.9544, 1.30257995922, 1, 71.7099443281, 15.2391853333, 22.3437862396, 0.340425521135 586351.878493, 4140717.05289, -28.36458549, 0.933333337307, -0.971890335682, 0.000650671714967, 0.00410088038605, 1496957392.9639, 1.30258088123, 1, 71.7192776614, 15.2147703171, 22.3437862396, 0.361702114344 586351.886099, 4140717.06341, -28.3643251425, 0.933333337307, -0.979438233059, 0.000650671714967, 0.0, 1496957392.9745, 1.30258189125, 1, 71.7286109948, 15.2147703171, 22.3926143646, 0.361702114344 586351.893688, 4140717.07382, -28.3640685827, 0.91388887167, -1.00187411832, 0.000650671714967, 0.0, 1496957392.9841, 1.30258784886, 1, 71.7377498835, 15.2635993958, 22.3926143646, 0.361702114344 586351.901278, 4140717.08413, -28.3638015976, 0.91388887167, -0.98404055662, 0.000650671714967, 0.0, 1496957392.9946, 1.30259721326, 1, 71.7468887722, 15.2635993958, 22.4292354584, 0.361702114344 586351.908841, 4140717.09435, -28.363520816, 0.894444465637, -0.980900253304, 0.00068894666783, 0.00427918717521, 1496957393.0042, 1.3025975356, 1, 71.7558332169, 15.2147703171, 22.4292354584, 0.382978737354 586351.916397, 4140717.10448, -28.3632270927, 0.894444465637, -0.951155467797, 0.00068894666783, 0.0, 1496957393.0143, 1.30260488528, 1, 71.7647776616, 15.2147703171, 22.4017696381, 0.382978737354 586351.923932, 4140717.11452, -28.362948468, 0.875, -0.937544621802, 0.00068894666783, 0.0, 1496957393.0238, 1.30262640367, 1, 71.7735276616, 15.226978302, 22.4017696381, 0.382978737354 586351.931445, 4140717.12446, -28.3626525421, 0.875, -0.938948195401, 0.00068894666783, 0.0, 1496957393.0343, 1.30265430975, 1, 71.7822776616, 15.226978302, 22.3666744232, 0.382978737354 586351.938932, 4140717.13431, -28.3623655615, 0.855555534363, -0.952019432378, 0.00068894666783, 0.0, 1496957393.0438, 1.30265972698, 1, 71.7908332169, 15.2880144119, 22.3666744232, 0.382978737354 586351.946394, 4140717.14407, -28.362078663, 0.855555534363, -0.930472424532, 0.00068894666783, 0.0, 1496957393.0544, 1.30265903654, 1, 71.7993887722, 15.2880144119, 22.3239498138, 0.382978737354 586351.953831, 4140717.15374, -28.3617908824, 0.83611112833, -0.938226006249, 0.00068894666783, 0.0, 1496957393.0640, 1.30268504753, 1, 71.8077498835, 15.2635993958, 22.3239498138, 0.382978737354 586351.960767, 4140717.163, -28.3615301941, 0.83611112833, -0.955961093441, 0.00068894666783, 0.0, 1496957393.0745, 1.30250374709, 1, 71.8161109948, 15.2635993958, 22.4063472748, 0.382978737354 586351.967132, 4140717.1718, -28.3611859577, 0.819444417953, -0.932255481607, 0.00068894666783, 0.0, 1496957393.0841, 1.30250020809, 1, 71.824305439, 15.275806427, 22.4063472748, 0.382978737354 586351.973462, 4140717.18051, -28.3608669844, 0.819444417953, -0.944301291268, 0.00068894666783, 0.0, 1496957393.0946, 1.30251905655, 1, 71.8324998832, 15.275806427, 22.3941402435, 0.382978737354 586351.979747, 4140717.18912, -28.3605552595, 0.802777767181, -0.97925727531, 0.00068894666783, 0.0, 1496957393.1042, 1.30251144653, 1, 71.8405276608, 15.226978302, 22.3941402435, 0.382978737354 586351.986002, 4140717.19765, -28.360256956, 0.802777767181, -0.948464887913, 0.00068894666783, 0.0, 1496957393.1137, 1.30249975039, 1, 71.8485554385, 15.226978302, 22.4429702759, 0.382978737354 586351.992229, 4140717.2061, -28.3599723475, 0.783333361149, -0.902944971527, 0.00068894666783, 0.0, 1496957393.1242, 1.30250413144, 1, 71.8563887721, 15.2880144119, 22.4429702759, 0.382978737354 586351.998432, 4140717.21446, -28.3596895244, 0.783333361149, -0.879281393023, 0.00068894666783, 0.0, 1496957393.1336, 1.30247107252, 1, 71.8642221057, 15.2880144119, 22.4383926392, 0.382978737354 586352.004609, 4140717.22273, -28.3594301986, 0.763888895512, -0.893681562987, 0.00068894666783, 0.0, 1496957393.1443, 1.30245594394, 1, 71.8718609947, 15.2391853333, 22.4383926392, 0.382978737354 586352.010776, 4140717.23092, -28.3591762222, 0.763888895512, -0.868198706023, 0.00068894666783, 0.0, 1496957393.1538, 1.30245997359, 1, 71.8794998837, 15.2391853333, 22.4124507904, 0.382978737354 586352.016917, 4140717.23901, -28.3589270469, 0.74722224474, -0.910601424745, 0.000727221583477, 0.00512229338944, 1496957393.1643, 1.30244567462, 1, 71.8869721061, 15.2635993958, 22.4124507904, 0.404255330563 586352.023046, 4140717.24703, -28.3586875712, 0.74722224474, -0.859987231201, 0.000727221583477, 0.0, 1496957393.1738, 1.3024117025, 1, 71.8944443285, 15.2635993958, 22.4444961548, 0.404255330563 586352.029161, 4140717.25496, -28.3584353542, 0.730555534363, -0.85770274855, 0.000727221583477, 0.0, 1496957393.1844, 1.30239013, 1, 71.9017498839, 15.1659421921, 22.4444961548, 0.404255330563 586352.035262, 4140717.26279, -28.3582229912, 0.730555534363, -0.893490955082, 0.000727221583477, 0.0, 1496957393.1939, 1.30236274962, 1, 71.9090554392, 15.1659421921, 22.4811172485, 0.404255330563 586352.041357, 4140717.27054, -28.3579823896, 0.713888883591, -0.88061600895, 0.000727221583477, 0.0, 1496957393.2044, 1.30236643683, 1, 71.9161943281, 15.1903562546, 22.4811172485, 0.404255330563 586352.047446, 4140717.2782, -28.3577581402, 0.713888883591, -0.875984998078, 0.000727221583477, 0.0, 1496957393.2139, 1.30237465483, 1, 71.9233332169, 15.1903562546, 22.4536514282, 0.404255330563 586352.053515, 4140717.28577, -28.3575422177, 0.694444417953, -0.878341065073, 0.00076549651643, 0.00551159055554, 1496957393.2246, 1.3023629146, 1, 71.9302776611, 15.2635993958, 22.4536514282, 0.425531923771 586352.059577, 4140717.29326, -28.3573156241, 0.694444417953, -0.883640338965, 0.00076549651643, 0.0, 1496957393.2341, 1.30237782411, 1, 71.9372221053, 15.2635993958, 22.473487854, 0.425531923771 586352.065621, 4140717.30066, -28.3570980644, 0.680555582047, -0.870169130057, 0.000803771467601, 0.00562407423885, 1496957393.2435, 1.30234546495, 1, 71.9440276611, 15.2513923645, 22.473487854, 0.446808516979 586352.071654, 4140717.30797, -28.356877422, 0.680555582047, -0.871561449635, 0.000803771467601, 0.0, 1496957393.2540, 1.30235458349, 1, 71.9508332169, 15.2513923645, 22.4139766693, 0.446808516979 586352.077667, 4140717.31521, -28.3566662204, 0.661111116409, -0.853474824217, 0.000803771467601, 0.0, 1496957393.2645, 1.30237554691, 1, 71.9574443281, 15.1537342072, 22.4139766693, 0.446808516979 586352.083659, 4140717.32236, -28.3564498201, 0.661111116409, -0.841763770369, 0.000803771467601, 0.0, 1496957393.2741, 1.3024028608, 1, 71.9640554392, 15.1537342072, 22.4002437592, 0.446808516979 586352.089634, 4140717.32942, -28.3562277434, 0.647222220898, -0.85297755414, 0.000803771467601, 0.0, 1496957393.2835, 1.3023803128, 1, 71.9705276614, 15.2513923645, 22.4002437592, 0.446808516979 586352.095589, 4140717.3364, -28.3559963163, 0.647222220898, -0.869265376999, 0.000803771467601, 0.0, 1496957393.2940, 1.30238983914, 1, 71.9769998837, 15.2513923645, 22.403295517, 0.446808516979 586352.101522, 4140717.34329, -28.3557557929, 0.62777775526, -0.892852136761, 0.000803771467601, 0.0, 1496957393.3046, 1.30241425904, 1, 71.9832776612, 15.2025632858, 22.403295517, 0.446808516979 586352.107434, 4140717.3501, -28.3554986911, 0.62777775526, -0.900244359498, 0.000803771467601, 0.0, 1496957393.3142, 1.30243013089, 1, 71.9895554388, 15.2025632858, 22.4261837006, 0.446808516979 586352.113328, 4140717.35681, -28.355239532, 0.613888859749, -0.911928771445, 0.000803771467601, 0.0, 1496957393.3237, 1.30243840447, 1, 71.9956943274, 15.226978302, 22.4261837006, 0.446808516979 586352.119202, 4140717.36343, -28.3549456792, 0.613888859749, -0.943056910985, 0.000803771467601, 0.0, 1496957393.3342, 1.30248137532, 1, 72.001833216, 15.226978302, 22.3895626068, 0.446808516979 586352.125057, 4140717.36996, -28.3546627043, 0.597222208977, -0.938666440873, 0.0008420464379, 0.00640883237831, 1496957393.3438, 1.30249335168, 1, 72.007805438, 15.2391853333, 22.3895626068, 0.468085110188 586352.130889, 4140717.3764, -28.3543623891, 0.597222208977, -0.937773886838, 0.0008420464379, 0.0, 1496957393.3543, 1.3025172738, 1, 72.0137776601, 15.2391853333, 22.2842750549, 0.468085110188 586352.136704, 4140717.38276, -28.3540514242, 0.583333313465, -0.91162175538, 0.000880321428239, 0.00656142713869, 1496957393.3641, 1.30258862352, 1, 72.0196109933, 15.2391853333, 22.2842750549, 0.489361703396 586352.142501, 4140717.38902, -28.3537446512, 0.583333313465, -0.903748171659, 0.000880321428239, 0.0, 1496957393.3746, 1.30258395519, 1, 72.0254443264, 15.2391853333, 22.2720680237, 0.489361703396 586352.148284, 4140717.3952, -28.3534190748, 0.566666662693, -0.896048538176, 0.000918596439528, 0.00675441380423, 1496957393.3841, 1.30260157253, 1, 72.031110993, 15.2147703171, 22.2720680237, 0.510638296604 586352.154043, 4140717.40129, -28.3531061383, 0.566666662693, -0.907714942907, 0.000918596439528, 0.0, 1496957393.3936, 1.30260788731, 1, 72.0367776597, 15.2147703171, 22.1911964417, 0.510638296604 586352.159783, 4140717.40729, -28.3527737604, 0.547222197056, -0.911000030823, 0.000918596439528, 0.0, 1496957393.4045, 1.3026420318, 1, 72.0422498816, 15.2147703171, 22.1911964417, 0.510638296604 586352.165503, 4140717.4132, -28.352448388, 0.547222197056, -0.912424430358, 0.000918596439528, 0.0, 1496957393.4142, 1.30263991031, 1, 72.0477221036, 15.2147703171, 22.146944046, 0.510638296604 586352.171202, 4140717.41902, -28.352105815, 0.533333361149, -0.916647633308, 0.000956871472678, 0.00717656834135, 1496957393.4242, 1.30262327402, 1, 72.0530554372, 15.2635993958, 22.146944046, 0.531914889812 586352.176875, 4140717.42475, -28.3517689724, 0.533333361149, -0.93405155959, 0.000956871472678, 0.0, 1496957393.4338, 1.3026308052, 1, 72.0583887708, 15.2635993958, 22.1210041046, 0.531914889812 586352.182524, 4140717.43039, -28.3514306648, 0.516666650772, -0.913690068458, 0.0009951465286, 0.00740807556766, 1496957393.4443, 1.30267368659, 1, 72.0635554373, 15.226978302, 22.1210041046, 0.553191483021 586352.188144, 4140717.43594, -28.351095045, 0.516666650772, -0.938777993015, 0.0009951465286, 0.0, 1496957393.4538, 1.302672282, 1, 72.0687221038, 15.226978302, 22.0538635254, 0.553191483021 586352.193738, 4140717.44141, -28.3507577758, 0.5, -0.921987659537, 0.00103342160821, 0.007655015921, 1496957393.4644, 1.3026594111, 1, 72.0737221038, 15.2391853333, 22.0538635254, 0.574468076229 586352.199307, 4140717.44678, -28.3504148852, 0.5, -0.932469320831, 0.00103342160821, 0.0, 1496957393.4739, 1.3026636601, 1, 72.0787221038, 15.2391853333, 22.0355529785, 0.574468076229 586352.204847, 4140717.45207, -28.3500995133, 0.488888889551, -0.932700161888, 0.0010716967124, 0.00782899857551, 1496957393.4845, 1.30264592096, 1, 72.0836109927, 15.2391853333, 22.0355529785, 0.595744669437 586352.210364, 4140717.45727, -28.3497599522, 0.488888889551, -0.914498985543, 0.0010716967124, 0.0, 1496957393.4940, 1.30264863346, 1, 72.0884998816, 15.2391853333, 22.0019836426, 0.595744669437 586352.215856, 4140717.46238, -28.3494367534, 0.469444453716, -0.90090789331, 0.00110997184211, 0.00815328190599, 1496957393.5047, 1.30264224971, 1, 72.0931943262, 15.2880144119, 22.0019836426, 0.617021262646 586352.226767, 4140717.47235, -28.3488029167, 0.469444453716, -0.898046126525, 0.00110997184211, 0.0, 1496957393.5142, 1.30262287723, 1, 72.0978887707, 15.2880144119, 22.0187683105, 0.617021262646 586352.226767, 4140717.47235, -28.3488029167, 0.452777773142, -0.898046126525, 0.0010716967124, -0.00845340296586, 1496957393.5235, 1.30262287723, 1, 72.1024165484, 15.2880144119, 22.0187683105, 0.595744669437 586352.232195, 4140717.4772, -28.3484988194, 0.452777773142, -0.871138278873, 0.0010716967124, 0.0, 1496957393.5341, 1.30261044889, 1, 72.1069443262, 15.2880144119, 21.9974060059, 0.595744669437 586352.237601, 4140717.48197, -28.3481888669, 0.441666662693, -0.880719408576, 0.0010716967124, 0.0, 1496957393.5436, 1.30264087288, 1, 72.1113609928, 15.2880144119, 21.9974060059, 0.595744669437 586352.242987, 4140717.48666, -28.3478871882, 0.441666662693, -0.877043142463, 0.0010716967124, 0.0, 1496957393.5542, 1.30260954631, 1, 72.1157776594, 15.2880144119, 21.994354248, 0.595744669437 586352.248355, 4140717.49126, -28.3475875026, 0.425000011921, -0.857724226273, 0.0010716967124, 0.0, 1496957393.5638, 1.30260704381, 1, 72.1200276595, 15.2513923645, 21.994354248, 0.595744669437 586352.253707, 4140717.49577, -28.3472919436, 0.425000011921, -0.857214852058, 0.0010716967124, 0.0, 1496957393.5743, 1.30262359116, 1, 72.1242776597, 15.2513923645, 21.9394226074, 0.595744669437 586352.259043, 4140717.50021, -28.3469929751, 0.405555546284, -0.831548007823, 0.0010716967124, 0.0, 1496957393.5839, 1.30260993699, 1, 72.1283332151, 15.1903562546, 21.9394226074, 0.595744669437 586352.264361, 4140717.50457, -28.3466927856, 0.405555546284, -0.814614322349, 0.0010716967124, 0.0, 1496957393.5945, 1.30261619858, 1, 72.1323887706, 15.1903562546, 21.9150066376, 0.595744669437 586352.269661, 4140717.50885, -28.3463901244, 0.391666680574, -0.805646835646, 0.0010716967124, 0.0, 1496957393.6041, 1.30258030223, 1, 72.1363054374, 15.226978302, 21.9150066376, 0.595744669437 586352.274948, 4140717.51306, -28.3460902749, 0.391666680574, -0.793771021675, 0.0010716967124, 0.0, 1496957393.6146, 1.30266027263, 1, 72.1402221042, 15.226978302, 21.8844890594, 0.595744669437 586352.280221, 4140717.51719, -28.345779771, 0.383333325386, -0.768954067622, 0.0010716967124, 0.0, 1496957393.6242, 1.30261836319, 1, 72.1440554374, 15.2391853333, 21.8844890594, 0.595744669437 586352.285479, 4140717.52124, -28.3454696033, 0.383333325386, -0.75798752972, 0.0010716967124, 0.0, 1496957393.6337, 1.30263932466, 1, 72.1478887707, 15.2391853333, 21.7929344177, 0.595744669437 586352.29072, 4140717.52523, -28.3451562123, 0.366666674614, -0.748126002212, 0.0010716967124, 0.0, 1496957393.6442, 1.30264171399, 1, 72.1515554374, 15.2391853333, 21.7929344177, 0.595744669437 586352.29595, 4140717.52914, -28.3448354853, 0.366666674614, -0.73933422448, 0.0010716967124, 0.0, 1496957393.6538, 1.30262906396, 1, 72.1552221042, 15.2391853333, 21.7135887146, 0.595744669437 586352.301166, 4140717.53297, -28.3445132989, 0.347222208977, -0.748104970451, 0.0010716967124, 0.0, 1496957393.6643, 1.30266532034, 1, 72.1586943263, 15.275806427, 21.7135887146, 0.595744669437 586352.306368, 4140717.53673, -28.3441773541, 0.347222208977, -0.740239225881, 0.0010716967124, 0.0, 1496957393.6738, 1.30263881515, 1, 72.1621665484, 15.275806427, 21.669336319, 0.595744669437 586352.311556, 4140717.54043, -28.3438373739, 0.336111098528, -0.732508413934, 0.0010716967124, 0.0, 1496957393.6843, 1.30270616175, 1, 72.1655276594, 15.2513923645, 21.669336319, 0.595744669437 586352.316727, 4140717.54405, -28.3434963124, 0.336111098528, -0.72397247013, 0.0010716967124, 0.0, 1496957393.6938, 1.30270405274, 1, 72.1688887703, 15.2513923645, 21.6662845612, 0.595744669437 586352.32188, 4140717.5476, -28.3431484113, 0.327777773142, -0.717167394665, 0.0010716967124, 0.0, 1496957393.7044, 1.30274135522, 1, 72.1721665481, 15.1903562546, 21.6662845612, 0.595744669437 586352.327021, 4140717.55109, -28.3427910516, 0.327777773142, -0.699761935686, 0.0010716967124, 0.0, 1496957393.7139, 1.30273661024, 1, 72.1754443258, 15.1903562546, 21.6021976471, 0.595744669437 586352.332141, 4140717.55451, -28.3424300384, 0.316666662693, -0.704782343868, 0.0010716967124, 0.0, 1496957393.7245, 1.30273289455, 1, 72.1786109924, 15.2513923645, 21.6021976471, 0.595744669437 586352.337242, 4140717.55786, -28.3420687821, 0.316666662693, -0.685255929747, 0.0010716967124, 0.0, 1496957393.7341, 1.30277871323, 1, 72.1817776591, 15.2513923645, 21.5640506744, 0.595744669437 586352.34233, 4140717.56115, -28.3417010047, 0.302777767181, -0.680182659636, 0.0010716967124, 0.0, 1496957393.7435, 1.30277711731, 1, 72.1848054367, 15.2391853333, 21.5640506744, 0.595744669437 586352.3474, 4140717.56438, -28.3413335346, 0.302777767181, -0.653265952671, 0.0010716967124, 0.0, 1496957393.7540, 1.30278662575, 1, 72.1878332144, 15.2391853333, 21.5213241577, 0.595744669437 586352.35245, 4140717.56755, -28.3409596626, 0.208333328366, -0.637845780527, 0.0010716967124, 0.0, 1496957393.7645, 1.30279746978, 1, 72.1899165477, 15.275806427, 21.5213241577, 0.595744669437 586352.357484, 4140717.57065, -28.3405922838, 0.208333328366, -0.635313804466, 0.0010716967124, 0.0, 1496957393.7740, 1.3027549738, 1, 72.191999881, 15.275806427, 21.5075912476, 0.595744669437 586352.362502, 4140717.5737, -28.3402259694, 0.0, -0.633437228103, 0.0010716967124, 0, 1496957393.7835, 1.30278301233, 1, 72.191999881, 15.275806427, 21.5075912476, 0.595744669437 586352.367504, 4140717.57668, -28.3398568844, 0.0, 0, 0.0010716967124, 0, 1496957393.7944, 1.30277948055, 1, 72.191999881, 15.275806427, 21.4602890015, 0.595744669437 586352.372491, 4140717.57962, -28.3394867079, 0.0, 0, 0.0010716967124, 0, 1496957393.8038, 1.30273874234, 1, 72.191999881, 15.226978302, 21.4602890015, 0.595744669437 586352.377462, 4140717.58249, -28.3391239252, 0.0, 0, 0.0010716967124, 0, 1496957393.8145, 1.30277790917, 1, 72.191999881, 15.226978302, 21.571680069, 0.595744669437 586352.382418, 4140717.58531, -28.3387642419, 0.0, 0, 0.0010716967124, 0, 1496957393.8241, 1.30277479364, 1, 72.191999881, 15.2391853333, 21.571680069, 0.595744669437 586352.387364, 4140717.58807, -28.3384003108, 0.0, 0, 0.0010716967124, 0, 1496957393.8335, 1.30273796669, 1, 72.191999881, 15.2391853333, 21.5106430054, 0.595744669437 586352.392295, 4140717.59078, -28.3380461764, 0.0, 0, 0.0010716967124, 0, 1496957393.8442, 1.30272821107, 1, 72.191999881, 15.226978302, 21.5106430054, 0.595744669437 586352.397218, 4140717.59345, -28.3376981979, 0.0, 0, 0.0010716967124, 0, 1496957393.8537, 1.30271544356, 1, 72.191999881, 15.226978302, 21.5106430054, 0.595744669437 586352.402127, 4140717.59606, -28.3373501906, 0.0, 0, 0.0010716967124, 0, 1496957393.8643, 1.30269355659, 1, 72.191999881, 15.2880144119, 21.5106430054, 0.595744669437 586352.407032, 4140717.59862, -28.3370031361, 0.0, 0, 0.0010716967124, 0, 1496957393.8738, 1.30268068218, 1, 72.191999881, 15.2880144119, 21.5396347046, 0.595744669437 586352.411928, 4140717.60113, -28.3366549239, 0.0, 0, 0.0010716967124, 0, 1496957393.8844, 1.30269120612, 1, 72.191999881, 15.2391853333, 21.5396347046, 0.595744669437 586352.416814, 4140717.60358, -28.336310314, 0.0, 0, 0.0010716967124, 0, 1496957393.8939, 1.30268839576, 1, 72.191999881, 15.2391853333, 21.4480819702, 0.595744669437 586352.421693, 4140717.60599, -28.3359644078, 0.0, 0, 0.0010716967124, 0, 1496957393.9058, 1.30267349436, 1, 72.191999881, 15.2391853333, 21.4480819702, 0.595744669437 586352.426571, 4140717.60835, -28.335613098, 0.0, 0, 0.0010716967124, 0, 1496957393.9148, 1.30263284425, 1, 72.191999881, 15.2391853333, 21.4770736694, 0.595744669437 586352.431436, 4140717.61067, -28.3352592578, 0.0, 0, 0.0010716967124, 0, 1496957393.9237, 1.30265174974, 1, 72.191999881, 15.2391853333, 21.4770736694, 0.595744669437 586352.436294, 4140717.61293, -28.3348944625, 0.0, 0, 0.0010716967124, 0, 1496957393.9344, 1.3026424797, 1, 72.191999881, 15.2391853333, 21.5564193726, 0.595744669437 586352.441148, 4140717.61514, -28.334529642, 0.0, 0, 0.0010716967124, 0, 1496957393.9440, 1.30261785461, 1, 72.191999881, 15.2147703171, 21.5564193726, 0.595744669437 586352.445992, 4140717.6173, -28.3341563782, 0.0, 0, 0.0010716967124, 0, 1496957393.9546, 1.30265519459, 1, 72.191999881, 15.2147703171, 21.5579452515, 0.595744669437 586352.45083, 4140717.61942, -28.3337752828, 0.0, 0, 0.0010716967124, 0, 1496957393.9642, 1.30265367344, 1, 72.191999881, 15.2391853333, 21.5579452515, 0.595744669437 586352.455658, 4140717.62149, -28.3333894638, 0.0, 0, 0.0010716967124, 0, 1496957393.9737, 1.30265405603, 1, 72.191999881, 15.2391853333, 21.5838871002, 0.595744669437 586352.460475, 4140717.62351, -28.3330001179, 0.0, 0, 0.0010716967124, 0, 1496957393.9842, 1.30269932467, 1, 72.191999881, 15.2391853333, 21.5838871002, 0.595744669437 586352.465282, 4140717.62548, -28.3326085657, 0.0, 0, 0.0010716967124, 0, 1496957393.9938, 1.30267331222, 1, 72.191999881, 15.2391853333, 21.5930423737, 0.595744669437 586352.470084, 4140717.62741, -28.3322082721, 0.0, 0, 0.0010716967124, 0, 1496957394.0045, 1.30266155179, 1, 72.191999881, 15.2391853333, 21.5930423737, 0.595744669437 586352.474875, 4140717.62929, -28.3318107491, 0.0, 0, 0.0010716967124, 0, 1496957394.0146, 1.30270286774, 1, 72.191999881, 15.2391853333, 21.6098270416, 0.595744669437 586352.479652, 4140717.63112, -28.3314098911, 0.0, 0, 0.0010716967124, 0, 1496957394.0242, 1.30268381035, 1, 72.191999881, 15.2880144119, 21.6098270416, 0.595744669437 586352.484422, 4140717.6329, -28.3310097717, 0.0, 0, 0.0010716967124, 0, 1496957394.0336, 1.30270631254, 1, 72.191999881, 15.2880144119, 21.5365829468, 0.595744669437 586352.489181, 4140717.63464, -28.3306116834, 0.0, 0, 0.0010716967124, 0, 1496957394.0442, 1.30271557708, 1, 72.191999881, 15.226978302, 21.5365829468, 0.595744669437 586352.493928, 4140717.63633, -28.3302096082, 0.0, 0, 0.0010716967124, 0, 1496957394.0536, 1.30273699066, 1, 72.191999881, 15.226978302, 21.5503158569, 0.595744669437 586352.498664, 4140717.63798, -28.3298137654, 0.0, 0, 0.0010716967124, 0, 1496957394.0641, 1.30272048933, 1, 72.191999881, 15.2391853333, 21.5503158569, 0.595744669437 586352.502589, 4140717.63906, -28.3294287138, 0.0, 0, 0.0010716967124, 0, 1496957394.0735, 1.30239101584, 1, 72.191999881, 15.2391853333, 21.5320053101, 0.595744669437 586352.505853, 4140717.63968, -28.3290186329, 0.0, 0, 0.0010716967124, 0, 1496957394.0842, 1.30238596025, 1, 72.191999881, 15.1781492233, 21.5320053101, 0.595744669437 586352.509104, 4140717.64026, -28.3286213921, 0.0, 0, 0.0010716967124, 0, 1496957394.0937, 1.30236106035, 1, 72.191999881, 15.1781492233, 21.5960941315, 0.595744669437 586352.51234, 4140717.64081, -28.3282285081, 0.0, 0, 0.0010716967124, 0, 1496957394.1043, 1.3023464463, 1, 72.191999881, 15.2513923645, 21.5960941315, 0.595744669437 586352.515578, 4140717.64133, -28.3278501937, 0.0, 0, 0.0010716967124, 0, 1496957394.1138, 1.30233525366, 1, 72.191999881, 15.2513923645, 21.6235599518, 0.595744669437 586352.518811, 4140717.64184, -28.3274938464, 0.0, 0, 0.0010716967124, 0, 1496957394.1243, 1.30235689229, 1, 72.191999881, 15.2391853333, 21.6235599518, 0.595744669437 586352.522037, 4140717.64233, -28.3271438358, 0.0, 0, 0.0010716967124, 0, 1496957394.1339, 1.30233838688, 1, 72.191999881, 15.2391853333, 21.5884647369, 0.595744669437 586352.525264, 4140717.6428, -28.3268098105, 0.0, 0, 0.0010716967124, 0, 1496957394.1445, 1.30237028493, 1, 72.191999881, 15.2391853333, 21.5884647369, 0.595744669437 586352.528492, 4140717.64328, -28.3264905782, 0.0, 0, 0.0010716967124, 0, 1496957394.1541, 1.30236626322, 1, 72.191999881, 15.2025632858, 21.5548934937, 0.595744669437 586352.531723, 4140717.64375, -28.3261833191, 0.0, 0, 0.0010716967124, 0, 1496957394.1636, 1.3023138743, 1, 72.191999881, 15.2391853333, 21.5548934937, 0.595744669437 586352.534957, 4140717.64422, -28.3258867804, 0.0, 0, 0.0010716967124, 0, 1496957394.1741, 1.30235335131, 1, 72.191999881, 15.2391853333, 21.5655765533, 0.595744669437 586352.538196, 4140717.6447, -28.3255971419, 0.0, 0, 0.0010716967124, 0, 1496957394.1836, 1.3023403703, 1, 72.191999881, 15.2391853333, 21.5655765533, 0.595744669437 586352.541441, 4140717.64518, -28.3253142815, 0.0, 0, 0.0010716967124, 0, 1496957394.1941, 1.30237881347, 1, 72.191999881, 15.2391853333, 21.6250858307, 0.595744669437 586352.544694, 4140717.64568, -28.3250390105, 0.0, 0, 0.0010716967124, 0, 1496957394.2036, 1.30239106404, 1, 72.191999881, 15.2513923645, 21.6250858307, 0.595744669437 586352.547954, 4140717.64619, -28.3247543797, 0.0, 0, 0.0010716967124, 0, 1496957394.2141, 1.30237173999, 1, 72.191999881, 15.2513923645, 21.6159305573, 0.595744669437 586352.551226, 4140717.64671, -28.3244717531, 0.0, 0, 0.0010716967124, 0, 1496957394.2235, 1.30235604093, 1, 72.191999881, 15.2635993958, 21.6159305573, 0.595744669437 586352.554505, 4140717.64726, -28.3241954697, 0.0, 0, 0.0010716967124, 0, 1496957394.2340, 1.30236081172, 1, 72.191999881, 15.2635993958, 21.6342411041, 0.595744669437 586352.557797, 4140717.64783, -28.3239071658, 0.0, 0, 0.0010716967124, 0, 1496957394.2435, 1.30234561422, 1, 72.191999881, 15.2635993958, 21.6342411041, 0.595744669437 586352.561101, 4140717.64842, -28.323609734, 0.0, 0, 0.0010716967124, 0, 1496957394.2541, 1.30234766811, 1, 72.191999881, 15.2391853333, 21.6296634674, 0.595744669437 586352.564411, 4140717.64904, -28.3233089112, 0.0, 0, 0.0010716967124, 0, 1496957394.2636, 1.30235737236, 1, 72.191999881, 15.2391853333, 21.6296634674, 0.595744669437 586352.567727, 4140717.64968, -28.3229889208, 0.0, 0, 0.0010716967124, 0, 1496957394.2742, 1.30234624951, 1, 72.191999881, 15.2391853333, 21.6342411041, 0.595744669437 586352.571055, 4140717.65034, -28.3226614073, 0.0, 0, 0.0010716967124, 0, 1496957394.2837, 1.30233751624, 1, 72.191999881, 15.2513923645, 21.6342411041, 0.595744669437 586352.574387, 4140717.65103, -28.3223143509, 0.0, 0, 0.0010716967124, 0, 1496957394.2942, 1.30237706439, 1, 72.191999881, 15.2513923645, 21.6662845612, 0.595744669437 586352.577722, 4140717.65173, -28.3219536608, 0.0, 0, 0.0010716967124, 0, 1496957394.3036, 1.30235823934, 1, 72.191999881, 15.3002214432, 21.6662845612, 0.595744669437 586352.581059, 4140717.65244, -28.3215811029, 0.0, 0, 0.0010716967124, 0, 1496957394.3141, 1.30235407591, 1, 72.191999881, 15.3002214432, 21.707485199, 0.595744669437 586352.584408, 4140717.65318, -28.3211834729, 0.0, 0, 0.0010716967124, 0, 1496957394.3236, 1.30237889656, 1, 72.191999881, 15.2147703171, 21.707485199, 0.595744669437 586352.58776, 4140717.65392, -28.3207689645, 0.0, 0, 0.0010716967124, 0, 1496957394.3342, 1.30240493676, 1, 72.191999881, 15.2147703171, 21.7792015076, 0.595744669437 586352.591111, 4140717.65468, -28.3203385267, 0.0, 0, 0.0010716967124, 0, 1496957394.3437, 1.3023321528, 1, 72.191999881, 15.2635993958, 21.7792015076, 0.595744669437 586352.594466, 4140717.65545, -28.3198916828, 0.0, 0, 0.0010716967124, 0, 1496957394.3542, 1.30235928408, 1, 72.191999881, 15.2635993958, 21.8768596649, 0.595744669437 586352.597823, 4140717.65623, -28.3194289766, 0.0, 0, 0.0010716967124, 0, 1496957394.3637, 1.30237377146, 1, 72.191999881, 15.2391853333, 21.8768596649, 0.595744669437 586352.601183, 4140717.657, -28.3189516412, 0.0, 0, 0.0010716967124, 0, 1496957394.3744, 1.30240070318, 1, 72.191999881, 15.2391853333, 21.9058513641, 0.595744669437 586352.604541, 4140717.65778, -28.3184616519, 0.0, 0, 0.0010716967124, 0, 1496957394.3844, 1.30237014198, 1, 72.191999881, 15.2391853333, 21.9058513641, 0.595744669437 586352.607901, 4140717.65856, -28.3179630954, 0.0, 0, 0.0010716967124, 0, 1496957394.3940, 1.30235379318, 1, 72.191999881, 15.2635993958, 21.9501037598, 0.595744669437 586352.611263, 4140717.65933, -28.3174603833, 0.0, 0, 0.0010716967124, 0, 1496957394.4057, 1.3023484149, 1, 72.191999881, 15.1903562546, 21.9501037598, 0.595744669437 586352.614624, 4140717.66009, -28.3169518095, 0.0, 0, 0.0010716967124, 0, 1496957394.4150, 1.30235901355, 1, 72.191999881, 15.1903562546, 22.0721759796, 0.595744669437 586352.617988, 4140717.66084, -28.3164376533, 0.0, 0, 0.0010716967124, 0, 1496957394.4241, 1.30234374408, 1, 72.191999881, 15.2635993958, 22.0721759796, 0.595744669437 586352.621351, 4140717.66158, -28.3159341989, 0.0, 0, 0.0010716967124, 0, 1496957394.4335, 1.30234304897, 1, 72.191999881, 15.2635993958, 22.1988258362, 0.595744669437 586352.62471, 4140717.66231, -28.315434739, 0.0, 0, 0.0010716967124, 0, 1496957394.4441, 1.30233700209, 1, 72.191999881, 15.2147703171, 22.1988258362, 0.595744669437 586352.628075, 4140717.66303, -28.3149404097, 0.0, 0, 0.0010716967124, 0, 1496957394.4535, 1.3023131454, 1, 72.191999881, 15.2147703171, 22.3254756927, 0.595744669437 586352.631436, 4140717.66374, -28.3144565308, 0.0, 0, 0.0010716967124, 0, 1496957394.4641, 1.30229764816, 1, 72.191999881, 15.3246355057, 22.3254756927, 0.595744669437 586352.634801, 4140717.66444, -28.3139860621, 0.0, 0, 0.0010716967124, 0, 1496957394.4735, 1.30230264802, 1, 72.191999881, 15.3246355057, 22.4338130951, 0.595744669437 586352.638162, 4140717.66514, -28.3135354267, 0.0, 0, 0.0010716967124, 0, 1496957394.4841, 1.30229328793, 1, 72.191999881, 15.3246355057, 22.4338130951, 0.595744669437 586352.641525, 4140717.66582, -28.3130899128, 0.0, 0, 0.0010716967124, 0, 1496957394.4936, 1.30227868949, 1, 72.191999881, 15.275806427, 22.5848789215, 0.595744669437 586352.644888, 4140717.66649, -28.3126596343, 0.0, 0, 0.0010716967124, 0, 1496957394.5044, 1.3022904075, 1, 72.191999881, 15.2513923645, 22.5848789215, 0.595744669437 586352.651612, 4140717.6678, -28.3118448993, 0.0, 0, 0.0010716967124, 0, 1496957394.5140, 1.30229244726, 1, 72.191999881, 15.2513923645, 22.6886405945, 0.595744669437 586352.651612, 4140717.6678, -28.3118448993, 0.0, 0, 0.0010716967124, 0, 1496957394.5245, 1.30229244726, 1, 72.191999881, 15.2391853333, 22.6886405945, 0.595744669437 586352.654975, 4140717.66845, -28.3114571609, 0.0, 0, 0.0010716967124, 0, 1496957394.5340, 1.30227277956, 1, 72.191999881, 15.2391853333, 22.8503856659, 0.595744669437 586352.658342, 4140717.66908, -28.3110772194, 0.0, 0, 0.0010716967124, 0, 1496957394.5446, 1.30232835587, 1, 72.191999881, 15.2391853333, 22.8503856659, 0.595744669437 586352.661708, 4140717.66972, -28.3107065856, 0.0, 0, 0.0010716967124, 0, 1496957394.5545, 1.30231278197, 1, 72.191999881, 15.2391853333, 22.9816131592, 0.595744669437 586352.665077, 4140717.67035, -28.31034387, 0.0, 0, 0.0010716967124, 0, 1496957394.5639, 1.30227190013, 1, 72.191999881, 15.2635993958, 22.9816131592, 0.595744669437 586352.668447, 4140717.67097, -28.3099835208, 0.0, 0, 0.0010716967124, 0, 1496957394.5745, 1.30231367023, 1, 72.191999881, 15.2635993958, 23.0426483154, 0.595744669437 586352.671817, 4140717.6716, -28.3096222086, 0.0, 0, 0.0010716967124, 0, 1496957394.5841, 1.30229792481, 1, 72.191999881, 15.2880144119, 23.0426483154, 0.595744669437 586352.675189, 4140717.67223, -28.3092559343, 0.0, 0, 0.0010716967124, 0, 1496957394.5945, 1.30229087699, 1, 72.191999881, 15.2880144119, 23.190662384, 0.595744669437 586352.678563, 4140717.67286, -28.308888345, 0.0, 0, 0.0010716967124, 0, 1496957394.6041, 1.3023100255, 1, 72.191999881, 15.2025632858, 23.190662384, 0.595744669437 586352.681935, 4140717.67349, -28.3085147897, 0.0, 0, 0.0010716967124, 0, 1496957394.6136, 1.30233305632, 1, 72.191999881, 15.2025632858, 23.2150764465, 0.595744669437 586352.68531, 4140717.67412, -28.3081263974, 0.0, 0, 0.0010716967124, 0, 1496957394.6237, 1.3023393896, 1, 72.191999881, 15.226978302, 23.2150764465, 0.595744669437 586352.688689, 4140717.67475, -28.3077284805, 0.0, 0, 0.0010716967124, 0, 1496957394.6342, 1.30233332201, 1, 72.191999881, 15.226978302, 23.3340969086, 0.595744669437 586352.692067, 4140717.67539, -28.3073194716, 0.0, 0, 0.0010716967124, 0, 1496957394.6438, 1.30233923403, 1, 72.191999881, 15.2391853333, 23.3340969086, 0.595744669437 586352.695443, 4140717.67602, -28.3069003969, 0.0, 0, 0.0010716967124, 0, 1496957394.6543, 1.30233903845, 1, 72.191999881, 15.2391853333, 23.5080490112, 0.595744669437 586352.698826, 4140717.67666, -28.3064614963, 0.0, 0, 0.0010716967124, 0, 1496957394.6639, 1.30237601247, 1, 72.191999881, 15.2147703171, 23.5080490112, 0.595744669437 586352.702211, 4140717.6773, -28.3060152698, 0.0, 0, 0.0010716967124, 0, 1496957394.6745, 1.3023504894, 1, 72.191999881, 15.2147703171, 23.5690860748, 0.595744669437 586352.705598, 4140717.67795, -28.3055612408, 0.0, 0, 0.0010716967124, 0, 1496957394.6841, 1.30234090882, 1, 72.191999881, 15.2880144119, 23.5690860748, 0.595744669437 586352.708988, 4140717.6786, -28.305096291, 0.0, 0, 0.0010716967124, 0, 1496957394.6936, 1.30235624768, 1, 72.191999881, 15.2880144119, 23.6392765045, 0.595744669437 586352.712384, 4140717.67925, -28.3046200937, 0.0, 0, 0.0010716967124, 0, 1496957394.7042, 1.30236561255, 1, 72.191999881, 15.2513923645, 23.6392765045, 0.595744669437 586352.71578, 4140717.67991, -28.3041392947, 0.0, 0, 0.0010716967124, 0, 1496957394.7136, 1.30236072362, 1, 72.191999881, 15.2513923645, 23.7384605408, 0.595744669437 586352.719181, 4140717.68058, -28.3036564607, 0.0, 0, 0.0010716967124, 0, 1496957394.7241, 1.30236426164, 1, 72.191999881, 15.2147703171, 23.7384605408, 0.595744669437 586352.722588, 4140717.68124, -28.3031676318, 0.0, 0, 0.0010716967124, 0, 1496957394.7336, 1.30237865552, 1, 72.191999881, 15.2147703171, 23.8239116669, 0.595744669437 586352.725999, 4140717.68191, -28.3026847672, 0.0, 0, 0.0010716967124, 0, 1496957394.7441, 1.30235640969, 1, 72.191999881, 15.1903562546, 23.8239116669, 0.595744669437 586352.729412, 4140717.68258, -28.3021972608, 0.0, 0, 0.0010716967124, 0, 1496957394.7535, 1.30237094017, 1, 72.191999881, 15.1903562546, 23.9536132812, 0.595744669437 586352.73283, 4140717.68326, -28.301714153, 0.0, 0, 0.0010716967124, 0, 1496957394.7640, 1.3023787373, 1, 72.191999881, 15.2147703171, 23.9536132812, 0.595744669437 586352.736252, 4140717.68393, -28.3012396405, 0.0, 0, 0.00110997184211, 0, 1496957394.7746, 1.30237329583, 1, 72.191999881, 15.2147703171, 24.1031513214, 0.617021262646 586352.739674, 4140717.68461, -28.3007673528, 0.0, 0, 0.00110997184211, 0, 1496957394.7841, 1.30237508101, 1, 72.191999881, 15.2391853333, 24.1031513214, 0.617021262646 586352.743104, 4140717.68529, -28.3002998922, 0.0, 0, 0.0010716967124, 0, 1496957394.7935, 1.30238010932, 1, 72.191999881, 15.2391853333, 24.1657123566, 0.595744669437 586352.746533, 4140717.68596, -28.2998351203, 0.0, 0, 0.0010716967124, 0, 1496957394.8041, 1.30237408108, 1, 72.191999881, 15.2391853333, 24.1657123566, 0.595744669437 586352.749965, 4140717.68664, -28.2993823513, 0.0, 0, 0.0010716967124, 0, 1496957394.8135, 1.30238160206, 1, 72.191999881, 15.2391853333, 24.2740516663, 0.595744669437 586352.753397, 4140717.68731, -28.298930265, 0.0, 0, 0.0010716967124, 0, 1496957394.8243, 1.30237552934, 1, 72.191999881, 15.275806427, 24.2740516663, 0.595744669437 586352.756832, 4140717.68798, -28.2984823901, 0.0, 0, 0.0010716967124, 0, 1496957394.8338, 1.30237964077, 1, 72.191999881, 15.275806427, 24.3503475189, 0.595744669437 586352.760267, 4140717.68865, -28.2980367476, 0.0, 0, 0.0010716967124, 0, 1496957394.8443, 1.30237369208, 1, 72.191999881, 15.2635993958, 24.3503475189, 0.595744669437 586352.763701, 4140717.6893, -28.2975919265, 0.0, 0, 0.0010716967124, 0, 1496957394.8539, 1.30236098141, 1, 72.191999881, 15.2635993958, 24.5304031372, 0.595744669437 586352.767141, 4140717.68996, -28.2971567903, 0.0, 0, 0.0010716967124, 0, 1496957394.8644, 1.30236792972, 1, 72.191999881, 15.2513923645, 24.5304031372, 0.595744669437 586352.77058, 4140717.69061, -28.296717722, 0.0, 0, 0.0010716967124, 0, 1496957394.8739, 1.30234645549, 1, 72.191999881, 15.2513923645, 24.6936759949, 0.595744669437 586352.774018, 4140717.69125, -28.2962788036, 0.0, 0, 0.0010716967124, 0, 1496957394.8852, 1.30237349822, 1, 72.191999881, 15.3124284744, 24.6936759949, 0.595744669437 586352.777458, 4140717.69189, -28.2958425991, 0.0, 0, 0.0010716967124, 0, 1496957394.8939, 1.30234889423, 1, 72.191999881, 15.3124284744, 24.8310070038, 0.595744669437 586352.780899, 4140717.69252, -28.295406756, 0.0, 0, 0.0010716967124, 0, 1496957394.9044, 1.30235356954, 1, 72.191999881, 15.2147703171, 24.8310070038, 0.595744669437 586352.784341, 4140717.69314, -28.2949667787, 0.0, 0, 0.0010716967124, 0, 1496957394.9146, 1.30237058601, 1, 72.191999881, 15.2147703171, 25.0492095947, 0.595744669437 586352.787782, 4140717.69377, -28.2945248093, 0.0, 0, 0.0010716967124, 0, 1496957394.9251, 1.30233411631, 1, 72.191999881, 15.2391853333, 25.0492095947, 0.595744669437 586352.79122, 4140717.69439, -28.2940841904, 0.0, 0, 0.0010716967124, 0, 1496957394.9336, 1.30232416742, 1, 72.191999881, 15.2391853333, 25.1728076935, 0.595744669437 586352.794661, 4140717.695, -28.2936415486, 0.0, 0, 0.0010716967124, 0, 1496957394.9443, 1.30235589522, 1, 72.191999881, 15.226978302, 25.1728076935, 0.595744669437 586352.798105, 4140717.69562, -28.2931973403, 0.0, 0, 0.0010716967124, 0, 1496957394.9538, 1.30233446597, 1, 72.191999881, 15.226978302, 25.1819629669, 0.595744669437 586352.801544, 4140717.69623, -28.2927478496, 0.0, 0, 0.0010716967124, 0, 1496957394.9643, 1.30234549523, 1, 72.191999881, 15.275806427, 25.1819629669, 0.595744669437 586352.804987, 4140717.69684, -28.2923006918, 0.0, 0, 0.0010716967124, 0, 1496957394.9738, 1.30235115337, 1, 72.191999881, 15.275806427, 25.1743335724, 0.595744669437 586352.808429, 4140717.69745, -28.2918518241, 0.0, 0, 0.0010716967124, 0, 1496957394.9845, 1.30233873918, 1, 72.191999881, 15.226978302, 25.1743335724, 0.595744669437 586352.811874, 4140717.69806, -28.2913994547, 0.0, 0, 0.0010716967124, 0, 1496957394.9941, 1.30232482336, 1, 72.191999881, 15.226978302, 25.1270313263, 0.595744669437 586352.815322, 4140717.69867, -28.2909442782, 0.0, 0, 0.0010716967124, 0, 1496957395.0049, 1.30231532359, 1, 72.191999881, 15.2147703171, 25.1270313263, 0.595744669437 586352.818772, 4140717.69928, -28.2904896811, 0.0, 0, 0.0010716967124, 0, 1496957395.0135, 1.30230611168, 1, 72.191999881, 15.2147703171, 25.1422901154, 0.595744669437 586352.822222, 4140717.6999, -28.2900339914, 0.0, 0, 0.0010716967124, 0, 1496957395.0241, 1.30233987554, 1, 72.191999881, 15.2513923645, 25.1422901154, 0.595744669437 586352.825677, 4140717.70051, -28.2895771051, 0.0, 0, 0.0010716967124, 0, 1496957395.0346, 1.30233838835, 1, 72.191999881, 15.2513923645, 25.180437088, 0.595744669437 586352.829136, 4140717.70112, -28.2891190294, 0.0, 0, 0.0010716967124, 0, 1496957395.0442, 1.3023247461, 1, 72.191999881, 15.2147703171, 25.180437088, 0.595744669437 586352.832597, 4140717.70174, -28.2886574771, 0.0, 0, 0.0010716967124, 0, 1496957395.0537, 1.30235498507, 1, 72.191999881, 15.2147703171, 25.1270313263, 0.595744669437 586352.836062, 4140717.70235, -28.28819896, 0.0, 0, 0.0010716967124, 0, 1496957395.0642, 1.30235516295, 1, 72.191999881, 15.2635993958, 25.1270313263, 0.595744669437 586352.838167, 4140717.70218, -28.2877481775, 0.0, 0, 0.00110997184211, 0, 1496957395.0736, 1.30175447076, 1, 72.191999881, 15.2635993958, 25.1575489044, 0.617021262646 586352.839069, 4140717.7014, -28.2872562492, 0.0, 0, 0.00110997184211, 0, 1496957395.0842, 1.30178424022, 1, 72.191999881, 15.2635993958, 25.1575489044, 0.617021262646 586352.83997, 4140717.70062, -28.2867623148, 0.0, 0, 0.0010716967124, 0, 1496957395.0937, 1.3017913001, 1, 72.191999881, 15.2391853333, 25.1560230255, 0.595744669437 586352.840872, 4140717.69983, -28.2862718189, 0.0, 0, 0.0010716967124, 0, 1496957395.1042, 1.30178111212, 1, 72.191999881, 15.2513923645, 25.1560230255, 0.595744669437 586352.84178, 4140717.69905, -28.2857798785, 0.0, 0, 0.00110997184211, 0, 1496957395.1138, 1.30180686895, 1, 72.191999881, 15.2513923645, 25.1926460266, 0.617021262646 586352.842688, 4140717.69827, -28.285282312, 0.0, 0, 0.00110997184211, 0, 1496957395.1243, 1.30181094058, 1, 72.191999881, 15.2025632858, 25.1926460266, 0.617021262646 586352.843592, 4140717.69749, -28.2847865326, 0.0, 0, 0.00110997184211, 0, 1496957395.1342, 1.30180775254, 1, 72.191999881, 15.2025632858, 25.116350174, 0.617021262646 586352.844501, 4140717.69671, -28.2842925563, 0.0, 0, 0.00110997184211, 0, 1496957395.1437, 1.3018045129, 1, 72.191999881, 15.2025632858, 25.116350174, 0.617021262646 586352.845407, 4140717.69593, -28.2837964483, 0.0, 0, 0.0010716967124, 0, 1496957395.1543, 1.3017901972, 1, 72.191999881, 15.2147703171, 25.1422901154, 0.595744669437 586352.846316, 4140717.69515, -28.2832999779, 0.0, 0, 0.0010716967124, 0, 1496957395.1638, 1.30176638403, 1, 72.191999881, 15.2513923645, 25.1422901154, 0.595744669437 586352.847225, 4140717.69436, -28.2827986795, 0.0, 0, 0.0010716967124, 0, 1496957395.1743, 1.30175322955, 1, 72.191999881, 15.2513923645, 25.1071949005, 0.595744669437 586352.848134, 4140717.69358, -28.2823014027, 0.0, 0, 0.0010716967124, 0, 1496957395.1838, 1.30181262934, 1, 72.191999881, 15.1659421921, 25.1071949005, 0.595744669437 586352.849045, 4140717.69279, -28.2818044191, 0.0, 0, 0.0010716967124, 0, 1496957395.1944, 1.30177926569, 1, 72.191999881, 15.1659421921, 25.0568389893, 0.595744669437 586352.849955, 4140717.692, -28.2813029792, 0.0, 0, 0.0010716967124, 0, 1496957395.2040, 1.30178765263, 1, 72.191999881, 15.2147703171, 25.0568389893, 0.595744669437 586352.85087, 4140717.69121, -28.2808046136, 0.0, 0, 0.0010716967124, 0, 1496957395.2146, 1.30178026322, 1, 72.191999881, 15.2147703171, 25.1010913849, 0.595744669437 586352.85178, 4140717.69041, -28.2803042596, 0.0, 0, 0.0010716967124, 0, 1496957395.2243, 1.30174333143, 1, 72.191999881, 15.2513923645, 25.1010913849, 0.595744669437 586352.852691, 4140717.68961, -28.2798085473, 0.0, 0, 0.0010716967124, 0, 1496957395.2338, 1.30175708774, 1, 72.191999881, 15.2513923645, 25.0522613525, 0.595744669437 586352.853607, 4140717.68881, -28.279305812, 0.0, 0, 0.0010716967124, 0, 1496957395.2443, 1.30175127252, 1, 72.191999881, 15.2147703171, 25.0522613525, 0.595744669437 586352.854523, 4140717.68801, -28.2788067516, 0.0, 0, 0.00110997184211, 0, 1496957395.2539, 1.30173846725, 1, 72.191999881, 15.2147703171, 25.0812549591, 0.617021262646 586352.855443, 4140717.6872, -28.2783084065, 0.0, 0, 0.00110997184211, 0, 1496957395.2644, 1.30173327655, 1, 72.191999881, 15.1659421921, 25.0812549591, 0.617021262646 586352.85636, 4140717.68639, -28.2778144842, 0.0, 0, 0.0010716967124, 0, 1496957395.2740, 1.30173076413, 1, 72.191999881, 15.1659421921, 25.0080108643, 0.595744669437 586352.857282, 4140717.68557, -28.2773151351, 0.0, 0, 0.0010716967124, 0, 1496957395.2845, 1.30171741486, 1, 72.191999881, 15.226978302, 25.0080108643, 0.595744669437 586352.858207, 4140717.68476, -28.2768145669, 0.0, 0, 0.0010716967124, 0, 1496957395.2940, 1.30172334501, 1, 72.191999881, 15.226978302, 24.9423980713, 0.595744669437 586352.859124, 4140717.68393, -28.2763182232, 0.0, 0, 0.0010716967124, 0, 1496957395.3045, 1.30173665204, 1, 72.191999881, 15.2635993958, 24.9423980713, 0.595744669437 586352.860048, 4140717.68311, -28.275819893, 0.0, 0, 0.0010716967124, 0, 1496957395.3141, 1.30174140389, 1, 72.191999881, 15.2635993958, 24.9362926483, 0.595744669437 586352.86097, 4140717.68228, -28.2753247079, 0.0, 0, 0.0010716967124, 0, 1496957395.3235, 1.30173160633, 1, 72.191999881, 15.2880144119, 24.9362926483, 0.595744669437 586352.861892, 4140717.68145, -28.2748264251, 0.0, 0, 0.0010716967124, 0, 1496957395.3341, 1.30172397402, 1, 72.191999881, 15.2880144119, 24.9835968018, 0.595744669437 586352.862812, 4140717.68061, -28.274333749, 0.0, 0, 0.0010716967124, 0, 1496957395.3446, 1.30171914232, 1, 72.191999881, 15.2025632858, 24.9835968018, 0.595744669437 586352.863733, 4140717.67978, -28.2738393508, 0.0, 0, 0.0010716967124, 0, 1496957395.3542, 1.30174684624, 1, 72.191999881, 15.2025632858, 24.9759674072, 0.595744669437 586352.864654, 4140717.67894, -28.2733457219, 0.0, 0, 0.0010716967124, 0, 1496957395.3636, 1.3017206003, 1, 72.191999881, 15.0926980972, 24.9759674072, 0.595744669437 586352.865575, 4140717.6781, -28.2728526806, 0.0, 0, 0.00110997184211, 0, 1496957395.3742, 1.30173714002, 1, 72.191999881, 15.0926980972, 24.9744415283, 0.617021262646 586352.866492, 4140717.67726, -28.2723578708, 0.0, 0, 0.00110997184211, 0, 1496957395.3839, 1.30170801241, 1, 72.191999881, 15.2391853333, 24.9744415283, 0.617021262646 586352.867411, 4140717.67642, -28.2718641274, 0.0, 0, 0.0010716967124, 0, 1496957395.3945, 1.3017032936, 1, 72.191999881, 15.2391853333, 24.9301891327, 0.595744669437 586352.868331, 4140717.67557, -28.2713695616, 0.0, 0, 0.0010716967124, 0, 1496957395.4041, 1.30172552272, 1, 72.191999881, 15.2391853333, 24.9301891327, 0.595744669437 586352.869253, 4140717.67473, -28.2708757548, 0.0, 0, 0.0010716967124, 0, 1496957395.4136, 1.30173296289, 1, 72.191999881, 15.2391853333, 24.9195079803, 0.595744669437 586352.870174, 4140717.67389, -28.2703758655, 0.0, 0, 0.0010716967124, 0, 1496957395.4245, 1.30169640138, 1, 72.191999881, 15.2147703171, 24.9195079803, 0.595744669437
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/conf/qp_spline_smoother_config.pb.txt
max_constraint_interval : 5.0 longitudinal_boundary_bound : 2.0 max_lateral_boundary_bound : 0.5 min_lateral_boundary_bound : 0.1 num_of_total_points : 500 curb_shift : 0.2 lateral_buffer : 0.2 qp_spline { spline_order: 5 max_spline_length : 25.0 regularization_weight : 1.0e-5 second_derivative_weight : 200.0 third_derivative_weight : 1000.0 }
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/conf/traffic_rule_config.pb.txt
config: { rule_id: BACKSIDE_VEHICLE enabled: false backside_vehicle { backside_lane_width: 4.0 } } config: { rule_id: CROSSWALK enabled: true crosswalk { stop_distance: 1.0 max_stop_deceleration: 6.0 min_pass_s_distance: 1.0 max_valid_stop_distance: 3.5 expand_s_distance: 2.0 stop_strict_l_distance: 6.0 stop_loose_l_distance: 8.0 stop_timeout: 4.0 } } config: { rule_id: DESTINATION enabled: true destination { stop_distance: 0.5 } } config: { rule_id: KEEP_CLEAR enabled: true keep_clear { enable_keep_clear_zone: true enable_junction: true min_pass_s_distance: 2.0 align_with_traffic_sign_tolerance: 4.5 } } config: { rule_id: REFERENCE_LINE_END enabled: true reference_line_end { stop_distance: 0.5 min_reference_line_remain_length: 50.0 } } config: { rule_id: REROUTING enabled: true rerouting { prepare_rerouting_time: 2.0 cooldown_time: 3.0 } } config: { rule_id: STOP_SIGN enabled: true stop_sign: { stop_distance: 1.0 } } config: { rule_id: TRAFFIC_LIGHT enabled: true traffic_light { stop_distance: 1.0 max_stop_deceleration: 4.0 } } config: { rule_id: YIELD_SIGN enabled: true yield_sign: { stop_distance: 1.0 start_watch_distance: 2.0 } }
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/conf/planning_navi.conf
--flagfile=/apollo/modules/planning/conf/planning.conf --planning_config_file=/apollo/modules/planning/conf/planning_config_navi.pb.txt --traffic_rule_config_filename=/apollo/modules/planning/conf/traffic_rule_config.pb.txt --planning_upper_speed_limit=24.587 --noenable_nudge_decision --replan_lateral_distance_threshold=0.5 # use navigation_mode --use_navigation_mode
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/conf/planning_config_navi.pb.txt
topic_config { chassis_topic: "/apollo/canbus/chassis" hmi_status_topic: "/apollo/hmi/status" localization_topic: "/apollo/localization/pose" planning_pad_topic: "/apollo/planning/pad" planning_trajectory_topic: "/apollo/planning" prediction_topic: "/apollo/prediction" relative_map_topic: "/apollo/relative_map" routing_request_topic: "/apollo/routing_request" routing_response_topic: "/apollo/routing_response" traffic_light_detection_topic: "/apollo/perception/traffic_light" } navigation_planning_config { planner_type : NAVI planner_navi_config { task : NAVI_PATH_DECIDER task : NAVI_SPEED_DECIDER navi_path_decider_config { min_path_length: 5 min_look_forward_time: 2 max_keep_lane_distance: 0.4 max_keep_lane_shift_y: 0.15 min_keep_lane_offset: 0.20 keep_lane_shift_compensation: 0.01 move_dest_lane_config_talbe { lateral_shift { max_speed: 34 max_move_dest_lane_shift_y: 0.45 } } move_dest_lane_compensation: 0.35 max_kappa_threshold: 0.0 kappa_move_dest_lane_compensation: 0.0 start_plan_point_from: 0 } navi_speed_decider_config { preferred_accel: 1.5 preferred_decel: 1.5 preferred_jerk: 2.0 max_accel: 4.0 max_decel: 5.0 obstacle_buffer: 1.0 safe_distance_base: 10.0 safe_distance_ratio: 1.0 following_accel_ratio: 0.5 soft_centric_accel_limit: 1.0 hard_centric_accel_limit: 1.5 hard_speed_limit: 40.0 hard_accel_limit: 8.0 enable_safe_path: false enable_planning_start_point: true enable_accel_auto_compensation: false kappa_preview: 80.0 kappa_threshold: 0.02 } navi_obstacle_decider_config { min_nudge_distance: 0.2 max_nudge_distance: 1.1 max_allow_nudge_speed: 16.667 safe_distance: 0.2 nudge_allow_tolerance : 0.05 cycles_number : 3 judge_dis_coeff : 2.0 basis_dis_value : 30.0 lateral_velocity_value : 0.5 speed_decider_detect_range : 0.35 max_keep_nudge_cycles : 110 } } }
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/conf/planning_semantic_map_config.pb.txt
resolution : 0.2 height : 200 width : 200 ego_idx_x : 100 ego_idx_y : 160 max_rand_delta_phi : 25 max_ego_future_horizon : 2 max_ego_past_horizon : 6 max_obs_future_horizon : 2 max_obs_past_horizon : 1 base_map_padding : 100 city_driving_max_speed : 22.22
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/conf/discrete_points_smoother_config.pb.txt
max_constraint_interval : 0.25 longitudinal_boundary_bound : 2.0 max_lateral_boundary_bound : 0.5 min_lateral_boundary_bound : 0.1 curb_shift : 0.2 lateral_buffer : 0.2 discrete_points { smoothing_method: FEM_POS_DEVIATION_SMOOTHING fem_pos_deviation_smoothing { weight_fem_pos_deviation: 1e10 weight_ref_deviation: 1.0 weight_path_length: 1.0 apply_curvature_constraint: false max_iter: 500 time_limit: 0.0 verbose: false scaled_termination: true warm_start: true } }
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/conf/planner_open_space_config.pb.txt
roi_config { roi_longitudinal_range_start: 15.0 roi_longitudinal_range_end: 15.0 parking_start_range: 12.0 parking_inwards: false } warm_start_config { xy_grid_resolution: 0.3 phi_grid_resolution: 0.1 next_node_num: 10 step_size: 0.5 traj_forward_penalty: 1.0 traj_back_penalty: 1.0 traj_gear_switch_penalty: 10.0 traj_steer_penalty: 0.0 traj_steer_change_penalty: 0.0 grid_a_star_xy_resolution: 0.5 node_radius: 0.25 s_curve_config { acc_weight: 1.0 jerk_weight: 0.0 kappa_penalty_weight: 100.0 ref_s_weight: 0.1 ref_v_weight: 0.0 } } dual_variable_warm_start_config { weight_d: 1.0 ipopt_config { ipopt_print_level: 0 mumps_mem_percent: 6000 mumps_pivtol: 1e-06 ipopt_max_iter: 100 ipopt_tol: 1e-05 ipopt_acceptable_constr_viol_tol: 0.1 ipopt_min_hessian_perturbation: 1e-12 ipopt_jacobian_regularization_value: 1e-07 ipopt_print_timing_statistics: "yes" ipopt_alpha_for_y: "min" ipopt_recalc_y: "yes" } qp_format: OSQP min_safety_distance: 0.01 debug_osqp: false beta: 1.0 osqp_config { alpha: 1.0 eps_abs: 1.0e-3 eps_rel: 1.0e-3 max_iter: 10000 polish: true osqp_debug_log: false } } distance_approach_config { weight_steer: 0.3 weight_a: 1.1 weight_steer_rate: 2.0 weight_a_rate: 2.5 weight_x: 18.0 weight_y: 14.0 weight_phi: 10.0 weight_v: 0.0 weight_steer_stitching: 1.75 weight_a_stitching: 3.25 weight_first_order_time: 1.0 weight_second_order_time: 2.0 weight_end_state: 1.0 weight_slack: 1.0 min_safety_distance: 0.01 max_speed_forward: 2.0 max_speed_reverse: 1.0 max_acceleration_forward: 2.0 max_acceleration_reverse: 1.0 min_time_sample_scaling: 0.5 max_time_sample_scaling: 1.5 use_fix_time: false ipopt_config { ipopt_print_level: 0 mumps_mem_percent: 6000 mumps_pivtol: 1e-06 ipopt_max_iter: 1000 ipopt_tol: 0.0001 ipopt_acceptable_constr_viol_tol: 0.1 ipopt_min_hessian_perturbation: 1e-12 ipopt_jacobian_regularization_value: 1e-07 ipopt_print_timing_statistics: "yes" ipopt_alpha_for_y: "min" ipopt_recalc_y: "yes" ipopt_mu_init: 0.1 } enable_constraint_check: false enable_hand_derivative: false enable_derivative_check: false enable_initial_final_check: false distance_approach_mode: DISTANCE_APPROACH_IPOPT enable_check_initial_state: false } trajectory_partition_config { interpolated_pieces_num: 50 initial_gear_check_horizon: 3 heading_searching_range: 0.3 gear_shift_period_duration: 2.0 gear_shift_max_t: 3.0 gear_shift_unit_t: 0.02 } iterative_anchoring_smoother_config { interpolated_delta_s: 0.1 reanchoring_trails_num: 50 reanchoring_pos_stddev: 0.25 reanchoring_length_stddev: 1.0 estimate_bound: false default_bound: 2.0 vehicle_shortest_dimension: 1.04 fem_pos_deviation_smoother_config { weight_fem_pos_deviation: 1e8 weight_path_length: 1.0 weight_ref_deviation: 1e3 apply_curvature_constraint: false weight_curvature_constraint_slack_var: 1e8 curvature_constraint: 0.2 max_iter: 500 time_limit: 0.0 verbose: false scaled_termination: true warm_start: true } collision_decrease_ratio: 0.9 max_forward_v: 2.0 max_reverse_v: 2.0 max_forward_acc: 3.0 max_reverse_acc: 2.0 max_acc_jerk: 4.0 delta_t: 0.2 s_curve_config { acc_weight: 1.0 jerk_weight: 1.0 kappa_penalty_weight: 100.0 ref_s_weight: 10.0 ref_v_weight: 0.0 } } delta_t: 0.5 is_near_destination_threshold: 0.05 enable_check_parallel_trajectory: false enable_linear_interpolation: false
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/conf/planning_config.pb.txt
topic_config { chassis_topic: "/apollo/canbus/chassis" hmi_status_topic: "/apollo/hmi/status" localization_topic: "/apollo/localization/pose" planning_pad_topic: "/apollo/planning/pad" planning_trajectory_topic: "/apollo/planning" prediction_topic: "/apollo/prediction" relative_map_topic: "/apollo/relative_map" routing_request_topic: "/apollo/routing_request" routing_response_topic: "/apollo/routing_response" story_telling_topic: "/apollo/storytelling" traffic_light_detection_topic: "/apollo/perception/traffic_light" planning_learning_data_topic: "/apollo/planning/learning_data" } # NO_LEARNING / E2E / HYBRID / RL_TEST / E2E_TEST / HYBRID_TEST learning_mode: NO_LEARNING standard_planning_config { planner_type: PUBLIC_ROAD planner_public_road_config { } } default_task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER piecewise_jerk_path_optimizer_config { default_path_config { l_weight: 1.0 dl_weight: 20.0 ddl_weight: 1000.0 dddl_weight: 50000.0 } lane_change_path_config { l_weight: 1.0 dl_weight: 5.0 ddl_weight: 800.0 dddl_weight: 30000.0 } } } default_task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER piecewise_jerk_speed_optimizer_config { acc_weight: 1.0 jerk_weight: 3.0 kappa_penalty_weight: 2000.0 ref_s_weight: 10.0 ref_v_weight: 10.0 } } default_task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER piecewise_jerk_nonlinear_speed_optimizer_config { acc_weight: 2.0 jerk_weight: 3.0 lat_acc_weight: 1000.0 s_potential_weight: 0.05 ref_v_weight: 5.0 ref_s_weight: 100.0 soft_s_bound_weight: 1e6 use_warm_start: true } } default_task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER speed_heuristic_optimizer_config { default_speed_config { unit_t: 1.0 dense_dimension_s: 101 dense_unit_s: 0.1 sparse_unit_s: 1.0 speed_weight: 0.0 accel_weight: 10.0 jerk_weight: 10.0 obstacle_weight: 1.0 reference_weight: 0.0 go_down_buffer: 5.0 go_up_buffer: 5.0 default_obstacle_cost: 1e4 default_speed_cost: 1.0e3 exceed_speed_penalty: 1.0e3 low_speed_penalty: 10.0 reference_speed_penalty: 10.0 keep_clear_low_speed_penalty: 10.0 accel_penalty: 1.0 decel_penalty: 1.0 positive_jerk_coeff: 1.0 negative_jerk_coeff: 1.0 max_acceleration: 2.0 max_deceleration: -4.0 spatial_potential_penalty: 1.0e2 } lane_change_speed_config { unit_t: 1.0 dense_dimension_s: 21 dense_unit_s: 0.25 sparse_unit_s: 1.0 speed_weight: 0.0 accel_weight: 10.0 jerk_weight: 10.0 obstacle_weight: 1.0 reference_weight: 0.0 go_down_buffer: 5.0 go_up_buffer: 5.0 default_obstacle_cost: 1e4 default_speed_cost: 1.0e3 exceed_speed_penalty: 1.0e3 low_speed_penalty: 10.0 reference_speed_penalty: 10.0 keep_clear_low_speed_penalty: 10.0 accel_penalty: 1.0 decel_penalty: 1.0 positive_jerk_coeff: 1.0 negative_jerk_coeff: 1.0 max_acceleration: 2.0 max_deceleration: -2.5 spatial_potential_penalty: 1.0e5 is_lane_changing: true } } } default_task_config: { task_type: SPEED_DECIDER } default_task_config: { task_type: RULE_BASED_STOP_DECIDER rule_based_stop_decider_config { max_adc_stop_speed: 0.5 max_valid_stop_distance: 1.0 search_beam_length: 20.0 search_beam_radius_intensity: 0.08 search_range: 3.14 is_block_angle_threshold: 0.5 } } default_task_config: { task_type: ST_BOUNDS_DECIDER st_bounds_decider_config { total_time: 7.0 } } default_task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER speed_bounds_decider_config { total_time: 7.0 boundary_buffer: 0.25 max_centric_acceleration_limit: 2.0 point_extension: 0.0 lowest_speed: 2.5 static_obs_nudge_speed_ratio: 0.6 dynamic_obs_nudge_speed_ratio: 0.8 } } default_task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER speed_bounds_decider_config { total_time: 7.0 boundary_buffer: 0.1 max_centric_acceleration_limit: 2.0 point_extension: 0.0 lowest_speed: 2.5 static_obs_nudge_speed_ratio: 0.6 dynamic_obs_nudge_speed_ratio: 0.8 } } default_task_config: { task_type: OPEN_SPACE_PRE_STOP_DECIDER open_space_pre_stop_decider_config: { } } default_task_config: { task_type: OPEN_SPACE_TRAJECTORY_PROVIDER open_space_trajectory_provider_config { open_space_trajectory_optimizer_config { planner_open_space_config { warm_start_config { xy_grid_resolution: 0.3 phi_grid_resolution: 0.1 next_node_num: 10 step_size: 0.25 traj_forward_penalty: 1.0 traj_back_penalty: 1.0 traj_gear_switch_penalty: 10.0 traj_steer_penalty: 0.0 traj_steer_change_penalty: 0.0 grid_a_star_xy_resolution: 0.25 node_radius: 0.5 } dual_variable_warm_start_config { weight_d: 1.0 ipopt_config { ipopt_print_level: 0 mumps_mem_percent: 6000 mumps_pivtol: 1e-06 ipopt_max_iter: 100 ipopt_tol: 1e-05 ipopt_acceptable_constr_viol_tol: 0.1 ipopt_min_hessian_perturbation: 1e-12 ipopt_jacobian_regularization_value: 1e-07 ipopt_print_timing_statistics: "yes" ipopt_alpha_for_y: "min" ipopt_recalc_y: "yes" } qp_format: OSQP min_safety_distance: 0.01 osqp_config { alpha: 1.0 eps_abs: 1.0e-3 eps_rel: 1.0e-3 max_iter: 10000 polish: true osqp_debug_log: false } } distance_approach_config { weight_steer: 0.3 weight_a: 1.1 weight_steer_rate: 3.0 weight_a_rate: 2.5 weight_x: 2.3 weight_y: 0.7 weight_phi: 1.5 weight_v: 0.0 weight_steer_stitching: 1.75 weight_a_stitching: 3.25 weight_first_order_time: 4.25 weight_second_order_time: 13.5 weight_end_state: 1.0 weight_slack: 1.0 min_safety_distance: 0.01 max_speed_forward: 2.0 max_speed_reverse: 1.0 max_acceleration_forward: 2.0 max_acceleration_reverse: 1.0 min_time_sample_scaling: 0.8 max_time_sample_scaling: 1.2 use_fix_time: false ipopt_config { ipopt_print_level: 0 mumps_mem_percent: 6000 mumps_pivtol: 1e-06 ipopt_max_iter: 1000 ipopt_tol: 0.0001 ipopt_acceptable_constr_viol_tol: 0.1 ipopt_min_hessian_perturbation: 1e-12 ipopt_jacobian_regularization_value: 1e-07 ipopt_print_timing_statistics: "yes" ipopt_alpha_for_y: "min" ipopt_recalc_y: "yes" ipopt_mu_init: 0.1 } enable_constraint_check: false enable_initial_final_check: false enable_jacobian_ad: false enable_hand_derivative: false enable_derivative_check: false distance_approach_mode: DISTANCE_APPROACH_IPOPT_RELAX_END_SLACK enable_check_initial_state: false } iterative_anchoring_smoother_config { interpolated_delta_s: 0.1 reanchoring_trails_num: 50 reanchoring_pos_stddev: 0.25 reanchoring_length_stddev: 1.0 estimate_bound: false default_bound: 2.0 vehicle_shortest_dimension: 1.04 fem_pos_deviation_smoother_config { weight_fem_pos_deviation: 1e7 weight_path_length: 0.0 weight_ref_deviation: 1e3 apply_curvature_constraint: true weight_curvature_constraint_slack_var: 1e8 curvature_constraint: 0.18 max_iter: 500 time_limit: 0.0 verbose: false scaled_termination: true warm_start: true } s_curve_config { acc_weight: 1.0 jerk_weight: 1.0 kappa_penalty_weight: 100.0 ref_s_weight: 10.0 ref_v_weight: 0.0 } collision_decrease_ratio: 0.0 max_forward_v: 1.0 max_reverse_v: 1.0 max_forward_acc: 0.5 max_reverse_acc: 1.0 max_acc_jerk: 0.5 delta_t: 0.2 } delta_t: 0.5 is_near_destination_threshold: 1 enable_check_parallel_trajectory: false enable_linear_interpolation: false is_near_destination_theta_threshold: 0.1 } } } } default_task_config: { task_type: OPEN_SPACE_TRAJECTORY_PARTITION open_space_trajectory_partition_config { gear_shift_max_t: 3.0 gear_shift_unit_t: 0.02 gear_shift_period_duration: 2.0 interpolated_pieces_num: 10 initial_gear_check_horizon: 15 heading_search_range: 0.79 heading_track_range: 1.57 distance_search_range: 2.0 heading_offset_to_midpoint: 0.79 lateral_offset_to_midpoint: 0.5 longitudinal_offset_to_midpoint: 0.2 vehicle_box_iou_threshold_to_midpoint: 0.75 linear_velocity_threshold_on_ego: 0.2 } } default_task_config: { task_type: OPEN_SPACE_ROI_DECIDER open_space_roi_decider_config { roi_longitudinal_range_start: 15 roi_longitudinal_range_end: 15 parking_start_range: 20.0 parking_inwards: false enable_perception_obstacles: true parking_depth_buffer: 0.2 roi_line_segment_min_angle: 0.15 roi_line_segment_length: 1.0 perception_obstacle_filtering_distance: 1000.0 perception_obstacle_buffer: 0.0 curb_heading_tangent_change_upper_limit: 0.4 } } default_task_config: { task_type: OPEN_SPACE_FALLBACK_DECIDER open_space_fallback_decider_config { open_space_prediction_time_period: 5.0 open_space_fallback_collision_distance: 5.0 open_space_fallback_stop_distance: 2.0 open_space_fallback_collision_time_buffer: 5.0 } } default_task_config: { task_type: PATH_BOUNDS_DECIDER path_bounds_decider_config { is_lane_borrowing: false is_pull_over: false is_extend_lane_bounds_to_include_adc: false pull_over_destination_to_adc_buffer: 25.0 pull_over_destination_to_pathend_buffer: 4.0 pull_over_road_edge_buffer: 0.15 pull_over_approach_lon_distance_adjust_factor: 1.5 } } default_task_config: { task_type: PATH_LANE_BORROW_DECIDER path_lane_borrow_decider_config { allow_lane_borrowing: true } } default_task_config: { task_type: LANE_CHANGE_DECIDER lane_change_decider_config { enable_lane_change_urgency_check: false enable_prioritize_change_lane: false enable_remove_change_lane: false reckless_change_lane: false change_lane_success_freeze_time: 1.5 change_lane_fail_freeze_time: 1.0 } } default_task_config: { task_type: PATH_REUSE_DECIDER path_reuse_decider_config { reuse_path: false } } default_task_config: { task_type: PATH_DECIDER path_decider_config{ static_obstacle_buffer: 0.3 } } default_task_config { task_type: PATH_REFERENCE_DECIDER path_reference_decider_config { min_path_reference_length: 20 } }
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/conf/spiral_smoother_config.pb.txt
max_constraint_interval : 5.0 longitudinal_boundary_bound : 2.0 max_lateral_boundary_bound : 0.5 min_lateral_boundary_bound : 0.1 resolution : 0.02 curb_shift : 0.2 lateral_buffer : 0.2 spiral { max_deviation: 0.05 piecewise_length : 10.0 max_iteration : 500 opt_tol : 1.0e-6 opt_acceptable_tol : 1e-4 opt_acceptable_iteration : 15 weight_curve_length : 1.0 weight_kappa : 1.0 weight_dkappa : 100.0 }
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/conf/planning.conf
--flagfile=/apollo/modules/common/data/global_flagfile.txt --traffic_rule_config_filename=/apollo/modules/planning/conf/traffic_rule_config.pb.txt --planning_upper_speed_limit=20.00 --default_cruise_speed=11.18 --ignore_overlapped_obstacle=true --prioritize_change_lane --min_length_for_lane_change=5.0 --nouse_multi_thread_to_add_obstacles --enable_multi_thread_in_dp_st_graph=false # --min_past_history_points_len=10 # --smoother_config_filename=/apollo/modules/planning/conf/spiral_smoother_config.pb.txt # --smoother_config_filename=/apollo/modules/planning/conf/qp_spline_smoother_config.pb.txt --smoother_config_filename=/apollo/modules/planning/conf/discrete_points_smoother_config.pb.txt --enable_reference_line_stitching=false # --enable_perception_obstacles=false # --parking_inwards=false # --use_dual_variable_warm_start=true # --enable_open_space_planner_thread=true # --enable_record_debug=true --use_gear_shift_trajectory=true # --enable_parallel_hybrid_a=true --export_chart=true # --use_front_axe_center_in_path_planning=true # --obstacle_lon_start_buffer=0.4 # --obstacle_lon_end_buffer=0.4 --noenable_smoother_failsafe --enable_parallel_trajectory_smoothing --nouse_s_curve_speed_smooth --use_iterative_anchoring_smoother --open_space_planning_period=0.1 --open_space_standstill_acceleration=0.3 --lane_change_prepare_length=60.0 --enable_smarter_lane_change=true --nonstatic_obstacle_nudge_l_buffer=0.4 --lane_change_obstacle_nudge_l_buffer=0.3 --use_st_drivable_boundary=false #--enable_skip_path_tasks=true --enable_reuse_path_in_lane_follow=true --use_smoothed_dp_guide_line=true --use_soft_bound_in_nonlinear_speed_opt=false # --use_road_boundary_from_map=true
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/narrow_street_u_turn_config.pb.txt
scenario_type: NARROW_STREET_U_TURN
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/lane_follow_config.pb.txt
scenario_type: LANE_FOLLOW stage_type: LANE_FOLLOW_DEFAULT_STAGE stage_config: { stage_type: LANE_FOLLOW_DEFAULT_STAGE enabled: true task_type: LANE_CHANGE_DECIDER task_type: PATH_REUSE_DECIDER task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_SPEED_OPTIMIZER # task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_type: RSS_DECIDER task_config: { task_type: LANE_CHANGE_DECIDER lane_change_decider_config { enable_lane_change_urgency_check: true } } task_config: { task_type: PATH_REUSE_DECIDER path_reuse_decider_config { reuse_path: false } } task_config: { task_type: PATH_LANE_BORROW_DECIDER path_lane_borrow_decider_config { allow_lane_borrowing: true } } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: ST_BOUNDS_DECIDER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: RSS_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } }
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/traffic_light_unprotected_right_turn_config.pb.txt
scenario_type: TRAFFIC_LIGHT_UNPROTECTED_RIGHT_TURN traffic_light_unprotected_right_turn_config: { start_traffic_light_scenario_distance: 5.0 enable_right_turn_on_red: false max_valid_stop_distance: 2.0 min_pass_s_distance: 3.0 red_light_right_turn_stop_duration_sec: 3.0 creep_timeout_sec: 10.0 max_adc_speed_before_creep: 3.0 } stage_type: TRAFFIC_LIGHT_UNPROTECTED_RIGHT_TURN_STOP stage_type: TRAFFIC_LIGHT_UNPROTECTED_RIGHT_TURN_CREEP stage_type: TRAFFIC_LIGHT_UNPROTECTED_RIGHT_TURN_INTERSECTION_CRUISE stage_config: { stage_type: TRAFFIC_LIGHT_UNPROTECTED_RIGHT_TURN_STOP enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: TRAFFIC_LIGHT_UNPROTECTED_RIGHT_TURN_CREEP enabled: true task_type: CREEP_DECIDER task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: CREEP_DECIDER creep_decider_config: { stop_distance: 0.3 speed_limit: 1.0 max_valid_stop_distance: 0.4 min_boundary_t: 6.0 ignore_max_st_min_t: 0.1 ignore_min_st_min_s: 15.0 } } task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: TRAFFIC_LIGHT_UNPROTECTED_RIGHT_TURN_INTERSECTION_CRUISE enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER path_lane_borrow_decider_config { allow_lane_borrowing: true } } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } }
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/park_and_go_config.pb.txt
scenario_type: PARK_AND_GO park_and_go_config: { front_obstacle_buffer: 10.0 heading_buffer: 0.3 min_dist_to_dest: 10.0 max_steering_percentage_when_cruise: 20.0 } stage_type: PARK_AND_GO_CHECK stage_type: PARK_AND_GO_ADJUST stage_type: PARK_AND_GO_PRE_CRUISE stage_type: PARK_AND_GO_CRUISE stage_config: { stage_type: PARK_AND_GO_CHECK enabled: true task_type: OPEN_SPACE_ROI_DECIDER task_type: OPEN_SPACE_TRAJECTORY_PROVIDER task_type: OPEN_SPACE_TRAJECTORY_PARTITION task_type: OPEN_SPACE_FALLBACK_DECIDER task_config: { task_type: OPEN_SPACE_ROI_DECIDER open_space_roi_decider_config { roi_type: PARK_AND_GO perception_obstacle_buffer: 0.0 } } task_config: { task_type: OPEN_SPACE_TRAJECTORY_PROVIDER } task_config: { task_type: OPEN_SPACE_TRAJECTORY_PARTITION } task_config: { task_type: OPEN_SPACE_FALLBACK_DECIDER } } stage_config:{ stage_type: PARK_AND_GO_ADJUST enabled: true task_type: OPEN_SPACE_ROI_DECIDER task_type: OPEN_SPACE_TRAJECTORY_PROVIDER task_type: OPEN_SPACE_TRAJECTORY_PARTITION task_type: OPEN_SPACE_FALLBACK_DECIDER task_config: { task_type: OPEN_SPACE_ROI_DECIDER open_space_roi_decider_config { roi_type: PARK_AND_GO roi_line_segment_min_angle: 0.15 roi_line_segment_length: 0.2 perception_obstacle_buffer: 0.5 end_pose_s_distance: 10.0 roi_longitudinal_range_start : 10.0 roi_longitudinal_range_end : 20.0 } } task_config: { task_type: OPEN_SPACE_TRAJECTORY_PROVIDER open_space_trajectory_provider_config { open_space_trajectory_optimizer_config { planner_open_space_config { iterative_anchoring_smoother_config { s_curve_config { acc_weight: 1.0 jerk_weight: 1.0 kappa_penalty_weight: 100.0 ref_s_weight: 100.0 ref_v_weight: 0.0 } } } } } } task_config: { task_type: OPEN_SPACE_TRAJECTORY_PARTITION } task_config: { task_type: OPEN_SPACE_FALLBACK_DECIDER } } stage_config:{ stage_type: PARK_AND_GO_PRE_CRUISE enabled: true task_type: OPEN_SPACE_ROI_DECIDER task_type: OPEN_SPACE_TRAJECTORY_PROVIDER task_type: OPEN_SPACE_TRAJECTORY_PARTITION task_type: OPEN_SPACE_FALLBACK_DECIDER task_config: { task_type: OPEN_SPACE_ROI_DECIDER open_space_roi_decider_config { roi_type: PARK_AND_GO perception_obstacle_buffer: 0.5 end_pose_s_distance: 5.0 } } task_config: { task_type: OPEN_SPACE_TRAJECTORY_PROVIDER open_space_trajectory_provider_config { open_space_trajectory_optimizer_config { planner_open_space_config { iterative_anchoring_smoother_config { s_curve_config { acc_weight: 1.0 jerk_weight: 1.0 kappa_penalty_weight: 100.0 ref_s_weight: 100.0 ref_v_weight: 0.0 } } } } } } task_config: { task_type: OPEN_SPACE_TRAJECTORY_PARTITION } task_config: { task_type: OPEN_SPACE_FALLBACK_DECIDER } } stage_config:{ stage_type: PARK_AND_GO_CRUISE enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_SPEED_OPTIMIZER task_type: RSS_DECIDER task_config: { task_type: PATH_LANE_BORROW_DECIDER path_lane_borrow_decider_config { allow_lane_borrowing: true } } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER path_decider_config{ static_obstacle_buffer: 0.2 } } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: RSS_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: ST_BOUNDS_DECIDER } }
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/lane_follow_hybrid_config.pb.txt
scenario_type: LANE_FOLLOW stage_type: LANE_FOLLOW_DEFAULT_STAGE stage_config: { stage_type: LANE_FOLLOW_DEFAULT_STAGE enabled: true task_type: LEARNING_MODEL_INFERENCE_TASK task_type: LANE_CHANGE_DECIDER task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PATH_REFERENCE_DECIDER task_type: PATH_REUSE_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER # task_type: PIECEWISE_JERK_SPEED_OPTIMIZER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_type: RSS_DECIDER task_config: { task_type: LEARNING_MODEL_INFERENCE_TASK learning_model_inference_task_config { model_type: CNN_LSTM cpu_model_file: "/apollo/modules/planning/data/model/cpu_test_model_cnn_lstm.pt" gpu_model_file: "/apollo/modules/planning/data/model/gpu_test_model_cnn_lstm.pt" use_cuda: true allow_empty_learning_based_data: true allow_empty_output_trajectory: true } } task_config: { task_type: LANE_CHANGE_DECIDER lane_change_decider_config { enable_lane_change_urgency_check: true } } task_config: { task_type: PATH_LANE_BORROW_DECIDER path_lane_borrow_decider_config { allow_lane_borrowing: true } } task_config: { task_type: PATH_BOUNDS_DECIDER path_bounds_decider_config { adc_buffer_coeff: 0.0 is_extend_lane_bounds_to_include_adc: false } } task_config: { task_type: PATH_REFERENCE_DECIDER } task_config: { task_type: PATH_REUSE_DECIDER path_reuse_decider_config { reuse_path: true } } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER piecewise_jerk_path_optimizer_config { path_reference_l_weight: 100.0 } } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: ST_BOUNDS_DECIDER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: RSS_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } }
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/emergency_pull_over_config.pb.txt
scenario_type: EMERGENCY_PULL_OVER emergency_pull_over_config: { max_stop_deceleration: 4.5 slow_down_deceleration_time: 3.0 target_slow_down_speed: 1.0 stop_distance: 1.5 } stage_type: EMERGENCY_PULL_OVER_SLOW_DOWN stage_type: EMERGENCY_PULL_OVER_APPROACH stage_type: EMERGENCY_PULL_OVER_STANDBY stage_config: { stage_type: EMERGENCY_PULL_OVER_SLOW_DOWN enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: EMERGENCY_PULL_OVER_APPROACH enabled: true # task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_SPEED_OPTIMIZER task_type: RSS_DECIDER task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER path_bounds_decider_config { is_lane_borrowing: false is_pull_over: true pull_over_destination_to_adc_buffer: 25.0 pull_over_destination_to_pathend_buffer: 4.0 pull_over_road_edge_buffer: 0.15 pull_over_approach_lon_distance_adjust_factor: 1.6 } } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: RSS_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: EMERGENCY_PULL_OVER_STANDBY enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: ST_BOUNDS_DECIDER } }
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/traffic_light_unprotected_left_turn_config.pb.txt
scenario_type: TRAFFIC_LIGHT_UNPROTECTED_LEFT_TURN traffic_light_unprotected_left_turn_config: { start_traffic_light_scenario_distance: 30.0 approach_cruise_speed: 2.78 max_valid_stop_distance: 2.0 min_pass_s_distance: 3.0 creep_timeout_sec: 10.0 max_adc_speed_before_creep: 5.56 } stage_type: TRAFFIC_LIGHT_UNPROTECTED_LEFT_TURN_APPROACH stage_type: TRAFFIC_LIGHT_UNPROTECTED_LEFT_TURN_CREEP stage_type: TRAFFIC_LIGHT_UNPROTECTED_LEFT_TURN_INTERSECTION_CRUISE stage_config: { stage_type: TRAFFIC_LIGHT_UNPROTECTED_LEFT_TURN_APPROACH enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: TRAFFIC_LIGHT_UNPROTECTED_LEFT_TURN_CREEP enabled: true task_type: CREEP_DECIDER task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: CREEP_DECIDER creep_decider_config: { stop_distance: 0.3 speed_limit: 1.0 max_valid_stop_distance: 0.4 min_boundary_t: 6.0 ignore_max_st_min_t: 0.1 ignore_min_st_min_s: 15.0 } } task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: TRAFFIC_LIGHT_UNPROTECTED_LEFT_TURN_INTERSECTION_CRUISE enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER path_lane_borrow_decider_config { allow_lane_borrowing: true } } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } }
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/stop_sign_unprotected_config.pb.txt
scenario_type: STOP_SIGN_UNPROTECTED stop_sign_unprotected_config: { start_stop_sign_scenario_distance: 4.0 watch_vehicle_max_valid_stop_distance: 5.0 max_valid_stop_distance: 2.0 stop_duration_sec: 1.0 min_pass_s_distance: 3.0 stop_timeout_sec: 8.0 creep_timeout_sec: 10.0 } stage_type: STOP_SIGN_UNPROTECTED_PRE_STOP stage_type: STOP_SIGN_UNPROTECTED_STOP stage_type: STOP_SIGN_UNPROTECTED_CREEP stage_type: STOP_SIGN_UNPROTECTED_INTERSECTION_CRUISE stage_config: { stage_type: STOP_SIGN_UNPROTECTED_PRE_STOP enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: STOP_SIGN_UNPROTECTED_STOP enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: STOP_SIGN_UNPROTECTED_CREEP enabled: true task_type: CREEP_DECIDER task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: CREEP_DECIDER creep_decider_config: { stop_distance: 0.3 speed_limit: 1.0 max_valid_stop_distance: 0.4 min_boundary_t: 6.0 ignore_max_st_min_t: 0.1 ignore_min_st_min_s: 15.0 } } task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: STOP_SIGN_UNPROTECTED_INTERSECTION_CRUISE enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER path_lane_borrow_decider_config { allow_lane_borrowing: true } } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } }
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/traffic_light_protected_config.pb.txt
scenario_type: TRAFFIC_LIGHT_PROTECTED traffic_light_protected_config: { start_traffic_light_scenario_distance: 5.0 max_valid_stop_distance: 2.0 min_pass_s_distance: 3.0 } stage_type: TRAFFIC_LIGHT_PROTECTED_APPROACH stage_type: TRAFFIC_LIGHT_PROTECTED_INTERSECTION_CRUISE stage_config: { stage_type: TRAFFIC_LIGHT_PROTECTED_APPROACH enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: ST_BOUNDS_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } } stage_config: { stage_type: TRAFFIC_LIGHT_PROTECTED_INTERSECTION_CRUISE enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER path_lane_borrow_decider_config { allow_lane_borrowing: true } } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } }
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/emergency_stop_config.pb.txt
scenario_type: EMERGENCY_STOP emergency_stop_config: { max_stop_deceleration: 6.0 stop_distance: 1.0 } stage_type: EMERGENCY_STOP_APPROACH stage_type: EMERGENCY_STOP_STANDBY stage_config: { stage_type: EMERGENCY_STOP_APPROACH enabled: true # task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_SPEED_OPTIMIZER task_type: RSS_DECIDER task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: RSS_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: EMERGENCY_STOP_STANDBY enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: ST_BOUNDS_DECIDER } }
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/learning_model_sample_config.pb.txt
scenario_type: LEARNING_MODEL_SAMPLE learning_model_sample_config: { } stage_type: LEARNING_MODEL_RUN stage_config: { stage_type: LEARNING_MODEL_RUN enabled: true task_type: LEARNING_MODEL_INFERENCE_TASK task_type: LEARNING_MODEL_INFERENCE_TRAJECTORY_TASK task_config: { task_type: LEARNING_MODEL_INFERENCE_TASK learning_model_inference_task_config { model_type: CNN_LSTM cpu_model_file: "/apollo/modules/planning/data/model/cpu_test_model_cnn_lstm.pt" gpu_model_file: "/apollo/modules/planning/data/model/gpu_test_model_cnn_lstm.pt" use_cuda: true } } task_config: { task_type: LEARNING_MODEL_INFERENCE_TRAJECTORY_TASK learning_model_inference_trajectory_task_config { min_adc_future_trajectory_time_length: 1.8 } } }
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/yield_sign_config.pb.txt
scenario_type: YIELD_SIGN yield_sign_config: { start_yield_sign_scenario_distance: 10.0 max_valid_stop_distance: 4.5 min_pass_s_distance: 3.0 creep_timeout_sec: 10.0 } stage_type: YIELD_SIGN_APPROACH stage_type: YIELD_SIGN_CREEP stage_config: { stage_type: YIELD_SIGN_APPROACH enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: YIELD_SIGN_CREEP enabled: true task_type: CREEP_DECIDER task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: CREEP_DECIDER creep_decider_config: { stop_distance: 0.3 speed_limit: 1.0 max_valid_stop_distance: 0.4 min_boundary_t: 6.0 ignore_max_st_min_t: 0.1 ignore_min_st_min_s: 15.0 } } task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } }
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/bare_intersection_unprotected_config.pb.txt
scenario_type: BARE_INTERSECTION_UNPROTECTED bare_intersection_unprotected_config: { start_bare_intersection_scenario_distance: 25.0 enable_explicit_stop: false min_pass_s_distance: 3.0 approach_cruise_speed: 6.7056 # 15 mph stop_distance: 0.5 stop_timeout_sec: 8.0 creep_timeout_sec: 10.0 } stage_type: BARE_INTERSECTION_UNPROTECTED_APPROACH stage_type: BARE_INTERSECTION_UNPROTECTED_INTERSECTION_CRUISE stage_config: { stage_type: BARE_INTERSECTION_UNPROTECTED_APPROACH enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: BARE_INTERSECTION_UNPROTECTED_INTERSECTION_CRUISE enabled: true task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER task_config: { task_type: PATH_LANE_BORROW_DECIDER path_lane_borrow_decider_config { allow_lane_borrowing: true } } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: PIECEWISE_JERK_NONLINEAR_SPEED_OPTIMIZER } task_config: { task_type: ST_BOUNDS_DECIDER } }
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/pull_over_config.pb.txt
scenario_type: PULL_OVER pull_over_config: { start_pull_over_scenario_distance: 50.0 pull_over_min_distance_buffer: 10.0 max_distance_stop_search: 25.0 max_s_error_to_end_point: 0.5 max_l_error_to_end_point: 1.0 max_theta_error_to_end_point: 0.2 pass_destination_threshold: 15.0 max_distance_error_to_end_point: 0.2 } stage_type: PULL_OVER_APPROACH stage_type: PULL_OVER_RETRY_PARKING stage_config: { stage_type: PULL_OVER_APPROACH enabled: true # task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_SPEED_OPTIMIZER task_type: RSS_DECIDER task_config: { task_type: PATH_LANE_BORROW_DECIDER } task_config: { task_type: PATH_BOUNDS_DECIDER path_bounds_decider_config { is_lane_borrowing: false is_pull_over: true pull_over_destination_to_adc_buffer: 25.0 pull_over_destination_to_pathend_buffer: 4.0 pull_over_road_edge_buffer: 0.15 pull_over_approach_lon_distance_adjust_factor: 1.6 } } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: RSS_DECIDER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: PULL_OVER_RETRY_APPROACH_PARKING enabled: true task_type: OPEN_SPACE_PRE_STOP_DECIDER task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_SPEED_OPTIMIZER task_config: { task_type: OPEN_SPACE_PRE_STOP_DECIDER open_space_pre_stop_decider_config { stop_type: PULL_OVER rightaway_stop_distance: 1.0 } } task_config: { task_type: PATH_LANE_BORROW_DECIDER path_lane_borrow_decider_config { allow_lane_borrowing: true } } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: PULL_OVER_RETRY_PARKING enabled: true task_type: OPEN_SPACE_ROI_DECIDER task_type: OPEN_SPACE_TRAJECTORY_PROVIDER task_type: OPEN_SPACE_TRAJECTORY_PARTITION task_type: OPEN_SPACE_FALLBACK_DECIDER task_config: { task_type: OPEN_SPACE_ROI_DECIDER open_space_roi_decider_config { roi_type: PULL_OVER perception_obstacle_buffer: 0.5 } } task_config: { task_type: OPEN_SPACE_TRAJECTORY_PROVIDER } task_config: { task_type: OPEN_SPACE_TRAJECTORY_PARTITION open_space_trajectory_partition_config { heading_offset_to_midpoint: 0.79 lateral_offset_to_midpoint: 0.5 longitudinal_offset_to_midpoint: 0.2 vehicle_box_iou_threshold_to_midpoint: 0.8 linear_velocity_threshold_on_ego: 0.2 } } task_config: { task_type: OPEN_SPACE_FALLBACK_DECIDER } }
0
apollo_public_repos/apollo/modules/planning/conf
apollo_public_repos/apollo/modules/planning/conf/scenario/valet_parking_config.pb.txt
scenario_type: VALET_PARKING valet_parking_config: { parking_spot_range_to_start: 20.0 max_valid_stop_distance: 1.0 } stage_type: VALET_PARKING_APPROACHING_PARKING_SPOT stage_type: VALET_PARKING_PARKING stage_config: { stage_type: VALET_PARKING_APPROACHING_PARKING_SPOT enabled: true task_type: OPEN_SPACE_PRE_STOP_DECIDER task_type: PATH_LANE_BORROW_DECIDER task_type: PATH_BOUNDS_DECIDER task_type: PIECEWISE_JERK_PATH_OPTIMIZER task_type: PATH_ASSESSMENT_DECIDER task_type: PATH_DECIDER task_type: RULE_BASED_STOP_DECIDER task_type: ST_BOUNDS_DECIDER task_type: SPEED_BOUNDS_PRIORI_DECIDER task_type: SPEED_HEURISTIC_OPTIMIZER task_type: SPEED_DECIDER task_type: SPEED_BOUNDS_FINAL_DECIDER task_type: PIECEWISE_JERK_SPEED_OPTIMIZER task_config: { task_type: OPEN_SPACE_PRE_STOP_DECIDER open_space_pre_stop_decider_config { stop_type: PARKING } } task_config: { task_type: PATH_LANE_BORROW_DECIDER path_lane_borrow_decider_config { allow_lane_borrowing: true } } task_config: { task_type: PATH_BOUNDS_DECIDER } task_config: { task_type: PIECEWISE_JERK_PATH_OPTIMIZER } task_config: { task_type: PATH_ASSESSMENT_DECIDER } task_config: { task_type: PATH_DECIDER } task_config: { task_type: SPEED_BOUNDS_PRIORI_DECIDER } task_config: { task_type: SPEED_HEURISTIC_OPTIMIZER } task_config: { task_type: SPEED_DECIDER } task_config: { task_type: SPEED_BOUNDS_FINAL_DECIDER } task_config: { task_type: PIECEWISE_JERK_SPEED_OPTIMIZER } task_config: { task_type: RULE_BASED_STOP_DECIDER } task_config: { task_type: ST_BOUNDS_DECIDER } } stage_config: { stage_type: VALET_PARKING_PARKING enabled: true task_type: OPEN_SPACE_ROI_DECIDER task_type: OPEN_SPACE_TRAJECTORY_PROVIDER task_type: OPEN_SPACE_TRAJECTORY_PARTITION task_type: OPEN_SPACE_FALLBACK_DECIDER task_config: { task_type: OPEN_SPACE_ROI_DECIDER open_space_roi_decider_config { roi_type: PARKING } } task_config: { task_type: OPEN_SPACE_TRAJECTORY_PROVIDER } task_config: { task_type: OPEN_SPACE_TRAJECTORY_PARTITION } task_config: { task_type: OPEN_SPACE_FALLBACK_DECIDER } }
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/constraint_checker/constraint_checker1d.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/planning/constraint_checker/constraint_checker1d.h" #include "cyber/common/log.h" #include "modules/planning/common/planning_gflags.h" namespace apollo { namespace planning { namespace { inline bool fuzzy_within(const double v, const double lower, const double upper, const double e = 1.0e-4) { return v > lower - e && v < upper + e; } } // namespace bool ConstraintChecker1d::IsValidLongitudinalTrajectory( const Curve1d& lon_trajectory) { double t = 0.0; while (t < lon_trajectory.ParamLength()) { double v = lon_trajectory.Evaluate(1, t); // evaluate_v if (!fuzzy_within(v, FLAGS_speed_lower_bound, FLAGS_speed_upper_bound)) { return false; } double a = lon_trajectory.Evaluate(2, t); // evaluate_a if (!fuzzy_within(a, FLAGS_longitudinal_acceleration_lower_bound, FLAGS_longitudinal_acceleration_upper_bound)) { return false; } double j = lon_trajectory.Evaluate(3, t); if (!fuzzy_within(j, FLAGS_longitudinal_jerk_lower_bound, FLAGS_longitudinal_jerk_upper_bound)) { return false; } t += FLAGS_trajectory_time_resolution; } return true; } bool ConstraintChecker1d::IsValidLateralTrajectory( const Curve1d& lat_trajectory, const Curve1d& lon_trajectory) { double t = 0.0; while (t < lon_trajectory.ParamLength()) { double s = lon_trajectory.Evaluate(0, t); double dd_ds = lat_trajectory.Evaluate(1, s); double ds_dt = lon_trajectory.Evaluate(1, t); double d2d_ds2 = lat_trajectory.Evaluate(2, s); double d2s_dt2 = lon_trajectory.Evaluate(2, t); double a = 0.0; if (s < lat_trajectory.ParamLength()) { a = d2d_ds2 * ds_dt * ds_dt + dd_ds * d2s_dt2; } if (!fuzzy_within(a, -FLAGS_lateral_acceleration_bound, FLAGS_lateral_acceleration_bound)) { return false; } // this is not accurate, just an approximation... double j = 0.0; if (s < lat_trajectory.ParamLength()) { j = lat_trajectory.Evaluate(3, s) * lon_trajectory.Evaluate(3, t); } if (!fuzzy_within(j, -FLAGS_lateral_jerk_bound, FLAGS_lateral_jerk_bound)) { return false; } t += FLAGS_trajectory_time_resolution; } return true; } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/constraint_checker/collision_checker.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 <memory> #include <vector> #include "modules/common/math/box2d.h" #include "modules/planning/common/obstacle.h" #include "modules/planning/common/reference_line_info.h" #include "modules/planning/common/trajectory/discretized_trajectory.h" #include "modules/planning/lattice/behavior/path_time_graph.h" namespace apollo { namespace planning { class CollisionChecker { public: CollisionChecker( const std::vector<const Obstacle*>& obstacles, const double ego_vehicle_s, const double ego_vehicle_d, const std::vector<common::PathPoint>& discretized_reference_line, const ReferenceLineInfo* ptr_reference_line_info, const std::shared_ptr<PathTimeGraph>& ptr_path_time_graph); bool InCollision(const DiscretizedTrajectory& discretized_trajectory); static bool InCollision(const std::vector<const Obstacle*>& obstacles, const DiscretizedTrajectory& ego_trajectory, const double ego_length, const double ego_width, const double ego_edge_to_center); private: void BuildPredictedEnvironment( const std::vector<const Obstacle*>& obstacles, const double ego_vehicle_s, const double ego_vehicle_d, const std::vector<common::PathPoint>& discretized_reference_line); bool IsEgoVehicleInLane(const double ego_vehicle_s, const double ego_vehicle_d); bool IsObstacleBehindEgoVehicle( const Obstacle* obstacle, const double ego_vehicle_s, const std::vector<apollo::common::PathPoint>& discretized_reference_line); private: const ReferenceLineInfo* ptr_reference_line_info_; std::shared_ptr<PathTimeGraph> ptr_path_time_graph_; std::vector<std::vector<common::math::Box2d>> predicted_bounding_rectangles_; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/constraint_checker/BUILD
load("@rules_cc//cc:defs.bzl", "cc_library") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) PLANNING_COPTS = ["-DMODULE_NAME=\\\"planning\\\""] cc_library( name = "constraint_checker", srcs = ["constraint_checker.cc"], hdrs = ["constraint_checker.h"], copts = PLANNING_COPTS, deps = [ "//cyber", "//modules/common_msgs/basic_msgs:pnc_point_cc_proto", "//modules/common/vehicle_state:vehicle_state_provider", "//modules/planning/common:planning_gflags", "//modules/planning/common/trajectory:discretized_trajectory", ], ) cc_library( name = "constraint_checker1d", srcs = ["constraint_checker1d.cc"], hdrs = ["constraint_checker1d.h"], copts = PLANNING_COPTS, deps = [ "//cyber", "//modules/planning/common:frame", "//modules/planning/common:planning_gflags", "//modules/planning/common/trajectory:discretized_trajectory", "//modules/planning/math/curve1d", ], ) cc_library( name = "collision_checker", srcs = ["collision_checker.cc"], hdrs = ["collision_checker.h"], copts = PLANNING_COPTS, deps = [ "//cyber", "//modules/common/configs:vehicle_config_helper", "//modules/common/math", "//modules/planning/common:frame", "//modules/planning/common:obstacle", "//modules/planning/common/trajectory:discretized_trajectory", "//modules/planning/lattice/behavior:path_time_graph", "//modules/planning/proto:st_drivable_boundary_cc_proto", "//modules/common_msgs/prediction_msgs:prediction_obstacle_cc_proto", ], ) cpplint()
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/constraint_checker/constraint_checker.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 constraint_checker.cc **/ #include "modules/planning/constraint_checker/constraint_checker.h" #include "cyber/common/log.h" #include "modules/planning/common/planning_gflags.h" namespace apollo { namespace planning { namespace { template <typename T> bool WithinRange(const T v, const T lower, const T upper) { return lower <= v && v <= upper; } } // namespace ConstraintChecker::Result ConstraintChecker::ValidTrajectory( const DiscretizedTrajectory& trajectory) { const double kMaxCheckRelativeTime = FLAGS_trajectory_time_length; for (const auto& p : trajectory) { double t = p.relative_time(); if (t > kMaxCheckRelativeTime) { break; } double lon_v = p.v(); if (!WithinRange(lon_v, FLAGS_speed_lower_bound, FLAGS_speed_upper_bound)) { ADEBUG << "Velocity at relative time " << t << " exceeds bound, value: " << lon_v << ", bound [" << FLAGS_speed_lower_bound << ", " << FLAGS_speed_upper_bound << "]."; return Result::LON_VELOCITY_OUT_OF_BOUND; } double lon_a = p.a(); if (!WithinRange(lon_a, FLAGS_longitudinal_acceleration_lower_bound, FLAGS_longitudinal_acceleration_upper_bound)) { ADEBUG << "Longitudinal acceleration at relative time " << t << " exceeds bound, value: " << lon_a << ", bound [" << FLAGS_longitudinal_acceleration_lower_bound << ", " << FLAGS_longitudinal_acceleration_upper_bound << "]."; return Result::LON_ACCELERATION_OUT_OF_BOUND; } double kappa = p.path_point().kappa(); if (!WithinRange(kappa, -FLAGS_kappa_bound, FLAGS_kappa_bound)) { ADEBUG << "Kappa at relative time " << t << " exceeds bound, value: " << kappa << ", bound [" << -FLAGS_kappa_bound << ", " << FLAGS_kappa_bound << "]."; return Result::CURVATURE_OUT_OF_BOUND; } } for (size_t i = 1; i < trajectory.NumOfPoints(); ++i) { const auto& p0 = trajectory.TrajectoryPointAt(static_cast<uint32_t>(i - 1)); const auto& p1 = trajectory.TrajectoryPointAt(static_cast<uint32_t>(i)); if (p1.relative_time() > kMaxCheckRelativeTime) { break; } double t = p0.relative_time(); double dt = p1.relative_time() - p0.relative_time(); double d_lon_a = p1.a() - p0.a(); double lon_jerk = d_lon_a / dt; if (!WithinRange(lon_jerk, FLAGS_longitudinal_jerk_lower_bound, FLAGS_longitudinal_jerk_upper_bound)) { ADEBUG << "Longitudinal jerk at relative time " << t << " exceeds bound, value: " << lon_jerk << ", bound [" << FLAGS_longitudinal_jerk_lower_bound << ", " << FLAGS_longitudinal_jerk_upper_bound << "]."; return Result::LON_JERK_OUT_OF_BOUND; } double lat_a = p1.v() * p1.v() * p1.path_point().kappa(); if (!WithinRange(lat_a, -FLAGS_lateral_acceleration_bound, FLAGS_lateral_acceleration_bound)) { ADEBUG << "Lateral acceleration at relative time " << t << " exceeds bound, value: " << lat_a << ", bound [" << -FLAGS_lateral_acceleration_bound << ", " << FLAGS_lateral_acceleration_bound << "]."; return Result::LAT_ACCELERATION_OUT_OF_BOUND; } // TODO(zhangyajia): this is temporarily disabled // due to low quality reference line. /** double d_lat_a = p1.v() * p1.v() * p1.path_point().kappa() - p0.v() * p0.v() * p0.path_point().kappa(); double lat_jerk = d_lat_a / dt; if (!WithinRange(lat_jerk, -FLAGS_lateral_jerk_bound, FLAGS_lateral_jerk_bound)) { ADEBUG << "Lateral jerk at relative time " << t << " exceeds bound, value: " << lat_jerk << ", bound [" << -FLAGS_lateral_jerk_bound << ", " << FLAGS_lateral_jerk_bound << "]."; return Result::LAT_JERK_OUT_OF_BOUND; } **/ } return Result::VALID; } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/constraint_checker/collision_checker.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/planning/constraint_checker/collision_checker.h" #include <utility> #include "cyber/common/log.h" #include "modules/common/configs/vehicle_config_helper.h" #include "modules/common/math/path_matcher.h" #include "modules/common/math/vec2d.h" #include "modules/planning/common/planning_gflags.h" #include "modules/common_msgs/prediction_msgs/prediction_obstacle.pb.h" namespace apollo { namespace planning { using apollo::common::PathPoint; using apollo::common::TrajectoryPoint; using apollo::common::math::Box2d; using apollo::common::math::PathMatcher; using apollo::common::math::Vec2d; CollisionChecker::CollisionChecker( const std::vector<const Obstacle*>& obstacles, const double ego_vehicle_s, const double ego_vehicle_d, const std::vector<PathPoint>& discretized_reference_line, const ReferenceLineInfo* ptr_reference_line_info, const std::shared_ptr<PathTimeGraph>& ptr_path_time_graph) { ptr_reference_line_info_ = ptr_reference_line_info; ptr_path_time_graph_ = ptr_path_time_graph; BuildPredictedEnvironment(obstacles, ego_vehicle_s, ego_vehicle_d, discretized_reference_line); } bool CollisionChecker::InCollision( const std::vector<const Obstacle*>& obstacles, const DiscretizedTrajectory& ego_trajectory, const double ego_length, const double ego_width, const double ego_back_edge_to_center) { for (size_t i = 0; i < ego_trajectory.NumOfPoints(); ++i) { const auto& ego_point = ego_trajectory.TrajectoryPointAt(static_cast<std::uint32_t>(i)); const auto relative_time = ego_point.relative_time(); const auto ego_theta = ego_point.path_point().theta(); Box2d ego_box({ego_point.path_point().x(), ego_point.path_point().y()}, ego_theta, ego_length, ego_width); // correct the inconsistency of reference point and center point // TODO(all): move the logic before constructing the ego_box double shift_distance = ego_length / 2.0 - ego_back_edge_to_center; Vec2d shift_vec(shift_distance * std::cos(ego_theta), shift_distance * std::sin(ego_theta)); ego_box.Shift(shift_vec); std::vector<Box2d> obstacle_boxes; for (const auto obstacle : obstacles) { auto obtacle_point = obstacle->GetPointAtTime(relative_time); Box2d obstacle_box = obstacle->GetBoundingBox(obtacle_point); if (ego_box.HasOverlap(obstacle_box)) { return true; } } } return false; } bool CollisionChecker::InCollision( const DiscretizedTrajectory& discretized_trajectory) { CHECK_LE(discretized_trajectory.NumOfPoints(), predicted_bounding_rectangles_.size()); const auto& vehicle_config = common::VehicleConfigHelper::Instance()->GetConfig(); double ego_length = vehicle_config.vehicle_param().length(); double ego_width = vehicle_config.vehicle_param().width(); for (size_t i = 0; i < discretized_trajectory.NumOfPoints(); ++i) { const auto& trajectory_point = discretized_trajectory.TrajectoryPointAt(static_cast<std::uint32_t>(i)); double ego_theta = trajectory_point.path_point().theta(); Box2d ego_box( {trajectory_point.path_point().x(), trajectory_point.path_point().y()}, ego_theta, ego_length, ego_width); double shift_distance = ego_length / 2.0 - vehicle_config.vehicle_param().back_edge_to_center(); Vec2d shift_vec{shift_distance * std::cos(ego_theta), shift_distance * std::sin(ego_theta)}; ego_box.Shift(shift_vec); for (const auto& obstacle_box : predicted_bounding_rectangles_[i]) { if (ego_box.HasOverlap(obstacle_box)) { return true; } } } return false; } void CollisionChecker::BuildPredictedEnvironment( const std::vector<const Obstacle*>& obstacles, const double ego_vehicle_s, const double ego_vehicle_d, const std::vector<PathPoint>& discretized_reference_line) { ACHECK(predicted_bounding_rectangles_.empty()); // If the ego vehicle is in lane, // then, ignore all obstacles from the same lane. bool ego_vehicle_in_lane = IsEgoVehicleInLane(ego_vehicle_s, ego_vehicle_d); std::vector<const Obstacle*> obstacles_considered; for (const Obstacle* obstacle : obstacles) { if (obstacle->IsVirtual()) { continue; } if (ego_vehicle_in_lane && (IsObstacleBehindEgoVehicle(obstacle, ego_vehicle_s, discretized_reference_line) || !ptr_path_time_graph_->IsObstacleInGraph(obstacle->Id()))) { continue; } obstacles_considered.push_back(obstacle); } double relative_time = 0.0; while (relative_time < FLAGS_trajectory_time_length) { std::vector<Box2d> predicted_env; for (const Obstacle* obstacle : obstacles_considered) { // If an obstacle has no trajectory, it is considered as static. // Obstacle::GetPointAtTime has handled this case. TrajectoryPoint point = obstacle->GetPointAtTime(relative_time); Box2d box = obstacle->GetBoundingBox(point); box.LongitudinalExtend(2.0 * FLAGS_lon_collision_buffer); box.LateralExtend(2.0 * FLAGS_lat_collision_buffer); predicted_env.push_back(std::move(box)); } predicted_bounding_rectangles_.push_back(std::move(predicted_env)); relative_time += FLAGS_trajectory_time_resolution; } } bool CollisionChecker::IsEgoVehicleInLane(const double ego_vehicle_s, const double ego_vehicle_d) { double left_width = FLAGS_default_reference_line_width * 0.5; double right_width = FLAGS_default_reference_line_width * 0.5; ptr_reference_line_info_->reference_line().GetLaneWidth( ego_vehicle_s, &left_width, &right_width); return ego_vehicle_d < left_width && ego_vehicle_d > -right_width; } bool CollisionChecker::IsObstacleBehindEgoVehicle( const Obstacle* obstacle, const double ego_vehicle_s, const std::vector<PathPoint>& discretized_reference_line) { double half_lane_width = FLAGS_default_reference_line_width * 0.5; TrajectoryPoint point = obstacle->GetPointAtTime(0.0); auto obstacle_reference_line_position = PathMatcher::GetPathFrenetCoordinate( discretized_reference_line, point.path_point().x(), point.path_point().y()); if (obstacle_reference_line_position.first < ego_vehicle_s && std::fabs(obstacle_reference_line_position.second) < half_lane_width) { ADEBUG << "Ignore obstacle [" << obstacle->Id() << "]"; return true; } return false; } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/constraint_checker/constraint_checker1d.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/planning/common/trajectory/discretized_trajectory.h" #include "modules/planning/math/curve1d/curve1d.h" namespace apollo { namespace planning { class ConstraintChecker1d { public: ConstraintChecker1d() = delete; static bool IsValidLongitudinalTrajectory(const Curve1d& lon_trajectory); static bool IsValidLateralTrajectory(const Curve1d& lat_trajectory, const Curve1d& lon_trajectory); }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/constraint_checker/constraint_checker.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 constraint_checker.h **/ #pragma once #include "modules/planning/common/trajectory/discretized_trajectory.h" namespace apollo { namespace planning { class ConstraintChecker { public: enum class Result { VALID, LON_VELOCITY_OUT_OF_BOUND, LON_ACCELERATION_OUT_OF_BOUND, LON_JERK_OUT_OF_BOUND, LAT_VELOCITY_OUT_OF_BOUND, LAT_ACCELERATION_OUT_OF_BOUND, LAT_JERK_OUT_OF_BOUND, CURVATURE_OUT_OF_BOUND, }; ConstraintChecker() = delete; static Result ValidTrajectory(const DiscretizedTrajectory& trajectory); }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/crosswalk.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/planning/traffic_rules/crosswalk.h" #include <algorithm> #include <limits> #include <memory> #include <unordered_map> #include <utility> #include "cyber/time/clock.h" #include "modules/common_msgs/basic_msgs/pnc_point.pb.h" #include "modules/common/util/util.h" #include "modules/common/vehicle_state/vehicle_state_provider.h" #include "modules/map/hdmap/hdmap_util.h" #include "modules/common_msgs/perception_msgs/perception_obstacle.pb.h" #include "modules/planning/common/ego_info.h" #include "modules/planning/common/frame.h" #include "modules/planning/common/planning_context.h" #include "modules/planning/common/util/common.h" #include "modules/planning/common/util/util.h" #include "modules/planning/proto/planning_status.pb.h" namespace apollo { namespace planning { using apollo::common::Status; using apollo::common::math::Polygon2d; using apollo::common::math::Vec2d; using apollo::cyber::Clock; using apollo::hdmap::CrosswalkInfoConstPtr; using apollo::hdmap::HDMapUtil; using apollo::hdmap::PathOverlap; using apollo::perception::PerceptionObstacle; using CrosswalkToStop = std::vector<std::pair<const hdmap::PathOverlap*, std::vector<std::string>>>; using CrosswalkStopTimer = std::unordered_map<std::string, std::unordered_map<std::string, double>>; Crosswalk::Crosswalk(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector) : TrafficRule(config, injector) {} Status Crosswalk::ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info) { CHECK_NOTNULL(frame); CHECK_NOTNULL(reference_line_info); if (!FindCrosswalks(reference_line_info)) { injector_->planning_context()->mutable_planning_status()->clear_crosswalk(); return Status::OK(); } MakeDecisions(frame, reference_line_info); return Status::OK(); } void Crosswalk::MakeDecisions(Frame* const frame, ReferenceLineInfo* const reference_line_info) { CHECK_NOTNULL(frame); CHECK_NOTNULL(reference_line_info); auto* mutable_crosswalk_status = injector_->planning_context() ->mutable_planning_status() ->mutable_crosswalk(); auto* path_decision = reference_line_info->path_decision(); double adc_front_edge_s = reference_line_info->AdcSlBoundary().end_s(); CrosswalkToStop crosswalks_to_stop; // read crosswalk_stop_timer from saved status CrosswalkStopTimer crosswalk_stop_timer; std::unordered_map<std::string, double> stop_times; for (const auto& stop_time : mutable_crosswalk_status->stop_time()) { stop_times.emplace(stop_time.obstacle_id(), stop_time.stop_timestamp_sec()); } crosswalk_stop_timer.emplace(mutable_crosswalk_status->crosswalk_id(), stop_times); const auto& finished_crosswalks = mutable_crosswalk_status->finished_crosswalk(); const auto& reference_line = reference_line_info->reference_line(); for (auto crosswalk_overlap : crosswalk_overlaps_) { auto crosswalk_ptr = HDMapUtil::BaseMap().GetCrosswalkById( hdmap::MakeMapId(crosswalk_overlap->object_id)); std::string crosswalk_id = crosswalk_ptr->id().id(); // skip crosswalk if master vehicle body already passes the stop line if (adc_front_edge_s - crosswalk_overlap->end_s > config_.crosswalk().min_pass_s_distance()) { if (mutable_crosswalk_status->has_crosswalk_id() && mutable_crosswalk_status->crosswalk_id() == crosswalk_id) { mutable_crosswalk_status->clear_crosswalk_id(); mutable_crosswalk_status->clear_stop_time(); } ADEBUG << "SKIP: crosswalk_id[" << crosswalk_id << "] crosswalk_overlap_end_s[" << crosswalk_overlap->end_s << "] adc_front_edge_s[" << adc_front_edge_s << "]. adc_front_edge passes crosswalk_end_s + buffer."; continue; } // check if crosswalk already finished if (finished_crosswalks.end() != std::find(finished_crosswalks.begin(), finished_crosswalks.end(), crosswalk_id)) { ADEBUG << "SKIP: crosswalk_id[" << crosswalk_id << "] crosswalk_end_s[" << crosswalk_overlap->end_s << "] finished already"; continue; } std::vector<std::string> pedestrians; for (const auto* obstacle : path_decision->obstacles().Items()) { const double stop_deceleration = util::GetADCStopDeceleration( injector_->vehicle_state(), adc_front_edge_s, crosswalk_overlap->start_s); bool stop = CheckStopForObstacle(reference_line_info, crosswalk_ptr, *obstacle, stop_deceleration); const std::string& obstacle_id = obstacle->Id(); const PerceptionObstacle& perception_obstacle = obstacle->Perception(); PerceptionObstacle::Type obstacle_type = perception_obstacle.type(); std::string obstacle_type_name = PerceptionObstacle_Type_Name(obstacle_type); // update stop timestamp on static pedestrian for watch timer const bool is_on_lane = reference_line.IsOnLane(obstacle->PerceptionSLBoundary()); const double kStartWatchTimerDistance = 40.0; if (stop && !is_on_lane && crosswalk_overlap->start_s - adc_front_edge_s <= kStartWatchTimerDistance) { // check on stop timer for static pedestrians/bicycles // if NOT on_lane ahead of adc const double kMaxStopSpeed = 0.3; auto obstacle_speed = std::hypot(perception_obstacle.velocity().x(), perception_obstacle.velocity().y()); if (obstacle_speed <= kMaxStopSpeed) { if (crosswalk_stop_timer[crosswalk_id].count(obstacle_id) < 1) { // add timestamp ADEBUG << "add timestamp: obstacle_id[" << obstacle_id << "] timestamp[" << Clock::NowInSeconds() << "]"; crosswalk_stop_timer[crosswalk_id].insert( {obstacle_id, Clock::NowInSeconds()}); } else { double stop_time = Clock::NowInSeconds() - crosswalk_stop_timer[crosswalk_id][obstacle_id]; ADEBUG << "stop_time: obstacle_id[" << obstacle_id << "] stop_time[" << stop_time << "]"; if (stop_time >= config_.crosswalk().stop_timeout()) { stop = false; } } } } if (stop) { pedestrians.push_back(obstacle_id); ADEBUG << "wait for: obstacle_id[" << obstacle_id << "] type[" << obstacle_type_name << "] crosswalk_id[" << crosswalk_id << "]"; } else { ADEBUG << "skip: obstacle_id[" << obstacle_id << "] type[" << obstacle_type_name << "] crosswalk_id[" << crosswalk_id << "]"; } } if (!pedestrians.empty()) { crosswalks_to_stop.emplace_back(crosswalk_overlap, pedestrians); ADEBUG << "crosswalk_id[" << crosswalk_id << "] STOP"; } } double min_s = std::numeric_limits<double>::max(); hdmap::PathOverlap* firsts_crosswalk_to_stop = nullptr; for (auto crosswalk_to_stop : crosswalks_to_stop) { // build stop decision const auto* crosswalk_overlap = crosswalk_to_stop.first; ADEBUG << "BuildStopDecision: crosswalk[" << crosswalk_overlap->object_id << "] start_s[" << crosswalk_overlap->start_s << "]"; std::string virtual_obstacle_id = CROSSWALK_VO_ID_PREFIX + crosswalk_overlap->object_id; util::BuildStopDecision(virtual_obstacle_id, crosswalk_overlap->start_s, config_.crosswalk().stop_distance(), StopReasonCode::STOP_REASON_CROSSWALK, crosswalk_to_stop.second, TrafficRuleConfig::RuleId_Name(config_.rule_id()), frame, reference_line_info); if (crosswalk_to_stop.first->start_s < min_s) { firsts_crosswalk_to_stop = const_cast<PathOverlap*>(crosswalk_to_stop.first); min_s = crosswalk_to_stop.first->start_s; } } if (firsts_crosswalk_to_stop) { // update CrosswalkStatus std::string crosswalk = firsts_crosswalk_to_stop->object_id; mutable_crosswalk_status->set_crosswalk_id(crosswalk); mutable_crosswalk_status->clear_stop_time(); for (const auto& timer : crosswalk_stop_timer[crosswalk]) { auto* stop_time = mutable_crosswalk_status->add_stop_time(); stop_time->set_obstacle_id(timer.first); stop_time->set_stop_timestamp_sec(timer.second); ADEBUG << "UPDATE stop_time: id[" << crosswalk << "] obstacle_id[" << timer.first << "] stop_timestamp[" << timer.second << "]"; } // update CrosswalkStatus.finished_crosswalk mutable_crosswalk_status->clear_finished_crosswalk(); for (auto crosswalk_overlap : crosswalk_overlaps_) { if (crosswalk_overlap->start_s < firsts_crosswalk_to_stop->start_s) { mutable_crosswalk_status->add_finished_crosswalk( crosswalk_overlap->object_id); ADEBUG << "UPDATE finished_crosswalk: " << crosswalk_overlap->object_id; } } } ADEBUG << "crosswalk_status: " << mutable_crosswalk_status->DebugString(); } bool Crosswalk::FindCrosswalks(ReferenceLineInfo* const reference_line_info) { CHECK_NOTNULL(reference_line_info); crosswalk_overlaps_.clear(); const std::vector<hdmap::PathOverlap>& crosswalk_overlaps = reference_line_info->reference_line().map_path().crosswalk_overlaps(); for (const hdmap::PathOverlap& crosswalk_overlap : crosswalk_overlaps) { crosswalk_overlaps_.push_back(&crosswalk_overlap); } return crosswalk_overlaps_.size() > 0; } bool Crosswalk::CheckStopForObstacle( ReferenceLineInfo* const reference_line_info, const CrosswalkInfoConstPtr crosswalk_ptr, const Obstacle& obstacle, const double stop_deceleration) { CHECK_NOTNULL(reference_line_info); std::string crosswalk_id = crosswalk_ptr->id().id(); const PerceptionObstacle& perception_obstacle = obstacle.Perception(); const std::string& obstacle_id = obstacle.Id(); PerceptionObstacle::Type obstacle_type = perception_obstacle.type(); std::string obstacle_type_name = PerceptionObstacle_Type_Name(obstacle_type); double adc_end_edge_s = reference_line_info->AdcSlBoundary().start_s(); // check type if (obstacle_type != PerceptionObstacle::PEDESTRIAN && obstacle_type != PerceptionObstacle::BICYCLE && obstacle_type != PerceptionObstacle::UNKNOWN_MOVABLE && obstacle_type != PerceptionObstacle::UNKNOWN) { ADEBUG << "obstacle_id[" << obstacle_id << "] type[" << obstacle_type_name << "]. skip"; return false; } // expand crosswalk polygon // note: crosswalk expanded area will include sideway area Vec2d point(perception_obstacle.position().x(), perception_obstacle.position().y()); const Polygon2d crosswalk_exp_poly = crosswalk_ptr->polygon().ExpandByDistance( config_.crosswalk().expand_s_distance()); bool in_expanded_crosswalk = crosswalk_exp_poly.IsPointIn(point); if (!in_expanded_crosswalk) { ADEBUG << "skip: obstacle_id[" << obstacle_id << "] type[" << obstacle_type_name << "] crosswalk_id[" << crosswalk_id << "]: not in crosswalk expanded area"; return false; } const auto& reference_line = reference_line_info->reference_line(); common::SLPoint obstacle_sl_point; reference_line.XYToSL(perception_obstacle.position(), &obstacle_sl_point); auto& obstacle_sl_boundary = obstacle.PerceptionSLBoundary(); const double obstacle_l_distance = std::min(std::fabs(obstacle_sl_boundary.start_l()), std::fabs(obstacle_sl_boundary.end_l())); const bool is_on_lane = reference_line.IsOnLane(obstacle.PerceptionSLBoundary()); const bool is_on_road = reference_line.IsOnRoad(obstacle.PerceptionSLBoundary()); const bool is_path_cross = !obstacle.reference_line_st_boundary().IsEmpty(); ADEBUG << "obstacle_id[" << obstacle_id << "] type[" << obstacle_type_name << "] crosswalk_id[" << crosswalk_id << "] obstacle_l[" << obstacle_sl_point.l() << "] within_expanded_crosswalk_area[" << in_expanded_crosswalk << "] obstacle_l_distance[" << obstacle_l_distance << "] on_lane[" << is_on_lane << "] is_on_road[" << is_on_road << "] is_path_cross[" << is_path_cross << "]"; bool stop = false; if (obstacle_l_distance >= config_.crosswalk().stop_loose_l_distance()) { // (1) when obstacle_l_distance is big enough(>= loose_l_distance), // STOP only if paths crosses if (is_path_cross) { stop = true; ADEBUG << "need_stop(>=l2): obstacle_id[" << obstacle_id << "] type[" << obstacle_type_name << "] crosswalk_id[" << crosswalk_id << "]"; } } else if (obstacle_l_distance <= config_.crosswalk().stop_strict_l_distance()) { if (is_on_road) { // (2) when l_distance <= strict_l_distance + on_road // always STOP if (obstacle_sl_point.s() > adc_end_edge_s) { stop = true; ADEBUG << "need_stop(<=l1): obstacle_id[" << obstacle_id << "] type[" << obstacle_type_name << "] s[" << obstacle_sl_point.s() << "] adc_end_edge_s[ " << adc_end_edge_s << "] crosswalk_id[" << crosswalk_id << "] ON_ROAD"; } } else { // (3) when l_distance <= strict_l_distance // + NOT on_road(i.e. on crosswalk/median etc) // STOP if paths cross if (is_path_cross) { stop = true; ADEBUG << "need_stop(<=l1): obstacle_id[" << obstacle_id << "] type[" << obstacle_type_name << "] crosswalk_id[" << crosswalk_id << "] PATH_CRSOSS"; } else { // (4) when l_distance <= strict_l_distance // + NOT on_road(i.e. on crosswalk/median etc) // STOP if he pedestrian is moving toward the ego vehicle const auto obstacle_v = Vec2d(perception_obstacle.velocity().x(), perception_obstacle.velocity().y()); const auto adc_path_point = Vec2d(injector_->ego_info()->start_point().path_point().x(), injector_->ego_info()->start_point().path_point().y()); const auto ovstacle_position = Vec2d(perception_obstacle.position().x(), perception_obstacle.position().y()); auto obs_to_adc = adc_path_point - ovstacle_position; const double kEpsilon = 1e-6; if (obstacle_v.InnerProd(obs_to_adc) > kEpsilon) { stop = true; ADEBUG << "need_stop(<=l1): obstacle_id[" << obstacle_id << "] type[" << obstacle_type_name << "] crosswalk_id[" << crosswalk_id << "] MOVING_TOWARD_ADC"; } } } } else { // (4) when l_distance is between loose_l and strict_l // use history decision of this crosswalk to smooth unsteadiness // TODO(all): replace this temp implementation if (is_path_cross) { stop = true; } ADEBUG << "need_stop(between l1 & l2): obstacle_id[" << obstacle_id << "] type[" << obstacle_type_name << "] obstacle_l_distance[" << obstacle_l_distance << "] crosswalk_id[" << crosswalk_id << "] USE_PREVIOUS_DECISION"; } // check stop_deceleration if (stop) { if (stop_deceleration >= config_.crosswalk().max_stop_deceleration()) { if (obstacle_l_distance > config_.crosswalk().stop_strict_l_distance()) { // SKIP when stop_deceleration is too big but safe to ignore stop = false; } AWARN << "crosswalk_id[" << crosswalk_id << "] stop_deceleration[" << stop_deceleration << "]"; } } return stop; } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/reference_line_end.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/planning/traffic_rules/reference_line_end.h" #include <memory> #include "modules/common/configs/vehicle_config_helper.h" #include "modules/common_msgs/basic_msgs/pnc_point.pb.h" #include "modules/planning/common/planning_gflags.h" namespace apollo { namespace planning { using apollo::common::Status; ReferenceLineEnd::ReferenceLineEnd( const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector) : TrafficRule(config, injector) {} Status ReferenceLineEnd::ApplyRule( Frame* frame, ReferenceLineInfo* const reference_line_info) { const auto& reference_line = reference_line_info->reference_line(); ADEBUG << "ReferenceLineEnd length[" << reference_line.Length() << "]"; for (const auto& segment : reference_line_info->Lanes()) { ADEBUG << " lane[" << segment.lane->lane().id().id() << "]"; } // check double remain_s = reference_line.Length() - reference_line_info->AdcSlBoundary().end_s(); if (remain_s > config_.reference_line_end().min_reference_line_remain_length()) { return Status::OK(); } // create avirtual stop wall at the end of reference line to stop the adc std::string virtual_obstacle_id = REF_LINE_END_VO_ID_PREFIX + reference_line_info->Lanes().Id(); double obstacle_start_s = reference_line.Length() - 2 * FLAGS_virtual_stop_wall_length; auto* obstacle = frame->CreateStopObstacle( reference_line_info, virtual_obstacle_id, obstacle_start_s); if (!obstacle) { return Status(common::PLANNING_ERROR, "Failed to create reference line end obstacle"); } Obstacle* stop_wall = reference_line_info->AddObstacle(obstacle); if (!stop_wall) { return Status( common::PLANNING_ERROR, "Failed to create path obstacle for reference line end obstacle"); } // build stop decision const double stop_line_s = obstacle_start_s - config_.reference_line_end().stop_distance(); auto stop_point = reference_line.GetReferencePoint(stop_line_s); ObjectDecisionType stop; auto stop_decision = stop.mutable_stop(); stop_decision->set_reason_code(StopReasonCode::STOP_REASON_DESTINATION); stop_decision->set_distance_s(-config_.reference_line_end().stop_distance()); stop_decision->set_stop_heading(stop_point.heading()); stop_decision->mutable_stop_point()->set_x(stop_point.x()); stop_decision->mutable_stop_point()->set_y(stop_point.y()); stop_decision->mutable_stop_point()->set_z(0.0); auto* path_decision = reference_line_info->path_decision(); path_decision->AddLongitudinalDecision( TrafficRuleConfig::RuleId_Name(config_.rule_id()), stop_wall->Id(), stop); return Status::OK(); } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/stop_sign.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. *****************************************************************************/ /** * @file **/ #pragma once #include <memory> #include <string> #include <vector> #include "modules/planning/traffic_rules/traffic_rule.h" namespace apollo { namespace planning { class StopSign : public TrafficRule { public: StopSign(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector); virtual ~StopSign() = default; common::Status ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info); private: void MakeDecisions(Frame* const frame, ReferenceLineInfo* const reference_line_info); private: static constexpr char const* STOP_SIGN_VO_ID_PREFIX = "SS_"; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/rerouting.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 <memory> #include "modules/planning/traffic_rules/traffic_rule.h" namespace apollo { namespace planning { /** * This class decides whether we should send rerouting request based on traffic * situation. */ class Rerouting : public TrafficRule { public: Rerouting(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector); virtual ~Rerouting() = default; common::Status ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info); private: bool ChangeLaneFailRerouting(); ReferenceLineInfo* reference_line_info_ = nullptr; Frame* frame_ = nullptr; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/rerouting.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/planning/traffic_rules/rerouting.h" #include <memory> #include "cyber/time/clock.h" #include "modules/common_msgs/basic_msgs/pnc_point.pb.h" #include "modules/common/vehicle_state/vehicle_state_provider.h" #include "modules/planning/common/planning_context.h" namespace apollo { namespace planning { using apollo::common::Status; using apollo::cyber::Clock; Rerouting::Rerouting(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector) : TrafficRule(config, injector) {} bool Rerouting::ChangeLaneFailRerouting() { static constexpr double kRerouteThresholdToEnd = 20.0; for (const auto& ref_line_info : frame_->reference_line_info()) { if (ref_line_info.ReachedDestination() || ref_line_info.SDistanceToDestination() < kRerouteThresholdToEnd) { return true; } } const auto& segments = reference_line_info_->Lanes(); // 1. If current reference line is drive forward, no rerouting. if (segments.NextAction() == routing::FORWARD) { // if not current lane, do not check for rerouting return true; } // 2. If vehicle is not on current reference line yet, no rerouting if (!segments.IsOnSegment()) { return true; } // 3. If current reference line can connect to next passage, no rerouting if (segments.CanExit()) { return true; } // 4. If the end of current passage region not appeared, no rerouting const auto& route_end_waypoint = segments.RouteEndWaypoint(); if (!route_end_waypoint.lane) { return true; } auto point = route_end_waypoint.lane->GetSmoothPoint(route_end_waypoint.s); const auto& reference_line = reference_line_info_->reference_line(); common::SLPoint sl_point; if (!reference_line.XYToSL(point, &sl_point)) { AERROR << "Failed to project point: " << point.ShortDebugString(); return false; } if (!reference_line.IsOnLane(sl_point)) { return true; } // 5. If the end of current passage region is further than kPrepareRoutingTime // * speed, no rerouting double adc_s = reference_line_info_->AdcSlBoundary().end_s(); const auto vehicle_state = injector_->vehicle_state(); double speed = vehicle_state->linear_velocity(); const double prepare_rerouting_time = config_.rerouting().prepare_rerouting_time(); const double prepare_distance = speed * prepare_rerouting_time; if (sl_point.s() > adc_s + prepare_distance) { ADEBUG << "No need rerouting now because still can drive for time: " << prepare_rerouting_time << " seconds"; return true; } // 6. Check if we have done rerouting before auto* rerouting = injector_->planning_context() ->mutable_planning_status() ->mutable_rerouting(); if (rerouting == nullptr) { AERROR << "rerouting is nullptr."; return false; } double current_time = Clock::NowInSeconds(); if (rerouting->has_last_rerouting_time() && (current_time - rerouting->last_rerouting_time() < config_.rerouting().cooldown_time())) { ADEBUG << "Skip rerouting and wait for previous rerouting result"; return true; } if (!frame_->Rerouting(injector_->planning_context())) { AERROR << "Failed to send rerouting request"; return false; } // store last rerouting time. rerouting->set_last_rerouting_time(current_time); return true; } Status Rerouting::ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info) { frame_ = frame; reference_line_info_ = reference_line_info; if (!ChangeLaneFailRerouting()) { return Status(common::PLANNING_ERROR, "In un-successful lane change case, rerouting failed"); } return Status::OK(); } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/traffic_decider.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/planning/traffic_rules/traffic_decider.h" #include <limits> #include <memory> #include "modules/common/configs/vehicle_config_helper.h" #include "modules/planning/common/planning_gflags.h" #include "modules/planning/traffic_rules/backside_vehicle.h" #include "modules/planning/traffic_rules/crosswalk.h" #include "modules/planning/traffic_rules/destination.h" #include "modules/planning/traffic_rules/keep_clear.h" #include "modules/planning/traffic_rules/reference_line_end.h" #include "modules/planning/traffic_rules/rerouting.h" #include "modules/planning/traffic_rules/stop_sign.h" #include "modules/planning/traffic_rules/traffic_light.h" #include "modules/planning/traffic_rules/yield_sign.h" namespace apollo { namespace planning { using apollo::common::Status; apollo::common::util::Factory< TrafficRuleConfig::RuleId, TrafficRule, TrafficRule *(*)(const TrafficRuleConfig &config, const std::shared_ptr<DependencyInjector> &injector)> TrafficDecider::s_rule_factory; void TrafficDecider::RegisterRules() { s_rule_factory.Register( TrafficRuleConfig::BACKSIDE_VEHICLE, [](const TrafficRuleConfig &config, const std::shared_ptr<DependencyInjector> &injector) -> TrafficRule * { return new BacksideVehicle(config); }); s_rule_factory.Register( TrafficRuleConfig::CROSSWALK, [](const TrafficRuleConfig &config, const std::shared_ptr<DependencyInjector> &injector) -> TrafficRule * { return new Crosswalk(config, injector); }); s_rule_factory.Register( TrafficRuleConfig::DESTINATION, [](const TrafficRuleConfig &config, const std::shared_ptr<DependencyInjector> &injector) -> TrafficRule * { return new Destination(config, injector); }); s_rule_factory.Register( TrafficRuleConfig::KEEP_CLEAR, [](const TrafficRuleConfig &config, const std::shared_ptr<DependencyInjector> &injector) -> TrafficRule * { return new KeepClear(config, injector); }); s_rule_factory.Register( TrafficRuleConfig::REFERENCE_LINE_END, [](const TrafficRuleConfig &config, const std::shared_ptr<DependencyInjector> &injector) -> TrafficRule * { return new ReferenceLineEnd(config, injector); }); s_rule_factory.Register( TrafficRuleConfig::REROUTING, [](const TrafficRuleConfig &config, const std::shared_ptr<DependencyInjector> &injector) -> TrafficRule * { return new Rerouting(config, injector); }); s_rule_factory.Register( TrafficRuleConfig::STOP_SIGN, [](const TrafficRuleConfig &config, const std::shared_ptr<DependencyInjector> &injector) -> TrafficRule * { return new StopSign(config, injector); }); s_rule_factory.Register( TrafficRuleConfig::YIELD_SIGN, [](const TrafficRuleConfig &config, const std::shared_ptr<DependencyInjector> &injector) -> TrafficRule * { return new YieldSign(config, injector); }); s_rule_factory.Register( TrafficRuleConfig::TRAFFIC_LIGHT, [](const TrafficRuleConfig &config, const std::shared_ptr<DependencyInjector> &injector) -> TrafficRule * { return new TrafficLight(config, injector); }); } bool TrafficDecider::Init(const TrafficRuleConfigs &config) { if (s_rule_factory.Empty()) { RegisterRules(); } rule_configs_ = config; return true; } void TrafficDecider::BuildPlanningTarget( ReferenceLineInfo *reference_line_info) { double min_s = std::numeric_limits<double>::infinity(); StopPoint stop_point; for (const auto *obstacle : reference_line_info->path_decision()->obstacles().Items()) { if (obstacle->IsVirtual() && obstacle->HasLongitudinalDecision() && obstacle->LongitudinalDecision().has_stop() && obstacle->PerceptionSLBoundary().start_s() < min_s) { min_s = obstacle->PerceptionSLBoundary().start_s(); const auto &stop_code = obstacle->LongitudinalDecision().stop().reason_code(); if (stop_code == StopReasonCode::STOP_REASON_DESTINATION || stop_code == StopReasonCode::STOP_REASON_CROSSWALK || stop_code == StopReasonCode::STOP_REASON_STOP_SIGN || stop_code == StopReasonCode::STOP_REASON_YIELD_SIGN || stop_code == StopReasonCode::STOP_REASON_CREEPER || stop_code == StopReasonCode::STOP_REASON_REFERENCE_END || stop_code == StopReasonCode::STOP_REASON_SIGNAL) { stop_point.set_type(StopPoint::HARD); ADEBUG << "Hard stop at: " << min_s << "REASON: " << StopReasonCode_Name(stop_code); } else if (stop_code == StopReasonCode::STOP_REASON_YELLOW_SIGNAL) { stop_point.set_type(StopPoint::SOFT); ADEBUG << "Soft stop at: " << min_s << " STOP_REASON_YELLOW_SIGNAL"; } else { ADEBUG << "No planning target found at reference line."; } } } if (min_s != std::numeric_limits<double>::infinity()) { const auto &vehicle_config = common::VehicleConfigHelper::Instance()->GetConfig(); double front_edge_to_center = vehicle_config.vehicle_param().front_edge_to_center(); stop_point.set_s(min_s - front_edge_to_center + FLAGS_virtual_stop_wall_length / 2.0); reference_line_info->SetLatticeStopPoint(stop_point); } } Status TrafficDecider::Execute( Frame *frame, ReferenceLineInfo *reference_line_info, const std::shared_ptr<DependencyInjector> &injector) { CHECK_NOTNULL(frame); CHECK_NOTNULL(reference_line_info); for (const auto &rule_config : rule_configs_.config()) { if (!rule_config.enabled()) { ADEBUG << "Rule " << rule_config.rule_id() << " not enabled"; continue; } auto rule = s_rule_factory.CreateObject(rule_config.rule_id(), rule_config, injector); if (!rule) { AERROR << "Could not find rule " << rule_config.DebugString(); continue; } rule->ApplyRule(frame, reference_line_info); ADEBUG << "Applied rule " << TrafficRuleConfig::RuleId_Name(rule_config.rule_id()); } BuildPlanningTarget(reference_line_info); return Status::OK(); } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/traffic_decider.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 <memory> #include "modules/common_msgs/basic_msgs/pnc_point.pb.h" #include "modules/common/status/status.h" #include "modules/common/util/factory.h" #include "modules/planning/proto/traffic_rule_config.pb.h" #include "modules/planning/reference_line/reference_line.h" #include "modules/planning/traffic_rules/traffic_rule.h" namespace apollo { namespace planning { /** * @class TrafficDecider * @brief Create traffic related decision in this class. * The created obstacles is added to obstacles_, and the decision is added to * obstacles_ * Traffic obstacle examples include: * * Traffic Light * * End of routing * * Select the drivable reference line. */ class TrafficDecider { public: TrafficDecider() = default; bool Init(const TrafficRuleConfigs &config); virtual ~TrafficDecider() = default; apollo::common::Status Execute( Frame *frame, ReferenceLineInfo *reference_line_info, const std::shared_ptr<DependencyInjector> &injector); private: static apollo::common::util::Factory< TrafficRuleConfig::RuleId, TrafficRule, TrafficRule *(*)(const TrafficRuleConfig &config, const std::shared_ptr<DependencyInjector> &injector)> s_rule_factory; void RegisterRules(); void BuildPlanningTarget(ReferenceLineInfo *reference_line_info); TrafficRuleConfigs rule_configs_; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/traffic_light.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. *****************************************************************************/ /** * @file **/ #pragma once #include <memory> #include "modules/planning/traffic_rules/traffic_rule.h" namespace apollo { namespace planning { class TrafficLight : public TrafficRule { public: TrafficLight(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector); virtual ~TrafficLight() = default; common::Status ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info); private: void MakeDecisions(Frame* const frame, ReferenceLineInfo* const reference_line_info); private: static constexpr char const* TRAFFIC_LIGHT_VO_ID_PREFIX = "TL_"; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/keep_clear.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/planning/traffic_rules/keep_clear.h" #include <memory> #include <vector> #include "modules/common_msgs/basic_msgs/pnc_point.pb.h" #include "modules/map/hdmap/hdmap_common.h" #include "modules/planning/common/planning_context.h" #include "modules/planning/proto/planning_config.pb.h" #include "modules/planning/proto/planning_status.pb.h" namespace apollo { namespace planning { using apollo::common::Status; using apollo::hdmap::PathOverlap; KeepClear::KeepClear(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector) : TrafficRule(config, injector) {} Status KeepClear::ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info) { CHECK_NOTNULL(frame); CHECK_NOTNULL(reference_line_info); // keep_clear zone if (config_.keep_clear().enable_keep_clear_zone()) { const std::vector<PathOverlap>& keep_clear_overlaps = reference_line_info->reference_line().map_path().clear_area_overlaps(); for (const auto& keep_clear_overlap : keep_clear_overlaps) { const auto obstacle_id = KEEP_CLEAR_VO_ID_PREFIX + keep_clear_overlap.object_id; if (BuildKeepClearObstacle(frame, reference_line_info, obstacle_id, keep_clear_overlap.start_s, keep_clear_overlap.end_s)) { ADEBUG << "KEEP_CLAER for keep_clear_zone[" << keep_clear_overlap.object_id << "] s[" << keep_clear_overlap.start_s << ", " << keep_clear_overlap.end_s << "] BUILD"; } } } // junction if (config_.keep_clear().enable_junction()) { hdmap::PathOverlap* crosswalk_overlap = nullptr; hdmap::PathOverlap* stop_sign_overlap = nullptr; hdmap::PathOverlap* traffic_light_overlap = nullptr; hdmap::PathOverlap* pnc_junction_overlap = nullptr; const auto& first_encountered_overlaps = reference_line_info->FirstEncounteredOverlaps(); for (const auto& overlap : first_encountered_overlaps) { ADEBUG << overlap.first << ", " << overlap.second.DebugString(); switch (overlap.first) { case ReferenceLineInfo::CROSSWALK: ADEBUG << "CROSSWALK[" << overlap.second.object_id << "] s[" << overlap.second.start_s << ", " << overlap.second.end_s << "]"; crosswalk_overlap = const_cast<PathOverlap*>(&overlap.second); break; case ReferenceLineInfo::STOP_SIGN: ADEBUG << "STOP_SIGN[" << overlap.second.object_id << "] s[" << overlap.second.start_s << ", " << overlap.second.end_s << "]"; stop_sign_overlap = const_cast<PathOverlap*>(&overlap.second); break; case ReferenceLineInfo::SIGNAL: ADEBUG << "SIGNAL[" << overlap.second.object_id << "] s[" << overlap.second.start_s << ", " << overlap.second.end_s << "]"; traffic_light_overlap = const_cast<PathOverlap*>(&overlap.second); break; case ReferenceLineInfo::PNC_JUNCTION: ADEBUG << "PNC_JUNCTION[" << overlap.second.object_id << "] s[" << overlap.second.start_s << ", " << overlap.second.end_s << "]"; pnc_junction_overlap = const_cast<PathOverlap*>(&overlap.second); break; default: break; } } if (pnc_junction_overlap != nullptr) { const double adc_front_edge_s = reference_line_info->AdcSlBoundary().end_s(); if (!IsCreeping(pnc_junction_overlap->start_s, adc_front_edge_s)) { // adjust pnc_junction start_s to align with // the start_s of other "stop type" overlaps double pnc_junction_start_s = pnc_junction_overlap->start_s; // traffic_light, stop_sign, and then crosswalk if neither if (traffic_light_overlap != nullptr && std::fabs(pnc_junction_start_s - traffic_light_overlap->start_s) <= config_.keep_clear().align_with_traffic_sign_tolerance()) { ADEBUG << "adjust pnc_junction_start_s[" << pnc_junction_start_s << "] to traffic_light_start_s" << traffic_light_overlap->start_s << "]"; pnc_junction_start_s = traffic_light_overlap->start_s; } else if (stop_sign_overlap != nullptr && std::fabs(pnc_junction_start_s - stop_sign_overlap->start_s) <= config_.keep_clear() .align_with_traffic_sign_tolerance()) { ADEBUG << "adjust pnc_junction_start_s[" << pnc_junction_start_s << "] to stop_sign_start_s" << stop_sign_overlap->start_s << "]"; pnc_junction_start_s = stop_sign_overlap->start_s; } else if (crosswalk_overlap != nullptr && std::fabs(pnc_junction_start_s - crosswalk_overlap->start_s) <= config_.keep_clear() .align_with_traffic_sign_tolerance()) { ADEBUG << "adjust pnc_junction_start_s[" << pnc_junction_start_s << "] to cross_walk_start_s" << crosswalk_overlap->start_s << "]"; pnc_junction_start_s = crosswalk_overlap->start_s; } const auto obstacle_id = KEEP_CLEAR_JUNCTION_VO_ID_PREFIX + pnc_junction_overlap->object_id; if (BuildKeepClearObstacle(frame, reference_line_info, obstacle_id, pnc_junction_start_s, pnc_junction_overlap->end_s)) { ADEBUG << "KEEP_CLAER for junction[" << pnc_junction_overlap->object_id << "] s[" << pnc_junction_start_s << ", " << pnc_junction_overlap->end_s << "] BUILD"; } } } } return Status::OK(); } bool KeepClear::IsCreeping(const double pnc_junction_start_s, const double adc_front_edge_s) const { // check if in scenario creep stage // while creeping, no need create keep clear obstacle const auto& stage_type = injector_->planning_context()->planning_status().scenario().stage_type(); if (stage_type != StageType::STOP_SIGN_UNPROTECTED_CREEP && stage_type != StageType::TRAFFIC_LIGHT_UNPROTECTED_RIGHT_TURN_CREEP && stage_type != StageType::TRAFFIC_LIGHT_UNPROTECTED_LEFT_TURN_CREEP) { return false; } // check distance static constexpr double kDistance = 5.0; return (fabs(adc_front_edge_s - pnc_junction_start_s) <= kDistance); } bool KeepClear::BuildKeepClearObstacle( Frame* const frame, ReferenceLineInfo* const reference_line_info, const std::string& virtual_obstacle_id, const double keep_clear_start_s, const double keep_clear_end_s) { CHECK_NOTNULL(frame); CHECK_NOTNULL(reference_line_info); // check const double adc_front_edge_s = reference_line_info->AdcSlBoundary().end_s(); if (adc_front_edge_s - keep_clear_start_s > config_.keep_clear().min_pass_s_distance()) { ADEBUG << "adc inside keep_clear zone[" << virtual_obstacle_id << "] s[" << keep_clear_start_s << ", " << keep_clear_end_s << "] adc_front_edge_s[" << adc_front_edge_s << "]. skip this keep clear zone"; return false; } ADEBUG << "keep clear obstacle: [" << keep_clear_start_s << ", " << keep_clear_end_s << "]"; // create virtual static obstacle auto* obstacle = frame->CreateStaticObstacle(reference_line_info, virtual_obstacle_id, keep_clear_start_s, keep_clear_end_s); if (!obstacle) { AERROR << "Failed to create obstacle [" << virtual_obstacle_id << "]"; return false; } auto* path_obstacle = reference_line_info->AddObstacle(obstacle); if (!path_obstacle) { AERROR << "Failed to create path_obstacle: " << virtual_obstacle_id; return false; } path_obstacle->SetReferenceLineStBoundaryType( STBoundary::BoundaryType::KEEP_CLEAR); return true; } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/crosswalk.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 <memory> #include <string> #include <vector> #include "modules/planning/common/planning_context.h" #include "modules/planning/traffic_rules/traffic_rule.h" namespace apollo { namespace planning { class Crosswalk : public TrafficRule { public: Crosswalk(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector); virtual ~Crosswalk() = default; common::Status ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info); private: void MakeDecisions(Frame* const frame, ReferenceLineInfo* const reference_line_info); bool FindCrosswalks(ReferenceLineInfo* const reference_line_info); bool CheckStopForObstacle(ReferenceLineInfo* const reference_line_info, const hdmap::CrosswalkInfoConstPtr crosswalk_ptr, const Obstacle& obstacle, const double stop_deceleration); private: static constexpr char const* CROSSWALK_VO_ID_PREFIX = "CW_"; std::vector<const hdmap::PathOverlap*> crosswalk_overlaps_; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/backside_vehicle.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/planning/traffic_rules/traffic_rule.h" namespace apollo { namespace planning { class BacksideVehicle : public TrafficRule { public: explicit BacksideVehicle(const TrafficRuleConfig& config); virtual ~BacksideVehicle() = default; common::Status ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info); private: /** * @brief When the reference line info indicates that there is no lane change, * use lane keeping strategy for back side vehicles. */ void MakeLaneKeepingObstacleDecision(const SLBoundary& adc_sl_boundary, PathDecision* path_decision); }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/yield_sign.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/planning/traffic_rules/yield_sign.h" #include <memory> #include "modules/map/pnc_map/path.h" #include "modules/planning/common/frame.h" #include "modules/planning/common/planning_context.h" #include "modules/planning/common/util/common.h" namespace apollo { namespace planning { using apollo::common::Status; using apollo::hdmap::PathOverlap; YieldSign::YieldSign(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector) : TrafficRule(config, injector) {} Status YieldSign::ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info) { MakeDecisions(frame, reference_line_info); return Status::OK(); } void YieldSign::MakeDecisions(Frame* const frame, ReferenceLineInfo* const reference_line_info) { CHECK_NOTNULL(frame); CHECK_NOTNULL(reference_line_info); if (!config_.yield_sign().enabled()) { return; } const auto& yield_sign_status = injector_->planning_context()->planning_status().yield_sign(); const double adc_front_edge_s = reference_line_info->AdcSlBoundary().end_s(); const std::vector<PathOverlap>& yield_sign_overlaps = reference_line_info->reference_line().map_path().yield_sign_overlaps(); for (const auto& yield_sign_overlap : yield_sign_overlaps) { if (yield_sign_overlap.end_s <= adc_front_edge_s) { continue; } // check if yield-sign-stop already finished, set by scenario/stage bool yield_sign_done = false; for (const auto& done_yield_sign_overlap_id : yield_sign_status.done_yield_sign_overlap_id()) { if (yield_sign_overlap.object_id == done_yield_sign_overlap_id) { yield_sign_done = true; break; } } if (yield_sign_done) { continue; } // build stop decision ADEBUG << "BuildStopDecision: yield_sign[" << yield_sign_overlap.object_id << "] start_s[" << yield_sign_overlap.start_s << "]"; const std::string virtual_obstacle_id = YIELD_SIGN_VO_ID_PREFIX + yield_sign_overlap.object_id; const std::vector<std::string> wait_for_obstacle_ids( yield_sign_status.wait_for_obstacle_id().begin(), yield_sign_status.wait_for_obstacle_id().end()); util::BuildStopDecision(virtual_obstacle_id, yield_sign_overlap.start_s, config_.yield_sign().stop_distance(), StopReasonCode::STOP_REASON_YIELD_SIGN, wait_for_obstacle_ids, TrafficRuleConfig::RuleId_Name(config_.rule_id()), frame, reference_line_info); } } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/traffic_rule.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 <memory> #include "modules/planning/common/dependency_injector.h" #include "modules/planning/common/frame.h" #include "modules/planning/common/reference_line_info.h" #include "modules/planning/proto/traffic_rule_config.pb.h" namespace apollo { namespace planning { class TrafficRule { public: explicit TrafficRule(const TrafficRuleConfig& config) : config_(config) {} TrafficRule(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector) : config_(config), injector_(injector) {} virtual ~TrafficRule() = default; virtual TrafficRuleConfig::RuleId Id() const { return config_.rule_id(); } const TrafficRuleConfig& GetConfig() const { return config_; } virtual common::Status ApplyRule( Frame* const frame, ReferenceLineInfo* const reference_line_info) = 0; protected: TrafficRuleConfig config_; std::shared_ptr<DependencyInjector> injector_; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/stop_sign.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/planning/traffic_rules/stop_sign.h" #include <memory> #include "modules/map/pnc_map/path.h" #include "modules/planning/common/frame.h" #include "modules/planning/common/planning_context.h" #include "modules/planning/common/util/common.h" namespace apollo { namespace planning { using apollo::common::Status; using apollo::hdmap::PathOverlap; StopSign::StopSign(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector) : TrafficRule(config, injector) {} Status StopSign::ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info) { MakeDecisions(frame, reference_line_info); return Status::OK(); } void StopSign::MakeDecisions(Frame* const frame, ReferenceLineInfo* const reference_line_info) { CHECK_NOTNULL(frame); CHECK_NOTNULL(reference_line_info); if (!config_.stop_sign().enabled()) { return; } const auto& stop_sign_status = injector_->planning_context()->planning_status().stop_sign(); const double adc_back_edge_s = reference_line_info->AdcSlBoundary().start_s(); const std::vector<PathOverlap>& stop_sign_overlaps = reference_line_info->reference_line().map_path().stop_sign_overlaps(); for (const auto& stop_sign_overlap : stop_sign_overlaps) { if (stop_sign_overlap.end_s <= adc_back_edge_s) { continue; } if (stop_sign_overlap.object_id == stop_sign_status.done_stop_sign_overlap_id()) { continue; } // build stop decision ADEBUG << "BuildStopDecision: stop_sign[" << stop_sign_overlap.object_id << "] start_s[" << stop_sign_overlap.start_s << "]"; const std::string virtual_obstacle_id = STOP_SIGN_VO_ID_PREFIX + stop_sign_overlap.object_id; const std::vector<std::string> wait_for_obstacle_ids( stop_sign_status.wait_for_obstacle_id().begin(), stop_sign_status.wait_for_obstacle_id().end()); util::BuildStopDecision(virtual_obstacle_id, stop_sign_overlap.start_s, config_.stop_sign().stop_distance(), StopReasonCode::STOP_REASON_STOP_SIGN, wait_for_obstacle_ids, TrafficRuleConfig::RuleId_Name(config_.rule_id()), frame, reference_line_info); } } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/reference_line_end.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 <memory> #include <string> #include "modules/planning/traffic_rules/traffic_rule.h" namespace apollo { namespace planning { /** * This class decides whether we should send rerouting request based on traffic * situation. */ class ReferenceLineEnd : public TrafficRule { public: ReferenceLineEnd(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector); virtual ~ReferenceLineEnd() = default; common::Status ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info); private: static constexpr char const* REF_LINE_END_VO_ID_PREFIX = "REF_END_"; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/destination.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 <memory> #include <string> #include "modules/common_msgs/basic_msgs/geometry.pb.h" #include "modules/planning/traffic_rules/traffic_rule.h" namespace apollo { namespace planning { /** * This class decides whether we should stop for destination. * situation. */ class Destination : public TrafficRule { public: Destination(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector); virtual ~Destination() = default; common::Status ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info); private: int MakeDecisions(Frame* const frame, ReferenceLineInfo* const reference_line_info); }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/yield_sign.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. *****************************************************************************/ /** * @file **/ #pragma once #include <memory> #include <string> #include <vector> #include "modules/planning/common/planning_context.h" #include "modules/planning/traffic_rules/traffic_rule.h" namespace apollo { namespace planning { class YieldSign : public TrafficRule { public: YieldSign(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector); virtual ~YieldSign() = default; common::Status ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info); private: void MakeDecisions(Frame* const frame, ReferenceLineInfo* const reference_line_info); private: static constexpr char const* YIELD_SIGN_VO_ID_PREFIX = "YS_"; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/keep_clear.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 <memory> #include <string> #include "modules/planning/traffic_rules/traffic_rule.h" namespace apollo { namespace planning { /** * This class creates a virtual obstacle for each clear area region. */ class KeepClear : public TrafficRule { public: KeepClear(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector); virtual ~KeepClear() = default; common::Status ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info); private: bool IsCreeping(const double pnc_junction_start_s, const double adc_front_edge_s) const; bool BuildKeepClearObstacle(Frame* const frame, ReferenceLineInfo* const reference_line_info, const std::string& virtual_obstacle_id, const double keep_clear_start_s, const double keep_clear_end_s); private: static constexpr char const* KEEP_CLEAR_VO_ID_PREFIX = "KC_"; static constexpr char const* KEEP_CLEAR_JUNCTION_VO_ID_PREFIX = "KC_JC_"; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/BUILD
load("@rules_cc//cc:defs.bzl", "cc_library") load("//tools:cpplint.bzl", "cpplint") package(default_visibility = ["//visibility:public"]) PLANNING_COPTS = ["-DMODULE_NAME=\\\"planning\\\""] cc_library( name = "traffic_rules", srcs = [ # TODO(all): Split to separate targets to gain better building cache. "backside_vehicle.cc", "crosswalk.cc", "destination.cc", "keep_clear.cc", "reference_line_end.cc", "rerouting.cc", "stop_sign.cc", "traffic_light.cc", "yield_sign.cc", ], hdrs = [ "backside_vehicle.h", "crosswalk.h", "destination.h", "keep_clear.h", "reference_line_end.h", "rerouting.h", "stop_sign.h", "traffic_light.h", "traffic_rule.h", "yield_sign.h", ], copts = PLANNING_COPTS, deps = [ "//modules/common/util:util_tool", "//modules/common_msgs/perception_msgs:perception_obstacle_cc_proto", "//modules/planning/common:dependency_injector", "//modules/planning/common:frame", "//modules/planning/common:planning_context", "//modules/planning/common:planning_gflags", "//modules/planning/common:reference_line_info", "//modules/planning/common/util:common_lib", "//modules/common_msgs/planning_msgs:planning_cc_proto", "//modules/planning/proto:planning_config_cc_proto", "//modules/planning/proto:traffic_rule_config_cc_proto", ], ) cc_library( name = "traffic_decider", srcs = ["traffic_decider.cc"], hdrs = ["traffic_decider.h"], copts = PLANNING_COPTS, deps = [ ":traffic_rules", "//modules/common_msgs/basic_msgs:pnc_point_cc_proto", "//modules/common/configs:vehicle_config_helper", "//modules/common/status", "//modules/common/util:util_tool", "//modules/planning/common:planning_gflags", "//modules/planning/proto:traffic_rule_config_cc_proto", "//modules/planning/reference_line", ], ) cpplint()
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/traffic_light.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. *****************************************************************************/ /** * @file **/ #include "modules/planning/traffic_rules/traffic_light.h" #include <memory> #include <string> #include <vector> #include "modules/common/util/util.h" #include "modules/common/vehicle_state/vehicle_state_provider.h" #include "modules/map/pnc_map/path.h" #include "modules/planning/common/frame.h" #include "modules/planning/common/planning_context.h" #include "modules/planning/common/util/common.h" #include "modules/planning/common/util/util.h" #include "modules/common_msgs/planning_msgs/planning_internal.pb.h" namespace apollo { namespace planning { using apollo::common::Status; using apollo::hdmap::PathOverlap; TrafficLight::TrafficLight(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector) : TrafficRule(config, injector) {} Status TrafficLight::ApplyRule(Frame* const frame, ReferenceLineInfo* const reference_line_info) { MakeDecisions(frame, reference_line_info); return Status::OK(); } void TrafficLight::MakeDecisions(Frame* const frame, ReferenceLineInfo* const reference_line_info) { CHECK_NOTNULL(frame); CHECK_NOTNULL(reference_line_info); if (!config_.traffic_light().enabled()) { return; } const auto& traffic_light_status = injector_->planning_context()->planning_status().traffic_light(); const double adc_front_edge_s = reference_line_info->AdcSlBoundary().end_s(); const double adc_back_edge_s = reference_line_info->AdcSlBoundary().start_s(); // debug info planning_internal::SignalLightDebug* signal_light_debug = reference_line_info->mutable_debug() ->mutable_planning_data() ->mutable_signal_light(); signal_light_debug->set_adc_front_s(adc_front_edge_s); signal_light_debug->set_adc_speed( injector_->vehicle_state()->linear_velocity()); const std::vector<PathOverlap>& traffic_light_overlaps = reference_line_info->reference_line().map_path().signal_overlaps(); for (const auto& traffic_light_overlap : traffic_light_overlaps) { if (traffic_light_overlap.end_s <= adc_back_edge_s) { continue; } // check if traffic-light-stop already finished, set by scenario/stage bool traffic_light_done = false; for (const auto& done_traffic_light_overlap_id : traffic_light_status.done_traffic_light_overlap_id()) { if (traffic_light_overlap.object_id == done_traffic_light_overlap_id) { traffic_light_done = true; break; } } if (traffic_light_done) { continue; } // work around incorrect s-projection along round routing static constexpr double kSDiscrepanceTolerance = 10.0; const auto& reference_line = reference_line_info->reference_line(); common::SLPoint traffic_light_sl; traffic_light_sl.set_s(traffic_light_overlap.start_s); traffic_light_sl.set_l(0); common::math::Vec2d traffic_light_point; reference_line.SLToXY(traffic_light_sl, &traffic_light_point); common::math::Vec2d adc_position = {injector_->vehicle_state()->x(), injector_->vehicle_state()->y()}; const double distance = common::util::DistanceXY(traffic_light_point, adc_position); const double s_distance = traffic_light_overlap.start_s - adc_front_edge_s; ADEBUG << "traffic_light[" << traffic_light_overlap.object_id << "] start_s[" << traffic_light_overlap.start_s << "] s_distance[" << s_distance << "] actual_distance[" << distance << "]"; if (s_distance >= 0 && fabs(s_distance - distance) > kSDiscrepanceTolerance) { ADEBUG << "SKIP traffic_light[" << traffic_light_overlap.object_id << "] close in position, but far away along reference line"; continue; } auto signal_color = frame->GetSignal(traffic_light_overlap.object_id).color(); const double stop_deceleration = util::GetADCStopDeceleration( injector_->vehicle_state(), adc_front_edge_s, traffic_light_overlap.start_s); ADEBUG << "traffic_light_id[" << traffic_light_overlap.object_id << "] start_s[" << traffic_light_overlap.start_s << "] color[" << signal_color << "] stop_deceleration[" << stop_deceleration << "]"; // debug info planning_internal::SignalLightDebug::SignalDebug* signal_debug = signal_light_debug->add_signal(); signal_debug->set_adc_stop_deceleration(stop_deceleration); signal_debug->set_color(signal_color); signal_debug->set_light_id(traffic_light_overlap.object_id); signal_debug->set_light_stop_s(traffic_light_overlap.start_s); if (signal_color == perception::TrafficLight::GREEN) { continue; } // Red/Yellow/Unknown: check deceleration if (stop_deceleration > config_.traffic_light().max_stop_deceleration()) { AWARN << "stop_deceleration too big to achieve. SKIP red light"; continue; } // build stop decision ADEBUG << "BuildStopDecision: traffic_light[" << traffic_light_overlap.object_id << "] start_s[" << traffic_light_overlap.start_s << "]"; std::string virtual_obstacle_id = TRAFFIC_LIGHT_VO_ID_PREFIX + traffic_light_overlap.object_id; const std::vector<std::string> wait_for_obstacles; util::BuildStopDecision(virtual_obstacle_id, traffic_light_overlap.start_s, config_.traffic_light().stop_distance(), StopReasonCode::STOP_REASON_SIGNAL, wait_for_obstacles, TrafficRuleConfig::RuleId_Name(config_.rule_id()), frame, reference_line_info); } } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/backside_vehicle.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/planning/traffic_rules/backside_vehicle.h" namespace apollo { namespace planning { using apollo::common::Status; BacksideVehicle::BacksideVehicle(const TrafficRuleConfig& config) : TrafficRule(config) {} void BacksideVehicle::MakeLaneKeepingObstacleDecision( const SLBoundary& adc_sl_boundary, PathDecision* path_decision) { ObjectDecisionType ignore; ignore.mutable_ignore(); const double adc_length_s = adc_sl_boundary.end_s() - adc_sl_boundary.start_s(); for (const auto* obstacle : path_decision->obstacles().Items()) { if (obstacle->PerceptionSLBoundary().end_s() >= adc_sl_boundary.end_s() || obstacle->IsCautionLevelObstacle()) { // don't ignore such vehicles. continue; } if (obstacle->reference_line_st_boundary().IsEmpty()) { path_decision->AddLongitudinalDecision("backside_vehicle/no-st-region", obstacle->Id(), ignore); path_decision->AddLateralDecision("backside_vehicle/no-st-region", obstacle->Id(), ignore); continue; } // Ignore the car comes from back of ADC if (obstacle->reference_line_st_boundary().min_s() < -adc_length_s) { path_decision->AddLongitudinalDecision("backside_vehicle/st-min-s < adc", obstacle->Id(), ignore); path_decision->AddLateralDecision("backside_vehicle/st-min-s < adc", obstacle->Id(), ignore); continue; } const double lane_boundary = config_.backside_vehicle().backside_lane_width(); if (obstacle->PerceptionSLBoundary().start_s() < adc_sl_boundary.end_s()) { if (obstacle->PerceptionSLBoundary().start_l() > lane_boundary || obstacle->PerceptionSLBoundary().end_l() < -lane_boundary) { continue; } path_decision->AddLongitudinalDecision("backside_vehicle/sl < adc.end_s", obstacle->Id(), ignore); path_decision->AddLateralDecision("backside_vehicle/sl < adc.end_s", obstacle->Id(), ignore); continue; } } } Status BacksideVehicle::ApplyRule( Frame* const, ReferenceLineInfo* const reference_line_info) { auto* path_decision = reference_line_info->path_decision(); const auto& adc_sl_boundary = reference_line_info->AdcSlBoundary(); // The lane keeping reference line. if (reference_line_info->Lanes().IsOnSegment()) { MakeLaneKeepingObstacleDecision(adc_sl_boundary, path_decision); } return Status::OK(); } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/traffic_rules/destination.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/planning/traffic_rules/destination.h" #include <memory> #include <vector> #include "modules/common_msgs/map_msgs/map_lane.pb.h" #include "modules/planning/common/planning_context.h" #include "modules/planning/common/planning_gflags.h" #include "modules/planning/common/util/common.h" namespace apollo { namespace planning { using apollo::common::Status; using apollo::common::VehicleConfigHelper; Destination::Destination(const TrafficRuleConfig& config, const std::shared_ptr<DependencyInjector>& injector) : TrafficRule(config, injector) {} Status Destination::ApplyRule(Frame* frame, ReferenceLineInfo* const reference_line_info) { CHECK_NOTNULL(frame); CHECK_NOTNULL(reference_line_info); MakeDecisions(frame, reference_line_info); return Status::OK(); } /** * @brief: build stop decision */ int Destination::MakeDecisions(Frame* frame, ReferenceLineInfo* const reference_line_info) { CHECK_NOTNULL(frame); CHECK_NOTNULL(reference_line_info); if (!frame->is_near_destination()) { return 0; } const auto& routing = frame->local_view().routing; if (routing->routing_request().waypoint_size() < 2) { AERROR << "routing_request has no end"; return -1; } common::SLPoint dest_sl; const auto& reference_line = reference_line_info->reference_line(); const auto& routing_end = *(routing->routing_request().waypoint().rbegin()); reference_line.XYToSL(routing_end.pose(), &dest_sl); const auto& adc_sl = reference_line_info->AdcSlBoundary(); const auto& dest = injector_->planning_context()->mutable_planning_status()->destination(); if (adc_sl.start_s() > dest_sl.s() && !dest.has_passed_destination()) { ADEBUG << "Destination at back, but we have not reached destination yet"; return 0; } const std::string stop_wall_id = FLAGS_destination_obstacle_id; const std::vector<std::string> wait_for_obstacle_ids; if (FLAGS_enable_scenario_pull_over) { const auto& pull_over_status = injector_->planning_context()->planning_status().pull_over(); if (pull_over_status.has_position() && pull_over_status.position().has_x() && pull_over_status.position().has_y()) { // build stop decision based on pull-over position ADEBUG << "BuildStopDecision: pull-over position"; common::SLPoint pull_over_sl; reference_line.XYToSL(pull_over_status.position(), &pull_over_sl); const double stop_line_s = pull_over_sl.s() + VehicleConfigHelper::GetConfig() .vehicle_param() .front_edge_to_center() + config_.destination().stop_distance(); util::BuildStopDecision( stop_wall_id, stop_line_s, config_.destination().stop_distance(), StopReasonCode::STOP_REASON_PULL_OVER, wait_for_obstacle_ids, TrafficRuleConfig::RuleId_Name(config_.rule_id()), frame, reference_line_info); return 0; } } // build stop decision ADEBUG << "BuildStopDecision: destination"; const double dest_lane_s = std::fmax(0.0, routing_end.s() - FLAGS_virtual_stop_wall_length - config_.destination().stop_distance()); util::BuildStopDecision(stop_wall_id, routing_end.id(), dest_lane_s, config_.destination().stop_distance(), StopReasonCode::STOP_REASON_DESTINATION, wait_for_obstacle_ids, TrafficRuleConfig::RuleId_Name(config_.rule_id()), frame, reference_line_info); return 0; } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/reference_line/spiral_problem_interface.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. *****************************************************************************/ /* * spiral_problem_interface.h */ #pragma once /* Workaround for coin/IpSmartPtr.hpp:18:4: error: #error "don't have header * file for stddef" */ #include <cstddef> #include <vector> #include <coin/IpTNLP.hpp> #include <coin/IpTypes.hpp> #include "Eigen/Dense" #include "modules/planning/math/curve1d/quintic_spiral_path_with_derivation.h" namespace apollo { namespace planning { class SpiralProblemInterface : public Ipopt::TNLP { public: explicit SpiralProblemInterface(std::vector<Eigen::Vector2d> points); virtual ~SpiralProblemInterface() = default; void set_default_max_point_deviation(const double point_max_deviation); void set_start_point(const double x, const double y, const double theta, const double kappa, const double dkappa); void set_end_point(const double x, const double y, const double theta, const double kappa, const double dkappa); void set_end_point_position(const double x, const double y); void set_element_weight_curve_length(const double weight_curve_length); void set_element_weight_kappa(const double weight_kappa); void set_element_weight_dkappa(const double weight_dkappa); void get_optimization_results(std::vector<double>* ptr_theta, std::vector<double>* ptr_kappa, std::vector<double>* ptr_dkappa, std::vector<double>* ptr_s, std::vector<double>* ptr_x, std::vector<double>* ptr_y) const; /** Method to return some info about the nlp */ bool get_nlp_info(int& n, int& m, int& nnz_jac_g, int& nnz_h_lag, IndexStyleEnum& index_style) override; /** Method to return the bounds for my problem */ bool get_bounds_info(int n, double* x_l, double* x_u, int m, double* g_l, double* g_u) override; /** Method to return the starting point for the algorithm */ bool get_starting_point(int n, bool init_x, double* x, bool init_z, double* z_L, double* z_U, int m, bool init_lambda, double* lambda) override; /** Method to return the objective value */ bool eval_f(int n, const double* x, bool new_x, double& obj_value) override; /** Method to return the gradient of the objective */ bool eval_grad_f(int n, const double* x, bool new_x, double* grad_f) override; /** Method to return the constraint residuals */ bool eval_g(int n, const double* x, bool new_x, int m, double* g) override; /** Method to return: * 1) The structure of the jacobian (if "values" is nullptr) * 2) The values of the jacobian (if "values" is not nullptr) */ bool eval_jac_g(int n, const double* x, bool new_x, int m, int nele_jac, int* iRow, int* jCol, double* values) override; /** Method to return: * 1) The structure of the hessian of the lagrangian (if "values" is * nullptr) 2) The values of the hessian of the lagrangian (if "values" is not * nullptr) */ bool eval_h(int n, const double* x, bool new_x, double obj_factor, int m, const double* lambda, bool new_lambda, int nele_hess, int* iRow, int* jCol, double* values) override; /** @name Solution Methods */ /** This method is called when the algorithm is complete so the TNLP can * store/write the solution */ void finalize_solution(Ipopt::SolverReturn status, int n, const double* x, const double* z_L, const double* z_U, int m, const double* g, const double* lambda, double obj_value, const Ipopt::IpoptData* ip_data, Ipopt::IpoptCalculatedQuantities* ip_cq) override; public: static constexpr size_t N = 10; private: void update_piecewise_spiral_paths(const double* x, const int n); std::vector<Eigen::Vector2d> init_points_; std::vector<double> opt_theta_; std::vector<double> opt_kappa_; std::vector<double> opt_dkappa_; std::vector<double> opt_s_; std::vector<double> opt_x_; std::vector<double> opt_y_; std::vector<double> point_distances_; int num_of_variables_ = 0; int num_of_constraints_ = 0; int num_of_points_ = 0; double default_max_point_deviation_ = 0.0; const int num_of_internal_points_ = 5; std::vector<double> relative_theta_; std::vector<QuinticSpiralPathWithDerivation<N>> piecewise_paths_; bool has_fixed_start_point_ = false; double start_x_ = 0.0; double start_y_ = 0.0; double start_theta_ = 0.0; double start_kappa_ = 0.0; double start_dkappa_ = 0.0; bool has_fixed_end_point_ = false; double end_x_ = 0.0; double end_y_ = 0.0; double end_theta_ = 0.0; double end_kappa_ = 0.0; double end_dkappa_ = 0.0; bool has_fixed_end_point_position_ = false; double weight_curve_length_ = 1.0; double weight_kappa_ = 1.0; double weight_dkappa_ = 1.0; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/reference_line/smoother_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 "cyber/common/file.h" #include "cyber/common/log.h" #include "gflags/gflags.h" #include "modules/common/math/vec2d.h" #include "modules/common/util/future.h" #include "modules/common/util/util.h" #include "modules/map/pnc_map/path.h" #include "modules/planning/common/planning_gflags.h" #include "modules/planning/reference_line/qp_spline_reference_line_smoother.h" #include "modules/planning/reference_line/reference_line.h" #include "modules/planning/reference_line/reference_line_smoother.h" DEFINE_string(input_file, "", "input file with format x,y per line"); DEFINE_string(output_file, "", "output file with format x,y per line"); DEFINE_double(smooth_length, 200, "Smooth this amount of length "); namespace apollo { namespace planning { using apollo::common::math::LineSegment2d; using apollo::common::math::Vec2d; using apollo::common::util::DistanceXY; using apollo::hdmap::MapPathPoint; class SmootherUtil { public: explicit SmootherUtil(const std::string& filename) : filename_(filename) { std::ifstream ifs(filename.c_str(), std::ifstream::in); std::string point_str; while (std::getline(ifs, point_str)) { size_t idx = point_str.find(','); if (idx == std::string::npos) { continue; } auto x_str = point_str.substr(0, idx); auto y_str = point_str.substr(idx + 1); raw_points_.emplace_back(std::stod(x_str), std::stod(y_str)); } ACHECK(cyber::common::GetProtoFromFile(FLAGS_smoother_config_filename, &config_)) << "Failed to read smoother config file: " << FLAGS_smoother_config_filename; } bool Smooth() { if (raw_points_.size() <= 2) { AERROR << "the original point size is " << raw_points_.size(); return false; } size_t i = 1; { std::vector<ReferencePoint> ref_points; double s = 0.0; for (; s < FLAGS_smooth_length && i < raw_points_.size(); ++i) { LineSegment2d segment(raw_points_[i - 1], raw_points_[i]); ref_points.emplace_back(MapPathPoint(raw_points_[i], segment.heading()), 0.0, 0.0); s += segment.length(); } ReferenceLine init_ref(ref_points); // Prefer "std::make_unique" to direct use of "new". // Reference "https://herbsutter.com/gotw/_102/" for details. auto smoother_ptr = std::make_unique<QpSplineReferenceLineSmoother>(config_); auto anchors = CreateAnchorPoints(init_ref.reference_points().front(), init_ref); smoother_ptr->SetAnchorPoints(anchors); ReferenceLine smoothed_init_ref; if (!smoother_ptr->Smooth(init_ref, &smoothed_init_ref)) { AERROR << "smooth initial reference line failed"; return false; } ref_points_ = smoothed_init_ref.reference_points(); } for (; i < raw_points_.size(); ++i) { double s = 0.0; size_t j = ref_points_.size() - 1; while (j > 0 && s < FLAGS_smooth_length / 2.0) { s += DistanceXY(ref_points_[j - 1], ref_points_[j]); --j; } ReferenceLine prev_half_ref(ref_points_.begin() + j, ref_points_.end()); ref_points_.erase(ref_points_.begin() + j, ref_points_.end()); common::SLPoint sl; prev_half_ref.XYToSL(raw_points_[i], &sl); while (sl.s() <= prev_half_ref.Length() && i + 1 < raw_points_.size()) { prev_half_ref.XYToSL(raw_points_[i + 1], &sl); ++i; } s = 0.0; j = i; auto ref_points = prev_half_ref.reference_points(); while (j + 1 < raw_points_.size() && s < FLAGS_smooth_length / 2.0) { Vec2d vec = raw_points_[j + 1] - raw_points_[j]; s += vec.Length(); ref_points.emplace_back(MapPathPoint(raw_points_[j], vec.Angle()), 0.0, 0.0); ++j; } i = j; ReferenceLine local_ref(ref_points); auto anchors = CreateAnchorPoints(ref_points.front(), local_ref); // Prefer "std::make_unique" to direct use of "new". // Reference "https://herbsutter.com/gotw/_102/" for details. auto smoother_ptr = std::make_unique<QpSplineReferenceLineSmoother>(config_); smoother_ptr->SetAnchorPoints(anchors); ReferenceLine smoothed_local_ref; if (!smoother_ptr->Smooth(local_ref, &smoothed_local_ref)) { AERROR << "Failed to smooth reference line"; return false; } ref_points_.insert(ref_points_.end(), smoothed_local_ref.reference_points().begin(), smoothed_local_ref.reference_points().end()); } return true; } void Export(const std::string& filename) { std::ofstream ofs(filename.c_str()); if (ofs.fail()) { AERROR << "Fail to open file " << filename; return; } ofs.precision(6); double s = 0.0; // skip the first point and the last point for (size_t i = 1; i + 1 < ref_points_.size(); ++i) { const auto& point = ref_points_[i]; ofs << std::fixed << "{\"kappa\": " << point.kappa() << ", \"s\": " << s << ", \"theta\": " << point.heading() << ", \"x\":" << point.x() << ", \"y\":" << point.y() << ", \"dkappa\":" << point.dkappa() << "}"; s += DistanceXY(point, ref_points_[i + 1]); } ofs.close(); AINFO << "Smoothed result saved to " << filename; } private: std::vector<AnchorPoint> CreateAnchorPoints(const ReferencePoint& init_point, const ReferenceLine& ref_line) { std::vector<AnchorPoint> anchor_points; int num_of_anchors = std::max( 2, static_cast<int>( ref_line.Length() / config_.max_constraint_interval() + 0.5)); std::vector<double> anchor_s; common::util::uniform_slice(0.0, ref_line.Length(), num_of_anchors - 1, &anchor_s); common::SLPoint sl; if (!ref_line.XYToSL(init_point, &sl)) { AERROR << "Failed to project init point to reference line"; return anchor_points; } bool set_init_point = false; for (const double s : anchor_s) { if (s + config_.max_constraint_interval() / 2.0 < sl.s()) { continue; } ReferencePoint ref_point; if (!set_init_point) { set_init_point = true; ref_point = init_point; } else { ref_point = ref_line.GetReferencePoint(s); } AnchorPoint anchor; anchor.path_point.set_x(ref_point.x()); anchor.path_point.set_y(ref_point.y()); anchor.path_point.set_z(0.0); anchor.path_point.set_s(s); anchor.path_point.set_theta(ref_point.heading()); anchor.path_point.set_kappa(ref_point.kappa()); anchor.lateral_bound = config_.max_lateral_boundary_bound(); anchor.longitudinal_bound = config_.longitudinal_boundary_bound(); anchor_points.emplace_back(anchor); } anchor_points.front().longitudinal_bound = 0; anchor_points.front().lateral_bound = 0; anchor_points.front().enforced = true; anchor_points.back().longitudinal_bound = 0; anchor_points.back().lateral_bound = 0; anchor_points.back().enforced = true; return anchor_points; } private: std::string filename_; std::vector<common::math::Vec2d> raw_points_; std::vector<ReferencePoint> ref_points_; ReferenceLine smoothed_ref_; ReferenceLineSmootherConfig config_; }; } // namespace planning } // namespace apollo int main(int argc, char* argv[]) { google::InitGoogleLogging(argv[0]); google::ParseCommandLineFlags(&argc, &argv, true); if (FLAGS_input_file.empty()) { AERROR << "need to provide --input_file"; return 0; } apollo::planning::SmootherUtil smoother_util(FLAGS_input_file); if (!smoother_util.Smooth()) { AERROR << "Failed to smooth a the line"; } if (FLAGS_output_file.empty()) { FLAGS_output_file = FLAGS_input_file + ".smoothed"; AINFO << "Output file not provided, set to: " << FLAGS_output_file; } smoother_util.Export(FLAGS_output_file); return 0; }
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/reference_line/discrete_points_reference_line_smoother.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 <utility> #include <vector> #include "modules/planning/proto/reference_line_smoother_config.pb.h" #include "modules/planning/reference_line/reference_line.h" #include "modules/planning/reference_line/reference_line_smoother.h" #include "modules/planning/reference_line/reference_point.h" namespace apollo { namespace planning { class DiscretePointsReferenceLineSmoother : public ReferenceLineSmoother { public: explicit DiscretePointsReferenceLineSmoother( const ReferenceLineSmootherConfig& config); virtual ~DiscretePointsReferenceLineSmoother() = default; bool Smooth(const ReferenceLine& raw_reference_line, ReferenceLine* const smoothed_reference_line) override; void SetAnchorPoints(const std::vector<AnchorPoint>&) override; private: bool CosThetaSmooth( const std::vector<std::pair<double, double>>& raw_point2d, const std::vector<double>& bounds, std::vector<std::pair<double, double>>* ptr_smoothed_point2d); bool FemPosSmooth( const std::vector<std::pair<double, double>>& raw_point2d, const std::vector<double>& bounds, std::vector<std::pair<double, double>>* ptr_smoothed_point2d); void NormalizePoints(std::vector<std::pair<double, double>>* xy_points); void DeNormalizePoints(std::vector<std::pair<double, double>>* xy_points); bool GenerateRefPointProfile( const ReferenceLine& raw_reference_line, const std::vector<std::pair<double, double>>& xy_points, std::vector<ReferencePoint>* reference_points); std::vector<AnchorPoint> anchor_points_; double zero_x_ = 0.0; double zero_y_ = 0.0; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/reference_line/spiral_smoother_util.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. *****************************************************************************/ /** * @file **/ #include "cyber/common/file.h" #include "cyber/common/log.h" #include "gflags/gflags.h" #include "modules/common/util/util.h" #include "modules/planning/common/planning_gflags.h" #include "modules/planning/reference_line/spiral_reference_line_smoother.h" DEFINE_string(input_file, "", "input file with format x,y per line"); DEFINE_string(output_file, "", "output file with format x,y per line"); DEFINE_double(smooth_length, 200.0, "Smooth this amount of length "); DEFINE_double(minimum_point_spacing, 5.0, "The minimum distance for input points."); namespace apollo { namespace planning { class SpiralSmootherUtil { public: static std::vector<Eigen::Vector2d> ReadCoordinatesFromFile( const std::string& filename) { std::vector<Eigen::Vector2d> raw_points; std::ifstream ifs(filename.c_str(), std::ifstream::in); std::string point_str; auto spacing_thres = FLAGS_minimum_point_spacing * FLAGS_minimum_point_spacing; while (std::getline(ifs, point_str)) { size_t idx = point_str.find(','); if (idx == std::string::npos) { continue; } auto x_str = point_str.substr(0, idx); auto y_str = point_str.substr(idx + 1); auto x = std::stod(x_str); auto y = std::stod(y_str); if (raw_points.size() > 0) { auto last_x = raw_points.back().x(); auto last_y = raw_points.back().y(); auto dx = x - last_x; auto dy = y - last_y; if (dx * dx + dy * dy < spacing_thres) { continue; } } raw_points.emplace_back(x, y); } return raw_points; } static bool Smooth(std::vector<Eigen::Vector2d> raw_points, std::vector<common::PathPoint>* ptr_smooth_points) { if (raw_points.size() <= 2) { AERROR << "the original point size is " << raw_points.size(); return false; } std::vector<Eigen::Vector2d> processed_points; processed_points.push_back(raw_points.front()); for (const Eigen::Vector2d& p : raw_points) { Eigen::Vector2d d = p - processed_points.back(); if (d.norm() < FLAGS_minimum_point_spacing) { continue; } processed_points.push_back(p); } if (processed_points.size() < 2) { processed_points.push_back(raw_points.back()); } Eigen::Vector2d start_point = processed_points.front(); std::for_each(processed_points.begin(), processed_points.end(), [&start_point](Eigen::Vector2d& p) { p = p - start_point; }); ReferenceLineSmootherConfig config; ACHECK(cyber::common::GetProtoFromFile( "modules/planning/conf/spiral_smoother_config.pb.txt", &config)); std::vector<double> opt_theta; std::vector<double> opt_kappa; std::vector<double> opt_dkappa; std::vector<double> opt_s; std::vector<double> opt_x; std::vector<double> opt_y; SpiralReferenceLineSmoother spiral_smoother(config); auto res = spiral_smoother.SmoothStandAlone(processed_points, &opt_theta, &opt_kappa, &opt_dkappa, &opt_s, &opt_x, &opt_y); if (!res) { AWARN << "Optimization failed; the result may not be smooth"; } else { AINFO << "Optimal solution found"; } std::for_each(opt_x.begin(), opt_x.end(), [&start_point](double& x) { x += start_point.x(); }); std::for_each(opt_y.begin(), opt_y.end(), [&start_point](double& y) { y += start_point.y(); }); *ptr_smooth_points = spiral_smoother.Interpolate(opt_theta, opt_kappa, opt_dkappa, opt_s, opt_x, opt_y, config.resolution()); return true; } static void Export(const std::string& filename, const std::vector<common::PathPoint>& smoothed_points) { std::ofstream ofs(filename.c_str()); if (ofs.fail()) { AERROR << "Fail to open file " << filename; return; } ofs.precision(12); // skip the first point and the last point for (size_t i = 1; i + 1 < smoothed_points.size(); ++i) { const auto& point = smoothed_points[i]; ofs << std::fixed << "{\"kappa\": " << point.kappa() << ", \"s\": " << point.s() << ", \"theta\": " << point.theta() << ", \"x\":" << point.x() << ", \"y\":" << point.y() << ", \"dkappa\":" << point.dkappa() << "}"; } ofs.close(); AINFO << "Smoothed result saved to " << filename; } }; } // namespace planning } // namespace apollo int main(int argc, char* argv[]) { google::InitGoogleLogging(argv[0]); google::ParseCommandLineFlags(&argc, &argv, true); if (FLAGS_input_file.empty()) { AERROR << "need to provide --input_file"; return 0; } std::vector<Eigen::Vector2d> raw_points = apollo::planning::SpiralSmootherUtil::ReadCoordinatesFromFile( FLAGS_input_file); std::vector<apollo::common::PathPoint> smooth_points; auto res = apollo::planning::SpiralSmootherUtil::Smooth(raw_points, &smooth_points); if (!res) { AERROR << "Failed to smooth a the line"; } if (FLAGS_output_file.empty()) { FLAGS_output_file = FLAGS_input_file + ".smoothed"; AINFO << "Output file not provided, set to: " << FLAGS_output_file; } apollo::planning::SpiralSmootherUtil::Export(FLAGS_output_file, smooth_points); return 0; }
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/reference_line/reference_point.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 reference_point.h **/ #pragma once #include <string> #include <vector> #include "modules/common_msgs/basic_msgs/pnc_point.pb.h" #include "modules/map/pnc_map/path.h" namespace apollo { namespace planning { class ReferencePoint : public hdmap::MapPathPoint { public: ReferencePoint() = default; ReferencePoint(const MapPathPoint& map_path_point, const double kappa, const double dkappa); common::PathPoint ToPathPoint(double s) const; double kappa() const; double dkappa() const; std::string DebugString() const; static void RemoveDuplicates(std::vector<ReferencePoint>* points); private: double kappa_ = 0.0; double dkappa_ = 0.0; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/reference_line/reference_line_provider.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 reference_line_provider.h * * @brief Declaration of the class ReferenceLineProvider. */ #pragma once #include <list> #include <memory> #include <queue> #include <string> #include <unordered_set> #include <vector> #include "modules/common/vehicle_state/proto/vehicle_state.pb.h" #include "modules/common_msgs/planning_msgs/navigation.pb.h" #include "modules/planning/proto/planning_config.pb.h" #include "cyber/cyber.h" #include "modules/common/util/factory.h" #include "modules/common/util/util.h" #include "modules/common/vehicle_state/vehicle_state_provider.h" #include "modules/map/pnc_map/pnc_map.h" #include "modules/planning/common/indexed_queue.h" #include "modules/planning/math/smoothing_spline/spline_2d_solver.h" #include "modules/planning/reference_line/discrete_points_reference_line_smoother.h" #include "modules/planning/reference_line/qp_spline_reference_line_smoother.h" #include "modules/planning/reference_line/reference_line.h" #include "modules/planning/reference_line/spiral_reference_line_smoother.h" /** * @namespace apollo::planning * @brief apollo::planning */ namespace apollo { namespace planning { /** * @class ReferenceLineProvider * @brief The class of ReferenceLineProvider. * It provides smoothed reference line to planning. */ class ReferenceLineProvider { public: ReferenceLineProvider() = default; ReferenceLineProvider( const common::VehicleStateProvider* vehicle_state_provider, const hdmap::HDMap* base_map, const std::shared_ptr<relative_map::MapMsg>& relative_map = nullptr); /** * @brief Default destructor. */ ~ReferenceLineProvider(); bool UpdateRoutingResponse(const routing::RoutingResponse& routing); void UpdateVehicleState(const common::VehicleState& vehicle_state); bool Start(); void Stop(); bool GetReferenceLines(std::list<ReferenceLine>* reference_lines, std::list<hdmap::RouteSegments>* segments); double LastTimeDelay(); std::vector<routing::LaneWaypoint> FutureRouteWaypoints(); bool UpdatedReferenceLine() { return is_reference_line_updated_.load(); } private: /** * @brief Use PncMap to create reference line and the corresponding segments * based on routing and current position. This is a thread safe function. * @return true if !reference_lines.empty() && reference_lines.size() == * segments.size(); **/ bool CreateReferenceLine(std::list<ReferenceLine>* reference_lines, std::list<hdmap::RouteSegments>* segments); /** * @brief store the computed reference line. This function can avoid * unnecessary copy if the reference lines are the same. */ void UpdateReferenceLine( const std::list<ReferenceLine>& reference_lines, const std::list<hdmap::RouteSegments>& route_segments); void GenerateThread(); void IsValidReferenceLine(); void PrioritzeChangeLane(std::list<hdmap::RouteSegments>* route_segments); bool CreateRouteSegments(const common::VehicleState& vehicle_state, std::list<hdmap::RouteSegments>* segments); bool IsReferenceLineSmoothValid(const ReferenceLine& raw, const ReferenceLine& smoothed) const; bool SmoothReferenceLine(const ReferenceLine& raw_reference_line, ReferenceLine* reference_line); bool SmoothPrefixedReferenceLine(const ReferenceLine& prefix_ref, const ReferenceLine& raw_ref, ReferenceLine* reference_line); void GetAnchorPoints(const ReferenceLine& reference_line, std::vector<AnchorPoint>* anchor_points) const; bool SmoothRouteSegment(const hdmap::RouteSegments& segments, ReferenceLine* reference_line); /** * @brief This function creates a smoothed forward reference line * based on the given segments. */ bool ExtendReferenceLine(const common::VehicleState& state, hdmap::RouteSegments* segments, ReferenceLine* reference_line); AnchorPoint GetAnchorPoint(const ReferenceLine& reference_line, double s) const; bool GetReferenceLinesFromRelativeMap( std::list<ReferenceLine>* reference_lines, std::list<hdmap::RouteSegments>* segments); /** * @brief This function get adc lane info from navigation path and map * by vehicle state. */ bool GetNearestWayPointFromNavigationPath( const common::VehicleState& state, const std::unordered_set<std::string>& navigation_lane_ids, hdmap::LaneWaypoint* waypoint); bool Shrink(const common::SLPoint& sl, ReferenceLine* ref, hdmap::RouteSegments* segments); private: bool is_initialized_ = false; std::atomic<bool> is_stop_{false}; std::unique_ptr<ReferenceLineSmoother> smoother_; ReferenceLineSmootherConfig smoother_config_; std::mutex pnc_map_mutex_; std::unique_ptr<hdmap::PncMap> pnc_map_; // Used in Navigation mode std::shared_ptr<relative_map::MapMsg> relative_map_; std::mutex vehicle_state_mutex_; common::VehicleState vehicle_state_; std::mutex routing_mutex_; routing::RoutingResponse routing_; bool has_routing_ = false; std::mutex reference_lines_mutex_; std::list<ReferenceLine> reference_lines_; std::list<hdmap::RouteSegments> route_segments_; double last_calculation_time_ = 0.0; std::queue<std::list<ReferenceLine>> reference_line_history_; std::queue<std::list<hdmap::RouteSegments>> route_segments_history_; std::future<void> task_future_; std::atomic<bool> is_reference_line_updated_{true}; const common::VehicleStateProvider* vehicle_state_provider_ = nullptr; }; } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/reference_line/spiral_problem_interface.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. *****************************************************************************/ /* * spiral_problem_interface.cc */ #include "modules/planning/reference_line/spiral_problem_interface.h" #include <utility> #include "modules/common/math/math_utils.h" #include "modules/planning/common/planning_gflags.h" namespace apollo { namespace planning { namespace { auto THETA0 = QuinticSpiralPathWithDerivation<SpiralProblemInterface::N>::THETA0; auto KAPPA0 = QuinticSpiralPathWithDerivation<SpiralProblemInterface::N>::KAPPA0; auto DKAPPA0 = QuinticSpiralPathWithDerivation<SpiralProblemInterface::N>::DKAPPA0; auto THETA1 = QuinticSpiralPathWithDerivation<SpiralProblemInterface::N>::THETA1; auto KAPPA1 = QuinticSpiralPathWithDerivation<SpiralProblemInterface::N>::KAPPA1; auto DKAPPA1 = QuinticSpiralPathWithDerivation<SpiralProblemInterface::N>::DKAPPA1; auto DELTA_S = QuinticSpiralPathWithDerivation<SpiralProblemInterface::N>::DELTA_S; } // namespace SpiralProblemInterface::SpiralProblemInterface( std::vector<Eigen::Vector2d> points) : init_points_(std::move(points)) { num_of_points_ = static_cast<int>(init_points_.size()); CHECK_GT(num_of_points_, 1); point_distances_.reserve(num_of_points_ - 1); for (int i = 0; i + 1 < num_of_points_; ++i) { point_distances_.push_back((init_points_[i + 1] - init_points_[i]).norm()); } std::vector<double> normalized_theta; for (int i = 0; i + 1 < num_of_points_; ++i) { Eigen::Vector2d v = init_points_[i + 1] - init_points_[i]; double theta = std::atan2(v.y(), v.x()); normalized_theta.push_back(theta); } normalized_theta.push_back(normalized_theta.back()); relative_theta_.push_back(normalized_theta.front()); for (int i = 1; i < num_of_points_; ++i) { double theta_diff = common::math::AngleDiff(relative_theta_.back(), normalized_theta[i]); relative_theta_.push_back(relative_theta_.back() + theta_diff); } piecewise_paths_.resize(num_of_points_ - 1); } void SpiralProblemInterface::get_optimization_results( std::vector<double>* ptr_theta, std::vector<double>* ptr_kappa, std::vector<double>* ptr_dkappa, std::vector<double>* ptr_s, std::vector<double>* ptr_x, std::vector<double>* ptr_y) const { *ptr_theta = opt_theta_; *ptr_kappa = opt_kappa_; *ptr_dkappa = opt_dkappa_; *ptr_s = opt_s_; *ptr_x = opt_x_; *ptr_y = opt_y_; } bool SpiralProblemInterface::get_nlp_info(int& n, int& m, int& nnz_jac_g, int& nnz_h_lag, IndexStyleEnum& index_style) { // number of variables n = num_of_points_ * 5 + num_of_points_ - 1; num_of_variables_ = n; // number of constraints // b. positional equality constraints; // totally 2 * (num_of_points - 1) considering x and y separately m = (num_of_points_ - 1) * 2; // a. positional movements; totally num_of_points m += num_of_points_; num_of_constraints_ = m; // number of nonzero constraint jacobian. nnz_jac_g = (num_of_points_ - 1) * 2 * 9 + num_of_points_ * 2; // number of nonzero hessian and lagrangian. nnz_h_lag = 0; index_style = IndexStyleEnum::C_STYLE; return true; } bool SpiralProblemInterface::get_bounds_info(int n, double* x_l, double* x_u, int m, double* g_l, double* g_u) { CHECK_EQ(n, num_of_variables_); CHECK_EQ(m, num_of_constraints_); // variables // a. for theta, kappa, dkappa, x, y for (int i = 0; i < num_of_points_; ++i) { int index = i * 5; double theta_lower = 0.0; double theta_upper = 0.0; double kappa_lower = 0.0; double kappa_upper = 0.0; double dkappa_lower = 0.0; double dkappa_upper = 0.0; double x_lower = 0.0; double x_upper = 0.0; double y_lower = 0.0; double y_upper = 0.0; if (i == 0 && has_fixed_start_point_) { theta_lower = start_theta_; theta_upper = start_theta_; kappa_lower = start_kappa_; kappa_upper = start_kappa_; dkappa_lower = start_dkappa_; dkappa_upper = start_dkappa_; x_lower = start_x_; x_upper = start_x_; y_lower = start_y_; y_upper = start_y_; } else if (i + 1 == num_of_points_ && has_fixed_end_point_) { theta_lower = end_theta_; theta_upper = end_theta_; kappa_lower = end_kappa_; kappa_upper = end_kappa_; dkappa_lower = end_dkappa_; dkappa_upper = end_dkappa_; x_lower = end_x_; x_upper = end_x_; y_lower = end_y_; y_upper = end_y_; } else if (i + 1 == num_of_points_ && has_fixed_end_point_position_) { theta_lower = relative_theta_[i] - M_PI * 0.2; theta_upper = relative_theta_[i] + M_PI * 0.2; kappa_lower = -0.25; kappa_upper = 0.25; dkappa_lower = -0.02; dkappa_upper = 0.02; x_lower = end_x_; x_upper = end_x_; y_lower = end_y_; y_upper = end_y_; } else { theta_lower = relative_theta_[i] - M_PI * 0.2; theta_upper = relative_theta_[i] + M_PI * 0.2; kappa_lower = -0.25; kappa_upper = 0.25; dkappa_lower = -0.02; dkappa_upper = 0.02; x_lower = init_points_[i].x() - default_max_point_deviation_; x_upper = init_points_[i].x() + default_max_point_deviation_; y_lower = init_points_[i].y() - default_max_point_deviation_; y_upper = init_points_[i].y() + default_max_point_deviation_; } // theta x_l[index] = theta_lower; x_u[index] = theta_upper; // kappa x_l[index + 1] = kappa_lower; x_u[index + 1] = kappa_upper; // dkappa x_l[index + 2] = dkappa_lower; x_u[index + 2] = dkappa_upper; // x x_l[index + 3] = x_lower; x_u[index + 3] = x_upper; // y x_l[index + 4] = y_lower; x_u[index + 4] = y_upper; } // b. for delta_s int variable_offset = num_of_points_ * 5; for (int i = 0; i + 1 < num_of_points_; ++i) { x_l[variable_offset + i] = point_distances_[i] - 2.0 * default_max_point_deviation_; x_u[variable_offset + i] = point_distances_[i] * M_PI * 0.5; } // constraints // a. positional equality constraints for (int i = 0; i + 1 < num_of_points_; ++i) { // for x g_l[i * 2] = 0.0; g_u[i * 2] = 0.0; // for y g_l[i * 2 + 1] = 0.0; g_u[i * 2 + 1] = 0.0; } // b. positional deviation constraints int constraint_offset = 2 * (num_of_points_ - 1); for (int i = 0; i < num_of_points_; ++i) { g_l[constraint_offset + i] = 0.0; g_u[constraint_offset + i] = default_max_point_deviation_ * default_max_point_deviation_; } return true; } bool SpiralProblemInterface::get_starting_point(int n, bool init_x, double* x, bool init_z, double* z_L, double* z_U, int m, bool init_lambda, double* lambda) { CHECK_EQ(n, num_of_variables_); ACHECK(init_x); ACHECK(!init_z); ACHECK(!init_lambda); for (int i = 0; i < num_of_points_; ++i) { int index = i * 5; x[index] = relative_theta_[i]; x[index + 1] = 0.0; x[index + 2] = 0.0; x[index + 3] = init_points_[i].x(); x[index + 4] = init_points_[i].y(); } int variable_offset = num_of_points_ * 5; for (int i = 0; i + 1 < num_of_points_; ++i) { double delta_theta = relative_theta_[i + 1] - relative_theta_[i]; x[variable_offset + i] = point_distances_[i] / std::cos(0.5 * delta_theta); } for (int i = 0; i + 1 < num_of_points_; ++i) { double delta_theta = relative_theta_[i + 1] - relative_theta_[i]; x[(i + 1) * 5 + 1] = delta_theta / x[variable_offset + i]; } x[1] = x[6]; if (has_fixed_start_point_) { x[0] = start_theta_; x[1] = start_kappa_; x[2] = start_dkappa_; } return true; } bool SpiralProblemInterface::eval_f(int n, const double* x, bool new_x, double& obj_value) { CHECK_EQ(n, num_of_variables_); if (new_x) { update_piecewise_spiral_paths(x, n); } obj_value = 0.0; for (int i = 0; i + 1 < num_of_points_; ++i) { const auto& spiral_curve = piecewise_paths_[i]; double delta_s = spiral_curve.ParamLength(); obj_value += delta_s * weight_curve_length_; for (int j = 0; j < num_of_internal_points_; ++j) { double ratio = static_cast<double>(j) / static_cast<double>(num_of_internal_points_); double s = ratio * delta_s; double kappa = spiral_curve.Evaluate(1, s); obj_value += kappa * kappa * weight_kappa_; double dkappa = spiral_curve.Evaluate(2, s); obj_value += dkappa * dkappa * weight_dkappa_; } } return true; } bool SpiralProblemInterface::eval_grad_f(int n, const double* x, bool new_x, double* grad_f) { CHECK_EQ(n, num_of_variables_); std::fill(grad_f, grad_f + n, 0.0); if (new_x) { update_piecewise_spiral_paths(x, n); } int variable_offset = num_of_points_ * 5; for (int i = 0; i + 1 < num_of_points_; ++i) { int index0 = i * 5; int index1 = (i + 1) * 5; auto& spiral_curve = piecewise_paths_[i]; double delta_s = spiral_curve.ParamLength(); grad_f[variable_offset + i] += weight_curve_length_ * 1.0; for (int j = 0; j < num_of_internal_points_; ++j) { double ratio = static_cast<double>(j) / static_cast<double>(num_of_internal_points_); double s = ratio * delta_s; double kappa = spiral_curve.Evaluate(1, s); grad_f[index0] += weight_kappa_ * 2.0 * kappa * spiral_curve.DeriveKappaDerivative( THETA0, j, num_of_internal_points_); grad_f[index0 + 1] += weight_kappa_ * 2.0 * kappa * spiral_curve.DeriveKappaDerivative( KAPPA0, j, num_of_internal_points_); grad_f[index0 + 2] += weight_kappa_ * 2.0 * kappa * spiral_curve.DeriveKappaDerivative( DKAPPA0, j, num_of_internal_points_); grad_f[index1] += weight_kappa_ * 2.0 * kappa * spiral_curve.DeriveKappaDerivative( THETA1, j, num_of_internal_points_); grad_f[index1 + 1] += weight_kappa_ * 2.0 * kappa * spiral_curve.DeriveKappaDerivative( KAPPA1, j, num_of_internal_points_); grad_f[index1 + 2] += weight_kappa_ * 2.0 * kappa * spiral_curve.DeriveKappaDerivative( DKAPPA1, j, num_of_internal_points_); grad_f[variable_offset + i] += weight_kappa_ * 2.0 * kappa * spiral_curve.DeriveKappaDerivative( DELTA_S, j, num_of_internal_points_); double dkappa = spiral_curve.Evaluate(2, s); grad_f[index0] += weight_dkappa_ * 2.0 * dkappa * spiral_curve.DeriveDKappaDerivative( THETA0, j, num_of_internal_points_); grad_f[index0 + 1] += weight_dkappa_ * 2.0 * dkappa * spiral_curve.DeriveDKappaDerivative( KAPPA0, j, num_of_internal_points_); grad_f[index0 + 2] += weight_dkappa_ * 2.0 * dkappa * spiral_curve.DeriveDKappaDerivative( DKAPPA0, j, num_of_internal_points_); grad_f[index1] += weight_dkappa_ * 2.0 * dkappa * spiral_curve.DeriveDKappaDerivative( THETA1, j, num_of_internal_points_); grad_f[index1 + 1] += weight_dkappa_ * 2.0 * dkappa * spiral_curve.DeriveDKappaDerivative( KAPPA1, j, num_of_internal_points_); grad_f[index1 + 2] += weight_dkappa_ * 2.0 * dkappa * spiral_curve.DeriveDKappaDerivative( DKAPPA1, j, num_of_internal_points_); grad_f[variable_offset + i] += weight_dkappa_ * 2.0 * dkappa * spiral_curve.DeriveDKappaDerivative( DELTA_S, j, num_of_internal_points_); } } return true; } bool SpiralProblemInterface::eval_g(int n, const double* x, bool new_x, int m, double* g) { CHECK_EQ(n, num_of_variables_); CHECK_EQ(m, num_of_constraints_); if (new_x) { update_piecewise_spiral_paths(x, n); } // first, fill in the positional equality constraints for (int i = 0; i + 1 < num_of_points_; ++i) { int index0 = i * 5; int index1 = (i + 1) * 5; const auto& spiral_curve = piecewise_paths_[i]; double delta_s = spiral_curve.ParamLength(); double x_diff = x[index1 + 3] - x[index0 + 3] - spiral_curve.ComputeCartesianDeviationX(delta_s); g[i * 2] = x_diff * x_diff; double y_diff = x[index1 + 4] - x[index0 + 4] - spiral_curve.ComputeCartesianDeviationY(delta_s); g[i * 2 + 1] = y_diff * y_diff; } // second, fill in the positional deviation constraints int constraint_offset = 2 * (num_of_points_ - 1); for (int i = 0; i < num_of_points_; ++i) { int variable_index = i * 5; double x_cor = x[variable_index + 3]; double y_cor = x[variable_index + 4]; double x_diff = x_cor - init_points_[i].x(); double y_diff = y_cor - init_points_[i].y(); g[constraint_offset + i] = x_diff * x_diff + y_diff * y_diff; } return true; } bool SpiralProblemInterface::eval_jac_g(int n, const double* x, bool new_x, int m, int nele_jac, int* iRow, int* jCol, double* values) { CHECK_EQ(n, num_of_variables_); CHECK_EQ(m, num_of_constraints_); if (values == nullptr) { int nz_index = 0; int variable_offset = num_of_points_ * 5; for (int i = 0; i + 1 < num_of_points_; ++i) { int variable_index = i * 5; // theta0 iRow[nz_index] = i * 2; jCol[nz_index] = variable_index + 0; ++nz_index; // kappa0 iRow[nz_index] = i * 2; jCol[nz_index] = variable_index + 1; ++nz_index; // dkappa0 iRow[nz_index] = i * 2; jCol[nz_index] = variable_index + 2; ++nz_index; // x0 iRow[nz_index] = i * 2; jCol[nz_index] = variable_index + 3; ++nz_index; // theta1 iRow[nz_index] = i * 2; jCol[nz_index] = variable_index + 5; ++nz_index; // kappa1 iRow[nz_index] = i * 2; jCol[nz_index] = variable_index + 6; ++nz_index; // dkappa1 iRow[nz_index] = i * 2; jCol[nz_index] = variable_index + 7; ++nz_index; // x1 iRow[nz_index] = i * 2; jCol[nz_index] = variable_index + 8; ++nz_index; // s iRow[nz_index] = i * 2; jCol[nz_index] = variable_offset + i; ++nz_index; // theta0 iRow[nz_index] = i * 2 + 1; jCol[nz_index] = variable_index + 0; ++nz_index; // kappa0 iRow[nz_index] = i * 2 + 1; jCol[nz_index] = variable_index + 1; ++nz_index; // dkappa0 iRow[nz_index] = i * 2 + 1; jCol[nz_index] = variable_index + 2; ++nz_index; // y0 iRow[nz_index] = i * 2 + 1; jCol[nz_index] = variable_index + 4; ++nz_index; // theta1 iRow[nz_index] = i * 2 + 1; jCol[nz_index] = variable_index + 5; ++nz_index; // kappa1 iRow[nz_index] = i * 2 + 1; jCol[nz_index] = variable_index + 6; ++nz_index; // dkappa1 iRow[nz_index] = i * 2 + 1; jCol[nz_index] = variable_index + 7; ++nz_index; // y1 iRow[nz_index] = i * 2 + 1; jCol[nz_index] = variable_index + 9; ++nz_index; // s iRow[nz_index] = i * 2 + 1; jCol[nz_index] = variable_offset + i; ++nz_index; } int constraint_offset = 2 * (num_of_points_ - 1); for (int i = 0; i < num_of_points_; ++i) { iRow[nz_index] = constraint_offset + i; jCol[nz_index] = i * 5 + 3; ++nz_index; iRow[nz_index] = constraint_offset + i; jCol[nz_index] = i * 5 + 4; ++nz_index; } CHECK_EQ(nz_index, nele_jac); } else { if (new_x) { update_piecewise_spiral_paths(x, n); } std::fill(values, values + nele_jac, 0.0); // first, positional equality constraints int nz_index = 0; for (int i = 0; i + 1 < num_of_points_; ++i) { int index0 = i * 5; int index1 = (i + 1) * 5; auto& spiral_curve = piecewise_paths_[i]; double delta_s = spiral_curve.ParamLength(); double x_diff = x[index1 + 3] - x[index0 + 3] - spiral_curve.ComputeCartesianDeviationX(delta_s); double y_diff = x[index1 + 4] - x[index0 + 4] - spiral_curve.ComputeCartesianDeviationY(delta_s); auto pos_theta0 = spiral_curve.DeriveCartesianDeviation(THETA0); auto pos_kappa0 = spiral_curve.DeriveCartesianDeviation(KAPPA0); auto pos_dkappa0 = spiral_curve.DeriveCartesianDeviation(DKAPPA0); auto pos_theta1 = spiral_curve.DeriveCartesianDeviation(THETA1); auto pos_kappa1 = spiral_curve.DeriveCartesianDeviation(KAPPA1); auto pos_dkappa1 = spiral_curve.DeriveCartesianDeviation(DKAPPA1); auto pos_delta_s = spiral_curve.DeriveCartesianDeviation(DELTA_S); // for x coordinate // theta0 values[nz_index] += 2.0 * x_diff * (-pos_theta0.first); ++nz_index; // kappa0 values[nz_index] += 2.0 * x_diff * (-pos_kappa0.first); ++nz_index; // dkappa0 values[nz_index] += 2.0 * x_diff * (-pos_dkappa0.first); ++nz_index; // x0 values[nz_index] += 2.0 * x_diff * (-1.0); ++nz_index; // theta1 values[nz_index] += 2.0 * x_diff * (-pos_theta1.first); ++nz_index; // kappa1 values[nz_index] += 2.0 * x_diff * (-pos_kappa1.first); ++nz_index; // dkappa1 values[nz_index] += 2.0 * x_diff * (-pos_dkappa1.first); ++nz_index; // x1 values[nz_index] += 2.0 * x_diff; ++nz_index; // delta_s values[nz_index] += 2.0 * x_diff * (-pos_delta_s.first); ++nz_index; // for y coordinate // theta0 values[nz_index] += 2.0 * y_diff * (-pos_theta0.second); ++nz_index; // kappa0 values[nz_index] += 2.0 * y_diff * (-pos_kappa0.second); ++nz_index; // dkappa0 values[nz_index] += 2.0 * y_diff * (-pos_dkappa0.second); ++nz_index; // y0 values[nz_index] += 2.0 * y_diff * (-1.0); ++nz_index; // theta1 values[nz_index] += 2.0 * y_diff * (-pos_theta1.second); ++nz_index; // kappa1 values[nz_index] += 2.0 * y_diff * (-pos_kappa1.second); ++nz_index; // dkappa1 values[nz_index] += 2.0 * y_diff * (-pos_dkappa1.second); ++nz_index; // y1 values[nz_index] += 2.0 * y_diff; ++nz_index; // delta_s values[nz_index] += 2.0 * y_diff * (-pos_delta_s.second); ++nz_index; } for (int i = 0; i < num_of_points_; ++i) { values[nz_index] = 2.0 * (x[i * 5 + 3] - init_points_[i].x()); ++nz_index; values[nz_index] = 2.0 * (x[i * 5 + 4] - init_points_[i].y()); ++nz_index; } CHECK_EQ(nz_index, nele_jac); } return true; } bool SpiralProblemInterface::eval_h(int n, const double* x, bool new_x, double obj_factor, int m, const double* lambda, bool new_lambda, int nele_hess, int* iRow, int* jCol, double* values) { ACHECK(false); return true; } void SpiralProblemInterface::finalize_solution( Ipopt::SolverReturn status, int n, const double* x, const double* z_L, const double* z_U, int m, const double* g, const double* lambda, double obj_value, const Ipopt::IpoptData* ip_data, Ipopt::IpoptCalculatedQuantities* ip_cq) { opt_theta_.reserve(num_of_points_); opt_kappa_.reserve(num_of_points_); opt_dkappa_.reserve(num_of_points_); opt_x_.reserve(num_of_points_); opt_y_.reserve(num_of_points_); for (int i = 0; i < num_of_points_; ++i) { int index = i * 5; opt_theta_.push_back(x[index]); opt_kappa_.push_back(x[index + 1]); opt_dkappa_.push_back(x[index + 2]); opt_x_.push_back(x[index + 3]); opt_y_.push_back(x[index + 4]); } opt_s_.reserve(num_of_points_ - 1); int variable_offset = num_of_points_ * 5; for (int i = 0; i + 1 < num_of_points_; ++i) { opt_s_.push_back(x[variable_offset + i]); } } void SpiralProblemInterface::update_piecewise_spiral_paths(const double* x, const int n) { int variable_offset = num_of_points_ * 5; for (int i = 0; i + 1 < num_of_points_; ++i) { int index0 = i * 5; int index1 = (i + 1) * 5; std::array<double, 3> x0 = {x[index0], x[index0 + 1], x[index0 + 2]}; std::array<double, 3> x1 = {x[index1], x[index1 + 1], x[index1 + 2]}; double delta_s = x[variable_offset + i]; piecewise_paths_[i] = std::move(QuinticSpiralPathWithDerivation<N>(x0, x1, delta_s)); } } void SpiralProblemInterface::set_default_max_point_deviation( const double max_point_deviation) { default_max_point_deviation_ = max_point_deviation; } void SpiralProblemInterface::set_start_point(const double x, const double y, const double theta, const double kappa, const double dkappa) { has_fixed_start_point_ = true; start_x_ = x; start_y_ = y; start_theta_ = theta; start_kappa_ = kappa; start_dkappa_ = dkappa; } void SpiralProblemInterface::set_end_point(const double x, const double y, const double theta, const double kappa, const double dkappa) { has_fixed_end_point_ = true; end_x_ = x; end_y_ = y; end_theta_ = theta; end_kappa_ = kappa; end_dkappa_ = dkappa; } void SpiralProblemInterface::set_end_point_position(const double x, const double y) { has_fixed_end_point_position_ = true; end_x_ = x; end_y_ = y; } void SpiralProblemInterface::set_element_weight_curve_length( const double weight_curve_length) { weight_curve_length_ = weight_curve_length; } void SpiralProblemInterface::set_element_weight_kappa( const double weight_kappa) { weight_kappa_ = weight_kappa; } void SpiralProblemInterface::set_element_weight_dkappa( const double weight_dkappa) { weight_dkappa_ = weight_dkappa; } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/reference_line/qp_spline_reference_line_smoother_test.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 qp_spline_reference_line_smoother_test.cc **/ #include "modules/planning/reference_line/qp_spline_reference_line_smoother.h" #include "gtest/gtest.h" #include "modules/common/math/vec2d.h" #include "modules/common/util/util.h" #include "modules/map/hdmap/hdmap.h" #include "modules/map/hdmap/hdmap_util.h" #include "modules/planning/proto/reference_line_smoother_config.pb.h" #include "modules/planning/reference_line/reference_line.h" #include "modules/planning/reference_line/reference_point.h" namespace apollo { namespace planning { class QpSplineReferenceLineSmootherTest : public ::testing::Test { public: virtual void SetUp() { config_.mutable_qp_spline()->set_spline_order(5); smoother_.reset(new QpSplineReferenceLineSmoother(config_)); hdmap_.LoadMapFromFile(map_file); const std::string lane_id = "1_-1"; lane_info_ptr = hdmap_.GetLaneById(hdmap::MakeMapId(lane_id)); if (!lane_info_ptr) { AERROR << "failed to find lane " << lane_id << " from map " << map_file; return; } std::vector<ReferencePoint> ref_points; const auto& points = lane_info_ptr->points(); const auto& headings = lane_info_ptr->headings(); const auto& accumulate_s = lane_info_ptr->accumulate_s(); for (size_t i = 0; i < points.size(); ++i) { std::vector<hdmap::LaneWaypoint> waypoint; waypoint.emplace_back(lane_info_ptr, accumulate_s[i]); hdmap::MapPathPoint map_path_point(points[i], headings[i], waypoint); ref_points.emplace_back(map_path_point, 0.0, 0.0); } reference_line_.reset(new ReferenceLine(ref_points)); vehicle_position_ = points[0]; } const std::string map_file = "/apollo/modules/planning/testdata/garage_map/base_map.txt"; hdmap::HDMap hdmap_; common::math::Vec2d vehicle_position_; ReferenceLineSmootherConfig config_; std::unique_ptr<ReferenceLineSmoother> smoother_; std::unique_ptr<ReferenceLine> reference_line_; hdmap::LaneInfoConstPtr lane_info_ptr = nullptr; }; TEST_F(QpSplineReferenceLineSmootherTest, smooth) { ReferenceLine smoothed_reference_line; EXPECT_DOUBLE_EQ(153.87421245682503, reference_line_->Length()); std::vector<AnchorPoint> anchor_points; const double interval = 10.0; int num_of_anchors = std::max(2, static_cast<int>(reference_line_->Length() / interval + 0.5)); std::vector<double> anchor_s; common::util::uniform_slice(0.0, reference_line_->Length(), num_of_anchors - 1, &anchor_s); for (const double s : anchor_s) { anchor_points.emplace_back(); auto& last_anchor = anchor_points.back(); auto ref_point = reference_line_->GetReferencePoint(s); last_anchor.path_point = ref_point.ToPathPoint(s); // TODO(All): change the longitudinal and lateral directions in code last_anchor.lateral_bound = 2.0; last_anchor.longitudinal_bound = 0.2; } anchor_points.front().longitudinal_bound = 1e-6; anchor_points.front().lateral_bound = 1e-6; anchor_points.back().longitudinal_bound = 1e-6; anchor_points.back().lateral_bound = 1e-6; smoother_->SetAnchorPoints(anchor_points); auto start = std::chrono::system_clock::now(); EXPECT_TRUE(smoother_->Smooth(*reference_line_, &smoothed_reference_line)); auto end = std::chrono::system_clock::now(); std::chrono::duration<double> diff = end - start; std::cout << "Time to solver is " << diff.count() << " s\n"; EXPECT_NEAR(152.5409, smoothed_reference_line.Length(), 1.0e-2); } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/reference_line/spiral_reference_line_smoother.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. *****************************************************************************/ /* * spiral_reference_line_smoother.cc */ #include "modules/planning/reference_line/spiral_reference_line_smoother.h" #include <algorithm> #include <utility> #include <coin/IpIpoptApplication.hpp> #include <coin/IpSolveStatistics.hpp> #include "modules/planning/common/planning_gflags.h" #include "modules/planning/math/curve1d/quintic_spiral_path.h" #include "modules/planning/reference_line/spiral_problem_interface.h" namespace apollo { namespace planning { SpiralReferenceLineSmoother::SpiralReferenceLineSmoother( const ReferenceLineSmootherConfig& config) : ReferenceLineSmoother(config) {} bool SpiralReferenceLineSmoother::Smooth( const ReferenceLine& raw_reference_line, ReferenceLine* const smoothed_reference_line) { std::vector<double> opt_x; std::vector<double> opt_y; std::vector<double> opt_theta; std::vector<double> opt_kappa; std::vector<double> opt_dkappa; std::vector<double> opt_s; if (anchor_points_.empty()) { const double piecewise_length = config_.spiral().piecewise_length(); const double length = raw_reference_line.Length(); ADEBUG << "Length = " << length; uint32_t num_of_pieces = std::max(1u, static_cast<uint32_t>(length / piecewise_length)); const double delta_s = length / num_of_pieces; double s = 0.0; std::vector<Eigen::Vector2d> raw_point2d; for (std::uint32_t i = 0; i <= num_of_pieces; ++i, s = std::fmin(s + delta_s, length)) { ReferencePoint rlp = raw_reference_line.GetReferencePoint(s); raw_point2d.emplace_back(rlp.x(), rlp.y()); } Smooth(raw_point2d, &opt_theta, &opt_kappa, &opt_dkappa, &opt_s, &opt_x, &opt_y); } else { size_t start_index = 0; for (const auto& anchor_point : anchor_points_) { if (anchor_point.enforced) { start_index++; } else { break; } } std::vector<Eigen::Vector2d> raw_point2d; if (start_index == 0) { for (const auto& anchor_point : anchor_points_) { raw_point2d.emplace_back(anchor_point.path_point.x(), anchor_point.path_point.y()); } } else { std::vector<double> overhead_s; for (size_t i = 0; i + 1 < start_index; ++i) { const auto& p0 = anchor_points_[i]; const auto& p1 = anchor_points_[i + 1]; overhead_s.push_back(p1.path_point.s() - p0.path_point.s()); } std::vector<double> overhead_theta; std::vector<double> overhead_kappa; std::vector<double> overhead_dkappa; std::vector<double> overhead_x; std::vector<double> overhead_y; for (size_t i = 0; i < anchor_points_.size(); ++i) { const auto& p = anchor_points_[i]; if (i + 1 < start_index) { overhead_theta.push_back(p.path_point.theta()); overhead_kappa.push_back(p.path_point.kappa()); overhead_dkappa.push_back(p.path_point.dkappa()); overhead_x.push_back(p.path_point.x()); overhead_y.push_back(p.path_point.y()); } else { raw_point2d.emplace_back(p.path_point.x(), p.path_point.y()); } } const auto& start_anchor_point = anchor_points_[start_index - 1]; fixed_start_point_ = true; fixed_start_x_ = start_anchor_point.path_point.x(); fixed_start_y_ = start_anchor_point.path_point.y(); fixed_start_theta_ = common::math::NormalizeAngle(start_anchor_point.path_point.theta()); fixed_start_kappa_ = start_anchor_point.path_point.kappa(); fixed_start_dkappa_ = start_anchor_point.path_point.dkappa(); const auto& end_anchor_point = anchor_points_.back(); fixed_end_x_ = end_anchor_point.path_point.x(); fixed_end_y_ = end_anchor_point.path_point.y(); Smooth(raw_point2d, &opt_theta, &opt_kappa, &opt_dkappa, &opt_s, &opt_x, &opt_y); opt_theta.insert(opt_theta.begin(), overhead_theta.begin(), overhead_theta.end()); opt_kappa.insert(opt_kappa.begin(), overhead_kappa.begin(), overhead_kappa.end()); opt_dkappa.insert(opt_dkappa.begin(), overhead_dkappa.begin(), overhead_dkappa.end()); opt_s.insert(opt_s.begin(), overhead_s.begin(), overhead_s.end()); opt_x.insert(opt_x.begin(), overhead_x.begin(), overhead_x.end()); opt_y.insert(opt_y.begin(), overhead_y.begin(), overhead_y.end()); std::for_each(opt_x.begin(), opt_x.end(), [this](double& x) { x += zero_x_; }); std::for_each(opt_y.begin(), opt_y.end(), [this](double& y) { y += zero_y_; }); } } std::vector<common::PathPoint> smoothed_point2d = Interpolate(opt_theta, opt_kappa, opt_dkappa, opt_s, opt_x, opt_y, config_.resolution()); std::vector<ReferencePoint> ref_points; for (const auto& p : smoothed_point2d) { const double heading = p.theta(); const double kappa = p.kappa(); const double dkappa = p.dkappa(); common::SLPoint ref_sl_point; if (!raw_reference_line.XYToSL(p, &ref_sl_point)) { return false; } if (ref_sl_point.s() < 0 || ref_sl_point.s() > raw_reference_line.Length()) { continue; } ReferencePoint rlp = raw_reference_line.GetReferencePoint(ref_sl_point.s()); ref_points.emplace_back( ReferencePoint(hdmap::MapPathPoint(common::math::Vec2d(p.x(), p.y()), heading, rlp.lane_waypoints()), kappa, dkappa)); } ReferencePoint::RemoveDuplicates(&ref_points); if (ref_points.size() < 2) { AERROR << "Fail to generate smoothed reference line."; return false; } *smoothed_reference_line = ReferenceLine(ref_points); return true; } int SpiralReferenceLineSmoother::SmoothStandAlone( std::vector<Eigen::Vector2d> point2d, std::vector<double>* ptr_theta, std::vector<double>* ptr_kappa, std::vector<double>* ptr_dkappa, std::vector<double>* ptr_s, std::vector<double>* ptr_x, std::vector<double>* ptr_y) const { CHECK_GT(point2d.size(), 1U); SpiralProblemInterface* ptop = new SpiralProblemInterface(point2d); ptop->set_default_max_point_deviation(config_.spiral().max_deviation()); ptop->set_element_weight_curve_length(config_.spiral().weight_curve_length()); ptop->set_element_weight_kappa(config_.spiral().weight_kappa()); ptop->set_element_weight_dkappa(config_.spiral().weight_dkappa()); Ipopt::SmartPtr<Ipopt::TNLP> problem = ptop; // Create an instance of the IpoptApplication Ipopt::SmartPtr<Ipopt::IpoptApplication> app = IpoptApplicationFactory(); app->Options()->SetStringValue("hessian_approximation", "limited-memory"); app->Options()->SetIntegerValue("max_iter", config_.spiral().max_iteration()); app->Options()->SetNumericValue("tol", config_.spiral().opt_tol()); app->Options()->SetNumericValue("acceptable_tol", config_.spiral().opt_acceptable_tol()); Ipopt::ApplicationReturnStatus status = app->Initialize(); if (status != Ipopt::Solve_Succeeded) { ADEBUG << "*** Error during initialization!"; return -1; } status = app->OptimizeTNLP(problem); if (status == Ipopt::Solve_Succeeded || status == Ipopt::Solved_To_Acceptable_Level) { // Retrieve some statistics about the solve Ipopt::Index iter_count = app->Statistics()->IterationCount(); ADEBUG << "*** The problem solved in " << iter_count << " iterations!"; Ipopt::Number final_obj = app->Statistics()->FinalObjective(); ADEBUG << "*** The final value of the objective function is " << final_obj << '.'; } else { ADEBUG << "Return status: " << int(status); } ptop->get_optimization_results(ptr_theta, ptr_kappa, ptr_dkappa, ptr_s, ptr_x, ptr_y); if (!(status == Ipopt::Solve_Succeeded) && !(status == Ipopt::Solved_To_Acceptable_Level)) { return -1; } return app->Statistics()->IterationCount(); } bool SpiralReferenceLineSmoother::Smooth(std::vector<Eigen::Vector2d> point2d, std::vector<double>* ptr_theta, std::vector<double>* ptr_kappa, std::vector<double>* ptr_dkappa, std::vector<double>* ptr_s, std::vector<double>* ptr_x, std::vector<double>* ptr_y) const { CHECK_GT(point2d.size(), 1U); SpiralProblemInterface* ptop = new SpiralProblemInterface(point2d); ptop->set_default_max_point_deviation(config_.spiral().max_deviation()); if (fixed_start_point_) { ptop->set_start_point(fixed_start_x_, fixed_start_y_, fixed_start_theta_, fixed_start_kappa_, fixed_start_dkappa_); } ptop->set_end_point_position(fixed_end_x_, fixed_end_y_); ptop->set_element_weight_curve_length(config_.spiral().weight_curve_length()); ptop->set_element_weight_kappa(config_.spiral().weight_kappa()); ptop->set_element_weight_dkappa(config_.spiral().weight_dkappa()); Ipopt::SmartPtr<Ipopt::TNLP> problem = ptop; // Create an instance of the IpoptApplication Ipopt::SmartPtr<Ipopt::IpoptApplication> app = IpoptApplicationFactory(); app->Options()->SetStringValue("hessian_approximation", "limited-memory"); app->Options()->SetIntegerValue("print_level", 0); app->Options()->SetIntegerValue("max_iter", config_.spiral().max_iteration()); app->Options()->SetIntegerValue("acceptable_iter", config_.spiral().opt_acceptable_iteration()); app->Options()->SetNumericValue("tol", config_.spiral().opt_tol()); app->Options()->SetNumericValue("acceptable_tol", config_.spiral().opt_acceptable_tol()); Ipopt::ApplicationReturnStatus status = app->Initialize(); if (status != Ipopt::Solve_Succeeded) { ADEBUG << "*** Error during initialization!"; return false; } status = app->OptimizeTNLP(problem); if (status == Ipopt::Solve_Succeeded || status == Ipopt::Solved_To_Acceptable_Level) { // Retrieve some statistics about the solve Ipopt::Index iter_count = app->Statistics()->IterationCount(); ADEBUG << "*** The problem solved in " << iter_count << " iterations!"; Ipopt::Number final_obj = app->Statistics()->FinalObjective(); ADEBUG << "*** The final value of the objective function is " << final_obj << '.'; } else { ADEBUG << "Return status: " << int(status); } ptop->get_optimization_results(ptr_theta, ptr_kappa, ptr_dkappa, ptr_s, ptr_x, ptr_y); return status == Ipopt::Solve_Succeeded || status == Ipopt::Solved_To_Acceptable_Level; } std::vector<common::PathPoint> SpiralReferenceLineSmoother::Interpolate( const std::vector<double>& theta, const std::vector<double>& kappa, const std::vector<double>& dkappa, const std::vector<double>& s, const std::vector<double>& x, const std::vector<double>& y, const double resolution) const { std::vector<common::PathPoint> smoothed_point2d; double start_s = 0.0; common::PathPoint first_point = to_path_point(x.front(), y.front(), start_s, theta.front(), kappa.front(), dkappa.front()); smoothed_point2d.push_back(first_point); for (size_t i = 0; i + 1 < theta.size(); ++i) { double start_x = x[i]; double start_y = y[i]; auto path_point_seg = Interpolate( start_x, start_y, start_s, theta[i], kappa[i], dkappa[i], theta[i + 1], kappa[i + 1], dkappa[i + 1], s[i], resolution); smoothed_point2d.insert(smoothed_point2d.end(), path_point_seg.begin(), path_point_seg.end()); start_s = smoothed_point2d.back().s(); } return smoothed_point2d; } std::vector<common::PathPoint> SpiralReferenceLineSmoother::Interpolate( const double start_x, const double start_y, const double start_s, const double theta0, const double kappa0, const double dkappa0, const double theta1, const double kappa1, const double dkappa1, const double delta_s, const double resolution) const { std::vector<common::PathPoint> path_points; const auto angle_diff = common::math::AngleDiff(theta0, theta1); QuinticSpiralPath spiral_curve(theta0, kappa0, dkappa0, theta0 + angle_diff, kappa1, dkappa1, delta_s); size_t num_of_points = static_cast<size_t>(std::ceil(delta_s / resolution) + 1); for (size_t i = 1; i <= num_of_points; ++i) { const double inter_s = delta_s / static_cast<double>(num_of_points) * static_cast<double>(i); const double dx = spiral_curve.ComputeCartesianDeviationX<10>(inter_s); const double dy = spiral_curve.ComputeCartesianDeviationY<10>(inter_s); const double theta = common::math::NormalizeAngle(spiral_curve.Evaluate(0, inter_s)); const double kappa = spiral_curve.Evaluate(1, inter_s); const double dkappa = spiral_curve.Evaluate(2, inter_s); auto path_point = to_path_point(start_x + dx, start_y + dy, start_s + inter_s, theta, kappa, dkappa); path_points.push_back(std::move(path_point)); } return path_points; } common::PathPoint SpiralReferenceLineSmoother::to_path_point( const double x, const double y, const double s, const double theta, const double kappa, const double dkappa) const { common::PathPoint point; point.set_x(x); point.set_y(y); point.set_s(s); point.set_theta(theta); point.set_kappa(kappa); point.set_dkappa(dkappa); return point; } void SpiralReferenceLineSmoother::SetAnchorPoints( const std::vector<AnchorPoint>& anchor_points) { anchor_points_ = std::move(anchor_points); CHECK_GT(anchor_points_.size(), 1U); zero_x_ = anchor_points_.front().path_point.x(); zero_y_ = anchor_points_.front().path_point.y(); std::for_each(anchor_points_.begin(), anchor_points_.end(), [this](AnchorPoint& p) { auto curr_x = p.path_point.x(); auto curr_y = p.path_point.y(); p.path_point.set_x(curr_x - zero_x_); p.path_point.set_y(curr_y - zero_y_); }); } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/reference_line/reference_line.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/planning/reference_line/reference_line.h" #include <algorithm> #include <limits> #include <unordered_set> #include "absl/strings/str_cat.h" #include "absl/strings/str_join.h" #include "boost/math/tools/minima.hpp" #include "cyber/common/log.h" #include "modules/common/math/angle.h" #include "modules/common/math/cartesian_frenet_conversion.h" #include "modules/common/math/linear_interpolation.h" #include "modules/common/math/vec2d.h" #include "modules/common/util/map_util.h" #include "modules/common/util/string_util.h" #include "modules/common/util/util.h" #include "modules/planning/common/planning_gflags.h" namespace apollo { namespace planning { using MapPath = hdmap::Path; using apollo::common::SLPoint; using apollo::common::math::CartesianFrenetConverter; using apollo::common::math::Vec2d; using apollo::common::util::DistanceXY; using apollo::hdmap::InterpolatedIndex; ReferenceLine::ReferenceLine( const std::vector<ReferencePoint>& reference_points) : reference_points_(reference_points), map_path_(std::move(std::vector<hdmap::MapPathPoint>( reference_points.begin(), reference_points.end()))) { CHECK_EQ(static_cast<size_t>(map_path_.num_points()), reference_points_.size()); } ReferenceLine::ReferenceLine(const MapPath& hdmap_path) : map_path_(hdmap_path) { for (const auto& point : hdmap_path.path_points()) { DCHECK(!point.lane_waypoints().empty()); const auto& lane_waypoint = point.lane_waypoints()[0]; reference_points_.emplace_back( hdmap::MapPathPoint(point, point.heading(), lane_waypoint), 0.0, 0.0); } CHECK_EQ(static_cast<size_t>(map_path_.num_points()), reference_points_.size()); } bool ReferenceLine::Stitch(const ReferenceLine& other) { if (other.reference_points().empty()) { AWARN << "The other reference line is empty."; return true; } auto first_point = reference_points_.front(); common::SLPoint first_sl; if (!other.XYToSL(first_point, &first_sl)) { AWARN << "Failed to project the first point to the other reference line."; return false; } bool first_join = first_sl.s() > 0 && first_sl.s() < other.Length(); auto last_point = reference_points_.back(); common::SLPoint last_sl; if (!other.XYToSL(last_point, &last_sl)) { AWARN << "Failed to project the last point to the other reference line."; return false; } bool last_join = last_sl.s() > 0 && last_sl.s() < other.Length(); if (!first_join && !last_join) { AERROR << "These reference lines are not connected."; return false; } const auto& accumulated_s = other.map_path().accumulated_s(); const auto& other_points = other.reference_points(); auto lower = accumulated_s.begin(); static constexpr double kStitchingError = 1e-1; if (first_join) { if (first_sl.l() > kStitchingError) { AERROR << "lateral stitching error on first join of reference line too " "big, stitching fails"; return false; } lower = std::lower_bound(accumulated_s.begin(), accumulated_s.end(), first_sl.s()); size_t start_i = std::distance(accumulated_s.begin(), lower); reference_points_.insert(reference_points_.begin(), other_points.begin(), other_points.begin() + start_i); } if (last_join) { if (last_sl.l() > kStitchingError) { AERROR << "lateral stitching error on first join of reference line too " "big, stitching fails"; return false; } auto upper = std::upper_bound(lower, accumulated_s.end(), last_sl.s()); auto end_i = std::distance(accumulated_s.begin(), upper); reference_points_.insert(reference_points_.end(), other_points.begin() + end_i, other_points.end()); } map_path_ = MapPath(std::move(std::vector<hdmap::MapPathPoint>( reference_points_.begin(), reference_points_.end()))); return true; } ReferencePoint ReferenceLine::GetNearestReferencePoint( const common::math::Vec2d& xy) const { double min_dist = std::numeric_limits<double>::max(); size_t min_index = 0; for (size_t i = 0; i < reference_points_.size(); ++i) { const double distance = DistanceXY(xy, reference_points_[i]); if (distance < min_dist) { min_dist = distance; min_index = i; } } return reference_points_[min_index]; } bool ReferenceLine::Segment(const common::math::Vec2d& point, const double look_backward, const double look_forward) { common::SLPoint sl; if (!XYToSL(point, &sl)) { AERROR << "Failed to project point: " << point.DebugString(); return false; } return Segment(sl.s(), look_backward, look_forward); } bool ReferenceLine::Segment(const double s, const double look_backward, const double look_forward) { const auto& accumulated_s = map_path_.accumulated_s(); // inclusive auto start_index = std::distance(accumulated_s.begin(), std::lower_bound(accumulated_s.begin(), accumulated_s.end(), s - look_backward)); // exclusive auto end_index = std::distance(accumulated_s.begin(), std::upper_bound(accumulated_s.begin(), accumulated_s.end(), s + look_forward)); if (end_index - start_index < 2) { AERROR << "Too few reference points after shrinking."; return false; } reference_points_ = std::vector<ReferencePoint>(reference_points_.begin() + start_index, reference_points_.begin() + end_index); map_path_ = MapPath(std::vector<hdmap::MapPathPoint>( reference_points_.begin(), reference_points_.end())); return true; } common::FrenetFramePoint ReferenceLine::GetFrenetPoint( const common::PathPoint& path_point) const { if (reference_points_.empty()) { return common::FrenetFramePoint(); } common::SLPoint sl_point; XYToSL(path_point, &sl_point); common::FrenetFramePoint frenet_frame_point; frenet_frame_point.set_s(sl_point.s()); frenet_frame_point.set_l(sl_point.l()); const double theta = path_point.theta(); const double kappa = path_point.kappa(); const double l = frenet_frame_point.l(); ReferencePoint ref_point = GetReferencePoint(frenet_frame_point.s()); const double theta_ref = ref_point.heading(); const double kappa_ref = ref_point.kappa(); const double dkappa_ref = ref_point.dkappa(); const double dl = CartesianFrenetConverter::CalculateLateralDerivative( theta_ref, theta, l, kappa_ref); const double ddl = CartesianFrenetConverter::CalculateSecondOrderLateralDerivative( theta_ref, theta, kappa_ref, kappa, dkappa_ref, l); frenet_frame_point.set_dl(dl); frenet_frame_point.set_ddl(ddl); return frenet_frame_point; } std::pair<std::array<double, 3>, std::array<double, 3>> ReferenceLine::ToFrenetFrame(const common::TrajectoryPoint& traj_point) const { ACHECK(!reference_points_.empty()); common::SLPoint sl_point; XYToSL(traj_point.path_point(), &sl_point); std::array<double, 3> s_condition; std::array<double, 3> l_condition; ReferencePoint ref_point = GetReferencePoint(sl_point.s()); CartesianFrenetConverter::cartesian_to_frenet( sl_point.s(), ref_point.x(), ref_point.y(), ref_point.heading(), ref_point.kappa(), ref_point.dkappa(), traj_point.path_point().x(), traj_point.path_point().y(), traj_point.v(), traj_point.a(), traj_point.path_point().theta(), traj_point.path_point().kappa(), &s_condition, &l_condition); return std::make_pair(s_condition, l_condition); } ReferencePoint ReferenceLine::GetNearestReferencePoint(const double s) const { const auto& accumulated_s = map_path_.accumulated_s(); if (s < accumulated_s.front() - 1e-2) { AWARN << "The requested s: " << s << " < 0."; return reference_points_.front(); } if (s > accumulated_s.back() + 1e-2) { AWARN << "The requested s: " << s << " > reference line length: " << accumulated_s.back(); return reference_points_.back(); } auto it_lower = std::lower_bound(accumulated_s.begin(), accumulated_s.end(), s); if (it_lower == accumulated_s.begin()) { return reference_points_.front(); } auto index = std::distance(accumulated_s.begin(), it_lower); if (std::fabs(accumulated_s[index - 1] - s) < std::fabs(accumulated_s[index] - s)) { return reference_points_[index - 1]; } return reference_points_[index]; } size_t ReferenceLine::GetNearestReferenceIndex(const double s) const { const auto& accumulated_s = map_path_.accumulated_s(); if (s < accumulated_s.front() - 1e-2) { AWARN << "The requested s: " << s << " < 0."; return 0; } if (s > accumulated_s.back() + 1e-2) { AWARN << "The requested s: " << s << " > reference line length " << accumulated_s.back(); return reference_points_.size() - 1; } auto it_lower = std::lower_bound(accumulated_s.begin(), accumulated_s.end(), s); return std::distance(accumulated_s.begin(), it_lower); } std::vector<ReferencePoint> ReferenceLine::GetReferencePoints( double start_s, double end_s) const { if (start_s < 0.0) { start_s = 0.0; } if (end_s > Length()) { end_s = Length(); } std::vector<ReferencePoint> ref_points; auto start_index = GetNearestReferenceIndex(start_s); auto end_index = GetNearestReferenceIndex(end_s); if (start_index < end_index) { ref_points.assign(reference_points_.begin() + start_index, reference_points_.begin() + end_index); } return ref_points; } ReferencePoint ReferenceLine::GetReferencePoint(const double s) const { const auto& accumulated_s = map_path_.accumulated_s(); if (s < accumulated_s.front() - 1e-2) { AWARN << "The requested s: " << s << " < 0."; return reference_points_.front(); } if (s > accumulated_s.back() + 1e-2) { AWARN << "The requested s: " << s << " > reference line length: " << accumulated_s.back(); return reference_points_.back(); } auto interpolate_index = map_path_.GetIndexFromS(s); size_t index = interpolate_index.id; size_t next_index = index + 1; if (next_index >= reference_points_.size()) { next_index = reference_points_.size() - 1; } const auto& p0 = reference_points_[index]; const auto& p1 = reference_points_[next_index]; const double s0 = accumulated_s[index]; const double s1 = accumulated_s[next_index]; return InterpolateWithMatchedIndex(p0, s0, p1, s1, interpolate_index); } double ReferenceLine::FindMinDistancePoint(const ReferencePoint& p0, const double s0, const ReferencePoint& p1, const double s1, const double x, const double y) { auto func_dist_square = [&p0, &p1, &s0, &s1, &x, &y](const double s) { auto p = Interpolate(p0, s0, p1, s1, s); double dx = p.x() - x; double dy = p.y() - y; return dx * dx + dy * dy; }; return ::boost::math::tools::brent_find_minima(func_dist_square, s0, s1, 8) .first; } ReferencePoint ReferenceLine::GetReferencePoint(const double x, const double y) const { CHECK_GE(reference_points_.size(), 0U); auto func_distance_square = [](const ReferencePoint& point, const double x, const double y) { double dx = point.x() - x; double dy = point.y() - y; return dx * dx + dy * dy; }; double d_min = func_distance_square(reference_points_.front(), x, y); size_t index_min = 0; for (size_t i = 1; i < reference_points_.size(); ++i) { double d_temp = func_distance_square(reference_points_[i], x, y); if (d_temp < d_min) { d_min = d_temp; index_min = i; } } size_t index_start = index_min == 0 ? index_min : index_min - 1; size_t index_end = index_min + 1 == reference_points_.size() ? index_min : index_min + 1; if (index_start == index_end) { return reference_points_[index_start]; } double s0 = map_path_.accumulated_s()[index_start]; double s1 = map_path_.accumulated_s()[index_end]; double s = ReferenceLine::FindMinDistancePoint( reference_points_[index_start], s0, reference_points_[index_end], s1, x, y); return Interpolate(reference_points_[index_start], s0, reference_points_[index_end], s1, s); } bool ReferenceLine::SLToXY(const SLPoint& sl_point, common::math::Vec2d* const xy_point) const { if (map_path_.num_points() < 2) { AERROR << "The reference line has too few points."; return false; } const auto matched_point = GetReferencePoint(sl_point.s()); const auto angle = common::math::Angle16::from_rad(matched_point.heading()); xy_point->set_x(matched_point.x() - common::math::sin(angle) * sl_point.l()); xy_point->set_y(matched_point.y() + common::math::cos(angle) * sl_point.l()); return true; } bool ReferenceLine::XYToSL(const common::math::Vec2d& xy_point, SLPoint* const sl_point) const { double s = 0.0; double l = 0.0; if (!map_path_.GetProjection(xy_point, &s, &l)) { AERROR << "Cannot get nearest point from path."; return false; } sl_point->set_s(s); sl_point->set_l(l); return true; } ReferencePoint ReferenceLine::InterpolateWithMatchedIndex( const ReferencePoint& p0, const double s0, const ReferencePoint& p1, const double s1, const InterpolatedIndex& index) const { if (std::fabs(s0 - s1) < common::math::kMathEpsilon) { return p0; } double s = s0 + index.offset; DCHECK_LE(s0 - 1.0e-6, s) << "s: " << s << " is less than s0 : " << s0; DCHECK_LE(s, s1 + 1.0e-6) << "s: " << s << " is larger than s1: " << s1; auto map_path_point = map_path_.GetSmoothPoint(index); const double kappa = common::math::lerp(p0.kappa(), s0, p1.kappa(), s1, s); const double dkappa = common::math::lerp(p0.dkappa(), s0, p1.dkappa(), s1, s); return ReferencePoint(map_path_point, kappa, dkappa); } ReferencePoint ReferenceLine::Interpolate(const ReferencePoint& p0, const double s0, const ReferencePoint& p1, const double s1, const double s) { if (std::fabs(s0 - s1) < common::math::kMathEpsilon) { return p0; } DCHECK_LE(s0 - 1.0e-6, s) << " s: " << s << " is less than s0 :" << s0; DCHECK_LE(s, s1 + 1.0e-6) << "s: " << s << " is larger than s1: " << s1; const double x = common::math::lerp(p0.x(), s0, p1.x(), s1, s); const double y = common::math::lerp(p0.y(), s0, p1.y(), s1, s); const double heading = common::math::slerp(p0.heading(), s0, p1.heading(), s1, s); const double kappa = common::math::lerp(p0.kappa(), s0, p1.kappa(), s1, s); const double dkappa = common::math::lerp(p0.dkappa(), s0, p1.dkappa(), s1, s); std::vector<hdmap::LaneWaypoint> waypoints; if (!p0.lane_waypoints().empty() && !p1.lane_waypoints().empty()) { const auto& p0_waypoint = p0.lane_waypoints()[0]; if ((s - s0) + p0_waypoint.s <= p0_waypoint.lane->total_length()) { const double lane_s = p0_waypoint.s + s - s0; waypoints.emplace_back(p0_waypoint.lane, lane_s); } const auto& p1_waypoint = p1.lane_waypoints()[0]; if (p1_waypoint.lane->id().id() != p0_waypoint.lane->id().id() && p1_waypoint.s - (s1 - s) >= 0) { const double lane_s = p1_waypoint.s - (s1 - s); waypoints.emplace_back(p1_waypoint.lane, lane_s); } if (waypoints.empty()) { const double lane_s = p0_waypoint.s; waypoints.emplace_back(p0_waypoint.lane, lane_s); } } return ReferencePoint(hdmap::MapPathPoint({x, y}, heading, waypoints), kappa, dkappa); } const std::vector<ReferencePoint>& ReferenceLine::reference_points() const { return reference_points_; } const MapPath& ReferenceLine::map_path() const { return map_path_; } bool ReferenceLine::GetLaneWidth(const double s, double* const lane_left_width, double* const lane_right_width) const { if (map_path_.path_points().empty()) { return false; } if (!map_path_.GetLaneWidth(s, lane_left_width, lane_right_width)) { return false; } return true; } bool ReferenceLine::GetOffsetToMap(const double s, double* l_offset) const { if (map_path_.path_points().empty()) { return false; } auto ref_point = GetNearestReferencePoint(s); if (ref_point.lane_waypoints().empty()) { return false; } *l_offset = ref_point.lane_waypoints().front().l; return true; } bool ReferenceLine::GetRoadWidth(const double s, double* const road_left_width, double* const road_right_width) const { if (map_path_.path_points().empty()) { return false; } return map_path_.GetRoadWidth(s, road_left_width, road_right_width); } hdmap::Road::Type ReferenceLine::GetRoadType(const double s) const { const hdmap::HDMap* hdmap = hdmap::HDMapUtil::BaseMapPtr(); CHECK_NOTNULL(hdmap); hdmap::Road::Type road_type = hdmap::Road::UNKNOWN; SLPoint sl_point; sl_point.set_s(s); sl_point.set_l(0.0); common::math::Vec2d pt; SLToXY(sl_point, &pt); common::PointENU point; point.set_x(pt.x()); point.set_y(pt.y()); point.set_z(0.0); std::vector<hdmap::RoadInfoConstPtr> roads; hdmap->GetRoads(point, 4.0, &roads); for (auto road : roads) { if (road->type() != hdmap::Road::UNKNOWN) { road_type = road->type(); break; } } return road_type; } void ReferenceLine::GetLaneFromS( const double s, std::vector<hdmap::LaneInfoConstPtr>* lanes) const { CHECK_NOTNULL(lanes); auto ref_point = GetReferencePoint(s); std::unordered_set<hdmap::LaneInfoConstPtr> lane_set; for (const auto& lane_waypoint : ref_point.lane_waypoints()) { if (common::util::InsertIfNotPresent(&lane_set, lane_waypoint.lane)) { lanes->push_back(lane_waypoint.lane); } } } double ReferenceLine::GetDrivingWidth(const SLBoundary& sl_boundary) const { double lane_left_width = 0.0; double lane_right_width = 0.0; GetLaneWidth(sl_boundary.start_s(), &lane_left_width, &lane_right_width); double driving_width = std::max(lane_left_width - sl_boundary.end_l(), lane_right_width + sl_boundary.start_l()); driving_width = std::min(lane_left_width + lane_right_width, driving_width); ADEBUG << "Driving width [" << driving_width << "]."; return driving_width; } bool ReferenceLine::IsOnLane(const common::math::Vec2d& vec2d_point) const { common::SLPoint sl_point; if (!XYToSL(vec2d_point, &sl_point)) { return false; } return IsOnLane(sl_point); } bool ReferenceLine::IsOnLane(const SLBoundary& sl_boundary) const { if (sl_boundary.end_s() < 0 || sl_boundary.start_s() > Length()) { return false; } double middle_s = (sl_boundary.start_s() + sl_boundary.end_s()) / 2.0; double lane_left_width = 0.0; double lane_right_width = 0.0; map_path_.GetLaneWidth(middle_s, &lane_left_width, &lane_right_width); return sl_boundary.start_l() <= lane_left_width && sl_boundary.end_l() >= -lane_right_width; } bool ReferenceLine::IsOnLane(const SLPoint& sl_point) const { if (sl_point.s() <= 0 || sl_point.s() > map_path_.length()) { return false; } double left_width = 0.0; double right_width = 0.0; if (!GetLaneWidth(sl_point.s(), &left_width, &right_width)) { return false; } return sl_point.l() >= -right_width && sl_point.l() <= left_width; } bool ReferenceLine::IsBlockRoad(const common::math::Box2d& box2d, double gap) const { return map_path_.OverlapWith(box2d, gap); } bool ReferenceLine::IsOnRoad(const common::math::Vec2d& vec2d_point) const { common::SLPoint sl_point; return XYToSL(vec2d_point, &sl_point) && IsOnRoad(sl_point); } bool ReferenceLine::IsOnRoad(const SLBoundary& sl_boundary) const { if (sl_boundary.end_s() < 0 || sl_boundary.start_s() > Length()) { return false; } double middle_s = (sl_boundary.start_s() + sl_boundary.end_s()) / 2.0; double road_left_width = 0.0; double road_right_width = 0.0; map_path_.GetRoadWidth(middle_s, &road_left_width, &road_right_width); return sl_boundary.start_l() <= road_left_width && sl_boundary.end_l() >= -road_right_width; } bool ReferenceLine::IsOnRoad(const SLPoint& sl_point) const { if (sl_point.s() <= 0 || sl_point.s() > map_path_.length()) { return false; } double road_left_width = 0.0; double road_right_width = 0.0; if (!GetRoadWidth(sl_point.s(), &road_left_width, &road_right_width)) { return false; } return sl_point.l() >= -road_right_width && sl_point.l() <= road_left_width; } // Return a rough approximated SLBoundary using box length. It is guaranteed to // be larger than the accurate SL boundary. bool ReferenceLine::GetApproximateSLBoundary( const common::math::Box2d& box, const double start_s, const double end_s, SLBoundary* const sl_boundary) const { double s = 0.0; double l = 0.0; double distance = 0.0; if (!map_path_.GetProjectionWithHueristicParams(box.center(), start_s, end_s, &s, &l, &distance)) { AERROR << "Cannot get projection point from path."; return false; } auto projected_point = map_path_.GetSmoothPoint(s); auto rotated_box = box; rotated_box.RotateFromCenter(-projected_point.heading()); std::vector<common::math::Vec2d> corners; rotated_box.GetAllCorners(&corners); double min_s(std::numeric_limits<double>::max()); double max_s(std::numeric_limits<double>::lowest()); double min_l(std::numeric_limits<double>::max()); double max_l(std::numeric_limits<double>::lowest()); for (const auto& point : corners) { // x <--> s, y <--> l // Because the box is rotated to align the reference line min_s = std::fmin(min_s, point.x() - rotated_box.center().x() + s); max_s = std::fmax(max_s, point.x() - rotated_box.center().x() + s); min_l = std::fmin(min_l, point.y() - rotated_box.center().y() + l); max_l = std::fmax(max_l, point.y() - rotated_box.center().y() + l); } sl_boundary->set_start_s(min_s); sl_boundary->set_end_s(max_s); sl_boundary->set_start_l(min_l); sl_boundary->set_end_l(max_l); return true; } bool ReferenceLine::GetSLBoundary(const common::math::Box2d& box, SLBoundary* const sl_boundary) const { double start_s(std::numeric_limits<double>::max()); double end_s(std::numeric_limits<double>::lowest()); double start_l(std::numeric_limits<double>::max()); double end_l(std::numeric_limits<double>::lowest()); std::vector<common::math::Vec2d> corners; box.GetAllCorners(&corners); // The order must be counter-clockwise std::vector<SLPoint> sl_corners; for (const auto& point : corners) { SLPoint sl_point; if (!XYToSL(point, &sl_point)) { AERROR << "Failed to get projection for point: " << point.DebugString() << " on reference line."; return false; } sl_corners.push_back(std::move(sl_point)); } for (size_t i = 0; i < corners.size(); ++i) { auto index0 = i; auto index1 = (i + 1) % corners.size(); const auto& p0 = corners[index0]; const auto& p1 = corners[index1]; const auto p_mid = (p0 + p1) * 0.5; SLPoint sl_point_mid; if (!XYToSL(p_mid, &sl_point_mid)) { AERROR << "Failed to get projection for point: " << p_mid.DebugString() << " on reference line."; return false; } Vec2d v0(sl_corners[index1].s() - sl_corners[index0].s(), sl_corners[index1].l() - sl_corners[index0].l()); Vec2d v1(sl_point_mid.s() - sl_corners[index0].s(), sl_point_mid.l() - sl_corners[index0].l()); *sl_boundary->add_boundary_point() = sl_corners[index0]; // sl_point is outside of polygon; add to the vertex list if (v0.CrossProd(v1) < 0.0) { *sl_boundary->add_boundary_point() = sl_point_mid; } } for (const auto& sl_point : sl_boundary->boundary_point()) { start_s = std::fmin(start_s, sl_point.s()); end_s = std::fmax(end_s, sl_point.s()); start_l = std::fmin(start_l, sl_point.l()); end_l = std::fmax(end_l, sl_point.l()); } sl_boundary->set_start_s(start_s); sl_boundary->set_end_s(end_s); sl_boundary->set_start_l(start_l); sl_boundary->set_end_l(end_l); return true; } std::vector<hdmap::LaneSegment> ReferenceLine::GetLaneSegments( const double start_s, const double end_s) const { return map_path_.GetLaneSegments(start_s, end_s); } bool ReferenceLine::GetSLBoundary(const hdmap::Polygon& polygon, SLBoundary* const sl_boundary) const { double start_s(std::numeric_limits<double>::max()); double end_s(std::numeric_limits<double>::lowest()); double start_l(std::numeric_limits<double>::max()); double end_l(std::numeric_limits<double>::lowest()); for (const auto& point : polygon.point()) { SLPoint sl_point; if (!XYToSL(point, &sl_point)) { AERROR << "Failed to get projection for point: " << point.DebugString() << " on reference line."; return false; } start_s = std::fmin(start_s, sl_point.s()); end_s = std::fmax(end_s, sl_point.s()); start_l = std::fmin(start_l, sl_point.l()); end_l = std::fmax(end_l, sl_point.l()); } sl_boundary->set_start_s(start_s); sl_boundary->set_end_s(end_s); sl_boundary->set_start_l(start_l); sl_boundary->set_end_l(end_l); return true; } bool ReferenceLine::HasOverlap(const common::math::Box2d& box) const { SLBoundary sl_boundary; if (!GetSLBoundary(box, &sl_boundary)) { AERROR << "Failed to get sl boundary for box: " << box.DebugString(); return false; } if (sl_boundary.end_s() < 0 || sl_boundary.start_s() > Length()) { return false; } if (sl_boundary.start_l() * sl_boundary.end_l() < 0) { return false; } double lane_left_width = 0.0; double lane_right_width = 0.0; const double mid_s = (sl_boundary.start_s() + sl_boundary.end_s()) / 2.0; if (mid_s < 0 || mid_s > Length()) { ADEBUG << "ref_s is out of range: " << mid_s; return false; } if (!map_path_.GetLaneWidth(mid_s, &lane_left_width, &lane_right_width)) { AERROR << "Failed to get width at s = " << mid_s; return false; } if (sl_boundary.start_l() > 0) { return sl_boundary.start_l() < lane_left_width; } else { return sl_boundary.end_l() > -lane_right_width; } } std::string ReferenceLine::DebugString() const { const auto limit = std::min(reference_points_.size(), static_cast<size_t>(FLAGS_trajectory_point_num_for_debug)); return absl::StrCat( "point num:", reference_points_.size(), absl::StrJoin(reference_points_.begin(), reference_points_.begin() + limit, "", apollo::common::util::DebugStringFormatter())); } double ReferenceLine::GetSpeedLimitFromS(const double s) const { for (const auto& speed_limit : speed_limit_) { if (s >= speed_limit.start_s && s <= speed_limit.end_s) { return speed_limit.speed_limit; } } const auto& map_path_point = GetReferencePoint(s); double speed_limit = FLAGS_planning_upper_speed_limit; bool speed_limit_found = false; for (const auto& lane_waypoint : map_path_point.lane_waypoints()) { if (lane_waypoint.lane == nullptr) { AWARN << "lane_waypoint.lane is nullptr."; continue; } speed_limit_found = true; speed_limit = std::fmin(lane_waypoint.lane->lane().speed_limit(), speed_limit); } if (!speed_limit_found) { // use default speed limit based on road_type speed_limit = FLAGS_default_city_road_speed_limit; hdmap::Road::Type road_type = GetRoadType(s); if (road_type == hdmap::Road::HIGHWAY) { speed_limit = FLAGS_default_highway_speed_limit; } } return speed_limit; } void ReferenceLine::AddSpeedLimit(double start_s, double end_s, double speed_limit) { std::vector<SpeedLimit> new_speed_limit; for (const auto& limit : speed_limit_) { if (start_s >= limit.end_s || end_s <= limit.start_s) { new_speed_limit.emplace_back(limit); } else { // start_s < speed_limit.end_s && end_s > speed_limit.start_s double min_speed = std::min(limit.speed_limit, speed_limit); if (start_s >= limit.start_s) { new_speed_limit.emplace_back(limit.start_s, start_s, min_speed); if (end_s <= limit.end_s) { new_speed_limit.emplace_back(start_s, end_s, min_speed); new_speed_limit.emplace_back(end_s, limit.end_s, limit.speed_limit); } else { new_speed_limit.emplace_back(start_s, limit.end_s, min_speed); } } else { new_speed_limit.emplace_back(start_s, limit.start_s, speed_limit); if (end_s <= limit.end_s) { new_speed_limit.emplace_back(limit.start_s, end_s, min_speed); new_speed_limit.emplace_back(end_s, limit.end_s, limit.speed_limit); } else { new_speed_limit.emplace_back(limit.start_s, limit.end_s, min_speed); } } start_s = limit.end_s; end_s = std::max(end_s, limit.end_s); } } speed_limit_.clear(); if (end_s > start_s) { new_speed_limit.emplace_back(start_s, end_s, speed_limit); } for (const auto& limit : new_speed_limit) { if (limit.start_s < limit.end_s) { speed_limit_.emplace_back(limit); } } std::sort(speed_limit_.begin(), speed_limit_.end(), [](const SpeedLimit& a, const SpeedLimit& b) { if (a.start_s != b.start_s) { return a.start_s < b.start_s; } if (a.end_s != b.end_s) { return a.end_s < b.end_s; } return a.speed_limit < b.speed_limit; }); } } // namespace planning } // namespace apollo
0
apollo_public_repos/apollo/modules/planning
apollo_public_repos/apollo/modules/planning/reference_line/reference_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. *****************************************************************************/ /** * @file reference_point.cc **/ #include "modules/planning/reference_line/reference_point.h" #include "absl/strings/str_cat.h" #include "modules/common/util/point_factory.h" namespace apollo { namespace planning { namespace { // Minimum distance to remove duplicated points. const double kDuplicatedPointsEpsilon = 1e-7; } // namespace ReferencePoint::ReferencePoint(const MapPathPoint& map_path_point, const double kappa, const double dkappa) : hdmap::MapPathPoint(map_path_point), kappa_(kappa), dkappa_(dkappa) {} common::PathPoint ReferencePoint::ToPathPoint(double s) const { return common::util::PointFactory::ToPathPoint(x(), y(), 0.0, s, heading(), kappa_, dkappa_); } double ReferencePoint::kappa() const { return kappa_; } double ReferencePoint::dkappa() const { return dkappa_; } std::string ReferencePoint::DebugString() const { return absl::StrCat("{x: ", x(), ", y: ", y(), ", theta: ", heading(), ", kappa: ", kappa(), ", dkappa: ", dkappa(), "}"); } void ReferencePoint::RemoveDuplicates(std::vector<ReferencePoint>* points) { CHECK_NOTNULL(points); int count = 0; const double limit = kDuplicatedPointsEpsilon * kDuplicatedPointsEpsilon; for (size_t i = 0; i < points->size(); ++i) { if (count == 0 || (*points)[i].DistanceSquareTo((*points)[count - 1]) > limit) { (*points)[count++] = (*points)[i]; } else { (*points)[count - 1].add_lane_waypoints((*points)[i].lane_waypoints()); } } points->resize(count); } } // namespace planning } // namespace apollo
0