mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-08-15 10:47:21 +00:00
Fix crash with markings
* Fixed a crash with markings * Optimized the detailed report of a task
This commit is contained in:
@@ -338,7 +338,7 @@ do -- COORDINATE
|
||||
-- @return #string
|
||||
function COORDINATE:GetMovingText( Settings )
|
||||
|
||||
return self:GetVelocityText( Settings ) .. self:GetHeadingText( Settings )
|
||||
return self:GetVelocityText( Settings ) .. ", " .. self:GetHeadingText( Settings )
|
||||
end
|
||||
|
||||
|
||||
@@ -350,6 +350,7 @@ do -- COORDINATE
|
||||
return { x = TargetCoordinate.x - self.x, y = TargetCoordinate.y - self.y, z = TargetCoordinate.z - self.z }
|
||||
end
|
||||
|
||||
|
||||
--- Get a correction in radians of the real magnetic north of the COORDINATE.
|
||||
-- @param #COORDINATE self
|
||||
-- @return #number CorrectionRadians The correction in radians.
|
||||
|
||||
Reference in New Issue
Block a user