help="Specify the iroha private key file to enable location updates to Iroha."
)
parser.add_argument(
"-b","--bluetooth",
dest="bluetooth_version",
default=4,
type=int,
help="Specify the bluetooth version, 4 or 5 (Default: 4)."
)
parser.add_argument(
"--gps",
help="Turn on gps updates",
action="store_true"
)
parser.add_argument(
"--flight_id",
type=int,
help="Specify a flight_id for the location updates. Used to identify the flight path in the blockchain. This value is only used if the --iroha option is specified."
)
parser.add_argument(
"--run-scenario",
dest="run_scenario",
action="store_true",
help="Run a flight scenario with randomized coordinates originating at ({}, {}). This will disregard the gps option.".format(
g_lat,g_lon)
)
parser.add_argument(
"--expiration-date",
dest="exp_date",
default="2030-01-01T13:00",
type=str,
help="Specify expiration date for the attestation in the format YYYY-mm-ddTHH:MM"