v1.3.0 Attributes
New ways to use SigMF
When properties are part of sigmf global fields, they can now be read and written via attributes:
import sigmf
meta = sigmf.fromfile("some.sigmf-data")
sample_rate = meta.sample_rate # reads from metadata["global"]["core::sample_rate"]
num_channels = meta.num_channels # reads from metadata["global"]["core::num_channels"]
meta.author = "Bruce Wayne" # writes to metadata["global"]["core::author"]What's Changed
- Feature: Properties for global fields by @Teque5 in #116
- Add basic I/O test for sigmf_convert_wav (fixes #50) by @aic1994 in #123
- fix read_samples from SigMF archive by @Teque5 in #119
- Feature/spec update to v1.2.6 by @Teque5 in #120
- 117 remove assertions by @gregparkes in #118
New Contributors
Full Changelog: v1.2.12...v1.3.0