Waypoint mission algorithm result definition class.
class PathResultMission
Description:Waypoint Mission Algorithm Results Definition.
public class PathResultMission {
/** total flight time */
public float T_ttl_fly;
/** total flight distance */
public float L_ttl_fly;
/** total number of photos */
public int Photo_Num;
/** area, waypoint mission no */
public double area;
/** number of routes */
public short FPNum;
/** number of drawing points*/
public int Pts4PlotNum;
/** All plot point coordinates are expanded (Pts4PlotNum longitudes, Pts4PlotNum dimensions, Pts4PlotNum heights, the rest are 0, and the valid values are the first 3*Pts4PlotNum */
public double[] Pts4PlotLLA;//141030
/** number of arrows **/
public int ArrowNum;
/** Arrow latitude, longitude, height and direction (x-axis due east, y due south, and z down). All arrow point coordinates are expanded (ArrowNum latitude, ArrowNum longitude, ArrowNum height, ArrowNum arrow direction, the valid value is the first 4*ArrowNum.**/
public double[] ArrowPosDirLLA;
/** The maximum radius that can be set at the waypoint **/
public float[] R_max;
/* Route information (1000) valid points are FPNum */
public PathResultLine[] FP_Info_strc;//1010
}
Description:Waypoint mission algorithm result definition class.