How to use the sbp.utils.walk_json_dict function in sbp

To help you get started, we’ve selected a few sbp examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github swift-nav / libsbp / python / sbp / sbas.py View on Github external
def to_json_dict(self):
    self.to_binary()
    d = super( MsgSbasRaw, self).to_json_dict()
    j = walk_json_dict(exclude_fields(self))
    d.update(j)
    return d
github swift-nav / libsbp / python / sbp / vehicle.py View on Github external
def to_json_dict(self):
    self.to_binary()
    d = super( MsgOdometry, self).to_json_dict()
    j = walk_json_dict(exclude_fields(self))
    d.update(j)
    return d
github swift-nav / libsbp / python / sbp / ssr.py View on Github external
def to_json_dict(self):
    self.to_binary()
    d = super( MsgSsrGridDefinition, self).to_json_dict()
    j = walk_json_dict(exclude_fields(self))
    d.update(j)
    return d
github swift-nav / libsbp / python / sbp / specan.py View on Github external
def to_json_dict(self):
    self.to_binary()
    d = super( MsgSpecan, self).to_json_dict()
    j = walk_json_dict(exclude_fields(self))
    d.update(j)
    return d
github swift-nav / libsbp / python / sbp / user.py View on Github external
def to_json_dict(self):
    self.to_binary()
    d = super( MsgUserData, self).to_json_dict()
    j = walk_json_dict(exclude_fields(self))
    d.update(j)
    return d
github swift-nav / libsbp / python / sbp / observation.py View on Github external
def to_json_dict(self):
    self.to_binary()
    d = super( MsgEphemerisGPSDepE, self).to_json_dict()
    j = walk_json_dict(exclude_fields(self))
    d.update(j)
    return d
github swift-nav / libsbp / python / sbp / ndb.py View on Github external
def to_json_dict(self):
    self.to_binary()
    d = super( MsgNdbEvent, self).to_json_dict()
    j = walk_json_dict(exclude_fields(self))
    d.update(j)
    return d
github swift-nav / libsbp / python / sbp / flash.py View on Github external
def to_json_dict(self):
    self.to_binary()
    d = super( MsgFlashErase, self).to_json_dict()
    j = walk_json_dict(exclude_fields(self))
    d.update(j)
    return d
github swift-nav / libsbp / python / sbp / piksi.py View on Github external
def to_json_dict(self):
    self.to_binary()
    d = super( MsgMaskSatelliteDep, self).to_json_dict()
    j = walk_json_dict(exclude_fields(self))
    d.update(j)
    return d
github swift-nav / libsbp / python / sbp / bootload.py View on Github external
def to_json_dict(self):
    self.to_binary()
    d = super( MsgBootloaderJumpToApp, self).to_json_dict()
    j = walk_json_dict(exclude_fields(self))
    d.update(j)
    return d