Examples of NMEAReader


Examples of ch.epfl.lbd.io.readers.NMEAReader

  protected final org.apache.log4j.Logger logger = Logger.getLogger(this.getClass());
 
  @Test
  public void testReader() throws Exception {

    NMEAReader reader = new NMEAReader(new File("src/assets/Nottingham_Bolton.nmea"),NMEAReader.VERS_0183);
    reader.open();
    while(true){
      NMEAPoint point = reader.getNextNMEAPoint();
      if(point == null)break;
      logger.info(point.toString());
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.