Package pygeodesy :: Module karney :: Class GDict
[frames] | no frames]

Class GDict

object --+        
         |        
      dict --+    
             |    
   named._Dict --+
                 |
                GDict
Known Subclasses:

Basic dict with both key and attribute access to the dict items.

Results of all geodesic methods are returned as a GDict instance.

Instance Methods
 
toDirect9Tuple(self, dflt=nan)
Convert this GDict result to a 9-tuple, compatible with Karney's geographiclib method Direct.
 
toGeodSolve12Tuple(self, dflt=nan)
Convert this GDict result to a 12-Tuple, compatible with Karney's GeodSolve result.
 
toInverse10Tuple(self, dflt=nan)
Convert this GDict result to a 10-tuple, compatible with Karney's geographiclib method Indirect.

Inherited from named._Dict: __getattr__, __repr__, __str__, set_, toRepr, toStr

Inherited from dict: __cmp__, __contains__, __delitem__, __eq__, __ge__, __getattribute__, __getitem__, __gt__, __init__, __iter__, __le__, __len__, __lt__, __ne__, __new__, __setitem__, __sizeof__, clear, copy, fromkeys, get, has_key, items, iteritems, iterkeys, itervalues, keys, pop, popitem, setdefault, update, values, viewitems, viewkeys, viewvalues

Inherited from object: __delattr__, __format__, __reduce__, __reduce_ex__, __setattr__, __subclasshook__

Class Variables

Inherited from dict: __hash__

Properties

Inherited from object: __class__

Method Details

toDirect9Tuple (self, dflt=nan)

 

Convert this GDict result to a 9-tuple, compatible with Karney's geographiclib method Direct.

Returns:
Direct9Tuple(a12, lat2, lon2, azi2, s12, m12, M12, M21, S12)

toGeodSolve12Tuple (self, dflt=nan)

 

Convert this GDict result to a 12-Tuple, compatible with Karney's GeodSolve result.

Returns:
GeodSolve12Tuple(lat1, lon1, azi1, lat2, lon2, azi2, s12, a12, m12, M12, M21, S12).

toInverse10Tuple (self, dflt=nan)

 

Convert this GDict result to a 10-tuple, compatible with Karney's geographiclib method Indirect.

Returns:
Inverse10Tuple(a12, s12, salp1, calp1, salp2, calp2, m12, M12, M21, S12).