dotnet/examples/ManagedCPP/example-Gnomonic.cpp
Go to the documentation of this file.
1 using namespace System;
2 using namespace NETGeographicLib;
3 
5 {
6  try {
7  Geodesic^ geod = gcnew Geodesic(); // WGS84
8  const double lat0 = 48 + 50/60.0, lon0 = 2 + 20/60.0; // Paris
9  Gnomonic^ proj = gcnew Gnomonic(geod);
10  {
11  // Sample forward calculation
12  double lat = 50.9, lon = 1.8; // Calais
13  double x, y;
14  proj->Forward(lat0, lon0, lat, lon, x, y);
15  Console::WriteLine(String::Format("X: {0} Y: {1}", x, y));
16  }
17  {
18  // Sample reverse calculation
19  double x = -38e3, y = 230e3;
20  double lat, lon;
21  proj->Reverse(lat0, lon0, x, y, lat, lon);
22  Console::WriteLine(String::Format("Latitude: {0} Longitude: {1}", lat, lon));
23  }
24  }
25  catch (GeographicErr^ e) {
26  Console::WriteLine(String::Format("Caught exception: {0}", e->Message));
27  return -1;
28  }
29  return 0;
30 }
NETGeographicLib::Gnomonic::Reverse
void Reverse(double lat0, double lon0, double x, double y, [System::Runtime::InteropServices::Out] double% lat, [System::Runtime::InteropServices::Out] double% lon, [System::Runtime::InteropServices::Out] double% azi, [System::Runtime::InteropServices::Out] double% rk)
Definition: dotnet/NETGeographicLib/Gnomonic.cpp:76
e
Array< double, 1, 3 > e(1./3., 0.5, 2.)
NETGeographicLib::Gnomonic
.NET wrapper for GeographicLib::Gnomonic.
Definition: Gnomonic.h:104
x
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy x
Definition: gnuplot_common_settings.hh:12
NETGeographicLib::Gnomonic::Forward
void Forward(double lat0, double lon0, double lat, double lon, [System::Runtime::InteropServices::Out] double% x, [System::Runtime::InteropServices::Out] double% y, [System::Runtime::InteropServices::Out] double% azi, [System::Runtime::InteropServices::Out] double% rk)
Definition: dotnet/NETGeographicLib/Gnomonic.cpp:61
NETGeographicLib::GeographicErr
Exception class for NETGeographicLib.
Definition: NETGeographicLib.h:132
example::lat0
const double lat0
Definition: testGPSFactor.cpp:41
main
int main(array< System::String ^> ^)
Definition: dotnet/examples/ManagedCPP/example-Gnomonic.cpp:4
example::lon0
const double lon0
Definition: testGPSFactor.cpp:41
NETGeographicLib::Geodesic
.NET wrapper for GeographicLib::Geodesic.
Definition: Geodesic.h:170
y
Scalar * y
Definition: level1_cplx_impl.h:124
array
Definition: numpy.h:821
lon
static const double lon
Definition: testGeographicLib.cpp:34
NETGeographicLib
Definition: Accumulator.h:13
lat
static const double lat
Definition: testGeographicLib.cpp:34


gtsam
Author(s):
autogenerated on Thu Jul 4 2024 03:01:20