Merge pull request #19 from htherrien/master

Added power spectrum data block definition
This commit is contained in:
Dzjkb 2022-12-14 16:39:10 +01:00 committed by GitHub
commit 77287d24d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 3 deletions

View File

@ -19,17 +19,33 @@ BLOCK_0 = defaultdict(
}, },
) )
BLOCK_7 = {4: "ScSm", 8: "IgSm", 12: "PhSm"} BLOCK_7 = {
4: "ScSm",
8: "IgSm",
12: "PhSm",
56: "PwSm",
}
BLOCK_11 = {4: "ScRf", 8: "IgRf"} BLOCK_11 = {
4: "ScRf",
8: "IgRf",
12: "PhRf",
56: "PwRf",
}
BLOCK_23 = { BLOCK_23 = {
4: "ScSm Data Parameter", 4: "ScSm Data Parameter",
8: "IgSm Data Parameter", 8: "IgSm Data Parameter",
12: "PhSm Data Parameter", 12: "PhSm Data Parameter",
56: "PwSm Data Parameter",
} }
BLOCK_27 = {4: "ScRf Data Parameter", 8: "IgRf Data Parameter"} BLOCK_27 = {
4: "ScRf Data Parameter",
8: "IgRf Data Parameter",
12: "PhRf Data Parameter",
56: "PwRf Data Parameter",
}
DIFFERENT_BLOCKS = { DIFFERENT_BLOCKS = {
31: "AB Data Parameter", 31: "AB Data Parameter",