Exemplo n.º 1
0
 def _N_vector(self):
     '''(INTERNAL) Get the (C{nvectorBase._N_vector_}).
     '''
     from pygeodesy.nvectorBase import _N_vector_
     r = self._v4t or self.toNvector()
     return _N_vector_(r.x, r.y, r.z, h=r.h)
Exemplo n.º 2
0
 def _N_vector(self):
     '''(INTERNAL) Get the (C{nvectorBase._N_vector_})
     '''
     from pygeodesy.nvectorBase import _N_vector_
     return _N_vector_(*(self._xyz or self.xyz))
Exemplo n.º 3
0
 def _N_vector(self):
     '''(INTERNAL) Get the (C{nvectorBase._N_vector_})
     '''
     from pygeodesy.nvectorBase import _N_vector_
     r = self._xyz or self._v3d or self.toVector()
     return _N_vector_(r.x, r.y, r.z, h=self.height)