Fix crash with markings

* Fixed a crash with markings
* Optimized the detailed report of a task
This commit is contained in:
FlightControl_Master
2017-09-15 13:42:08 +02:00
parent 6a725475c9
commit bae6219b7a
2 changed files with 27 additions and 15 deletions

View File

@@ -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.