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

navdata __getitem__ can't handle multi indexes set as a tuple #106

Closed betaBison closed 1 year ago

betaBison commented 1 year ago

Another bug found by @danineamati

navdata[['x','y','z'],0] works but navdata[('x','y','z'),0] throws an error.

_parse_key_idx() needs another condition to handle tuples