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/prediction
|
apollo_public_repos/apollo/modules/prediction/predictor/predictor_manager_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.
*****************************************************************************/
#include "modules/prediction/predictor/predictor_manager.h"
#include "cyber/common/file.h"
#include "modules/prediction/common/kml_map_based_test.h"
#include "modules/prediction/common/prediction_gflags.h"
#include "modules/prediction/container/container_manager.h"
#include "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/prediction/evaluator/evaluator_manager.h"
namespace apollo {
namespace prediction {
using apollo::common::adapter::AdapterConfig;
class PredictorManagerTest : public KMLMapBasedTest {
public:
void SetUp() override {
std::string file =
"modules/prediction/testdata/single_perception_vehicle_onlane.pb.txt";
ACHECK(cyber::common::GetProtoFromFile(file, &perception_obstacles_));
container_manager_.reset(new ContainerManager());
evaluator_manager_.reset(new EvaluatorManager());
predictor_manager_.reset(new PredictorManager());
}
protected:
apollo::perception::PerceptionObstacles perception_obstacles_;
common::adapter::AdapterManagerConfig adapter_conf_;
PredictionConf prediction_conf_;
std::unique_ptr<ContainerManager> container_manager_;
std::unique_ptr<EvaluatorManager> evaluator_manager_;
std::unique_ptr<PredictorManager> predictor_manager_;
};
TEST_F(PredictorManagerTest, General) {
FLAGS_enable_trim_prediction_trajectory = false;
std::string conf_file = "modules/prediction/testdata/adapter_conf.pb.txt";
bool ret_load_conf =
cyber::common::GetProtoFromFile(conf_file, &adapter_conf_);
EXPECT_TRUE(ret_load_conf);
EXPECT_TRUE(adapter_conf_.IsInitialized());
container_manager_->Init(adapter_conf_);
evaluator_manager_->Init(prediction_conf_);
predictor_manager_->Init(prediction_conf_);
auto obstacles_container =
container_manager_->GetContainer<ObstaclesContainer>(
AdapterConfig::PERCEPTION_OBSTACLES);
CHECK_NOTNULL(obstacles_container);
obstacles_container->Insert(perception_obstacles_);
auto adc_trajectory_container =
container_manager_->GetContainer<ADCTrajectoryContainer>(
AdapterConfig::PLANNING_TRAJECTORY);
evaluator_manager_->Run(adc_trajectory_container, obstacles_container);
predictor_manager_->Run(perception_obstacles_, adc_trajectory_container,
obstacles_container);
const PredictionObstacles& prediction_obstacles =
predictor_manager_->prediction_obstacles();
EXPECT_EQ(prediction_obstacles.prediction_obstacle_size(), 1);
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction
|
apollo_public_repos/apollo/modules/prediction/predictor/predictor_manager.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
* @brief Use predictor manager to manage all predictors
*/
#pragma once
#include <map>
#include <memory>
#include "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/prediction/predictor/predictor.h"
#include "modules/prediction/proto/prediction_conf.pb.h"
/**
* @namespace apollo::prediction
* @brief apollo::prediction
*/
namespace apollo {
namespace prediction {
class PredictorManager {
public:
/**
* @brief Constructor
*/
PredictorManager();
/**
* @brief Destructor
*/
virtual ~PredictorManager() = default;
/**
* @brief Initializer
* @param Prediction config
*/
void Init(const PredictionConf& config);
/**
* @brief Get predictor
* @return Pointer to the predictor
*/
Predictor* GetPredictor(const ObstacleConf::PredictorType& type);
/**
* @brief Execute the predictor generation
* @param Adc trajectory container
* @param Obstacles container
*/
void Run(const apollo::perception::PerceptionObstacles& perception_obstacles,
const ADCTrajectoryContainer* adc_trajectory_container,
ObstaclesContainer* obstacles_container);
/**
* @brief Predict a single obstacle
* @param A pointer to adc_trajectory_container
* @param A pointer to the specific obstacle
* @param A pointer to the obstacles container
* @param A pointer to prediction_obstacle
*/
void PredictObstacle(const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle,
ObstaclesContainer* obstacles_container,
PredictionObstacle* const prediction_obstacle);
/**
* @brief Get prediction obstacles
* @return Prediction obstacles
*/
const PredictionObstacles& prediction_obstacles();
private:
/**
* @brief Register a predictor by type
* @param Predictor type
*/
void RegisterPredictor(const ObstacleConf::PredictorType& type);
/**
* @brief Create a predictor by type
* @param Predictor type
* @return A unique pointer to the predictor
*/
std::unique_ptr<Predictor> CreatePredictor(
const ObstacleConf::PredictorType& type);
/**
* @brief Register all predictors
*/
void RegisterPredictors();
void PredictObstacles(
const apollo::perception::PerceptionObstacles& perception_obstacles,
const ADCTrajectoryContainer* adc_trajectory_container,
ObstaclesContainer* obstacles_container);
void PredictObstaclesInParallel(
const apollo::perception::PerceptionObstacles& perception_obstacles,
const ADCTrajectoryContainer* adc_trajectory_container,
ObstaclesContainer* obstacles_container);
void InitVehiclePredictors(const ObstacleConf& conf);
void InitCyclistPredictors(const ObstacleConf& conf);
void InitDefaultPredictors(const ObstacleConf& conf);
void RunVehiclePredictor(
const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle, ObstaclesContainer* obstacles_container);
void RunPedestrianPredictor(
const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle, ObstaclesContainer* obstacles_container);
void RunCyclistPredictor(
const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle, ObstaclesContainer* obstacles_container);
void RunDefaultPredictor(
const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle, ObstaclesContainer* obstacles_container);
void RunEmptyPredictor(const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle,
ObstaclesContainer* obstacles_container);
private:
std::map<ObstacleConf::PredictorType, std::unique_ptr<Predictor>> predictors_;
ObstacleConf::PredictorType vehicle_on_lane_predictor_ =
ObstacleConf::LANE_SEQUENCE_PREDICTOR;
ObstacleConf::PredictorType vehicle_off_lane_predictor_ =
ObstacleConf::FREE_MOVE_PREDICTOR;
ObstacleConf::PredictorType vehicle_in_junction_predictor_ =
ObstacleConf::LANE_SEQUENCE_PREDICTOR;
ObstacleConf::PredictorType cyclist_on_lane_predictor_ =
ObstacleConf::LANE_SEQUENCE_PREDICTOR;
ObstacleConf::PredictorType cyclist_off_lane_predictor_ =
ObstacleConf::FREE_MOVE_PREDICTOR;
ObstacleConf::PredictorType pedestrian_predictor_ =
ObstacleConf::FREE_MOVE_PREDICTOR;
ObstacleConf::PredictorType default_on_lane_predictor_ =
ObstacleConf::LANE_SEQUENCE_PREDICTOR;
ObstacleConf::PredictorType default_off_lane_predictor_ =
ObstacleConf::FREE_MOVE_PREDICTOR;
ObstacleConf::PredictorType vehicle_on_lane_caution_predictor_ =
ObstacleConf::MOVE_SEQUENCE_PREDICTOR;
ObstacleConf::PredictorType vehicle_in_junction_caution_predictor_ =
ObstacleConf::INTERACTION_PREDICTOR;
ObstacleConf::PredictorType vehicle_default_caution_predictor_ =
ObstacleConf::EXTRAPOLATION_PREDICTOR;
ObstacleConf::PredictorType vehicle_interactive_predictor_ =
ObstacleConf::EMPTY_PREDICTOR;
PredictionObstacles prediction_obstacles_;
};
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction
|
apollo_public_repos/apollo/modules/prediction/predictor/predictor.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
* @brief Define the predictor base class
*/
#pragma once
#include <vector>
#include "modules/prediction/container/adc_trajectory/adc_trajectory_container.h"
#include "modules/prediction/container/obstacles/obstacle.h"
#include "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/common_msgs/prediction_msgs/prediction_obstacle.pb.h"
/**
* @namespace apollo::prediction
* @brief apollo::prediction
*/
namespace apollo {
namespace prediction {
class Predictor {
public:
/**
* @brief Constructor
*/
Predictor() = default;
/**
* @brief Destructor
*/
virtual ~Predictor() = default;
/**
* @brief Make prediction
* @param Obstacle pointer
* @param Obstacles container
* @return If predicted successfully
*/
virtual bool Predict(const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle,
ObstaclesContainer* obstacles_container) = 0;
/**
* @brief Get trajectory size
* @return Size of trajectories
*/
int NumOfTrajectories(const Obstacle& obstacle);
/**
* @brief Clear all trajectories
*/
virtual void Clear();
/**
* @brief Trim prediction trajectories by adc trajectory
* @param ADC trajectory container
* @param obstacle,
*/
void TrimTrajectories(const ADCTrajectoryContainer& adc_trajectory_container,
Obstacle* obstacle);
/**
* @brief get the predictor type
* @return the predictor type
*/
const ObstacleConf::PredictorType& predictor_type();
protected:
/**
* @brief Generate trajectory from trajectory points
* @param A vector of trajectory points
* @return Generated trajectory
*/
static Trajectory GenerateTrajectory(
const std::vector<apollo::common::TrajectoryPoint>& points);
/**
* @brief Set equal probability to prediction trajectories
* @param probability total probability
* @param start_index The start index to set equal probability
* @param obstacle
*/
void SetEqualProbability(const double probability, const int start_index,
Obstacle* obstacle_ptr);
/**
* @brief Trim a single prediction trajectory,
* keep the portion that is not in junction.
* @param adc_segments trajectory segments of ADC trajectory
* @param obstacle
* @param trajectory The trimed prediction trajectory
* @return If the prediction trajectory is trimed
*/
bool TrimTrajectory(const ADCTrajectoryContainer& adc_trajectory_container,
Obstacle* obstacle, Trajectory* trajectory);
/**
* @brief Determine if an obstacle is supposed to stop within a distance
* @param The latest feature of obstacle
* @param The distance to stop
* @param The output param of acceleration
* @return If the obstacle is supposed to stop within a distance
*/
bool SupposedToStop(const Feature& feature, const double stop_distance,
double* acceleration);
protected:
ObstacleConf::PredictorType predictor_type_;
};
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction
|
apollo_public_repos/apollo/modules/prediction/predictor/BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("//tools:cpplint.bzl", "cpplint")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "predictor_manager",
srcs = ["predictor_manager.cc"],
hdrs = ["predictor_manager.h"],
copts = [
"-DMODULE_NAME=\\\"prediction\\\"",
],
deps = [
"//modules/prediction/common:feature_output",
"//modules/prediction/common:prediction_thread_pool",
"//modules/prediction/predictor/empty:empty_predictor",
"//modules/prediction/predictor/extrapolation:extrapolation_predictor",
"//modules/prediction/predictor/free_move:free_move_predictor",
"//modules/prediction/predictor/interaction:interaction_predictor",
"//modules/prediction/predictor/junction:junction_predictor",
"//modules/prediction/predictor/lane_sequence:lane_sequence_predictor",
"//modules/prediction/predictor/move_sequence:move_sequence_predictor",
"//modules/prediction/predictor/single_lane:single_lane_predictor",
"//modules/prediction/proto:prediction_conf_cc_proto",
"//modules/prediction/scenario:scenario_manager",
],
)
cc_test(
name = "predictor_manager_test",
size = "small",
srcs = ["predictor_manager_test.cc"],
data = [
"//modules/prediction:prediction_data",
"//modules/prediction:prediction_testdata",
],
linkopts = [
"-lgomp",
],
deps = [
"//modules/prediction/common:kml_map_based_test",
"//modules/prediction/evaluator:evaluator_manager",
"//modules/prediction/predictor:predictor_manager",
],
linkstatic = True,
)
cc_library(
name = "predictor",
srcs = ["predictor.cc"],
hdrs = ["predictor.h"],
copts = [
"-DMODULE_NAME=\\\"prediction\\\"",
],
deps = [
"//modules/prediction/container/adc_trajectory:adc_trajectory_container",
"//modules/prediction/container/obstacles:obstacle",
"//modules/prediction/container/obstacles:obstacles_container",
],
)
cpplint()
| 0
|
apollo_public_repos/apollo/modules/prediction
|
apollo_public_repos/apollo/modules/prediction/predictor/predictor.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/prediction/predictor/predictor.h"
#include <algorithm>
#include "modules/prediction/common/prediction_gflags.h"
namespace apollo {
namespace prediction {
using apollo::common::PathPoint;
using apollo::common::TrajectoryPoint;
int Predictor::NumOfTrajectories(const Obstacle& obstacle) {
CHECK_GT(obstacle.history_size(), 0U);
return obstacle.latest_feature().predicted_trajectory_size();
}
Trajectory Predictor::GenerateTrajectory(
const std::vector<TrajectoryPoint>& points) {
Trajectory trajectory;
*trajectory.mutable_trajectory_point() = {points.begin(), points.end()};
return trajectory;
}
void Predictor::SetEqualProbability(const double total_probability,
const int start_index,
Obstacle* obstacle_ptr) {
int num = NumOfTrajectories(*obstacle_ptr);
ACHECK(num > start_index);
const auto prob = total_probability / static_cast<double>(num - start_index);
for (int i = start_index; i < num; ++i) {
obstacle_ptr->mutable_latest_feature()
->mutable_predicted_trajectory(i)
->set_probability(prob);
}
}
void Predictor::Clear() {}
void Predictor::TrimTrajectories(
const ADCTrajectoryContainer& adc_trajectory_container,
Obstacle* obstacle) {
for (auto& predicted_trajectory :
*obstacle->mutable_latest_feature()->mutable_predicted_trajectory()) {
TrimTrajectory(adc_trajectory_container, obstacle, &predicted_trajectory);
}
}
bool Predictor::TrimTrajectory(
const ADCTrajectoryContainer& adc_trajectory_container, Obstacle* obstacle,
Trajectory* trajectory) {
if (!adc_trajectory_container.IsProtected()) {
ADEBUG << "Not in protection mode.";
return false;
}
if (obstacle == nullptr || obstacle->history_size() == 0) {
AERROR << "Invalid obstacle.";
return false;
}
int num_of_point = trajectory->trajectory_point_size();
if (num_of_point == 0) {
return false;
}
const Feature& feature = obstacle->latest_feature();
double vehicle_length = feature.length();
double vehicle_heading = feature.velocity_heading();
double forward_length =
std::fmax(vehicle_length / 2.0 - FLAGS_distance_beyond_junction, 0.0);
double front_x = trajectory->trajectory_point(0).path_point().x() +
forward_length * std::cos(vehicle_heading);
double front_y = trajectory->trajectory_point(0).path_point().y() +
forward_length * std::sin(vehicle_heading);
PathPoint front_point;
front_point.set_x(front_x);
front_point.set_y(front_y);
bool front_in_junction =
adc_trajectory_container.IsPointInJunction(front_point);
const PathPoint& start_point = trajectory->trajectory_point(0).path_point();
bool start_in_junction =
adc_trajectory_container.IsPointInJunction(start_point);
if (front_in_junction || start_in_junction) {
return false;
}
int index = 0;
while (index < num_of_point) {
const PathPoint& point = trajectory->trajectory_point(index).path_point();
if (adc_trajectory_container.IsPointInJunction(point)) {
break;
}
++index;
}
// if no intersect
if (index == num_of_point) {
return false;
}
for (int i = index; i < num_of_point; ++i) {
trajectory->mutable_trajectory_point()->RemoveLast();
}
return true;
}
bool Predictor::SupposedToStop(const Feature& feature,
const double stop_distance,
double* acceleration) {
if (stop_distance < std::max(feature.length() * 0.5, 1.0)) {
return false;
}
if (stop_distance > FLAGS_distance_to_slow_down_at_stop_sign) {
return false;
}
double speed = feature.speed();
*acceleration = -speed * speed / (2.0 * stop_distance);
return *acceleration <= -FLAGS_double_precision &&
*acceleration >= FLAGS_vehicle_min_linear_acc;
}
const ObstacleConf::PredictorType& Predictor::predictor_type() {
return predictor_type_;
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction
|
apollo_public_repos/apollo/modules/prediction/predictor/predictor_manager.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/prediction/predictor/predictor_manager.h"
#include <list>
#include <unordered_map>
#include "modules/prediction/common/feature_output.h"
#include "modules/prediction/common/prediction_constants.h"
#include "modules/prediction/common/prediction_gflags.h"
#include "modules/prediction/common/prediction_system_gflags.h"
#include "modules/prediction/common/prediction_thread_pool.h"
#include "modules/prediction/container/container_manager.h"
#include "modules/prediction/predictor/empty/empty_predictor.h"
#include "modules/prediction/predictor/extrapolation/extrapolation_predictor.h"
#include "modules/prediction/predictor/free_move/free_move_predictor.h"
#include "modules/prediction/predictor/interaction/interaction_predictor.h"
#include "modules/prediction/predictor/junction/junction_predictor.h"
#include "modules/prediction/predictor/lane_sequence/lane_sequence_predictor.h"
#include "modules/prediction/predictor/move_sequence/move_sequence_predictor.h"
#include "modules/prediction/predictor/single_lane/single_lane_predictor.h"
#include "modules/prediction/scenario/scenario_manager.h"
namespace apollo {
namespace prediction {
namespace {
using apollo::perception::PerceptionObstacle;
using apollo::perception::PerceptionObstacles;
using IdObstacleListMap = std::unordered_map<int, std::list<Obstacle*>>;
void GroupObstaclesByObstacleId(const int obstacle_id,
ObstaclesContainer* const obstacles_container,
IdObstacleListMap* const id_obstacle_map) {
Obstacle* obstacle_ptr = obstacles_container->GetObstacle(obstacle_id);
if (obstacle_ptr == nullptr) {
AERROR << "Null obstacle [" << obstacle_id << "] found";
return;
}
int id_mod = obstacle_id % FLAGS_max_thread_num;
(*id_obstacle_map)[id_mod].push_back(obstacle_ptr);
}
} // namespace
PredictorManager::PredictorManager() { RegisterPredictors(); }
void PredictorManager::RegisterPredictors() {
RegisterPredictor(ObstacleConf::LANE_SEQUENCE_PREDICTOR);
RegisterPredictor(ObstacleConf::MOVE_SEQUENCE_PREDICTOR);
RegisterPredictor(ObstacleConf::SINGLE_LANE_PREDICTOR);
RegisterPredictor(ObstacleConf::FREE_MOVE_PREDICTOR);
RegisterPredictor(ObstacleConf::EMPTY_PREDICTOR);
RegisterPredictor(ObstacleConf::JUNCTION_PREDICTOR);
RegisterPredictor(ObstacleConf::EXTRAPOLATION_PREDICTOR);
RegisterPredictor(ObstacleConf::INTERACTION_PREDICTOR);
}
void PredictorManager::Init(const PredictionConf& config) {
for (const auto& conf : config.obstacle_conf()) {
if (!conf.has_obstacle_type()) {
AERROR << "Obstacle config [" << conf.ShortDebugString()
<< "] has not defined obstacle type.";
continue;
}
if (!conf.has_predictor_type()) {
AERROR << "Obstacle config [" << conf.ShortDebugString()
<< "] has not defined predictor type.";
continue;
}
switch (conf.obstacle_type()) {
case PerceptionObstacle::VEHICLE: {
InitVehiclePredictors(conf);
break;
}
case PerceptionObstacle::BICYCLE: {
InitCyclistPredictors(conf);
break;
}
case PerceptionObstacle::PEDESTRIAN: {
pedestrian_predictor_ = conf.predictor_type();
break;
}
case PerceptionObstacle::UNKNOWN: {
InitDefaultPredictors(conf);
break;
}
default: { break; }
}
}
AINFO << "Defined vehicle on lane obstacle predictor ["
<< vehicle_on_lane_predictor_ << "].";
AINFO << "Defined vehicle off lane obstacle predictor ["
<< vehicle_off_lane_predictor_ << "].";
AINFO << "Defined bicycle on lane obstacle predictor ["
<< cyclist_on_lane_predictor_ << "].";
AINFO << "Defined bicycle off lane obstacle predictor ["
<< cyclist_off_lane_predictor_ << "].";
AINFO << "Defined pedestrian obstacle predictor [" << pedestrian_predictor_
<< "].";
AINFO << "Defined default on lane obstacle predictor ["
<< default_on_lane_predictor_ << "].";
AINFO << "Defined default off lane obstacle predictor ["
<< default_off_lane_predictor_ << "].";
}
Predictor* PredictorManager::GetPredictor(
const ObstacleConf::PredictorType& type) {
auto it = predictors_.find(type);
return it != predictors_.end() ? it->second.get() : nullptr;
}
void PredictorManager::Run(
const PerceptionObstacles& perception_obstacles,
const ADCTrajectoryContainer* adc_trajectory_container,
ObstaclesContainer* obstacles_container) {
prediction_obstacles_.Clear();
if (FLAGS_enable_multi_thread) {
PredictObstaclesInParallel(perception_obstacles, adc_trajectory_container,
obstacles_container);
} else {
PredictObstacles(perception_obstacles, adc_trajectory_container,
obstacles_container);
}
}
void PredictorManager::PredictObstacles(
const PerceptionObstacles& perception_obstacles,
const ADCTrajectoryContainer* adc_trajectory_container,
ObstaclesContainer* obstacles_container) {
for (const PerceptionObstacle& perception_obstacle :
perception_obstacles.perception_obstacle()) {
int id = perception_obstacle.id();
if (id < 0) {
ADEBUG << "The obstacle has invalid id [" << id << "].";
continue;
}
PredictionObstacle prediction_obstacle;
Obstacle* obstacle = obstacles_container->GetObstacle(id);
// if obstacle == nullptr, that means obstacle is unmovable
// Checkout the logic of unmovable in obstacle.cc
if (obstacle != nullptr) {
PredictObstacle(adc_trajectory_container, obstacle, obstacles_container,
&prediction_obstacle);
} else { // obstacle == nullptr
prediction_obstacle.set_timestamp(perception_obstacle.timestamp());
prediction_obstacle.set_is_static(true);
}
prediction_obstacle.set_predicted_period(
FLAGS_prediction_trajectory_time_length);
prediction_obstacle.mutable_perception_obstacle()->CopyFrom(
perception_obstacle);
prediction_obstacles_.add_prediction_obstacle()->CopyFrom(
prediction_obstacle);
}
}
void PredictorManager::PredictObstaclesInParallel(
const PerceptionObstacles& perception_obstacles,
const ADCTrajectoryContainer* adc_trajectory_container,
ObstaclesContainer* obstacles_container) {
std::unordered_map<int, std::shared_ptr<PredictionObstacle>>
id_prediction_obstacle_map;
for (const PerceptionObstacle& perception_obstacle :
perception_obstacles.perception_obstacle()) {
int id = perception_obstacle.id();
id_prediction_obstacle_map[id] = std::make_shared<PredictionObstacle>();
}
IdObstacleListMap id_obstacle_map;
for (const auto& perception_obstacle :
perception_obstacles.perception_obstacle()) {
int id = perception_obstacle.id();
Obstacle* obstacle = obstacles_container->GetObstacle(id);
if (obstacle == nullptr) {
std::shared_ptr<PredictionObstacle> prediction_obstacle_ptr =
id_prediction_obstacle_map[id];
prediction_obstacle_ptr->set_is_static(true);
prediction_obstacle_ptr->set_timestamp(perception_obstacle.timestamp());
} else {
GroupObstaclesByObstacleId(id, obstacles_container, &id_obstacle_map);
}
}
PredictionThreadPool::ForEach(
id_obstacle_map.begin(), id_obstacle_map.end(),
[&](IdObstacleListMap::iterator::value_type& obstacles_iter) {
for (auto obstacle_ptr : obstacles_iter.second) {
int id = obstacle_ptr->id();
PredictObstacle(adc_trajectory_container, obstacle_ptr,
obstacles_container,
id_prediction_obstacle_map[id].get());
}
});
for (const PerceptionObstacle& perception_obstacle :
perception_obstacles.perception_obstacle()) {
int id = perception_obstacle.id();
auto prediction_obstacle_ptr = id_prediction_obstacle_map[id];
if (prediction_obstacle_ptr == nullptr) {
AERROR << "Prediction obstacle [" << id << "] not found.";
continue;
}
prediction_obstacle_ptr->set_predicted_period(
FLAGS_prediction_trajectory_time_length);
prediction_obstacle_ptr->mutable_perception_obstacle()->CopyFrom(
perception_obstacle);
prediction_obstacles_.add_prediction_obstacle()->CopyFrom(
*prediction_obstacle_ptr);
}
}
void PredictorManager::PredictObstacle(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container,
PredictionObstacle* const prediction_obstacle) {
CHECK_NOTNULL(obstacle);
prediction_obstacle->set_timestamp(obstacle->timestamp());
if (obstacle->ToIgnore()) {
ADEBUG << "Ignore obstacle [" << obstacle->id() << "]";
RunEmptyPredictor(adc_trajectory_container, obstacle, obstacles_container);
prediction_obstacle->mutable_priority()->set_priority(
ObstaclePriority::IGNORE);
} else if (obstacle->IsStill()) {
ADEBUG << "Still obstacle [" << obstacle->id() << "]";
RunEmptyPredictor(adc_trajectory_container, obstacle, obstacles_container);
} else {
switch (obstacle->type()) {
case PerceptionObstacle::VEHICLE: {
RunVehiclePredictor(adc_trajectory_container, obstacle,
obstacles_container);
break;
}
case PerceptionObstacle::PEDESTRIAN: {
RunPedestrianPredictor(adc_trajectory_container, obstacle,
obstacles_container);
break;
}
case PerceptionObstacle::BICYCLE: {
RunCyclistPredictor(adc_trajectory_container, obstacle,
obstacles_container);
break;
}
default: {
RunDefaultPredictor(adc_trajectory_container, obstacle,
obstacles_container);
break;
}
}
}
for (const auto& trajectory :
obstacle->latest_feature().predicted_trajectory()) {
prediction_obstacle->add_trajectory()->CopyFrom(trajectory);
}
prediction_obstacle->set_timestamp(obstacle->timestamp());
prediction_obstacle->mutable_priority()->CopyFrom(
obstacle->latest_feature().priority());
prediction_obstacle->mutable_interactive_tag()->CopyFrom(
obstacle->latest_feature().interactive_tag());
prediction_obstacle->set_is_static(obstacle->IsStill());
if (FLAGS_prediction_offline_mode ==
PredictionConstants::kDumpPredictionResult) {
const Scenario& scenario = obstacles_container->curr_scenario();
FeatureOutput::InsertPredictionResult(obstacle, *prediction_obstacle,
obstacle->obstacle_conf(), scenario);
}
}
std::unique_ptr<Predictor> PredictorManager::CreatePredictor(
const ObstacleConf::PredictorType& type) {
std::unique_ptr<Predictor> predictor_ptr(nullptr);
switch (type) {
case ObstacleConf::LANE_SEQUENCE_PREDICTOR: {
predictor_ptr.reset(new LaneSequencePredictor());
break;
}
case ObstacleConf::MOVE_SEQUENCE_PREDICTOR: {
predictor_ptr.reset(new MoveSequencePredictor());
break;
}
case ObstacleConf::SINGLE_LANE_PREDICTOR: {
predictor_ptr.reset(new SingleLanePredictor());
break;
}
case ObstacleConf::FREE_MOVE_PREDICTOR: {
predictor_ptr.reset(new FreeMovePredictor());
break;
}
case ObstacleConf::JUNCTION_PREDICTOR: {
predictor_ptr.reset(new JunctionPredictor());
break;
}
case ObstacleConf::EXTRAPOLATION_PREDICTOR: {
predictor_ptr.reset(new ExtrapolationPredictor());
break;
}
case ObstacleConf::INTERACTION_PREDICTOR: {
predictor_ptr.reset(new InteractionPredictor());
break;
}
case ObstacleConf::EMPTY_PREDICTOR: {
predictor_ptr.reset(new EmptyPredictor());
break;
}
default: { break; }
}
return predictor_ptr;
}
void PredictorManager::RegisterPredictor(
const ObstacleConf::PredictorType& type) {
predictors_[type] = CreatePredictor(type);
AINFO << "Predictor [" << type << "] is registered.";
}
const PredictionObstacles& PredictorManager::prediction_obstacles() {
return prediction_obstacles_;
}
void PredictorManager::InitVehiclePredictors(const ObstacleConf& conf) {
if (!conf.has_obstacle_status() && conf.has_interactive_tag()) {
vehicle_interactive_predictor_ = conf.predictor_type();
}
switch (conf.obstacle_status()) {
case ObstacleConf::ON_LANE: {
if (conf.priority_type() == ObstaclePriority::CAUTION) {
vehicle_on_lane_caution_predictor_ = conf.predictor_type();
} else {
vehicle_on_lane_predictor_ = conf.predictor_type();
}
break;
}
case ObstacleConf::OFF_LANE: {
vehicle_off_lane_predictor_ = conf.predictor_type();
break;
}
case ObstacleConf::IN_JUNCTION: {
if (conf.priority_type() == ObstaclePriority::CAUTION) {
vehicle_in_junction_caution_predictor_ = conf.predictor_type();
} else {
vehicle_in_junction_predictor_ = conf.predictor_type();
}
break;
}
default: { break; }
}
}
void PredictorManager::InitCyclistPredictors(const ObstacleConf& conf) {
switch (conf.obstacle_status()) {
case ObstacleConf::ON_LANE: {
cyclist_on_lane_predictor_ = conf.predictor_type();
break;
}
case ObstacleConf::OFF_LANE: {
cyclist_off_lane_predictor_ = conf.predictor_type();
break;
}
default: { break; }
}
}
void PredictorManager::InitDefaultPredictors(const ObstacleConf& conf) {
switch (conf.obstacle_status()) {
case ObstacleConf::ON_LANE: {
default_on_lane_predictor_ = conf.predictor_type();
break;
}
case ObstacleConf::OFF_LANE: {
default_off_lane_predictor_ = conf.predictor_type();
break;
}
default: { break; }
}
}
void PredictorManager::RunVehiclePredictor(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
Predictor* predictor = nullptr;
if (obstacle->IsInteractiveObstacle()) {
predictor = GetPredictor(vehicle_interactive_predictor_);
if (predictor->Predict(adc_trajectory_container, obstacle,
obstacles_container)) {
return;
} else {
AERROR << "Obstacle: " << obstacle->id()
<< " interactive predictor failed!";
}
}
if (obstacle->IsCaution()) {
if (obstacle->IsNearJunction()) {
predictor = GetPredictor(vehicle_in_junction_caution_predictor_);
} else if (obstacle->IsOnLane()) {
predictor = GetPredictor(vehicle_on_lane_caution_predictor_);
} else {
predictor = GetPredictor(vehicle_default_caution_predictor_);
}
CHECK_NOTNULL(predictor);
if (predictor->Predict(adc_trajectory_container, obstacle,
obstacles_container)) {
return;
} else {
AERROR << "Obstacle: " << obstacle->id()
<< " caution predictor failed, downgrade to normal level!";
}
}
if (!obstacle->IsOnLane()) {
predictor = GetPredictor(vehicle_off_lane_predictor_);
} else if (obstacle->HasJunctionFeatureWithExits() &&
!obstacle->IsCloseToJunctionExit()) {
predictor = GetPredictor(vehicle_in_junction_predictor_);
} else {
predictor = GetPredictor(vehicle_on_lane_predictor_);
}
if (predictor == nullptr) {
AERROR << "Nullptr found for obstacle [" << obstacle->id() << "]";
return;
}
predictor->Predict(adc_trajectory_container, obstacle, obstacles_container);
if (FLAGS_enable_trim_prediction_trajectory) {
CHECK_NOTNULL(adc_trajectory_container);
predictor->TrimTrajectories(*adc_trajectory_container, obstacle);
}
}
void PredictorManager::RunPedestrianPredictor(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
Predictor* predictor = nullptr;
predictor = GetPredictor(pedestrian_predictor_);
if (predictor == nullptr) {
AERROR << "Nullptr found for obstacle [" << obstacle->id() << "]";
return;
}
predictor->Predict(adc_trajectory_container, obstacle, obstacles_container);
}
void PredictorManager::RunCyclistPredictor(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
Predictor* predictor = nullptr;
if (obstacle->IsOnLane()) {
predictor = GetPredictor(cyclist_on_lane_predictor_);
} else {
predictor = GetPredictor(cyclist_off_lane_predictor_);
}
if (predictor == nullptr) {
AERROR << "Nullptr found for obstacle [" << obstacle->id() << "]";
return;
}
predictor->Predict(adc_trajectory_container, obstacle, obstacles_container);
}
void PredictorManager::RunDefaultPredictor(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
Predictor* predictor = nullptr;
if (obstacle->IsOnLane()) {
predictor = GetPredictor(default_on_lane_predictor_);
} else {
predictor = GetPredictor(default_off_lane_predictor_);
}
if (predictor == nullptr) {
AERROR << "Nullptr found for obstacle [" << obstacle->id() << "]";
return;
}
predictor->Predict(adc_trajectory_container, obstacle, obstacles_container);
}
void PredictorManager::RunEmptyPredictor(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
Predictor* predictor = GetPredictor(ObstacleConf::EMPTY_PREDICTOR);
if (predictor == nullptr) {
AERROR << "Nullptr found for obstacle [" << obstacle->id() << "]";
return;
}
predictor->Predict(adc_trajectory_container, obstacle, obstacles_container);
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/single_lane/single_lane_predictor.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 <vector>
#include "modules/prediction/predictor/sequence/sequence_predictor.h"
namespace apollo {
namespace prediction {
class SingleLanePredictor : public SequencePredictor {
public:
/**
* @brief Constructor
*/
SingleLanePredictor();
/**
* @brief Destructor
*/
virtual ~SingleLanePredictor() = default;
/**
* @brief Make prediction
* @param ADC trajectory container
* @param Obstacle pointer
* @param Obstacles container
* @return If predicted successfully
*/
bool Predict(const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle,
ObstaclesContainer* obstacles_container) override;
protected:
/**
* @brief Draw lane sequence trajectory points
* @param Obstacle
* @param Lane sequence
* @param Total prediction time
* @param Prediction period
* @param A vector of generated trajectory points
*/
void GenerateTrajectoryPoints(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const double total_time, const double period,
std::vector<apollo::common::TrajectoryPoint>* points);
};
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/single_lane/single_lane_predictor.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/prediction/predictor/single_lane/single_lane_predictor.h"
#include <memory>
#include <string>
#include <utility>
#include "modules/prediction/common/prediction_gflags.h"
namespace apollo {
namespace prediction {
using apollo::common::PathPoint;
using apollo::common::TrajectoryPoint;
using apollo::hdmap::LaneInfo;
SingleLanePredictor::SingleLanePredictor() {
predictor_type_ = ObstacleConf::SINGLE_LANE_PREDICTOR;
}
bool SingleLanePredictor::Predict(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
Clear();
CHECK_NOTNULL(obstacle);
CHECK_GT(obstacle->history_size(), 0U);
obstacle->SetPredictorType(predictor_type_);
const Feature& feature = obstacle->latest_feature();
if (!feature.has_lane() || !feature.lane().has_lane_graph()) {
AERROR << "Obstacle [" << obstacle->id() << "] has no lane graph.";
return false;
}
std::string lane_id = "";
if (feature.lane().has_lane_feature()) {
lane_id = feature.lane().lane_feature().lane_id();
}
int num_lane_sequence = feature.lane().lane_graph().lane_sequence_size();
for (int i = 0; i < num_lane_sequence; ++i) {
const LaneSequence& sequence = feature.lane().lane_graph().lane_sequence(i);
if (sequence.lane_segment().empty()) {
AERROR << "Empty lane segments.";
continue;
}
ADEBUG << "Obstacle [" << obstacle->id()
<< "] will draw a lane sequence trajectory [" << ToString(sequence)
<< "] with probability [" << sequence.probability() << "].";
std::vector<TrajectoryPoint> points;
GenerateTrajectoryPoints(
*obstacle, sequence, FLAGS_prediction_trajectory_time_length,
FLAGS_prediction_trajectory_time_resolution, &points);
if (points.empty()) {
continue;
}
Trajectory trajectory = GenerateTrajectory(points);
trajectory.set_probability(sequence.probability());
obstacle->mutable_latest_feature()->add_predicted_trajectory()->CopyFrom(
trajectory);
}
return true;
}
void SingleLanePredictor::GenerateTrajectoryPoints(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const double time_length, const double time_resolution,
std::vector<TrajectoryPoint>* points) {
const Feature& feature = obstacle.latest_feature();
if (!feature.has_position() || !feature.has_velocity() ||
!feature.position().has_x() || !feature.position().has_y()) {
AERROR << "Obstacle [" << obstacle.id()
<< " is missing position or velocity";
return;
}
double probability = lane_sequence.probability();
double approach_rate = FLAGS_go_approach_rate;
if (probability < FLAGS_lane_sequence_threshold_cruise) {
approach_rate = 1.0;
}
Eigen::Vector2d position(feature.position().x(), feature.position().y());
double speed = feature.speed();
int lane_segment_index = 0;
std::string lane_id =
lane_sequence.lane_segment(lane_segment_index).lane_id();
std::shared_ptr<const LaneInfo> lane_info = PredictionMap::LaneById(lane_id);
double lane_s = 0.0;
double lane_l = 0.0;
if (!PredictionMap::GetProjection(position, lane_info, &lane_s, &lane_l)) {
AERROR << "Failed in getting lane s and lane l";
return;
}
size_t num_of_points = static_cast<size_t>(time_length / time_resolution);
for (size_t i = 0; i < num_of_points; ++i) {
double relative_time = static_cast<double>(i) * time_resolution;
Eigen::Vector2d point;
double theta = M_PI;
if (!PredictionMap::SmoothPointFromLane(lane_id, lane_s, lane_l, &point,
&theta)) {
AERROR << "Unable to get smooth point from lane [" << lane_id
<< "] with s [" << lane_s << "] and l [" << lane_l << "]";
break;
}
TrajectoryPoint trajectory_point;
PathPoint path_point;
path_point.set_x(point.x());
path_point.set_y(point.y());
path_point.set_z(0.0);
path_point.set_theta(theta);
path_point.set_lane_id(lane_id);
trajectory_point.mutable_path_point()->CopyFrom(path_point);
trajectory_point.set_v(speed);
trajectory_point.set_a(0.0);
trajectory_point.set_relative_time(relative_time);
points->emplace_back(std::move(trajectory_point));
lane_s += speed * time_resolution;
while (lane_s > PredictionMap::LaneById(lane_id)->total_length() &&
lane_segment_index + 1 < lane_sequence.lane_segment_size()) {
lane_segment_index += 1;
lane_s = lane_s - PredictionMap::LaneById(lane_id)->total_length();
lane_id = lane_sequence.lane_segment(lane_segment_index).lane_id();
}
lane_l *= approach_rate;
}
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/single_lane/BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("//tools:cpplint.bzl", "cpplint")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "single_lane_predictor",
srcs = ["single_lane_predictor.cc"],
hdrs = ["single_lane_predictor.h"],
copts = [
"-DMODULE_NAME=\\\"prediction\\\"",
],
deps = [
"//modules/prediction/predictor/sequence:sequence_predictor",
],
)
cc_test(
name = "single_lane_predictor_test",
size = "small",
srcs = ["single_lane_predictor_test.cc"],
data = [
"//modules/prediction:prediction_data",
"//modules/prediction:prediction_testdata",
],
deps = [
"//modules/prediction/common:kml_map_based_test",
"//modules/prediction/evaluator/vehicle:cost_evaluator",
"//modules/prediction/predictor/single_lane:single_lane_predictor",
],
)
cpplint()
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/single_lane/single_lane_predictor_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.
*****************************************************************************/
#include "modules/prediction/predictor/single_lane/single_lane_predictor.h"
#include "cyber/common/file.h"
#include "modules/prediction/common/kml_map_based_test.h"
#include "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/prediction/evaluator/vehicle/cost_evaluator.h"
namespace apollo {
namespace prediction {
class SingleLanePredictorTest : public KMLMapBasedTest {
public:
virtual void SetUp() {
const std::string file =
"modules/prediction/testdata/single_perception_vehicle_onlane.pb.txt";
cyber::common::GetProtoFromFile(file, &perception_obstacles_);
}
protected:
apollo::perception::PerceptionObstacles perception_obstacles_;
};
TEST_F(SingleLanePredictorTest, OnLaneCase) {
EXPECT_DOUBLE_EQ(perception_obstacles_.header().timestamp_sec(),
1501183430.161906);
apollo::perception::PerceptionObstacle perception_obstacle =
perception_obstacles_.perception_obstacle(0);
EXPECT_EQ(perception_obstacle.id(), 1);
CostEvaluator cost_evaluator;
ObstaclesContainer container;
container.Insert(perception_obstacles_);
container.BuildLaneGraph();
ADCTrajectoryContainer adc_trajectory_container;
Obstacle* obstacle_ptr = container.GetObstacle(1);
EXPECT_NE(obstacle_ptr, nullptr);
cost_evaluator.Evaluate(obstacle_ptr, &container);
SingleLanePredictor predictor;
predictor.Predict(&adc_trajectory_container, obstacle_ptr, &container);
EXPECT_EQ(predictor.NumOfTrajectories(*obstacle_ptr), 2);
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/empty/empty_predictor.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 "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/prediction/predictor/predictor.h"
namespace apollo {
namespace prediction {
class EmptyPredictor : public Predictor {
public:
/**
* @brief Constructor
*/
EmptyPredictor();
/**
* @brief Destructor
*/
virtual ~EmptyPredictor() = default;
/**
* @brief Make prediction
* @param Obstacle pointer
* @param Obstacles container
* @return If predicted successfully
*/
bool Predict(const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle,
ObstaclesContainer* obstacles_container) override;
};
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/empty/empty_predictor_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.
*****************************************************************************/
#include "modules/prediction/predictor/empty/empty_predictor.h"
#include "cyber/common/file.h"
#include "modules/prediction/common/kml_map_based_test.h"
#include "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/prediction/evaluator/vehicle/mlp_evaluator.h"
namespace apollo {
namespace prediction {
class EmptyPredictorTest : public KMLMapBasedTest {
public:
virtual void SetUp() {
const std::string file =
"modules/prediction/testdata/single_perception_vehicle_onlane.pb.txt";
cyber::common::GetProtoFromFile(file, &perception_obstacles_);
}
protected:
apollo::perception::PerceptionObstacles perception_obstacles_;
};
TEST_F(EmptyPredictorTest, General) {
EXPECT_DOUBLE_EQ(perception_obstacles_.header().timestamp_sec(),
1501183430.161906);
apollo::perception::PerceptionObstacle perception_obstacle =
perception_obstacles_.perception_obstacle(0);
EXPECT_EQ(perception_obstacle.id(), 1);
MLPEvaluator evaluator;
ObstaclesContainer container;
ADCTrajectoryContainer adc_trajectory_container;
container.Insert(perception_obstacles_);
Obstacle* obstacle_ptr = container.GetObstacle(1);
EXPECT_NE(obstacle_ptr, nullptr);
evaluator.Evaluate(obstacle_ptr, &container);
EmptyPredictor predictor;
predictor.Predict(&adc_trajectory_container, obstacle_ptr, &container);
EXPECT_EQ(predictor.NumOfTrajectories(*obstacle_ptr), 0);
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/empty/empty_predictor.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/prediction/predictor/empty/empty_predictor.h"
namespace apollo {
namespace prediction {
EmptyPredictor::EmptyPredictor() {
predictor_type_ = ObstacleConf::EMPTY_PREDICTOR;
}
bool EmptyPredictor::Predict(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
obstacle->SetPredictorType(predictor_type_);
return true;
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/empty/BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("//tools:cpplint.bzl", "cpplint")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "empty_predictor",
srcs = ["empty_predictor.cc"],
hdrs = ["empty_predictor.h"],
copts = [
"-DMODULE_NAME=\\\"prediction\\\"",
],
deps = [
"//modules/prediction/predictor",
],
)
cc_test(
name = "empty_predictor_test",
size = "small",
srcs = ["empty_predictor_test.cc"],
data = [
"//modules/prediction:prediction_data",
"//modules/prediction:prediction_testdata",
],
deps = [
"//modules/prediction/common:kml_map_based_test",
"//modules/prediction/container/obstacles:obstacles_container",
"//modules/prediction/evaluator/vehicle:mlp_evaluator",
"//modules/prediction/predictor/empty:empty_predictor",
"@com_google_googletest//:gtest_main",
],
)
cpplint()
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/lane_sequence/lane_sequence_predictor.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/prediction/predictor/lane_sequence/lane_sequence_predictor.h"
#include <memory>
#include <string>
#include <utility>
#include "modules/prediction/common/prediction_gflags.h"
#include "modules/prediction/common/validation_checker.h"
#include "modules/prediction/proto/prediction_conf.pb.h"
namespace apollo {
namespace prediction {
using common::PathPoint;
using common::TrajectoryPoint;
using hdmap::LaneInfo;
LaneSequencePredictor::LaneSequencePredictor() {
predictor_type_ = ObstacleConf::LANE_SEQUENCE_PREDICTOR;
}
bool LaneSequencePredictor::Predict(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
Clear();
CHECK_NOTNULL(obstacle);
CHECK_GT(obstacle->history_size(), 0U);
obstacle->SetPredictorType(predictor_type_);
const Feature& feature = obstacle->latest_feature();
if (!feature.has_lane() || !feature.lane().has_lane_graph()) {
AERROR << "Obstacle [" << obstacle->id() << " has no lane graph.";
return false;
}
std::string lane_id = "";
if (feature.lane().has_lane_feature()) {
lane_id = feature.lane().lane_feature().lane_id();
}
int num_lane_sequence = feature.lane().lane_graph().lane_sequence_size();
std::vector<bool> enable_lane_sequence(num_lane_sequence, true);
Obstacle* ego_vehicle_ptr =
obstacles_container->GetObstacle(FLAGS_ego_vehicle_id);
FilterLaneSequences(feature, lane_id, ego_vehicle_ptr,
adc_trajectory_container, &enable_lane_sequence);
for (int i = 0; i < num_lane_sequence; ++i) {
const LaneSequence& sequence = feature.lane().lane_graph().lane_sequence(i);
if (sequence.lane_segment().empty()) {
AERROR << "Empty lane segments.";
continue;
}
if (!enable_lane_sequence[i]) {
ADEBUG << "Lane sequence [" << ToString(sequence)
<< "] with probability [" << sequence.probability()
<< "] is disqualified.";
continue;
}
ADEBUG << "Obstacle [" << obstacle->id()
<< "] will draw a lane sequence trajectory [" << ToString(sequence)
<< "] with probability [" << sequence.probability() << "].";
std::vector<TrajectoryPoint> points;
bool is_about_to_stop = false;
double acceleration = 0.0;
if (sequence.has_stop_sign()) {
double stop_distance =
sequence.stop_sign().lane_sequence_s() - sequence.lane_s();
is_about_to_stop = SupposedToStop(feature, stop_distance, &acceleration);
}
if (is_about_to_stop) {
DrawConstantAccelerationTrajectory(
*obstacle, sequence, FLAGS_prediction_trajectory_time_length,
FLAGS_prediction_trajectory_time_resolution, acceleration, &points);
} else {
DrawLaneSequenceTrajectoryPoints(
*obstacle, sequence, FLAGS_prediction_trajectory_time_length,
FLAGS_prediction_trajectory_time_resolution, &points);
}
if (points.empty()) {
continue;
}
if (FLAGS_enable_trajectory_validation_check &&
!ValidationChecker::ValidCentripetalAcceleration(points)) {
continue;
}
Trajectory trajectory = GenerateTrajectory(points);
trajectory.set_probability(sequence.probability());
obstacle->mutable_latest_feature()->add_predicted_trajectory()->CopyFrom(
trajectory);
}
return true;
}
void LaneSequencePredictor::DrawLaneSequenceTrajectoryPoints(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const double total_time, const double period,
std::vector<TrajectoryPoint>* points) {
const Feature& feature = obstacle.latest_feature();
if (!feature.has_position() || !feature.has_velocity() ||
!feature.position().has_x() || !feature.position().has_y()) {
AERROR << "Obstacle [" << obstacle.id()
<< " is missing position or velocity";
return;
}
Eigen::Vector2d position(feature.position().x(), feature.position().y());
double speed = feature.speed();
int lane_segment_index = 0;
std::string lane_id =
lane_sequence.lane_segment(lane_segment_index).lane_id();
std::shared_ptr<const LaneInfo> lane_info = PredictionMap::LaneById(lane_id);
double lane_s = 0.0;
double lane_l = 0.0;
if (!PredictionMap::GetProjection(position, lane_info, &lane_s, &lane_l)) {
AERROR << "Failed in getting lane s and lane l";
return;
}
double approach_rate = FLAGS_go_approach_rate;
if (!lane_sequence.vehicle_on_lane()) {
approach_rate = FLAGS_cutin_approach_rate;
}
size_t total_num = static_cast<size_t>(total_time / period);
for (size_t i = 0; i < total_num; ++i) {
double relative_time = static_cast<double>(i) * period;
Eigen::Vector2d point;
double theta = M_PI;
if (!PredictionMap::SmoothPointFromLane(lane_id, lane_s, lane_l, &point,
&theta)) {
AERROR << "Unable to get smooth point from lane [" << lane_id
<< "] with s [" << lane_s << "] and l [" << lane_l << "]";
break;
}
TrajectoryPoint trajectory_point;
PathPoint path_point;
path_point.set_x(point.x());
path_point.set_y(point.y());
path_point.set_z(0.0);
path_point.set_theta(theta);
path_point.set_lane_id(lane_id);
trajectory_point.mutable_path_point()->CopyFrom(path_point);
trajectory_point.set_v(speed);
trajectory_point.set_a(0.0);
trajectory_point.set_relative_time(relative_time);
points->emplace_back(std::move(trajectory_point));
lane_s += speed * period;
while (lane_s > PredictionMap::LaneById(lane_id)->total_length() &&
lane_segment_index + 1 < lane_sequence.lane_segment_size()) {
lane_segment_index += 1;
lane_s = lane_s - PredictionMap::LaneById(lane_id)->total_length();
lane_id = lane_sequence.lane_segment(lane_segment_index).lane_id();
}
lane_l *= approach_rate;
}
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/lane_sequence/lane_sequence_predictor_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.
*****************************************************************************/
#include "modules/prediction/predictor/lane_sequence/lane_sequence_predictor.h"
#include "cyber/common/file.h"
#include "modules/prediction/common/kml_map_based_test.h"
#include "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/prediction/evaluator/vehicle/mlp_evaluator.h"
namespace apollo {
namespace prediction {
class LaneSequencePredictorTest : public KMLMapBasedTest {
public:
virtual void SetUp() {
std::string file =
"modules/prediction/testdata/single_perception_vehicle_onlane.pb.txt";
cyber::common::GetProtoFromFile(file, &perception_obstacles_);
}
protected:
apollo::perception::PerceptionObstacles perception_obstacles_;
};
TEST_F(LaneSequencePredictorTest, OnLaneCase) {
EXPECT_DOUBLE_EQ(perception_obstacles_.header().timestamp_sec(),
1501183430.161906);
apollo::perception::PerceptionObstacle perception_obstacle =
perception_obstacles_.perception_obstacle(0);
EXPECT_EQ(perception_obstacle.id(), 1);
MLPEvaluator mlp_evaluator;
ObstaclesContainer container;
ADCTrajectoryContainer adc_trajectory_container;
container.Insert(perception_obstacles_);
container.BuildLaneGraph();
Obstacle* obstacle_ptr = container.GetObstacle(1);
EXPECT_NE(obstacle_ptr, nullptr);
mlp_evaluator.Evaluate(obstacle_ptr, &container);
LaneSequencePredictor predictor;
predictor.Predict(&adc_trajectory_container, obstacle_ptr, &container);
EXPECT_EQ(predictor.NumOfTrajectories(*obstacle_ptr), 1);
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/lane_sequence/BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("//tools:cpplint.bzl", "cpplint")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "lane_sequence_predictor",
srcs = ["lane_sequence_predictor.cc"],
hdrs = ["lane_sequence_predictor.h"],
copts = [
"-DMODULE_NAME=\\\"prediction\\\"",
],
deps = [
"//modules/prediction/common:validation_checker",
"//modules/prediction/predictor/sequence:sequence_predictor",
],
)
cc_test(
name = "lane_sequence_predictor_test",
size = "small",
srcs = ["lane_sequence_predictor_test.cc"],
data = [
"//modules/prediction:prediction_data",
"//modules/prediction:prediction_testdata",
],
deps = [
"//modules/prediction/common:kml_map_based_test",
"//modules/prediction/evaluator/vehicle:mlp_evaluator",
"//modules/prediction/predictor/lane_sequence:lane_sequence_predictor",
],
)
cpplint()
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/lane_sequence/lane_sequence_predictor.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
* @brief Define lane sequence predictor
*/
#pragma once
#include <vector>
#include "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/prediction/predictor/sequence/sequence_predictor.h"
namespace apollo {
namespace prediction {
class LaneSequencePredictor : public SequencePredictor {
public:
/**
* @brief Constructor
*/
LaneSequencePredictor();
/**
* @brief Destructor
*/
virtual ~LaneSequencePredictor() = default;
/**
* @brief Make prediction
* @param ADC trajectory container
* @param Obstacle pointer
* @param Obstacles container
* @return If predicted successfully
*/
bool Predict(const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle,
ObstaclesContainer* obstacles_container) override;
protected:
/**
* @brief Draw lane sequence trajectory points
* @param Obstacle
* @param Lane sequence
* @param Total prediction time
* @param Prediction period
* @param A vector of generated trajectory points
*/
void DrawLaneSequenceTrajectoryPoints(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const double total_time, const double period,
std::vector<apollo::common::TrajectoryPoint>* points);
};
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/move_sequence/move_sequence_predictor.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/prediction/predictor/move_sequence/move_sequence_predictor.h"
#include <algorithm>
#include <memory>
#include "modules/prediction/common/prediction_gflags.h"
#include "modules/prediction/common/prediction_util.h"
namespace apollo {
namespace prediction {
using apollo::common::PathPoint;
using apollo::common::TrajectoryPoint;
using apollo::hdmap::LaneInfo;
using apollo::prediction::math_util::EvaluateCubicPolynomial;
using apollo::prediction::math_util::EvaluateQuarticPolynomial;
MoveSequencePredictor::MoveSequencePredictor() {
predictor_type_ = ObstacleConf::MOVE_SEQUENCE_PREDICTOR;
}
bool MoveSequencePredictor::Predict(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
Clear();
CHECK_NOTNULL(obstacle);
CHECK_GT(obstacle->history_size(), 0U);
obstacle->SetPredictorType(predictor_type_);
const Feature& feature = obstacle->latest_feature();
if (!feature.has_lane() || !feature.lane().has_lane_graph()) {
AERROR << "Obstacle [" << obstacle->id() << "] has no lane graph.";
return false;
}
std::string lane_id = "";
if (feature.lane().has_lane_feature()) {
lane_id = feature.lane().lane_feature().lane_id();
}
int num_lane_sequence = feature.lane().lane_graph().lane_sequence_size();
std::vector<bool> enable_lane_sequence(num_lane_sequence, true);
Obstacle* ego_vehicle_ptr =
obstacles_container->GetObstacle(FLAGS_ego_vehicle_id);
FilterLaneSequences(feature, lane_id, ego_vehicle_ptr,
adc_trajectory_container, &enable_lane_sequence);
for (int i = 0; i < num_lane_sequence; ++i) {
const LaneSequence& sequence = feature.lane().lane_graph().lane_sequence(i);
if (sequence.lane_segment().empty() ||
sequence.lane_segment(0).lane_point().empty()) {
ADEBUG << "Empty lane segments.";
continue;
}
if (!enable_lane_sequence[i]) {
ADEBUG << "Lane sequence [" << ToString(sequence)
<< "] with probability [" << sequence.probability()
<< "] is disqualified.";
continue;
}
ADEBUG << "Obstacle [" << obstacle->id()
<< "] will draw a lane sequence trajectory [" << ToString(sequence)
<< "] with probability [" << sequence.probability() << "].";
std::vector<TrajectoryPoint> points;
auto end_time1 = std::chrono::system_clock::now();
bool is_about_to_stop = false;
double acceleration = 0.0;
if (sequence.has_stop_sign()) {
double stop_distance =
sequence.stop_sign().lane_sequence_s() - sequence.lane_s();
is_about_to_stop = SupposedToStop(feature, stop_distance, &acceleration);
}
if (is_about_to_stop) {
DrawConstantAccelerationTrajectory(
*obstacle, sequence, FLAGS_prediction_trajectory_time_length,
FLAGS_prediction_trajectory_time_resolution, acceleration, &points);
} else {
DrawMoveSequenceTrajectoryPoints(
*obstacle, sequence, FLAGS_prediction_trajectory_time_length,
FLAGS_prediction_trajectory_time_resolution, &points);
}
auto end_time2 = std::chrono::system_clock::now();
std::chrono::duration<double> diff = end_time2 - end_time1;
ADEBUG << " Time to draw trajectory: " << diff.count() * 1000 << " msec.";
Trajectory trajectory = GenerateTrajectory(points);
trajectory.set_probability(sequence.probability());
obstacle->mutable_latest_feature()->add_predicted_trajectory()->CopyFrom(
trajectory);
}
return true;
}
/**
* For this function:
* Input: obstacle status, lane-sequence, the total time of prediction,
* and the time interval between two adjacent points when plotting.
* Output: A vector of TrajectoryPoint
*/
bool MoveSequencePredictor::DrawMoveSequenceTrajectoryPoints(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const double total_time, const double period,
std::vector<TrajectoryPoint>* points) {
// Sanity check.
points->clear();
CHECK_NOTNULL(points);
const Feature& feature = obstacle.latest_feature();
if (!feature.has_position() || !feature.has_velocity() ||
!feature.position().has_x() || !feature.position().has_y()) {
AERROR << "Obstacle [" << obstacle.id()
<< " is missing position or velocity";
return false;
}
// Fit the lateral and longitudinal polynomials.
Eigen::Vector2d position(feature.position().x(), feature.position().y());
double time_to_lat_end_state =
std::max(FLAGS_default_time_to_lat_end_state,
ComputeTimeToLatEndConditionByVelocity(obstacle, lane_sequence));
double vel_heading = feature.velocity_heading();
double feature_v = feature.speed();
double feature_a = 0.0;
if (FLAGS_enable_lane_sequence_acc && lane_sequence.has_acceleration()) {
feature_a = lane_sequence.acceleration();
}
double lane_heading = lane_sequence.lane_segment(0).lane_point(0).heading();
double s0 = 0.0;
double ds0 = feature_v * std::cos(vel_heading - lane_heading);
double dds0 = feature_a * std::cos(vel_heading - lane_heading);
std::pair<double, double> lon_end_vt =
ComputeLonEndState({s0, ds0, dds0}, lane_sequence);
std::array<double, 4> lateral_coeffs;
std::array<double, 5> longitudinal_coeffs;
GetLateralPolynomial(obstacle, lane_sequence, time_to_lat_end_state,
&lateral_coeffs);
GetLongitudinalPolynomial(obstacle, lane_sequence, lon_end_vt,
&longitudinal_coeffs);
// Get ready for the for-loop:
// project the obstacle's position onto the lane's Frenet coordinates.
int lane_segment_index = lane_sequence.adc_lane_segment_idx();
std::string lane_id =
lane_sequence.lane_segment(lane_segment_index).lane_id();
std::shared_ptr<const LaneInfo> lane_info = PredictionMap::LaneById(lane_id);
double lane_s = 0.0;
double lane_l = 0.0;
if (!PredictionMap::GetProjection(position, lane_info, &lane_s, &lane_l)) {
AERROR << "Failed in getting lane s and lane l";
return false;
}
double prev_lane_l = lane_l;
// Draw each trajectory point within the total time of prediction
size_t total_num = static_cast<size_t>(total_time / period);
for (size_t i = 0; i < total_num; ++i) {
double relative_time = static_cast<double>(i) * period;
Eigen::Vector2d point;
double theta = M_PI;
lane_l = EvaluateCubicPolynomial(lateral_coeffs, relative_time, 0,
time_to_lat_end_state, 0.0);
double curr_s =
EvaluateQuarticPolynomial(longitudinal_coeffs, relative_time, 0,
lon_end_vt.second, lon_end_vt.first);
double prev_s = (i > 0) ? EvaluateQuarticPolynomial(
longitudinal_coeffs, relative_time - period,
0, lon_end_vt.second, lon_end_vt.first)
: 0.0;
lane_s += std::max(0.0, (curr_s - prev_s));
if (curr_s + FLAGS_double_precision < prev_s) {
lane_l = prev_lane_l;
}
if (!PredictionMap::SmoothPointFromLane(lane_id, lane_s, lane_l, &point,
&theta)) {
AERROR << "Unable to get smooth point from lane [" << lane_id
<< "] with s [" << lane_s << "] and l [" << lane_l << "]";
break;
}
prev_lane_l = lane_l;
double lane_speed =
EvaluateQuarticPolynomial(longitudinal_coeffs, relative_time, 1,
lon_end_vt.second, lon_end_vt.first);
double lane_acc =
EvaluateQuarticPolynomial(longitudinal_coeffs, relative_time, 2,
lon_end_vt.second, lon_end_vt.first);
TrajectoryPoint trajectory_point;
PathPoint path_point;
path_point.set_x(point.x());
path_point.set_y(point.y());
path_point.set_z(0.0);
path_point.set_theta(theta);
path_point.set_lane_id(lane_id);
trajectory_point.mutable_path_point()->CopyFrom(path_point);
trajectory_point.set_v(lane_speed);
trajectory_point.set_a(lane_acc);
trajectory_point.set_relative_time(relative_time);
points->emplace_back(std::move(trajectory_point));
while (lane_s > PredictionMap::LaneById(lane_id)->total_length() &&
lane_segment_index + 1 < lane_sequence.lane_segment_size()) {
lane_segment_index += 1;
lane_s = lane_s - PredictionMap::LaneById(lane_id)->total_length();
lane_id = lane_sequence.lane_segment(lane_segment_index).lane_id();
}
}
return true;
}
std::pair<double, double> MoveSequencePredictor::ComputeLonEndState(
const std::array<double, 3>& init_s, const LaneSequence& lane_sequence) {
// Get the maximum kappa of the lane.
double max_kappa = 0.0;
double s_at_max_kappa = 0.0;
for (int i = 0; i < lane_sequence.path_point_size(); ++i) {
const PathPoint& path_point = lane_sequence.path_point(i);
if (path_point.s() < init_s[0] + FLAGS_double_precision) {
continue;
}
if (max_kappa < path_point.kappa()) {
max_kappa = path_point.kappa();
s_at_max_kappa = path_point.s();
}
}
// If the max. curvature is small (almost straight lane),
// then predict that the obstacle will keep current speed.
double v_init = init_s[1];
if (max_kappa < FLAGS_turning_curvature_lower_bound) {
return {v_init, FLAGS_prediction_trajectory_time_length};
}
// (Calculate the speed at the max. curvature point)
double v_end = apollo::prediction::predictor_util::AdjustSpeedByCurvature(
init_s[1], max_kappa);
// If the calculated speed at max. curvature point is higher
// than initial speed, don't accelerate, just predict that
// the obstacle will maintain current speed.
if (v_end + FLAGS_double_precision > v_init) {
return {v_init, FLAGS_prediction_trajectory_time_length};
}
// If the obstacle is already at the max. curvature point,
// then predict that it will maintain the current speed.
double s_offset = s_at_max_kappa - init_s[0];
double t = 2.0 * s_offset / (v_init + v_end);
if (t < FLAGS_double_precision) {
return {v_init, FLAGS_prediction_trajectory_time_length};
}
// If the deceleration is too much,
// then predict the obstacle follows a reasonable deceleration.
double acc = (v_end - v_init) / t;
if (acc < FLAGS_vehicle_min_linear_acc) {
t = v_init / (-FLAGS_vehicle_min_linear_acc);
return {FLAGS_still_obstacle_speed_threshold, t};
}
// Otherwise, predict that it takes t for the obstacle to arrive at the
// max. curvature point with v_end speed.
return {v_end, t};
}
double MoveSequencePredictor::ComputeTimeToLatEndConditionByVelocity(
const Obstacle& obstacle, const LaneSequence& lane_sequence) {
// Sanity check.
CHECK_GT(obstacle.history_size(), 0U);
CHECK_GT(lane_sequence.lane_segment_size(), 0);
CHECK_GT(lane_sequence.lane_segment(0).lane_point_size(), 0);
// Get the obstacle's Cartesian v_x, v_y.
// Get the lane point's Cartesian angle, relative distance.
// Then project the obstacle's velocity onto Frenet coordinate to get
// lateral velocity v_l.
const Feature& feature = obstacle.latest_feature();
const LanePoint& first_lane_point =
lane_sequence.lane_segment(0).lane_point(0);
double v_x = feature.velocity().x();
double v_y = feature.velocity().y();
double lane_heading = first_lane_point.heading();
double lane_l = first_lane_point.relative_l();
double v_l = v_y * std::cos(lane_heading) - v_x * std::sin(lane_heading);
// If laterally moving too slow or even away from lane center,
// then use the default speed
// Otherwise, directly calculate the time and return.
if (std::fabs(v_l) < FLAGS_default_lateral_approach_speed ||
lane_l * v_l < 0.0) {
return std::fabs(lane_l / FLAGS_default_lateral_approach_speed);
}
return std::fabs(lane_l / v_l);
}
std::vector<double> MoveSequencePredictor::GenerateCandidateTimes() {
std::vector<double> candidate_times;
double t = FLAGS_time_lower_bound_to_lane_center;
double time_gap = FLAGS_sample_time_gap;
while (t <= FLAGS_time_upper_bound_to_lane_center) {
candidate_times.push_back(t);
t += time_gap;
}
return candidate_times;
}
double MoveSequencePredictor::CostFunction(const double max_lat_acc,
const double time_to_end_state,
const double time_to_lane_edge,
const double bell_curve_mu) {
double cost_of_trajectory =
max_lat_acc + FLAGS_cost_function_alpha * time_to_end_state;
if (FLAGS_use_bell_curve_for_cost_function) {
double bell_curve_weight =
1.0 /
std::sqrt(2.0 * M_PI * FLAGS_cost_function_sigma *
FLAGS_cost_function_sigma) *
std::exp(-(time_to_lane_edge - bell_curve_mu) *
(time_to_lane_edge - bell_curve_mu) /
(2.0 * FLAGS_cost_function_sigma * FLAGS_cost_function_sigma));
cost_of_trajectory /= (bell_curve_weight + FLAGS_double_precision);
}
return cost_of_trajectory;
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/move_sequence/move_sequence_predictor.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
* @brief Define move sequence predictor
*/
#pragma once
#include <string>
#include <utility>
#include <vector>
#include "modules/prediction/predictor/sequence/sequence_predictor.h"
namespace apollo {
namespace prediction {
class MoveSequencePredictor : public SequencePredictor {
public:
/**
* @brief Constructor
*/
MoveSequencePredictor();
/**
* @brief Destructor
*/
virtual ~MoveSequencePredictor() = default;
/**
* @brief Make prediction
* @param ADC trajectory container
* @param Obstacle pointer
* @param Obstacles container
* @return If predicted successfully
*/
bool Predict(const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle,
ObstaclesContainer* obstacles_container) override;
FRIEND_TEST(MoveSequencePredictorTest, Polynomial);
FRIEND_TEST(MoveSequencePredictorTest, Utils);
private:
bool DrawMoveSequenceTrajectoryPoints(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const double total_time, const double period,
std::vector<apollo::common::TrajectoryPoint>* points);
std::pair<double, double> ComputeLonEndState(
const std::array<double, 3>& init_s, const LaneSequence& lane_sequence);
double ComputeTimeToLatEndConditionByVelocity(
const Obstacle& obstacle, const LaneSequence& lane_sequence);
std::vector<double> GenerateCandidateTimes();
double CostFunction(const double max_lat_acc, const double time_to_end_state,
const double time_to_lane_edge,
const double bell_curve_mu);
};
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/move_sequence/BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("//tools:cpplint.bzl", "cpplint")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "move_sequence_predictor",
srcs = ["move_sequence_predictor.cc"],
hdrs = ["move_sequence_predictor.h"],
copts = [
"-DMODULE_NAME=\\\"prediction\\\"",
],
deps = [
"//modules/prediction/common:prediction_util",
"//modules/prediction/predictor/sequence:sequence_predictor",
],
)
cc_test(
name = "move_sequence_predictor_test",
size = "small",
srcs = ["move_sequence_predictor_test.cc"],
data = [
"//modules/prediction:prediction_data",
"//modules/prediction:prediction_testdata",
],
deps = [
"//modules/prediction/common:kml_map_based_test",
"//modules/prediction/evaluator/vehicle:mlp_evaluator",
"//modules/prediction/predictor/move_sequence:move_sequence_predictor",
],
)
cpplint()
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/move_sequence/move_sequence_predictor_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.
*****************************************************************************/
#include "modules/prediction/predictor/move_sequence/move_sequence_predictor.h"
#include "cyber/common/file.h"
#include "modules/prediction/common/kml_map_based_test.h"
#include "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/prediction/evaluator/vehicle/mlp_evaluator.h"
namespace apollo {
namespace prediction {
class MoveSequencePredictorTest : public KMLMapBasedTest {
public:
virtual void SetUp() {
const std::string file =
"modules/prediction/testdata/single_perception_vehicle_onlane.pb.txt";
cyber::common::GetProtoFromFile(file, &perception_obstacles_);
}
protected:
apollo::perception::PerceptionObstacles perception_obstacles_;
};
TEST_F(MoveSequencePredictorTest, OnLaneCase) {
EXPECT_DOUBLE_EQ(perception_obstacles_.header().timestamp_sec(),
1501183430.161906);
apollo::perception::PerceptionObstacle perception_obstacle =
perception_obstacles_.perception_obstacle(0);
EXPECT_EQ(perception_obstacle.id(), 1);
MLPEvaluator mlp_evaluator;
ObstaclesContainer container;
ADCTrajectoryContainer adc_trajectory_container;
container.Insert(perception_obstacles_);
container.BuildLaneGraph();
Obstacle* obstacle_ptr = container.GetObstacle(1);
EXPECT_NE(obstacle_ptr, nullptr);
mlp_evaluator.Evaluate(obstacle_ptr, &container);
MoveSequencePredictor predictor;
predictor.Predict(&adc_trajectory_container, obstacle_ptr, &container);
EXPECT_EQ(predictor.NumOfTrajectories(*obstacle_ptr), 1);
}
TEST_F(MoveSequencePredictorTest, Polynomial) {
EXPECT_DOUBLE_EQ(perception_obstacles_.header().timestamp_sec(),
1501183430.161906);
apollo::perception::PerceptionObstacle perception_obstacle =
perception_obstacles_.perception_obstacle(0);
EXPECT_EQ(perception_obstacle.id(), 1);
MLPEvaluator mlp_evaluator;
ObstaclesContainer container;
container.Insert(perception_obstacles_);
container.BuildLaneGraph();
Obstacle* obstacle_ptr = container.GetObstacle(1);
EXPECT_NE(obstacle_ptr, nullptr);
mlp_evaluator.Evaluate(obstacle_ptr, &container);
MoveSequencePredictor predictor;
const Feature& feature = obstacle_ptr->latest_feature();
const LaneGraph& lane_graph = feature.lane().lane_graph();
for (const auto& lane_sequence : lane_graph.lane_sequence()) {
std::pair<double, double> lon_end_state = {3.0, 3.0};
std::array<double, 5> lon_coefficients;
bool ret_lon = predictor.GetLongitudinalPolynomial(
*obstacle_ptr, lane_sequence, lon_end_state, &lon_coefficients);
EXPECT_TRUE(ret_lon);
std::array<double, 4> lat_coefficients;
bool ret_lat = predictor.GetLateralPolynomial(*obstacle_ptr, lane_sequence,
3.0, &lat_coefficients);
EXPECT_TRUE(ret_lat);
}
}
TEST_F(MoveSequencePredictorTest, Utils) {
EXPECT_DOUBLE_EQ(perception_obstacles_.header().timestamp_sec(),
1501183430.161906);
apollo::perception::PerceptionObstacle perception_obstacle =
perception_obstacles_.perception_obstacle(0);
EXPECT_EQ(perception_obstacle.id(), 1);
MLPEvaluator mlp_evaluator;
ObstaclesContainer container;
container.Insert(perception_obstacles_);
Obstacle* obstacle_ptr = container.GetObstacle(1);
EXPECT_NE(obstacle_ptr, nullptr);
mlp_evaluator.Evaluate(obstacle_ptr, &container);
MoveSequencePredictor predictor;
const Feature& feature = obstacle_ptr->latest_feature();
const LaneGraph& lane_graph = feature.lane().lane_graph();
for (const auto& lane_sequence : lane_graph.lane_sequence()) {
double speed = predictor.ComputeTimeToLatEndConditionByVelocity(
*obstacle_ptr, lane_sequence);
EXPECT_GT(speed, 0.0);
}
std::vector<double> candidate_times = predictor.GenerateCandidateTimes();
EXPECT_GT(candidate_times.size(), 0);
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/junction/junction_predictor.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/prediction/predictor/junction/junction_predictor.h"
#include <algorithm>
#include <limits>
#include <memory>
#include <utility>
#include "modules/prediction/common/prediction_gflags.h"
#include "modules/prediction/common/prediction_util.h"
namespace apollo {
namespace prediction {
using apollo::common::PathPoint;
using apollo::common::TrajectoryPoint;
using apollo::hdmap::LaneInfo;
using apollo::prediction::math_util::ComputePolynomial;
using apollo::prediction::math_util::EvaluateCubicPolynomial;
JunctionPredictor::JunctionPredictor() {
predictor_type_ = ObstacleConf::JUNCTION_PREDICTOR;
}
bool JunctionPredictor::Predict(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
Clear();
CHECK_NOTNULL(obstacle);
CHECK_GT(obstacle->history_size(), 0U);
obstacle->SetPredictorType(predictor_type_);
const Feature& latest_feature = obstacle->latest_feature();
std::vector<JunctionExit> junction_exits =
MostLikelyJunctions(latest_feature);
for (const auto& junction_exit : junction_exits) {
std::vector<TrajectoryPoint> trajectory_points;
DrawJunctionTrajectoryPoints(
latest_feature, junction_exit, FLAGS_prediction_trajectory_time_length,
FLAGS_prediction_trajectory_time_resolution, &trajectory_points);
Trajectory trajectory = GenerateTrajectory(trajectory_points);
obstacle->mutable_latest_feature()->add_predicted_trajectory()->CopyFrom(
trajectory);
}
return true;
}
void JunctionPredictor::DrawJunctionTrajectoryPoints(
const Feature& feature, const JunctionExit& junction_exit,
const double total_time, const double period,
std::vector<TrajectoryPoint>* trajectory_points) {
double speed = feature.speed();
const std::array<double, 2> start_x = {feature.position().x(),
feature.raw_velocity().x()};
const std::array<double, 2> end_x = {
junction_exit.exit_position().x(),
std::cos(junction_exit.exit_heading()) * speed};
const std::array<double, 2> start_y = {feature.position().y(),
feature.raw_velocity().y()};
const std::array<double, 2> end_y = {
junction_exit.exit_position().y(),
std::sin(junction_exit.exit_heading()) * speed};
double exit_time = GetBestTime(start_x, end_x, start_y, end_y);
std::array<double, 4> x_coeffs =
ComputePolynomial<3>(start_x, end_x, exit_time);
std::array<double, 4> y_coeffs =
ComputePolynomial<3>(start_y, end_y, exit_time);
double t = 0.0;
// Trajectory in junction
while (t <= exit_time) {
PathPoint path_point;
path_point.set_x(EvaluateCubicPolynomial(x_coeffs, t, 0));
path_point.set_y(EvaluateCubicPolynomial(y_coeffs, t, 0));
path_point.set_z(0.0);
path_point.set_theta(std::atan2(EvaluateCubicPolynomial(y_coeffs, t, 1),
EvaluateCubicPolynomial(x_coeffs, t, 1)));
TrajectoryPoint trajectory_point;
trajectory_point.mutable_path_point()->CopyFrom(path_point);
trajectory_point.set_v(std::hypot(EvaluateCubicPolynomial(x_coeffs, t, 1),
EvaluateCubicPolynomial(y_coeffs, t, 1)));
trajectory_point.set_relative_time(t);
trajectory_points->emplace_back(std::move(trajectory_point));
t += period;
}
std::string lane_id = junction_exit.exit_lane_id();
std::shared_ptr<const LaneInfo> lane_info = PredictionMap::LaneById(lane_id);
Eigen::Vector2d pos(junction_exit.exit_position().x(),
junction_exit.exit_position().y());
double lane_s = 0.0;
double lane_l = 0.0;
double theta = M_PI;
PredictionMap::GetProjection(pos, lane_info, &lane_s, &lane_l);
// Trajectory after junction
while (t <= total_time) {
if (!PredictionMap::SmoothPointFromLane(lane_id, lane_s, 0.0, &pos,
&theta)) {
AERROR << "Unable to get smooth point from lane [" << lane_id
<< "] with s [" << lane_s << "] and l [" << 0.0 << "]";
return;
}
TrajectoryPoint trajectory_point;
PathPoint path_point;
path_point.set_x(pos.x());
path_point.set_y(pos.y());
path_point.set_z(0.0);
path_point.set_theta(theta);
path_point.set_lane_id(lane_id);
trajectory_point.mutable_path_point()->CopyFrom(path_point);
trajectory_point.set_v(speed);
trajectory_point.set_a(0.0);
trajectory_point.set_relative_time(t);
trajectory_points->emplace_back(std::move(trajectory_point));
lane_s += speed * period;
while (lane_s > PredictionMap::LaneById(lane_id)->total_length()) {
lane_s = lane_s - PredictionMap::LaneById(lane_id)->total_length();
if (PredictionMap::LaneById(lane_id)->lane().successor_id_size() < 1) {
return;
}
// TODO(all) consider the logic to choose successor_id
lane_id = PredictionMap::LaneById(lane_id)->lane().successor_id(0).id();
}
t += period;
}
}
std::vector<JunctionExit> JunctionPredictor::MostLikelyJunctions(
const Feature& feature) {
if (!feature.has_junction_feature()) {
AERROR << "No junction_feature exist!";
return {};
}
if (feature.junction_feature().junction_exit_size() < 1 ||
feature.junction_feature().junction_mlp_probability_size() != 12) {
AERROR << "No junction_exit"
<< "or no enough junction_mlp_probability to process!";
return {};
}
int max_idx = 0;
double max_prob = 0.0;
for (int i = 0; i < 12; ++i) {
if (feature.junction_feature().junction_mlp_probability(i) > max_prob) {
max_prob = feature.junction_feature().junction_mlp_probability(i);
max_idx = i;
}
}
std::vector<JunctionExit> junction_exits;
for (const JunctionExit& junction_exit :
feature.junction_feature().junction_exit()) {
double x = junction_exit.exit_position().x() - feature.position().x();
double y = junction_exit.exit_position().y() - feature.position().y();
double angle = std::atan2(y, x) - std::atan2(feature.raw_velocity().y(),
feature.raw_velocity().x());
double d_idx = (angle / (2.0 * M_PI)) * 12.0;
int idx = static_cast<int>(floor(d_idx >= 0 ? d_idx : d_idx + 12));
if (idx == max_idx) {
junction_exits.push_back(junction_exit);
}
}
return junction_exits;
}
double JunctionPredictor::GetBestTime(const std::array<double, 2>& start_x,
const std::array<double, 2>& end_x,
const std::array<double, 2>& start_y,
const std::array<double, 2>& end_y) {
// Generate candidate finish times.
std::vector<double> candidate_times = GenerateCandidateTimes();
double best_time = 0.0;
double best_cost = std::numeric_limits<double>::infinity();
for (size_t i = 0; i < candidate_times.size(); ++i) {
double time_to_exit = candidate_times[i];
std::array<double, 4> x_coeffs =
ComputePolynomial<3>(start_x, end_x, time_to_exit);
std::array<double, 4> y_coeffs =
ComputePolynomial<3>(start_y, end_y, time_to_exit);
double cost_of_trajectory = CostFunction(x_coeffs, y_coeffs, time_to_exit);
if (cost_of_trajectory <= best_cost) {
best_cost = cost_of_trajectory;
best_time = time_to_exit;
}
}
return best_time;
}
double JunctionPredictor::CostFunction(const std::array<double, 4>& x_coeffs,
const std::array<double, 4>& y_coeffs,
const double time_to_exit) {
double t = 0.0;
double cost = 0.0;
while (t <= time_to_exit) {
double x_1 = EvaluateCubicPolynomial(x_coeffs, t, 1);
double x_2 = EvaluateCubicPolynomial(x_coeffs, t, 2);
double y_1 = EvaluateCubicPolynomial(y_coeffs, t, 1);
double y_2 = EvaluateCubicPolynomial(y_coeffs, t, 2);
// cost = curvature * v^2 + time_to_exit
cost =
std::max(cost, std::abs(x_1 * y_2 - y_1 * x_2) / std::hypot(x_1, y_1) +
time_to_exit);
t += FLAGS_prediction_trajectory_time_resolution;
}
return cost;
}
std::vector<double> JunctionPredictor::GenerateCandidateTimes() {
std::vector<double> candidate_times;
double t = 1.0;
double time_gap = 0.5;
while (t <= FLAGS_prediction_trajectory_time_length) {
candidate_times.push_back(t);
t += time_gap;
}
return candidate_times;
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/junction/junction_predictor_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.
*****************************************************************************/
#include "modules/prediction/predictor/junction/junction_predictor.h"
#include "cyber/common/file.h"
#include "modules/prediction/common/junction_analyzer.h"
#include "modules/prediction/common/kml_map_based_test.h"
#include "modules/prediction/common/prediction_gflags.h"
#include "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/prediction/evaluator/vehicle/junction_mlp_evaluator.h"
namespace apollo {
namespace prediction {
class JunctionPredictorTest : public KMLMapBasedTest {
public:
void SetUp() override {
const std::string file =
"modules/prediction/testdata/"
"single_perception_vehicle_injunction.pb.txt";
ACHECK(cyber::common::GetProtoFromFile(file, &perception_obstacles_));
FLAGS_enable_all_junction = true;
}
protected:
apollo::perception::PerceptionObstacles perception_obstacles_;
};
TEST_F(JunctionPredictorTest, InJunctionCase) {
EXPECT_DOUBLE_EQ(perception_obstacles_.header().timestamp_sec(),
1501183430.161906);
apollo::perception::PerceptionObstacle perception_obstacle =
perception_obstacles_.perception_obstacle(0);
EXPECT_EQ(perception_obstacle.id(), 1);
JunctionMLPEvaluator junction_mlp_evaluator;
ObstaclesContainer container;
container.GetJunctionAnalyzer()->Init("j2");
ADCTrajectoryContainer adc_trajectory_container;
container.Insert(perception_obstacles_);
container.BuildJunctionFeature();
Obstacle* obstacle_ptr = container.GetObstacle(1);
EXPECT_NE(obstacle_ptr, nullptr);
junction_mlp_evaluator.Evaluate(obstacle_ptr, &container);
JunctionPredictor predictor;
predictor.Predict(&adc_trajectory_container, obstacle_ptr, &container);
// EXPECT_EQ(predictor.NumOfTrajectories(), 2);
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/junction/BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("//tools:cpplint.bzl", "cpplint")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "junction_predictor",
srcs = ["junction_predictor.cc"],
hdrs = ["junction_predictor.h"],
copts = [
"-DMODULE_NAME=\\\"prediction\\\"",
],
deps = [
"//modules/prediction/common:prediction_util",
"//modules/prediction/predictor",
],
)
cc_test(
name = "junction_predictor_test",
size = "small",
srcs = ["junction_predictor_test.cc"],
data = [
"//modules/prediction:prediction_data",
"//modules/prediction:prediction_testdata",
],
linkopts = [
"-lgomp",
],
deps = [
"//modules/prediction/common:kml_map_based_test",
"//modules/prediction/container/obstacles:obstacles_container",
"//modules/prediction/evaluator/vehicle:junction_mlp_evaluator",
"//modules/prediction/predictor/junction:junction_predictor",
"@com_google_googletest//:gtest_main",
],
linkstatic = True,
)
cpplint()
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/junction/junction_predictor.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
* @brief Define junction predictor
*/
#pragma once
#include <string>
#include <vector>
#include "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/prediction/predictor/predictor.h"
namespace apollo {
namespace prediction {
class JunctionPredictor : public Predictor {
public:
/**
* @brief Constructor
*/
JunctionPredictor();
/**
* @brief Destructor
*/
virtual ~JunctionPredictor() = default;
/**
* @brief Make prediction
* @param ADC trajectory container
* @param Obstacle pointer
* @param Obstacles container
* @return If predicted successfully
*/
bool Predict(const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle,
ObstaclesContainer* obstacles_container) override;
private:
void DrawJunctionTrajectoryPoints(
const Feature& feature, const JunctionExit& junction_exit,
const double total_time, const double period,
std::vector<apollo::common::TrajectoryPoint>* trajectory_points);
std::vector<JunctionExit> MostLikelyJunctions(const Feature& feature);
/**
* @brief Get best pass time
* @param start_x, end_x, start_y, end_y
*/
double GetBestTime(const std::array<double, 2>& start_x,
const std::array<double, 2>& end_x,
const std::array<double, 2>& start_y,
const std::array<double, 2>& end_y);
double CostFunction(const std::array<double, 4>& x_coeffs,
const std::array<double, 4>& y_coeffs,
const double time_to_exit);
std::vector<double> GenerateCandidateTimes();
};
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/free_move/free_move_predictor_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.
*****************************************************************************/
#include "modules/prediction/predictor/free_move/free_move_predictor.h"
#include "cyber/common/file.h"
#include "modules/prediction/common/kml_map_based_test.h"
#include "modules/prediction/common/prediction_gflags.h"
#include "modules/prediction/container/obstacles/obstacles_container.h"
namespace apollo {
namespace prediction {
class FreeMovePredictorTest : public KMLMapBasedTest {
public:
FreeMovePredictorTest() {
ACHECK(cyber::common::GetProtoFromFile(
"modules/prediction/testdata/single_perception_vehicle_offlane.pb.txt",
&perception_obstacles_));
FLAGS_p_var = 0.1;
FLAGS_q_var = 0.01;
FLAGS_r_var = 0.25;
}
protected:
apollo::perception::PerceptionObstacles perception_obstacles_;
};
TEST_F(FreeMovePredictorTest, General) {
EXPECT_DOUBLE_EQ(perception_obstacles_.header().timestamp_sec(),
1501183430.161906);
apollo::perception::PerceptionObstacle perception_obstacle =
perception_obstacles_.perception_obstacle(0);
EXPECT_EQ(perception_obstacle.id(), 15);
ObstaclesContainer container;
ADCTrajectoryContainer adc_trajectory_container;
container.Insert(perception_obstacles_);
Obstacle* obstacle_ptr = container.GetObstacle(15);
EXPECT_NE(obstacle_ptr, nullptr);
FreeMovePredictor predictor;
predictor.Predict(&adc_trajectory_container, obstacle_ptr, &container);
EXPECT_EQ(predictor.NumOfTrajectories(*obstacle_ptr), 1);
}
TEST_F(FreeMovePredictorTest, Pedestrian) {
perception_obstacles_.mutable_perception_obstacle(0)->set_type(
::apollo::perception::PerceptionObstacle::PEDESTRIAN);
apollo::perception::PerceptionObstacle perception_obstacle =
perception_obstacles_.perception_obstacle(0);
ObstaclesContainer container;
ADCTrajectoryContainer adc_trajectory_container;
container.Insert(perception_obstacles_);
Obstacle* obstacle_ptr = container.GetObstacle(15);
FreeMovePredictor predictor;
predictor.Predict(&adc_trajectory_container, obstacle_ptr, &container);
EXPECT_EQ(predictor.NumOfTrajectories(*obstacle_ptr), 1);
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/free_move/free_move_predictor.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/prediction/predictor/free_move/free_move_predictor.h"
#include "modules/prediction/common/prediction_gflags.h"
#include "modules/prediction/common/prediction_util.h"
#include "modules/prediction/proto/prediction_conf.pb.h"
namespace apollo {
namespace prediction {
using apollo::common::TrajectoryPoint;
using apollo::perception::PerceptionObstacle;
FreeMovePredictor::FreeMovePredictor() {
predictor_type_ = ObstacleConf::FREE_MOVE_PREDICTOR;
}
bool FreeMovePredictor::Predict(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
Clear();
CHECK_NOTNULL(obstacle);
CHECK_GT(obstacle->history_size(), 0U);
obstacle->SetPredictorType(predictor_type_);
const Feature& feature = obstacle->latest_feature();
if (!feature.has_position() || !feature.has_velocity() ||
!feature.position().has_x() || !feature.position().has_y()) {
AERROR << "Obstacle [" << obstacle->id()
<< " is missing position or velocity";
return false;
}
double prediction_total_time = FLAGS_prediction_trajectory_time_length;
if (obstacle->type() == PerceptionObstacle::PEDESTRIAN) {
prediction_total_time = FLAGS_prediction_trajectory_time_length;
}
if (feature.predicted_trajectory().empty()) {
std::vector<TrajectoryPoint> points;
Eigen::Vector2d position(feature.position().x(), feature.position().y());
Eigen::Vector2d velocity(feature.velocity().x(), feature.velocity().y());
Eigen::Vector2d acc(feature.acceleration().x(), feature.acceleration().y());
double theta = feature.velocity_heading();
DrawFreeMoveTrajectoryPoints(
position, velocity, acc, theta, 0.0, prediction_total_time,
FLAGS_prediction_trajectory_time_resolution, &points);
Trajectory trajectory = GenerateTrajectory(points);
obstacle->mutable_latest_feature()->add_predicted_trajectory()->CopyFrom(
trajectory);
SetEqualProbability(1.0, 0, obstacle);
} else {
for (int i = 0; i < feature.predicted_trajectory_size(); ++i) {
Trajectory* trajectory =
obstacle->mutable_latest_feature()->mutable_predicted_trajectory(i);
int traj_size = trajectory->trajectory_point_size();
if (traj_size == 0) {
AERROR << "Empty predicted trajectory found";
continue;
}
std::vector<TrajectoryPoint> points;
const TrajectoryPoint& last_point =
trajectory->trajectory_point(traj_size - 1);
double theta = last_point.path_point().theta();
Eigen::Vector2d position(last_point.path_point().x(),
last_point.path_point().y());
Eigen::Vector2d velocity(last_point.v() * std::cos(theta),
last_point.v() * std::sin(theta));
Eigen::Vector2d acc(last_point.a() * std::cos(theta),
last_point.a() * std::sin(theta));
double last_relative_time = last_point.relative_time();
DrawFreeMoveTrajectoryPoints(
position, velocity, acc, theta, last_relative_time,
prediction_total_time - last_relative_time,
FLAGS_prediction_trajectory_time_resolution, &points);
// The following for-loop starts from index 1 because the vector points
// includes the last point in the existing predicted trajectory
for (size_t i = 1; i < points.size(); ++i) {
trajectory->add_trajectory_point()->CopyFrom(points[i]);
}
}
}
return true;
}
void FreeMovePredictor::DrawFreeMoveTrajectoryPoints(
const Eigen::Vector2d& position, const Eigen::Vector2d& velocity,
const Eigen::Vector2d& acc, const double theta, const double start_time,
const double total_time, const double period,
std::vector<TrajectoryPoint>* points) {
Eigen::Matrix<double, 6, 1> state;
state.setZero();
state(0, 0) = 0.0;
state(1, 0) = 0.0;
state(2, 0) = velocity(0);
state(3, 0) = velocity(1);
state(4, 0) = common::math::Clamp(acc(0), FLAGS_vehicle_min_linear_acc,
FLAGS_vehicle_max_linear_acc);
state(5, 0) = common::math::Clamp(acc(1), FLAGS_vehicle_min_linear_acc,
FLAGS_vehicle_max_linear_acc);
Eigen::Matrix<double, 6, 6> transition;
transition.setIdentity();
transition(0, 2) = period;
transition(0, 4) = 0.5 * period * period;
transition(1, 3) = period;
transition(1, 5) = 0.5 * period * period;
transition(2, 4) = period;
transition(3, 5) = period;
size_t num = static_cast<size_t>(total_time / period);
::apollo::prediction::predictor_util::GenerateFreeMoveTrajectoryPoints(
&state, transition, theta, start_time, num, period, points);
for (size_t i = 0; i < points->size(); ++i) {
::apollo::prediction::predictor_util::TranslatePoint(
position[0], position[1], &(points->operator[](i)));
}
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/free_move/BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("//tools:cpplint.bzl", "cpplint")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "free_move_predictor",
srcs = ["free_move_predictor.cc"],
hdrs = ["free_move_predictor.h"],
copts = [
"-DMODULE_NAME=\\\"prediction\\\"",
],
deps = [
"//modules/prediction/common:prediction_util",
"//modules/prediction/container/obstacles:obstacles_container",
"//modules/prediction/predictor",
],
)
cc_test(
name = "free_move_predictor_test",
size = "small",
srcs = ["free_move_predictor_test.cc"],
data = [
"//modules/prediction:prediction_data",
"//modules/prediction:prediction_testdata",
],
deps = [
"//modules/prediction/common:kml_map_based_test",
"//modules/prediction/predictor/free_move:free_move_predictor",
"@com_google_googletest//:gtest_main",
],
)
cpplint()
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/free_move/free_move_predictor.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
* @brief Define lane sequence predictor
*/
#pragma once
#include <vector>
#include "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/prediction/predictor/predictor.h"
namespace apollo {
namespace prediction {
class FreeMovePredictor : public Predictor {
public:
/**
* @brief Constructor
*/
FreeMovePredictor();
/**
* @brief Destructor
*/
virtual ~FreeMovePredictor() = default;
/**
* @brief Make prediction
* @param ADC trajectory container
* @param Obstacle pointer
* @param Obstacles container
* @return If predicted successfully
*/
bool Predict(const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle,
ObstaclesContainer* obstacles_container) override;
private:
/**
* @brief Generate free move trajectory
* @param Position
* @param Velocity
* @param Acceleration
* @param Kalman Filter
* @param start time
* @param Total time
* @param Generated trajectory points
*/
void DrawFreeMoveTrajectoryPoints(
const Eigen::Vector2d& position, const Eigen::Vector2d& velocity,
const Eigen::Vector2d& acc, const double theta, const double start_time,
const double total_time, const double period,
std::vector<apollo::common::TrajectoryPoint>* points);
};
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/extrapolation/extrapolation_predictor.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
* @brief Define extrapolation predictor
*/
#pragma once
#include <string>
#include "modules/prediction/container/obstacles/obstacle_clusters.h"
#include "modules/prediction/predictor/sequence/sequence_predictor.h"
namespace apollo {
namespace prediction {
class ExtrapolationPredictor : public SequencePredictor {
public:
/**
* @brief Constructor
*/
ExtrapolationPredictor();
/**
* @brief Destructor
*/
virtual ~ExtrapolationPredictor() = default;
/**
* @brief Make prediction
* @param ADC trajectory container
* @param Obstacle pointer
* @param Obstacles container
* @return If predicted successfully
*/
bool Predict(const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle,
ObstaclesContainer* obstacles_container) override;
private:
struct LaneSearchResult {
bool found = false;
std::string lane_id = "";
int point_index = -1;
};
void PostProcess(Trajectory* trajectory_ptr, ObstacleClusters* clusters_ptr);
LaneSearchResult SearchExtrapolationLane(const Trajectory& trajectory,
const int num_tail_point);
void ExtrapolateByLane(const LaneSearchResult& lane_search_result,
const double extrapolation_speed,
Trajectory* trajectory_ptr,
ObstacleClusters* clusters_ptr);
void ExtrapolateByFreeMove(const int num_tail_point,
const double extrapolation_speed,
Trajectory* trajectory_ptr);
double ComputeExtraplationSpeed(const int num_tail_point,
const Trajectory& trajectory);
};
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/extrapolation/BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library")
load("//tools:cpplint.bzl", "cpplint")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "extrapolation_predictor",
srcs = ["extrapolation_predictor.cc"],
hdrs = ["extrapolation_predictor.h"],
copts = [
"-DMODULE_NAME=\\\"prediction\\\"",
],
deps = [
"//modules/common/math",
"//modules/prediction/common:prediction_gflags",
"//modules/prediction/common:prediction_map",
"//modules/prediction/common:prediction_util",
"//modules/prediction/container/obstacles:obstacle_clusters",
"//modules/prediction/container/obstacles:obstacles_container",
"//modules/prediction/predictor/sequence:sequence_predictor",
"//modules/common_msgs/prediction_msgs:lane_graph_cc_proto",
],
)
cpplint()
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/extrapolation/extrapolation_predictor.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/prediction/predictor/extrapolation/extrapolation_predictor.h"
#include "modules/common/math/vec2d.h"
#include "modules/prediction/common/prediction_gflags.h"
#include "modules/prediction/common/prediction_map.h"
#include "modules/common_msgs/prediction_msgs/lane_graph.pb.h"
namespace apollo {
namespace prediction {
using apollo::common::PathPoint;
using apollo::common::TrajectoryPoint;
ExtrapolationPredictor::ExtrapolationPredictor() {
predictor_type_ = ObstacleConf::EXTRAPOLATION_PREDICTOR;
}
bool ExtrapolationPredictor::Predict(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
Clear();
CHECK_NOTNULL(obstacle);
CHECK_GT(obstacle->history_size(), 0U);
obstacle->SetPredictorType(predictor_type_);
Feature* feature_ptr = obstacle->mutable_latest_feature();
if (!feature_ptr->lane().has_lane_graph()) {
AERROR << "Obstacle [" << obstacle->id() << "] has no lane graph.";
return false;
}
if (feature_ptr->predicted_trajectory().empty()) {
AERROR << "Obstacle [" << obstacle->id()
<< "] has no short-term trajectories.";
return false;
}
auto* cluster_ptr = obstacles_container->GetClustersPtr();
for (int i = 0; i < feature_ptr->predicted_trajectory_size(); ++i) {
Trajectory* trajectory_ptr = feature_ptr->mutable_predicted_trajectory(i);
PostProcess(trajectory_ptr, cluster_ptr);
}
return true;
}
void ExtrapolationPredictor::PostProcess(Trajectory* trajectory_ptr,
ObstacleClusters* clusters_ptr) {
// TODO(kechxu) handle corner cases
static constexpr int kNumTailPoint = 5;
ExtrapolationPredictor::LaneSearchResult lane_search_result =
SearchExtrapolationLane(*trajectory_ptr, kNumTailPoint);
double extraplation_speed =
ComputeExtraplationSpeed(kNumTailPoint, *trajectory_ptr);
if (lane_search_result.found) {
ExtrapolateByLane(lane_search_result, extraplation_speed, trajectory_ptr,
clusters_ptr);
} else {
ExtrapolateByFreeMove(kNumTailPoint, extraplation_speed, trajectory_ptr);
}
}
ExtrapolationPredictor::LaneSearchResult
ExtrapolationPredictor::SearchExtrapolationLane(const Trajectory& trajectory,
const int num_tail_point) {
static constexpr double radius = 1.0;
static constexpr double angle_diff_threshold = M_PI / 3.0;
int num_trajectory_point = trajectory.trajectory_point_size();
LaneSearchResult lane_search_result;
for (int i = num_trajectory_point - 1;
i >= num_trajectory_point - num_tail_point; --i) {
const TrajectoryPoint& trajectory_point = trajectory.trajectory_point(i);
const PathPoint& path_point = trajectory_point.path_point();
apollo::common::PointENU point_enu;
point_enu.set_x(path_point.x());
point_enu.set_y(path_point.y());
double heading = path_point.theta();
auto lane_info_ptr = PredictionMap::GetMostLikelyCurrentLane(
point_enu, radius, heading, angle_diff_threshold);
if (lane_info_ptr != nullptr) {
lane_search_result.found = true;
lane_search_result.lane_id = lane_info_ptr->lane().id().id();
lane_search_result.point_index = i;
break;
}
}
return lane_search_result;
}
void ExtrapolationPredictor::ExtrapolateByLane(
const LaneSearchResult& lane_search_result, const double extraplation_speed,
Trajectory* trajectory_ptr, ObstacleClusters* clusters_ptr) {
std::string start_lane_id = lane_search_result.lane_id;
int point_index = lane_search_result.point_index;
while (trajectory_ptr->trajectory_point_size() > point_index + 1) {
trajectory_ptr->mutable_trajectory_point()->RemoveLast();
}
auto lane_info_ptr = PredictionMap::LaneById(start_lane_id);
int num_trajectory_point = trajectory_ptr->trajectory_point_size();
const TrajectoryPoint& last_point =
trajectory_ptr->trajectory_point(num_trajectory_point - 1);
Eigen::Vector2d position(last_point.path_point().x(),
last_point.path_point().y());
double lane_s = 0.0;
double lane_l = 0.0;
bool projected =
PredictionMap::GetProjection(position, lane_info_ptr, &lane_s, &lane_l);
if (!projected) {
AERROR << "Position (" << position.x() << ", " << position.y() << ") "
<< "cannot be projected onto lane [" << start_lane_id << "]";
return;
}
double last_relative_time = last_point.relative_time();
double time_range =
FLAGS_prediction_trajectory_time_length - last_relative_time;
double time_resolution = FLAGS_prediction_trajectory_time_resolution;
double length = extraplation_speed * time_range;
LaneGraph lane_graph =
clusters_ptr->GetLaneGraph(lane_s, length, false, lane_info_ptr);
CHECK_EQ(lane_graph.lane_sequence_size(), 1);
const LaneSequence& lane_sequence = lane_graph.lane_sequence(0);
int lane_segment_index = 0;
std::string lane_id =
lane_sequence.lane_segment(lane_segment_index).lane_id();
int num_point_remained = static_cast<int>(time_range / time_resolution);
for (int i = 1; i <= num_point_remained; ++i) {
double relative_time =
last_relative_time + static_cast<double>(i) * time_resolution;
Eigen::Vector2d point;
double theta = M_PI;
if (!PredictionMap::SmoothPointFromLane(lane_id, lane_s, lane_l, &point,
&theta)) {
AERROR << "Unable to get smooth point from lane [" << lane_id
<< "] with s [" << lane_s << "] and l [" << lane_l << "]";
break;
}
TrajectoryPoint* trajectory_point = trajectory_ptr->add_trajectory_point();
PathPoint* path_point = trajectory_point->mutable_path_point();
path_point->set_x(point.x());
path_point->set_y(point.y());
path_point->set_z(0.0);
path_point->set_theta(theta);
path_point->set_lane_id(lane_id);
trajectory_point->set_v(extraplation_speed);
trajectory_point->set_a(0.0);
trajectory_point->set_relative_time(relative_time);
lane_s += extraplation_speed * time_resolution;
while (lane_s > PredictionMap::LaneById(lane_id)->total_length() &&
lane_segment_index + 1 < lane_sequence.lane_segment_size()) {
lane_segment_index += 1;
lane_s = lane_s - PredictionMap::LaneById(lane_id)->total_length();
lane_id = lane_sequence.lane_segment(lane_segment_index).lane_id();
}
lane_l *= FLAGS_go_approach_rate;
}
}
void ExtrapolationPredictor::ExtrapolateByFreeMove(
const int num_tail_point, const double extraplation_speed,
Trajectory* trajectory_ptr) {
int num_trajectory_point = trajectory_ptr->trajectory_point_size();
const TrajectoryPoint& last_point =
trajectory_ptr->trajectory_point(num_trajectory_point - 1);
double theta = last_point.path_point().theta();
double time_resolution = FLAGS_prediction_trajectory_time_resolution;
double time_length = FLAGS_prediction_trajectory_time_length;
double relative_time = last_point.relative_time() + time_resolution;
while (relative_time < time_length) {
int prev_size = trajectory_ptr->trajectory_point_size();
const TrajectoryPoint& prev_point =
trajectory_ptr->trajectory_point(prev_size - 1);
TrajectoryPoint* curr_point = trajectory_ptr->add_trajectory_point();
double dx = time_resolution * extraplation_speed * std::cos(theta);
double dy = time_resolution * extraplation_speed * std::sin(theta);
double curr_x = prev_point.path_point().x() + dx;
double curr_y = prev_point.path_point().y() + dy;
PathPoint* curr_path_point_ptr = curr_point->mutable_path_point();
curr_path_point_ptr->set_x(curr_x);
curr_path_point_ptr->set_y(curr_y);
curr_path_point_ptr->set_theta(theta);
curr_point->set_v(extraplation_speed);
curr_point->set_relative_time(relative_time);
relative_time += time_resolution;
}
}
double ExtrapolationPredictor::ComputeExtraplationSpeed(
const int num_tail_point, const Trajectory& trajectory) {
int num_trajectory_point = trajectory.trajectory_point_size();
CHECK_GT(num_trajectory_point, num_tail_point);
CHECK_GT(num_tail_point, 0);
double v_sum = 0.0;
int mid_index = num_trajectory_point - num_tail_point;
for (int i = mid_index; i < num_trajectory_point; ++i) {
v_sum += trajectory.trajectory_point(i).v();
}
return v_sum / static_cast<double>(num_tail_point);
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/sequence/sequence_predictor.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/prediction/predictor/sequence/sequence_predictor.h"
#include <limits>
#include <memory>
#include "modules/common_msgs/basic_msgs/geometry.pb.h"
#include "modules/prediction/common/prediction_gflags.h"
#include "modules/prediction/container/container_manager.h"
#include "modules/prediction/container/pose/pose_container.h"
namespace apollo {
namespace prediction {
using apollo::common::PathPoint;
using apollo::common::Point3D;
using apollo::common::TrajectoryPoint;
using apollo::hdmap::LaneInfo;
bool SequencePredictor::Predict(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
Clear();
CHECK_NOTNULL(obstacle);
CHECK_GT(obstacle->history_size(), 0U);
return true;
}
void SequencePredictor::Clear() { Predictor::Clear(); }
std::string SequencePredictor::ToString(const LaneSequence& sequence) {
std::string str_lane_sequence = "";
if (sequence.lane_segment_size() > 0) {
str_lane_sequence += sequence.lane_segment(0).lane_id();
}
for (int i = 1; i < sequence.lane_segment_size(); ++i) {
str_lane_sequence += ("->" + sequence.lane_segment(i).lane_id());
}
return str_lane_sequence;
}
void SequencePredictor::FilterLaneSequences(
const Feature& feature, const std::string& lane_id,
const Obstacle* ego_vehicle_ptr,
const ADCTrajectoryContainer* adc_trajectory_container,
std::vector<bool>* enable_lane_sequence) {
if (!feature.has_lane() || !feature.lane().has_lane_graph()) {
return;
}
const LaneGraph& lane_graph = feature.lane().lane_graph();
int num_lane_sequence = lane_graph.lane_sequence_size();
std::vector<LaneChangeType> lane_change_type(num_lane_sequence,
LaneChangeType::INVALID);
std::pair<int, double> change(-1, -1.0);
std::pair<int, double> all(-1, -1.0);
/**
* Filter out those obstacles that are close to the ADC
* so that we will ignore them and drive normally unless
* they really kick into our lane.
*/
for (int i = 0; i < num_lane_sequence; ++i) {
const LaneSequence& sequence = lane_graph.lane_sequence(i);
if (sequence.lane_type() == apollo::hdmap::Lane::PARKING) {
(*enable_lane_sequence)[i] = false;
ADEBUG << "Ignore lane sequence [" << ToString(sequence) << "].";
continue;
}
lane_change_type[i] = GetLaneChangeType(lane_id, sequence);
if (lane_change_type[i] != LaneChangeType::LEFT &&
lane_change_type[i] != LaneChangeType::RIGHT &&
lane_change_type[i] != LaneChangeType::ONTO_LANE) {
ADEBUG << "Ignore lane sequence [" << ToString(sequence) << "].";
continue;
}
// The obstacle has interference with ADC within a small distance
double distance = GetLaneChangeDistanceWithADC(sequence, ego_vehicle_ptr,
adc_trajectory_container);
ADEBUG << "Distance to ADC " << std::fixed << std::setprecision(6)
<< distance;
if (distance > 0.0 && distance < FLAGS_lane_change_dist) {
bool obs_within_its_own_lane = true;
for (int j = 0; j < feature.polygon_point_size(); j++) {
Eigen::Vector2d position(feature.polygon_point(j).x(),
feature.polygon_point(j).y());
std::shared_ptr<const LaneInfo> lane_info =
PredictionMap::LaneById(lane_id);
if (lane_info == nullptr) {
obs_within_its_own_lane = false;
break;
}
double lane_s = 0.0;
double lane_l = 0.0;
PredictionMap::GetProjection(position, lane_info, &lane_s, &lane_l);
double left = 0.0;
double right = 0.0;
lane_info->GetWidth(lane_s, &left, &right);
if (lane_l > left || lane_l < -right) {
obs_within_its_own_lane = false;
break;
}
}
if (obs_within_its_own_lane) {
(*enable_lane_sequence)[i] = false;
ADEBUG << "Filter trajectory [" << ToString(sequence)
<< "] due to small distance " << distance << ".";
}
}
}
/**
* Pick the most probable lane-sequence and lane-change
*/
for (int i = 0; i < num_lane_sequence; ++i) {
const LaneSequence& sequence = lane_graph.lane_sequence(i);
if (!(*enable_lane_sequence)[i]) {
ADEBUG << "Disabled lane sequence [" << ToString(sequence) << "].";
continue;
}
double probability = sequence.probability();
if (LaneSequenceWithMaxProb(lane_change_type[i], probability, all.second)) {
all.first = i;
all.second = probability;
}
if (LaneChangeWithMaxProb(lane_change_type[i], probability,
change.second)) {
change.first = i;
change.second = probability;
}
}
double lane_sequence_threshold = FLAGS_lane_sequence_threshold_cruise;
if (feature.has_junction_feature()) {
lane_sequence_threshold = FLAGS_lane_sequence_threshold_junction;
}
for (int i = 0; i < num_lane_sequence; ++i) {
const LaneSequence& sequence = lane_graph.lane_sequence(i);
if (!(*enable_lane_sequence)[i]) {
ADEBUG << "Disabled lane sequence [" << ToString(sequence) << "].";
continue;
}
double probability = sequence.probability();
if (probability < lane_sequence_threshold && i != all.first) {
(*enable_lane_sequence)[i] = false;
} else if (change.first >= 0 && change.first < num_lane_sequence &&
(lane_change_type[i] == LaneChangeType::LEFT ||
lane_change_type[i] == LaneChangeType::RIGHT) &&
lane_change_type[i] != lane_change_type[change.first]) {
(*enable_lane_sequence)[i] = false;
}
}
}
SequencePredictor::LaneChangeType SequencePredictor::GetLaneChangeType(
const std::string& lane_id, const LaneSequence& lane_sequence) {
if (lane_id.empty()) {
return LaneChangeType::ONTO_LANE;
}
std::string lane_change_id = lane_sequence.lane_segment(0).lane_id();
if (lane_id == lane_change_id) {
return LaneChangeType::STRAIGHT;
} else {
auto ptr_change_lane = PredictionMap::LaneById(lane_change_id);
auto ptr_current_lane = PredictionMap::LaneById(lane_id);
if (PredictionMap::IsLeftNeighborLane(ptr_change_lane, ptr_current_lane)) {
return LaneChangeType::LEFT;
} else if (PredictionMap::IsRightNeighborLane(ptr_change_lane,
ptr_current_lane)) {
return LaneChangeType::RIGHT;
}
}
return LaneChangeType::INVALID;
}
double SequencePredictor::GetLaneChangeDistanceWithADC(
const LaneSequence& lane_sequence, const Obstacle* ego_vehicle_ptr,
const ADCTrajectoryContainer* adc_trajectory_container) {
if (!adc_trajectory_container->HasOverlap(lane_sequence)) {
ADEBUG << "The sequence [" << ToString(lane_sequence)
<< "] has no overlap with ADC.";
return std::numeric_limits<double>::max();
}
Eigen::Vector2d adc_position;
if (ego_vehicle_ptr != nullptr && ego_vehicle_ptr->history_size() > 0) {
const auto& position = ego_vehicle_ptr->latest_feature().position();
adc_position[0] = position.x();
adc_position[1] = position.y();
std::string obstacle_lane_id = lane_sequence.lane_segment(0).lane_id();
double obstacle_lane_s = lane_sequence.lane_segment(0).start_s();
double lane_s = 0.0;
double lane_l = 0.0;
if (PredictionMap::GetProjection(adc_position,
PredictionMap::LaneById(obstacle_lane_id),
&lane_s, &lane_l)) {
ADEBUG << "Distance with ADC is " << std::fabs(lane_s - obstacle_lane_s);
return obstacle_lane_s - lane_s;
}
}
ADEBUG << "Invalid ADC pose.";
return std::numeric_limits<double>::max();
}
bool SequencePredictor::LaneSequenceWithMaxProb(const LaneChangeType& type,
const double probability,
const double max_prob) {
if (probability > max_prob) {
return true;
} else {
double prob_diff = std::fabs(probability - max_prob);
if (prob_diff <= std::numeric_limits<double>::epsilon() &&
type == LaneChangeType::STRAIGHT) {
return true;
}
}
return false;
}
bool SequencePredictor::LaneChangeWithMaxProb(const LaneChangeType& type,
const double probability,
const double max_prob) {
if (type == LaneChangeType::LEFT || type == LaneChangeType::RIGHT) {
if (probability > max_prob) {
return true;
}
}
return false;
}
void SequencePredictor::DrawConstantAccelerationTrajectory(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const double total_time, const double period, const double acceleration,
std::vector<TrajectoryPoint>* points) {
const Feature& feature = obstacle.latest_feature();
if (!feature.has_position() || !feature.has_velocity() ||
!feature.position().has_x() || !feature.position().has_y()) {
AERROR << "Obstacle [" << obstacle.id()
<< " is missing position or velocity";
return;
}
Eigen::Vector2d position(feature.position().x(), feature.position().y());
double speed = feature.speed();
int lane_segment_index = 0;
std::string lane_id =
lane_sequence.lane_segment(lane_segment_index).lane_id();
std::shared_ptr<const LaneInfo> lane_info = PredictionMap::LaneById(lane_id);
double lane_s = 0.0;
double lane_l = 0.0;
if (!PredictionMap::GetProjection(position, lane_info, &lane_s, &lane_l)) {
AERROR << "Failed in getting lane s and lane l";
return;
}
size_t total_num = static_cast<size_t>(total_time / period);
for (size_t i = 0; i < total_num; ++i) {
double relative_time = static_cast<double>(i) * period;
Eigen::Vector2d point;
double theta = M_PI;
if (!PredictionMap::SmoothPointFromLane(lane_id, lane_s, lane_l, &point,
&theta)) {
AERROR << "Unable to get smooth point from lane [" << lane_id
<< "] with s [" << lane_s << "] and l [" << lane_l << "]";
break;
}
TrajectoryPoint trajectory_point;
PathPoint path_point;
path_point.set_x(point.x());
path_point.set_y(point.y());
path_point.set_z(0.0);
path_point.set_theta(theta);
path_point.set_lane_id(lane_id);
trajectory_point.mutable_path_point()->CopyFrom(path_point);
trajectory_point.set_v(speed);
trajectory_point.set_a(0.0);
trajectory_point.set_relative_time(relative_time);
points->emplace_back(std::move(trajectory_point));
if (speed < FLAGS_double_precision) {
continue;
}
lane_s += speed * period + 0.5 * acceleration * period * period;
speed += acceleration * period;
while (lane_s > PredictionMap::LaneById(lane_id)->total_length() &&
lane_segment_index + 1 < lane_sequence.lane_segment_size()) {
lane_segment_index += 1;
lane_s = lane_s - PredictionMap::LaneById(lane_id)->total_length();
lane_id = lane_sequence.lane_segment(lane_segment_index).lane_id();
}
lane_l *= FLAGS_go_approach_rate;
}
}
double SequencePredictor::GetLaneSequenceCurvatureByS(
const LaneSequence& lane_sequence, const double s) {
CHECK_GT(lane_sequence.lane_segment_size(), 0);
double lane_s = s + lane_sequence.lane_segment(0).start_s();
for (const LaneSegment& lane_segment : lane_sequence.lane_segment()) {
std::string lane_id = lane_segment.lane_id();
std::shared_ptr<const LaneInfo> lane_info_ptr =
PredictionMap::LaneById(lane_id);
double lane_length = lane_info_ptr->total_length();
if (lane_s > lane_length + FLAGS_double_precision) {
lane_s -= lane_length;
} else {
return lane_info_ptr->Curvature(lane_s);
}
}
ADEBUG << "Outside lane sequence range, use 0.0 to approximate.";
return 0.0;
}
bool SequencePredictor::GetLongitudinalPolynomial(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const std::pair<double, double>& lon_end_vt,
std::array<double, 5>* coefficients) {
// Sanity check.
CHECK_NOTNULL(coefficients);
CHECK_GT(obstacle.history_size(), 0U);
CHECK_GT(lane_sequence.lane_segment_size(), 0);
CHECK_GT(lane_sequence.lane_segment(0).lane_point_size(), 0);
// Get obstacle info.
const Feature& feature = obstacle.latest_feature();
double theta = feature.velocity_heading();
double v = feature.speed();
double a = 0.0;
// Get lane info.
if (FLAGS_enable_lane_sequence_acc && lane_sequence.has_acceleration()) {
a = lane_sequence.acceleration();
}
int lane_seg_start_idx = lane_sequence.adc_lane_segment_idx();
int lane_point_start_idx =
lane_sequence.lane_segment(lane_seg_start_idx).adc_lane_point_idx();
if (lane_point_start_idx >=
lane_sequence.lane_segment(lane_seg_start_idx).lane_point_size()) {
lane_point_start_idx =
lane_sequence.lane_segment(lane_seg_start_idx).lane_point_size() - 1;
}
double lane_heading = lane_sequence.lane_segment(lane_seg_start_idx)
.lane_point(lane_point_start_idx)
.heading();
// Set the initial conditions for the diff. eqn.
double s0 = 0.0;
double ds0 = v * std::cos(theta - lane_heading);
double dds0 = a * std::cos(theta - lane_heading);
// double min_end_speed = std::min(FLAGS_still_obstacle_speed_threshold, ds0);
// double ds1 = std::max(min_end_speed, ds0 + dds0 * time_to_end_state);
double ds1 = lon_end_vt.first;
double dds1 = 0.0;
double p = lon_end_vt.second; // time to lon end state
// Solve for the coefficients.
coefficients->operator[](0) = s0;
coefficients->operator[](1) = ds0;
coefficients->operator[](2) = 0.5 * dds0;
double b0 = ds1 - dds0 * p - ds0;
double b1 = dds1 - dds0;
double p2 = p * p;
double p3 = p2 * p;
coefficients->operator[](3) = b0 / p2 - b1 / 3.0 / p;
coefficients->operator[](4) = -0.5 / p3 * b0 + 0.25 / p2 * b1;
return true;
}
bool SequencePredictor::GetLateralPolynomial(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const double time_to_end_state, std::array<double, 4>* coefficients) {
// Sanity check.
CHECK_NOTNULL(coefficients);
CHECK_GT(obstacle.history_size(), 0U);
CHECK_GT(lane_sequence.lane_segment_size(), 0);
CHECK_GT(lane_sequence.lane_segment(0).lane_point_size(), 0);
// Get obstacle info.
const Feature& feature = obstacle.latest_feature();
double theta = feature.velocity_heading();
double v = feature.speed();
Point3D position = feature.position();
int lane_seg_start_idx = lane_sequence.adc_lane_segment_idx();
int lane_point_start_idx =
lane_sequence.lane_segment(lane_seg_start_idx).adc_lane_point_idx();
if (lane_point_start_idx >=
lane_sequence.lane_segment(lane_seg_start_idx).lane_point_size()) {
lane_point_start_idx =
lane_sequence.lane_segment(lane_seg_start_idx).lane_point_size() - 1;
}
const LanePoint& start_lane_point =
lane_sequence.lane_segment(lane_seg_start_idx)
.lane_point(lane_point_start_idx);
// Get lane info.
double pos_delta_x = position.x() - start_lane_point.position().x();
double pos_delta_y = position.y() - start_lane_point.position().y();
double lane_heading_x = std::cos(start_lane_point.heading());
double lane_heading_y = std::sin(start_lane_point.heading());
// Check if obstacle is to the left(+) or right(-) of the lane.
double cross_prod =
lane_heading_x * pos_delta_y - lane_heading_y * pos_delta_x;
double shift = std::hypot(pos_delta_x, pos_delta_y);
// Set the initial conditions for solving diff. eqn.
double l0 = (cross_prod > 0) ? shift : -shift;
double dl0 = v * std::sin(theta - start_lane_point.heading());
double l1 = 0.0;
double dl1 = 0.0;
// Solve for the coefficients.
coefficients->operator[](0) = l0;
coefficients->operator[](1) = dl0;
double p = time_to_end_state;
double p2 = p * p;
double p3 = p2 * p;
double tmp_var1 = (l1 - dl0) * p;
double tmp_var2 = dl1 - l0 - dl0 * p;
coefficients->operator[](2) = (3.0 * tmp_var2 - tmp_var1) / p2;
coefficients->operator[](3) = (tmp_var1 - 2.0 * tmp_var2) / p3;
return true;
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/sequence/BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("//tools:cpplint.bzl", "cpplint")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "sequence_predictor",
srcs = ["sequence_predictor.cc"],
hdrs = ["sequence_predictor.h"],
copts = [
"-DMODULE_NAME=\\\"prediction\\\"",
],
deps = [
"//modules/prediction/container:container_manager",
"//modules/prediction/predictor",
],
)
cc_test(
name = "sequence_predictor_test",
size = "small",
srcs = ["sequence_predictor_test.cc"],
data = [
"//modules/prediction:prediction_data",
"//modules/prediction:prediction_testdata",
],
deps = [
"//modules/prediction/common:kml_map_based_test",
"//modules/prediction/common:prediction_gflags",
"//modules/prediction/evaluator/vehicle:mlp_evaluator",
"//modules/prediction/predictor/sequence:sequence_predictor",
],
)
cpplint()
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/sequence/sequence_predictor_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.
*****************************************************************************/
#include "modules/prediction/predictor/sequence/sequence_predictor.h"
#include "cyber/common/file.h"
#include "modules/prediction/common/kml_map_based_test.h"
#include "modules/prediction/common/prediction_gflags.h"
#include "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/prediction/evaluator/vehicle/mlp_evaluator.h"
namespace apollo {
namespace prediction {
class SequencePredictorTest : public KMLMapBasedTest {
public:
virtual void SetUp() {
const std::string file =
"modules/prediction/testdata/single_perception_vehicle_onlane.pb.txt";
cyber::common::GetProtoFromFile(file, &perception_obstacles_);
}
protected:
apollo::perception::PerceptionObstacles perception_obstacles_;
};
TEST_F(SequencePredictorTest, General) {
EXPECT_DOUBLE_EQ(perception_obstacles_.header().timestamp_sec(),
1501183430.161906);
apollo::perception::PerceptionObstacle perception_obstacle =
perception_obstacles_.perception_obstacle(0);
EXPECT_EQ(perception_obstacle.id(), 1);
MLPEvaluator mlp_evaluator;
ObstaclesContainer container;
ADCTrajectoryContainer adc_trajectory_container;
container.Insert(perception_obstacles_);
container.BuildLaneGraph();
Obstacle* obstacle_ptr = container.GetObstacle(1);
EXPECT_NE(obstacle_ptr, nullptr);
mlp_evaluator.Evaluate(obstacle_ptr, &container);
SequencePredictor predictor;
predictor.Predict(&adc_trajectory_container, obstacle_ptr, &container);
EXPECT_EQ(predictor.NumOfTrajectories(*obstacle_ptr), 0);
LaneSequence* lane_seq = obstacle_ptr->mutable_latest_feature()
->mutable_lane()
->mutable_lane_graph()
->mutable_lane_sequence(0);
std::string sequence_str = predictor.ToString(*lane_seq);
EXPECT_GT(sequence_str.size(), 0);
SequencePredictor::LaneChangeType lane_change_type =
predictor.GetLaneChangeType(lane_seq->mutable_lane_segment(0)->lane_id(),
*lane_seq);
EXPECT_EQ(lane_change_type, SequencePredictor::LaneChangeType::STRAIGHT);
EXPECT_TRUE(predictor.LaneSequenceWithMaxProb(lane_change_type, 0.5, 0.5));
EXPECT_FALSE(predictor.LaneChangeWithMaxProb(lane_change_type, 0.5, 0.5));
Obstacle* ego_vehicle_ptr = container.GetObstacle(FLAGS_ego_vehicle_id);
std::vector<bool> enable_lane_sequence(3, true);
predictor.FilterLaneSequences(*obstacle_ptr->mutable_latest_feature(),
lane_seq->mutable_lane_segment(0)->lane_id(),
ego_vehicle_ptr, &adc_trajectory_container,
&enable_lane_sequence);
EXPECT_TRUE(enable_lane_sequence[0]);
predictor.Clear();
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/sequence/sequence_predictor.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
* @brief Define the sequence predictor base class
*/
#pragma once
#include <string>
#include <utility>
#include <vector>
#include "gtest/gtest.h"
#include "modules/prediction/predictor/predictor.h"
namespace apollo {
namespace prediction {
class SequencePredictor : public Predictor {
public:
enum class LaneChangeType {
LEFT,
RIGHT,
STRAIGHT,
ONTO_LANE,
INVALID,
};
public:
/**
* @brief Constructor
*/
SequencePredictor() = default;
/**
* @brief Destructor
*/
virtual ~SequencePredictor() = default;
/**
* @brief Make prediction
* @param ADC trajectory container
* @param Obstacle pointer
* @param Obstacles container
* @return If predicted successfully
*/
bool Predict(const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle,
ObstaclesContainer* obstacles_container) override;
FRIEND_TEST(SequencePredictorTest, General);
protected:
bool GetLongitudinalPolynomial(const Obstacle& obstacle,
const LaneSequence& lane_sequence,
const std::pair<double, double>& lon_end_state,
std::array<double, 5>* coefficients);
bool GetLateralPolynomial(const Obstacle& obstacle,
const LaneSequence& lane_sequence,
const double time_to_end_state,
std::array<double, 4>* coefficients);
/**
* @brief Filter lane sequences
* @param Lane graph
* @param Current lane id
* @param Ego vehicle pointer
* @param ADC trajectory container
* @param Vector of boolean indicating if a lane sequence is disqualified
*/
void FilterLaneSequences(
const Feature& feature, const std::string& lane_id,
const Obstacle* ego_vehicle_ptr,
const ADCTrajectoryContainer* adc_trajectory_container,
std::vector<bool>* enable_lane_sequence);
/**
* @brief Get lane change type
* @param Current lane id
* @param Lane sequence
* @return Integer indicating lane change type:
*/
LaneChangeType GetLaneChangeType(const std::string& lane_id,
const LaneSequence& lane_sequence);
/**
* @brief Get lane change distance with ADC
* @param Target lane sequence
* @param Ego vehicle pointer
* @param ADC trajectory container
* @return Lane change distance with ADC
*/
double GetLaneChangeDistanceWithADC(
const LaneSequence& lane_sequence, const Obstacle* ego_vehicle_ptr,
const ADCTrajectoryContainer* adc_trajectory_container);
/**
* @brief Draw constant acceleration trajectory points
* @param Obstacle
* @param Lane sequence
* @param Total prediction time
* @param Prediction period
* @param acceleration
* @param A vector of generated trajectory points
*/
void DrawConstantAccelerationTrajectory(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const double total_time, const double period, const double acceleration,
std::vector<apollo::common::TrajectoryPoint>* points);
/**
* @brief Get lane sequence curvature by s
* @param lane sequence
* @param s
* @return the curvature
*/
double GetLaneSequenceCurvatureByS(const LaneSequence& lane_sequence,
const double s);
/**
* @brief Clear private members
*/
void Clear();
/**
* @brief Convert a lane sequence to string
* @param Lane sequence
* @return String describing the lane sequence
*/
std::string ToString(const LaneSequence& sequence);
private:
/**
* @brief Pick the lane sequence with highest probability
* STRAIGHT lane sequence precedes LEFT/RIGHT lane sequences
* @param Lane change type
* @param Lane sequence probability
* @param Hightest probability
* @return Boolean if the lane sequence is enabled
*/
bool LaneSequenceWithMaxProb(const LaneChangeType& type,
const double probability, const double max_prob);
/**
* @brief Pick the lane change sequence with highest probability
* STRAIGHT lane sequence precedes LEFT/RIGHT lane sequences
* @param Lane change type
* @param Lane sequence probability
* @param Hightest probability
* @return Boolean if the lane sequence is enabled
*/
bool LaneChangeWithMaxProb(const LaneChangeType& type,
const double probability, const double max_prob);
};
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/interaction/interaction_predictor.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
* @brief Define interaction predictor
*/
#pragma once
#include <utility>
#include <vector>
#include "modules/prediction/predictor/sequence/sequence_predictor.h"
namespace apollo {
namespace prediction {
class InteractionPredictor : public SequencePredictor {
public:
/**
* @brief Constructor
*/
InteractionPredictor();
/**
* @brief Destructor
*/
virtual ~InteractionPredictor() = default;
/**
* @brief Make prediction
* @param Obstacle pointer
* @param Obstacles container
* @return If predicted successfully
*/
bool Predict(const ADCTrajectoryContainer* adc_trajectory_container,
Obstacle* obstacle,
ObstaclesContainer* obstacles_container) override;
private:
void Clear();
void BuildADCTrajectory(
const ADCTrajectoryContainer* adc_trajectory_container,
const double time_resolution);
bool DrawTrajectory(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const double lon_acceleration, const double total_time,
const double period,
std::vector<apollo::common::TrajectoryPoint>* trajectory_points);
double ComputeTrajectoryCost(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const double acceleration,
const ADCTrajectoryContainer* adc_trajectory_container);
double LongitudinalAccelerationCost(const double acceleration);
double CentripetalAccelerationCost(const LaneSequence& lane_sequence,
const double speed,
const double acceleration);
double CollisionWithEgoVehicleCost(const LaneSequence& lane_sequence,
const double speed,
const double acceleration);
bool LowerRightOfWayThanEgo(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const ADCTrajectoryContainer* adc_trajectory_container);
double ComputeLikelihood(const double cost);
double ComputePosterior(const double prior, const double likelihood);
private:
std::vector<apollo::common::TrajectoryPoint> adc_trajectory_;
};
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/interaction/interaction_predictor_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/prediction/predictor/interaction/interaction_predictor.h"
#include "cyber/common/file.h"
#include "modules/prediction/common/kml_map_based_test.h"
#include "modules/prediction/container/obstacles/obstacles_container.h"
#include "modules/prediction/evaluator/vehicle/mlp_evaluator.h"
namespace apollo {
namespace prediction {
class InteractionPredictorTest : public KMLMapBasedTest {
public:
virtual void SetUp() {
const std::string file =
"modules/prediction/testdata/single_perception_vehicle_onlane.pb.txt";
cyber::common::GetProtoFromFile(file, &perception_obstacles_);
}
protected:
apollo::perception::PerceptionObstacles perception_obstacles_;
};
TEST_F(InteractionPredictorTest, OnLaneCase) {
EXPECT_DOUBLE_EQ(perception_obstacles_.header().timestamp_sec(),
1501183430.161906);
apollo::perception::PerceptionObstacle perception_obstacle =
perception_obstacles_.perception_obstacle(0);
EXPECT_EQ(perception_obstacle.id(), 1);
MLPEvaluator mlp_evaluator;
ObstaclesContainer container;
ADCTrajectoryContainer adc_trajectory_container;
container.Insert(perception_obstacles_);
container.BuildLaneGraph();
Obstacle* obstacle_ptr = container.GetObstacle(1);
EXPECT_NE(obstacle_ptr, nullptr);
mlp_evaluator.Evaluate(obstacle_ptr, &container);
InteractionPredictor predictor;
predictor.Predict(&adc_trajectory_container, obstacle_ptr, &container);
EXPECT_EQ(predictor.NumOfTrajectories(*obstacle_ptr), 1);
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/interaction/interaction_predictor.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/prediction/predictor/interaction/interaction_predictor.h"
#include <algorithm>
#include <limits>
#include <memory>
#include <string>
#include "modules/common/adapters/proto/adapter_config.pb.h"
#include "modules/prediction/common/feature_output.h"
#include "modules/prediction/common/prediction_constants.h"
#include "modules/prediction/common/prediction_gflags.h"
#include "modules/prediction/common/prediction_system_gflags.h"
#include "modules/prediction/common/prediction_util.h"
#include "modules/prediction/container/adc_trajectory/adc_trajectory_container.h"
#include "modules/prediction/container/container_manager.h"
namespace apollo {
namespace prediction {
using apollo::common::PathPoint;
using apollo::common::TrajectoryPoint;
using apollo::hdmap::LaneInfo;
using apollo::prediction::math_util::GetSByConstantAcceleration;
InteractionPredictor::InteractionPredictor() {
predictor_type_ = ObstacleConf::INTERACTION_PREDICTOR;
}
bool InteractionPredictor::Predict(
const ADCTrajectoryContainer* adc_trajectory_container, Obstacle* obstacle,
ObstaclesContainer* obstacles_container) {
Clear();
CHECK_NOTNULL(obstacle);
CHECK_GT(obstacle->history_size(), 0U);
BuildADCTrajectory(adc_trajectory_container,
FLAGS_collision_cost_time_resolution);
obstacle->SetPredictorType(predictor_type_);
Feature* feature_ptr = obstacle->mutable_latest_feature();
if (!feature_ptr->lane().has_lane_graph()) {
AERROR << "Obstacle [" << obstacle->id() << "] has no lane graph.";
return false;
}
auto* lane_graph = feature_ptr->mutable_lane()->mutable_lane_graph();
int num_lane_sequence = lane_graph->lane_sequence_size();
std::vector<double> best_lon_accelerations(num_lane_sequence, 0.0);
std::vector<double> candidate_lon_accelerations = {0.0, -0.5, -1.0, -1.5,
-2.0, -2.5, -3.0};
double smallest_cost = std::numeric_limits<double>::max();
std::vector<double> posteriors(num_lane_sequence, 0.0);
double posterior_sum = 0.0;
for (int i = 0; i < num_lane_sequence; ++i) {
const LaneSequence& lane_sequence = lane_graph->lane_sequence(i);
for (const double lon_acceleration : candidate_lon_accelerations) {
double cost = ComputeTrajectoryCost(
*obstacle, lane_sequence, lon_acceleration, adc_trajectory_container);
if (cost < smallest_cost) {
smallest_cost = cost;
best_lon_accelerations[i] = lon_acceleration;
}
}
double likelihood = ComputeLikelihood(smallest_cost);
double prior = lane_sequence.probability();
double posterior = ComputePosterior(prior, likelihood);
posteriors[i] = posterior;
posterior_sum += posterior;
}
int best_seq_idx = 0;
double largest_posterior = 0.0;
CHECK_EQ(posteriors.size(),
static_cast<size_t>(lane_graph->lane_sequence_size()));
for (int i = 0; i < num_lane_sequence; ++i) {
double normalized_posterior =
posteriors[i] / (posterior_sum + FLAGS_double_precision);
lane_graph->mutable_lane_sequence(i)->set_probability(normalized_posterior);
if (normalized_posterior > largest_posterior) {
largest_posterior = normalized_posterior;
best_seq_idx = i;
}
}
double probability_threshold = 0.5;
if (largest_posterior > probability_threshold) {
for (int i = 0; i < num_lane_sequence; ++i) {
const LaneSequence& lane_sequence = lane_graph->lane_sequence(i);
if (lane_sequence.probability() < probability_threshold) {
continue;
}
double best_lon_acceleration = best_lon_accelerations[i];
if (lane_sequence.has_stop_sign()) {
double stop_acceleration = 0.0;
double stop_distance = lane_sequence.stop_sign().lane_sequence_s() -
lane_sequence.lane_s();
SupposedToStop(*feature_ptr, stop_distance, &stop_acceleration);
best_lon_acceleration =
std::min(best_lon_acceleration, stop_acceleration);
}
std::vector<TrajectoryPoint> points;
DrawTrajectory(*obstacle, lane_sequence, best_lon_acceleration,
FLAGS_prediction_trajectory_time_length,
FLAGS_prediction_trajectory_time_resolution, &points);
Trajectory trajectory = GenerateTrajectory(points);
obstacle->mutable_latest_feature()->add_predicted_trajectory()->CopyFrom(
trajectory);
}
} else {
const LaneSequence& sequence = lane_graph->lane_sequence(best_seq_idx);
double best_lon_acceleration = best_lon_accelerations[best_seq_idx];
if (sequence.has_stop_sign()) {
double stop_distance =
sequence.stop_sign().lane_sequence_s() - sequence.lane_s();
SupposedToStop(*feature_ptr, stop_distance, &best_lon_acceleration);
}
std::vector<TrajectoryPoint> points;
DrawTrajectory(*obstacle, lane_graph->lane_sequence(best_seq_idx),
best_lon_acceleration,
FLAGS_prediction_trajectory_time_length,
FLAGS_prediction_trajectory_time_resolution, &points);
Trajectory trajectory = GenerateTrajectory(points);
obstacle->mutable_latest_feature()->add_predicted_trajectory()->CopyFrom(
trajectory);
}
return true;
}
void InteractionPredictor::Clear() { Predictor::Clear(); }
void InteractionPredictor::BuildADCTrajectory(
const ADCTrajectoryContainer* adc_trajectory_container,
const double time_resolution) {
if (adc_trajectory_container == nullptr) {
AERROR << "Null adc trajectory container";
return;
}
const auto& adc_trajectory = adc_trajectory_container->adc_trajectory();
double curr_timestamp = 0.0;
for (const TrajectoryPoint& point : adc_trajectory.trajectory_point()) {
if (point.relative_time() + FLAGS_double_precision > curr_timestamp) {
adc_trajectory_.push_back(point);
curr_timestamp += time_resolution;
}
}
}
bool InteractionPredictor::DrawTrajectory(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const double lon_acceleration, const double total_time, const double period,
std::vector<TrajectoryPoint>* trajectory_points) {
// Sanity check.
CHECK_NOTNULL(trajectory_points);
trajectory_points->clear();
const Feature& feature = obstacle.latest_feature();
if (!feature.has_position() || !feature.has_velocity() ||
!feature.position().has_x() || !feature.position().has_y()) {
AERROR << "Obstacle [" << obstacle.id()
<< " is missing position or velocity";
return false;
}
Eigen::Vector2d position(feature.position().x(), feature.position().y());
double speed = feature.speed();
int lane_segment_index = 0;
std::string lane_id =
lane_sequence.lane_segment(lane_segment_index).lane_id();
std::shared_ptr<const LaneInfo> lane_info = PredictionMap::LaneById(lane_id);
double lane_s = 0.0;
double lane_l = 0.0;
if (!PredictionMap::GetProjection(position, lane_info, &lane_s, &lane_l)) {
AERROR << "Failed in getting lane s and lane l";
return false;
}
double approach_rate = FLAGS_go_approach_rate;
if (!lane_sequence.vehicle_on_lane()) {
approach_rate = FLAGS_cutin_approach_rate;
}
size_t total_num = static_cast<size_t>(total_time / period);
for (size_t i = 0; i < total_num; ++i) {
double relative_time = static_cast<double>(i) * period;
Eigen::Vector2d point;
double theta = M_PI;
if (!PredictionMap::SmoothPointFromLane(lane_id, lane_s, lane_l, &point,
&theta)) {
AERROR << "Unable to get smooth point from lane [" << lane_id
<< "] with s [" << lane_s << "] and l [" << lane_l << "]";
break;
}
TrajectoryPoint trajectory_point;
PathPoint path_point;
path_point.set_x(point.x());
path_point.set_y(point.y());
path_point.set_z(0.0);
path_point.set_theta(theta);
path_point.set_lane_id(lane_id);
trajectory_point.mutable_path_point()->CopyFrom(path_point);
trajectory_point.set_v(speed);
trajectory_point.set_a(lon_acceleration);
trajectory_point.set_relative_time(relative_time);
trajectory_points->emplace_back(std::move(trajectory_point));
lane_s += std::max(
0.0, speed * period + 0.5 * lon_acceleration * period * period);
speed += lon_acceleration * period;
while (lane_s > PredictionMap::LaneById(lane_id)->total_length() &&
lane_segment_index + 1 < lane_sequence.lane_segment_size()) {
lane_segment_index += 1;
lane_s = lane_s - PredictionMap::LaneById(lane_id)->total_length();
lane_id = lane_sequence.lane_segment(lane_segment_index).lane_id();
}
lane_l *= approach_rate;
}
return true;
}
double InteractionPredictor::ComputeTrajectoryCost(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const double acceleration,
const ADCTrajectoryContainer* adc_trajectory_container) {
CHECK_GT(obstacle.history_size(), 0U);
double speed = obstacle.latest_feature().speed();
double total_cost = 0.0;
double lon_acc_cost = LongitudinalAccelerationCost(acceleration);
total_cost += FLAGS_longitudinal_acceleration_cost_weight * lon_acc_cost;
double centri_acc_cost =
CentripetalAccelerationCost(lane_sequence, speed, acceleration);
total_cost += FLAGS_centripedal_acceleration_cost_weight * centri_acc_cost;
double collision_cost = 0.0;
if (LowerRightOfWayThanEgo(obstacle, lane_sequence,
adc_trajectory_container)) {
collision_cost =
CollisionWithEgoVehicleCost(lane_sequence, speed, acceleration);
}
total_cost += FLAGS_collision_cost_weight * collision_cost;
if (FLAGS_prediction_offline_mode ==
PredictionConstants::kDumpDataForTuning) {
std::vector<double> cost_values = {lon_acc_cost, centri_acc_cost,
collision_cost};
FeatureOutput::InsertDataForTuning(obstacle.latest_feature(), cost_values,
"interaction", lane_sequence,
adc_trajectory_);
}
return total_cost;
}
double InteractionPredictor::LongitudinalAccelerationCost(
const double acceleration) {
return acceleration * acceleration;
}
double InteractionPredictor::CentripetalAccelerationCost(
const LaneSequence& lane_sequence, const double speed,
const double acceleration) {
double cost_abs_sum = 0.0;
double cost_sqr_sum = 0.0;
double curr_time = 0.0;
while (curr_time < FLAGS_prediction_trajectory_time_length) {
double s = GetSByConstantAcceleration(speed, acceleration, curr_time);
double v = std::max(0.0, speed + acceleration * curr_time);
double kappa = GetLaneSequenceCurvatureByS(lane_sequence, s);
double centri_acc = v * v * kappa;
cost_abs_sum += std::abs(centri_acc);
cost_sqr_sum += centri_acc * centri_acc;
curr_time += FLAGS_collision_cost_time_resolution;
}
return cost_sqr_sum / (cost_abs_sum + FLAGS_double_precision);
}
double InteractionPredictor::CollisionWithEgoVehicleCost(
const LaneSequence& lane_sequence, const double speed,
const double acceleration) {
CHECK_GT(lane_sequence.lane_segment_size(), 0);
double cost_abs_sum = 0.0;
double cost_sqr_sum = 0.0;
int num_lane_segment = lane_sequence.lane_segment_size();
double remained_s = lane_sequence.lane_segment(0).start_s();
int lane_seg_idx = 0;
double prev_s = 0.0;
for (const TrajectoryPoint& adc_trajectory_point : adc_trajectory_) {
double relative_time = adc_trajectory_point.relative_time();
double curr_s =
GetSByConstantAcceleration(speed, acceleration, relative_time);
double delta_s = curr_s - prev_s;
remained_s += delta_s;
while (lane_seg_idx < num_lane_segment) {
const LaneSegment& lane_segment =
lane_sequence.lane_segment(lane_seg_idx);
const std::string& lane_id = lane_segment.lane_id();
std::shared_ptr<const LaneInfo> lane_info_ptr =
PredictionMap::LaneById(lane_id);
if (lane_info_ptr == nullptr) {
AERROR << "Null lane info ptr found with lane ID [" << lane_id << "]";
continue;
}
double lane_length = lane_info_ptr->total_length();
if (remained_s < lane_length) {
apollo::common::PointENU point_enu =
lane_info_ptr->GetSmoothPoint(remained_s);
double obs_x = point_enu.x();
double obs_y = point_enu.y();
double adc_x = adc_trajectory_point.path_point().x();
double adc_y = adc_trajectory_point.path_point().y();
double distance = std::hypot(adc_x - obs_x, adc_y - obs_y);
double cost = std::exp(-FLAGS_collision_cost_exp_coefficient *
distance * distance);
cost_abs_sum += std::abs(cost);
cost_sqr_sum += cost * cost;
break;
} else {
++lane_seg_idx;
remained_s -= lane_length;
}
}
// Out of the while loop
prev_s = curr_s;
}
return cost_sqr_sum / (cost_abs_sum + FLAGS_double_precision);
}
bool InteractionPredictor::LowerRightOfWayThanEgo(
const Obstacle& obstacle, const LaneSequence& lane_sequence,
const ADCTrajectoryContainer* adc_trajectory_container) {
if (adc_trajectory_container != nullptr &&
adc_trajectory_container->IsProtected()) {
return true;
}
return lane_sequence.right_of_way() < 0;
}
double InteractionPredictor::ComputeLikelihood(const double cost) {
double alpha = FLAGS_likelihood_exp_coefficient;
return std::exp(-alpha * cost);
}
double InteractionPredictor::ComputePosterior(const double prior,
const double likelihood) {
return prior * likelihood;
}
} // namespace prediction
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/prediction/predictor
|
apollo_public_repos/apollo/modules/prediction/predictor/interaction/BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load("//tools:cpplint.bzl", "cpplint")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "interaction_predictor",
srcs = ["interaction_predictor.cc"],
hdrs = ["interaction_predictor.h"],
copts = [
"-DMODULE_NAME=\\\"prediction\\\"",
],
deps = [
"//modules/common/adapters/proto:adapter_config_cc_proto",
"//modules/prediction/common:feature_output",
"//modules/prediction/common:prediction_util",
"//modules/prediction/predictor/sequence:sequence_predictor",
],
)
cc_test(
name = "interaction_predictor_test",
size = "small",
srcs = ["interaction_predictor_test.cc"],
data = [
"//modules/prediction:prediction_data",
"//modules/prediction:prediction_testdata",
],
deps = [
"//modules/prediction/common:kml_map_based_test",
"//modules/prediction/evaluator/vehicle:mlp_evaluator",
"//modules/prediction/predictor/interaction:interaction_predictor",
],
)
cpplint()
| 0
|
apollo_public_repos/apollo/modules/prediction
|
apollo_public_repos/apollo/modules/prediction/conf/prediction_navi_conf.pb.txt
|
topic_conf {
adccontainer_topic_name: "/apollo/prediction/adccontainer"
container_topic_name: "/apollo/prediction/container"
evaluator_topic_name: "/apollo/prediction/evaluator"
localization_topic: "/apollo/localization/pose"
perception_obstacle_topic: "/apollo/perception/obstacles"
perception_obstacles_topic_name: "/apollo/prediction/perception_obstacles"
planning_trajectory_topic: "/apollo/planning"
prediction_topic: "/apollo/prediction"
storytelling_topic: "/apollo/storytelling"
}
obstacle_conf {
obstacle_type: VEHICLE
obstacle_status: ON_LANE
evaluator_type: COST_EVALUATOR
predictor_type: SINGLE_LANE_PREDICTOR
}
obstacle_conf {
obstacle_type: VEHICLE
obstacle_status: OFF_LANE
predictor_type: EMPTY_PREDICTOR
}
obstacle_conf {
obstacle_type: PEDESTRIAN
predictor_type: FREE_MOVE_PREDICTOR
}
obstacle_conf {
obstacle_type: BICYCLE
obstacle_status: ON_LANE
evaluator_type: COST_EVALUATOR
predictor_type: SINGLE_LANE_PREDICTOR
}
obstacle_conf {
obstacle_type: BICYCLE
obstacle_status: OFF_LANE
predictor_type: EMPTY_PREDICTOR
}
obstacle_conf {
obstacle_type: UNKNOWN
obstacle_status: ON_LANE
evaluator_type: COST_EVALUATOR
predictor_type: SINGLE_LANE_PREDICTOR
}
obstacle_conf {
obstacle_type: UNKNOWN
obstacle_status: OFF_LANE
predictor_type: EMPTY_PREDICTOR
}
| 0
|
apollo_public_repos/apollo/modules/prediction
|
apollo_public_repos/apollo/modules/prediction/conf/adapter.conf
|
config {
type: PERCEPTION_OBSTACLES
mode: RECEIVE_ONLY
message_history_limit: 1
}
config {
type: LOCALIZATION
mode: RECEIVE_ONLY
message_history_limit: 10
}
config {
type: PLANNING_TRAJECTORY
mode: RECEIVE_ONLY
message_history_limit: 1
}
config {
type: RELATIVE_MAP
mode: RECEIVE_ONLY
message_history_limit: 1
}
config {
type: STORYTELLING
mode: RECEIVE_ONLY
message_history_limit: 1
}
config {
type: PREDICTION
mode: PUBLISH_ONLY
message_history_limit: 10
}
is_ros: true
| 0
|
apollo_public_repos/apollo/modules/prediction
|
apollo_public_repos/apollo/modules/prediction/conf/prediction_navi.conf
|
--flagfile=modules/prediction/conf/prediction.conf
--prediction_conf_file=modules/prediction/conf/prediction_navi_conf.pb.txt
--adjust_velocity_by_obstacle_heading
--lane_search_radius=5.0
| 0
|
apollo_public_repos/apollo/modules/prediction
|
apollo_public_repos/apollo/modules/prediction/conf/prediction_conf.pb.txt
|
topic_conf {
adccontainer_topic_name: "/apollo/prediction/adccontainer"
container_topic_name: "/apollo/prediction/container"
evaluator_topic_name: "/apollo/prediction/evaluator"
localization_topic: "/apollo/localization/pose"
perception_obstacle_topic: "/apollo/perception/obstacles"
perception_obstacles_topic_name: "/apollo/prediction/perception_obstacles"
planning_trajectory_topic: "/apollo/planning"
prediction_topic: "/apollo/prediction"
storytelling_topic: "/apollo/storytelling"
}
obstacle_conf {
obstacle_type: VEHICLE
obstacle_status: ON_LANE
priority_type: CAUTION
evaluator_type: VECTORNET_EVALUATOR
predictor_type: EXTRAPOLATION_PREDICTOR
}
obstacle_conf {
obstacle_type: VEHICLE
obstacle_status: ON_LANE
priority_type: NORMAL
evaluator_type: CRUISE_MLP_EVALUATOR
predictor_type: MOVE_SEQUENCE_PREDICTOR
}
obstacle_conf {
obstacle_type: VEHICLE
obstacle_status: IN_JUNCTION
priority_type: CAUTION
evaluator_type: VECTORNET_EVALUATOR
predictor_type: EXTRAPOLATION_PREDICTOR
}
obstacle_conf {
obstacle_type: VEHICLE
obstacle_status: IN_JUNCTION
priority_type: NORMAL
evaluator_type: JUNCTION_MLP_EVALUATOR
predictor_type: LANE_SEQUENCE_PREDICTOR
}
obstacle_conf {
obstacle_type: VEHICLE
obstacle_status: OFF_LANE
predictor_type: FREE_MOVE_PREDICTOR
}
obstacle_conf {
obstacle_type: PEDESTRIAN
obstacle_status: MOVING
evaluator_type: SEMANTIC_LSTM_EVALUATOR
predictor_type: FREE_MOVE_PREDICTOR
}
obstacle_conf {
obstacle_type: BICYCLE
obstacle_status: ON_LANE
evaluator_type: CYCLIST_KEEP_LANE_EVALUATOR
predictor_type: LANE_SEQUENCE_PREDICTOR
}
obstacle_conf {
obstacle_type: BICYCLE
obstacle_status: OFF_LANE
predictor_type: FREE_MOVE_PREDICTOR
}
obstacle_conf {
obstacle_type: UNKNOWN
obstacle_status: ON_LANE
evaluator_type: MLP_EVALUATOR
predictor_type: LANE_SEQUENCE_PREDICTOR
}
obstacle_conf {
obstacle_type: UNKNOWN
obstacle_status: OFF_LANE
predictor_type: FREE_MOVE_PREDICTOR
}
obstacle_conf {
obstacle_type: VEHICLE
interactive_tag: INTERACTION
evaluator_type: JOINTLY_PREDICTION_PLANNING_EVALUATOR
predictor_type: EXTRAPOLATION_PREDICTOR
}
| 0
|
apollo_public_repos/apollo/modules/prediction
|
apollo_public_repos/apollo/modules/prediction/conf/offline_prediction.conf
|
--flagfile=/apollo/modules/common/data/global_flagfile.txt
--prediction_conf_file=/apollo/modules/prediction/conf/prediction_conf.pb.txt
--noadjust_velocity_by_obstacle_heading
--noadjust_velocity_by_position_shift
--noenable_kf_tracking
--noprediction_offline_mode
--lane_change_dist=10.0
--lane_search_radius=5.0
--lane_sequence_threshold_junction=0.3
--prediction_offline_mode=true
--junction_distance_threshold=30.0
--noenable_prioritize_obstacles
| 0
|
apollo_public_repos/apollo/modules/prediction
|
apollo_public_repos/apollo/modules/prediction/conf/prediction.conf
|
--flagfile=/apollo/modules/common/data/global_flagfile.txt
--prediction_conf_file=/apollo/modules/prediction/conf/prediction_conf.pb.txt
--noadjust_velocity_by_obstacle_heading
--noadjust_velocity_by_position_shift
--noenable_kf_tracking
--prediction_offline_mode=0
--lane_change_dist=10.0
--lane_search_radius=5.0
--lane_sequence_threshold_junction=0.3
--enable_multi_thread
--max_thread_num=8
--max_caution_thread_num=4
--slow_obstacle_speed_threshold=3.1
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/task_manager/cycle_routing_manager.cc
|
/******************************************************************************
* Copyright 2020 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#include "modules/task_manager/cycle_routing_manager.h"
#include "modules/task_manager/common/task_manager_gflags.h"
namespace apollo {
namespace task_manager {
bool CheckPointDistanceInThreshold(common::PointENU point_a,
common::PointENU point_b, double distance) {
double x_dis = point_a.x() - point_b.x();
double y_dis = point_a.y() - point_b.y();
return x_dis * x_dis + y_dis * y_dis < distance * distance;
}
common::Status CycleRoutingManager::Init(
const CycleRoutingTask& cycle_routing_task) {
cycle_ = cycle_routing_task.cycle_num();
auto waypoints = cycle_routing_task.routing_request().waypoint();
waypoint_num_ = waypoints.size();
begin_point_ = waypoints[0];
end_point_ = waypoints[waypoint_num_ - 1];
is_allowed_to_route_ = true;
original_routing_request_ = cycle_routing_task.routing_request();
map_service_.reset(new apollo::dreamview::MapService());
AINFO << "New cycle routing task: cycle " << cycle_ << ", begin point "
<< begin_point_.pose().x() << " " << begin_point_.pose().y()
<< ", end point " << end_point_.pose().x() << " "
<< end_point_.pose().y();
return common::Status::OK();
}
bool CycleRoutingManager::GetNewRouting(
const localization::Pose& pose,
routing::RoutingRequest* new_routing_request) {
AINFO << "GetNewRouting: localization_pose: " << pose.position().x() << " "
<< pose.position().y() << ", begin point " << begin_point_.pose().x()
<< " " << begin_point_.pose().y() << ", end point "
<< end_point_.pose().x() << " " << end_point_.pose().y()
<< ", threshold " << FLAGS_threshold_for_destination_check
<< ", allowed_to_send_routing_request " << is_allowed_to_route_;
if (is_allowed_to_route_) {
if (CheckPointDistanceInThreshold(begin_point_.pose(), pose.position(),
FLAGS_threshold_for_destination_check)) {
AINFO << "GetNewRouting: reach begin point."
<< "Remaining cycles: " << cycle_;
new_routing_request->CopyFrom(original_routing_request_);
auto cur_point = new_routing_request->mutable_waypoint(0);
if (!map_service_->ConstructLaneWayPointWithHeading(
pose.position().x(), pose.position().y(), pose.heading(),
cur_point)) {
AINFO << "GetNewRouting: construct begin lane way point fail!";
return false;
}
is_allowed_to_route_ = false;
return true;
}
} else {
if (CheckPointDistanceInThreshold(end_point_.pose(), pose.position(),
FLAGS_threshold_for_destination_check)) {
AINFO << "GetNewRouting: reach end point. "
<< "Remaining cycles: " << cycle_;
new_routing_request->clear_waypoint();
auto cur_point = new_routing_request->add_waypoint();
if (!map_service_->ConstructLaneWayPointWithHeading(
pose.position().x(), pose.position().y(), pose.heading(),
cur_point)) {
AINFO << "GetNewRouting: construct end lane way point fail!";
return false;
}
auto next_point = new_routing_request->add_waypoint();
next_point->CopyFrom(begin_point_);
--cycle_;
is_allowed_to_route_ = true;
return true;
}
}
return false;
}
} // namespace task_manager
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/task_manager/task_manager_component.h
|
/******************************************************************************
* Copyright 2020 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#pragma once
#include <memory>
#include <string>
#include "cyber/class_loader/class_loader.h"
#include "cyber/component/component.h"
#include "modules/common_msgs/planning_msgs/planning.pb.h"
#include "modules/task_manager/cycle_routing_manager.h"
#include "modules/task_manager/parking_routing_manager.h"
namespace apollo {
namespace task_manager {
using apollo::localization::LocalizationEstimate;
class TaskManagerComponent final : public cyber::Component<task_manager::Task> {
public:
TaskManagerComponent() = default;
~TaskManagerComponent() = default;
public:
bool Init() override;
bool Proc(const std::shared_ptr<task_manager::Task>& task) override;
private:
std::shared_ptr<cyber::Reader<LocalizationEstimate>> localization_reader_;
std::shared_ptr<cyber::Reader<routing::RoutingResponse>> response_reader_;
std::shared_ptr<cyber::Reader<planning::ADCTrajectory>> trajectory_reader_;
std::shared_ptr<cyber::Writer<routing::RoutingRequest>> request_writer_;
std::shared_ptr<CycleRoutingManager> cycle_routing_manager_;
std::shared_ptr<ParkingRoutingManager> parking_routing_manager_;
routing::RoutingRequest routing_request_;
routing::RoutingResponse routing_response_;
LocalizationEstimate localization_;
apollo::planning::ADCTrajectory planning_;
std::mutex mutex_;
std::string task_name_;
};
CYBER_REGISTER_COMPONENT(TaskManagerComponent)
} // namespace task_manager
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/task_manager/parking_routing_manager.cc
|
/******************************************************************************
* Copyright 2020 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#include "modules/task_manager/parking_routing_manager.h"
#include "modules/common/configs/vehicle_config_helper.h"
#include "modules/common/math/math_utils.h"
#include "modules/map/hdmap/hdmap.h"
#include "modules/map/hdmap/hdmap_common.h"
#include "modules/map/hdmap/hdmap_util.h"
#include "modules/task_manager/common/task_manager_gflags.h"
namespace apollo {
namespace task_manager {
using apollo::common::PointENU;
using apollo::common::math::Vec2d;
using apollo::hdmap::ParkingSpaceInfoConstPtr;
using apollo::routing::ParkingSpaceType;
ParkingRoutingManager::ParkingRoutingManager()
: monitor_logger_buffer_(
apollo::common::monitor::MonitorMessageItem::TASK_MANAGER) {}
common::Status ParkingRoutingManager::Init(
const ParkingRoutingTask& parking_routing_task) {
return common::Status::OK();
}
bool ParkingRoutingManager::ConstructParkingRoutingRequest(
ParkingRoutingTask* parking_routing_task) {
auto hdmap_ = hdmap::HDMapUtil::BaseMapPtr();
hdmap::Id id;
id.set_id(parking_routing_task->routing_request()
.parking_info()
.parking_space_id());
auto parking_space_info = hdmap_->GetParkingSpaceById(id);
auto request_parking_info =
parking_routing_task->mutable_routing_request()->mutable_parking_info();
if (parking_space_info == nullptr) {
AERROR << "Can not find parking space" << id_ << "in map";
return false;
}
auto points = parking_space_info->polygon().points();
// 0 1 2 3: left_top right_top right_rear left_rear corner point for heading
// upward
Vec2d center_point(0, 0);
for (size_t i = 0; i < points.size(); i++) {
center_point += points[i];
}
center_point /= 4.0;
request_parking_info->mutable_parking_point()->set_x(center_point.x());
request_parking_info->mutable_parking_point()->set_y(center_point.y());
request_parking_info->mutable_parking_point()->set_z(0);
apollo::common::PointENU center_enu;
center_enu.set_x(center_point.x());
center_enu.set_y(center_point.y());
apollo::hdmap::LaneInfoConstPtr nearest_lane;
double nearest_s;
double nearest_l;
hdmap_->GetNearestLane(center_enu, &nearest_lane, &nearest_s, &nearest_l);
double lane_heading = nearest_lane->Heading(nearest_s);
double diff_angle = common::math::AngleDiff(
lane_heading, parking_space_info->parking_space().heading());
if (std::fabs(diff_angle) < M_PI / 3.0) {
AINFO << "Find a parallel parking" << id_ << "lane_heading" << lane_heading
<< "parking heading" << parking_space_info->parking_space().heading();
request_parking_info->set_parking_space_type(
ParkingSpaceType::PARALLEL_PARKING);
auto left_down = request_parking_info->mutable_corner_point()->add_point();
left_down->set_x(points[0].x());
left_down->set_y(points[0].y());
auto right_down = request_parking_info->mutable_corner_point()->add_point();
right_down->set_x(points[1].x());
right_down->set_y(points[1].y());
auto right_up = request_parking_info->mutable_corner_point()->add_point();
right_up->set_x(points[2].x());
right_up->set_y(points[2].y());
auto left_up = request_parking_info->mutable_corner_point()->add_point();
left_up->set_x(points[3].x());
left_up->set_y(points[3].y());
} else {
AINFO << "Find a vertical parking";
request_parking_info->set_parking_space_type(
ParkingSpaceType::VERTICAL_PLOT);
auto left_down = request_parking_info->mutable_corner_point()->add_point();
left_down->set_x(points[0].x());
left_down->set_y(points[0].y());
auto right_down = request_parking_info->mutable_corner_point()->add_point();
right_down->set_x(points[1].x());
right_down->set_y(points[1].y());
auto right_up = request_parking_info->mutable_corner_point()->add_point();
right_up->set_x(points[2].x());
right_up->set_y(points[2].y());
auto left_up = request_parking_info->mutable_corner_point()->add_point();
left_up->set_x(points[3].x());
left_up->set_y(points[3].y());
}
// extend last point to aviod referenceline generated failed in parking
auto last_waypoint = parking_routing_task->mutable_routing_request()
->mutable_waypoint()
->rbegin();
static constexpr double kExtendParkingLength = 20;
apollo::common::PointENU extend_point;
extend_point.set_x(last_waypoint->pose().x() +
kExtendParkingLength * std::cos(lane_heading));
extend_point.set_y(last_waypoint->pose().y() +
kExtendParkingLength * std::sin(lane_heading));
hdmap_->GetNearestLaneWithHeading(extend_point, 20, lane_heading, M_PI_2,
&nearest_lane, &nearest_s, &nearest_l);
extend_point = nearest_lane->GetSmoothPoint(nearest_s);
last_waypoint->mutable_pose()->set_x(extend_point.x());
last_waypoint->mutable_pose()->set_y(extend_point.y());
last_waypoint->set_id(nearest_lane->id().id());
last_waypoint->set_s(nearest_s);
return true;
}
} // namespace task_manager
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/task_manager/parking_routing_manager.h
|
/******************************************************************************
* Copyright 2020 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#pragma once
#include <memory>
#include <string>
#include <vector>
#include "modules/common_msgs/localization_msgs/localization.pb.h"
#include "modules/common_msgs/task_manager_msgs/task_manager.pb.h"
#include "modules/task_manager/proto/task_manager_config.pb.h"
#include "modules/common/monitor_log/monitor_log_buffer.h"
#include "modules/common/status/status.h"
namespace apollo {
namespace task_manager {
class ParkingRoutingManager {
public:
ParkingRoutingManager();
/**
* @brief module initialization function
* @return initialization status
*/
common::Status Init(
const task_manager::ParkingRoutingTask& parking_routing_task);
bool ConstructParkingRoutingRequest(ParkingRoutingTask* parking_routing_task);
/**
* @brief destructor
*/
virtual ~ParkingRoutingManager() = default;
private:
bool has_space_ = false;
bool has_space_id_ = false;
std::string id_ = "";
apollo::common::monitor::MonitorLogBuffer monitor_logger_buffer_;
};
} // namespace task_manager
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/task_manager/cyberfile.xml
|
<package format="2">
<name>task-manager</name>
<version>local</version>
<description>
Apollo task_manager module.
</description>
<maintainer email="apollo-support@baidu.com">Apollo</maintainer>
<license>Apache License 2.0</license>
<url type="website">https://www.apollo.auto/</url>
<url type="repository">https://github.com/ApolloAuto/apollo</url>
<url type="bugtracker">https://github.com/ApolloAuto/apollo/issues</url>
<type>module</type>
<depend repo_name="common-msgs" lib_names="common-msgs">common-msgs-dev</depend>
<depend type="binary" repo_name="common" lib_names="common">common-dev</depend>
<depend type="binary" repo_name="dreamview" lib_names="dreamview">dreamview-dev</depend>
<depend repo_name="com_github_gflags_gflags" lib_names="gflags">3rd-gflags-dev</depend>
<depend lib_names="protobuf" repo_name="com_google_protobuf">3rd-protobuf-dev</depend>
<depend expose="False">3rd-rules-proto-dev</depend>
<src_path url="https://github.com/ApolloAuto/apollo">//modules/task_manager</src_path>
</package>
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/task_manager/task-manager.BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "task-manager",
includes = ["include"],
hdrs = glob(["include/**/*.h"]),
srcs = glob(["lib/**/*.so*"]),
include_prefix = "modules/task_manager",
strip_include_prefix = "include",
visibility = ["//visibility:public"],
)
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/task_manager/BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
load("//tools/install:install.bzl", "install", "install_files", "install_src_files")
load("//tools:cpplint.bzl", "cpplint")
package(default_visibility = ["//visibility:public"])
TASK_MANAGER_COPTS = ['-DMODULE_NAME=\\"task_manager\\"']
cc_library(
name = "cycle_routing_manager_lib",
srcs = ["cycle_routing_manager.cc"],
hdrs = ["cycle_routing_manager.h"],
copts = TASK_MANAGER_COPTS,
deps = [
"//modules/common/monitor_log",
"//modules/common/status",
"//modules/dreamview/backend/map:map_service",
"//modules/common_msgs/localization_msgs:localization_cc_proto",
"//modules/task_manager/common:task_manager_gflags",
"//modules/common_msgs/task_manager_msgs:task_manager_cc_proto",
],
alwayslink = True,
)
cc_library(
name = "parking_routing_manager_lib",
srcs = ["parking_routing_manager.cc"],
hdrs = ["parking_routing_manager.h"],
copts = TASK_MANAGER_COPTS,
deps = [
"//modules/common/monitor_log",
"//modules/common/status",
"//modules/dreamview/backend/map:map_service",
"//modules/common/configs:vehicle_config_helper",
"//modules/task_manager/common:task_manager_gflags",
"//modules/common_msgs/task_manager_msgs:task_manager_cc_proto",
"//modules/task_manager/proto:task_manager_config_cc_proto",
],
alwayslink = True,
)
cc_library(
name = "task_manager_component_lib",
srcs = ["task_manager_component.cc"],
hdrs = ["task_manager_component.h"],
copts = TASK_MANAGER_COPTS,
deps = [
":cycle_routing_manager_lib",
":parking_routing_manager_lib",
"//cyber",
"//modules/task_manager/proto:task_manager_config_cc_proto",
"//modules/common_msgs/planning_msgs:planning_cc_proto",
],
alwayslink = True,
)
cc_binary(
name = "libtask_manager_component.so",
linkshared = True,
linkstatic = True,
deps = [":task_manager_component_lib"],
)
install(
name = "install",
data_dest = "task-manager",
library_dest = "task-manager/lib",
data = [
":runtime_data",
":cyberfile.xml",
":task-manager.BUILD",
],
targets = [
":libtask_manager_component.so",
],
deps = [
":pb_hdrs",
"//modules/task_manager/proto:py_pb_task_manager"
],
)
install(
name = "pb_hdrs",
data_dest = "task-manager/include",
data = [
"//modules/task_manager/proto:task_manager_config_cc_proto",
],
)
install_src_files(
name = "install_src",
deps = [
":install_task_manager_src",
":install_task_manager_hdrs"
],
)
install_src_files(
name = "install_task_manager_src",
src_dir = ["."],
dest = "task-manager/src",
filter = "*",
)
install_src_files(
name = "install_task_manager_hdrs",
src_dir = ["."],
dest = "task-manager/include",
filter = "*.h",
)
filegroup(
name = "runtime_data",
srcs = glob([
"conf/*.conf",
"conf/*.txt",
"dag/*.dag",
]),
)
cpplint()
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/task_manager/cycle_routing_manager.h
|
/******************************************************************************
* Copyright 2020 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#pragma once
#include <memory>
#include <string>
#include <vector>
#include "modules/common_msgs/localization_msgs/localization.pb.h"
#include "modules/common_msgs/task_manager_msgs/task_manager.pb.h"
#include "modules/common/monitor_log/monitor_log_buffer.h"
#include "modules/common/status/status.h"
#include "modules/dreamview/backend/map/map_service.h"
namespace apollo {
namespace task_manager {
class CycleRoutingManager {
public:
CycleRoutingManager() = default;
/**
* @brief module initialization function
* @return initialization status
*/
common::Status Init(const task_manager::CycleRoutingTask& cycle_routing_task);
/**
* @brief Get new routing if the vehicle reaches the begin/end point
* @return false/true
*/
bool GetNewRouting(const localization::Pose& pose,
routing::RoutingRequest* routing_request_);
/**
* @brief get remaining cycle number
* @return remaining cycle number
*/
int GetCycle() const { return cycle_; }
/**
* @brief destructor
*/
virtual ~CycleRoutingManager() = default;
private:
int cycle_ = 0;
int waypoint_num_ = 0;
bool is_allowed_to_route_ = false;
routing::LaneWaypoint begin_point_;
routing::LaneWaypoint end_point_;
std::unique_ptr<apollo::dreamview::MapService> map_service_;
routing::RoutingRequest original_routing_request_;
};
} // namespace task_manager
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/task_manager/task_manager_component.cc
|
/******************************************************************************
* Copyright 2020 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#include "modules/task_manager/task_manager_component.h"
#include "modules/task_manager/proto/task_manager_config.pb.h"
#include "cyber/time/rate.h"
namespace apollo {
namespace task_manager {
using apollo::cyber::ComponentBase;
using apollo::cyber::Rate;
using apollo::localization::LocalizationEstimate;
using apollo::planning::ADCTrajectory;
using apollo::routing::RoutingRequest;
using apollo::routing::RoutingResponse;
bool TaskManagerComponent::Init() {
TaskManagerConfig task_manager_conf;
ACHECK(cyber::ComponentBase::GetProtoConfig(&task_manager_conf))
<< "Unable to load task_manager conf file: "
<< cyber::ComponentBase::ConfigFilePath();
AINFO << "Config file: " << cyber::ComponentBase::ConfigFilePath()
<< " is loaded.";
localization_reader_ = node_->CreateReader<LocalizationEstimate>(
task_manager_conf.topic_config().localization_pose_topic(),
[this](const std::shared_ptr<LocalizationEstimate>& localization) {
ADEBUG << "Received localization data: run localization callback.";
std::lock_guard<std::mutex> lock(mutex_);
localization_.CopyFrom(*localization);
});
response_reader_ = node_->CreateReader<RoutingResponse>(
task_manager_conf.topic_config().routing_response_topic(),
[this](const std::shared_ptr<RoutingResponse>& response) {
ADEBUG << "Received routing_response data: run response callback.";
std::lock_guard<std::mutex> lock(mutex_);
routing_response_.CopyFrom(*response);
});
cyber::proto::RoleAttributes attr;
attr.set_channel_name(
task_manager_conf.topic_config().routing_request_topic());
auto qos = attr.mutable_qos_profile();
qos->set_history(apollo::cyber::proto::QosHistoryPolicy::HISTORY_KEEP_LAST);
qos->set_reliability(
apollo::cyber::proto::QosReliabilityPolicy::RELIABILITY_RELIABLE);
// Don't send the history message when new readers are found.
qos->set_durability(
apollo::cyber::proto::QosDurabilityPolicy::DURABILITY_SYSTEM_DEFAULT);
request_writer_ = node_->CreateWriter<RoutingRequest>(attr);
return true;
}
bool TaskManagerComponent::Proc(const std::shared_ptr<Task>& task) {
if (task->task_type() != CYCLE_ROUTING &&
task->task_type() != PARKING_ROUTING) {
AERROR << "Task type is not cycle_routing or parking_routing.";
return false;
}
if (task->task_type() == CYCLE_ROUTING) {
cycle_routing_manager_ = std::make_shared<CycleRoutingManager>();
cycle_routing_manager_->Init(task->cycle_routing_task());
routing_request_ = task->cycle_routing_task().routing_request();
Rate rate(1.0);
while (cycle_routing_manager_->GetCycle() > 0) {
if (cycle_routing_manager_->GetNewRouting(localization_.pose(),
&routing_request_)) {
auto last_routing_response_ = routing_response_;
common::util::FillHeader(node_->Name(), &routing_request_);
request_writer_->Write(routing_request_);
AINFO << "[TaskManagerComponent]Reach begin/end point: "
<< "routing manager send a routing request. ";
rate.Sleep();
if (!routing_response_.has_header()) {
AINFO << "[TaskManagerComponent]routing failed";
return false;
}
if (last_routing_response_.has_header()) {
if (last_routing_response_.header().sequence_num() ==
routing_response_.header().sequence_num()) {
AINFO << "[TaskManagerComponent]No routing response: "
<< "new routing failed";
return false;
}
}
}
rate.Sleep();
}
} else if (task->task_type() == PARKING_ROUTING) {
parking_routing_manager_ = std::make_shared<ParkingRoutingManager>();
parking_routing_manager_->ConstructParkingRoutingRequest(
task->mutable_parking_routing_task());
RoutingRequest msg;
msg.CopyFrom(task->parking_routing_task().routing_request());
request_writer_->Write(msg);
}
return true;
}
} // namespace task_manager
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules/task_manager
|
apollo_public_repos/apollo/modules/task_manager/proto/task_manager_config.proto
|
syntax = "proto2";
package apollo.task_manager;
message TopicConfig {
optional string routing_request_topic = 1;
optional string routing_response_topic = 2;
optional string localization_pose_topic = 3;
optional string planning_topic = 4;
}
message TaskManagerConfig {
optional TopicConfig topic_config = 1;
}
| 0
|
apollo_public_repos/apollo/modules/task_manager
|
apollo_public_repos/apollo/modules/task_manager/proto/BUILD
|
## Auto generated by `proto_build_generator.py`
load("@rules_proto//proto:defs.bzl", "proto_library")
load("@rules_cc//cc:defs.bzl", "cc_proto_library")
load("//tools:python_rules.bzl", "py_proto_library")
load("//tools/install:install.bzl", "install", "install_files")
package(default_visibility = ["//visibility:public"])
install_files(
name = "py_pb_task_manager",
dest = "task_manager/python/modules/task_manager/proto",
files = [
":task_manager_config_py_pb2",
]
)
cc_proto_library(
name = "task_manager_config_cc_proto",
deps = [
":task_manager_config_proto",
],
)
proto_library(
name = "task_manager_config_proto",
srcs = ["task_manager_config.proto"],
)
py_proto_library(
name = "task_manager_config_py_pb2",
deps = [
":task_manager_config_proto",
],
)
| 0
|
apollo_public_repos/apollo/modules/task_manager
|
apollo_public_repos/apollo/modules/task_manager/dag/task_manager.dag
|
# Define all coms in DAG streaming.
module_config {
module_library : "/apollo/bazel-bin/modules/task_manager/libtask_manager_component.so"
components {
class_name : "TaskManagerComponent"
config {
name : "task_manager"
config_file_path: "/apollo/modules/task_manager/conf/task_manager_config.pb.txt"
flag_file_path: "/apollo/modules/task_manager/conf/task_manager.conf"
readers: [
{
channel: "/apollo/task_manager"
qos_profile: {
depth : 15
}
pending_queue_size: 50
}
]
}
}
}
| 0
|
apollo_public_repos/apollo/modules/task_manager
|
apollo_public_repos/apollo/modules/task_manager/common/task_manager_gflags.cc
|
/******************************************************************************
* Copyright 2020 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#include "modules/task_manager/common/task_manager_gflags.h"
DEFINE_string(task_manager_node_name, "task_manager", "the name for this node");
DEFINE_double(threshold_for_destination_check, 1.0,
"meters, which is 100 feet. This threshold is used to check if"
"the vehicle reaches the destination");
DEFINE_double(plot_size_buffer, 0.2, "the size buffer of parking plot");
DEFINE_double(road_width_buffer, 0.0, "the size buffer of road width");
DEFINE_double(search_junction_threshold, 1.0,
"the threshold is used to search junction a certain range");
| 0
|
apollo_public_repos/apollo/modules/task_manager
|
apollo_public_repos/apollo/modules/task_manager/common/task_manager_gflags.h
|
/******************************************************************************
* Copyright 2020 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#pragma once
#include "gflags/gflags.h"
DECLARE_string(task_manager_node_name);
DECLARE_double(threshold_for_destination_check);
DECLARE_double(plot_size_buffer);
DECLARE_double(road_width_buffer);
DECLARE_double(search_junction_threshold);
| 0
|
apollo_public_repos/apollo/modules/task_manager
|
apollo_public_repos/apollo/modules/task_manager/common/BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library")
load("//tools:cpplint.bzl", "cpplint")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "task_manager_gflags",
srcs = ["task_manager_gflags.cc"],
hdrs = ["task_manager_gflags.h"],
deps = [
"@com_github_gflags_gflags//:gflags",
],
)
cpplint()
| 0
|
apollo_public_repos/apollo/modules/task_manager
|
apollo_public_repos/apollo/modules/task_manager/conf/task_manager_config.pb.txt
|
topic_config {
routing_request_topic: "/apollo/routing_request"
routing_response_topic: "/apollo/routing_response"
localization_pose_topic: "/apollo/localization/pose"
planning_topic: "/apollo/planning"
}
| 0
|
apollo_public_repos/apollo/modules/task_manager
|
apollo_public_repos/apollo/modules/task_manager/conf/task_manager.conf
|
--flagfile=/apollo/modules/common/data/global_flagfile.txt
--threshold_for_destination_check=10.0
--plot_size_buffer=0.2
--road_width_buffer=0.0
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/cyberfile_gpu.xml
|
<package format="2">
<name>planning-gpu</name>
<version>local</version>
<description>
Compared with previous versions, Apollo 7.0 adds a new dead end scenario, adds the "three-point turn", increases vehicle driving in and out ability, and expands the operation boundary of the urban road network. The "three-point turn" function is based on the open space planner framework and includes the following parts: scene conversion of dead ends, construction of open space ROI, and "three-point turn" trajectory planning.
</description>
<maintainer email="apollo-support@baidu.com">Apollo</maintainer>
<license>Apache License 2.0</license>
<url type="website">https://www.apollo.auto/</url>
<url type="repository">https://github.com/ApolloAuto/apollo</url>
<url type="bugtracker">https://github.com/ApolloAuto/apollo/issues</url>
<type>module</type>
<src_path url="https://github.com/ApolloAuto/apollo">//modules/planning</src_path>
<depend repo_name="com_github_gflags_gflags" lib_names="gflags">3rd-gflags-dev</depend>
<depend repo_name="com_google_absl" lib_names="absl">3rd-absl-dev</depend>
<depend repo_name="osqp">3rd-osqp-dev</depend>
<depend repo_name="com_github_google_glog" lib_names="glog">3rd-glog-dev</depend>
<depend repo_name="proj">3rd-proj-dev</depend>
<depend repo_name="tinyxml2" so_names="tinyxml2">libtinyxml2-dev</depend>
<depend repo_name="boost">3rd-boost-dev</depend>
<depend repo_name="opencv" lib_names="core,highgui,imgproc,imgcodecs">3rd-opencv-dev</depend>
<depend repo_name="ipopt">3rd-ipopt-dev</depend>
<depend repo_name="eigen">3rd-eigen3-dev</depend>
<depend repo_name="adolc" so_names="adolc">libadolc-dev</depend>
<depend repo_name="ad_rss_lib" lib_names="ad_rss">3rd-ad-rss-lib-dev</depend>
<depend type="binary" repo_name="cyber">cyber-dev</depend>
<depend type="binary" repo_name="common" lib_names="common">common-dev</depend>
<depend type="binary" repo_name="map" lib_names="map">map-dev</depend>
<depend repo_name="common-msgs" lib_names="common-msgs">common-msgs-dev</depend>
<depend>bazel-extend-tools-dev</depend>
<depend>3rd-mkl-dev</depend>
<depend repo_name="libtorch_cpu" lib_names="libtorch_cpu" condition="not gpu">3rd-libtorch-cpu-dev</depend>
<depend repo_name="libtorch_gpu" lib_names="libtorch_gpu" condition="gpu">3rd-libtorch-gpu-dev</depend>
<depend lib_names="protobuf" repo_name="com_google_protobuf">3rd-protobuf-dev</depend>
<depend expose="False">3rd-rules-python-dev</depend>
<depend expose="False">3rd-grpc-dev</depend>
<depend expose="False">3rd-bazel-skylib-dev</depend>
<depend expose="False">3rd-rules-proto-dev</depend>
<depend expose="False">3rd-py-dev</depend>
<depend expose="False">3rd-gpus-dev</depend>
<depend repo_name="com_google_googletest" lib_names="gtest,gtest_main">3rd-gtest-dev</depend>
</package>
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/cyberfile_cpu.xml
|
<package format="2">
<name>planning</name>
<version>local</version>
<description>
Compared with previous versions, Apollo 7.0 adds a new dead end scenario, adds the "three-point turn", increases vehicle driving in and out ability, and expands the operation boundary of the urban road network. The "three-point turn" function is based on the open space planner framework and includes the following parts: scene conversion of dead ends, construction of open space ROI, and "three-point turn" trajectory planning.
</description>
<maintainer email="apollo-support@baidu.com">Apollo</maintainer>
<license>Apache License 2.0</license>
<url type="website">https://www.apollo.auto/</url>
<url type="repository">https://github.com/ApolloAuto/apollo</url>
<url type="bugtracker">https://github.com/ApolloAuto/apollo/issues</url>
<type>module</type>
<src_path url="https://github.com/ApolloAuto/apollo">//modules/planning</src_path>
<depend repo_name="com_github_gflags_gflags" lib_names="gflags">3rd-gflags-dev</depend>
<depend repo_name="com_google_absl" lib_names="absl">3rd-absl-dev</depend>
<depend repo_name="osqp">3rd-osqp-dev</depend>
<depend repo_name="com_github_google_glog" lib_names="glog">3rd-glog-dev</depend>
<depend repo_name="proj">3rd-proj-dev</depend>
<depend repo_name="tinyxml2" so_names="tinyxml2">libtinyxml2-dev</depend>
<depend repo_name="boost">3rd-boost-dev</depend>
<depend repo_name="opencv" lib_names="core,highgui,imgproc,imgcodecs">3rd-opencv-dev</depend>
<depend repo_name="ipopt">3rd-ipopt-dev</depend>
<depend repo_name="eigen">3rd-eigen3-dev</depend>
<depend repo_name="adolc" so_names="adolc">libadolc-dev</depend>
<depend repo_name="ad_rss_lib" lib_names="ad_rss">3rd-ad-rss-lib-dev</depend>
<depend type="binary" repo_name="cyber">cyber-dev</depend>
<depend type="binary" repo_name="common" lib_names="common">common-dev</depend>
<depend type="binary" repo_name="map" lib_names="map">map-dev</depend>
<depend repo_name="common-msgs" lib_names="common-msgs">common-msgs-dev</depend>
<depend>bazel-extend-tools-dev</depend>
<depend>3rd-mkl-dev</depend>
<depend repo_name="libtorch_cpu" lib_names="libtorch_cpu" condition="not gpu">3rd-libtorch-cpu-dev</depend>
<depend repo_name="libtorch_gpu" lib_names="libtorch_gpu" condition="gpu">3rd-libtorch-gpu-dev</depend>
<depend lib_names="protobuf" repo_name="com_google_protobuf">3rd-protobuf-dev</depend>
<depend expose="False">3rd-rules-python-dev</depend>
<depend expose="False">3rd-grpc-dev</depend>
<depend expose="False">3rd-bazel-skylib-dev</depend>
<depend expose="False">3rd-rules-proto-dev</depend>
<depend expose="False">3rd-py-dev</depend>
<depend expose="False">3rd-gpus-dev</depend>
<depend repo_name="com_google_googletest" lib_names="gtest,gtest_main">3rd-gtest-dev</depend>
</package>
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/planning_base.h
|
/******************************************************************************
* Copyright 2018 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#pragma once
#include <memory>
#include <string>
#include <vector>
#include "modules/common_msgs/basic_msgs/pnc_point.pb.h"
#include "modules/common_msgs/chassis_msgs/chassis.pb.h"
#include "modules/common_msgs/dreamview_msgs/chart.pb.h"
#include "modules/common_msgs/localization_msgs/localization.pb.h"
#include "modules/common_msgs/perception_msgs/traffic_light_detection.pb.h"
#include "modules/common_msgs/planning_msgs/planning.pb.h"
#include "modules/common_msgs/prediction_msgs/prediction_obstacle.pb.h"
#include "modules/common_msgs/routing_msgs/routing.pb.h"
#include "modules/common/status/status.h"
#include "modules/common/vehicle_state/vehicle_state_provider.h"
#include "modules/map/hdmap/hdmap.h"
#include "modules/planning/common/dependency_injector.h"
#include "modules/planning/common/frame.h"
#include "modules/planning/common/local_view.h"
#include "modules/planning/common/trajectory/publishable_trajectory.h"
#include "modules/planning/planner/planner_dispatcher.h"
#include "modules/planning/planner/planner.h"
#include "modules/planning/proto/planning_config.pb.h"
#include "modules/planning/proto/traffic_rule_config.pb.h"
/**
* @namespace apollo::planning
* @brief apollo::planning
*/
namespace apollo {
namespace planning {
/**
* @class planning
*
* @brief PlanningBase module main class.
*/
class PlanningBase {
public:
PlanningBase() = delete;
explicit PlanningBase(const std::shared_ptr<DependencyInjector>& injector);
virtual ~PlanningBase();
virtual apollo::common::Status Init(const PlanningConfig& config);
virtual std::string Name() const = 0;
virtual void RunOnce(const LocalView& local_view,
ADCTrajectory* const adc_trajectory) = 0;
/**
* @brief Plan the trajectory given current vehicle state
*/
virtual apollo::common::Status Plan(
const double current_time_stamp,
const std::vector<common::TrajectoryPoint>& stitching_trajectory,
ADCTrajectory* const trajectory) = 0;
protected:
virtual void FillPlanningPb(const double timestamp,
ADCTrajectory* const trajectory_pb);
LocalView local_view_;
const hdmap::HDMap* hdmap_ = nullptr;
double start_time_ = 0.0;
size_t seq_num_ = 0;
PlanningConfig config_;
TrafficRuleConfigs traffic_rule_configs_;
std::unique_ptr<Frame> frame_;
std::unique_ptr<Planner> planner_;
std::unique_ptr<PublishableTrajectory> last_publishable_trajectory_;
std::unique_ptr<PlannerDispatcher> planner_dispatcher_;
std::shared_ptr<DependencyInjector> injector_;
};
} // namespace planning
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/on_lane_planning.h
|
/******************************************************************************
* Copyright 2018 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#pragma once
#include <memory>
#include <string>
#include <vector>
#include "modules/planning/common/smoothers/smoother.h"
#include "modules/planning/planner/on_lane_planner_dispatcher.h"
#include "modules/planning/planning_base.h"
/**
* @namespace apollo::planning
* @brief apollo::planning
*/
namespace apollo {
namespace planning {
/**
* @class planning
*
* @brief Planning module main class. It processes GPS and IMU as input,
* to generate planning info.
*/
class OnLanePlanning : public PlanningBase {
public:
explicit OnLanePlanning(const std::shared_ptr<DependencyInjector>& injector)
: PlanningBase(injector) {
planner_dispatcher_ = std::make_unique<OnLanePlannerDispatcher>();
}
virtual ~OnLanePlanning();
/**
* @brief Planning name.
*/
std::string Name() const override;
/**
* @brief module initialization function
* @return initialization status
*/
common::Status Init(const PlanningConfig& config) override;
/**
* @brief main logic of the planning module, runs periodically triggered by
* timer.
*/
void RunOnce(const LocalView& local_view,
ADCTrajectory* const ptr_trajectory_pb) override;
common::Status Plan(
const double current_time_stamp,
const std::vector<common::TrajectoryPoint>& stitching_trajectory,
ADCTrajectory* const trajectory) override;
private:
common::Status InitFrame(const uint32_t sequence_num,
const common::TrajectoryPoint& planning_start_point,
const common::VehicleState& vehicle_state);
common::VehicleState AlignTimeStamp(const common::VehicleState& vehicle_state,
const double curr_timestamp) const;
void ExportReferenceLineDebug(planning_internal::Debug* debug);
bool CheckPlanningConfig(const PlanningConfig& config);
void GenerateStopTrajectory(ADCTrajectory* ptr_trajectory_pb);
void ExportFailedLaneChangeSTChart(const planning_internal::Debug& debug_info,
planning_internal::Debug* debug_chart);
void ExportOnLaneChart(const planning_internal::Debug& debug_info,
planning_internal::Debug* debug_chart);
void ExportOpenSpaceChart(const planning_internal::Debug& debug_info,
const ADCTrajectory& trajectory_pb,
planning_internal::Debug* debug_chart);
void AddOpenSpaceOptimizerResult(const planning_internal::Debug& debug_info,
planning_internal::Debug* debug_chart);
void AddPartitionedTrajectory(const planning_internal::Debug& debug_info,
planning_internal::Debug* debug_chart);
void AddStitchSpeedProfile(planning_internal::Debug* debug_chart);
void AddPublishedSpeed(const ADCTrajectory& trajectory_pb,
planning_internal::Debug* debug_chart);
void AddPublishedAcceleration(const ADCTrajectory& trajectory_pb,
planning_internal::Debug* debug);
void AddFallbackTrajectory(const planning_internal::Debug& debug_info,
planning_internal::Debug* debug_chart);
private:
routing::RoutingResponse last_routing_;
std::unique_ptr<ReferenceLineProvider> reference_line_provider_;
Smoother planning_smoother_;
};
} // namespace planning
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/planning-gpu.BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "planning",
includes = ["include"],
hdrs = glob(["include/**/*.h"]),
srcs = glob(["lib/**/*.so*"]),
include_prefix = "modules/planning",
strip_include_prefix = "include",
visibility = ["//visibility:public"],
)
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/README.md
|
# Planning
## Introduction
Prior to the 5.5 release, Apollo uses the same configuration and parameters to
plan different driving scenarios. Although linear and easy to implement, this
approach was not flexible or scenario specific. As Apollo matures and takes on
different road conditions and driving use cases, we felt the need to move to a
more modular, scenario specific and wholistic approach for planning its
trajectory. In this approach, each driving use case is treated as a different
driving scenario. This is useful because an issue now reported in a particular
scenario can be fixed without affecting the working of other scenarios as
opposed to the previous versions, wherein an issue fix affected other driving
use cases as they were all treated as a single driving scenario.
Apollo 5.5, which focuses on curb-to-curb autonomous driving on urban roads,
introduced 2 new planning scenarios.
Apollo 6.0 extended the technology to incorporate data-driven mothedologies to tackle trajectory planning problems with learning-based models, and introduced two new planning modes: E2E mode and Hybrid mode, by which the new capability of dynamically nudginng moving obstacles are demonstrated. In these two modes, a series of APIs is also defined where developers can generate their own training data and integrate their own models.
**Note:** The current development of E2E mode is in an early stage where the model is trained for the dynamic nudge scenario as a research demonstration purpose. The capability of the model is limited, and suboptimality is expected when it is tested with a wider selection of scenarios. E2E mode and Hybrid mode are not tested on real roads yet, but rather serve as a baseline to promote and encourage extensive research on learning based planning. All developers are welcome to collaborate with us by any means including algorithms, models and data.
## E2E Mode

### How to Enable
- Change the configuration "learning_mode" in apollo/modules/planning/conf/planning_config.pb.txt to be "E2E_TEST" if Apollo is run in simulation or "E2E" on real vehicle
- Change the configuration "model_type" in apollo/modules/planning/conf/scenario/learning_model_sample_config.pb.txt to be either "CNN_LSTM" or "CNN" and adapt the following "cpu_model_file" and "gpu_model_file" file paths. "CNN_LSTM" is the preferred model for now.
### Model Inputs and Outputs
- Model input consists of a birdview image centered by vehicle pose and vehicle current velocity.
- Model output is planning trajectory
## Hybrid Mode

### How to Enable
In configuration file,
```
./modules/planning/conf/planning_config.pb.txt
```
set learning_mode: `learning_mode: ` as `HYBRID` for road test or `HYBRID_TEST` for simulation.
### Parameters
The configurable parameters in hybrid model are listed in the configuration file
```
modules/planning/conf/scenario/lane_follow_hybrid_config.pb.txt
```
The parameter `path_reference_l_weight` is for adjusting hybrid model path output. A larger value of `path_reference_l_weight` means higher penalty of the difference between hybrid model path and learning model path in lateral direction.
## Apollo 5.5 vs E2E Mode vs Hybrid Mode
We demonstrate simulation results on a dynamic nudge scenario with Apollo 5.5, E2E mode, and Hybrid mode.
- Apollo 5.5

- E2E Mode

- Hybrid Mode

## Driving Scenarios
There are 5 main driving scenarios that we will focus on Lane Follow, Intersection, Pull-Over, and the newly introduced Park-and-go and Emergency. Let's dive into them individually:
### Lane Follow - Default
As seen in the figure below, the lane-follow scenario, our default driving scenario, includes but is not limited to driving in a single lane (like cruising) or changing lane, following basic traffic convention or basic turning.

> Note: Side Pass
>
> > While the functionality of side pass still exists, it has now been made universal rather than limiting it to a type of scenario. The side-pass feature is incorporated as part of the path-bounds decider task. You can choose to turn it on or off by properly configuring the path-lane-borrow decider task. For example, if you want the vehicle to be agile, then turn side-pass on for all scenarios; if you feel it not safe to side-pass in intersections, then turn it off for those related scenarios.
### Intersection
The new intersection scenario includes STOP Signs, Traffic Lights and Bare Intersections which do not have either a light or a sign.
#### STOP Sign
There are two separate driving scenarios for STOP signs:
- **Unprotected**: In this scenario, the car is expected to navigate through a crossroad having a two-way STOP. Our ADC therefore has to creep through and gauge the crossroad's traffic density before continuing onto its path.

- **Protected**: In this scenario, the car is expected to navigate through a crossroad having a four-way STOP. Our ADC will have to gauge the cars that come to a STOP before it and understand its position in the queue before moving.

In order to safely pass through a STOP sign, both protected and unprotected, the following steps are performed:
- Arriving at the STOP sign: Perceive all other cars or obstacles that are currently waiting at the other stop signs
- Come to a complete stop: Monitor to see if the cars that were previously stationary at other STOP signs have moved or not. It is essential that the cars that arrived before have all left
- Move forward slightly (Creep): Check to see if any other car is moving or in the case of unprotected stop, check to see if there are any oncoming vehicles on either side of the lane
- Safely move through the crossroad
> Note:
>
> > The team is working to add additional driving scenarios into our planner. One such example is handling Traffic Lights.
#### Traffic Light
In order to safely and smoothly pass through a traffic light, we created 3 driving scenarios:
- **Protected**: In this scenario, our ego car has to pass through an intersection with a clear traffic light indicator. A left arrow or right arrow in green for the corresponding turn.
- **Unprotected Left**: In this scenario, our ego car will have to make a left turn without a distinct light, meaning the car would need to yield to oncoming traffic. Just like in the unprotected STOP scenario, our ego car would have to creep to ensure that it is safe to cross the intersection before safely moving through the lane.
- **Unprotected Right**: In this scenario, our ego car is expected to make an unprotected right turn while yielding to oncoming traffic. Our ego car will need to creep slowly and gauge the traffic and then make a safe turn.
As discussed above, based on the three driving scenarios, the following 3 steps are performed:
- **Stop/Approach**: If a stop is required, our ego car will stop in front of traffic light stop line
- **Move forward slightly (Creep)**: Check to see if any other car is moving or in the case of unprotected turns, check to see if there are any oncoming vehicles on either side of the lane
- **Move**: Safely drive through the intersection
#### Bare Intersection
Bare intersection is a scenario designated to an intersection without either a STOP sign or a traffic light. In this scenario, the following steps are performed:
- **Approach**: Reach the intersection
- **Move forward slightly (Creep)**: Check to see if any other car is moving or in the case of unprotected stop, check to see if there are any oncoming vehicles on either side of the lane
- **Move**: Safely move through the intersection
### Park
The Apollo team is proud to introduce Open Space Planner, a new planning algorithm that can be used for several use cases especially the parking scenario. To learn more about Open Space Planner, please refer to [Open Space Planner Algorithm](https://github.com/ApolloAuto/apollo/blob/master/docs/specs/Open_Space_Planner.md)
#### Valet
The Valet scenario was designed to safely park your ego car in a targeted parking spot. There are 2 main stages that are performed in order to park your ego car:
1. **Approaching the Parking Spot**: In this stage, standard planning algorithms are used to approach the designated parking spot. The car will gradually cruise to a halt once it has found the right stopping point required in order to reverse into the parking spot as seen in the image below

2. **Parking**: In this stage, Open Space Planner algorithm is used to generate a zig-zag trajectory which involves both forward and reverse driving (gear changes) in order to safely park the ego car. A sample trajectory generated for the scenario in the previous image, can be seen below:

#### Pull Over
The Pull Over scenario was designed especially for maneuvering to the side of the road upon reaching your destination like for curb-side parallel parking. There are 3 main stages to accomplish the pull over scenario.
1. **Approaching**: In this stage, as there is no clear designated parking spot, the ego car simply approaches the side of the road where it seems feasible to park. Standard Planning algorithms are used for this stage. Once it comes to a halt, the second stage begins. An example of stage 1 can be seen in the image below:

2. **Retry Approach Parking**: In this stage the ego car adjusts itself to enter the parking spot. It is similar to the `Approach Parking Spot` case in the Valet scenario. An example of stage 2 can be seen in the image below:

3. **Retry Parking**: This stage uses Open Space Planner to parallel park the vehicle. A zig-zag trajectory is generated to help the ego car park itself on the side of the road. A sample trajectory generated for the scenario in the previous image, can be seen below:

There is a special case in the Pull Over scenario that does not need the Open Space Planner stage. This case occurs when there are no obstacles blocking the curb-side parking of the ego car. An example can be seen below. In such a case, the car simply approaches the parking spot and then enters the spot using standard planning.

### Park-and-go
Apollo 5.5 which focuses on curb-to-curb driving introduces the Park-and-go scenario which was designed to handle curb side parking, planning a new trajectory to the next destination and then driving along that trajectory. This scenario is extremely useful in situations like curb-side delivery or passenger pickup or drop-off. This scenario combines Open Space Planner along with other traditional trajectory planners to ensure that the car not only parks safely but is also able to exit per the new trajectory.

## Emergency
The Emergency scenario is another newly introduced scenario in Apollo 5.5, developed to ensure that the vehicle can be brought to a stop safely in the situation of a given trigger event (either via human input or due to a failure in one or more of the vehicle's hardware or software modules). This scenario is extremely crucial to urban driving as one often encounters several unforeseen situations on the road that requires the vehicle to come to a complete stop. There are two types of emergency stops that are performed using this scenario:
1. **Pull Over and Stop**: In this scenario, the autonomous car uses Open Space Planner to pull-over and then come to a full stop on the curb-side
2. **In Lane Stop**: In this scenario, the autonomous car comes to a complete stop in its lane. In this situation the car is well aware of its surrounding obstacles to prevent any rear-end collisions and ensure not just the safety of itself but also the vehicles around it.

## Planning Module Architecture
In Apollo 5.5, the Planning module architecture has been modified to incorporate new curb-to-curb driving scenarios on urban roads. As seen in the figure below, we have 2 new complex scenarios Emergency and Park-and-go. In order to plan these scenarios effectively, we have 2 new Deciders - Path Reuse Decider and Speed Bound Decider and have updated existing deciders making the planning architecture robust and flexible enough to handle many different types of urban road driving scenarios.
Each driving scenario has its set of driving parameters that are unique to that scenario making it safer, efficient, easier to customize and debug and more flexible.
> Note:
>
> > If you wish to include your own driving scenarios, please refer to existing scenarios as a reference. We currently do not have a template for writing your own planning scenario.

## Related Paper
1. [He R, Zhou J, Jiang S, Wang Y, Tao J, Song S, Hu J, Miao J, Luo Q. "TDR-OBCA: A Reliable Planner for Autonomous Driving in Free-Space Environment." *arXiv preprint arXiv:2009.11345.* ](https://arxiv.org/pdf/2009.11345.pdf)
2. [Zhou J, He R, Wang Y, Jiang S, Zhu Z, Hu J, Miao J, Luo Q. "DL-IAPS and PJSO: A Path/Speed Decoupled Trajectory Optimization and its Application in Autonomous Driving." *arXiv preprint arXiv:2009.11135.*](https://arxiv.org/pdf/2009.11135.pdf)
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/README_cn.md
|
# 规划
## 介绍
Apollo的之前版本,包含3.0都是用了相同的配置和参数规划不同的场景,这种方法虽然线性且实现简单,但不够灵活或用于特定场景。随着Apollo的成熟并承担不同的道路条件和驾驶用例,我们认为有必要采用更加模块化、适用于特定场景和整体的方法来规划其轨迹。
在这个方法中,每个驾驶用例都被当作不同的驾驶场景。这样做非常有用,因为与先前的版本相比,现在在特定场景中报告的问题可以在不影响其他场景的工作的情况下得到修复,其中问题修复影响其他驾驶用例,因为它们都被当作单个驾驶场景处理。
## 驾驶场景
Apollo3.5主要聚焦在三个主要驾驶场景,即:
### 车道保持 - 默认
如下图所示,车道保持场景(我们的默认驾驶场景)包括但不限于在单车道(如巡航)或换道行驶,遵循基本的交通约定或基本转弯。

### Side Pass
在这种情况下,如果在自动驾驶车辆(ADC)的车道上有静态车辆或静态障碍物,并且车辆不能在不接触障碍物的情况下安全地通过车道,则执行以下策略:
- 检查邻近车道是否接近通行
- 如果无车辆,进行绕行,绕过当前车道进入邻道
- 一旦障碍物安全通过,回到原车道上

### 停止标识
停止标识有两种分离的驾驶场景:
1、未保护:在这种情况下,汽车预计会通过具有双向停车位的十字路口。因此,我们的ADC必须爬过并测量十字路口的交通密度,然后才能继续走上它的道路。

2、受保护:在此场景中,汽车预期通过具有四向停车位的十字路口导航。我们的ADC将必须对在它之前停下来的汽车进行测量,并在移动之前了解它在队列中的位置。

为了安全地通过受保护和未受保护的停止标志,执行逻辑如下:
- 到达停车标志处:感知正等待在其他停车标志处的所有汽车或障碍物;
- 完全停止:Monitor检查之前停在其他停车标志处的汽车是否已经移动。以前到达的汽车必须全部离开;
- 稍微向前移动(爬行):检查是否有其他车辆正在移动或在无保护停车的情况下,检查车道两侧是否有迎面而来的车辆
- 安全通过十字路口
```
Note:
Apollo团队正在努力增加额外的驾驶场景到规划器。其中一个例子是处理交通灯。
```
## Planning 模块架构
Apollo 3.5 Planning模块的架构已经改变,以反映我们针对不同驾驶场景的模块化方法。
如下图所示,在规划器中,是上面讨论的各个驾驶场景及其处理逻辑。
每个驾驶场景都有其独特的驾驶参数集,这些参数使该场景更安全、高效、更易于定制和调试,并且更加灵活。每个阶段可配置的,且被划分为 **任务**,并且可以通过编辑该场景的`config`文件来移动或创建每个任务。
部分重要特性包含如下:
- Apollo FSM(finite state machine):一个有限状态机,与高清地图确定车辆状态给定其位置和路线。
- Planning Dispatcher: 根据车辆的状态和其他相关信息,调用合适的Planner
- Planner:获取所需的上下文数据和其他信息,确定相应的车辆意图,执行该意图所需的规划任务并生成规划轨迹。它还将更新未来作业的上下文。
- Deciders & Optimizers :一组实现决策任务和各种优化的无状态库。优化器特别优化车辆的轨迹和速度。决策者是基于规则的分类决策者,他们建议何时换车道、何时停车、何时爬行(慢速行进)或爬行何时完成。
- 黄色框:这些框被包含在未来的场景和/或开发人员中,以便基于现实世界的驱动用例贡献他们自己的场景
```
Note:
如果您希望包括您自己的驾驶场景,请参考现有方案作为参考。我们目前没有用于编写您自己的规划场景的模板。
```

| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/on_lane_planning.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/on_lane_planning.h"
#include <algorithm>
#include <limits>
#include <list>
#include <utility>
#include "gtest/gtest_prod.h"
#include "absl/strings/str_cat.h"
#include "modules/common_msgs/planning_msgs/planning_internal.pb.h"
#include "modules/common_msgs/routing_msgs/routing.pb.h"
#include "modules/planning/proto/planning_semantic_map_config.pb.h"
#include "cyber/common/file.h"
#include "cyber/common/log.h"
#include "cyber/time/clock.h"
#include "modules/common/math/quaternion.h"
#include "modules/common/vehicle_state/vehicle_state_provider.h"
#include "modules/map/hdmap/hdmap_util.h"
#include "modules/planning/common/ego_info.h"
#include "modules/planning/common/history.h"
#include "modules/planning/common/planning_context.h"
#include "modules/planning/common/planning_gflags.h"
#include "modules/planning/common/trajectory_stitcher.h"
#include "modules/planning/common/util/util.h"
#include "modules/planning/learning_based/img_feature_renderer/birdview_img_feature_renderer.h"
#include "modules/planning/planner/rtk/rtk_replay_planner.h"
#include "modules/planning/reference_line/reference_line_provider.h"
#include "modules/planning/tasks/task_factory.h"
#include "modules/planning/traffic_rules/traffic_decider.h"
namespace apollo {
namespace planning {
using apollo::canbus::Chassis;
using apollo::common::EngageAdvice;
using apollo::common::ErrorCode;
using apollo::common::Status;
using apollo::common::TrajectoryPoint;
using apollo::common::VehicleState;
using apollo::common::VehicleStateProvider;
using apollo::common::math::Vec2d;
using apollo::cyber::Clock;
using apollo::dreamview::Chart;
using apollo::hdmap::HDMapUtil;
using apollo::planning_internal::SLFrameDebug;
using apollo::planning_internal::SpeedPlan;
using apollo::planning_internal::STGraphDebug;
void SetChartminmax(apollo::dreamview::Chart* chart, std::string label_name_x,
std::string label_name_y) {
auto* options = chart->mutable_options();
double xmin(std::numeric_limits<double>::max()),
xmax(std::numeric_limits<double>::lowest()),
ymin(std::numeric_limits<double>::max()),
ymax(std::numeric_limits<double>::lowest());
for (int i = 0; i < chart->line_size(); i++) {
auto* line = chart->mutable_line(i);
for (auto& pt : line->point()) {
xmin = std::min(xmin, pt.x());
ymin = std::min(ymin, pt.y());
xmax = std::max(xmax, pt.x());
ymax = std::max(ymax, pt.y());
}
auto* properties = line->mutable_properties();
(*properties)["borderWidth"] = "2";
(*properties)["pointRadius"] = "0";
(*properties)["lineTension"] = "0";
(*properties)["fill"] = "false";
(*properties)["showLine"] = "true";
}
options->mutable_x()->set_min(xmin);
options->mutable_x()->set_max(xmax);
options->mutable_x()->set_label_string(label_name_x);
options->mutable_y()->set_min(ymin);
options->mutable_y()->set_max(ymax);
options->mutable_y()->set_label_string(label_name_y);
// Set chartJS's dataset properties
}
OnLanePlanning::~OnLanePlanning() {
if (reference_line_provider_) {
reference_line_provider_->Stop();
}
planner_->Stop();
injector_->frame_history()->Clear();
injector_->history()->Clear();
injector_->planning_context()->mutable_planning_status()->Clear();
last_routing_.Clear();
injector_->ego_info()->Clear();
}
std::string OnLanePlanning::Name() const { return "on_lane_planning"; }
Status OnLanePlanning::Init(const PlanningConfig& config) {
config_ = config;
if (!CheckPlanningConfig(config_)) {
return Status(ErrorCode::PLANNING_ERROR,
"planning config error: " + config_.DebugString());
}
PlanningBase::Init(config_);
planner_dispatcher_->Init();
ACHECK(apollo::cyber::common::GetProtoFromFile(
FLAGS_traffic_rule_config_filename, &traffic_rule_configs_))
<< "Failed to load traffic rule config file "
<< FLAGS_traffic_rule_config_filename;
// clear planning history
injector_->history()->Clear();
// clear planning status
injector_->planning_context()->mutable_planning_status()->Clear();
// load map
hdmap_ = HDMapUtil::BaseMapPtr();
ACHECK(hdmap_) << "Failed to load map";
// instantiate reference line provider
reference_line_provider_ = std::make_unique<ReferenceLineProvider>(
injector_->vehicle_state(), hdmap_);
reference_line_provider_->Start();
// dispatch planner
planner_ = planner_dispatcher_->DispatchPlanner(config_, injector_);
if (!planner_) {
return Status(
ErrorCode::PLANNING_ERROR,
"planning is not initialized with config : " + config_.DebugString());
}
if (config_.learning_mode() != PlanningConfig::NO_LEARNING) {
PlanningSemanticMapConfig renderer_config;
ACHECK(apollo::cyber::common::GetProtoFromFile(
FLAGS_planning_birdview_img_feature_renderer_config_file,
&renderer_config))
<< "Failed to load renderer config"
<< FLAGS_planning_birdview_img_feature_renderer_config_file;
BirdviewImgFeatureRenderer::Instance()->Init(renderer_config);
}
start_time_ = Clock::NowInSeconds();
return planner_->Init(config_);
}
Status OnLanePlanning::InitFrame(const uint32_t sequence_num,
const TrajectoryPoint& planning_start_point,
const VehicleState& vehicle_state) {
frame_.reset(new Frame(sequence_num, local_view_, planning_start_point,
vehicle_state, reference_line_provider_.get()));
if (frame_ == nullptr) {
return Status(ErrorCode::PLANNING_ERROR, "Fail to init frame: nullptr.");
}
// Get the parking space information from routing request of local view.
auto& routing_request = local_view_.routing->routing_request();
if (routing_request.has_parking_info() &&
routing_request.parking_info().has_parking_space_id()) {
*(frame_->mutable_open_space_info()->mutable_target_parking_spot_id()) =
routing_request.parking_info().parking_space_id();
} else {
ADEBUG << "No parking space id from routing";
}
std::list<ReferenceLine> reference_lines;
std::list<hdmap::RouteSegments> segments;
if (!reference_line_provider_->GetReferenceLines(&reference_lines,
&segments)) {
const std::string msg = "Failed to create reference line";
AERROR << msg;
return Status(ErrorCode::PLANNING_ERROR, msg);
}
DCHECK_EQ(reference_lines.size(), segments.size());
auto forward_limit =
hdmap::PncMap::LookForwardDistance(vehicle_state.linear_velocity());
for (auto& ref_line : reference_lines) {
if (!ref_line.Segment(Vec2d(vehicle_state.x(), vehicle_state.y()),
FLAGS_look_backward_distance, forward_limit)) {
const std::string msg = "Fail to shrink reference line.";
AERROR << msg;
return Status(ErrorCode::PLANNING_ERROR, msg);
}
}
for (auto& seg : segments) {
if (!seg.Shrink(Vec2d(vehicle_state.x(), vehicle_state.y()),
FLAGS_look_backward_distance, forward_limit)) {
const std::string msg = "Fail to shrink routing segments.";
AERROR << msg;
return Status(ErrorCode::PLANNING_ERROR, msg);
}
}
auto status = frame_->Init(
injector_->vehicle_state(), reference_lines, segments,
reference_line_provider_->FutureRouteWaypoints(), injector_->ego_info());
if (!status.ok()) {
AERROR << "failed to init frame:" << status.ToString();
return status;
}
return Status::OK();
}
// TODO(all): fix this! this will cause unexpected behavior from controller
void OnLanePlanning::GenerateStopTrajectory(ADCTrajectory* ptr_trajectory_pb) {
ptr_trajectory_pb->clear_trajectory_point();
const auto& vehicle_state = injector_->vehicle_state()->vehicle_state();
const double max_t = FLAGS_fallback_total_time;
const double unit_t = FLAGS_fallback_time_unit;
TrajectoryPoint tp;
auto* path_point = tp.mutable_path_point();
path_point->set_x(vehicle_state.x());
path_point->set_y(vehicle_state.y());
path_point->set_theta(vehicle_state.heading());
path_point->set_s(0.0);
tp.set_v(0.0);
tp.set_a(0.0);
for (double t = 0.0; t < max_t; t += unit_t) {
tp.set_relative_time(t);
auto next_point = ptr_trajectory_pb->add_trajectory_point();
next_point->CopyFrom(tp);
}
}
void OnLanePlanning::RunOnce(const LocalView& local_view,
ADCTrajectory* const ptr_trajectory_pb) {
// when rerouting, reference line might not be updated. In this case, planning
// module maintains not-ready until be restarted.
static bool failed_to_update_reference_line = false;
local_view_ = local_view;
const double start_timestamp = Clock::NowInSeconds();
const double start_system_timestamp =
std::chrono::duration<double>(
std::chrono::system_clock::now().time_since_epoch())
.count();
// localization
ADEBUG << "Get localization:"
<< local_view_.localization_estimate->DebugString();
// chassis
ADEBUG << "Get chassis:" << local_view_.chassis->DebugString();
Status status = injector_->vehicle_state()->Update(
*local_view_.localization_estimate, *local_view_.chassis);
VehicleState vehicle_state = injector_->vehicle_state()->vehicle_state();
const double vehicle_state_timestamp = vehicle_state.timestamp();
DCHECK_GE(start_timestamp, vehicle_state_timestamp)
<< "start_timestamp is behind vehicle_state_timestamp by "
<< start_timestamp - vehicle_state_timestamp << " secs";
if (!status.ok() || !util::IsVehicleStateValid(vehicle_state)) {
const std::string msg =
"Update VehicleStateProvider failed "
"or the vehicle state is out dated.";
AERROR << msg;
ptr_trajectory_pb->mutable_decision()
->mutable_main_decision()
->mutable_not_ready()
->set_reason(msg);
status.Save(ptr_trajectory_pb->mutable_header()->mutable_status());
// TODO(all): integrate reverse gear
ptr_trajectory_pb->set_gear(canbus::Chassis::GEAR_DRIVE);
FillPlanningPb(start_timestamp, ptr_trajectory_pb);
GenerateStopTrajectory(ptr_trajectory_pb);
return;
}
if (start_timestamp - vehicle_state_timestamp <
FLAGS_message_latency_threshold) {
vehicle_state = AlignTimeStamp(vehicle_state, start_timestamp);
}
// Update reference line provider and reset pull over if necessary
reference_line_provider_->UpdateVehicleState(vehicle_state);
if (util::IsDifferentRouting(last_routing_, *local_view_.routing)) {
last_routing_ = *local_view_.routing;
ADEBUG << "last_routing_:" << last_routing_.ShortDebugString();
injector_->history()->Clear();
injector_->planning_context()->mutable_planning_status()->Clear();
reference_line_provider_->UpdateRoutingResponse(*local_view_.routing);
planner_->Init(config_);
}
failed_to_update_reference_line =
(!reference_line_provider_->UpdatedReferenceLine());
// early return when reference line fails to update after rerouting
if (failed_to_update_reference_line) {
const std::string msg = "Failed to update reference line after rerouting.";
AERROR << msg;
ptr_trajectory_pb->mutable_decision()
->mutable_main_decision()
->mutable_not_ready()
->set_reason(msg);
status.Save(ptr_trajectory_pb->mutable_header()->mutable_status());
ptr_trajectory_pb->set_gear(canbus::Chassis::GEAR_DRIVE);
FillPlanningPb(start_timestamp, ptr_trajectory_pb);
GenerateStopTrajectory(ptr_trajectory_pb);
return;
}
// planning is triggered by prediction data, but we can still use an estimated
// cycle time for stitching
const double planning_cycle_time =
1.0 / static_cast<double>(FLAGS_planning_loop_rate);
std::string replan_reason;
std::vector<TrajectoryPoint> stitching_trajectory =
TrajectoryStitcher::ComputeStitchingTrajectory(
vehicle_state, start_timestamp, planning_cycle_time,
FLAGS_trajectory_stitching_preserved_length, true,
last_publishable_trajectory_.get(), &replan_reason);
injector_->ego_info()->Update(stitching_trajectory.back(), vehicle_state);
const uint32_t frame_num = static_cast<uint32_t>(seq_num_++);
status = InitFrame(frame_num, stitching_trajectory.back(), vehicle_state);
if (status.ok()) {
injector_->ego_info()->CalculateFrontObstacleClearDistance(
frame_->obstacles());
}
if (FLAGS_enable_record_debug) {
frame_->RecordInputDebug(ptr_trajectory_pb->mutable_debug());
}
ptr_trajectory_pb->mutable_latency_stats()->set_init_frame_time_ms(
Clock::NowInSeconds() - start_timestamp);
if (!status.ok()) {
AERROR << status.ToString();
if (FLAGS_publish_estop) {
// "estop" signal check in function "Control::ProduceControlCommand()"
// estop_ = estop_ || local_view_.trajectory.estop().is_estop();
// we should add more information to ensure the estop being triggered.
ADCTrajectory estop_trajectory;
EStop* estop = estop_trajectory.mutable_estop();
estop->set_is_estop(true);
estop->set_reason(status.error_message());
status.Save(estop_trajectory.mutable_header()->mutable_status());
ptr_trajectory_pb->CopyFrom(estop_trajectory);
} else {
ptr_trajectory_pb->mutable_decision()
->mutable_main_decision()
->mutable_not_ready()
->set_reason(status.ToString());
status.Save(ptr_trajectory_pb->mutable_header()->mutable_status());
GenerateStopTrajectory(ptr_trajectory_pb);
}
// TODO(all): integrate reverse gear
ptr_trajectory_pb->set_gear(canbus::Chassis::GEAR_DRIVE);
FillPlanningPb(start_timestamp, ptr_trajectory_pb);
frame_->set_current_frame_planned_trajectory(*ptr_trajectory_pb);
const uint32_t n = frame_->SequenceNum();
injector_->frame_history()->Add(n, std::move(frame_));
return;
}
for (auto& ref_line_info : *frame_->mutable_reference_line_info()) {
TrafficDecider traffic_decider;
traffic_decider.Init(traffic_rule_configs_);
auto traffic_status =
traffic_decider.Execute(frame_.get(), &ref_line_info, injector_);
if (!traffic_status.ok() || !ref_line_info.IsDrivable()) {
ref_line_info.SetDrivable(false);
AWARN << "Reference line " << ref_line_info.Lanes().Id()
<< " traffic decider failed";
}
}
status = Plan(start_timestamp, stitching_trajectory, ptr_trajectory_pb);
for (const auto& p : ptr_trajectory_pb->trajectory_point()) {
ADEBUG << p.DebugString();
}
const auto end_system_timestamp =
std::chrono::duration<double>(
std::chrono::system_clock::now().time_since_epoch())
.count();
const auto time_diff_ms =
(end_system_timestamp - start_system_timestamp) * 1000;
ADEBUG << "total planning time spend: " << time_diff_ms << " ms.";
ptr_trajectory_pb->mutable_latency_stats()->set_total_time_ms(time_diff_ms);
ADEBUG << "Planning latency: "
<< ptr_trajectory_pb->latency_stats().DebugString();
if (!status.ok()) {
status.Save(ptr_trajectory_pb->mutable_header()->mutable_status());
AERROR << "Planning failed:" << status.ToString();
if (FLAGS_publish_estop) {
AERROR << "Planning failed and set estop";
// "estop" signal check in function "Control::ProduceControlCommand()"
// estop_ = estop_ || local_view_.trajectory.estop().is_estop();
// we should add more information to ensure the estop being triggered.
EStop* estop = ptr_trajectory_pb->mutable_estop();
estop->set_is_estop(true);
estop->set_reason(status.error_message());
}
}
ptr_trajectory_pb->set_is_replan(stitching_trajectory.size() == 1);
if (ptr_trajectory_pb->is_replan()) {
ptr_trajectory_pb->set_replan_reason(replan_reason);
}
if (frame_->open_space_info().is_on_open_space_trajectory()) {
FillPlanningPb(start_timestamp, ptr_trajectory_pb);
ADEBUG << "Planning pb:" << ptr_trajectory_pb->header().DebugString();
frame_->set_current_frame_planned_trajectory(*ptr_trajectory_pb);
} else {
auto* ref_line_task =
ptr_trajectory_pb->mutable_latency_stats()->add_task_stats();
ref_line_task->set_time_ms(reference_line_provider_->LastTimeDelay() *
1000.0);
ref_line_task->set_name("ReferenceLineProvider");
// TODO(all): integrate reverse gear
ptr_trajectory_pb->set_gear(canbus::Chassis::GEAR_DRIVE);
FillPlanningPb(start_timestamp, ptr_trajectory_pb);
ADEBUG << "Planning pb:" << ptr_trajectory_pb->header().DebugString();
frame_->set_current_frame_planned_trajectory(*ptr_trajectory_pb);
if (FLAGS_enable_planning_smoother) {
planning_smoother_.Smooth(injector_->frame_history(), frame_.get(),
ptr_trajectory_pb);
}
}
const uint32_t n = frame_->SequenceNum();
injector_->frame_history()->Add(n, std::move(frame_));
}
void OnLanePlanning::ExportReferenceLineDebug(planning_internal::Debug* debug) {
if (!FLAGS_enable_record_debug) {
return;
}
for (auto& reference_line_info : *frame_->mutable_reference_line_info()) {
auto rl_debug = debug->mutable_planning_data()->add_reference_line();
rl_debug->set_id(reference_line_info.Lanes().Id());
rl_debug->set_length(reference_line_info.reference_line().Length());
rl_debug->set_cost(reference_line_info.Cost());
rl_debug->set_is_change_lane_path(reference_line_info.IsChangeLanePath());
rl_debug->set_is_drivable(reference_line_info.IsDrivable());
rl_debug->set_is_protected(reference_line_info.GetRightOfWayStatus() ==
ADCTrajectory::PROTECTED);
// store kappa and dkappa for performance evaluation
const auto& reference_points =
reference_line_info.reference_line().reference_points();
double kappa_rms = 0.0;
double dkappa_rms = 0.0;
double kappa_max_abs = std::numeric_limits<double>::lowest();
double dkappa_max_abs = std::numeric_limits<double>::lowest();
for (const auto& reference_point : reference_points) {
double kappa_sq = reference_point.kappa() * reference_point.kappa();
double dkappa_sq = reference_point.dkappa() * reference_point.dkappa();
kappa_rms += kappa_sq;
dkappa_rms += dkappa_sq;
kappa_max_abs = kappa_max_abs < kappa_sq ? kappa_sq : kappa_max_abs;
dkappa_max_abs = dkappa_max_abs < dkappa_sq ? dkappa_sq : dkappa_max_abs;
}
double reference_points_size = static_cast<double>(reference_points.size());
kappa_rms /= reference_points_size;
dkappa_rms /= reference_points_size;
kappa_rms = std::sqrt(kappa_rms);
dkappa_rms = std::sqrt(dkappa_rms);
rl_debug->set_kappa_rms(kappa_rms);
rl_debug->set_dkappa_rms(dkappa_rms);
rl_debug->set_kappa_max_abs(kappa_max_abs);
rl_debug->set_dkappa_max_abs(dkappa_max_abs);
bool is_off_road = false;
double minimum_boundary = std::numeric_limits<double>::infinity();
const double adc_half_width =
common::VehicleConfigHelper::GetConfig().vehicle_param().width() / 2.0;
const auto& reference_line_path =
reference_line_info.reference_line().GetMapPath();
const auto sample_s = 0.1;
const auto reference_line_length =
reference_line_info.reference_line().Length();
double average_offset = 0.0;
double sample_count = 0.0;
for (double s = 0.0; s < reference_line_length; s += sample_s) {
double left_width = reference_line_path.GetLaneLeftWidth(s);
double right_width = reference_line_path.GetLaneRightWidth(s);
average_offset += 0.5 * std::abs(left_width - right_width);
if (left_width < adc_half_width || right_width < adc_half_width) {
is_off_road = true;
}
if (left_width < minimum_boundary) {
minimum_boundary = left_width;
}
if (right_width < minimum_boundary) {
minimum_boundary = right_width;
}
++sample_count;
}
rl_debug->set_is_offroad(is_off_road);
rl_debug->set_minimum_boundary(minimum_boundary);
rl_debug->set_average_offset(average_offset / sample_count);
}
}
Status OnLanePlanning::Plan(
const double current_time_stamp,
const std::vector<TrajectoryPoint>& stitching_trajectory,
ADCTrajectory* const ptr_trajectory_pb) {
auto* ptr_debug = ptr_trajectory_pb->mutable_debug();
if (FLAGS_enable_record_debug) {
ptr_debug->mutable_planning_data()->mutable_init_point()->CopyFrom(
stitching_trajectory.back());
frame_->mutable_open_space_info()->set_debug(ptr_debug);
frame_->mutable_open_space_info()->sync_debug_instance();
}
auto status = planner_->Plan(stitching_trajectory.back(), frame_.get(),
ptr_trajectory_pb);
ptr_debug->mutable_planning_data()->set_front_clear_distance(
injector_->ego_info()->front_clear_distance());
if (frame_->open_space_info().is_on_open_space_trajectory()) {
frame_->mutable_open_space_info()->sync_debug_instance();
const auto& publishable_trajectory =
frame_->open_space_info().publishable_trajectory_data().first;
const auto& publishable_trajectory_gear =
frame_->open_space_info().publishable_trajectory_data().second;
publishable_trajectory.PopulateTrajectoryProtobuf(ptr_trajectory_pb);
ptr_trajectory_pb->set_gear(publishable_trajectory_gear);
// TODO(QiL): refine engage advice in open space trajectory optimizer.
auto* engage_advice = ptr_trajectory_pb->mutable_engage_advice();
// enable start auto from open_space planner.
if (injector_->vehicle_state()->vehicle_state().driving_mode() !=
Chassis::DrivingMode::Chassis_DrivingMode_COMPLETE_AUTO_DRIVE) {
engage_advice->set_advice(EngageAdvice::READY_TO_ENGAGE);
engage_advice->set_reason(
"Ready to engage when staring with OPEN_SPACE_PLANNER");
} else {
engage_advice->set_advice(EngageAdvice::KEEP_ENGAGED);
engage_advice->set_reason("Keep engage while in parking");
}
// TODO(QiL): refine the export decision in open space info
ptr_trajectory_pb->mutable_decision()
->mutable_main_decision()
->mutable_parking()
->set_status(MainParking::IN_PARKING);
if (FLAGS_enable_record_debug) {
// ptr_debug->MergeFrom(frame_->open_space_info().debug_instance());
frame_->mutable_open_space_info()->RecordDebug(ptr_debug);
ADEBUG << "Open space debug information added!";
// call open space info load debug
// TODO(Runxin): create a new flag to enable openspace chart
ExportOpenSpaceChart(ptr_trajectory_pb->debug(), *ptr_trajectory_pb,
ptr_debug);
}
} else {
const auto* best_ref_info = frame_->FindDriveReferenceLineInfo();
const auto* target_ref_info = frame_->FindTargetReferenceLineInfo();
if (!best_ref_info) {
const std::string msg = "planner failed to make a driving plan";
AERROR << msg;
if (last_publishable_trajectory_) {
last_publishable_trajectory_->Clear();
}
return Status(ErrorCode::PLANNING_ERROR, msg);
}
// Store current frame stitched path for possible speed fallback in next
// frames
DiscretizedPath current_frame_planned_path;
for (const auto& trajectory_point : stitching_trajectory) {
current_frame_planned_path.push_back(trajectory_point.path_point());
}
const auto& best_ref_path = best_ref_info->path_data().discretized_path();
std::copy(best_ref_path.begin() + 1, best_ref_path.end(),
std::back_inserter(current_frame_planned_path));
frame_->set_current_frame_planned_path(current_frame_planned_path);
ptr_debug->MergeFrom(best_ref_info->debug());
if (FLAGS_export_chart) {
ExportOnLaneChart(best_ref_info->debug(), ptr_debug);
} else {
ExportReferenceLineDebug(ptr_debug);
// Export additional ST-chart for failed lane-change speed planning
const auto* failed_ref_info = frame_->FindFailedReferenceLineInfo();
if (failed_ref_info) {
ExportFailedLaneChangeSTChart(failed_ref_info->debug(), ptr_debug);
}
}
ptr_trajectory_pb->mutable_latency_stats()->MergeFrom(
best_ref_info->latency_stats());
// set right of way status
ptr_trajectory_pb->set_right_of_way_status(
best_ref_info->GetRightOfWayStatus());
for (const auto& id : best_ref_info->TargetLaneId()) {
ptr_trajectory_pb->add_lane_id()->CopyFrom(id);
}
for (const auto& id : target_ref_info->TargetLaneId()) {
ptr_trajectory_pb->add_target_lane_id()->CopyFrom(id);
}
ptr_trajectory_pb->set_trajectory_type(best_ref_info->trajectory_type());
if (FLAGS_enable_rss_info) {
*ptr_trajectory_pb->mutable_rss_info() = best_ref_info->rss_info();
}
best_ref_info->ExportDecision(ptr_trajectory_pb->mutable_decision(),
injector_->planning_context());
// Add debug information.
if (FLAGS_enable_record_debug) {
auto* reference_line = ptr_debug->mutable_planning_data()->add_path();
reference_line->set_name("planning_reference_line");
const auto& reference_points =
best_ref_info->reference_line().reference_points();
double s = 0.0;
double prev_x = 0.0;
double prev_y = 0.0;
bool empty_path = true;
for (const auto& reference_point : reference_points) {
auto* path_point = reference_line->add_path_point();
path_point->set_x(reference_point.x());
path_point->set_y(reference_point.y());
path_point->set_theta(reference_point.heading());
path_point->set_kappa(reference_point.kappa());
path_point->set_dkappa(reference_point.dkappa());
if (empty_path) {
path_point->set_s(0.0);
empty_path = false;
} else {
double dx = reference_point.x() - prev_x;
double dy = reference_point.y() - prev_y;
s += std::hypot(dx, dy);
path_point->set_s(s);
}
prev_x = reference_point.x();
prev_y = reference_point.y();
}
}
last_publishable_trajectory_.reset(new PublishableTrajectory(
current_time_stamp, best_ref_info->trajectory()));
ADEBUG << "current_time_stamp: " << current_time_stamp;
last_publishable_trajectory_->PrependTrajectoryPoints(
std::vector<TrajectoryPoint>(stitching_trajectory.begin(),
stitching_trajectory.end() - 1));
last_publishable_trajectory_->PopulateTrajectoryProtobuf(ptr_trajectory_pb);
best_ref_info->ExportEngageAdvice(
ptr_trajectory_pb->mutable_engage_advice(),
injector_->planning_context());
}
return status;
}
bool OnLanePlanning::CheckPlanningConfig(const PlanningConfig& config) {
if (!config.has_standard_planning_config()) {
return false;
}
if (!config.standard_planning_config().has_planner_public_road_config()) {
return false;
}
// TODO(All): check other config params
return true;
}
void PopulateChartOptions(double x_min, double x_max, std::string x_label,
double y_min, double y_max, std::string y_label,
bool display, Chart* chart) {
auto* options = chart->mutable_options();
options->mutable_x()->set_min(x_min);
options->mutable_x()->set_max(x_max);
options->mutable_y()->set_min(y_min);
options->mutable_y()->set_max(y_max);
options->mutable_x()->set_label_string(x_label);
options->mutable_y()->set_label_string(y_label);
options->set_legend_display(display);
}
void AddSTGraph(const STGraphDebug& st_graph, Chart* chart) {
if (st_graph.name() == "DP_ST_SPEED_OPTIMIZER") {
chart->set_title("Speed Heuristic");
} else {
chart->set_title("Planning S-T Graph");
}
PopulateChartOptions(-2.0, 10.0, "t (second)", -10.0, 220.0, "s (meter)",
false, chart);
for (const auto& boundary : st_graph.boundary()) {
// from 'ST_BOUNDARY_TYPE_' to the end
std::string type =
StGraphBoundaryDebug_StBoundaryType_Name(boundary.type()).substr(17);
auto* boundary_chart = chart->add_polygon();
auto* properties = boundary_chart->mutable_properties();
(*properties)["borderWidth"] = "2";
(*properties)["pointRadius"] = "0";
(*properties)["lineTension"] = "0";
(*properties)["cubicInterpolationMode"] = "monotone";
(*properties)["showLine"] = "true";
(*properties)["showText"] = "true";
(*properties)["fill"] = "false";
if (type == "DRIVABLE_REGION") {
(*properties)["color"] = "\"rgba(0, 255, 0, 0.5)\"";
} else {
(*properties)["color"] = "\"rgba(255, 0, 0, 0.8)\"";
}
boundary_chart->set_label(boundary.name() + "_" + type);
for (const auto& point : boundary.point()) {
auto* point_debug = boundary_chart->add_point();
point_debug->set_x(point.t());
point_debug->set_y(point.s());
}
}
auto* speed_profile = chart->add_line();
auto* properties = speed_profile->mutable_properties();
(*properties)["color"] = "\"rgba(255, 255, 255, 0.5)\"";
for (const auto& point : st_graph.speed_profile()) {
auto* point_debug = speed_profile->add_point();
point_debug->set_x(point.t());
point_debug->set_y(point.s());
}
}
void AddSLFrame(const SLFrameDebug& sl_frame, Chart* chart) {
chart->set_title(sl_frame.name());
PopulateChartOptions(0.0, 80.0, "s (meter)", -8.0, 8.0, "l (meter)", false,
chart);
auto* sl_line = chart->add_line();
sl_line->set_label("SL Path");
for (const auto& sl_point : sl_frame.sl_path()) {
auto* point_debug = sl_line->add_point();
point_debug->set_x(sl_point.s());
point_debug->set_x(sl_point.l());
}
}
void AddSpeedPlan(
const ::google::protobuf::RepeatedPtrField<SpeedPlan>& speed_plans,
Chart* chart) {
chart->set_title("Speed Plan");
PopulateChartOptions(0.0, 80.0, "s (meter)", 0.0, 50.0, "v (m/s)", false,
chart);
for (const auto& speed_plan : speed_plans) {
auto* line = chart->add_line();
line->set_label(speed_plan.name());
for (const auto& point : speed_plan.speed_point()) {
auto* point_debug = line->add_point();
point_debug->set_x(point.s());
point_debug->set_y(point.v());
}
// Set chartJS's dataset properties
auto* properties = line->mutable_properties();
(*properties)["borderWidth"] = "2";
(*properties)["pointRadius"] = "0";
(*properties)["fill"] = "false";
(*properties)["showLine"] = "true";
if (speed_plan.name() == "DpStSpeedOptimizer") {
(*properties)["color"] = "\"rgba(27, 249, 105, 0.5)\"";
} else if (speed_plan.name() == "QpSplineStSpeedOptimizer") {
(*properties)["color"] = "\"rgba(54, 162, 235, 1)\"";
}
}
}
void OnLanePlanning::ExportFailedLaneChangeSTChart(
const planning_internal::Debug& debug_info,
planning_internal::Debug* debug_chart) {
const auto& src_data = debug_info.planning_data();
auto* dst_data = debug_chart->mutable_planning_data();
for (const auto& st_graph : src_data.st_graph()) {
AddSTGraph(st_graph, dst_data->add_chart());
}
}
void OnLanePlanning::ExportOnLaneChart(
const planning_internal::Debug& debug_info,
planning_internal::Debug* debug_chart) {
const auto& src_data = debug_info.planning_data();
auto* dst_data = debug_chart->mutable_planning_data();
for (const auto& st_graph : src_data.st_graph()) {
AddSTGraph(st_graph, dst_data->add_chart());
}
for (const auto& sl_frame : src_data.sl_frame()) {
AddSLFrame(sl_frame, dst_data->add_chart());
}
AddSpeedPlan(src_data.speed_plan(), dst_data->add_chart());
}
void OnLanePlanning::ExportOpenSpaceChart(
const planning_internal::Debug& debug_info,
const ADCTrajectory& trajectory_pb, planning_internal::Debug* debug_chart) {
// Export Trajectory Visualization Chart.
if (FLAGS_enable_record_debug) {
AddOpenSpaceOptimizerResult(debug_info, debug_chart);
AddPartitionedTrajectory(debug_info, debug_chart);
AddStitchSpeedProfile(debug_chart);
AddPublishedSpeed(trajectory_pb, debug_chart);
AddPublishedAcceleration(trajectory_pb, debug_chart);
// AddFallbackTrajectory(debug_info, debug_chart);
}
}
void OnLanePlanning::AddOpenSpaceOptimizerResult(
const planning_internal::Debug& debug_info,
planning_internal::Debug* debug_chart) {
// if open space info provider success run
if (!frame_->open_space_info().open_space_provider_success()) {
return;
}
auto chart = debug_chart->mutable_planning_data()->add_chart();
auto open_space_debug = debug_info.planning_data().open_space();
chart->set_title("Open Space Trajectory Optimizer Visualization");
PopulateChartOptions(open_space_debug.xy_boundary(0) - 1.0,
open_space_debug.xy_boundary(1) + 1.0, "x (meter)",
open_space_debug.xy_boundary(2) - 1.0,
open_space_debug.xy_boundary(3) + 1.0, "y (meter)", true,
chart);
chart->mutable_options()->set_sync_xy_window_size(true);
chart->mutable_options()->set_aspect_ratio(0.9);
int obstacle_index = 1;
for (const auto& obstacle : open_space_debug.obstacles()) {
auto* obstacle_outline = chart->add_line();
obstacle_outline->set_label(absl::StrCat("Bdr", obstacle_index));
obstacle_index += 1;
for (int vertice_index = 0;
vertice_index < obstacle.vertices_x_coords_size(); vertice_index++) {
auto* point_debug = obstacle_outline->add_point();
point_debug->set_x(obstacle.vertices_x_coords(vertice_index));
point_debug->set_y(obstacle.vertices_y_coords(vertice_index));
}
// Set chartJS's dataset properties
auto* obstacle_properties = obstacle_outline->mutable_properties();
(*obstacle_properties)["borderWidth"] = "2";
(*obstacle_properties)["pointRadius"] = "0";
(*obstacle_properties)["lineTension"] = "0";
(*obstacle_properties)["fill"] = "false";
(*obstacle_properties)["showLine"] = "true";
}
auto smoothed_trajectory = open_space_debug.smoothed_trajectory();
auto* smoothed_line = chart->add_line();
smoothed_line->set_label("Smooth");
// size_t adc_label = 0;
for (int i = 0; i < smoothed_trajectory.vehicle_motion_point_size() / 2;
i++) {
auto& point = smoothed_trajectory.vehicle_motion_point(i);
const auto x = point.trajectory_point().path_point().x();
const auto y = point.trajectory_point().path_point().y();
// const auto heading = point.trajectory_point().path_point().theta();
/*
// Draw vehicle shape along the trajectory
auto* adc_shape = chart->add_car();
adc_shape->set_x(x);
adc_shape->set_y(y);
adc_shape->set_heading(heading);
adc_shape->set_color("rgba(54, 162, 235, 1)");
adc_shape->set_label(std::to_string(adc_label));
adc_shape->set_hide_label_in_legend(true);
++adc_label;
*/
// Draw vehicle trajectory points
auto* point_debug = smoothed_line->add_point();
point_debug->set_x(x);
point_debug->set_y(y);
}
// Set chartJS's dataset properties
auto* smoothed_properties = smoothed_line->mutable_properties();
(*smoothed_properties)["borderWidth"] = "2";
(*smoothed_properties)["pointRadius"] = "0";
(*smoothed_properties)["lineTension"] = "0";
(*smoothed_properties)["fill"] = "false";
(*smoothed_properties)["showLine"] = "true";
auto warm_start_trajectory = open_space_debug.warm_start_trajectory();
auto* warm_start_line = chart->add_line();
warm_start_line->set_label("WarmStart");
for (int i = 0; i < warm_start_trajectory.vehicle_motion_point_size() / 2;
i++) {
auto* point_debug = warm_start_line->add_point();
auto& point = warm_start_trajectory.vehicle_motion_point(i);
point_debug->set_x(point.trajectory_point().path_point().x());
point_debug->set_y(point.trajectory_point().path_point().y());
}
// Set chartJS's dataset properties
auto* warm_start_properties = warm_start_line->mutable_properties();
(*warm_start_properties)["borderWidth"] = "2";
(*warm_start_properties)["pointRadius"] = "0";
(*warm_start_properties)["lineTension"] = "0";
(*warm_start_properties)["fill"] = "false";
(*warm_start_properties)["showLine"] = "true";
}
void OnLanePlanning::AddPartitionedTrajectory(
const planning_internal::Debug& debug_info,
planning_internal::Debug* debug_chart) {
// if open space info provider success run
if (!frame_->open_space_info().open_space_provider_success()) {
return;
}
const auto& open_space_debug = debug_info.planning_data().open_space();
const auto& chosen_trajectories =
open_space_debug.chosen_trajectory().trajectory();
if (chosen_trajectories.empty() ||
chosen_trajectories[0].trajectory_point().empty()) {
return;
}
const auto& vehicle_state = frame_->vehicle_state();
auto chart = debug_chart->mutable_planning_data()->add_chart();
auto chart_kappa = debug_chart->mutable_planning_data()->add_chart();
auto chart_theta = debug_chart->mutable_planning_data()->add_chart();
chart->set_title("Open Space Partitioned Trajectory");
chart_kappa->set_title("total kappa");
chart_theta->set_title("total theta");
auto* options = chart->mutable_options();
options->mutable_x()->set_label_string("x (meter)");
options->mutable_y()->set_label_string("y (meter)");
options->set_sync_xy_window_size(true);
options->set_aspect_ratio(0.9);
// Draw vehicle state
auto* adc_shape = chart->add_car();
adc_shape->set_x(vehicle_state.x());
adc_shape->set_y(vehicle_state.y());
adc_shape->set_heading(vehicle_state.heading());
adc_shape->set_label("ADV");
adc_shape->set_color("rgba(54, 162, 235, 1)");
// Draw the chosen trajectories
const auto& chosen_trajectory = chosen_trajectories[0];
auto* chosen_line = chart->add_line();
chosen_line->set_label("Chosen");
for (const auto& point : chosen_trajectory.trajectory_point()) {
auto* point_debug = chosen_line->add_point();
point_debug->set_x(point.path_point().x());
point_debug->set_y(point.path_point().y());
}
auto* chosen_properties = chosen_line->mutable_properties();
(*chosen_properties)["borderWidth"] = "2";
(*chosen_properties)["pointRadius"] = "0";
(*chosen_properties)["lineTension"] = "0";
(*chosen_properties)["fill"] = "false";
(*chosen_properties)["showLine"] = "true";
auto* theta_line = chart_theta->add_line();
auto* kappa_line = chart_kappa->add_line();
// Draw partitioned trajectories
size_t partitioned_trajectory_label = 0;
for (const auto& partitioned_trajectory :
open_space_debug.partitioned_trajectories().trajectory()) {
auto* partition_line = chart->add_line();
partition_line->set_label(
absl::StrCat("Partitioned ", partitioned_trajectory_label));
++partitioned_trajectory_label;
for (const auto& point : partitioned_trajectory.trajectory_point()) {
auto* point_debug = partition_line->add_point();
auto* point_theta = theta_line->add_point();
auto* point_kappa = kappa_line->add_point();
point_debug->set_x(point.path_point().x());
point_debug->set_y(point.path_point().y());
point_theta->set_x(point.relative_time());
point_kappa->set_x(point.relative_time());
point_theta->set_y(point.path_point().theta());
point_kappa->set_y(point.path_point().kappa());
}
auto* partition_properties = partition_line->mutable_properties();
(*partition_properties)["borderWidth"] = "2";
(*partition_properties)["pointRadius"] = "0";
(*partition_properties)["lineTension"] = "0";
(*partition_properties)["fill"] = "false";
(*partition_properties)["showLine"] = "true";
SetChartminmax(chart_kappa, "time", "total kappa");
SetChartminmax(chart_theta, "time", "total theta");
}
// Draw trajectory stitching point (line with only one point)
auto* stitching_line = chart->add_line();
stitching_line->set_label("TrajectoryStitchingPoint");
auto* trajectory_stitching_point = stitching_line->add_point();
trajectory_stitching_point->set_x(
open_space_debug.trajectory_stitching_point().path_point().x());
trajectory_stitching_point->set_y(
open_space_debug.trajectory_stitching_point().path_point().y());
// Set chartJS's dataset properties
auto* stitching_properties = stitching_line->mutable_properties();
(*stitching_properties)["borderWidth"] = "3";
(*stitching_properties)["pointRadius"] = "5";
(*stitching_properties)["lineTension"] = "0";
(*stitching_properties)["fill"] = "true";
(*stitching_properties)["showLine"] = "true";
// Draw fallback trajectory compared with the partitioned and potential
// collision_point (line with only one point)
if (open_space_debug.is_fallback_trajectory()) {
auto* collision_line = chart->add_line();
collision_line->set_label("FutureCollisionPoint");
auto* future_collision_point = collision_line->add_point();
future_collision_point->set_x(
open_space_debug.future_collision_point().path_point().x());
future_collision_point->set_y(
open_space_debug.future_collision_point().path_point().y());
// Set chartJS's dataset properties
auto* collision_properties = collision_line->mutable_properties();
(*collision_properties)["borderWidth"] = "3";
(*collision_properties)["pointRadius"] = "8";
(*collision_properties)["lineTension"] = "0";
(*collision_properties)["fill"] = "true";
(*stitching_properties)["showLine"] = "true";
(*stitching_properties)["pointStyle"] = "cross";
const auto& fallback_trajectories =
open_space_debug.fallback_trajectory().trajectory();
if (fallback_trajectories.empty() ||
fallback_trajectories[0].trajectory_point().empty()) {
return;
}
const auto& fallback_trajectory = fallback_trajectories[0];
// has to define chart boundary first
auto* fallback_line = chart->add_line();
fallback_line->set_label("Fallback");
for (const auto& point : fallback_trajectory.trajectory_point()) {
auto* point_debug = fallback_line->add_point();
point_debug->set_x(point.path_point().x());
point_debug->set_y(point.path_point().y());
}
// Set chartJS's dataset properties
auto* fallback_properties = fallback_line->mutable_properties();
(*fallback_properties)["borderWidth"] = "3";
(*fallback_properties)["pointRadius"] = "2";
(*fallback_properties)["lineTension"] = "0";
(*fallback_properties)["fill"] = "false";
(*fallback_properties)["showLine"] = "true";
}
}
void OnLanePlanning::AddStitchSpeedProfile(
planning_internal::Debug* debug_chart) {
if (!injector_->frame_history()->Latest()) {
AINFO << "Planning frame is empty!";
return;
}
// if open space info provider success run
if (!frame_->open_space_info().open_space_provider_success()) {
return;
}
auto chart = debug_chart->mutable_planning_data()->add_chart();
chart->set_title("Open Space Speed Plan Visualization");
auto* options = chart->mutable_options();
// options->mutable_x()->set_mid_value(Clock::NowInSeconds());
double xmin(std::numeric_limits<double>::max()),
xmax(std::numeric_limits<double>::lowest()),
ymin(std::numeric_limits<double>::max()),
ymax(std::numeric_limits<double>::lowest());
// auto smoothed_trajectory = open_space_debug.smoothed_trajectory();
auto* speed_profile = chart->add_line();
speed_profile->set_label("Speed Profile");
const auto& last_trajectory =
injector_->frame_history()->Latest()->current_frame_planned_trajectory();
for (const auto& point : last_trajectory.trajectory_point()) {
auto* point_debug = speed_profile->add_point();
point_debug->set_x(point.relative_time() +
last_trajectory.header().timestamp_sec());
point_debug->set_y(point.v());
if (point_debug->x() > xmax) xmax = point_debug->x();
if (point_debug->x() < xmin) xmin = point_debug->x();
if (point_debug->y() > ymax) ymax = point_debug->y();
if (point_debug->y() < ymin) ymin = point_debug->y();
}
options->mutable_x()->set_window_size(xmax - xmin);
options->mutable_x()->set_label_string("time (s)");
options->mutable_y()->set_min(ymin);
options->mutable_y()->set_max(ymax);
options->mutable_y()->set_label_string("speed (m/s)");
// Set chartJS's dataset properties
auto* speed_profile_properties = speed_profile->mutable_properties();
(*speed_profile_properties)["borderWidth"] = "2";
(*speed_profile_properties)["pointRadius"] = "0";
(*speed_profile_properties)["lineTension"] = "0";
(*speed_profile_properties)["fill"] = "false";
(*speed_profile_properties)["showLine"] = "true";
}
void OnLanePlanning::AddPublishedSpeed(const ADCTrajectory& trajectory_pb,
planning_internal::Debug* debug_chart) {
// if open space info provider success run
if (!frame_->open_space_info().open_space_provider_success()) {
return;
}
auto chart = debug_chart->mutable_planning_data()->add_chart();
chart->set_title("Speed Partition Visualization");
auto* options = chart->mutable_options();
// options->mutable_x()->set_mid_value(Clock::NowInSeconds());
// auto smoothed_trajectory = open_space_debug.smoothed_trajectory();
auto* speed_profile = chart->add_line();
speed_profile->set_label("Speed Profile");
double xmin(std::numeric_limits<double>::max()),
xmax(std::numeric_limits<double>::lowest()),
ymin(std::numeric_limits<double>::max()),
ymax(std::numeric_limits<double>::lowest());
for (const auto& point : trajectory_pb.trajectory_point()) {
auto* point_debug = speed_profile->add_point();
point_debug->set_x(point.relative_time() +
trajectory_pb.header().timestamp_sec());
if (trajectory_pb.gear() == canbus::Chassis::GEAR_DRIVE) {
point_debug->set_y(point.v());
}
if (trajectory_pb.gear() == canbus::Chassis::GEAR_REVERSE) {
point_debug->set_y(-point.v());
}
if (point_debug->x() > xmax) xmax = point_debug->x();
if (point_debug->x() < xmin) xmin = point_debug->x();
if (point_debug->y() > ymax) ymax = point_debug->y();
if (point_debug->y() < ymin) ymin = point_debug->y();
}
options->mutable_x()->set_window_size(xmax - xmin);
options->mutable_x()->set_label_string("time (s)");
options->mutable_y()->set_min(ymin);
options->mutable_y()->set_max(ymax);
options->mutable_y()->set_label_string("speed (m/s)");
// Set chartJS's dataset properties
auto* speed_profile_properties = speed_profile->mutable_properties();
(*speed_profile_properties)["borderWidth"] = "2";
(*speed_profile_properties)["pointRadius"] = "0";
(*speed_profile_properties)["lineTension"] = "0";
(*speed_profile_properties)["fill"] = "false";
(*speed_profile_properties)["showLine"] = "true";
auto* sliding_line = chart->add_line();
sliding_line->set_label("Time");
auto* point_debug_up = sliding_line->add_point();
point_debug_up->set_x(Clock::NowInSeconds());
point_debug_up->set_y(2.1);
auto* point_debug_down = sliding_line->add_point();
point_debug_down->set_x(Clock::NowInSeconds());
point_debug_down->set_y(-1.1);
// Set chartJS's dataset properties
auto* sliding_line_properties = sliding_line->mutable_properties();
(*sliding_line_properties)["borderWidth"] = "2";
(*sliding_line_properties)["pointRadius"] = "0";
(*sliding_line_properties)["lineTension"] = "0";
(*sliding_line_properties)["fill"] = "false";
(*sliding_line_properties)["showLine"] = "true";
}
VehicleState OnLanePlanning::AlignTimeStamp(const VehicleState& vehicle_state,
const double curr_timestamp) const {
// TODO(Jinyun): use the same method in trajectory stitching
// for forward prediction
auto future_xy = injector_->vehicle_state()->EstimateFuturePosition(
curr_timestamp - vehicle_state.timestamp());
VehicleState aligned_vehicle_state = vehicle_state;
aligned_vehicle_state.set_x(future_xy.x());
aligned_vehicle_state.set_y(future_xy.y());
aligned_vehicle_state.set_timestamp(curr_timestamp);
return aligned_vehicle_state;
}
void OnLanePlanning::AddPublishedAcceleration(
const ADCTrajectory& trajectory_pb, planning_internal::Debug* debug) {
// if open space info provider success run
if (!frame_->open_space_info().open_space_provider_success()) {
return;
}
double xmin(std::numeric_limits<double>::max()),
xmax(std::numeric_limits<double>::lowest()),
ymin(std::numeric_limits<double>::max()),
ymax(std::numeric_limits<double>::lowest());
auto chart = debug->mutable_planning_data()->add_chart();
chart->set_title("Acceleration Partition Visualization");
auto* options = chart->mutable_options();
// options->mutable_x()->set_mid_value(Clock::NowInSeconds());
auto* acceleration_profile = chart->add_line();
acceleration_profile->set_label("Acceleration Profile");
for (const auto& point : trajectory_pb.trajectory_point()) {
auto* point_debug = acceleration_profile->add_point();
point_debug->set_x(point.relative_time() +
trajectory_pb.header().timestamp_sec());
if (trajectory_pb.gear() == canbus::Chassis::GEAR_DRIVE)
point_debug->set_y(point.a());
if (trajectory_pb.gear() == canbus::Chassis::GEAR_REVERSE)
point_debug->set_y(-point.a());
if (point_debug->x() > xmax) xmax = point_debug->x();
if (point_debug->x() < xmin) xmin = point_debug->x();
if (point_debug->y() > ymax) ymax = point_debug->y();
if (point_debug->y() < ymin) ymin = point_debug->y();
}
options->mutable_x()->set_window_size(xmax - xmin);
options->mutable_x()->set_label_string("time (s)");
options->mutable_y()->set_min(ymin);
options->mutable_y()->set_max(ymax);
options->mutable_y()->set_label_string("acceleration (m/s)");
// Set chartJS's dataset properties
auto* acceleration_profile_properties =
acceleration_profile->mutable_properties();
(*acceleration_profile_properties)["borderWidth"] = "2";
(*acceleration_profile_properties)["pointRadius"] = "0";
(*acceleration_profile_properties)["lineTension"] = "0";
(*acceleration_profile_properties)["fill"] = "false";
(*acceleration_profile_properties)["showLine"] = "true";
auto* sliding_line = chart->add_line();
sliding_line->set_label("Time");
auto* point_debug_up = sliding_line->add_point();
point_debug_up->set_x(Clock::NowInSeconds());
point_debug_up->set_y(2.1);
auto* point_debug_down = sliding_line->add_point();
point_debug_down->set_x(Clock::NowInSeconds());
point_debug_down->set_y(-1.1);
// Set chartJS's dataset properties
auto* sliding_line_properties = sliding_line->mutable_properties();
(*sliding_line_properties)["borderWidth"] = "2";
(*sliding_line_properties)["pointRadius"] = "0";
(*sliding_line_properties)["lineTension"] = "0";
(*sliding_line_properties)["fill"] = "false";
(*sliding_line_properties)["showLine"] = "true";
}
} // namespace planning
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/planning_component.h
|
/******************************************************************************
* Copyright 2018 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#pragma once
#include <memory>
#include "cyber/class_loader/class_loader.h"
#include "cyber/component/component.h"
#include "cyber/message/raw_message.h"
#include "modules/common_msgs/chassis_msgs/chassis.pb.h"
#include "modules/common_msgs/localization_msgs/localization.pb.h"
#include "modules/common_msgs/perception_msgs/traffic_light_detection.pb.h"
#include "modules/planning/common/message_process.h"
#include "modules/planning/common/planning_gflags.h"
#include "modules/planning/planning_base.h"
#include "modules/planning/proto/learning_data.pb.h"
#include "modules/common_msgs/planning_msgs/pad_msg.pb.h"
#include "modules/common_msgs/planning_msgs/planning.pb.h"
#include "modules/planning/proto/planning_config.pb.h"
#include "modules/common_msgs/prediction_msgs/prediction_obstacle.pb.h"
#include "modules/common_msgs/routing_msgs/routing.pb.h"
#include "modules/common_msgs/storytelling_msgs/story.pb.h"
namespace apollo {
namespace planning {
class PlanningComponent final
: public cyber::Component<prediction::PredictionObstacles, canbus::Chassis,
localization::LocalizationEstimate> {
public:
PlanningComponent() = default;
~PlanningComponent() = default;
public:
bool Init() override;
bool Proc(const std::shared_ptr<prediction::PredictionObstacles>&
prediction_obstacles,
const std::shared_ptr<canbus::Chassis>& chassis,
const std::shared_ptr<localization::LocalizationEstimate>&
localization_estimate) override;
private:
void CheckRerouting();
bool CheckInput();
private:
std::shared_ptr<cyber::Reader<perception::TrafficLightDetection>>
traffic_light_reader_;
std::shared_ptr<cyber::Reader<routing::RoutingResponse>> routing_reader_;
std::shared_ptr<cyber::Reader<planning::PadMessage>> pad_msg_reader_;
std::shared_ptr<cyber::Reader<relative_map::MapMsg>> relative_map_reader_;
std::shared_ptr<cyber::Reader<storytelling::Stories>> story_telling_reader_;
std::shared_ptr<cyber::Writer<ADCTrajectory>> planning_writer_;
std::shared_ptr<cyber::Writer<routing::RoutingRequest>> rerouting_writer_;
std::shared_ptr<cyber::Writer<PlanningLearningData>>
planning_learning_data_writer_;
std::mutex mutex_;
perception::TrafficLightDetection traffic_light_;
routing::RoutingResponse routing_;
planning::PadMessage pad_msg_;
relative_map::MapMsg relative_map_;
storytelling::Stories stories_;
LocalView local_view_;
std::unique_ptr<PlanningBase> planning_base_;
std::shared_ptr<DependencyInjector> injector_;
PlanningConfig config_;
MessageProcess message_process_;
};
CYBER_REGISTER_COMPONENT(PlanningComponent)
} // namespace planning
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/navi_planning.h
|
/******************************************************************************
* Copyright 2018 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#pragma once
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "modules/common/util/future.h"
#include "modules/planning/planner/navi_planner_dispatcher.h"
#include "modules/planning/planner/planner_dispatcher.h"
#include "modules/planning/planning_base.h"
#include "modules/common_msgs/planning_msgs/pad_msg.pb.h"
/**
* @namespace apollo::planning
* @brief apollo::planning
*/
namespace apollo {
namespace planning {
/**
* @class planning
*
* @brief Planning module main class. It processes GPS and IMU as input,
* to generate planning info.
*/
class NaviPlanning : public PlanningBase {
public:
explicit NaviPlanning(const std::shared_ptr<DependencyInjector>& injector)
: PlanningBase(injector) {
planner_dispatcher_ = std::make_unique<NaviPlannerDispatcher>();
}
virtual ~NaviPlanning();
/**
* @brief Planning algorithm name.
*/
std::string Name() const override;
/**
* @brief module initialization function
* @return initialization status
*/
apollo::common::Status Init(const PlanningConfig& config) override;
/**
* @brief main logic of the planning module, runs periodically triggered by
* timer.
*/
void RunOnce(const LocalView& local_view,
ADCTrajectory* const trajectory_pb) override;
apollo::common::Status Plan(
const double current_time_stamp,
const std::vector<common::TrajectoryPoint>& stitching_trajectory,
ADCTrajectory* const trajectory) override;
private:
common::Status InitFrame(const uint32_t sequence_num,
const common::TrajectoryPoint& planning_start_point,
const common::VehicleState& vehicle_state);
bool CheckPlanningConfig(const PlanningConfig& config);
/**
* @brief make driving decisions by received planning pad msg
*/
void ProcessPadMsg(PadMessage::DrivingAction drvie_action);
/**
* @brief get the lane Id of the lane in which the vehicle is located
*/
std::string GetCurrentLaneId();
/**
* @brief get the left neighbors lane info of the lane which the vehicle is
*located
* @lane_info_group output left neighbors info which sorted from near to
*far
*/
void GetLeftNeighborLanesInfo(
std::vector<std::pair<std::string, double>>* const lane_info_group);
/**
* @brief get the right neighbors lane of the lane which the vehicle is
* located
* @lane_info_group output right neighbors info which sorted from near to
*far
*/
void GetRightNeighborLanesInfo(
std::vector<std::pair<std::string, double>>* const lane_info_group);
void ExportReferenceLineDebug(planning_internal::Debug* debug);
class VehicleConfig {
public:
double x_ = 0.0;
double y_ = 0.0;
double theta_ = 0.0;
bool is_valid_ = false;
};
VehicleConfig last_vehicle_config_;
VehicleConfig ComputeVehicleConfigFromLocalization(
const localization::LocalizationEstimate& localization) const;
std::string target_lane_id_;
std::unique_ptr<ReferenceLineProvider> reference_line_provider_;
};
} // namespace planning
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
load("//tools/install:install.bzl", "install", "install_files", "install_src_files")
load("//tools:cpplint.bzl", "cpplint")
load("//third_party/gpus:common.bzl", "if_gpu")
package(default_visibility = ["//visibility:public"])
install(
name = "planning_testdata_install",
data_dest = if_gpu(
"planning-gpu/addition_data",
"planning/addition_data"
),
data = [":planning_testdata"],
)
cc_binary(
name = "libplanning_component.so",
linkshared = True,
linkstatic = True,
deps = [":planning_component_lib"],
)
cc_library(
name = "planning_component_lib",
srcs = ["planning_component.cc"],
hdrs = ["planning_component.h"],
copts = [
"-DMODULE_NAME=\\\"planning\\\"",
],
deps = [
":navi_planning",
":on_lane_planning",
"//cyber",
"//modules/common/adapters:adapter_gflags",
"//modules/common/util:util_tool",
"//modules/common_msgs/localization_msgs:localization_cc_proto",
"//modules/common_msgs/planning_msgs:navigation_cc_proto",
"//modules/common_msgs/perception_msgs:traffic_light_detection_cc_proto",
"//modules/planning/common:history",
"//modules/planning/common:message_process",
"//modules/common_msgs/planning_msgs:planning_cc_proto",
"//modules/common_msgs/prediction_msgs:prediction_obstacle_cc_proto",
"//modules/common_msgs/storytelling_msgs:story_cc_proto",
],
alwayslink = True,
)
cc_library(
name = "planning_base",
srcs = ["planning_base.cc"],
hdrs = ["planning_base.h"],
copts = [
"-fopenmp",
"-DMODULE_NAME=\\\"planning\\\""
],
deps = [
"//cyber",
"//modules/common_msgs/basic_msgs:pnc_point_cc_proto",
"//modules/common_msgs/chassis_msgs:chassis_cc_proto",
"//modules/common_msgs/dreamview_msgs:chart_cc_proto",
"//modules/common_msgs/localization_msgs:localization_cc_proto",
"//modules/common_msgs/perception_msgs:traffic_light_detection_cc_proto",
"//modules/common_msgs/planning_msgs:planning_cc_proto",
"//modules/common_msgs/planning_msgs:planning_internal_cc_proto",
"//modules/common_msgs/prediction_msgs:prediction_obstacle_cc_proto",
"//modules/common_msgs/routing_msgs:routing_cc_proto",
"//modules/common/status",
"//modules/common/vehicle_state:vehicle_state_provider",
"//modules/map/hdmap:hdmap_util",
"//modules/map/hdmap",
"//modules/planning/common:dependency_injector",
"//modules/planning/common:frame",
"//modules/planning/common:local_view",
"//modules/planning/common:planning_context",
"//modules/planning/common:planning_gflags",
"//modules/planning/common/trajectory:publishable_trajectory",
"//modules/planning/planner:planner_dispatcher",
"//modules/planning/planner",
"//modules/planning/proto:planning_config_cc_proto",
"//modules/planning/proto:traffic_rule_config_cc_proto",
"//modules/planning/tasks:task_factory",
],
)
cc_library(
name = "navi_planning",
srcs = ["navi_planning.cc"],
hdrs = ["navi_planning.h"],
copts = [
"-fopenmp",
"-DMODULE_NAME=\\\"planning\\\""
],
deps = [
":planning_base",
"//cyber",
"//modules/common_msgs/planning_msgs:pad_msg_cc_proto",
"//modules/common/math",
"//modules/common/util:util_tool",
"//modules/common/vehicle_state:vehicle_state_provider",
"//modules/map/hdmap:hdmap_util",
"//modules/planning/common:ego_info",
"//modules/planning/common:history",
"//modules/planning/common:planning_context",
"//modules/planning/common:planning_gflags",
"//modules/planning/common:trajectory_stitcher",
"//modules/planning/common/util:util_lib",
"//modules/planning/planner:planner_dispatcher",
"//modules/planning/planner/navi:navi_planner",
"//modules/planning/planner/rtk:rtk_planner",
"//modules/planning/reference_line:reference_line_provider",
"//modules/planning/traffic_rules:traffic_decider",
"@com_google_protobuf//:protobuf",
],
)
cc_library(
name = "on_lane_planning",
srcs = ["on_lane_planning.cc"],
hdrs = ["on_lane_planning.h"],
copts = [
"-fopenmp",
"-DMODULE_NAME=\\\"planning\\\"",
],
deps = [
":planning_base",
"//cyber",
"//modules/common_msgs/planning_msgs:planning_internal_cc_proto",
"//modules/common_msgs/routing_msgs:routing_cc_proto",
"//modules/common/math",
"//modules/common/vehicle_state:vehicle_state_provider",
"//modules/map/hdmap:hdmap_util",
"//modules/planning/common:ego_info",
"//modules/planning/common:history",
"//modules/planning/common:planning_context",
"//modules/planning/common:planning_gflags",
"//modules/planning/common:trajectory_stitcher",
"//modules/planning/common/smoothers:smoother",
"//modules/planning/common/util:util_lib",
"//modules/planning/learning_based/img_feature_renderer:birdview_img_feature_renderer",
"//modules/planning/planner:planner_dispatcher",
"//modules/planning/planner/rtk:rtk_planner",
"//modules/planning/proto:planning_semantic_map_config_cc_proto",
"//modules/planning/reference_line:reference_line_provider",
"//modules/planning/tasks:task_factory",
"//modules/planning/traffic_rules:traffic_decider",
"@com_google_absl//:absl",
"@com_google_googletest//:gtest_main",
],
)
filegroup(
name = "planning_testdata",
srcs = glob([
"testdata/**",
]),
)
filegroup(
name = "planning_conf",
srcs = glob([
"conf/**",
]),
)
filegroup(
name = "runtime_data",
srcs = glob([
"dag/*.dag",
"launch/*.launch",
]) + [":planning_conf"],
)
install(
name = "install",
data_dest = if_gpu(
"planning-gpu",
"planning"
),
library_dest = if_gpu(
"planning-gpu/lib",
"planning/lib"
),
data = [
":runtime_data",
] + if_gpu(
["planning-gpu.BUILD", "cyberfile_gpu.xml",],
["planning.BUILD", "cyberfile_cpu.xml",]
),
rename= if_gpu(
{"planning-gpu/cyberfile_gpu.xml": "cyberfile.xml"},
{"planning/cyberfile_cpu.xml": "cyberfile.xml"}
),
targets = [
":libplanning_component.so",
],
deps = [
":pb_planning",
":planning_testdata_install",
"//modules/planning/proto:py_pb_planning",
"//modules/planning/proto:pb_hdrs_planning",
],
)
install_files(
name = "pb_planning",
dest = if_gpu(
"planning-gpu",
"planning"
),
files = [
"//modules/planning/proto:auto_tuning_raw_feature_py_pb2",
"//modules/common_msgs/planning_msgs:decision_py_pb2",
"//modules/planning/proto:ipopt_return_status_py_pb2",
"//modules/planning/proto:lattice_structure_py_pb2",
"//modules/planning/proto:learning_data_py_pb2",
"//modules/common_msgs/control_msgs:pad_msg_py_pb2",
"//modules/common_msgs/planning_msgs:planning_internal_py_pb2",
"//modules/common_msgs/planning_msgs:planning_py_pb2",
"//modules/planning/proto:planning_semantic_map_config_py_pb2",
"//modules/planning/proto:planning_stats_py_pb2",
"//modules/planning/proto:planning_status_py_pb2",
"//modules/planning/proto:reference_line_smoother_config_py_pb2",
"//modules/common_msgs/planning_msgs:sl_boundary_py_pb2",
"//modules/planning/proto:st_drivable_boundary_py_pb2",
"//modules/planning/proto:traffic_rule_config_py_pb2",
"//modules/planning/proto/math:cos_theta_smoother_config_py_pb2",
"//modules/planning/proto/math:qp_problem_py_pb2",
],
)
install_src_files(
name = "install_src",
deps = [
":install_planning_src",
":install_planning_hdrs"
],
)
install_src_files(
name = "install_planning_src",
src_dir = ["."],
dest = if_gpu(
"planning-gpu/src",
"planning/src"
),
filter = "*",
)
install_src_files(
name = "install_planning_hdrs",
src_dir = ["."],
dest = if_gpu(
"planning-gpu/include",
"planning/include"
),
filter = "*.h",
)
install(
name = "pb_hdrs",
data_dest = "planning/include",
data = [
"//modules/planning/proto:st_drivable_boundary_py_pb2",
"//modules/planning/proto:planning_stats_py_pb2",
"//modules/planning/proto:planning_semantic_map_config_py_pb2",
"//modules/planning/proto:traffic_rule_config_py_pb2",
"//modules/planning/proto:planning_status_py_pb2",
"//modules/planning/proto:lattice_structure_py_pb2",
"//modules/planning/proto:learning_data_py_pb2",
"//modules/planning/proto:auto_tuning_model_input_py_pb2",
"//modules/planning/proto:auto_tuning_raw_feature_py_pb2",
"//modules/planning/proto:reference_line_smoother_config_py_pb2",
"//modules/planning/proto:ipopt_return_status_py_pb2",
"//modules/planning/proto/math:fem_pos_deviation_smoother_config_py_pb2",
"//modules/planning/proto:open_space_task_config_py_pb2",
"//modules/planning/proto:planner_open_space_config_py_pb2",
"//modules/planning/proto:task_config_py_pb2",
"//modules/planning/proto:planning_config_py_pb2",
],
)
cpplint()
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/planning_base.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/planning_base.h"
#include "cyber/time/clock.h"
#include "modules/common_msgs/planning_msgs/planning_internal.pb.h"
#include "modules/map/hdmap/hdmap_util.h"
#include "modules/planning/common/planning_context.h"
#include "modules/planning/common/planning_gflags.h"
#include "modules/planning/tasks/task_factory.h"
namespace apollo {
namespace planning {
using apollo::common::Status;
PlanningBase::PlanningBase(const std::shared_ptr<DependencyInjector>& injector)
: injector_(injector) {}
PlanningBase::~PlanningBase() {}
Status PlanningBase::Init(const PlanningConfig& config) {
injector_->planning_context()->Init();
TaskFactory::Init(config, injector_);
return Status::OK();
}
void PlanningBase::FillPlanningPb(const double timestamp,
ADCTrajectory* const trajectory_pb) {
trajectory_pb->mutable_header()->set_timestamp_sec(timestamp);
if (local_view_.prediction_obstacles->has_header()) {
trajectory_pb->mutable_header()->set_lidar_timestamp(
local_view_.prediction_obstacles->header().lidar_timestamp());
trajectory_pb->mutable_header()->set_camera_timestamp(
local_view_.prediction_obstacles->header().camera_timestamp());
trajectory_pb->mutable_header()->set_radar_timestamp(
local_view_.prediction_obstacles->header().radar_timestamp());
}
trajectory_pb->mutable_routing_header()->CopyFrom(
local_view_.routing->header());
}
} // namespace planning
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/navi_planning.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/navi_planning.h"
#include <algorithm>
#include <list>
#include <map>
#include "cyber/common/file.h"
#include "cyber/time/clock.h"
#include "google/protobuf/repeated_field.h"
#include "modules/common/math/quaternion.h"
#include "modules/common/vehicle_state/vehicle_state_provider.h"
#include "modules/map/hdmap/hdmap_util.h"
#include "modules/planning/common/ego_info.h"
#include "modules/planning/common/history.h"
#include "modules/planning/common/planning_context.h"
#include "modules/planning/common/planning_gflags.h"
#include "modules/planning/common/trajectory_stitcher.h"
#include "modules/planning/common/util/util.h"
#include "modules/planning/planner/navi/navi_planner.h"
#include "modules/planning/planner/rtk/rtk_replay_planner.h"
#include "modules/planning/reference_line/reference_line_provider.h"
#include "modules/planning/traffic_rules/traffic_decider.h"
namespace apollo {
namespace planning {
using apollo::common::ErrorCode;
using apollo::common::Status;
using apollo::common::TrajectoryPoint;
using apollo::common::VehicleState;
using apollo::common::VehicleStateProvider;
using apollo::cyber::Clock;
using apollo::hdmap::HDMapUtil;
NaviPlanning::~NaviPlanning() {
last_publishable_trajectory_.reset(nullptr);
frame_.reset(nullptr);
planner_.reset(nullptr);
injector_->frame_history()->Clear();
injector_->history()->Clear();
injector_->planning_context()->mutable_planning_status()->Clear();
}
std::string NaviPlanning::Name() const { return "navi_planning"; }
Status NaviPlanning::Init(const PlanningConfig& config) {
config_ = config;
if (!CheckPlanningConfig(config_)) {
return Status(ErrorCode::PLANNING_ERROR,
"planning config error: " + config_.DebugString());
}
PlanningBase::Init(config_);
planner_dispatcher_->Init();
ACHECK(apollo::cyber::common::GetProtoFromFile(
FLAGS_traffic_rule_config_filename, &traffic_rule_configs_))
<< "Failed to load traffic rule config file "
<< FLAGS_traffic_rule_config_filename;
// clear planning history
injector_->history()->Clear();
// clear planning status
injector_->planning_context()->mutable_planning_status()->Clear();
planner_ = planner_dispatcher_->DispatchPlanner(config_, injector_);
if (!planner_) {
return Status(
ErrorCode::PLANNING_ERROR,
"planning is not initialized with config : " + config_.DebugString());
}
return planner_->Init(config_);
}
Status NaviPlanning::InitFrame(const uint32_t sequence_num,
const TrajectoryPoint& planning_start_point,
const VehicleState& vehicle_state) {
frame_.reset(new Frame(sequence_num, local_view_, planning_start_point,
vehicle_state, reference_line_provider_.get()));
std::list<ReferenceLine> reference_lines;
std::list<hdmap::RouteSegments> segments;
if (!reference_line_provider_->GetReferenceLines(&reference_lines,
&segments)) {
const std::string msg = "Failed to create reference line";
AERROR << msg;
return Status(ErrorCode::PLANNING_ERROR, msg);
}
auto status = frame_->Init(
injector_->vehicle_state(), reference_lines, segments,
reference_line_provider_->FutureRouteWaypoints(), injector_->ego_info());
if (!status.ok()) {
AERROR << "failed to init frame:" << status.ToString();
return status;
}
return Status::OK();
}
void NaviPlanning::RunOnce(const LocalView& local_view,
ADCTrajectory* const trajectory_pb) {
local_view_ = local_view;
const double start_timestamp = Clock::NowInSeconds();
// recreate reference line provider in every cycle
hdmap_ = HDMapUtil::BaseMapPtr(*local_view.relative_map);
// Prefer "std::make_unique" to direct use of "new".
// Refer to "https://herbsutter.com/gotw/_102/" for details.
reference_line_provider_ = std::make_unique<ReferenceLineProvider>(
injector_->vehicle_state(), hdmap_, local_view_.relative_map);
// localization
ADEBUG << "Get localization: "
<< local_view_.localization_estimate->DebugString();
// chassis
ADEBUG << "Get chassis: " << local_view_.chassis->DebugString();
Status status = injector_->vehicle_state()->Update(
*local_view_.localization_estimate, *local_view_.chassis);
auto vehicle_config =
ComputeVehicleConfigFromLocalization(*local_view_.localization_estimate);
if (last_vehicle_config_.is_valid_ && vehicle_config.is_valid_) {
auto x_diff_map = vehicle_config.x_ - last_vehicle_config_.x_;
auto y_diff_map = vehicle_config.y_ - last_vehicle_config_.y_;
auto cos_map_veh = std::cos(last_vehicle_config_.theta_);
auto sin_map_veh = std::sin(last_vehicle_config_.theta_);
auto x_diff_veh = cos_map_veh * x_diff_map + sin_map_veh * y_diff_map;
auto y_diff_veh = -sin_map_veh * x_diff_map + cos_map_veh * y_diff_map;
auto theta_diff = vehicle_config.theta_ - last_vehicle_config_.theta_;
TrajectoryStitcher::TransformLastPublishedTrajectory(
x_diff_veh, y_diff_veh, theta_diff, last_publishable_trajectory_.get());
}
last_vehicle_config_ = vehicle_config;
VehicleState vehicle_state = injector_->vehicle_state()->vehicle_state();
// estimate (x, y) at current timestamp
// This estimate is only valid if the current time and vehicle state timestamp
// differs only a small amount (20ms). When the different is too large, the
// estimation is invalid.
DCHECK_GE(start_timestamp, vehicle_state.timestamp());
if (start_timestamp - vehicle_state.timestamp() <
FLAGS_message_latency_threshold) {
auto future_xy = injector_->vehicle_state()->EstimateFuturePosition(
start_timestamp - vehicle_state.timestamp());
vehicle_state.set_x(future_xy.x());
vehicle_state.set_y(future_xy.y());
vehicle_state.set_timestamp(start_timestamp);
}
auto* not_ready = trajectory_pb->mutable_decision()
->mutable_main_decision()
->mutable_not_ready();
if (!status.ok() || !util::IsVehicleStateValid(vehicle_state)) {
const std::string msg = "Update VehicleStateProvider failed";
AERROR << msg;
not_ready->set_reason(msg);
status.Save(trajectory_pb->mutable_header()->mutable_status());
// TODO(all): integrate reverse gear
trajectory_pb->set_gear(canbus::Chassis::GEAR_DRIVE);
FillPlanningPb(start_timestamp, trajectory_pb);
return;
}
const double planning_cycle_time = 1.0 / FLAGS_planning_loop_rate;
std::vector<TrajectoryPoint> stitching_trajectory;
std::string replan_reason;
stitching_trajectory = TrajectoryStitcher::ComputeStitchingTrajectory(
vehicle_state, start_timestamp, planning_cycle_time,
FLAGS_trajectory_stitching_preserved_length, true,
last_publishable_trajectory_.get(), &replan_reason);
const uint32_t frame_num = static_cast<uint32_t>(seq_num_++);
status = InitFrame(frame_num, stitching_trajectory.back(), vehicle_state);
if (!frame_) {
const std::string msg = "Failed to init frame";
AERROR << msg;
not_ready->set_reason(msg);
status.Save(trajectory_pb->mutable_header()->mutable_status());
// TODO(all): integrate reverse gear
trajectory_pb->set_gear(canbus::Chassis::GEAR_DRIVE);
FillPlanningPb(start_timestamp, trajectory_pb);
return;
}
injector_->ego_info()->Update(stitching_trajectory.back(), vehicle_state);
if (FLAGS_enable_record_debug) {
frame_->RecordInputDebug(trajectory_pb->mutable_debug());
}
trajectory_pb->mutable_latency_stats()->set_init_frame_time_ms(
Clock::NowInSeconds() - start_timestamp);
if (!status.ok()) {
AERROR << status.ToString();
if (FLAGS_publish_estop) {
// Because the function "Control::ProduceControlCommand()" checks the
// "estop" signal with the following line (Line 170 in control.cc):
// estop_ = estop_ || trajectory_.estop().is_estop();
// we should add more information to ensure the estop being triggered.
ADCTrajectory estop_trajectory;
EStop* estop = estop_trajectory.mutable_estop();
estop->set_is_estop(true);
estop->set_reason(status.error_message());
status.Save(estop_trajectory.mutable_header()->mutable_status());
// TODO(all): integrate reverse gear
trajectory_pb->set_gear(canbus::Chassis::GEAR_DRIVE);
FillPlanningPb(start_timestamp, &estop_trajectory);
} else {
trajectory_pb->mutable_decision()
->mutable_main_decision()
->mutable_not_ready()
->set_reason(status.ToString());
status.Save(trajectory_pb->mutable_header()->mutable_status());
// TODO(all): integrate reverse gear
trajectory_pb->set_gear(canbus::Chassis::GEAR_DRIVE);
FillPlanningPb(start_timestamp, trajectory_pb);
}
frame_->set_current_frame_planned_trajectory(*trajectory_pb);
auto seq_num = frame_->SequenceNum();
injector_->frame_history()->Add(seq_num, std::move(frame_));
return;
}
// Use planning pad message to make driving decisions
if (FLAGS_enable_planning_pad_msg) {
const auto& pad_msg_driving_action = frame_->GetPadMsgDrivingAction();
ProcessPadMsg(pad_msg_driving_action);
}
for (auto& ref_line_info : *frame_->mutable_reference_line_info()) {
TrafficDecider traffic_decider;
traffic_decider.Init(traffic_rule_configs_);
auto traffic_status =
traffic_decider.Execute(frame_.get(), &ref_line_info, injector_);
if (!traffic_status.ok() || !ref_line_info.IsDrivable()) {
ref_line_info.SetDrivable(false);
AWARN << "Reference line " << ref_line_info.Lanes().Id()
<< " traffic decider failed";
continue;
}
}
status = Plan(start_timestamp, stitching_trajectory, trajectory_pb);
const auto time_diff_ms =
(Clock::NowInSeconds() - start_timestamp) * 1000;
ADEBUG << "total planning time spend: " << time_diff_ms << " ms.";
trajectory_pb->mutable_latency_stats()->set_total_time_ms(time_diff_ms);
ADEBUG << "Planning latency: "
<< trajectory_pb->latency_stats().DebugString();
auto* ref_line_task =
trajectory_pb->mutable_latency_stats()->add_task_stats();
ref_line_task->set_time_ms(reference_line_provider_->LastTimeDelay() *
1000.0);
ref_line_task->set_name("ReferenceLineProvider");
if (!status.ok()) {
status.Save(trajectory_pb->mutable_header()->mutable_status());
AERROR << "Planning failed:" << status.ToString();
if (FLAGS_publish_estop) {
AERROR << "Planning failed and set estop";
// Because the function "Control::ProduceControlCommand()" checks the
// "estop" signal with the following line (Line 170 in control.cc):
// estop_ = estop_ || trajectory_.estop().is_estop();
// we should add more information to ensure the estop being triggered.
EStop* estop = trajectory_pb->mutable_estop();
estop->set_is_estop(true);
estop->set_reason(status.error_message());
}
}
trajectory_pb->set_is_replan(stitching_trajectory.size() == 1);
// TODO(all): integrate reverse gear
trajectory_pb->set_gear(canbus::Chassis::GEAR_DRIVE);
FillPlanningPb(start_timestamp, trajectory_pb);
ADEBUG << "Planning pb:" << trajectory_pb->header().DebugString();
auto seq_num = frame_->SequenceNum();
injector_->frame_history()->Add(seq_num, std::move(frame_));
}
void NaviPlanning::ProcessPadMsg(PadMessage::DrivingAction drvie_action) {
if (config_.has_navigation_planning_config()) {
std::map<std::string, uint32_t> lane_id_to_priority;
auto& ref_line_info_group = *frame_->mutable_reference_line_info();
if (drvie_action != PadMessage::NONE) {
using LaneInfoPair = std::pair<std::string, double>;
std::string current_lane_id;
switch (drvie_action) {
case PadMessage::FOLLOW: {
AINFO << "Received follow drive action";
std::string current_lane_id = GetCurrentLaneId();
if (!current_lane_id.empty()) {
target_lane_id_ = current_lane_id;
}
break;
}
case PadMessage::CHANGE_LEFT: {
AINFO << "Received change left lane drive action";
std::vector<LaneInfoPair> lane_info_group;
GetLeftNeighborLanesInfo(&lane_info_group);
if (!lane_info_group.empty()) {
target_lane_id_ = lane_info_group.front().first;
}
break;
}
case PadMessage::CHANGE_RIGHT: {
AINFO << "Received change right lane drive action";
std::vector<LaneInfoPair> lane_info_group;
GetRightNeighborLanesInfo(&lane_info_group);
if (!lane_info_group.empty()) {
target_lane_id_ = lane_info_group.front().first;
}
break;
}
case PadMessage::PULL_OVER: {
AINFO << "Received pull over drive action";
// to do
break;
}
case PadMessage::STOP: {
AINFO << "Received stop drive action";
// to do
break;
}
default: {
AWARN << "Received undefined drive action.";
break;
}
}
}
if (!target_lane_id_.empty()) {
static constexpr uint32_t KTargetRefLinePriority = 0;
static constexpr uint32_t kOtherRefLinePriority = 10;
for (auto& ref_line_info : ref_line_info_group) {
auto lane_id = ref_line_info.Lanes().Id();
ADEBUG << "lane_id : " << lane_id;
lane_id_to_priority[lane_id] = kOtherRefLinePriority;
if (lane_id == target_lane_id_) {
lane_id_to_priority[lane_id] = KTargetRefLinePriority;
ADEBUG << "target lane_id : " << lane_id;
}
}
frame_->UpdateReferenceLinePriority(lane_id_to_priority);
}
}
// other planner to do
}
std::string NaviPlanning::GetCurrentLaneId() {
auto& ref_line_info_group = *frame_->mutable_reference_line_info();
const auto& vehicle_state = frame_->vehicle_state();
common::math::Vec2d adc_position(vehicle_state.x(), vehicle_state.y());
std::string current_lane_id;
for (auto& ref_line_info : ref_line_info_group) {
auto lane_id = ref_line_info.Lanes().Id();
auto& ref_line = ref_line_info.reference_line();
if (ref_line.IsOnLane(adc_position)) {
current_lane_id = lane_id;
}
}
return current_lane_id;
}
void NaviPlanning::GetLeftNeighborLanesInfo(
std::vector<std::pair<std::string, double>>* const lane_info_group) {
auto& ref_line_info_group = *frame_->mutable_reference_line_info();
const auto& vehicle_state = frame_->vehicle_state();
for (auto& ref_line_info : ref_line_info_group) {
common::math::Vec2d adc_position(vehicle_state.x(), vehicle_state.y());
auto& ref_line = ref_line_info.reference_line();
if (ref_line.IsOnLane(adc_position)) {
continue;
}
auto lane_id = ref_line_info.Lanes().Id();
auto ref_point =
ref_line.GetReferencePoint(vehicle_state.x(), vehicle_state.y());
double y = ref_point.y();
// in FLU positive on the left
if (y > 0.0) {
lane_info_group->emplace_back(lane_id, y);
}
}
// sort neighbor lanes from near to far
using LaneInfoPair = std::pair<std::string, double>;
std::sort(lane_info_group->begin(), lane_info_group->end(),
[](const LaneInfoPair& left, const LaneInfoPair& right) {
return left.second < right.second;
});
}
void NaviPlanning::GetRightNeighborLanesInfo(
std::vector<std::pair<std::string, double>>* const lane_info_group) {
auto& ref_line_info_group = *frame_->mutable_reference_line_info();
const auto& vehicle_state = frame_->vehicle_state();
for (auto& ref_line_info : ref_line_info_group) {
common::math::Vec2d adc_position(vehicle_state.x(), vehicle_state.y());
auto& ref_line = ref_line_info.reference_line();
if (ref_line.IsOnLane(adc_position)) {
continue;
}
auto lane_id = ref_line_info.Lanes().Id();
auto ref_point =
ref_line.GetReferencePoint(vehicle_state.x(), vehicle_state.y());
double y = ref_point.y();
// in FLU negative on the right
if (y < 0.0) {
lane_info_group->emplace_back(lane_id, y);
}
}
// sort neighbor lanes from near to far
using LaneInfoPair = std::pair<std::string, double>;
std::sort(lane_info_group->begin(), lane_info_group->end(),
[](const LaneInfoPair& left, const LaneInfoPair& right) {
return left.second > right.second;
});
}
void NaviPlanning::ExportReferenceLineDebug(planning_internal::Debug* debug) {
if (!FLAGS_enable_record_debug) {
return;
}
for (auto& reference_line_info : *frame_->mutable_reference_line_info()) {
auto rl_debug = debug->mutable_planning_data()->add_reference_line();
rl_debug->set_id(reference_line_info.Lanes().Id());
rl_debug->set_length(reference_line_info.reference_line().Length());
rl_debug->set_cost(reference_line_info.Cost());
rl_debug->set_is_change_lane_path(reference_line_info.IsChangeLanePath());
rl_debug->set_is_drivable(reference_line_info.IsDrivable());
rl_debug->set_is_protected(reference_line_info.GetRightOfWayStatus() ==
ADCTrajectory::PROTECTED);
}
}
Status NaviPlanning::Plan(
const double current_time_stamp,
const std::vector<TrajectoryPoint>& stitching_trajectory,
ADCTrajectory* const trajectory_pb) {
auto* ptr_debug = trajectory_pb->mutable_debug();
if (FLAGS_enable_record_debug) {
ptr_debug->mutable_planning_data()->mutable_init_point()->CopyFrom(
stitching_trajectory.back());
}
auto status =
planner_->Plan(stitching_trajectory.back(), frame_.get(), trajectory_pb);
ExportReferenceLineDebug(ptr_debug);
const auto* best_ref_info = frame_->FindDriveReferenceLineInfo();
if (!best_ref_info) {
const std::string msg = "planner failed to make a driving plan";
AERROR << msg;
if (last_publishable_trajectory_) {
last_publishable_trajectory_->Clear();
}
return Status(ErrorCode::PLANNING_ERROR, msg);
}
ptr_debug->MergeFrom(best_ref_info->debug());
trajectory_pb->mutable_latency_stats()->MergeFrom(
best_ref_info->latency_stats());
// set right of way status
trajectory_pb->set_right_of_way_status(best_ref_info->GetRightOfWayStatus());
for (const auto& id : best_ref_info->TargetLaneId()) {
trajectory_pb->add_lane_id()->CopyFrom(id);
}
best_ref_info->ExportDecision(trajectory_pb->mutable_decision(),
injector_->planning_context());
// Add debug information.
if (FLAGS_enable_record_debug) {
auto* reference_line = ptr_debug->mutable_planning_data()->add_path();
reference_line->set_name("planning_reference_line");
const auto& reference_points =
best_ref_info->reference_line().reference_points();
double s = 0.0;
double prev_x = 0.0;
double prev_y = 0.0;
bool empty_path = true;
for (const auto& reference_point : reference_points) {
auto* path_point = reference_line->add_path_point();
path_point->set_x(reference_point.x());
path_point->set_y(reference_point.y());
path_point->set_theta(reference_point.heading());
path_point->set_kappa(reference_point.kappa());
path_point->set_dkappa(reference_point.dkappa());
if (empty_path) {
path_point->set_s(0.0);
empty_path = false;
} else {
double dx = reference_point.x() - prev_x;
double dy = reference_point.y() - prev_y;
s += std::hypot(dx, dy);
path_point->set_s(s);
}
prev_x = reference_point.x();
prev_y = reference_point.y();
}
}
last_publishable_trajectory_.reset(new PublishableTrajectory(
current_time_stamp, best_ref_info->trajectory()));
ADEBUG << "current_time_stamp: " << current_time_stamp;
// Navi Planner doesn't need to stitch the last path planning
// trajectory.Otherwise, it will cause the Dreamview planning track to display
// flashing or bouncing
// TODO(Yifei): remove this if navi-planner doesn't need stitching
/**
if (FLAGS_enable_stitch_last_trajectory) {
last_publishable_trajectory_->PrependTrajectoryPoints(
std::vector<TrajectoryPoint>(stitching_trajectory.begin(),
stitching_trajectory.end() - 1));
}
**/
for (size_t i = 0; i < last_publishable_trajectory_->NumOfPoints(); ++i) {
if (last_publishable_trajectory_->TrajectoryPointAt(i).relative_time() >
FLAGS_trajectory_time_high_density_period) {
break;
}
ADEBUG << last_publishable_trajectory_->TrajectoryPointAt(i)
.ShortDebugString();
}
last_publishable_trajectory_->PopulateTrajectoryProtobuf(trajectory_pb);
best_ref_info->ExportEngageAdvice(trajectory_pb->mutable_engage_advice(),
injector_->planning_context());
return status;
}
/*void NaviPlanning::Stop() {
AWARN << "Planning Stop is called";
last_publishable_trajectory_.reset(nullptr);
frame_.reset(nullptr);
planner_.reset(nullptr);
frame_history_->Clear();
injector_->planning()->mutable_planning_status()->Clear();
}*/
NaviPlanning::VehicleConfig NaviPlanning::ComputeVehicleConfigFromLocalization(
const localization::LocalizationEstimate& localization) const {
NaviPlanning::VehicleConfig vehicle_config;
if (!localization.pose().has_position()) {
return vehicle_config;
}
vehicle_config.x_ = localization.pose().position().x();
vehicle_config.y_ = localization.pose().position().y();
const auto& orientation = localization.pose().orientation();
if (localization.pose().has_heading()) {
vehicle_config.theta_ = localization.pose().heading();
} else {
vehicle_config.theta_ = common::math::QuaternionToHeading(
orientation.qw(), orientation.qx(), orientation.qy(), orientation.qz());
}
vehicle_config.is_valid_ = true;
return vehicle_config;
}
bool NaviPlanning::CheckPlanningConfig(const PlanningConfig& config) {
if (!config.has_navigation_planning_config()) {
return false;
}
// TODO(All): check other config params
return true;
}
} // namespace planning
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/planning_component.cc
|
/******************************************************************************
* Copyright 2018 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#include "modules/planning/planning_component.h"
#include "cyber/common/file.h"
#include "modules/common/adapters/adapter_gflags.h"
#include "modules/common/configs/config_gflags.h"
#include "modules/common/util/message_util.h"
#include "modules/common/util/util.h"
#include "modules/map/hdmap/hdmap_util.h"
#include "modules/map/pnc_map/pnc_map.h"
#include "modules/planning/common/history.h"
#include "modules/planning/common/planning_context.h"
#include "modules/planning/navi_planning.h"
#include "modules/planning/on_lane_planning.h"
namespace apollo {
namespace planning {
using apollo::cyber::ComponentBase;
using apollo::hdmap::HDMapUtil;
using apollo::perception::TrafficLightDetection;
using apollo::relative_map::MapMsg;
using apollo::routing::RoutingRequest;
using apollo::routing::RoutingResponse;
using apollo::storytelling::Stories;
bool PlanningComponent::Init() {
injector_ = std::make_shared<DependencyInjector>();
if (FLAGS_use_navigation_mode) {
planning_base_ = std::make_unique<NaviPlanning>(injector_);
} else {
planning_base_ = std::make_unique<OnLanePlanning>(injector_);
}
ACHECK(ComponentBase::GetProtoConfig(&config_))
<< "failed to load planning config file "
<< ComponentBase::ConfigFilePath();
if (FLAGS_planning_offline_learning ||
config_.learning_mode() != PlanningConfig::NO_LEARNING) {
if (!message_process_.Init(config_, injector_)) {
AERROR << "failed to init MessageProcess";
return false;
}
}
planning_base_->Init(config_);
routing_reader_ = node_->CreateReader<RoutingResponse>(
config_.topic_config().routing_response_topic(),
[this](const std::shared_ptr<RoutingResponse>& routing) {
AINFO << "Received routing data: run routing callback."
<< routing->header().DebugString();
std::lock_guard<std::mutex> lock(mutex_);
routing_.CopyFrom(*routing);
});
traffic_light_reader_ = node_->CreateReader<TrafficLightDetection>(
config_.topic_config().traffic_light_detection_topic(),
[this](const std::shared_ptr<TrafficLightDetection>& traffic_light) {
ADEBUG << "Received traffic light data: run traffic light callback.";
std::lock_guard<std::mutex> lock(mutex_);
traffic_light_.CopyFrom(*traffic_light);
});
pad_msg_reader_ = node_->CreateReader<PadMessage>(
config_.topic_config().planning_pad_topic(),
[this](const std::shared_ptr<PadMessage>& pad_msg) {
ADEBUG << "Received pad data: run pad callback.";
std::lock_guard<std::mutex> lock(mutex_);
pad_msg_.CopyFrom(*pad_msg);
});
story_telling_reader_ = node_->CreateReader<Stories>(
config_.topic_config().story_telling_topic(),
[this](const std::shared_ptr<Stories>& stories) {
ADEBUG << "Received story_telling data: run story_telling callback.";
std::lock_guard<std::mutex> lock(mutex_);
stories_.CopyFrom(*stories);
});
if (FLAGS_use_navigation_mode) {
relative_map_reader_ = node_->CreateReader<MapMsg>(
config_.topic_config().relative_map_topic(),
[this](const std::shared_ptr<MapMsg>& map_message) {
ADEBUG << "Received relative map data: run relative map callback.";
std::lock_guard<std::mutex> lock(mutex_);
relative_map_.CopyFrom(*map_message);
});
}
planning_writer_ = node_->CreateWriter<ADCTrajectory>(
config_.topic_config().planning_trajectory_topic());
rerouting_writer_ = node_->CreateWriter<RoutingRequest>(
config_.topic_config().routing_request_topic());
planning_learning_data_writer_ = node_->CreateWriter<PlanningLearningData>(
config_.topic_config().planning_learning_data_topic());
return true;
}
bool PlanningComponent::Proc(
const std::shared_ptr<prediction::PredictionObstacles>&
prediction_obstacles,
const std::shared_ptr<canbus::Chassis>& chassis,
const std::shared_ptr<localization::LocalizationEstimate>&
localization_estimate) {
ACHECK(prediction_obstacles != nullptr);
// check and process possible rerouting request
CheckRerouting();
// process fused input data
local_view_.prediction_obstacles = prediction_obstacles;
local_view_.chassis = chassis;
local_view_.localization_estimate = localization_estimate;
{
std::lock_guard<std::mutex> lock(mutex_);
if (!local_view_.routing ||
hdmap::PncMap::IsNewRouting(*local_view_.routing, routing_)) {
local_view_.routing =
std::make_shared<routing::RoutingResponse>(routing_);
}
}
{
std::lock_guard<std::mutex> lock(mutex_);
local_view_.traffic_light =
std::make_shared<TrafficLightDetection>(traffic_light_);
local_view_.relative_map = std::make_shared<MapMsg>(relative_map_);
}
{
std::lock_guard<std::mutex> lock(mutex_);
local_view_.pad_msg = std::make_shared<PadMessage>(pad_msg_);
}
{
std::lock_guard<std::mutex> lock(mutex_);
local_view_.stories = std::make_shared<Stories>(stories_);
}
if (!CheckInput()) {
AERROR << "Input check failed";
return false;
}
if (config_.learning_mode() != PlanningConfig::NO_LEARNING) {
// data process for online training
message_process_.OnChassis(*local_view_.chassis);
message_process_.OnPrediction(*local_view_.prediction_obstacles);
message_process_.OnRoutingResponse(*local_view_.routing);
message_process_.OnStoryTelling(*local_view_.stories);
message_process_.OnTrafficLightDetection(*local_view_.traffic_light);
message_process_.OnLocalization(*local_view_.localization_estimate);
}
// publish learning data frame for RL test
if (config_.learning_mode() == PlanningConfig::RL_TEST) {
PlanningLearningData planning_learning_data;
LearningDataFrame* learning_data_frame =
injector_->learning_based_data()->GetLatestLearningDataFrame();
if (learning_data_frame) {
planning_learning_data.mutable_learning_data_frame()
->CopyFrom(*learning_data_frame);
common::util::FillHeader(node_->Name(), &planning_learning_data);
planning_learning_data_writer_->Write(planning_learning_data);
} else {
AERROR << "fail to generate learning data frame";
return false;
}
return true;
}
ADCTrajectory adc_trajectory_pb;
planning_base_->RunOnce(local_view_, &adc_trajectory_pb);
auto start_time = adc_trajectory_pb.header().timestamp_sec();
common::util::FillHeader(node_->Name(), &adc_trajectory_pb);
// modify trajectory relative time due to the timestamp change in header
const double dt = start_time - adc_trajectory_pb.header().timestamp_sec();
for (auto& p : *adc_trajectory_pb.mutable_trajectory_point()) {
p.set_relative_time(p.relative_time() + dt);
}
planning_writer_->Write(adc_trajectory_pb);
// record in history
auto* history = injector_->history();
history->Add(adc_trajectory_pb);
return true;
}
void PlanningComponent::CheckRerouting() {
auto* rerouting = injector_->planning_context()
->mutable_planning_status()
->mutable_rerouting();
if (!rerouting->need_rerouting()) {
return;
}
common::util::FillHeader(node_->Name(), rerouting->mutable_routing_request());
rerouting->set_need_rerouting(false);
rerouting_writer_->Write(rerouting->routing_request());
}
bool PlanningComponent::CheckInput() {
ADCTrajectory trajectory_pb;
auto* not_ready = trajectory_pb.mutable_decision()
->mutable_main_decision()
->mutable_not_ready();
if (local_view_.localization_estimate == nullptr) {
not_ready->set_reason("localization not ready");
} else if (local_view_.chassis == nullptr) {
not_ready->set_reason("chassis not ready");
} else if (HDMapUtil::BaseMapPtr() == nullptr) {
not_ready->set_reason("map not ready");
} else {
// nothing
}
if (FLAGS_use_navigation_mode) {
if (!local_view_.relative_map->has_header()) {
not_ready->set_reason("relative map not ready");
}
} else {
if (!local_view_.routing->has_header()) {
not_ready->set_reason("routing not ready");
}
}
if (not_ready->has_reason()) {
AERROR << not_ready->reason() << "; skip the planning cycle.";
common::util::FillHeader(node_->Name(), &trajectory_pb);
planning_writer_->Write(trajectory_pb);
return false;
}
return true;
}
} // namespace planning
} // namespace apollo
| 0
|
apollo_public_repos/apollo/modules
|
apollo_public_repos/apollo/modules/planning/planning.BUILD
|
load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "planning",
includes = ["include"],
hdrs = glob(["include/**/*.h"]),
srcs = glob(["lib/**/*.so*"]),
include_prefix = "modules/planning",
strip_include_prefix = "include",
visibility = ["//visibility:public"],
)
| 0
|
apollo_public_repos/apollo/modules/planning
|
apollo_public_repos/apollo/modules/planning/testdata/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/testdata/garage_error.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
0.0, 1496957374.6246, 2.83481834381, 1, 0.00433333337307, 22.0157165527, 13.6751356125, 12.6382980347
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/out_of_map_prediction.pb.txt
|
header {
timestamp_sec: 1502920656.19
module_name: "prediction"
sequence_num: 5977
}
perception_error_code: OK
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/result_out_of_map_0.pb.txt
|
header {
timestamp_sec: 1502920656.46
lidar_timestamp: 0
camera_timestamp: 0
radar_timestamp: 0
status {
error_code: PLANNING_ERROR
msg: "Failed to create reference line"
}
}
gear: GEAR_DRIVE
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 0
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 0.1
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 0.2
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 0.30000000000000004
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 0.4
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 0.5
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 0.6
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 0.7
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 0.79999999999999993
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 0.89999999999999991
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 0.99999999999999989
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 1.0999999999999999
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 1.2
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 1.3
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 1.4000000000000001
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 1.5000000000000002
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 1.6000000000000003
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 1.7000000000000004
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 1.8000000000000005
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 1.9000000000000006
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 2.0000000000000004
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 2.1000000000000005
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 2.2000000000000006
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 2.3000000000000007
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 2.4000000000000008
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 2.5000000000000009
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 2.600000000000001
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 2.7000000000000011
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 2.8000000000000012
}
trajectory_point {
path_point {
x: 586368
y: 4140790
theta: 1.28665083367
s: 0
}
v: 0
a: 0
relative_time: 2.9000000000000012
}
decision {
main_decision {
not_ready {
reason: "PLANNING_ERROR: Failed to create reference line"
}
}
}
routing_header {
timestamp_sec: 1234.5
module_name: "routing"
sequence_num: 1
}
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/1_chassis.pb.txt
|
engine_started: true
engine_rpm: 1137.5
speed_mps: 0.0
odometer_m: 0.0
fuel_range_m: 0
throttle_percentage: 15.0438699722
brake_percentage: 17.9583435059
steering_percentage: -0.617021262646
steering_torque_nm: 0.0
parking_brake: false
driving_mode: EMERGENCY_MODE
error_code: NO_ERROR
gear_location: GEAR_REVERSE
header {
timestamp_sec: 1504387654.53
module_name: "chassis"
sequence_num: 69777
}
signal {
turn_signal: TURN_NONE
horn: false
}
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/result_planning_componnet_stop_obstacle_0.pb.txt
|
header {
}
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/stop_obstacle_chassis.pb.txt
|
engine_started: true
engine_rpm: 0.0
speed_mps: 4.26111125946
odometer_m: 0.0
fuel_range_m: 0
throttle_percentage: 25.1132984161
brake_percentage: 13.4996566772
steering_percentage: -40.872341156
steering_torque_nm: -0.375
parking_brake: false
driving_mode: COMPLETE_AUTO_DRIVE
error_code: NO_ERROR
gear_location: GEAR_DRIVE
header {
timestamp_sec: 1498682816.13
module_name: "chassis"
sequence_num: 170682
}
signal {
turn_signal: TURN_NONE
horn: false
}
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/follow_localization.pb.txt
|
header {
timestamp_sec: 1498682818.12
module_name: "localization"
sequence_num: 170449
}
pose {
position {
x: 586344.823005
y: 4140700.15992
z: -29.1201720927
}
orientation {
qx: -0.0226565262121
qy: -0.00623562072199
qz: -0.122113367359
qw: 0.992237937375
}
linear_velocity {
x: 1.3230187572
y: 5.54160416447
z: 0.00100184507543
}
linear_acceleration {
x: 0.925201735071
y: -0.0895493383409
z: 0.167094726951
}
angular_velocity {
x: -0.00256320731588
y: -0.0083851936552
z: -0.110752945591
}
heading: 1.32550101795
linear_acceleration_vrf {
x: 0.92220474625
y: 0.130421436969
z: 0.156418148316
}
angular_velocity_vrf {
x: -0.0024402792986
y: -0.00393744602125
z: -0.111002873915
}
}
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/garage_localization.pb.txt
|
header {
timestamp_sec: 1498682801.33
module_name: "localization"
sequence_num: 168770
}
pose {
position {
x: 586387.203263
y: 4140676.21271
z: -29.1851183716
}
orientation {
qx: -0.00551346339344
qy: 0.0363995342758
qz: -0.620280830689
qw: -0.783515390216
}
linear_velocity {
x: 0.00149997781434
y: 0.000880812599767
z: -0.00122802127571
}
linear_acceleration {
x: -0.00582869976263
y: 0.0100514010432
z: 0.0235518746941
}
angular_velocity {
x: 0.000998771709994
y: 0.000154125122251
z: 1.03917169376e-05
}
heading: 2.90890211889
linear_acceleration_vrf {
x: 0.00994229889291
y: 0.00712407897059
z: 0.0232399095739
}
angular_velocity_vrf {
x: 0.000377985098552
y: -0.000936068612645
z: -4.80654498315e-05
}
}
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/garage_prediction.pb.txt
|
header {
timestamp_sec: 1502344676.82
module_name: "prediction"
sequence_num: 497
}
prediction_obstacle {
perception_obstacle {
id: 3
position {
x: 586349.62673
y: 4140719.01943
z: 0.0
}
theta: 1.30470070184
velocity {
x: 3.15135438863
y: 7.35316024014
z: 0.0
}
length: 4.0
width: 2.0
height: 1.0
polygon_point {
x: 586349.187858
y: 4140721.21201
z: 0.0
}
polygon_point {
x: 586348.135992
y: 4140717.35279
z: 0.0
}
polygon_point {
x: 586350.065602
y: 4140716.82685
z: 0.0
}
polygon_point {
x: 586351.117468
y: 4140720.68607
z: 0.0
}
tracking_time: 1.0
type: VEHICLE
timestamp: 1501183443.36
}
predicted_period: 3.0
trajectory {
probability: 0.766733459676
trajectory_point {
path_point {
x: 586363.510287
y: 4140769.96115
z: 0.0
theta: 1.3047209778
}
v: 7.99995157016
a: 2.20234333945e-05
relative_time: 0.0
}
trajectory_point {
path_point {
x: 586363.720643
y: 4140770.73299
z: 0.0
theta: 1.30472097782
}
v: 7.9999537725
a: 2.20234333945e-05
relative_time: 0.1
}
trajectory_point {
path_point {
x: 586363.930999
y: 4140771.50484
z: 0.0
theta: 1.30472097798
}
v: 7.99995597485
a: 2.20234333945e-05
relative_time: 0.2
}
trajectory_point {
path_point {
x: 586364.141356
y: 4140772.27668
z: 0.0
theta: 1.30472097771
}
v: 7.99995817719
a: 2.20234333945e-05
relative_time: 0.3
}
trajectory_point {
path_point {
x: 586364.351712
y: 4140773.04852
z: 0.0
theta: 1.30472097802
}
v: 7.99996037953
a: 2.20234333945e-05
relative_time: 0.4
}
trajectory_point {
path_point {
x: 586364.562069
y: 4140773.82037
z: 0.0
theta: 1.30472097762
}
v: 7.99996258188
a: 2.20234333945e-05
relative_time: 0.5
}
trajectory_point {
path_point {
x: 586364.772425
y: 4140774.59221
z: 0.0
theta: 1.30472097805
}
v: 7.99996478422
a: 2.20234333945e-05
relative_time: 0.6
}
trajectory_point {
path_point {
x: 586364.982782
y: 4140775.36406
z: 0.0
theta: 1.30472097766
}
v: 7.99996698656
a: 2.20234333945e-05
relative_time: 0.7
}
trajectory_point {
path_point {
x: 586365.193139
y: 4140776.1359
z: 0.0
theta: 1.30472097796
}
v: 7.99996918891
a: 2.20234333945e-05
relative_time: 0.8
}
trajectory_point {
path_point {
x: 586365.403495
y: 4140776.90775
z: 0.0
theta: 1.30472097783
}
v: 7.99997139125
a: 2.20234333945e-05
relative_time: 0.9
}
trajectory_point {
path_point {
x: 586365.613852
y: 4140777.6796
z: 0.0
theta: 1.30472097786
}
v: 7.99997359359
a: 2.20234333945e-05
relative_time: 1.0
}
trajectory_point {
path_point {
x: 586365.824209
y: 4140778.45144
z: 0.0
theta: 1.30472097786
}
v: 7.99997579594
a: 2.20234333945e-05
relative_time: 1.1
}
trajectory_point {
path_point {
x: 586366.034566
y: 4140779.22329
z: 0.0
theta: 1.30472097776
}
v: 7.99997799828
a: 2.20234333945e-05
relative_time: 1.2
}
trajectory_point {
path_point {
x: 586366.244923
y: 4140779.99513
z: 0.0
theta: 1.3047209779
}
v: 7.99998020062
a: 2.20234333945e-05
relative_time: 1.3
}
trajectory_point {
path_point {
x: 586366.45528
y: 4140780.76698
z: 0.0
theta: 1.30472097779
}
v: 7.99998240297
a: 2.20234333945e-05
relative_time: 1.4
}
trajectory_point {
path_point {
x: 586366.665637
y: 4140781.53883
z: 0.0
theta: 1.30472097795
}
v: 7.99998460531
a: 2.20234333945e-05
relative_time: 1.5
}
trajectory_point {
path_point {
x: 586366.875994
y: 4140782.31067
z: 0.0
theta: 1.30472097768
}
v: 7.99998680765
a: 2.20234333945e-05
relative_time: 1.6
}
trajectory_point {
path_point {
x: 586367.086352
y: 4140783.08252
z: 0.0
theta: 1.30472097799
}
v: 7.99998901
a: 2.20234333945e-05
relative_time: 1.7
}
trajectory_point {
path_point {
x: 586367.296709
y: 4140783.85437
z: 0.0
theta: 1.30472097786
}
v: 7.99999121234
a: 2.20234333945e-05
relative_time: 1.8
}
trajectory_point {
path_point {
x: 586367.507066
y: 4140784.62622
z: 0.0
theta: 1.30472097774
}
v: 7.99999341468
a: 2.20234333945e-05
relative_time: 1.9
}
trajectory_point {
path_point {
x: 586367.717424
y: 4140785.39806
z: 0.0
theta: 1.30472180734
}
v: 7.99999561703
a: 2.20234333945e-05
relative_time: 2.0
}
trajectory_point {
path_point {
x: 586367.92778
y: 4140786.16991
z: 0.0
theta: 1.30472444734
}
v: 7.99999781937
a: 2.20234333945e-05
relative_time: 2.1
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00000002171
a: 2.20234333945e-05
relative_time: 2.2
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00000222406
a: 2.20234333945e-05
relative_time: 2.3
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.0000044264
a: 2.20234333945e-05
relative_time: 2.4
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00000662874
a: 2.20234333945e-05
relative_time: 2.5
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00000883109
a: 2.20234333945e-05
relative_time: 2.6
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00001103343
a: 2.20234333945e-05
relative_time: 2.7
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00001323577
a: 2.20234333945e-05
relative_time: 2.8
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00001543812
a: 2.20234333945e-05
relative_time: 2.9
}
}
}
perception_error_code: OK
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/stop_dest_chassis.pb.txt
|
engine_started: true
engine_rpm: 0.0
speed_mps: 4.42500019073
odometer_m: 0.0
fuel_range_m: 0
throttle_percentage: 15.2880144119
brake_percentage: 18.4710464478
steering_percentage: 3.34042549133
steering_torque_nm: -0.125
parking_brake: false
driving_mode: COMPLETE_AUTO_DRIVE
error_code: NO_ERROR
gear_location: GEAR_DRIVE
header {
timestamp_sec: 1502920656.46
module_name: "chassis"
sequence_num: 98066
}
signal {
turn_signal: TURN_NONE
horn: false
}
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/garage_routing.pb.txt
|
header {
module_name: "routing"
timestamp_sec: 1234.5
sequence_num: 1
}
routing_request {
waypoint {
id: "1_-1"
s: 0.0
pose {
x: 586392.840030
y: 4140673.012320
}
}
waypoint {
id: "1_-1"
s: 153.0
pose {
x: 586367.706490
y: 4140785.357946
}
}
}
road {
passage {
can_exit: true
segment {
id: "1_-1"
start_s: 0.0
end_s: 153.0
}
}
}
measurement {
distance: 153.0
}
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/stop_obstacle_localization.pb.txt
|
header {
timestamp_sec: 1498682816.13
module_name: "localization"
sequence_num: 170250
}
pose {
position {
x: 586343.905893
y: 4140690.05199
z: -29.0700325062
}
orientation {
qx: 0.0218793848621
qy: 0.0118316356348
qz: -0.0449544511197
qw: -0.998679329034
}
linear_velocity {
x: -0.520379744564
y: 4.24401320062
z: -0.0555969195208
}
linear_acceleration {
x: 1.03984377863
y: 1.38496469513
z: -0.163916348384
}
angular_velocity {
x: 0.00449323331444
y: 0.0405418149058
z: -0.346677548288
}
heading: 1.66027769535
linear_acceleration_vrf {
x: 1.15687182905
y: 1.29254925048
z: -0.131281629232
}
angular_velocity_vrf {
x: 0.000624337250885
y: 0.0554569487516
z: -0.344635006096
}
}
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/stop_obstacle_prediction.pb.txt
|
header {
timestamp_sec: 1501948403.8
module_name: "prediction"
sequence_num: 987
}
prediction_obstacle {
perception_obstacle {
id: 1
position {
x: 586347.421246
y: 4140710.92705
z: 0.0
}
theta: 1.16590454051
velocity {
x: 0.0
y: 0.0
z: 0.0
}
length: 4.0
width: 2.0
height: 1.0
polygon_point {
x: 586347.28994
y: 4140713.15926
z: 0.0
}
polygon_point {
x: 586345.714263
y: 4140709.48268
z: 0.0
}
polygon_point {
x: 586347.552553
y: 4140708.69484
z: 0.0
}
polygon_point {
x: 586349.12823
y: 4140712.37142
z: 0.0
}
tracking_time: 1.0
type: UNKNOWN_UNMOVABLE
timestamp: 1501948139.42
}
predicted_period: 3.0
trajectory {
probability: 1.0
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.0
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.1
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.2
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.3
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.4
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.5
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.6
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.7
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.8
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.9
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.0
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.1
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.2
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.3
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.4
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.5
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.6
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.7
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.8
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.9
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.0
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.1
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.2
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.3
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.4
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.5
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.6
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.7
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.8
}
trajectory_point {
path_point {
x: 586347.421246
y: 4140710.92705
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.9
}
}
}
perception_error_code: OK
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/garage_chassis.pb.txt
|
engine_started: true
engine_rpm: 0.0
speed_mps: 0.0
odometer_m: 0.0
fuel_range_m: 0
throttle_percentage: 15.2391853333
brake_percentage: 13.6079959869
steering_percentage: 5.65957450867
steering_torque_nm: -0.3125
parking_brake: false
driving_mode: COMPLETE_MANUAL
error_code: NO_ERROR
gear_location: GEAR_NEUTRAL
header {
timestamp_sec: 1498682801.33
module_name: "chassis"
sequence_num: 169202
}
signal {
turn_signal: TURN_NONE
horn: false
}
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/1_prediction.pb.txt
|
header {
timestamp_sec: 1504387654.44
module_name: "prediction"
sequence_num: 6968
}
prediction_obstacle {
perception_obstacle {
id: 2352
position {
x: 586356.254122
y: 4140742.69084
z: -32.716302122
}
theta: 1.3127155172
velocity {
x: 0.0
y: 0.0
z: 0.0
}
length: 3.4774916172
width: 2.32324767113
height: 2.131295681
polygon_point {
x: 586354.765029
y: 4140741.59108
z: -32.6812234297
}
polygon_point {
x: 586354.809979
y: 4140741.77621
z: -32.6823716237
}
polygon_point {
x: 586355.142576
y: 4140742.92261
z: -32.6908573465
}
polygon_point {
x: 586355.210657
y: 4140743.14737
z: -32.6925938927
}
polygon_point {
x: 586355.718648
y: 4140744.49
z: -32.7055360883
}
polygon_point {
x: 586355.814982
y: 4140744.59822
z: -32.7079837906
}
polygon_point {
x: 586357.650636
y: 4140743.94025
z: -32.754502149
}
polygon_point {
x: 586357.740132
y: 4140743.87187
z: -32.7567684654
}
polygon_point {
x: 586356.740517
y: 4140740.88569
z: -32.7312855144
}
polygon_point {
x: 586355.599238
y: 4140741.0616
z: -32.7023531731
}
tracking_time: 18.210103035
type: UNKNOWN
timestamp: 0.0
}
timestamp: 1504387654.44
predicted_period: 3.0
trajectory {
probability: 0.877589209864
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 0.0
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 0.1
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 0.2
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 0.3
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 0.4
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 0.5
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 0.6
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 0.7
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 0.8
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 0.9
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 1.0
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 1.1
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 1.2
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 1.3
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 1.4
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 1.5
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 1.6
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 1.7
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 1.8
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 1.9
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 2.0
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 2.1
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 2.2
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 2.3
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 2.4
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 2.5
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 2.6
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 2.7
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 2.8
}
trajectory_point {
path_point {
x: 586356.251381
y: 4140742.70724
z: 0.0
theta: 1.31271559016
}
v: 0.0
a: 0.0
relative_time: 2.9
}
}
}
prediction_obstacle {
perception_obstacle {
id: 2353
position {
x: 586352.307493
y: 4140746.66451
z: -32.6478897957
}
theta: 1.31271576293
velocity {
x: 0.0
y: 0.0
z: 0.0
}
length: 1.56693673134
width: 0.464181542397
height: 1.08595764637
polygon_point {
x: 586351.986237
y: 4140746.03716
z: -32.6339457528
}
polygon_point {
x: 586351.982668
y: 4140746.10651
z: -32.633858381
}
polygon_point {
x: 586351.978374
y: 4140746.25322
z: -32.633756119
}
polygon_point {
x: 586351.982642
y: 4140746.32744
z: -32.6338677202
}
polygon_point {
x: 586352.003347
y: 4140746.52463
z: -32.6344016424
}
polygon_point {
x: 586352.271173
y: 4140747.36799
z: -32.6412312461
}
polygon_point {
x: 586352.362485
y: 4140747.39094
z: -32.6435477466
}
polygon_point {
x: 586352.653989
y: 4140747.38323
z: -32.6509392939
}
polygon_point {
x: 586352.630272
y: 4140746.97823
z: -32.6503195613
}
polygon_point {
x: 586352.072438
y: 4140745.9458
z: -32.6361274778
}
polygon_point {
x: 586352.017174
y: 4140745.93072
z: -32.6347254335
}
tracking_time: 18.0100011826
type: UNKNOWN
timestamp: 0.0
}
timestamp: 1504387654.44
predicted_period: 3.0
trajectory {
probability: 1.0
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.0
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.1
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.2
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.3
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.4
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.5
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.6
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.7
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.8
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.9
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.0
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.1
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.2
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.3
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.4
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.5
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.6
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.7
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.8
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.9
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.0
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.1
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.2
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.3
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.4
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.5
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.6
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.7
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.8
}
trajectory_point {
path_point {
x: 586352.307493
y: 4140746.66451
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.9
}
}
}
prediction_obstacle {
perception_obstacle {
id: 2396
position {
x: 586357.272991
y: 4140766.48687
z: -32.1906122891
}
theta: 1.31292314119
velocity {
x: 0.0
y: 0.0
z: 0.0
}
length: 0.299373626709
width: 0.093891620636
height: 0.370222091675
polygon_point {
x: 586357.276586
y: 4140766.33003
z: -32.1906963619
}
polygon_point {
x: 586357.359576
y: 4140766.61766
z: -32.1928137864
}
polygon_point {
x: 586357.269395
y: 4140766.6437
z: -32.1905281848
}
polygon_point {
x: 586357.186406
y: 4140766.35607
z: -32.1884107602
}
tracking_time: 0.0
type: UNKNOWN
timestamp: 0.0
}
timestamp: 1504387654.44
predicted_period: 3.0
trajectory {
probability: 1.0
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.0
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.1
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.2
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.3
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.4
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.5
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.6
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.7
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.8
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 0.9
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.0
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.1
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.2
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.3
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.4
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.5
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.6
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.7
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.8
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 1.9
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.0
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.1
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.2
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.3
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.4
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.5
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.6
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.7
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.8
}
trajectory_point {
path_point {
x: 586357.272991
y: 4140766.48687
z: 0.0
theta: 0.0
}
v: 0.0
a: 0.0
relative_time: 2.9
}
}
}
perception_error_code: OK
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/follow_prediction.pb.txt
|
header {
timestamp_sec: 1502344678.53
module_name: "prediction"
sequence_num: 514
}
prediction_obstacle {
perception_obstacle {
id: 3
position {
x: 586353.202838
y: 4140732.14084
z: 0.0
}
theta: 1.30472127492
velocity {
x: 3.15135438863
y: 7.35316024014
z: 0.0
}
length: 4.0
width: 2.0
height: 1.0
polygon_point {
x: 586352.763921
y: 4140734.33341
z: 0.0
}
polygon_point {
x: 586351.712134
y: 4140730.47417
z: 0.0
}
polygon_point {
x: 586353.641755
y: 4140729.94827
z: 0.0
}
polygon_point {
x: 586354.693542
y: 4140733.80752
z: 0.0
}
tracking_time: 1.0
type: VEHICLE
timestamp: 1501183445.06
}
predicted_period: 3.0
trajectory {
probability: 0.766733459676
trajectory_point {
path_point {
x: 586363.510287
y: 4140769.96115
z: 0.0
theta: 1.3047209778
}
v: 7.99995157016
a: 2.20234333945e-05
relative_time: 0.0
}
trajectory_point {
path_point {
x: 586363.720643
y: 4140770.73299
z: 0.0
theta: 1.30472097782
}
v: 7.9999537725
a: 2.20234333945e-05
relative_time: 0.1
}
trajectory_point {
path_point {
x: 586363.930999
y: 4140771.50484
z: 0.0
theta: 1.30472097798
}
v: 7.99995597485
a: 2.20234333945e-05
relative_time: 0.2
}
trajectory_point {
path_point {
x: 586364.141356
y: 4140772.27668
z: 0.0
theta: 1.30472097771
}
v: 7.99995817719
a: 2.20234333945e-05
relative_time: 0.3
}
trajectory_point {
path_point {
x: 586364.351712
y: 4140773.04852
z: 0.0
theta: 1.30472097802
}
v: 7.99996037953
a: 2.20234333945e-05
relative_time: 0.4
}
trajectory_point {
path_point {
x: 586364.562069
y: 4140773.82037
z: 0.0
theta: 1.30472097762
}
v: 7.99996258188
a: 2.20234333945e-05
relative_time: 0.5
}
trajectory_point {
path_point {
x: 586364.772425
y: 4140774.59221
z: 0.0
theta: 1.30472097805
}
v: 7.99996478422
a: 2.20234333945e-05
relative_time: 0.6
}
trajectory_point {
path_point {
x: 586364.982782
y: 4140775.36406
z: 0.0
theta: 1.30472097766
}
v: 7.99996698656
a: 2.20234333945e-05
relative_time: 0.7
}
trajectory_point {
path_point {
x: 586365.193139
y: 4140776.1359
z: 0.0
theta: 1.30472097796
}
v: 7.99996918891
a: 2.20234333945e-05
relative_time: 0.8
}
trajectory_point {
path_point {
x: 586365.403495
y: 4140776.90775
z: 0.0
theta: 1.30472097783
}
v: 7.99997139125
a: 2.20234333945e-05
relative_time: 0.9
}
trajectory_point {
path_point {
x: 586365.613852
y: 4140777.6796
z: 0.0
theta: 1.30472097786
}
v: 7.99997359359
a: 2.20234333945e-05
relative_time: 1.0
}
trajectory_point {
path_point {
x: 586365.824209
y: 4140778.45144
z: 0.0
theta: 1.30472097786
}
v: 7.99997579594
a: 2.20234333945e-05
relative_time: 1.1
}
trajectory_point {
path_point {
x: 586366.034566
y: 4140779.22329
z: 0.0
theta: 1.30472097776
}
v: 7.99997799828
a: 2.20234333945e-05
relative_time: 1.2
}
trajectory_point {
path_point {
x: 586366.244923
y: 4140779.99513
z: 0.0
theta: 1.3047209779
}
v: 7.99998020062
a: 2.20234333945e-05
relative_time: 1.3
}
trajectory_point {
path_point {
x: 586366.45528
y: 4140780.76698
z: 0.0
theta: 1.30472097779
}
v: 7.99998240297
a: 2.20234333945e-05
relative_time: 1.4
}
trajectory_point {
path_point {
x: 586366.665637
y: 4140781.53883
z: 0.0
theta: 1.30472097795
}
v: 7.99998460531
a: 2.20234333945e-05
relative_time: 1.5
}
trajectory_point {
path_point {
x: 586366.875994
y: 4140782.31067
z: 0.0
theta: 1.30472097768
}
v: 7.99998680765
a: 2.20234333945e-05
relative_time: 1.6
}
trajectory_point {
path_point {
x: 586367.086352
y: 4140783.08252
z: 0.0
theta: 1.30472097799
}
v: 7.99998901
a: 2.20234333945e-05
relative_time: 1.7
}
trajectory_point {
path_point {
x: 586367.296709
y: 4140783.85437
z: 0.0
theta: 1.30472097786
}
v: 7.99999121234
a: 2.20234333945e-05
relative_time: 1.8
}
trajectory_point {
path_point {
x: 586367.507066
y: 4140784.62622
z: 0.0
theta: 1.30472097774
}
v: 7.99999341468
a: 2.20234333945e-05
relative_time: 1.9
}
trajectory_point {
path_point {
x: 586367.717424
y: 4140785.39806
z: 0.0
theta: 1.30472180734
}
v: 7.99999561703
a: 2.20234333945e-05
relative_time: 2.0
}
trajectory_point {
path_point {
x: 586367.92778
y: 4140786.16991
z: 0.0
theta: 1.30472444734
}
v: 7.99999781937
a: 2.20234333945e-05
relative_time: 2.1
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00000002171
a: 2.20234333945e-05
relative_time: 2.2
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00000222406
a: 2.20234333945e-05
relative_time: 2.3
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.0000044264
a: 2.20234333945e-05
relative_time: 2.4
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00000662874
a: 2.20234333945e-05
relative_time: 2.5
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00000883109
a: 2.20234333945e-05
relative_time: 2.6
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00001103343
a: 2.20234333945e-05
relative_time: 2.7
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00001323577
a: 2.20234333945e-05
relative_time: 2.8
}
trajectory_point {
path_point {
x: 586367.936361
y: 4140786.2014
z: 0.0
theta: 1.30472444734
}
v: 8.00001543812
a: 2.20234333945e-05
relative_time: 2.9
}
}
}
perception_error_code: OK
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/out_of_map_localization.pb.txt
|
header {
timestamp_sec: 1502920656.46
module_name: "localization"
sequence_num: 98168
}
pose {
position {
x: 586368.0
y: 4140790.0
z: -29.4437792711
}
orientation {
qx: -0.0183705362837
qy: -0.0228083896321
qz: -0.141161582559
qw: 0.989553287281
}
linear_velocity {
x: 1.27483825735
y: 4.30410215192
z: -0.0719737933875
}
linear_acceleration {
x: -0.305338168846
y: 0.0185947050156
z: 0.302948333827
}
angular_velocity {
x: 0.0197592682212
y: 0.00492437047244
z: 0.0328439277022
}
heading: 1.28665083367
linear_acceleration_vrf {
x: -0.282784695629
y: -0.0767818497207
z: 0.315423868546
}
angular_velocity_vrf {
x: 0.0192325517336
y: 0.00927895368132
z: 0.0322088755546
}
euler_angles {
x: -0.0503704973808
y: 0.0299223773453
z: 1.28665083367
}
}
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/out_of_map_chassis.pb.txt
|
engine_started: true
engine_rpm: 0.0
speed_mps: 4.42500019073
odometer_m: 0.0
fuel_range_m: 0
throttle_percentage: 15.2880144119
brake_percentage: 18.4710464478
steering_percentage: 3.34042549133
steering_torque_nm: -0.125
parking_brake: false
driving_mode: COMPLETE_AUTO_DRIVE
error_code: NO_ERROR
gear_location: GEAR_DRIVE
header {
timestamp_sec: 1502920656.46
module_name: "chassis"
sequence_num: 98066
}
signal {
turn_signal: TURN_NONE
horn: false
}
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/follow_chassis.pb.txt
|
engine_started: true
engine_rpm: 0.0
speed_mps: 5.59999990463
odometer_m: 0.0
fuel_range_m: 0
throttle_percentage: 19.7299156189
brake_percentage: 13.443198204
steering_percentage: -9.68085098267
steering_torque_nm: -0.125
parking_brake: false
driving_mode: COMPLETE_AUTO_DRIVE
error_code: NO_ERROR
gear_location: GEAR_DRIVE
header {
timestamp_sec: 1498682818.12
module_name: "chassis"
sequence_num: 170881
}
signal {
turn_signal: TURN_NONE
horn: false
}
| 0
|
apollo_public_repos/apollo/modules/planning/testdata
|
apollo_public_repos/apollo/modules/planning/testdata/garage_test/1_localization.pb.txt
|
header {
timestamp_sec: 1504387654.54
module_name: "localization"
sequence_num: 76261
}
pose {
position {
x: 586354.030596
y: 4140735.52422
z: -31.6059667105
}
orientation {
qx: -0.0404090426784
qy: 0.0209871273231
qz: -0.129521941468
qw: 0.990530522718
}
linear_velocity {
x: 0.00782728700811
y: -0.00918280190205
z: -0.0039800614284
}
linear_acceleration {
x: 0.0247735825145
y: -0.0757700573061
z: 0.0952269470726
}
angular_velocity {
x: -0.000504004623404
y: -0.00115693066804
z: 0.000281194530964
}
heading: 1.3120887936
linear_acceleration_vrf {
x: 0.0405285594814
y: -0.0748066177448
z: 0.0904677248055
}
angular_velocity_vrf {
x: -0.000196577873601
y: -0.00126684246843
z: 0.000167472072548
}
euler_angles {
x: 0.0312284467472
y: 0.085593843457
z: 1.3120887936
}
}
| 0
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.