| ... | ... | @@ -11,6 +11,7 @@ global artoaWorkspace; |
|
|
|
artoaWorkspace.editOffsets.A
|
|
|
|
artoaWorkspace.editOffsets.B
|
|
|
|
artoaWorkspace.editOffsets.X
|
|
|
|
artoaWorkspace.editOffsets.D
|
|
|
|
% Unfiltered tables:
|
|
|
|
artoaWorkspace.editOffsets.unfilteredA
|
|
|
|
artoaWorkspace.editOffsets.unfilteredB
|
| ... | ... | @@ -21,6 +22,7 @@ artoaWorkspace.editOffsets.unfilteredB |
|
|
|
| A | Lines correspond to the known SATFIXes. The columns can vary, based on the results that want to be received. The first column is the distance between SATFIX and soundsource position. The last two columns belong to the float offset and drift. All in between correspond to the soundsource offset and drift. |
|
|
|
|
| B | The corresponding TOA to the lines in A. |
|
|
|
|
| C | Contains the reference time corresponding to the soundsource. It is currently not available in the workspace after the calculation has finished. |
|
|
|
|
| D | Contains all required information to calculate offsets for a set of floats. |
|
|
|
|
| X | Contains the result after the calculations |
|
|
|
|
|
|
|
|
## Algorithm
|
| ... | ... | @@ -70,6 +72,36 @@ The following example shows how the final matrices look like. |
|
|
|
| SATFIX 5 | 214.21 |
|
|
|
|
| SATFIX 6 | 213.45 |
|
|
|
|
|
|
|
|
### Matrix D
|
|
|
|
|
|
|
|
This matrix is structured as matrix B but contains the following values as columns:
|
|
|
|
|
|
|
|
| Variable | Content description |
|
|
|
|
| ------------------------- | --------------------------------------------------------- |
|
|
|
|
| Toa | Toa from unfilteredB |
|
|
|
|
| DifferenceSosoFloatWindow | Difference of Soundsource start to float window start [s] |
|
|
|
|
| DateSatFix | Date of SATFIX [rafos date] |
|
|
|
|
| DistanceSatFix | Distance of soundsource to SATFIX |
|
|
|
|
| SoundsourceName | Name of soundsource |
|
|
|
|
| MeasuredSosoOffsetDate | Measured soundsource offset date |
|
|
|
|
| MeasuredSoundSourceOffset | Measured soundsource offset |
|
|
|
|
| MeasuredSosoDrift | Measured soundsource drif |
|
|
|
|
| EmpiricalSosoOffsetDate | Empirical soundsource offset date |
|
|
|
|
| EmpiricalSosoOffset | Empirical soundsource offset |
|
|
|
|
| EmpiricalSosoDrift | Empirical soundsource drift |
|
|
|
|
| Float | Serial number of float |
|
|
|
|
| MeasuredFloatOffsetDate | Measured float offset date |
|
|
|
|
| MeasuredFloatOffset | Measured float offset |
|
|
|
|
| MeasuredFloatDrift | Measured float drift |
|
|
|
|
|
|
|
|
#### Calculations of matrix D
|
|
|
|
|
|
|
|
##### DifferenceSosoFloatWindow
|
|
|
|
|
|
|
|
(float.phasereftime(1) * 3600 + float.phasereftime(2) * 60) - (soso.reftime(1) * 3600 + soso.reftime(2) * 60)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Matrix X
|
|
|
|
|
|
|
|
| | Value |
|
| ... | ... | |
| ... | ... | |