Python library for parsing and generating NMEA 0183 protocol messages used in GPS and marine navigation systems
77
{
"context": "This evaluation assesses the engineer's ability to use pynmea2's SeaTalk proprietary sentence parsing capability. SeaTalk is a Raymarine-specific protocol bridged to NMEA format, and pynmea2 provides specialized support for parsing these sentences and extracting command information.",
"type": "weighted_checklist",
"checklist": [
{
"name": "pynmea2.parse() usage",
"description": "Uses pynmea2.parse() function to parse NMEA/SeaTalk sentence strings into message objects",
"max_score": 25
},
{
"name": "command_name property",
"description": "Accesses the command_name property on parsed SeaTalk message objects to extract human-readable command type names",
"max_score": 30
},
{
"name": "STALK sentence handling",
"description": "Correctly handles STALK proprietary sentence type, distinguishing it from standard NMEA sentences",
"max_score": 20
},
{
"name": "Error handling",
"description": "Uses appropriate pynmea2 exception handling (ParseError, SentenceTypeError, ChecksumError) or generic exception catching for invalid sentences",
"max_score": 15
},
{
"name": "File processing",
"description": "Processes multiple SeaTalk sentences from input source (file or stream) using pynmea2 parsing in a loop or iterator pattern",
"max_score": 10
}
]
}Install with Tessl CLI
npx tessl i tessl/pypi-pynmea2docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10