Home
last modified time | relevance | path

Searched refs:longfirst (Results 1 – 22 of 22) sorted by relevance

/dports/astro/geographiclib/GeographicLib-1.52/tools/
H A DRhumbSolve.cpp34 bool longfirst) { in LatLonString() argument
42 (longfirst ? lonstr : latstr) + " " + (longfirst ? latstr : lonstr); in LatLonString()
54 longfirst = false; in main() local
74 lat1, lon1, longfirst); in main()
101 longfirst = !longfirst; in main()
203 *output << LatLonString(lat2, lon2, prec, dms, dmssep, longfirst) in main()
210 DMS::DecodeLatLon(slat1, slon1, lat1, lon1, longfirst); in main()
211 DMS::DecodeLatLon(slat2, slon2, lat2, lon2, longfirst); in main()
221 DMS::DecodeLatLon(slat1, slon1, lat1, lon1, longfirst); in main()
224 *output << LatLonString(lat2, lon2, prec, dms, dmssep, longfirst) in main()
H A DGeodSolve.cpp34 bool longfirst) { in LatLonString() argument
42 (longfirst ? lonstr : latstr) + " " + (longfirst ? latstr : lonstr); in LatLonString()
77 longfirst = false, azi2back = false, fraction = false, in main() local
103 lat1, lon1, longfirst); in main()
117 lat1, lon1, longfirst); in main()
133 lat1, lon1, longfirst); in main()
135 lat2, lon2, longfirst); in main()
162 longfirst = !longfirst; in main()
303 DMS::DecodeLatLon(slat1, slon1, lat1, lon1, longfirst); in main()
304 DMS::DecodeLatLon(slat2, slon2, lat2, lon2, longfirst); in main()
[all …]
H A DCartConvert.cpp34 bool localcartesian = false, reverse = false, longfirst = false; in main() local
52 lat0, lon0, longfirst); in main()
72 longfirst = !longfirst; in main()
175 DMS::DecodeLatLon(stra, strb, lat, lon, longfirst); in main()
185 *output << Utility::str(longfirst ? lon : lat, prec + 5) << " " in main()
186 << Utility::str(longfirst ? lat : lon, prec + 5) << " " in main()
H A DGeodesicProj.cpp37 longfirst = false; in main() local
58 lat0, lon0, longfirst); in main()
78 longfirst = !longfirst; in main()
189 DMS::DecodeLatLon(stra, strb, lat, lon, longfirst); in main()
199 *output << Utility::str(longfirst ? lon : lat, prec + 5) << " " in main()
200 << Utility::str(longfirst ? lat : lon, prec + 5) << " " in main()
H A DGeoConvert.cpp37 bool centerp = true, longfirst = false; in main() local
99 longfirst = !longfirst; in main()
193 p.Reset(s, centerp, longfirst); in main()
197 os = p.GeoRepresentation(prec, longfirst); in main()
200 os = p.DMSRepresentation(prec, longfirst, dmssep); in main()
H A DTransverseMercatorProj.cpp36 longfirst = false; in main() local
94 longfirst = !longfirst; in main()
200 DMS::DecodeLatLon(stra, strb, lat, lon, longfirst); in main()
209 *output << Utility::str(longfirst ? lon : lat, prec + 5) << " " in main()
210 << Utility::str(longfirst ? lat : lon, prec + 5) << " " in main()
H A DConicProj.cpp34 bool lcc = false, albers = false, reverse = false, longfirst = false; in main() local
100 longfirst = !longfirst; in main()
211 DMS::DecodeLatLon(stra, strb, lat, lon, longfirst); in main()
219 *output << Utility::str(longfirst ? lon : lat, prec + 5) << " " in main()
220 << Utility::str(longfirst ? lat : lon, prec + 5) << " " in main()
H A DGeoidEval.cpp41 bool northp = false, longfirst = false; in main() local
56 caches, cachew, longfirst); in main()
58 cachen, cachee, longfirst); in main()
70 longfirst = !longfirst; in main()
247 p.Reset(s, true, longfirst); in main()
H A DPlanimeter.cpp38 bool reverse = false, sign = true, polyline = false, longfirst = false; in main() local
64 longfirst = !longfirst; in main()
178 p.Reset(s, true, longfirst); in main()
H A DGravity.cpp34 bool verbose = false, longfirst = false; in main() local
110 longfirst = !longfirst; in main()
252 DMS::DecodeLatLon(stra, strb, lat, lon, longfirst); in main()
H A DMagneticField.cpp33 bool verbose = false, longfirst = false; in main() local
112 longfirst = !longfirst; in main()
301 DMS::DecodeLatLon(stra, strb, lat, lon, longfirst); in main()
/dports/astro/geographiclib/GeographicLib-1.52/src/
H A DGeoCoords.cpp19 void GeoCoords::Reset(const std::string& s, bool centerp, bool longfirst) { in Reset() argument
35 DMS::DecodeLatLon(sa[0], sa[1], _lat, _long, longfirst); in Reset()
62 string GeoCoords::GeoRepresentation(int prec, bool longfirst) const { in GeoRepresentation()
67 real a = longfirst ? _long : _lat; in GeoRepresentation()
68 real b = longfirst ? _lat : _long; in GeoRepresentation()
81 string GeoCoords::DMSRepresentation(int prec, bool longfirst, in DMSRepresentation() argument
84 return DMS::Encode(longfirst ? _long : _lat, unsigned(prec), in DMSRepresentation()
85 longfirst ? DMS::LONGITUDE : DMS::LATITUDE, dmssep) + in DMSRepresentation()
86 " " + DMS::Encode(longfirst ? _lat : _long, unsigned(prec), in DMSRepresentation()
87 longfirst ? DMS::LATITUDE : DMS::LONGITUDE, dmssep); in DMSRepresentation()
H A DDMS.cpp358 bool longfirst) { in DecodeLatLon() argument
365 ia = longfirst ? LONGITUDE : LATITUDE; in DecodeLatLon()
366 ib = longfirst ? LATITUDE : LONGITUDE; in DecodeLatLon()
/dports/astro/geographiclib/GeographicLib-1.52/dotnet/NETGeographicLib/
H A DGeoCoords.cpp45 GeoCoords::GeoCoords(System::String^ s, bool centerp, bool longfirst )
49 …GeoCoords = new GeographicLib::GeoCoords(StringConvert::ManagedToUnmanaged(s), centerp, longfirst);
96 void GeoCoords::Reset( System::String^ s, bool centerp, bool longfirst )
100 m_pGeoCoords->Reset(StringConvert::ManagedToUnmanaged(s), centerp, longfirst);
197 System::String^ GeoCoords::GeoRepresentation(int prec, bool longfirst )
199 return gcnew System::String( m_pGeoCoords->GeoRepresentation(prec, longfirst).c_str() );
203 System::String^ GeoCoords::DMSRepresentation(int prec, bool longfirst,
206 return gcnew System::String( m_pGeoCoords->DMSRepresentation(prec, longfirst, dmssep).c_str() );
H A DGeoCoords.h157 GeoCoords(System::String^ s, bool centerp, bool longfirst );
200 void Reset( System::String^ s, bool centerp, bool longfirst);
337 System::String^ GeoRepresentation(int prec, bool longfirst );
360 System::String^ DMSRepresentation(int prec, bool longfirst,
H A DDMS.cpp39 bool longfirst )
45 StringConvert::ManagedToUnmanaged( dmsb ), llat, llon, longfirst );
H A DDMS.h223 bool longfirst );
/dports/astro/geographiclib/GeographicLib-1.52/include/GeographicLib/
H A DGeoCoords.hpp180 bool centerp = true, bool longfirst = false) in GeoCoords() argument
181 { Reset(s, centerp, longfirst); } in GeoCoords()
224 bool centerp = true, bool longfirst = false);
396 std::string GeoRepresentation(int prec = 0, bool longfirst = false) const;
419 std::string DMSRepresentation(int prec = 0, bool longfirst = false,
H A DDMS.hpp286 bool longfirst = false);
/dports/astro/geographiclib/GeographicLib-1.52/js/types/
H A Dgeographiclib.d.ts32 longfirst?: boolean // default = false
/dports/astro/geographiclib/GeographicLib-1.52/
H A DNEWS554 functions in the GeoCoords class is now called longfirst;
/dports/astro/geographiclib/GeographicLib-1.52/doc/
H A DGeographicLib.dox.in8258 longfirst;