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

nl.esi.metis.aisparser.UtilsSpare Maven / Gradle / Ivy

Go to download

This package supports the parsing of AIS messages in Java. AIS, the Automatic Identification System, is a system aiming at improving maritime safety by exchanging messages between ships, other vehicles in particular aircraft involved in search-and-rescue (SAR), and (fixed) base stations. To be precise, this package support the ITU-R M.1371-4 AIS standard. See our extensive javadoc and in particular the class AISParser for more information on how to use this package. The parser was used in the Poseidon project, and is improved in the Metis project to better handle uncertain information. Both projects were led by the Embedded Systems Institute. In both projects Thales Nederlands was the carrying industrial partner, and multiple Dutch universities participated.

The newest version!
package nl.esi.metis.aisparser;

/** This class provides functions to analyze spares.
 * @author Pierre van de Laar
 * @author Pierre America
 * @author Brian C. Lane
 */
public class UtilsSpare {
	
	/** Spare values should be equal to zero to be semantically correct
	 * @param value The spare value
	 * @return whether spare is semantically correct
	 */
	public static boolean isSpareSemanticallyCorrect( int value )
	{
		return value == 0;
	}
	
	/** semantically correct range of course over ground
	 * 
	 */
	public static final String range = "{0}";
	

	/** This constructor is made private to indicate that clients should not construct instances of this class. */
	private UtilsSpare () {
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy