You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great package!
When testing it, I found out that when the data is actually String data but the type is not specified, the get_channel_data(channel) return a unique joined string of all the values. Any idea how to prevent that ? I know that asammdf could make the separation but not sure how, any views on it ?
An exemple on how the signal look like in asamdf: <Signal CAN_Name.SignalName:
samples=[b'Lamp_Off' b'Lamp_On' b'Lamp_Off' b'Lamp_Off' b'Lamp_Low'
b'Lamp_On']
timestamps=[5.98369986e-02 3.39207000e-01 3.99315989e-01 6.79330003e-01
7.39497018e-01 1.94965796e+03]
invalidation_bits=None
unit=""
conversion=None
source=None
comment="Light info"
flags="0"
mastermeta="('Time', 1)"
raw=False
display_names={}
attachment=None>
And get_channel_data gives me
"Lamp_OffLamp_OnLamp_OffLamp_OffLamp_LowLamp_On"
The text was updated successfully, but these errors were encountered:
Just like this, bit difficult to get where is the issue. This is probably a bug.
To progress maybe you can give a screenshot of the channel block with MDFVALIDATOR from Vector or send your file after scrambling it link
Here is a screenshot, I hope it helps. Interesting to note that when I get the data through polar dataframe or series it comes out great, but
get_channel_data returns 1 concatenated string
Great package!
When testing it, I found out that when the data is actually String data but the type is not specified, the get_channel_data(channel) return a unique joined string of all the values. Any idea how to prevent that ? I know that asammdf could make the separation but not sure how, any views on it ?
An exemple on how the signal look like in asamdf:
<Signal CAN_Name.SignalName:
samples=[b'Lamp_Off' b'Lamp_On' b'Lamp_Off' b'Lamp_Off' b'Lamp_Low'
b'Lamp_On']
timestamps=[5.98369986e-02 3.39207000e-01 3.99315989e-01 6.79330003e-01
7.39497018e-01 1.94965796e+03]
invalidation_bits=None
unit=""
conversion=None
source=None
comment="Light info"
flags="0"
mastermeta="('Time', 1)"
raw=False
display_names={}
attachment=None>
And get_channel_data gives me
"Lamp_OffLamp_OnLamp_OffLamp_OffLamp_LowLamp_On"
The text was updated successfully, but these errors were encountered: