1
0
Fork 0

remove unused function floor from geo.nas

Signed-off-by: Stuart Buchanan <stuart_d_buchanan@yahoo.co.uk>
This commit is contained in:
Henning Stahlke 2020-06-03 22:34:57 +02:00 committed by Stuart Buchanan
parent b5f00cb50e
commit 2f0f99826a

View file

@ -82,10 +82,6 @@
var EPSILON = 1e-15;
var ERAD = 6378138.12; # Earth radius (m)
var floor = func(v) v < 0.0 ? -int(-v) - 1 : int(v);
# class that maintains one set of geographical coordinates
#
var Coord = {