NormalizedPoint - jasonxfrazier/puddy GitHub Wiki
NormalizedPoint
A NormalizedPoint
is a single (x, y, z) coordinate in a normalized trajectory.
Each NormalizedTrajectory
is made up of a sequence of NormalizedPoint
objects, all shifted to a common local origin.
Attributes
-
x:
float
The normalized X coordinate (or longitude offset, in meters, for geo data). -
y:
float
The normalized Y coordinate (or latitude offset, in meters, for geo data). -
z:
float
The normalized Z coordinate (or altitude offset, in meters).
Example
from puddy import NormalizedPoint
pt = NormalizedPoint(x=0.0, y=0.0, z=0.0)
print(pt)