nl.esi.metis.aisparser.impl.HandleInvalidInputImpl 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.impl;
import nl.esi.metis.aisparser.HandleInvalidInput;
import nl.esi.metis.aisparser.VDMLine;
import nl.esi.metis.aisparser.VDMMessage;
import nl.esi.metis.aisparser.provenance.Provenance;
/** This class implements a handler that ignores Invalid Input.
* We hope you will do something more useful with these invalid input notifications such as logging, estimating sensor health, or even system awareness for new AIS versions.
*
* This class helps to quickly migrate from the 0.1 to 0.2 version.
* This class might be removed in later versions.
*
* @author Pierre America
* @author Pierre van de Laar
*/
public class HandleInvalidInputImpl implements HandleInvalidInput{
@Override
public void handleInvalidVDMMessage(VDMMessage invalidVDMMessage) {
}
@Override
public void handleInvalidVDMLine(VDMLine invalidVDMLine) {
}
@Override
public void handleInvalidSensorData(Provenance source, String sensorData) {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy