Home
last modified time | relevance | path

Searched refs:Geodesic (Results 1 – 25 of 342) sorted by relevance

12345678910>>...14

/dports/astro/geographiclib/GeographicLib-1.52/python/geographiclib/
H A Dgeodesicline.py94 self.caps = (caps | Geodesic.LATITUDE | Geodesic.AZIMUTH |
145 if self.caps & Geodesic.CAP_C1:
148 Geodesic._C1f(eps, self._C1a)
162 if self.caps & Geodesic.CAP_C2:
165 Geodesic._C2f(eps, self._C2a)
195 (self.caps & (Geodesic.OUT_MASK & Geodesic.DISTANCE_IN))):
255 Geodesic.DISTANCE | Geodesic.REDUCEDLENGTH | Geodesic.GEODESICSCALE):
299 if outmask & (Geodesic.REDUCEDLENGTH | Geodesic.GEODESICSCALE):
315 if outmask & Geodesic.AREA:
364 outmask &= Geodesic.OUT_MASK
[all …]
H A Dgeodesic.py85 class Geodesic(object): class
199 m = Geodesic.nA1_//2
249 m = Geodesic.nA2_//2
443 if outmask & (Geodesic.DISTANCE | Geodesic.REDUCEDLENGTH |
447 if outmask & (Geodesic.REDUCEDLENGTH | Geodesic.GEODESICSCALE):
458 if outmask & (Geodesic.REDUCEDLENGTH | Geodesic.GEODESICSCALE):
462 elif outmask & (Geodesic.REDUCEDLENGTH | Geodesic.GEODESICSCALE):
569 if y > -Geodesic.tol1_ and x > -1 - Geodesic.xthresh_:
803 outmask | Geodesic.DISTANCE | Geodesic.REDUCEDLENGTH, C1a, C2a)
1247 if caps & (Geodesic.OUT_MASK & Geodesic.DISTANCE_IN):
[all …]
/dports/astro/geographiclib/GeographicLib-1.52/python/geographiclib/test/
H A Dtest_geodesic.py95 Geodesic.ALL | Geodesic.LONG_UNROLL)
111 Geodesic.ALL | Geodesic.LONG_UNROLL)
126 Geodesic.ALL | Geodesic.LONG_UNROLL)
242 Geodesic.STANDARD | Geodesic.LONG_UNROLL)
280 Geodesic.STANDARD | Geodesic.LONG_UNROLL)
358 Geodesic.STANDARD | Geodesic.LONG_UNROLL)
374 dir = line.Position(1e7, Geodesic.ALL | Geodesic.LONG_UNROLL)
387 dir = line.Position(2e7, Geodesic.ALL | Geodesic.LONG_UNROLL)
410 Geodesic.STANDARD | Geodesic.LONG_UNROLL)
491 inv = Geodesic.WGS84.Inverse(90, 0, 90, 180, Geodesic.ALL)
[all …]
/dports/astro/geographiclib/GeographicLib-1.52/include/GeographicLib/
H A DGeodesicLine.hpp74 friend class Geodesic;
92 void LineInit(const Geodesic& g,
96 GeodesicLine(const Geodesic& g,
102 CAP_NONE = Geodesic::CAP_NONE,
103 CAP_C1 = Geodesic::CAP_C1,
104 CAP_C1p = Geodesic::CAP_C1p,
105 CAP_C2 = Geodesic::CAP_C2,
106 CAP_C3 = Geodesic::CAP_C3,
107 CAP_C4 = Geodesic::CAP_C4,
108 CAP_ALL = Geodesic::CAP_ALL,
[all …]
H A DCassiniSoldner.hpp72 Geodesic _earth;
88 explicit CassiniSoldner(const Geodesic& earth = Geodesic::WGS84());
101 const Geodesic& earth = Geodesic::WGS84());
/dports/astro/geographiclib/GeographicLib-1.52/java/src/test/java/net/sf/geographiclib/
H A DGeodesicTest.java12 new PolygonArea(Geodesic.WGS84, false);
14 new PolygonArea(Geodesic.WGS84, true);
202 Geodesic geod = new Geodesic(6.4e6, -1/150.0); in GeodSolve2()
285 Geodesic geod = new Geodesic(89.8, -1.83); in GeodSolve12()
305 Geodesic geod = new Geodesic(6.4e6, -1/150.0); in GeodSolve15()
314 Geodesic.WGS84.Direct(40, -75, -10, 2e7, in GeodSolve17()
337 Geodesic geod = new Geodesic(6.4e6, 0); in GeodSolve26()
346 Geodesic geod = new Geodesic(6.4e6, 0.1); in GeodSolve28()
379 inv = Geodesic.WGS84.Inverse(0, 0, 0, 180); in GeodSolve33()
387 Geodesic geod = new Geodesic(6.4e6, 0); in GeodSolve33()
[all …]
/dports/astro/geographiclib/GeographicLib-1.52/dotnet/NETGeographicLib/
H A DGeodesic.cpp23 Geodesic::!Geodesic()
33 Geodesic::Geodesic(double a, double f) in Geodesic() function in Geodesic
37 m_pGeodesic = new GeographicLib::Geodesic( a, f ); in Geodesic()
50 Geodesic::Geodesic() in Geodesic() function in Geodesic
54 m_pGeodesic = new GeographicLib::Geodesic( GeographicLib::Geodesic::WGS84() ); in Geodesic()
63 double Geodesic::Direct(double lat1, double lon1, double azi1, double s12,
295 double Geodesic::GenDirect(double lat1, double lon1, double azi1,
297 Geodesic::mask outmask,
441 Geodesic::mask outmask,
465 System::IntPtr^ Geodesic::GetUnmanaged()
[all …]
H A DAzimuthalEquidistant.cpp35 …m_pAzimuthalEquidistant = new GeographicLib::AzimuthalEquidistant( GeographicLib::Geodesic::WGS84(… in AzimuthalEquidistant()
44 AzimuthalEquidistant::AzimuthalEquidistant( Geodesic^ g )
48 const GeographicLib::Geodesic* pGeodesic =
49 reinterpret_cast<const GeographicLib::Geodesic*>(
/dports/science/py-pygeodesy/PyGeodesy-21.9.16/test/
H A DtestRoutes.py17 from geographiclib.geodesic import Geodesic
19 Geodesic = None variable
17169 if Geodesic:
17170 wgs = Geodesic.WGS84
17171 sph = Geodesic(R_M, 0)
17173 w = wgs.Inverse(-41.32, 174.81, 40.96, -5.50, Geodesic.DISTANCE | Geodesic.LONG_UNROLL)
17176 s = sph.Inverse(-41.32, 174.81, 40.96, -5.50, Geodesic.DISTANCE | Geodesic.LONG_UNROLL)
17180 w = wgs.Inverse(40.1, 116.6, 37.6, -122.4, Geodesic.DISTANCE | Geodesic.LONG_UNROLL)
17183 s = sph.Inverse(40.1, 116.6, 37.6, -122.4, Geodesic.DISTANCE | Geodesic.LONG_UNROLL)
17194 … w = wgs.Inverse(40.6, -73.8, 51.6, -0.5, Geodesic.DISTANCE | Geodesic.AREA | Geodesic.LONG_UNROLL)
[all …]
/dports/astro/geographiclib/GeographicLib-1.52/python/doc/
H A Dexamples.rst10 >>> from geographiclib.geodesic import Geodesic
12 >>> geod = Geodesic.WGS84 # define the WGS84 ellipsoid
35 using :meth:`~geographiclib.geodesic.Geodesic.Direct`:
45 >>> g = geod.Inverse(40.6, -73.8, 51.6, -0.5, Geodesic.AREA)
55 :meth:`Geodesic.Line <geographiclib.geodesic.Geodesic.Line>` and
65 ... g = l.Position(s, Geodesic.STANDARD | Geodesic.LONG_UNROLL)
82 The inclusion of Geodesic.LONG_UNROLL in the call to
95 ... Geodesic.LATITUDE | Geodesic.LONGITUDE)
101 ... g = l.ArcPosition(a, Geodesic.LATITUDE |
102 ... Geodesic.LONGITUDE | Geodesic.LONG_UNROLL)
[all …]
H A Dinterface.rst24 Geodesic dictionary
28 :meth:`Geodesic.Direct <geographiclib.geodesic.Geodesic.Direct>`,
29 :meth:`Geodesic.Inverse <geographiclib.geodesic.Geodesic.Inverse>`,
64 * :data:`~geographiclib.geodesic.Geodesic.LONGITUDE`,
66 * :data:`~geographiclib.geodesic.Geodesic.AZIMUTH`,
69 * :data:`~geographiclib.geodesic.Geodesic.STANDARD`, all of the above
70 * :data:`~geographiclib.geodesic.Geodesic.DISTANCE_IN`,
72 * :data:`~geographiclib.geodesic.Geodesic.REDUCEDLENGTH`,
74 * :data:`~geographiclib.geodesic.Geodesic.GEODESICSCALE`,
76 * :data:`~geographiclib.geodesic.Geodesic.AREA`, compute area, *S12*
[all …]
/dports/astro/geographiclib/GeographicLib-1.52/js/doc/
H A D3-examples.md93 defined via the {@link module:GeographicLib/Geodesic.Geodesic Geodesic}
110 var Geodesic = GeographicLib.Geodesic,
122 {@link module:GeographicLib/Geodesic.Geodesic#Inverse
123 Geodesic.Inverse}:
131 {@link module:GeographicLib/Geodesic.Geodesic#Direct
132 Geodesic.Direct}:
155 {@link module:GeographicLib/Geodesic.Geodesic#InverseLine
166 r = l.Position(s, Geodesic.STANDARD | Geodesic.LONG_UNROLL);
201 Geodesic.LATITUDE | Geodesic.LONGITUDE),
209 Geodesic.LONGITUDE | Geodesic.LONG_UNROLL);
[all …]
H A D2-interface.md19 {@link module:GeographicLib/Geodesic.Geodesic#Inverse Geodesic.Direct},
20 {@link module:GeographicLib/Geodesic.Geodesic#Inverse Geodesic.Inverse},
56 * Geodesic.NONE, no capabilities, no output;
58 * Geodesic.LATITUDE, compute latitude, *lat2*;
59 * Geodesic.LONGITUDE, compute longitude, *lon2*;
61 * Geodesic.DISTANCE, compute distance, *s12*;
62 * Geodesic.STANDARD, all of the above;
66 * Geodesic.AREA, compute area, *S12*;
67 * Geodesic.ALL, all of the above;
68 * Geodesic.LONG_UNROLL, unroll longitudes.
[all …]
/dports/astro/geographiclib/GeographicLib-1.52/src/
H A DGnomonic.cpp22 Gnomonic::Gnomonic(const Geodesic& earth) in Gnomonic()
34 Geodesic::AZIMUTH | Geodesic::REDUCEDLENGTH | in Forward()
35 Geodesic::GEODESICSCALE, in Forward()
57 Geodesic::LATITUDE | Geodesic::LONGITUDE | in Reverse()
58 Geodesic::AZIMUTH | Geodesic::DISTANCE_IN | in Reverse()
59 Geodesic::REDUCEDLENGTH | in Reverse()
60 Geodesic::GEODESICSCALE)); in Reverse()
H A DCassiniSoldner.cpp16 CassiniSoldner::CassiniSoldner(const Geodesic& earth) in CassiniSoldner()
19 CassiniSoldner::CassiniSoldner(real lat0, real lon0, const Geodesic& earth) in CassiniSoldner()
25 Geodesic::LATITUDE | Geodesic::LONGITUDE | in Reset()
26 Geodesic::DISTANCE | Geodesic::DISTANCE_IN | in Reset()
27 Geodesic::AZIMUTH); in Reset()
60 GeodesicLine perp(_earth.Line(lat, dlon, azi, Geodesic::GEODESICSCALE)); in Forward()
63 Geodesic::GEODESICSCALE, in Forward()
75 Geodesic::DISTANCE, in Forward()
H A DGeodesicLine.cpp35 void GeodesicLine::LineInit(const Geodesic& g, in LineInit()
82 _A1m1 = Geodesic::A1m1f(eps); in LineInit()
83 Geodesic::C1f(eps, _C1a); in LineInit()
84 _B11 = Geodesic::SinCosSeries(true, _ssig1, _csig1, _C1a, nC1_); in LineInit()
94 Geodesic::C1pf(eps, _C1pa); in LineInit()
97 _A2m1 = Geodesic::A2m1f(eps); in LineInit()
98 Geodesic::C2f(eps, _C2a); in LineInit()
99 _B21 = Geodesic::SinCosSeries(true, _ssig1, _csig1, _C2a, nC2_); in LineInit()
118 GeodesicLine::GeodesicLine(const Geodesic& g, in GeodesicLine()
128 GeodesicLine::GeodesicLine(const Geodesic& g, in GeodesicLine()
[all …]
H A DGeodesic.cpp42 Geodesic::Geodesic(real a, real f) in Geodesic() function in GeographicLib::Geodesic
89 const Geodesic& Geodesic::WGS84() { in WGS84()
94 Math::real Geodesic::SinCosSeries(bool sinp, in SinCosSeries()
947 Math::real Geodesic::A1m1f(real eps) { in A1m1f()
980 void Geodesic::C1f(real eps, real c[]) { in C1f()
1086 void Geodesic::C1pf(real eps, real c[]) { in C1pf()
1192 Math::real Geodesic::A2m1f(real eps) { in A2m1f()
1225 void Geodesic::C2f(real eps, real c[]) { in C2f()
1331 void Geodesic::A3coeff() { in A3coeff()
1433 void Geodesic::C3coeff() { in C3coeff()
[all …]
/dports/astro/geographiclib/GeographicLib-1.52/java/src/main/java/net/sf/geographiclib/
H A DGeodesicLine.java127 public GeodesicLine(Geodesic g, in GeodesicLine()
177 public GeodesicLine(Geodesic g, in GeodesicLine()
189 private void LineInit(Geodesic g, in LineInit()
237 _A1m1 = Geodesic.A1m1f(eps); in LineInit()
239 Geodesic.C1f(eps, _C1a); in LineInit()
251 Geodesic.C1pf(eps, _C1pa); in LineInit()
256 _A2m1 = Geodesic.A2m1f(eps); in LineInit()
257 Geodesic.C2f(eps, _C2a); in LineInit()
277 protected GeodesicLine(Geodesic g, in GeodesicLine()
455 B12 = - Geodesic.SinCosSeries(true, in Position()
[all …]
/dports/science/simbody/simbody-Simbody-3.7/SimTKmath/Geometry/src/
H A DContactGeometryImpl.h163 Geodesic& geod) const;
190 Geodesic& geod) const;
202 Vec2 calcError(const Geodesic& geodP, const Geodesic& geodQ) const;
215 static void mergeGeodesics(const Geodesic& geodP, const Geodesic& geodQ, in mergeGeodesics()
216 Geodesic& geod) { in mergeGeodesics()
323 Geodesic& geod) const;
326 Geodesic& geod) const;
381 const Geodesic& getGeodP() const { in getGeodP()
386 const Geodesic& getGeodQ() const { in getGeodQ()
431 mutable Geodesic geodP;
[all …]
H A DContactGeometry.cpp809 Geodesic& geod) const { in shootGeodesicInDirectionUntilPlaneHit()
821 Geodesic& geod) const { in shootGeodesicInDirectionUntilLengthReached()
843 Geodesic& geod) const { in shootGeodesicInDirectionUntilPlaneHitAnalytical()
857 Geodesic* geod) const { in calcSplitGeodError()
863 Geodesic* geod) const { in calcSplitGeodErrorAnalytical()
1161 Geodesic geod; in f()
1374 Geodesic& geod) const { in shootGeodesicInDirection()
1479 Geodesic& geod) const { in shootGeodesicInDirection2()
2185 Geodesic geodPtmp; in calcSplitGeodErrorJacobian()
2186 Geodesic geodQtmp; in calcSplitGeodErrorJacobian()
[all …]
/dports/science/simbody/simbody-Simbody-3.7/SimTKmath/Geometry/include/simmath/internal/
H A DContactGeometry.h560 const GeodesicOptions& options, Geodesic& geod) const;
652 const GeodesicOptions& options, Geodesic& geod) const;
668 (Geodesic& geodesic,
685 Geodesic& geod) const;
701 Geodesic& geod) const in calcGeodesicUsingOrthogonalMethod()
725 Geodesic* geod=0) const;
742 const GeodesicOptions& options, Geodesic& geod) const;
759 Geodesic& geod) const;
779 Geodesic* geod=0) const;
796 const Geodesic& getGeodP() const;
[all …]
/dports/science/jmol/jmol-14.32.7/src/org/jmol/util/
H A DNormix.java41 @J2SRequireImport({org.jmol.util.Geodesic.class})
44 private final static int NORMIX_GEODESIC_LEVEL = Geodesic.standardLevel;
50 (normixCount = Geodesic.getVertexCount(NORMIX_GEODESIC_LEVEL))); in getNormixCount()
61 vertexVectors = Geodesic.getVertexVectors(); in getVertexVectors()
90 neighborVertexesArrays = Geodesic.getNeighborVertexesArrays(); in getNeighborVertexArrays()
/dports/astro/geographiclib/GeographicLib-1.52/tools/
H A DGeodSolve.cpp243 unsigned outmask = Geodesic::LATITUDE | Geodesic::LONGITUDE | in main()
244 Geodesic::AZIMUTH; // basic output quantities in main()
245 outmask |= inverse ? Geodesic::DISTANCE : // distance-related flags in main()
246 (arcmode ? Geodesic::NONE : Geodesic::DISTANCE_IN); in main()
248 outmask |= unroll ? Geodesic::LONG_UNROLL : Geodesic::NONE; in main()
250 outmask |= full ? (Geodesic::DISTANCE | Geodesic::REDUCEDLENGTH | in main()
251 Geodesic::GEODESICSCALE | Geodesic::AREA) : in main()
252 Geodesic::NONE; in main()
254 const Geodesic geods(a, f); in main()
/dports/graphics/py-cartopy/Cartopy-0.19.0.post1/lib/cartopy/tests/
H A Dtest_geodesic.py22 self.geod = geodesic.Geodesic()
133 geod = geodesic.Geodesic()
140 geod = geodesic.Geodesic()
147 geod = geodesic.Geodesic()
156 geod = geodesic.Geodesic()
163 geod = geodesic.Geodesic()
170 geod = geodesic.Geodesic()
/dports/graphics/py-cartopy/Cartopy-0.19.0.post1/docs/source/cartopy/
H A Dgeodesic.rst1 Geodesic calculations
4 This module defines the Geodesic class which can interface with the Proj
10 .. autoclass:: cartopy.geodesic.Geodesic

12345678910>>...14