ratal / mdfreader

Read Measurement Data Format (MDF) versions 3.x and 4.x file formats in python
Other
169 stars 73 forks source link

Could not parse CG block names tag warn #185

Closed AndyYangjd closed 4 years ago

AndyYangjd commented 4 years ago

Python version

3.7.4 (tags/v3.7.4:e09359112e, Jul 8 2019, 19:29:22) [MSC v.1916 32 bit (Intel)]

Platform information

Windows-10-10.0.17763-SP0

Numpy version

1.17.2

mdfreader version

4.0

Description

After a MF4 file is imported, a warn print in the screen below.

mdfreader\mdfinfo4.py:596: UserWarning: Could not parse CG block names tag warn('Could not parse CG block names tag')

What does that mean?

Many thanks for mdfreader. It's amzing!

ratal commented 4 years ago

Hi Andy, It means mdfreader cannot properly read some xml metadata. It happens with some loggers, the xml is not always respecting the standard schema. It is just a warning, and the CGBlock does generally contain no so important metadata, so no worry.

AndyYangjd commented 4 years ago

Hi ratal, Thanks for your reply.