Teque5

Results 75 comments of Teque5

We should add the following to the automated build process, then we can close this issue. ```bash help2man -N -n "sigmf_validate" -s1 -S "SigMF project" -o sigmf_validate.1 $(which sigmf_validate) help2man...

@gregparkes we appreciate your significant effort implementing `pydantic` for this module, but after much discussion I believe the changes are currently too onerous to move forward with this PR. We...

The choice to implement validation through `jsonschema` was due to lack of options at time of adoption. You've brought up some reasons why `pydantic` is better which may all be...

I was using SigMF for lots of strange files last week at the GNU Radio conference and this issue came up again. I'm going to start work on this.

Closing PR, assuming author will resubmit to the community-extensions repository.

Yea we discussed previously that compression should be outside the sigmf container e.g. `logo.sigmf` can be `logo.sigmf.gz` or `logo.sigmf.bz2` transparently.

Is this schema a re-write of the [`schema-meta.json`](https://github.com/sigmf/sigmf-python/blob/main/sigmf/schema-meta.json) from the `sigmf-python` module or an attempt from scratch? It seems very similar with some updates. The schema itself looks fine, but...

> Do we have a process for extension schemas to be written? Writing the schemas is pretty painful - I've tried a few methods but doing it manually seems to...

4 year old bug workaround: ``` Z = np.log10(Z) ax.plot_surface(X,Y,Z,cmap=cm.viridis) zticks = [1e-15, 1e-14, 1e-13, 1e-12, 1e-11, 1e-10] ax.set_zticks(np.log10(zticks)) ax.set_zticklabels(zticks) ```