how to convert wind direction to degrees?

조회 수: 10 (최근 30일)
Lilya
Lilya 2016년 8월 24일
답변: Robert Daly 2023년 11월 30일
Hi all, I am working with wind speed and direction but the last is in form of compass, thus it required to convert it to degrees. could anyone kindly help me?
thank you in advance.
  댓글 수: 2
Adam
Adam 2016년 8월 24일
What is "form of compass"? Is it a string? A number in some other units?
Lilya
Lilya 2016년 8월 24일
It's a direction (N, E, S and W)

댓글을 달려면 로그인하십시오.

채택된 답변

Robert
Robert 2016년 8월 24일
You could store the names and values in arrays and look up the angle corresponding to the matching name.
directionValues = 0:22.5:337.5
directionNames = {'N','NNE','NE','ENE','E','ESE','SE','SSE','S','SSW','SW','WSW','W','WNW','NW','NNW'};
directionValues(strcmp(directionNames,'NNW'))
Better yet, put that in an anonymous function
compass2degree = @(dirName) directionValues(strcmp(directionNames,dirName));
compass2degree('ESE')

추가 답변 (2개)

Thorsten
Thorsten 2016년 8월 24일
편집: Thorsten 2016년 8월 24일
Set up a list of compass wind directions and corresponding angles in deg:
D = {'N'; 'E'; 'S'; 'W'}; Ddeg = [0; 90; 180; 270];
If you need more compass wind directions, just add them to D and Ddeg.
Create a table with compass wind directions as row names, and one column containing the corresponding angles in deg:
T = table(Ddeg);
T.Properties.RowNames = D;
T.Properties.VariableNames = {'deg'};
So you have
>> T
T =
deg
___
N 0
E 90
S 180
W 270
Now if you have a cell of different compass wind directions
myD = {'N' 'N' 'E' 'W' 'S'}
you can use this array as index into your table to get the corresponding angles in deg:
T(myD,:).deg
ans =
0
0
90
270
180
  댓글 수: 1
Lilya
Lilya 2016년 8월 24일
I appreciate your help, Thank you :)

댓글을 달려면 로그인하십시오.


Robert Daly
Robert Daly 2023년 11월 30일
Updated answer using the dictionary data type added since R2022b. Intro to dictionaries blog
Dictionaries are vectorised so you can input a cell array of cardinal directions and it will return and array of corresponding wind angles in degrees.
Degrees = [0,0:22.5:337.5]'
Direction = {'','N','NNE','NE','ENE','E','ESE','SE','SSE','S','SSW','SW','WSW','W','WNW','NW','NNW'}';
Cardinal = dictionary(Direction,Degrees)
WindDir = {'NNE','N','SSE','S','SSW','NE','ENE'}
WindDeg = Cardinal(Wind)

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by