update comments

This commit is contained in:
Junzi Sun 2020-05-03 20:13:22 +02:00
parent 57307109e6
commit fe9e033a64
3 changed files with 9 additions and 9 deletions

View File

@ -51,8 +51,8 @@ def position(msg0, msg1, t0, t1, lat_ref=None, lon_ref=None):
(works with both airborne and surface position messages) (works with both airborne and surface position messages)
Args: Args:
msg0 (string): even message (28 bytes hexadecimal string) msg0 (string): even message (28 hexdigits)
msg1 (string): odd message (28 bytes hexadecimal string) msg1 (string): odd message (28 hexdigits)
t0 (int): timestamps for the even message t0 (int): timestamps for the even message
t1 (int): timestamps for the odd message t1 (int): timestamps for the odd message
@ -93,7 +93,7 @@ def position_with_ref(msg, lat_ref, lon_ref):
of the true position. of the true position.
Args: Args:
msg (string): even message (28 bytes hexadecimal string) msg (string): even message (28 hexdigits)
lat_ref: previous known latitude lat_ref: previous known latitude
lon_ref: previous known longitude lon_ref: previous known longitude

View File

@ -11,8 +11,8 @@ def airborne_position(msg0, msg1, t0, t1):
"""Decode airborn position from a pair of even and odd position message """Decode airborn position from a pair of even and odd position message
Args: Args:
msg0 (string): even message (28 bytes hexadecimal string) msg0 (string): even message (28 hexdigits)
msg1 (string): odd message (28 bytes hexadecimal string) msg1 (string): odd message (28 hexdigits)
t0 (int): timestamps for the even message t0 (int): timestamps for the even message
t1 (int): timestamps for the odd message t1 (int): timestamps for the odd message
@ -85,7 +85,7 @@ def airborne_position_with_ref(msg, lat_ref, lon_ref):
be with in 180NM of the true position. be with in 180NM of the true position.
Args: Args:
msg (string): even message (28 bytes hexadecimal string) msg (string): even message (28 hexdigits)
lat_ref: previous known latitude lat_ref: previous known latitude
lon_ref: previous known longitude lon_ref: previous known longitude

View File

@ -12,8 +12,8 @@ def surface_position(msg0, msg1, t0, t1, lat_ref, lon_ref):
the lat/lon of receiver must be provided to yield the correct solution. the lat/lon of receiver must be provided to yield the correct solution.
Args: Args:
msg0 (string): even message (28 bytes hexadecimal string) msg0 (string): even message (28 hexdigits)
msg1 (string): odd message (28 bytes hexadecimal string) msg1 (string): odd message (28 hexdigits)
t0 (int): timestamps for the even message t0 (int): timestamps for the even message
t1 (int): timestamps for the odd message t1 (int): timestamps for the odd message
lat_ref (float): latitude of the receiver lat_ref (float): latitude of the receiver
@ -89,7 +89,7 @@ def surface_position_with_ref(msg, lat_ref, lon_ref):
be with in 45NM of the true position. be with in 45NM of the true position.
Args: Args:
msg (string): even message (28 bytes hexadecimal string) msg (string): even message (28 hexdigits)
lat_ref: previous known latitude lat_ref: previous known latitude
lon_ref: previous known longitude lon_ref: previous known longitude