﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1519	[PATCH] Fix NumberFormatException in NmeaReader	egore@…	framm	"Right now the NmeaReader hardcodes a few values that will work if the device/program creating the NMEA file will follow the standard 100%. Naturally some programs don't do that. The attached patch works around that by starting from the rear end parsing latidute and longitude.

The format is xxDDLL.LLLL
xx optional whitespace
DD (int) degres
LL.LLLL (double) latidude

It also trims of any whitspace and skips points that don't follow this format. I'm not sure if silently skipping or bombing out is the better solution. If one the commiter thinks throwing an exception is better just remove the 

if (latdegsep < 0) {
      return null;
}

and

if (londegsep < 0) {
      return null;
}

lines.
"	defect	closed	major		Core		fixed		
