ADD: new track message, Entity class and Position class
This commit is contained in:
231
libs/geographiclib/tools/GeodesicProj.cpp
Normal file
231
libs/geographiclib/tools/GeodesicProj.cpp
Normal file
@@ -0,0 +1,231 @@
|
||||
/**
|
||||
* \file GeodesicProj.cpp
|
||||
* \brief Command line utility for geodesic projections
|
||||
*
|
||||
* Copyright (c) Charles Karney (2009-2017) <charles@karney.com> and licensed
|
||||
* under the MIT/X11 License. For more information, see
|
||||
* https://geographiclib.sourceforge.io/
|
||||
*
|
||||
* See the <a href="GeodesicProj.1.html">man page</a> for usage information.
|
||||
**********************************************************************/
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include <fstream>
|
||||
#include <GeographicLib/Geodesic.hpp>
|
||||
#include <GeographicLib/AzimuthalEquidistant.hpp>
|
||||
#include <GeographicLib/CassiniSoldner.hpp>
|
||||
#include <GeographicLib/Gnomonic.hpp>
|
||||
#include <GeographicLib/DMS.hpp>
|
||||
#include <GeographicLib/Utility.hpp>
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
// Squelch warnings about constant conditional expressions and potentially
|
||||
// uninitialized local variables
|
||||
# pragma warning (disable: 4127 4701)
|
||||
#endif
|
||||
|
||||
#include "GeodesicProj.usage"
|
||||
|
||||
int main(int argc, const char* const argv[]) {
|
||||
try {
|
||||
using namespace GeographicLib;
|
||||
typedef Math::real real;
|
||||
Utility::set_digits();
|
||||
bool azimuthal = false, cassini = false, gnomonic = false, reverse = false,
|
||||
longfirst = false;
|
||||
real lat0 = 0, lon0 = 0;
|
||||
real
|
||||
a = Constants::WGS84_a(),
|
||||
f = Constants::WGS84_f();
|
||||
int prec = 6;
|
||||
std::string istring, ifile, ofile, cdelim;
|
||||
char lsep = ';';
|
||||
|
||||
for (int m = 1; m < argc; ++m) {
|
||||
std::string arg(argv[m]);
|
||||
if (arg == "-r")
|
||||
reverse = true;
|
||||
else if (arg == "-c" || arg == "-z" || arg == "-g") {
|
||||
cassini = azimuthal = gnomonic = false;
|
||||
cassini = arg == "-c";
|
||||
azimuthal = arg == "-z";
|
||||
gnomonic = arg == "-g";
|
||||
if (m + 2 >= argc) return usage(1, true);
|
||||
try {
|
||||
DMS::DecodeLatLon(std::string(argv[m + 1]), std::string(argv[m + 2]),
|
||||
lat0, lon0, longfirst);
|
||||
}
|
||||
catch (const std::exception& e) {
|
||||
std::cerr << "Error decoding arguments of " << arg << ": "
|
||||
<< e.what() << "\n";
|
||||
return 1;
|
||||
}
|
||||
m += 2;
|
||||
} else if (arg == "-e") {
|
||||
if (m + 2 >= argc) return usage(1, true);
|
||||
try {
|
||||
a = Utility::val<real>(std::string(argv[m + 1]));
|
||||
f = Utility::fract<real>(std::string(argv[m + 2]));
|
||||
}
|
||||
catch (const std::exception& e) {
|
||||
std::cerr << "Error decoding arguments of -e: " << e.what() << "\n";
|
||||
return 1;
|
||||
}
|
||||
m += 2;
|
||||
} else if (arg == "-w")
|
||||
longfirst = !longfirst;
|
||||
else if (arg == "-p") {
|
||||
if (++m == argc) return usage(1, true);
|
||||
try {
|
||||
prec = Utility::val<int>(std::string(argv[m]));
|
||||
}
|
||||
catch (const std::exception&) {
|
||||
std::cerr << "Precision " << argv[m] << " is not a number\n";
|
||||
return 1;
|
||||
}
|
||||
} else if (arg == "--input-string") {
|
||||
if (++m == argc) return usage(1, true);
|
||||
istring = argv[m];
|
||||
} else if (arg == "--input-file") {
|
||||
if (++m == argc) return usage(1, true);
|
||||
ifile = argv[m];
|
||||
} else if (arg == "--output-file") {
|
||||
if (++m == argc) return usage(1, true);
|
||||
ofile = argv[m];
|
||||
} else if (arg == "--line-separator") {
|
||||
if (++m == argc) return usage(1, true);
|
||||
if (std::string(argv[m]).size() != 1) {
|
||||
std::cerr << "Line separator must be a single character\n";
|
||||
return 1;
|
||||
}
|
||||
lsep = argv[m][0];
|
||||
} else if (arg == "--comment-delimiter") {
|
||||
if (++m == argc) return usage(1, true);
|
||||
cdelim = argv[m];
|
||||
} else if (arg == "--version") {
|
||||
std::cout << argv[0] << ": GeographicLib version "
|
||||
<< GEOGRAPHICLIB_VERSION_STRING << "\n";
|
||||
return 0;
|
||||
} else
|
||||
return usage(!(arg == "-h" || arg == "--help"), arg != "--help");
|
||||
}
|
||||
|
||||
if (!ifile.empty() && !istring.empty()) {
|
||||
std::cerr << "Cannot specify --input-string and --input-file together\n";
|
||||
return 1;
|
||||
}
|
||||
if (ifile == "-") ifile.clear();
|
||||
std::ifstream infile;
|
||||
std::istringstream instring;
|
||||
if (!ifile.empty()) {
|
||||
infile.open(ifile.c_str());
|
||||
if (!infile.is_open()) {
|
||||
std::cerr << "Cannot open " << ifile << " for reading\n";
|
||||
return 1;
|
||||
}
|
||||
} else if (!istring.empty()) {
|
||||
std::string::size_type m = 0;
|
||||
while (true) {
|
||||
m = istring.find(lsep, m);
|
||||
if (m == std::string::npos)
|
||||
break;
|
||||
istring[m] = '\n';
|
||||
}
|
||||
instring.str(istring);
|
||||
}
|
||||
std::istream* input = !ifile.empty() ? &infile :
|
||||
(!istring.empty() ? &instring : &std::cin);
|
||||
|
||||
std::ofstream outfile;
|
||||
if (ofile == "-") ofile.clear();
|
||||
if (!ofile.empty()) {
|
||||
outfile.open(ofile.c_str());
|
||||
if (!outfile.is_open()) {
|
||||
std::cerr << "Cannot open " << ofile << " for writing\n";
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
std::ostream* output = !ofile.empty() ? &outfile : &std::cout;
|
||||
|
||||
if (!(azimuthal || cassini || gnomonic)) {
|
||||
std::cerr << "Must specify \"-z lat0 lon0\" or "
|
||||
<< "\"-c lat0 lon0\" or \"-g lat0 lon0\"\n";
|
||||
return 1;
|
||||
}
|
||||
|
||||
const Geodesic geod(a, f);
|
||||
const CassiniSoldner cs = cassini ?
|
||||
CassiniSoldner(lat0, lon0, geod) : CassiniSoldner(geod);
|
||||
const AzimuthalEquidistant az(geod);
|
||||
const Gnomonic gn(geod);
|
||||
|
||||
// Max precision = 10: 0.1 nm in distance, 10^-15 deg (= 0.11 nm),
|
||||
// 10^-11 sec (= 0.3 nm).
|
||||
prec = std::min(10 + Math::extra_digits(), std::max(0, prec));
|
||||
std::string s, eol, stra, strb, strc;
|
||||
std::istringstream str;
|
||||
int retval = 0;
|
||||
std::cout << std::fixed;
|
||||
while (std::getline(*input, s)) {
|
||||
try {
|
||||
eol = "\n";
|
||||
if (!cdelim.empty()) {
|
||||
std::string::size_type m = s.find(cdelim);
|
||||
if (m != std::string::npos) {
|
||||
eol = " " + s.substr(m) + "\n";
|
||||
s = s.substr(0, m);
|
||||
}
|
||||
}
|
||||
str.clear(); str.str(s);
|
||||
real lat, lon, x, y, azi, rk;
|
||||
if (!(str >> stra >> strb))
|
||||
throw GeographicErr("Incomplete input: " + s);
|
||||
if (reverse) {
|
||||
x = Utility::val<real>(stra);
|
||||
y = Utility::val<real>(strb);
|
||||
} else
|
||||
DMS::DecodeLatLon(stra, strb, lat, lon, longfirst);
|
||||
if (str >> strc)
|
||||
throw GeographicErr("Extraneous input: " + strc);
|
||||
if (reverse) {
|
||||
if (cassini)
|
||||
cs.Reverse(x, y, lat, lon, azi, rk);
|
||||
else if (azimuthal)
|
||||
az.Reverse(lat0, lon0, x, y, lat, lon, azi, rk);
|
||||
else
|
||||
gn.Reverse(lat0, lon0, x, y, lat, lon, azi, rk);
|
||||
*output << Utility::str(longfirst ? lon : lat, prec + 5) << " "
|
||||
<< Utility::str(longfirst ? lat : lon, prec + 5) << " "
|
||||
<< Utility::str(azi, prec + 5) << " "
|
||||
<< Utility::str(rk, prec + 6) << eol;
|
||||
} else {
|
||||
if (cassini)
|
||||
cs.Forward(lat, lon, x, y, azi, rk);
|
||||
else if (azimuthal)
|
||||
az.Forward(lat0, lon0, lat, lon, x, y, azi, rk);
|
||||
else
|
||||
gn.Forward(lat0, lon0, lat, lon, x, y, azi, rk);
|
||||
*output << Utility::str(x, prec) << " "
|
||||
<< Utility::str(y, prec) << " "
|
||||
<< Utility::str(azi, prec + 5) << " "
|
||||
<< Utility::str(rk, prec + 6) << eol;
|
||||
}
|
||||
}
|
||||
catch (const std::exception& e) {
|
||||
*output << "ERROR: " << e.what() << "\n";
|
||||
retval = 1;
|
||||
}
|
||||
}
|
||||
return retval;
|
||||
}
|
||||
catch (const std::exception& e) {
|
||||
std::cerr << "Caught exception: " << e.what() << "\n";
|
||||
return 1;
|
||||
}
|
||||
catch (...) {
|
||||
std::cerr << "Caught unknown exception\n";
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user