pynmea2 icon indicating copy to clipboard operation
pynmea2 copied to clipboard

RSD add

Open klint-k opened this issue 5 years ago • 0 comments

Hello Will this work?

class RSD(TalkerSentence):
    """ RADAR System Data
    """
    fields = (("Origin 1 range", "origin_1_range"), # Origin 1 range, from own ship
              ("Origin 1 bearing", "origin_1_bearing", float), # Origin 1 bearing, degrees from 0
              ("Variable Range Marker 1", "VRM1"), # Variable Range Marker 1 (VRM1), range
              ("Bearing Line 1", "EBL1", float), # Bearing Line 1 (EBL1), degrees from 0
              ("Origin 2 range", "origin_2_range"), # Origin 2 range
              ("Origin 2 bearing", "origin_2_bearing", float), # Origin 2 bearing
              ("Variable Range Marker 2", "VRM2"), # VRM2, range
              ("Bearing Line 2", "EBL2"), # EBL2, degrees
              ("Cursor Range", "Cursor_range", Decimal), # Cursor Range From Own Ship
              ("Cursor Bearing Degrees", "cursor_bearing", float), # Cursor Bearing Degrees Clockwise From Zero
              ("Range Scale", "range_scale", Decimal), # Range Scale
              ("Range Unit", "dist_unit"), # Range Unit
              ("Display rotation", "display_rotation"), # Display rotation 1
              )

klint-k avatar Jul 12 '19 00:07 klint-k