nl.esi.metis.aisparser.AISMessage23 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EsiAisParser Show documentation
Show all versions of EsiAisParser Show documentation
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!
/* ESI AIS Parser
*
* Copyright 2011/2012 by Pierre van de Laar & Pierre America (Embedded Systems Institute)
* Copyright 2008 by Brian C. Lane
* All Rights Reserved
*
*/
package nl.esi.metis.aisparser;
/** This interface represents an AIS message of type 23: Group Assignment Command.
*
* @author Pierre van de Laar
* @author Pierre America
* @author Brian C. Lane
*/
public interface AISMessage23 extends AISMessage {
/** spare1
* @return int value of spare1 (2 bits [39,40])
*/
public int getSpare1();
/** destinationArea
* @return DestinationArea value of destinationArea (70 bits [41,110])
*/
public DestinationArea getDestinationArea();
/** stationType
* @return int value of stationType (4 bits [111,114])
*/
public int getStationType();
/** typeOfShipAndCargoType
* @return int value of typeOfShipAndCargoType (8 bits [115,122])
*/
public int getTypeOfShipAndCargoType();
/** spare2
* @return int value of spare2 (22 bits [123,144])
*/
public int getSpare2();
/** txrxMode
* @return int value of txrxMode (2 bits [145,146])
*/
public int getTxrxMode();
/** reportingInterval
* @return int value of reportingInterval (4 bits [147,150])
*/
public int getReportingInterval();
/** quietTime
* @return int value of quietTime (4 bits [151,154])
*/
public int getQuietTime();
/** spare3
* @return int value of spare3 (6 bits [155,160])
*/
public int getSpare3();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy