10 lines
257 B
Python
10 lines
257 B
Python
from time import hour
|
|
from length import nautical_mile
|
|
|
|
#
|
|
# Definitions of common speed units
|
|
# Data taken from Appendix F of Halliday, Resnick, Walker, "Fundamentals of Physics",
|
|
# fourth edition, John Willey and Sons, 1993
|
|
|
|
|
|
knot = nautical_mile/hour
|