Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Creating the .sigmf archive format #44

Merged
merged 2 commits into from
May 18, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions sigmf-spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,20 @@ file contains information that describes the dataset.
3. The metadata file MUST have a `.meta` filename extension.
4. The dataset file MUST have a `.data` filename extension.

#### Archive Format

The metadata and dataset files that comprise a SigMF recording may be combined
into a file archive.

1. The archive MUST use the `tar` archive format, as specified by POSIX.1-2001.
2. The archive file's filename extension MUST be `.sigmf`.
3. The archive MUST contain the following files: for each contained recording
with some name given here meta-syntactically as `N`, files named `N` (a
directory), `N/N.sigmf-meta`, and `N/N.sigmf-data`.
4. The archive MUST NOT contain any other files unless their pathnames begin
with `N/N`. for some `N` which has `.sigmf-meta` and `.sigmf-data` files as
described above.

### Dataset Format

The samples in the dataset file must be in a SigMF-supported format. There are
Expand Down