I have a GPGGA string where the geoid is below sea level: $GPGGA,214213.00,3249.263664,N,11710.592247,W,1,11,0.6,102.2,M,-26.0,M,,*51 The parser doesn't match this, it jumps straight to the `onFinished` event in the handler. This doesn't get matched by the [`GGA` pattern](https://github.com/petr-s/android-nmea-parser/blob/1abfb41cada7a37e2e296782ffa78d6036ef927d/src/main/java/com/github/petr_s/nmea/basic/BasicNMEAParser.java#L34). I think `CAP_FLOAT` needs to allow an optional negative sign?
I have a GPGGA string where the geoid is below sea level:
The parser doesn't match this, it jumps straight to the
onFinishedevent in the handler.This doesn't get matched by the
GGApattern. I thinkCAP_FLOATneeds to allow an optional negative sign?