You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
origin_int = LLA(45,100)
origin_float = LLA(45.0,100.0)
t = ENUfromLLA(origin_float, wgs84) # this works
t = ENUfromLLA(origin_int, wgs84) # this throws an error
So it throws this
ERROR: MethodError: no method matching ENUfromECEF(::ECEF{Float64}, ::Int64, ::Int64)
Because of this signature
ENUfromECEF(origin::ECEF{T}, lat::T, lon::T) where T
The ECEF translated origin was auto-promoted from LLA{Int64} to ECEF{Float64}, now T don't match.