Skip to content

Commit

Permalink
Add definitions for "new-style" collections
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Pennybacker authored and Jacob Gilbert committed Dec 13, 2022
1 parent 79d515a commit 35a81be
Show file tree
Hide file tree
Showing 4 changed files with 421 additions and 21 deletions.
9 changes: 7 additions & 2 deletions sigmf_protocols/sigmf_core.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ table sigmf_extension {
optional:bool=null;
}

table sigmf_stream {
name:string;
hash:string;
}

table geojson_point {
type:string;
coordinates:[double];
Expand Down Expand Up @@ -55,19 +60,19 @@ table Annotation {
longitude:double=null; // deprecated, use the `global` `geolocation` field
}

// TODO: collections are not yet supported
table Collection {
version:string;
description:string;
author:string;
collection_doi:string;
license:string;
extensions:[sigmf_extension];
streams:[string];
streams:[sigmf_stream];
}

table Descr {
global:Global;
annotation:Annotation;
capture:Capture;
collection:Collection;
}
Loading

0 comments on commit 35a81be

Please sign in to comment.