# nmeaparser **Repository Path**: atavistic/nmeaparser ## Basic Information - **Project Name**: nmeaparser - **Description**: GNSS NMEA-0183 protocal universal parser. - **Primary Language**: C++ - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-11 - **Last Updated**: 2021-11-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # NMEA Parser GNSS NMEA-0183 protocal universal parser. ## Quick Start Clone and run the build: ```bash $ git clone https://github.com/hanoi404/nmeaparser && cd nmeaparser $ make all ``` Run example program: ```bash ./nmea_parse ``` ## CMake Config and build: ```bash $ mkdir build && cd build $ cmake .. -DNMEAPARSER_BUILD_EXAMPLES=ON $ make ``` Output programs in `examples` directory: ```bash examples/nmea_parse ```