Package pygeodesy :: Module rhumbx :: Class _RhumbLine
[frames] | no frames]

Class _RhumbLine

  object --+            
           |            
named._Named --+        
               |        
named._NamedBase --+    
                   |    
    karney._CapsBase --+
                       |
                      _RhumbLine
Known Subclasses:

(INTERNAL) Class RhumbLine

Instance Methods
 
__init__(self, rhumb, lat1, lon1, azi12, caps=0, name='')
New RhumbLine.
 
__del__(self)
 
Position(self, s12, outmask=384)
Compute a position at a distance, optionally the area.
 
toStr(self, prec=6, sep=', ', **unused)
Return this RhumbLine as string.

Inherited from named._NamedBase: __repr__, __str__, others, toRepr

Inherited from named._Named: __imatmul__, __matmul__, __rmatmul__, attrs, classof, copy, dup, rename, toStr2

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Class Variables

Inherited from karney._CapsBase: ALL, AREA, AZIMUTH, DISTANCE, DISTANCE_IN, EMPTY, GEODESICSCALE, LATITUDE, LINE_OFF, LONGITUDE, LONG_UNROLL, REDUCEDLENGTH, STANDARD

Properties
  azi12
Get this rhumb line's azimuth (compass degrees).
  ellipsoid
Get this rhumb line's ellipsoid (Ellipsoid).
  exact
Get this rhumb line's exact option (bool).
  lat1
Get this rhumb line's latitude (degrees90).
  lon1
Get this rhumb line's longitude (degrees180).
  latlon1
Get this rhumb line's lat- and longitude (LatLon2Tuple(lat, lon)).
  RAorder
Get this rhumb line's Rhumb Area order (int, 4, 5, 6, 7 or 8).
  rhumb
Get this rhumb line's rhumb (Rhumb).
  TMorder
Get this rhumb line's Transverse Mercator order (int, 4, 5, 6, 7 or 8).

Inherited from karney._CapsBase: debug

Inherited from named._Named: classname, classnaming, iteration, name, named, named2, named3, named4

Inherited from object: __class__

Method Details

__init__ (self, rhumb, lat1, lon1, azi12, caps=0, name='')
(Constructor)

 

New RhumbLine.

Overrides: object.__init__

Position (self, s12, outmask=384)

 

Compute a position at a distance, optionally the area.

Arguments:
  • s12 - The distance along this rhumb between its point and the other point (meters), can be negative.
Returns:
GDict with 2 up to 9 items azi12, s12, S12, lat2, lon2, lat1, lon1 with latitude lat2 and longitude lon2 of the other point in degrees and the area S12 under the rhumb line in meter squared.

Note: If s12 is large enough that the rhumb line crosses a pole, the longitude of the second point is indeterminate and NAN is returned for lon2 and area S12.

If the first point is a pole, the cosine of its latitude is taken to be epsilon**-2 (where epsilon is 2**-52). This position is extremely close to the actual pole and allows the calculation to be carried out in finite terms.

toStr (self, prec=6, sep=', ', **unused)

 

Return this RhumbLine as string.

Arguments:
  • prec - The float precision, number of decimal digits (0..9). Trailing zero decimals are stripped for prec values of 1 and above, but kept for negative prec values.
  • sep - Separator to join (str).
Returns:
RhumbLine (str).
Overrides: named._Named.toStr

Property Details

azi12

Get this rhumb line's azimuth (compass degrees).

Get method:
azi12(self) - Get this rhumb line's azimuth (compass degrees).
Set method:
azi12(self, azi12) - Set this rhumb line's azimuth.
Delete Method:
_fdel(inst) - Zap the cached/memoized property value.

ellipsoid

Get this rhumb line's ellipsoid (Ellipsoid).

Get method:
ellipsoid(self) - Get this rhumb line's ellipsoid (Ellipsoid).
Set method:
_fset_error(inst, val) - Throws an AttributeError, always.
Delete Method:
_fdel(inst) - Zap the cached/memoized property value.

exact

Get this rhumb line's exact option (bool).

Get method:
exact(self) - Get this rhumb line's exact option (bool).
Set method:
_fset_error(inst, val) - Throws an AttributeError, always.
Delete Method:
_fdel(inst) - Zap the cached/memoized property value.

lat1

Get this rhumb line's latitude (degrees90).

Get method:
lat1(self) - Get this rhumb line's latitude (degrees90).
Set method:
_fset_error(inst, val) - Throws an AttributeError, always.
Delete Method:
_fdel(inst) - Zap the cached/memoized property value.

lon1

Get this rhumb line's longitude (degrees180).

Get method:
lon1(self) - Get this rhumb line's longitude (degrees180).
Set method:
_fset_error(inst, val) - Throws an AttributeError, always.
Delete Method:
_fdel(inst) - Zap the cached/memoized property value.

latlon1

Get this rhumb line's lat- and longitude (LatLon2Tuple(lat, lon)).

Get method:
latlon1(self) - Get this rhumb line's lat- and longitude (LatLon2Tuple(lat, lon)).
Set method:
_fset_error(inst, val) - Throws an AttributeError, always.
Delete Method:
_fdel(inst) - Zap the cached/memoized property value.

RAorder

Get this rhumb line's Rhumb Area order (int, 4, 5, 6, 7 or 8).

Get method:
RAorder(self) - Get this rhumb line's Rhumb Area order (int, 4, 5, 6, 7 or 8).
Set method:
_fset_error(inst, val) - Throws an AttributeError, always.
Delete Method:
_fdel(inst) - Zap the cached/memoized property value.

rhumb

Get this rhumb line's rhumb (Rhumb).

Get method:
rhumb(self) - Get this rhumb line's rhumb (Rhumb).
Set method:
_fset_error(inst, val) - Throws an AttributeError, always.
Delete Method:
_fdel(inst) - Zap the cached/memoized property value.

TMorder

Get this rhumb line's Transverse Mercator order (int, 4, 5, 6, 7 or 8).

Get method:
TMorder(self) - Get this rhumb line's Transverse Mercator order (int, 4, 5, 6, 7 or 8).
Set method:
_fset_error(inst, val) - Throws an AttributeError, always.
Delete Method:
_fdel(inst) - Zap the cached/memoized property value.