All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.dronesecurity.userapplication.utilities.drone.usermonitoring.SituationConstants Maven / Gradle / Ivy

Go to download

System able to monitor the drone and manage the security thanks to some particular sensors.

The newest version!
/*
 * Copyright (c) 2021-2022, Mirko Felice & Maxim Derevyanchenko. All rights reserved.
 * Licensed under the MIT license. See LICENSE file in the project root for details.
 */

package io.github.dronesecurity.userapplication.utilities.drone.usermonitoring;

/**
 * Constants related to all the possible drone situations.
 */
public final class SituationConstants {

    /**
     * Represents the stable situation.
     */
    public static final String STABLE = "STABLE";

    /**
     * Represents the situation in which inclination angle is critical.
     */
    public static final String CRITICAL_ANGLE = "CRITICAL ANGLE";

    /**
     * Represents the situation in which proximity distance is critical.
     */
    public static final String CRITICAL_DISTANCE = "CRITICAL DISTANCE";

    /**
     * Represents the situation in which inclination angle is dangerous.
     */
    public static final String DANGEROUS_ANGLE = "DANGEROUS ANGLE";

    /**
     * Represents the situation in which proximity distance is dangerous.
     */
    public static final String DANGEROUS_DISTANCE = "DANGEROUS DISTANCE";

    private SituationConstants() { }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy