File: example-GeodesicLine3.cpp

package info (click to toggle)
geographiclib 2.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,572 kB
  • sloc: cpp: 27,765; sh: 5,463; makefile: 695; python: 12; ansic: 10
file content (28 lines) | stat: -rw-r--r-- 771 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Example of using the Triaxial::GeodesicLine3 class.

#include <iostream>
#include <iomanip>
#include <exception>
#include <GeographicLib/Triaxial/Geodesic3.hpp>

using namespace std;
using namespace GeographicLib;

int main() {
  try {
    Triaxial::Geodesic3 g(Triaxial::Ellipsoid3::Earth());
    Triaxial::GeodesicLine3 l = g.Line(90, 0, 135);
    // The approximate distance between opposite umbilical points
    double s0 = 20003986;
    int num = 20;
    for (int i = 0; i <= num; ++i) {
      double bet2, omg2, alp2, s12 = i*s0/num;
      l.Position(s12, bet2, omg2, alp2);
      cout << s12 << " " << bet2 << " " << omg2 << " " << alp2 << "\n";
    }
  }
  catch (const exception& e) {
    cerr << "Caught exception: " << e.what() << "\n";
    return 1;
  }
}