Stanford-NavLab / gnss_lib_py

Modular Python tool for parsing, analyzing, and visualizing Global Navigation Satellite Systems (GNSS) data and state estimates
MIT License
131 stars 33 forks source link

Derek/namespacing #93

Closed betaBison closed 1 year ago

betaBison commented 1 year ago

Adds namespacing compatibility to allow

import gnss_lib_py as glp
data = glp.NavData()

or

from gnss_lib_py import NavData
data = NavData()

Neither of which were possible previously. For the sake of documentation, previously one had to do:

from gnss_lib_py.parsers.navdata import NavData
data = NavData()
codecov-commenter commented 1 year ago

Codecov Report

Merging #93 (2fed9a9) into v0.1.9 (b825613) will not change coverage. The diff coverage is n/a.

:mega: This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more

@@           Coverage Diff           @@
##           v0.1.9      #93   +/-   ##
=======================================
  Coverage   95.05%   95.05%           
=======================================
  Files          14       14           
  Lines        2325     2325           
=======================================
  Hits         2210     2210           
  Misses        115      115           

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.