{"id":16957908,"url":"https://github.com/joshnuss/nmea","last_synced_at":"2025-07-16T16:37:29.295Z","repository":{"id":62430080,"uuid":"208148309","full_name":"joshnuss/nmea","owner":"joshnuss","description":"Parser for NMEA compliant sensors","archived":false,"fork":false,"pushed_at":"2023-08-08T11:30:34.000Z","size":9,"stargazers_count":6,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-28T16:07:18.898Z","etag":null,"topics":["elixir","gps","nmea","sensor"],"latest_commit_sha":null,"homepage":"","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/joshnuss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2019-09-12T21:19:09.000Z","updated_at":"2023-08-08T11:30:39.000Z","dependencies_parsed_at":"2023-11-24T09:02:34.166Z","dependency_job_id":"dd63a975-e9ca-4e55-bcf1-7a0531af7c9f","html_url":"https://github.com/joshnuss/nmea","commit_stats":{"total_commits":12,"total_committers":2,"mean_commits":6.0,"dds":0.08333333333333337,"last_synced_commit":"ff69d14cfe6993388b8262633544f55e5465b071"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/joshnuss/nmea","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshnuss%2Fnmea","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshnuss%2Fnmea/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshnuss%2Fnmea/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshnuss%2Fnmea/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joshnuss","download_url":"https://codeload.github.com/joshnuss/nmea/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joshnuss%2Fnmea/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265524869,"owners_count":23782051,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["elixir","gps","nmea","sensor"],"created_at":"2024-10-13T22:20:30.435Z","updated_at":"2025-07-16T16:37:29.241Z","avatar_url":"https://github.com/joshnuss.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NMEA\n\n[NMEA (National Marine Electronics Association) 0183](https://en.wikipedia.org/wiki/NMEA_0183) is a standard for parsing sensor data for many marine electronics like echo sounders, sonars, anemometers, gyrocompasses, autopilots and GPS receivers.\n\nExample GPS data looks like this:\n\n```bash\ncat /dev/ttyACM0\n```\n\n```\n$GPGGA,092750.000,5321.6802,N,00630.3372,W,1,8,1.03,61.7,M,55.2,M,,*76\n$GPGSA,A,3,10,07,05,02,29,04,08,13,,,,,1.72,1.03,1.38*0A\n$GPGSV,3,1,11,10,63,137,17,07,61,098,15,05,59,290,20,08,54,157,30*70\n$GPGSV,3,2,11,02,39,223,19,13,28,070,17,26,23,252,,04,14,186,14*79\n$GPGSV,3,3,11,29,09,301,24,16,09,020,,36,,,*76\n$GPRMC,092750.000,A,5321.6802,N,00630.3372,W,0.02,31.66,280511,,,A*43\n$GPGGA,092751.000,5321.6802,N,00630.3371,W,1,8,1.03,61.7,M,55.3,M,,*75\n$GPGSA,A,3,10,07,05,02,29,04,08,13,,,,,1.72,1.03,1.38*0A\n$GPGSV,3,1,11,10,63,137,17,07,61,098,15,05,59,290,20,08,54,157,30*70\n$GPGSV,3,2,11,02,39,223,16,13,28,070,17,26,23,252,,04,14,186,15*77\n$GPGSV,3,3,11,29,09,301,24,16,09,020,,36,,,*76\n$GPRMC,092751.000,A,5321.6802,N,00630.3371,W,0.06,31.66,280511,,,A*45\n```\n\nEvery line starts with a dollar sign. The next 2 characters is the \"talker\", followed by 3 characters for the \"type\" of record. It is followed by a CSV and then a \"*\" followed by a checksum.\n\nTested with a [ublox series 6 GPS receiver](https://www.u-blox.com/en/product/neo-6-series).\n\n## Installation\n\nIf [available in Hex](https://hex.pm/docs/publish), the package can be installed\nby adding `nmea` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:nmea, \"~\u003e 0.1.0\"}\n  ]\nend\n```\n\nDocumentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)\nand published on [HexDocs](https://hexdocs.pm). Once published, the docs can\nbe found at [https://hexdocs.pm/nmea](https://hexdocs.pm/nmea).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoshnuss%2Fnmea","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoshnuss%2Fnmea","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoshnuss%2Fnmea/lists"}