2
3
4
5
6
7
8
9
10
11
12
13
14
15
16#ifndef UTILS_GOOGLEEARTHKML_H
17#define UTILS_GOOGLEEARTHKML_H
31 const std::vector<
double> &lon,
32 const std::vector<
double> &alt,
33 bool project_to_ground=
true,
34 const std::string &color=
"7f00ffff");
44 const std::vector<std::vector<
double>> &lat,
45 const std::vector<std::vector<
double>> &lon,
46 const std::vector<std::vector<
double>> &alt,
47 const std::vector<std::string> &colors,
48 bool project_to_ground=
true);
Class to propagate CR3BP dynamics in characteristic units.
Definition ConfigurationWriter.cpp:18
void writeKmlFile(const std::string &file, const std::vector< std::vector< double > > &lat, const std::vector< std::vector< double > > &lon, const std::vector< std::vector< double > > &alt, const std::vector< std::string > &colors, bool project_to_ground)
Function to write a full KML file from trajectory data.
Definition googleearthkml.cpp:64
std::string writeTrajectory(const std::vector< double > &lat, const std::vector< double > &lon, const std::vector< double > &alt, bool project_to_ground, const std::string &color)
Function to write a trajectory into a KML file
Definition googleearthkml.cpp:23