mission_plan.py 2.98 KB
Newer Older
1
"""
2 3 4
    schemas: Mission plan (un-complied) geenrated by the  Autonomy Engine
    sent to the respective platform's C2 to compile into a platform-specific
    mission plan.
5
"""
6
from . import api, full_message_schema
7 8 9
from flask_restx import fields


10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
action_schema = api.model(
    "AutonomyEngineAction",
    {
        "action": fields.String(
            required=True,
            description="Autonomy Engine's action from `move`, `payload`,"
            + " `dive`, `send_hits`, `scanline`, `scanpoint`.",
            example="move",
        ),
        "flight_style": fields.String(
            required=False,
            description="Platform-specific modes/flight styles to perform next action",
            example="orbit",
        ),
        "latitude_waypoint": fields.Float(
            required=True,
            description="Next waypoint, x-coordinate",
            example=-4.187143188645706,
        ),
        "longitude_waypoint": fields.Float(
            required=True,
            description="Next waypoint, y-coordinate",
            example=50.37072283932642,
        ),
        "altitude": fields.Float(
            required=False,
            description="Altitude of next action",
            example=15.0,
        ),
        "depth": fields.Float(
            required=False,
            description="Depth of next action",
            example=15.0,
        ),
        "activate_payload": fields.Boolean(
            required=False,
            description="To activate/deactivate sensor for Autosub "
            + "Hover-1 --> `MBES` sensor and for EcoSUB --> `Sidescan`",
            example=True,
        ),
        "send_environmental_data": fields.Boolean(
            required=False,
            description="To trigger the platform to send list of observations if any found",
            example=False,
        ),
        "scanline": fields.Boolean(
            required=False,
            description="To trigger the platform to scan-line",
            example=False,
        ),
        "scanpoint": fields.Boolean(
            required=False,
            description="To trigger the platform to send list of observations if any found",
            example=False,
        ),
    },
)

68 69 70 71
mission_plan_schema = api.model(
    "MissionPlan",
    {
        "message": fields.Nested(
72
            full_message_schema,
73 74 75
            required=True,
            description="Message header",
        ),
76
        "plan_ID": fields.Integer(
77
            required=True,
78 79
            description="Identifier of given mission sequence planned",
            example=1,
80
        ),
81
        "platform_serial": fields.String(
82
            required=True,
83 84
            description="Serial of target platform to send mission to",
            example="reav-60",
85
        ),
86 87
        "plan": fields.List(
            fields.Nested(action_schema),
88
            required=True,
89 90
            description="Sequence of actions/instructions generated by the "
            + " Autonomy Engine that should be compiled by the respective C2.",
91
        ),
92 93
    },
)