sofar 0.3.1__py2.py3-none-any.whl → 1.1.0__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sofar/__init__.py +13 -7
- sofar/io.py +423 -0
- sofar/sofa.py +1795 -0
- sofar/sofa_conventions/VERSION +1 -0
- sofar/sofa_conventions/conventions/FreeFieldDirectivityTF_1.1.csv +59 -0
- sofar/sofa_conventions/conventions/FreeFieldDirectivityTF_1.1.json +444 -0
- sofar/{conventions/source → sofa_conventions/conventions}/FreeFieldHRIR_1.0.csv +3 -3
- sofar/{conventions → sofa_conventions/conventions}/FreeFieldHRIR_1.0.json +3 -3
- sofar/{conventions/source → sofa_conventions/conventions}/FreeFieldHRTF_1.0.csv +2 -2
- sofar/{conventions → sofa_conventions/conventions}/FreeFieldHRTF_1.0.json +3 -3
- sofar/{conventions/source → sofa_conventions/conventions}/GeneralFIR-E_2.0.csv +2 -2
- sofar/{conventions → sofa_conventions/conventions}/GeneralFIR-E_2.0.json +2 -2
- sofar/{conventions/source/GeneralFIR_2.0.csv → sofa_conventions/conventions/GeneralFIR_1.0.csv} +2 -2
- sofar/{conventions/GeneralFIR_2.0.json → sofa_conventions/conventions/GeneralFIR_1.0.json} +2 -2
- sofar/{conventions/source/GeneralFIR_1.0.csv → sofa_conventions/conventions/GeneralSOS_1.0.csv} +11 -11
- sofar/{conventions/GeneralFIR_1.0.json → sofa_conventions/conventions/GeneralSOS_1.0.json} +48 -37
- sofar/{conventions/source → sofa_conventions/conventions}/GeneralTF-E_1.0.csv +3 -3
- sofar/{conventions → sofa_conventions/conventions}/GeneralTF-E_1.0.json +4 -4
- sofar/{conventions/source → sofa_conventions/conventions}/GeneralTF_1.0.csv +1 -1
- sofar/{conventions → sofa_conventions/conventions}/GeneralTF_1.0.json +1 -1
- sofar/{conventions/source → sofa_conventions/conventions}/GeneralTF_2.0.csv +4 -4
- sofar/{conventions → sofa_conventions/conventions}/GeneralTF_2.0.json +4 -4
- sofar/sofa_conventions/conventions/SimpleFreeFieldHRIR_1.0.csv +47 -0
- sofar/{conventions → sofa_conventions/conventions}/SimpleFreeFieldHRIR_1.0.json +1 -1
- sofar/{conventions/source → sofa_conventions/conventions}/SimpleFreeFieldHRSOS_1.0.csv +1 -1
- sofar/{conventions → sofa_conventions/conventions}/SimpleFreeFieldHRSOS_1.0.json +1 -1
- sofar/{conventions/source/SimpleFreeFieldHRTF_2.0.csv → sofa_conventions/conventions/SimpleFreeFieldHRTF_1.0.csv} +3 -3
- sofar/{conventions/SimpleFreeFieldHRTF_2.0.json → sofa_conventions/conventions/SimpleFreeFieldHRTF_1.0.json} +4 -4
- sofar/{conventions/source → sofa_conventions/conventions}/SimpleHeadphoneIR_1.0.csv +9 -9
- sofar/sofa_conventions/conventions/SimpleHeadphoneIR_1.0.json +396 -0
- sofar/{conventions/source → sofa_conventions/conventions}/SingleRoomMIMOSRIR_1.0.csv +18 -8
- sofar/{conventions → sofa_conventions/conventions}/SingleRoomMIMOSRIR_1.0.json +124 -50
- sofar/{conventions/source → sofa_conventions/conventions}/SingleRoomSRIR_1.0.csv +18 -8
- sofar/{conventions → sofa_conventions/conventions}/SingleRoomSRIR_1.0.json +124 -50
- sofar/{conventions/source → sofa_conventions/conventions/deprecated}/FreeFieldDirectivityTF_1.0.csv +2 -2
- sofar/{conventions → sofa_conventions/conventions/deprecated}/FreeFieldDirectivityTF_1.0.json +2 -2
- sofar/sofa_conventions/conventions/deprecated/MultiSpeakerBRIR_0.3.csv +48 -0
- sofar/sofa_conventions/conventions/deprecated/SimpleFreeFieldHRIR_0.4.csv +43 -0
- sofar/sofa_conventions/conventions/deprecated/SimpleFreeFieldHRIR_0.4.json +333 -0
- sofar/{conventions/source/SimpleFreeFieldHRIR_1.0.csv → sofa_conventions/conventions/deprecated/SimpleFreeFieldTF_0.4.csv} +15 -18
- sofar/sofa_conventions/conventions/deprecated/SimpleFreeFieldTF_0.4.json +340 -0
- sofar/sofa_conventions/conventions/deprecated/SimpleFreeFieldTF_1.0.csv +44 -0
- sofar/sofa_conventions/conventions/deprecated/SimpleFreeFieldTF_1.0.json +340 -0
- sofar/sofa_conventions/conventions/deprecated/SimpleHeadphoneIR_0.1.csv +51 -0
- sofar/sofa_conventions/conventions/deprecated/SimpleHeadphoneIR_0.1.json +396 -0
- sofar/sofa_conventions/conventions/deprecated/SimpleHeadphoneIR_0.2.csv +51 -0
- sofar/{conventions/SimpleHeadphoneIR_1.0.json → sofa_conventions/conventions/deprecated/SimpleHeadphoneIR_0.2.json} +3 -3
- sofar/sofa_conventions/conventions/deprecated/SingleRoomDRIR_0.2.csv +47 -0
- sofar/sofa_conventions/conventions/deprecated/SingleRoomDRIR_0.2.json +360 -0
- sofar/sofa_conventions/rules/deprecations.json +12 -0
- sofar/sofa_conventions/rules/rules.json +800 -0
- sofar/sofa_conventions/rules/unit_aliases.json +11 -0
- sofar/sofa_conventions/rules/upgrade.json +190 -0
- sofar/update_conventions.py +427 -0
- sofar/utils.py +315 -0
- {sofar-0.3.1.dist-info → sofar-1.1.0.dist-info}/AUTHORS.rst +1 -0
- sofar-1.1.0.dist-info/METADATA +89 -0
- sofar-1.1.0.dist-info/RECORD +75 -0
- {sofar-0.3.1.dist-info → sofar-1.1.0.dist-info}/WHEEL +1 -1
- {sofar-0.3.1.dist-info → sofar-1.1.0.dist-info}/top_level.txt +1 -0
- tests/__init__.py +0 -0
- tests/test_deprecations.py +19 -0
- tests/test_io.py +344 -0
- tests/test_sofa.py +354 -0
- tests/test_sofa_upgrade_conventions.py +102 -0
- tests/test_sofa_verify.py +472 -0
- tests/test_utils.py +241 -0
- sofar/conventions/source/MultiSpeakerBRIR_0.3.csv +0 -48
- sofar/sofar.py +0 -2531
- sofar-0.3.1.dist-info/METADATA +0 -69
- sofar-0.3.1.dist-info/RECORD +0 -46
- /sofar/{conventions/source → sofa_conventions/conventions}/SimpleFreeFieldSOS_1.0.csv +0 -0
- /sofar/{conventions → sofa_conventions/conventions}/SimpleFreeFieldSOS_1.0.json +0 -0
- /sofar/{conventions/source → sofa_conventions/conventions/deprecated}/GeneralFIRE_1.0.csv +0 -0
- /sofar/{conventions → sofa_conventions/conventions/deprecated}/GeneralFIRE_1.0.json +0 -0
- /sofar/{conventions → sofa_conventions/conventions/deprecated}/MultiSpeakerBRIR_0.3.json +0 -0
- /sofar/{conventions/source → sofa_conventions/conventions/deprecated}/SingleRoomDRIR_0.3.csv +0 -0
- /sofar/{conventions → sofa_conventions/conventions/deprecated}/SingleRoomDRIR_0.3.json +0 -0
- {sofar-0.3.1.dist-info → sofar-1.1.0.dist-info}/LICENSE +0 -0
@@ -0,0 +1,800 @@
|
|
1
|
+
{
|
2
|
+
"GLOBAL:DataType": {
|
3
|
+
"value": [
|
4
|
+
"FIR",
|
5
|
+
"FIR-E",
|
6
|
+
"FIRE",
|
7
|
+
"TF",
|
8
|
+
"TF-E",
|
9
|
+
"SOS"
|
10
|
+
],
|
11
|
+
"specific": {
|
12
|
+
"FIR": {
|
13
|
+
"Data.IR": null,
|
14
|
+
"Data.Delay": null,
|
15
|
+
"Data.SamplingRate": null,
|
16
|
+
"Data.SamplingRate:Units": [
|
17
|
+
"hertz"
|
18
|
+
]
|
19
|
+
},
|
20
|
+
"FIR-E": {
|
21
|
+
"Data.IR": null,
|
22
|
+
"Data.Delay": null,
|
23
|
+
"Data.SamplingRate": null,
|
24
|
+
"Data.SamplingRate:Units": [
|
25
|
+
"hertz"
|
26
|
+
]
|
27
|
+
},
|
28
|
+
"FIRE": {
|
29
|
+
"Data.IR": null,
|
30
|
+
"Data.Delay": null,
|
31
|
+
"Data.SamplingRate": null,
|
32
|
+
"Data.SamplingRate:Units": [
|
33
|
+
"hertz"
|
34
|
+
]
|
35
|
+
},
|
36
|
+
"TF": {
|
37
|
+
"Data.Real": null,
|
38
|
+
"Data.Imag": null,
|
39
|
+
"N": null,
|
40
|
+
"N:Units": [
|
41
|
+
"hertz"
|
42
|
+
]
|
43
|
+
},
|
44
|
+
"TF-E": {
|
45
|
+
"Data.Real": null,
|
46
|
+
"Data.Imag": null,
|
47
|
+
"N": null,
|
48
|
+
"N:Units": [
|
49
|
+
"hertz"
|
50
|
+
]
|
51
|
+
},
|
52
|
+
"TFE": {
|
53
|
+
"Data.Real": null,
|
54
|
+
"Data.Imag": null,
|
55
|
+
"N": null,
|
56
|
+
"N:Units": [
|
57
|
+
"hertz"
|
58
|
+
]
|
59
|
+
},
|
60
|
+
"SOS": {
|
61
|
+
"Data.SOS": null,
|
62
|
+
"Data.Delay": null,
|
63
|
+
"Data.SamplingRate": null,
|
64
|
+
"Data.SamplingRate:Units": [
|
65
|
+
"hertz"
|
66
|
+
],
|
67
|
+
"_dimensions": {
|
68
|
+
"N": {
|
69
|
+
"value": [
|
70
|
+
6,
|
71
|
+
12,
|
72
|
+
18,
|
73
|
+
24,
|
74
|
+
30,
|
75
|
+
36,
|
76
|
+
42,
|
77
|
+
48,
|
78
|
+
54,
|
79
|
+
60,
|
80
|
+
66,
|
81
|
+
72,
|
82
|
+
78,
|
83
|
+
84,
|
84
|
+
90,
|
85
|
+
96,
|
86
|
+
102,
|
87
|
+
108,
|
88
|
+
114,
|
89
|
+
120,
|
90
|
+
126,
|
91
|
+
132,
|
92
|
+
138,
|
93
|
+
144,
|
94
|
+
150,
|
95
|
+
156,
|
96
|
+
162,
|
97
|
+
168,
|
98
|
+
174,
|
99
|
+
180,
|
100
|
+
186,
|
101
|
+
192,
|
102
|
+
198,
|
103
|
+
204,
|
104
|
+
210,
|
105
|
+
216,
|
106
|
+
222,
|
107
|
+
228,
|
108
|
+
234,
|
109
|
+
240,
|
110
|
+
246,
|
111
|
+
252,
|
112
|
+
258,
|
113
|
+
264,
|
114
|
+
270,
|
115
|
+
276,
|
116
|
+
282,
|
117
|
+
288,
|
118
|
+
294,
|
119
|
+
300,
|
120
|
+
306,
|
121
|
+
312,
|
122
|
+
318,
|
123
|
+
324,
|
124
|
+
330,
|
125
|
+
336,
|
126
|
+
342,
|
127
|
+
348,
|
128
|
+
354,
|
129
|
+
360,
|
130
|
+
366,
|
131
|
+
372,
|
132
|
+
378,
|
133
|
+
384,
|
134
|
+
390,
|
135
|
+
396,
|
136
|
+
402,
|
137
|
+
408,
|
138
|
+
414,
|
139
|
+
420,
|
140
|
+
426,
|
141
|
+
432,
|
142
|
+
438,
|
143
|
+
444,
|
144
|
+
450,
|
145
|
+
456,
|
146
|
+
462,
|
147
|
+
468,
|
148
|
+
474,
|
149
|
+
480,
|
150
|
+
486,
|
151
|
+
492,
|
152
|
+
498,
|
153
|
+
504,
|
154
|
+
510,
|
155
|
+
516,
|
156
|
+
522,
|
157
|
+
528,
|
158
|
+
534,
|
159
|
+
540,
|
160
|
+
546,
|
161
|
+
552,
|
162
|
+
558,
|
163
|
+
564,
|
164
|
+
570,
|
165
|
+
576,
|
166
|
+
582,
|
167
|
+
588,
|
168
|
+
594,
|
169
|
+
600
|
170
|
+
],
|
171
|
+
"value_str": "an integer multiple of 6 greater 0"
|
172
|
+
}
|
173
|
+
}
|
174
|
+
}
|
175
|
+
}
|
176
|
+
},
|
177
|
+
"GLOBAL:RoomType": {
|
178
|
+
"value": [
|
179
|
+
"free field",
|
180
|
+
"reverberant",
|
181
|
+
"shoebox",
|
182
|
+
"dae"
|
183
|
+
],
|
184
|
+
"specific": {
|
185
|
+
"reverberant": {
|
186
|
+
"GLOBAL:RoomDescription": null
|
187
|
+
},
|
188
|
+
"shoebox": {
|
189
|
+
"RoomCornerA": null,
|
190
|
+
"RoomCornerB": null
|
191
|
+
},
|
192
|
+
"dae": {
|
193
|
+
"GLOBAL:RoomGeometry": null
|
194
|
+
}
|
195
|
+
}
|
196
|
+
},
|
197
|
+
"GLOBAL:SOFAConventions": {
|
198
|
+
"value": [
|
199
|
+
"FreeFieldDirectivityTF",
|
200
|
+
"FreeFieldDirectivityTF",
|
201
|
+
"FreeFieldHRIR",
|
202
|
+
"FreeFieldHRTF",
|
203
|
+
"GeneralFIR-E",
|
204
|
+
"GeneralFIR",
|
205
|
+
"GeneralSOS",
|
206
|
+
"GeneralTF-E",
|
207
|
+
"GeneralTF",
|
208
|
+
"GeneralTF",
|
209
|
+
"SimpleFreeFieldHRIR",
|
210
|
+
"SimpleFreeFieldHRSOS",
|
211
|
+
"SimpleFreeFieldHRTF",
|
212
|
+
"SimpleFreeFieldSOS",
|
213
|
+
"SimpleHeadphoneIR",
|
214
|
+
"SingleRoomMIMOSRIR",
|
215
|
+
"SingleRoomSRIR",
|
216
|
+
"GeneralFIRE",
|
217
|
+
"MultiSpeakerBRIR",
|
218
|
+
"SimpleFreeFieldHRIR",
|
219
|
+
"SimpleFreeFieldTF",
|
220
|
+
"SimpleFreeFieldTF",
|
221
|
+
"SimpleHeadphoneIR",
|
222
|
+
"SimpleHeadphoneIR",
|
223
|
+
"SingleRoomDRIR",
|
224
|
+
"SingleRoomDRIR"
|
225
|
+
],
|
226
|
+
"specific": {
|
227
|
+
"GeneralFIR": {
|
228
|
+
"GLOBAL:DataType": [
|
229
|
+
"FIR"
|
230
|
+
]
|
231
|
+
},
|
232
|
+
"GeneralFIR-E": {
|
233
|
+
"GLOBAL:DataType": [
|
234
|
+
"FIR-E"
|
235
|
+
]
|
236
|
+
},
|
237
|
+
"GeneralTF": {
|
238
|
+
"GLOBAL:DataType": [
|
239
|
+
"TF"
|
240
|
+
]
|
241
|
+
},
|
242
|
+
"GeneralTF-E": {
|
243
|
+
"GLOBAL:DataType": [
|
244
|
+
"TF-E"
|
245
|
+
]
|
246
|
+
},
|
247
|
+
"SimpleFreeFieldHRIR": {
|
248
|
+
"GLOBAL:DataType": [
|
249
|
+
"FIR"
|
250
|
+
],
|
251
|
+
"GLOBAL:RoomType": [
|
252
|
+
"free field"
|
253
|
+
],
|
254
|
+
"EmitterPosition:Type": [
|
255
|
+
"cartesian",
|
256
|
+
"spherical"
|
257
|
+
],
|
258
|
+
"_dimensions": {
|
259
|
+
"E": {
|
260
|
+
"value": [
|
261
|
+
1
|
262
|
+
],
|
263
|
+
"value_str": "1"
|
264
|
+
}
|
265
|
+
}
|
266
|
+
},
|
267
|
+
"SimpleFreeFieldHRTF": {
|
268
|
+
"GLOBAL:DataType": [
|
269
|
+
"TF"
|
270
|
+
],
|
271
|
+
"GLOBAL:RoomType": [
|
272
|
+
"free field"
|
273
|
+
],
|
274
|
+
"EmitterPosition:Type": [
|
275
|
+
"cartesian",
|
276
|
+
"spherical"
|
277
|
+
],
|
278
|
+
"_dimensions": {
|
279
|
+
"E": {
|
280
|
+
"value": [
|
281
|
+
1
|
282
|
+
],
|
283
|
+
"value_str": "1"
|
284
|
+
}
|
285
|
+
}
|
286
|
+
},
|
287
|
+
"SimpleFreeFieldHRSOS": {
|
288
|
+
"GLOBAL:DataType": [
|
289
|
+
"SOS"
|
290
|
+
],
|
291
|
+
"GLOBAL:RoomType": [
|
292
|
+
"free field"
|
293
|
+
],
|
294
|
+
"EmitterPosition:Type": [
|
295
|
+
"cartesian",
|
296
|
+
"spherical"
|
297
|
+
],
|
298
|
+
"_dimensions": {
|
299
|
+
"E": {
|
300
|
+
"value": [
|
301
|
+
1
|
302
|
+
],
|
303
|
+
"value_str": "1"
|
304
|
+
}
|
305
|
+
}
|
306
|
+
},
|
307
|
+
"FreeFieldHRIR": {
|
308
|
+
"GLOBAL:DataType": [
|
309
|
+
"FIR-E"
|
310
|
+
],
|
311
|
+
"GLOBAL:RoomType": [
|
312
|
+
"free field"
|
313
|
+
]
|
314
|
+
},
|
315
|
+
"FreeFieldHRTF": {
|
316
|
+
"GLOBAL:DataType": [
|
317
|
+
"TF-E"
|
318
|
+
],
|
319
|
+
"GLOBAL:RoomType": [
|
320
|
+
"free field"
|
321
|
+
]
|
322
|
+
},
|
323
|
+
"SimpleHeadphoneIR": {
|
324
|
+
"GLOBAL:DataType": [
|
325
|
+
"FIR"
|
326
|
+
]
|
327
|
+
},
|
328
|
+
"SingleRoomSRIR": {
|
329
|
+
"GLOBAL:DataType": [
|
330
|
+
"FIR"
|
331
|
+
]
|
332
|
+
},
|
333
|
+
"SingleRoomMIMOSRIR": {
|
334
|
+
"GLOBAL:DataType": [
|
335
|
+
"FIR-E"
|
336
|
+
]
|
337
|
+
},
|
338
|
+
"FreeFieldDirectivityTF": {
|
339
|
+
"GLOBAL:DataType": [
|
340
|
+
"TF"
|
341
|
+
]
|
342
|
+
}
|
343
|
+
}
|
344
|
+
},
|
345
|
+
"N:LongName": {
|
346
|
+
"value": [
|
347
|
+
"frequency"
|
348
|
+
]
|
349
|
+
},
|
350
|
+
"ListenerPosition:Type": {
|
351
|
+
"value": [
|
352
|
+
"cartesian",
|
353
|
+
"spherical"
|
354
|
+
],
|
355
|
+
"specific": {
|
356
|
+
"cartesian": {
|
357
|
+
"ListenerPosition:Units": [
|
358
|
+
"metre"
|
359
|
+
]
|
360
|
+
},
|
361
|
+
"spherical": {
|
362
|
+
"ListenerPosition:Units": [
|
363
|
+
"degree, degree, metre"
|
364
|
+
]
|
365
|
+
}
|
366
|
+
}
|
367
|
+
},
|
368
|
+
"ListenerView": {
|
369
|
+
"value": null,
|
370
|
+
"general": [
|
371
|
+
"ListenerView:Type",
|
372
|
+
"ListenerView:Units"
|
373
|
+
]
|
374
|
+
},
|
375
|
+
"ListenerView:Type": {
|
376
|
+
"value": [
|
377
|
+
"cartesian",
|
378
|
+
"spherical"
|
379
|
+
],
|
380
|
+
"specific": {
|
381
|
+
"cartesian": {
|
382
|
+
"ListenerView:Units": [
|
383
|
+
"metre"
|
384
|
+
]
|
385
|
+
},
|
386
|
+
"spherical": {
|
387
|
+
"ListenerView:Units": [
|
388
|
+
"degree, degree, metre"
|
389
|
+
]
|
390
|
+
}
|
391
|
+
}
|
392
|
+
},
|
393
|
+
"ListenerUp": {
|
394
|
+
"value": null,
|
395
|
+
"general": [
|
396
|
+
"ListenerView"
|
397
|
+
]
|
398
|
+
},
|
399
|
+
"ReceiverPosition:Type": {
|
400
|
+
"value": [
|
401
|
+
"cartesian",
|
402
|
+
"spherical",
|
403
|
+
"spherical harmonics"
|
404
|
+
],
|
405
|
+
"specific": {
|
406
|
+
"cartesian": {
|
407
|
+
"ReceiverPosition:Units": [
|
408
|
+
"metre"
|
409
|
+
]
|
410
|
+
},
|
411
|
+
"spherical": {
|
412
|
+
"ReceiverPosition:Units": [
|
413
|
+
"degree, degree, metre"
|
414
|
+
]
|
415
|
+
},
|
416
|
+
"spherical harmonics": {
|
417
|
+
"ReceiverPosition:Units": [
|
418
|
+
"degree, degree, metre"
|
419
|
+
],
|
420
|
+
"_dimensions": {
|
421
|
+
"R": {
|
422
|
+
"value": [
|
423
|
+
1,
|
424
|
+
4,
|
425
|
+
9,
|
426
|
+
16,
|
427
|
+
25,
|
428
|
+
36,
|
429
|
+
49,
|
430
|
+
64,
|
431
|
+
81,
|
432
|
+
100,
|
433
|
+
121,
|
434
|
+
144,
|
435
|
+
169,
|
436
|
+
196,
|
437
|
+
225,
|
438
|
+
256,
|
439
|
+
289,
|
440
|
+
324,
|
441
|
+
361,
|
442
|
+
400,
|
443
|
+
441,
|
444
|
+
484,
|
445
|
+
529,
|
446
|
+
576,
|
447
|
+
625,
|
448
|
+
676,
|
449
|
+
729,
|
450
|
+
784,
|
451
|
+
841,
|
452
|
+
900,
|
453
|
+
961,
|
454
|
+
1024,
|
455
|
+
1089,
|
456
|
+
1156,
|
457
|
+
1225,
|
458
|
+
1296,
|
459
|
+
1369,
|
460
|
+
1444,
|
461
|
+
1521,
|
462
|
+
1600,
|
463
|
+
1681,
|
464
|
+
1764,
|
465
|
+
1849,
|
466
|
+
1936,
|
467
|
+
2025,
|
468
|
+
2116,
|
469
|
+
2209,
|
470
|
+
2304,
|
471
|
+
2401,
|
472
|
+
2500,
|
473
|
+
2601,
|
474
|
+
2704,
|
475
|
+
2809,
|
476
|
+
2916,
|
477
|
+
3025,
|
478
|
+
3136,
|
479
|
+
3249,
|
480
|
+
3364,
|
481
|
+
3481,
|
482
|
+
3600,
|
483
|
+
3721,
|
484
|
+
3844,
|
485
|
+
3969,
|
486
|
+
4096,
|
487
|
+
4225,
|
488
|
+
4356,
|
489
|
+
4489,
|
490
|
+
4624,
|
491
|
+
4761,
|
492
|
+
4900,
|
493
|
+
5041,
|
494
|
+
5184,
|
495
|
+
5329,
|
496
|
+
5476,
|
497
|
+
5625,
|
498
|
+
5776,
|
499
|
+
5929,
|
500
|
+
6084,
|
501
|
+
6241,
|
502
|
+
6400,
|
503
|
+
6561,
|
504
|
+
6724,
|
505
|
+
6889,
|
506
|
+
7056,
|
507
|
+
7225,
|
508
|
+
7396,
|
509
|
+
7569,
|
510
|
+
7744,
|
511
|
+
7921,
|
512
|
+
8100,
|
513
|
+
8281,
|
514
|
+
8464,
|
515
|
+
8649,
|
516
|
+
8836,
|
517
|
+
9025,
|
518
|
+
9216,
|
519
|
+
9409,
|
520
|
+
9604,
|
521
|
+
9801,
|
522
|
+
10000
|
523
|
+
],
|
524
|
+
"value_str": "(N+1)**2 where N is the spherical harmonics order"
|
525
|
+
}
|
526
|
+
}
|
527
|
+
}
|
528
|
+
}
|
529
|
+
},
|
530
|
+
"ReceiverView": {
|
531
|
+
"value": null,
|
532
|
+
"general": [
|
533
|
+
"ReceiverView:Type",
|
534
|
+
"ReceiverView:Units"
|
535
|
+
]
|
536
|
+
},
|
537
|
+
"ReceiverView:Type": {
|
538
|
+
"value": [
|
539
|
+
"cartesian",
|
540
|
+
"spherical"
|
541
|
+
],
|
542
|
+
"specific": {
|
543
|
+
"cartesian": {
|
544
|
+
"ReceiverView:Units": [
|
545
|
+
"metre"
|
546
|
+
]
|
547
|
+
},
|
548
|
+
"spherical": {
|
549
|
+
"ReceiverView:Units": [
|
550
|
+
"degree, degree, metre"
|
551
|
+
]
|
552
|
+
}
|
553
|
+
}
|
554
|
+
},
|
555
|
+
"ReceiverUp": {
|
556
|
+
"value": null,
|
557
|
+
"general": [
|
558
|
+
"ReceiverView"
|
559
|
+
]
|
560
|
+
},
|
561
|
+
"SourcePosition:Type": {
|
562
|
+
"value": [
|
563
|
+
"cartesian",
|
564
|
+
"spherical"
|
565
|
+
],
|
566
|
+
"specific": {
|
567
|
+
"cartesian": {
|
568
|
+
"SourcePosition:Units": [
|
569
|
+
"metre"
|
570
|
+
]
|
571
|
+
},
|
572
|
+
"spherical": {
|
573
|
+
"SourcePosition:Units": [
|
574
|
+
"degree, degree, metre"
|
575
|
+
]
|
576
|
+
}
|
577
|
+
}
|
578
|
+
},
|
579
|
+
"SourceView": {
|
580
|
+
"value": null,
|
581
|
+
"general": [
|
582
|
+
"SourceView:Type",
|
583
|
+
"SourceView:Units"
|
584
|
+
]
|
585
|
+
},
|
586
|
+
"SourceView:Type": {
|
587
|
+
"value": [
|
588
|
+
"cartesian",
|
589
|
+
"spherical"
|
590
|
+
],
|
591
|
+
"specific": {
|
592
|
+
"cartesian": {
|
593
|
+
"SourceView:Units": [
|
594
|
+
"metre"
|
595
|
+
]
|
596
|
+
},
|
597
|
+
"spherical": {
|
598
|
+
"SourceView:Units": [
|
599
|
+
"degree, degree, metre"
|
600
|
+
]
|
601
|
+
}
|
602
|
+
}
|
603
|
+
},
|
604
|
+
"SourceUp": {
|
605
|
+
"value": null,
|
606
|
+
"general": [
|
607
|
+
"SourceView"
|
608
|
+
]
|
609
|
+
},
|
610
|
+
"EmitterPosition:Type": {
|
611
|
+
"value": [
|
612
|
+
"cartesian",
|
613
|
+
"spherical",
|
614
|
+
"spherical harmonics"
|
615
|
+
],
|
616
|
+
"specific": {
|
617
|
+
"cartesian": {
|
618
|
+
"EmitterPosition:Units": [
|
619
|
+
"metre"
|
620
|
+
]
|
621
|
+
},
|
622
|
+
"spherical": {
|
623
|
+
"EmitterPosition:Units": [
|
624
|
+
"degree, degree, metre"
|
625
|
+
]
|
626
|
+
},
|
627
|
+
"spherical harmonics": {
|
628
|
+
"EmitterPosition:Units": [
|
629
|
+
"degree, degree, metre"
|
630
|
+
],
|
631
|
+
"_dimensions": {
|
632
|
+
"E": {
|
633
|
+
"value": [
|
634
|
+
1,
|
635
|
+
4,
|
636
|
+
9,
|
637
|
+
16,
|
638
|
+
25,
|
639
|
+
36,
|
640
|
+
49,
|
641
|
+
64,
|
642
|
+
81,
|
643
|
+
100,
|
644
|
+
121,
|
645
|
+
144,
|
646
|
+
169,
|
647
|
+
196,
|
648
|
+
225,
|
649
|
+
256,
|
650
|
+
289,
|
651
|
+
324,
|
652
|
+
361,
|
653
|
+
400,
|
654
|
+
441,
|
655
|
+
484,
|
656
|
+
529,
|
657
|
+
576,
|
658
|
+
625,
|
659
|
+
676,
|
660
|
+
729,
|
661
|
+
784,
|
662
|
+
841,
|
663
|
+
900,
|
664
|
+
961,
|
665
|
+
1024,
|
666
|
+
1089,
|
667
|
+
1156,
|
668
|
+
1225,
|
669
|
+
1296,
|
670
|
+
1369,
|
671
|
+
1444,
|
672
|
+
1521,
|
673
|
+
1600,
|
674
|
+
1681,
|
675
|
+
1764,
|
676
|
+
1849,
|
677
|
+
1936,
|
678
|
+
2025,
|
679
|
+
2116,
|
680
|
+
2209,
|
681
|
+
2304,
|
682
|
+
2401,
|
683
|
+
2500,
|
684
|
+
2601,
|
685
|
+
2704,
|
686
|
+
2809,
|
687
|
+
2916,
|
688
|
+
3025,
|
689
|
+
3136,
|
690
|
+
3249,
|
691
|
+
3364,
|
692
|
+
3481,
|
693
|
+
3600,
|
694
|
+
3721,
|
695
|
+
3844,
|
696
|
+
3969,
|
697
|
+
4096,
|
698
|
+
4225,
|
699
|
+
4356,
|
700
|
+
4489,
|
701
|
+
4624,
|
702
|
+
4761,
|
703
|
+
4900,
|
704
|
+
5041,
|
705
|
+
5184,
|
706
|
+
5329,
|
707
|
+
5476,
|
708
|
+
5625,
|
709
|
+
5776,
|
710
|
+
5929,
|
711
|
+
6084,
|
712
|
+
6241,
|
713
|
+
6400,
|
714
|
+
6561,
|
715
|
+
6724,
|
716
|
+
6889,
|
717
|
+
7056,
|
718
|
+
7225,
|
719
|
+
7396,
|
720
|
+
7569,
|
721
|
+
7744,
|
722
|
+
7921,
|
723
|
+
8100,
|
724
|
+
8281,
|
725
|
+
8464,
|
726
|
+
8649,
|
727
|
+
8836,
|
728
|
+
9025,
|
729
|
+
9216,
|
730
|
+
9409,
|
731
|
+
9604,
|
732
|
+
9801,
|
733
|
+
10000
|
734
|
+
],
|
735
|
+
"value_str": "(N+1)**2 where N is the spherical harmonics order"
|
736
|
+
}
|
737
|
+
}
|
738
|
+
}
|
739
|
+
}
|
740
|
+
},
|
741
|
+
"EmitterView": {
|
742
|
+
"value": null,
|
743
|
+
"general": [
|
744
|
+
"EmitterView:Type",
|
745
|
+
"EmitterView:Units"
|
746
|
+
]
|
747
|
+
},
|
748
|
+
"EmitterView:Type": {
|
749
|
+
"value": [
|
750
|
+
"cartesian",
|
751
|
+
"spherical"
|
752
|
+
],
|
753
|
+
"specific": {
|
754
|
+
"cartesian": {
|
755
|
+
"EmitterView:Units": [
|
756
|
+
"metre"
|
757
|
+
]
|
758
|
+
},
|
759
|
+
"spherical": {
|
760
|
+
"EmitterView:Units": [
|
761
|
+
"degree, degree, metre"
|
762
|
+
]
|
763
|
+
}
|
764
|
+
}
|
765
|
+
},
|
766
|
+
"EmitterUp": {
|
767
|
+
"value": null,
|
768
|
+
"general": [
|
769
|
+
"EmitterView"
|
770
|
+
]
|
771
|
+
},
|
772
|
+
"EmitterDescriptions": {
|
773
|
+
"value": null,
|
774
|
+
"general": [
|
775
|
+
"GLOBAL:EmitterDescription"
|
776
|
+
]
|
777
|
+
},
|
778
|
+
"RoomVolume": {
|
779
|
+
"value": null,
|
780
|
+
"general": [
|
781
|
+
"RoomVolume:Units"
|
782
|
+
]
|
783
|
+
},
|
784
|
+
"RoomTemperature": {
|
785
|
+
"value": null,
|
786
|
+
"general": [
|
787
|
+
"RoomTemperature:Units"
|
788
|
+
]
|
789
|
+
},
|
790
|
+
"RoomVolume:Units": {
|
791
|
+
"value": [
|
792
|
+
"cubic metre"
|
793
|
+
]
|
794
|
+
},
|
795
|
+
"RoomTemperature:Units": {
|
796
|
+
"value": [
|
797
|
+
"kelvin"
|
798
|
+
]
|
799
|
+
}
|
800
|
+
}
|