-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #730 from aodn/rdi_bin_mapping_and_rotations
Rdi bin mapping and rotations, Part 2.
- Loading branch information
Showing
20 changed files
with
1,409 additions
and
397 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
112 changes: 112 additions & 0 deletions
112
Preprocessing/+TeledyneADCP/find_teledyne_beam_datasets.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
function cind = find_teledyne_beam_datasets(sample_data,key_dimension) | ||
%function [cind] = find_teledyne_beam_datasets(sample_data,key_dimension) | ||
% | ||
% Detect RDI ADCP Teledyne datasets that are able to be | ||
% converted from beam to ENU coordinates. | ||
% | ||
% This inspect dimensions, variables, and | ||
% metadata attributes. | ||
% | ||
% Inputs: | ||
% | ||
% sample_data [cell{struct}] - A cell with all samples. | ||
% key_dimension [string] - Compulsory dimension name to be matched in | ||
% a variable | ||
% - Default: 'HEIGHT_ABOVE_SENSOR' | ||
% | ||
% Outputs: | ||
% | ||
% cind [int] - The valid indexes where data can be converted. | ||
% | ||
% | ||
% Examples: | ||
% | ||
% varnames = {'VEL1', 'VEL2', 'VEL3', 'VEL4', 'PITCH', 'ROLL', 'HEADING_MAG'}; | ||
% dimnames = {'TIME','HEIGHT_ABOVE_SENSOR'}; | ||
% coords = 'TIME Y X HEIGHT_ABOVE_SENSOR'; | ||
% d = IMOS.gen_dimensions('timeSeries',2,dimnames); | ||
% v = IMOS.gen_variables(d,varnames,{},{},'coordinates',coords); | ||
% m = struct('instrument_make','Teledyne RDI','compass_correction_applied',0); | ||
% m.adcp_info.coords.frame_of_reference='beam'; | ||
% s.dimensions = d; | ||
% s.variables = v; | ||
% s.meta = m; | ||
% assert(isequal(TeledyneADCP.find_teledyne_beam_datasets({s,s,s}),[1,2,3])); | ||
% | ||
% %invalid | ||
% s2 = s; | ||
% s2.variables = s2.variables(1:4); | ||
% assert(isempty(TeledyneADCP.find_teledyne_beam_datasets({s2}))) | ||
% assert(TeledyneADCP.find_teledyne_beam_datasets({s2,s,s2})==2) | ||
% | ||
% %do not touch earth coords | ||
% s2 = s; | ||
% s2.meta.adcp_info.coords.frame_of_reference = 'earth'; | ||
% assert(isempty(TeledyneADCP.find_teledyne_beam_datasets({s2}))); | ||
% | ||
% | ||
% author: [email protected] | ||
% | ||
narginchk(1, 2) | ||
if nargin==1 | ||
key_dimension = 'HEIGHT_ABOVE_SENSOR'; | ||
end | ||
|
||
required_dimensions = {key_dimension}; | ||
ndatasets = length(sample_data); | ||
whereind = zeros(1, ndatasets, 'logical'); | ||
|
||
for k = 1:ndatasets | ||
dataset = sample_data{k}; | ||
try | ||
vnames = IMOS.get(dataset.variables, 'name'); | ||
dnames = IMOS.get(dataset.dimensions, 'name'); | ||
not_teledyne = ~strcmpi(dataset.meta.instrument_make, 'Teledyne RDI'); | ||
no_compass_metadata_available = ~isfield(dataset.meta, 'compass_correction_applied'); | ||
not_in_beam_coordinates = ~strcmpi(dataset.meta.adcp_info.coords.frame_of_reference,'beam'); | ||
catch | ||
continue | ||
end | ||
|
||
if not_teledyne || no_compass_metadata_available || not_in_beam_coordinates | ||
continue | ||
end | ||
|
||
no_magnetic_correction = dataset.meta.compass_correction_applied == 0; | ||
|
||
if no_magnetic_correction | ||
required_variables = {'VEL1', 'VEL2', 'VEL3', 'VEL4', 'PITCH', 'ROLL', 'HEADING_MAG'}; | ||
else | ||
required_variables = {'VEL1', 'VEL2', 'VEL3', 'VEL4', 'PITCH', 'ROLL', 'HEADING'}; | ||
end | ||
|
||
invalid_content = ~isinside(vnames, required_variables) || ~isinside(dnames, required_dimensions); | ||
|
||
if invalid_content | ||
continue | ||
end | ||
|
||
[~, beam_dim_index] = inCell(dnames, key_dimension); | ||
s = IMOS.as_named_struct(dataset.variables); | ||
|
||
for l = 1:numel(required_variables) | ||
vname = required_variables{l}; | ||
|
||
try | ||
not_beam_dim = ~isequal(s.(vname).dimensions{2}, beam_dim_index); | ||
not_beam_coords = ~contains(s.(vname).coordinates, key_dimension); | ||
invalid_beam_var = not_beam_dim || not_beam_coords; | ||
if invalid_beam_var | ||
continue | ||
end | ||
catch | ||
continue | ||
end | ||
|
||
end | ||
|
||
whereind(k) = true; | ||
end | ||
|
||
cind = find(whereind); | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
function gpitch = gimbal_pitch(pitch, roll, tilt_bit) | ||
%function adjustpitch(pitch, roll, tilt_bit) | ||
% | ||
% Compute the Gimbal Pitch from internal pitch | ||
% and roll sensors in a RDI ADCP. | ||
% | ||
% Inputs: | ||
% | ||
% pitch - The internal pitch angles in degrees. | ||
% roll - The internal roll angles in degrees. | ||
% tilt_bit - The internal tilt sensor switch. | ||
% | ||
% Outputs: | ||
% | ||
% gpitch - The adjusted pitch in degrees, as a gimbal. | ||
% | ||
% Example: | ||
% rolls = [5:5:360]; | ||
% h = 0; | ||
% x = TeledyneADCP.gimbal_pitch(0,rolls,true); | ||
% y = TeledyneADCP.gimbal_pitch(180,rolls,true); | ||
% assert(isequal(x,y)) | ||
% x = TeledyneADCP.gimbal_pitch(270,rolls,true); | ||
% assert(isnan(x(rolls==90))) | ||
% assert(isnan(x(rolls==270))) | ||
% | ||
% %bounded | ||
% x = TeledyneADCP.gimbal_pitch(rolls,0,true); | ||
% assert(isequal([-90,90],[min(x),max(x)])) | ||
% | ||
% %invariant | ||
% x = TeledyneADCP.gimbal_pitch(45,-45,1); | ||
% y = TeledyneADCP.gimbal_pitch(45,45,1); | ||
% assert(x==y) | ||
% | ||
% | ||
narginchk(3, 3) | ||
|
||
if ~tilt_bit | ||
%Page 18, 4th paragraph. | ||
warnmsg('Tilt bit is not set. Adjusted pitch is now zero.') | ||
gpitch = zeros(size(pitch)); | ||
return | ||
end | ||
|
||
gpitch = atand(tand(pitch) .* cosd(roll)); | ||
end |
Oops, something went wrong.