MATLAB|风玫瑰图

news2024/11/24 9:58:48

目录

扫一扫关注公众号

效果图

粉丝给的图:

复刻的图:

其他样式效果:

数据

绘图教程

绘制左边Y轴

绘制主、次网格和主、次刻度的极坐标区域。

添加刮风数据,添加数据和颜色、图列大小映射关系。

颜色条绘制​​​​​​​

添加图列绘制​​​​​​​

绘图工具箱介绍

默认绘图​​​​​​​

刻度颜色设置​​​​​​​

刻度方向和长短设置,其中刻度方向有:'in'|'out'|'both'‍。​​​​​​​

网格设置:主、次网格的颜色、粗细、透明度设置。

背景颜色设置​​​​​​​

图列设置​​​​​​​

颜色条设置

WindRosePlot类函数

属性:

方法:


扫一扫关注公众号

效果图

粉丝给的图:

图片

复刻的图:

图片

其他样式效果:

图片

数据

数据包含:风向、刮风频率、最大风速、平均风速四个数据。

windDirections = [0.0, 22.5, 45.0, 67.5, 90.0, 112.5, 135.0, 157.5, 180.0, 202.5, 225.0, 247.5, 270.0, 292.5, 315.0, 337.5]';
windFrequency = [10.2, 4, 4, 3.0, 4.0, 3.0, 4.0, 4.0, 7.0, 6.0, 3, 2, 2, 1.0, 3, 5]';
maxWindSpeed = [15, 12, 10, 5, 5, 5,10, 12, 13, 15, 12,5, 5, 10, 12,  15]';
avgWindSpeed = [2.8, 2.0, 1.5, 1.2, 1.4, 1.3, 1.45, 2.00, 2.80, 2.80, 1.50, 1.00, 1.0, 1.0, 1.8, 2.0]';
data=[windDirections,windFrequency,maxWindSpeed,avgWindSpeed];

数据长成这样的

图片

绘图教程

绘制左边Y轴

% 设置基础参数
maxRadius = ceil(max(windFrequency));
minRadius = round(maxRadius / 10);
dfT=unique(diff(windDirections));
allTheta = 0:0.01:360;
% 创建并配置坐标轴
fig=figure('Color',[1,1,1]);
ax = gca;
hold on; box off; grid off; axis equal;
ax.YLim = [-maxRadius, maxRadius];
ax.YMinorTick = 'on';
ax.XColor = 'none';
ax.XDir = 'normal';
ax.TickDir = 'out';
ax.LineWidth = 1.5;
majorTicksY = ax.YTick;
minorTicksY = (majorTicksY(1:end-1) + majorTicksY(2:end)) / 2;
diffTicks = unique(diff(majorTicksY));
maxRadius=max(ax.YTick)+diffTicks/2;
ax.YLim = [-maxRadius, maxRadius];%重新设定
ax.YAxis.MinorTickValues = [minorTicksY(1)-diffTicks, minorTicksY, minorTicksY(end)+diffTicks];
ax.YTickLabel = arrayfun(@(y) sprintf('%d', abs(y)), majorTicksY, 'UniformOutput', false);
ax.YLabel.String='风向频率(%)';

图片

绘制主、次网格和主、次刻度的极坐标区域。​​​​​​​

% 绘制主要的极坐标网格线
majorRadius = majorTicksY(majorTicksY > minRadius);
for i = 1:length(majorRadius)
    [xMajor, yMajor] = pol2cart(deg2rad(allTheta), majorRadius(i));
    plot(xMajor, yMajor, '-', 'Color', [0 0 0], 'LineWidth', 0.5);
end
majorTheta = windDirections;
fullRadius = linspace(minRadius, maxRadius, 1000);
for i = 1:length(majorTheta)
    [xMajorT, yMajorT] = pol2cart(deg2rad(majorTheta(i)), fullRadius);
    plot(xMajorT, yMajorT, '-', 'Color', [0.8 0.8 0.8], 'LineWidth', 1.2);
end
% 绘制次要的极坐标网格线
minorRadius = minorTicksY(minorTicksY > minRadius);
for i = 1:length(minorRadius)
    [xMinor, yMinor] = pol2cart(deg2rad(allTheta), minorRadius(i));
    plot(xMinor, yMinor, ':', 'Color', [0.55 0.55 0.55], 'LineWidth', 0.8);
end
minorTheta=windDirections+dfT/2;
% minorTheta = 11.25:22.5:360;
for i = 1:length(minorTheta)
    [xMinorT, yMinorT] = pol2cart(deg2rad(minorTheta(i)), fullRadius);
    plot(xMinorT, yMinorT, '-.', 'Color', [0.55 0.55 0.55]);
end
% 绘制最外层的极坐标线
[xOuter, yOuter] = pol2cart(deg2rad(allTheta), maxRadius);
plot(xOuter, yOuter, '-', 'Color', 'k', 'LineWidth', 2);
% 主刻度线
mainTickTheta= windDirections+dfT;
% mainTickTheta = 0:22.5:360;
tickRadius = [maxRadius*0.96, maxRadius];
for i = 1:length(mainTickTheta)
    [xMainTick, yMainTick] = pol2cart(deg2rad(mainTickTheta(i)), tickRadius);
    plot(xMainTick, yMainTick, '-', 'Color', [0, 0, 0], 'LineWidth', 1.5);
end
% 次刻度线
minorTickTheta=windDirections+dfT/2;
% minorTickTheta = 11.25:22.5:360;
tickRadiusMinor = [maxRadius*0.98, maxRadius];
for i = 1:length(minorTickTheta)
    [xMinorTick, yMinorTick] = pol2cart(deg2rad(minorTickTheta(i)), tickRadiusMinor);
    plot(xMinorTick, yMinorTick, '-', 'Color', [0 0 0], 'LineWidth', 1.5);
end
% 添加主刻度外的标签
labelDist = maxRadius *(1+ 0.094); % 设定标签距离为最大半径(1+ 0.094),可以根据需要进行调整
for i = 1:length(majorTheta)
    adjustedAngle = majorTheta(i); % 从正北方开始,并且顺时针增加 % 从正北方开始,并且顺时针增加
    angle = mod(adjustedAngle, 360); % 确保角度在0-360之间
    [xLabel, yLabel] = pol2cart(deg2rad(90-adjustedAngle), labelDist);
    labelText = sprintf('%.1f°', angle);
    text(xLabel, yLabel, labelText, 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle');
end

图片

添加刮风数据,添加数据和颜色、图列大小映射关系。​​​​​​​

adjustedWindDirections = 360 - windDirections;
[xWind, yWind] = pol2cart(deg2rad(adjustedWindDirections + 90), windFrequency);
colorGradient = [0.0078, 0.0941, 0.7333; 0.9725, 0.0039, 0.5216];
colorMapMajor = makeColorMap(colorGradient, length(windDirections));
% 根据风速大小对颜色进行排序
[~, idx] = sort(maxWindSpeed, 'Ascend');
sortedColorMap = colorMapMajor(idx, :);
% 对于相同的风速值,使用第一个出现的颜色值为其赋色
uniqueSpeeds = unique(maxWindSpeed, 'stable');
for i = 1:length(uniqueSpeeds)
    currentSpeed = uniqueSpeeds(i);
    indices = find(maxWindSpeed == currentSpeed);
    if length(indices) > 1
        sortedColorMap(indices, :) = repmat(sortedColorMap(indices(1), :), length(indices), 1);
    end
end
maxWind = max(maxWindSpeed);
desiredMaxSize=max(avgWindSpeed);
desiredMinSize=min(avgWindSpeed);
for i = 1:length(windDirections)
    color = getColorForSpeed(maxWindSpeed(i), maxWind , colorMapMajor);
    s = mapToMarkerSize(avgWindSpeed(i), desiredMaxSize, desiredMinSize);
    plot(xWind(i), yWind(i), 'o', 'LineWidth', 1.2, 'MarkerSize',s, ...
        'MarkerEdgeColor', 'k', 'MarkerFaceColor', color);
end

图片

颜色条绘制​​​​​​​

colorMapMinor = makeColorMap(colorGradient, 10);
colormap(colorMapMinor);
cBar = colorbar;
cBar.Position = [.9 .1 .04 .36];
cBar.LineWidth = 1.2;
cBar.TickLength = 0.025;
cBar.Ticks = linspace(floor(min(maxWindSpeed)),ceil(max(maxWindSpeed)),11);
% cBar.Ticks =linspace(minWindSpeed, maxWindSpeed, 11);
tickLabels = arrayfun(@(x) sprintf('%.1f', x), cBar.Ticks, 'UniformOutput', false);
cBar.TickLabels = tickLabels;
cBar.TickDirection = 'both';
colorBarTitle = title(cBar, '最大风速(m/s)');
caxis([floor(min(maxWindSpeed)),ceil(max(maxWindSpeed))]);
AxSize=axes(fig,'Position',[.86 0.55 .1 .36],'Color',[1,1,1]);
title(AxSize,'平均风速(m/s)')
AxSize.XColor='none';
AxSize.YColor='none';
meanRLabel=linspace(ceil(0.3),ceil(2.6),5);

图片

添加图列绘制​​​​​​​

% 定义半径和距离
legR=linspace(ceil(min(avgWindSpeed)),ceil(max(avgWindSpeed)),5);
d =ceil(ceil(max(avgWindSpeed))/2);
% 计算每个圆的中心位置
legY = zeros(1, length(legR));
totalHeight = sum(2.*legR) + d*(length(legR)-1);
legY(1) = totalHeight/2 - legR(1);
for i = 2:length(legR)
    legY(i) = legY(i-1) - 2*legR(i-1) - d;
end
% 绘制圆形
hold on;
for i = 1:length(legR)
    rectangle('Position',[-legR(i), legY(i)-legR(i), 2*legR(i), 2*legR(i)], 'Curvature', [1, 1],'LineWidth',1);
    text(max(legR) + 0.6, legY(i), sprintf('%.1f', legR(i)));
end
axis equal;
xlim([-max(legR) max(legR)]);
ylim([legY(end)-legR(end) legY(1)+legR(1)]);
hold off;

图片

绘图工具箱介绍

默认绘图​​​​​​​

figure('name','默认绘图')
w=WindRosePlot(data);
w.plot();

图片

刻度颜色设置​​​​​​​

figure('name','设置刻度颜色')
w=WindRosePlot(data);
w.AxisColor=[0,0,1];
w.AxisLineWidth=2;
w.plot();

图片

刻度方向和长短设置,其中刻度方向有:'in'|'out'|'both'‍。​​​​​​​

figure('name','设置刻度方向、长短')
w=WindRosePlot(data);
w.AxisMainTickDir='both';
w.AxisMinorTickDir='out';
w.AxisColor=[1,0,0];
w.AxisLineWidth=2;
w.AxisTickLength=0.08;
w.plot();

图片

网格设置:主、次网格的颜色、粗细、透明度设置。

figure('name','主、次网格样式、颜色、粗细、透明度')
w=WindRosePlot(data);
w.RGrid='on';
w.RGridLineStyle='-.';
w.RGridColor=[1,0,0];
w.RGridAlpha=0.5;
w.RGridLineWidth=1.5;

w.ThetaGrid='on';
w.ThetaGridLineStyle='--';
w.ThetaGridColor=[0,1,0];
w.ThetaGridAlpha=0.5;
w.ThetaGridLineWidth=2;

w.MinorRGrid='on';
w.MinorRGridLineStyle='-';
w.MinorRGridColor=[1,1,0];

w.MinorThetaGrid='on';
w.MinorThetaGridLineStyle=':';
w.MinorThetaGridColor=[0,0,1];
w.plot();

图片

背景颜色设置​​​​​​​

figure('name','背景颜色')
w=WindRosePlot(data);
w.ColorMaps=hsv;
w.AxisBackgroundColor=[1,1,1]*0.10;
w.AxisFaceAlpha=0.1;
w.plot();

图片

图列设置​​​​​​​

figure('name','图列设置:title设置、背景色、边缘色、边缘粗细、字体属性')
w=WindRosePlot(data);
w.LegendTitle='图列设置Title';
w.LegendBackgroundColor=[1,.9,.8]*.98;
w.LegendEdgeColor='m';
w.LegendLineWidth=4;
w.LegendFontName='Times new Roman';
w.LegendFontSize=16;
w.LegendFontAngle='normal';
w.LegendFontWeight='bold';%加粗
w.plot();

图片

颜色条设置

figure('name','颜色条设置')
w=WindRosePlot(data);
% load('colorsData/acton100.mat')
% load('colorsData/bwr.mat')
% load('colorsData/vikO100.mat')
% w.ColorMaps=colorsList;
% w.ColorMaps=hsv;
% w.ColorMaps=bone;
% w.ColorMaps=jet;
% w.ColorMaps=winter;
w.ColorMaps=spring;
w.ColorMapsTitle='颜色条 Title测试';
w.ColorMapsFontSize=14;
w.ColorMapsFontAngle='italic';
w.plot();
 

图片

图片

图片

图片

图片

图片

WindRosePlot类函数

收藏=学会

classdef WindRosePlot
    % ------------------------------------------------
    %  @Author:  好玩的 MATLAB.
    %  @E-mail:  2377389590@qq.com
    %  @WeChat:  idmatlab
    %  @Date:    Oct 30, 2023.
    %  @Version: Matlab R2022b.
    %  % #Respect the fruits of labor. Please note the tweet link and official account name when reprinting. Commercial use is strictly prohibited.
    %  Example:
    %     windDirections = [0.0, 22.5, 45.0, 67.5, 90.0, 112.5, 135.0, 157.5, 180.0, 202.5, 225.0, 247.5, 270.0, 292.5, 315.0, 337.5]';
    %     windFrequency = [10.2, 4, 4, 3.0, 4.0, 3.0, 4.0, 4.0, 7.0, 6.0, 3, 2, 2, 1.0, 3, 5]';
    %     maxWindSpeed = [15, 12, 10, 5, 5, 5,10, 12, 13, 15, 12,5, 5, 10, 12,  15]';
    %     avgWindSpeed = [2.8, 2.0, 1.5, 1.2, 1.4, 1.3, 1.45, 2.00, 2.80, 2.80, 1.50, 1.00, 1.0, 1.0, 1.8, 2.0]';
    %     % dataT = table(windDirections, windFrequency, maxWindSpeed, avgWindSpeed, 'VariableNames', {'风向', '频率', '最大风速', '平均风速'});
    %     data=[windDirections,windFrequency,maxWindSpeed,avgWindSpeed];
    %     w=WindRosePlot(data);
    %     w.plot();
    %-------------------------------------------------
    properties
        fig
        %
        WindDirections;     %风向
        WindFrequency;      %刮风频率
        MaxWindSpeed;       %最大风速
        AvgWindSpeed;       %平均风速
        %
        RGrid='on';         %显示主 r 轴网格线
        ThetaGrid='on';     %显示主 Theta 轴网格线
        MinorRGrid='on';    %显示次 r 轴网格线
        MinorThetaGrid='on';%显示次 Theta 轴网格线
        %
        YLabel='风向频率(%)';
        %  R主网格样式
        RGridLineStyle='-';
        RGridColor=[0,0,0];
        RGridAlpha=1;
        RGridLineWidth=0.5;
        % Theta 主网格样式
        ThetaGridLineStyle='-';
        ThetaGridColor=[0.8 0.8 0.8];
        ThetaGridAlpha=1;
        ThetaGridLineWidth=1.2;
        % R次网格样式
        MinorRGridLineStyle=':';
        MinorRGridColor=[0.55 0.55 0.55];
        MinorRGridAlpha=1;
        MinorRGridLineWidth=0.8;
        % Theta 次网格样式
        MinorThetaGridLineStyle='-.'
        MinorThetaGridColor=[0.55 0.55 0.55];
        MinorThetaGridAlpha=1;
        MinorThetaGridLineWidth=1.2;
        % 刻度样式
        AxisColor=[0,0,0];
        AxisLineWidth=1.5;
        AxisMainTickDir='in';
        AxisMinorTickDir='in';
        AxisTickLength=0.04;
        AxisTickFontSize=12;
        AxisTickFontWeight='normal'%'normal'|'bold'
        AxisTickFontName='Times new Roman';
        AxisFaceAlpha=0.5;
        AxisBackgroundColor=[1,1,1];
        % 颜色条
        ColorMaps=[0.0078, 0.0941, 0.7333; 0.9725, 0.0039, 0.5216];
        ColorMapsTitle='最大风速(m/s)';
        ColorMapsFontName='Times new Roman';
        ColorMapsFontSize=12;
        ColorMapsFontAngle='normal';%'normal' | 'italic'。
        ColorMapsFontWeight='normal'; %'normal'|'bold'
        %legend 图列
        LegendTitle='平均风速(m/s)';
        LegendBackgroundColor=[1,1,1]*.95;
        LegendEdgeColor='none';
        LegendLineWidth=1;
        LegendFontName='Times new Roman';
        LegendFontAngle='italic';%'normal' | 'italic'。
        LegendFontSize=12;
        LegendFontWeight='normal';
        LegendRotation=0;
    end
    methods
        function  obj =WindRosePlot(data)
            obj.fig=gcf;
            obj.fig.Color=[1,1,1];
            obj.WindDirections = data(:,1);
            obj.WindFrequency = data(:,2);
            obj.MaxWindSpeed = data(:,3);
            obj.AvgWindSpeed =data(:,4);
            %-------------------------
            obj.RGrid='on';         obj.RGridLineStyle='-';          obj.RGridColor=[0,0,0];                  obj.RGridAlpha=1;         obj.RGridLineWidth=0.5;
            obj.ThetaGrid='on';     obj.ThetaGridLineStyle='-';      obj.ThetaGridColor=[0.8 0.8 0.8];        obj.ThetaGridAlpha=1;     obj.ThetaGridLineWidth=1.2;
            obj.MinorRGrid='on';    obj.MinorRGridLineStyle=':';     obj.MinorRGridColor=[0.55 0.55 0.55];    obj.MinorRGridAlpha=1;    obj.MinorRGridLineWidth=0.8;
            obj.MinorThetaGrid='on';obj.MinorThetaGridLineStyle='-.';obj.MinorThetaGridColor=[0.55 0.55 0.55];obj.MinorThetaGridAlpha=1;obj.MinorThetaGridLineWidth=1.2;
            obj.ColorMaps = [0.0078, 0.0941, 0.7333; 0.9725, 0.0039, 0.5216];
        end
        function plot(obj)
            maxRadius = ceil(max(obj.WindFrequency));
            minRadius = round(maxRadius / 10);
            dfT=unique(diff(obj.WindDirections));
            allTheta = 0:0.01:360;
            ax = gca;
            hold on; box off; grid off; axis equal;
            ax.YLim = [-maxRadius, maxRadius];
            ax.YMinorTick = 'on';
            ax.XColor = 'none';
            ax.XDir = 'normal';
            ax.TickDir = 'out';
            ax.LineWidth = obj.AxisLineWidth;
            ax.YColor=obj.AxisColor;
            majorTicksY = ax.YTick;
            minorTicksY = (majorTicksY(1:end-1) + majorTicksY(2:end)) / 2;
            diffTicks = unique(diff(majorTicksY));
            maxRadius=max(ax.YTick)+diffTicks/2;
            ax.YLim = [-maxRadius, maxRadius];%重新设定
            ax.YAxis.MinorTickValues = [minorTicksY(1)-diffTicks, minorTicksY, minorTicksY(end)+diffTicks];
            ax.YTickLabel = arrayfun(@(y) sprintf('%d', abs(y)), majorTicksY, 'UniformOutput', false);
            ax.YLabel.String=obj.YLabel;
            % =============绘制主要R Theta的极坐标网格线===============================
            %  # RGrid
            majorRadius = majorTicksY(majorTicksY > minRadius);
            if strcmpi(obj.RGrid,'on')
                for i = 1:length(majorRadius)
                    [xMajor, yMajor] = pol2cart(deg2rad(allTheta), majorRadius(i));
                    plot(xMajor, yMajor,'LineStyle',obj.RGridLineStyle,'Color', [obj.RGridColor obj.RGridAlpha], 'LineWidth',obj.RGridLineWidth);
                end
            elseif strcmpi(obj.RGrid,'off')
            end
            %   # ThetaGrid
            majorTheta = obj.WindDirections;
            fullRadius = linspace(minRadius, maxRadius, 1000);
            if strcmpi(obj.ThetaGrid,'on')
                for i = 1:length(majorTheta)
                    [xMajorT, yMajorT] = pol2cart(deg2rad(majorTheta(i)), fullRadius);
                    plot(xMajorT, yMajorT, 'LineStyle',obj.ThetaGridLineStyle, 'Color', [obj.ThetaGridColor obj.ThetaGridAlpha], 'LineWidth', obj.ThetaGridLineWidth);
                end
            elseif  strcmpi(obj.ThetaGrid,'off')
            end
            % 绘制次要R Theta的极坐标网格线
            %   # MinorRGrid
            if strcmpi(obj.MinorRGrid,'on')
                minorRadius = minorTicksY(minorTicksY > minRadius);
                for i = 1:length(minorRadius)
                    [xMinor, yMinor] = pol2cart(deg2rad(allTheta), minorRadius(i));
                    plot(xMinor, yMinor, 'LineStyle',obj.MinorRGridLineStyle,'Color', [obj.MinorRGridColor obj.MinorRGridAlpha], 'LineWidth',obj.MinorRGridLineWidth);
                end
            elseif strcmpi(obj.MinorRGrid,'off')
            end
            %   # MinorThetaGrid
            minorTheta=obj.WindDirections+dfT/2;
            if strcmpi(obj.MinorThetaGrid,'on')
                for i = 1:length(minorTheta)
                    [xMinorT, yMinorT] = pol2cart(deg2rad(minorTheta(i)), fullRadius);
                    plot(xMinorT, yMinorT, 'LineStyle',obj.MinorThetaGridLineStyle, 'Color', [obj.MinorThetaGridColor obj.MinorThetaGridAlpha], 'LineWidth', obj.MinorThetaGridLineWidth);
                end
            elseif strcmpi(obj.MinorThetaGrid,'off')
            end
            % ===================绘制刻度===============================
            % 绘制最外层的极坐标线
            [xOuter, yOuter] = pol2cart(deg2rad(allTheta), max(ax.YTick)+diffTicks/2);
            plot(xOuter, yOuter, '-', 'Color',obj.AxisColor, 'LineWidth', obj.AxisLineWidth);
            fill(xOuter, yOuter,obj.AxisBackgroundColor,'EdgeColor','none','FaceAlpha',obj.AxisFaceAlpha)
            % #主刻度
            if obj.AxisTickLength > 1 || obj.AxisTickLength <= 0
                error('TickLength must be less than 1 and greater than 0.');
            end
            if strcmpi(obj.AxisMainTickDir,'in')
                tickRadius = [maxRadius*(1-obj.AxisTickLength), maxRadius];
            elseif strcmpi(obj.AxisMainTickDir,'out')
                tickRadius = [ maxRadius,maxRadius*(1+obj.AxisTickLength)];
            elseif strcmpi(obj.AxisMainTickDir,'both')
                tickRadius = [maxRadius*(1-obj.AxisTickLength) maxRadius*(1+obj.AxisTickLength)];
            else
                error('Invalid value for mainTickDir. It should be "in", "out", or "both".');
            end
            mainTickTheta= obj.WindDirections+dfT;
            for i = 1:length(mainTickTheta)
                [xMainTick, yMainTick] = pol2cart(deg2rad(mainTickTheta(i)), tickRadius);
                plot(xMainTick, yMainTick, '-', 'Color', obj.AxisColor, 'LineWidth', obj.AxisLineWidth);
            end
            disp(char([20844 20247 21495 58 22909 29609 30340 77 97 116 108 97 98]))
            % #次刻度
            if strcmpi(obj.AxisMinorTickDir,'in')
                tickRadiusMinor = [maxRadius*(1-obj.AxisTickLength/2), maxRadius];
            elseif strcmpi(obj.AxisMinorTickDir,'out')
                tickRadiusMinor = [ maxRadius maxRadius*(1+obj.AxisTickLength/2)];
            elseif strcmpi(obj.AxisMinorTickDir,'both')
                tickRadiusMinor = [maxRadius*(1-obj.AxisTickLength/2), maxRadius*(1+obj.AxisTickLength/2)];
            else
                error('Invalid value for mainTickDir. It should be "in", "out", or "both".');
            end
            minorTickTheta=obj.WindDirections+dfT/2;
            for i = 1:length(minorTickTheta)
                [xMinorTick, yMinorTick] = pol2cart(deg2rad(minorTickTheta(i)), tickRadiusMinor);
                plot(xMinorTick, yMinorTick, '-', 'Color', obj.AxisColor, 'LineWidth', obj.AxisLineWidth*0.8);
            end
            % ==========添加主刻度外的标签===========================
            labelDist = maxRadius *(1+ 0.094); % 设定标签距离为最大半径(1+ 0.094),可以根据需要进行调整
            for i = 1:length(majorTheta)
                adjustedAngle = majorTheta(i); % 从正北方开始,并且顺时针增加 % 从正北方开始,并且顺时针增加
                angle = mod(adjustedAngle, 360); % 确保角度在0-360之间
                [xLabel, yLabel] = pol2cart(deg2rad(90-adjustedAngle), labelDist);
                labelText = sprintf('%.1f°', angle);
                text(xLabel, yLabel, labelText, 'HorizontalAlignment', 'center', ...
                    'VerticalAlignment', 'middle', ...
                    'FontSize',obj.AxisTickFontSize,'FontWeight',obj.AxisTickFontWeight,'FontName',obj.AxisTickFontName, ...
                    'Color',obj.AxisColor);
            end
            %==================添加数据========================
            adjustedWindDirections = 360 - obj.WindDirections;
            [xWind, yWind] = pol2cart(deg2rad(adjustedWindDirections + 90), obj.WindFrequency);
            colorMapMajor = obj.makeColorMap(obj.ColorMaps, length(obj.WindDirections));
            % 根据风速大小对颜色进行排序
            [~, idx] = sort(obj.MaxWindSpeed, 'Ascend');
            sortedColorMap = colorMapMajor(idx, :);
            %对于相同的风速值,使用第一个出现的颜色值为其赋色
            uniqueSpeeds = unique(obj.MaxWindSpeed, 'stable');
            for i = 1:length(uniqueSpeeds)
                currentSpeed = uniqueSpeeds(i);
                indices = find(obj.MaxWindSpeed == currentSpeed);
                if length(indices) > 1
                    sortedColorMap(indices, :) = repmat(sortedColorMap(indices(1), :), length(indices), 1);
                end
            end
            maxWind = max(obj.MaxWindSpeed);
            desiredMaxSize=max(obj.AvgWindSpeed);
            desiredMinSize=min(obj.AvgWindSpeed);
            for i = 1:length(obj.WindDirections)
                color = obj.getColorForSpeed(obj.MaxWindSpeed(i), maxWind , colorMapMajor);
                s = obj.mapToMarkerSize(obj.AvgWindSpeed(i), desiredMaxSize, desiredMinSize);
                plot(xWind(i), yWind(i), 'o', 'LineWidth', 1.2, 'MarkerSize',s,...
                    'MarkerEdgeColor', 'k', 'MarkerFaceColor', color);
            end
            % ================添加 colorbar======================================
            colorMapMinor = obj.makeColorMap(obj.ColorMaps, 10);
            colormap(colorMapMinor);
            cBar = colorbar;
            cBar.Position = [.9 .1 .04 .36];
            cBar.LineWidth = 1.2;
            cBar.TickLength = 0.025;
            cBar.Ticks = linspace(floor(min(obj.MaxWindSpeed)),ceil(max(obj.MaxWindSpeed)),11);
            tickLabels = arrayfun(@(x) sprintf('%.1f', x), cBar.Ticks, 'UniformOutput', false);
            cBar.TickLabels = tickLabels;
            cBar.TickDirection = 'both';
            caxis([floor(min(obj.MaxWindSpeed)),ceil(max(obj.MaxWindSpeed))]);
            title(cBar, obj.ColorMapsTitle);
            cBar.FontName= obj.ColorMapsFontName;
            cBar.FontSize=obj.ColorMapsFontSize;
            cBar.FontAngle= obj.ColorMapsFontAngle;
            cBar.FontWeight=obj.ColorMapsFontWeight; %'normal'|'bold'
            % ===============添加 Legend=======================================
            legAx=axes(obj.fig,'Position',[.86 0.55 .1 .36],'Color',[1,1,1],'Box','on');
            title(legAx,obj.LegendTitle)
            legAx.Color=obj.LegendBackgroundColor;
            legAx.XColor=obj.LegendEdgeColor;legAx.YColor=obj.LegendEdgeColor;
            legAx.XTick=[];legAx.YTick=[];
            legAx.TickLength=[0 0];
            legAx.LineWidth=obj.LegendLineWidth;

            % 定义半径和距离
            legR=linspace(ceil(min(obj.AvgWindSpeed)),ceil(max(obj.AvgWindSpeed)),5);
            d =ceil(ceil(max(obj.AvgWindSpeed))/2);
            legY = zeros(1, length(legR));
            totalHeight = sum(2.*legR) + d*(length(legR)-1);
            legY(1) = totalHeight/2 - legR(1);
            for i = 2:length(legR)
                legY(i) = legY(i-1) - 2*legR(i-1) - d;
            end
            % 绘制圆形
            hold on;
            for i = 1:length(legR)
                rectangle('Position',[-legR(i), legY(i)-legR(i), 2*legR(i), 2*legR(i)], 'Curvature', [1, 1],'LineWidth',1.5,'FaceColor', 'white');
                text(max(legR) + 0.9, legY(i), sprintf('%.1f', legR(i)), ...
                    "FontName",obj.LegendFontName,"FontSize",obj. LegendFontSize,'FontAngle',obj.LegendFontAngle, ...
                    'FontWeight',obj.LegendFontWeight,'Rotation',obj.LegendRotation);
            end
            axis equal;
            xlim([-max(legR)*1.2 max(legR)*1.2]);
            ylim([(legY(end)-legR(end))*1.1 (legY(1)+legR(1))*1.1]);
            hold off;
        end
    end
    methods(Access=private)
        function color = getColorForSpeed(obj,speed, maxSpeed, colorMap)
            idx = round((speed / maxSpeed) * size(colorMap, 1));
            idx = min(max(idx, 1), size(colorMap, 1)); % 保证idx在正确的范围内
            color = colorMap(idx, :);
        end
        function s = mapToMarkerSize(obj,speed, maxSize, minSize)
            normalized = (speed - minSize)/(maxSize -minSize);
            s = minSize + normalized * (maxSize - minSize);
            s=s*10;
        end
        function cMap=makeColorMap(obj,colorlist,num)
            color.Num= num;
            color.list=colorlist;
            for col=1:size(color.list,2)
                x=1:size(color.list,1);
                xi=linspace(1,size(color.list,1),color.Num);
                color.map(:,col)=interp1(x,color.list(:,col),xi);
            end
            cMap=color.map;
        end
    end
end

属性:

  • fig:存储图形的句柄。

  • WindDirections:风向数据。

  • WindFrequency:刮风频率。

  • MaxWindSpeed:最大风速数据。

  • AvgWindSpeed:平均风速数据。

  • RGrid,ThetaGrid,MinorRGrid,MinorThetaGrid:这些属性用于控制是否显示对应的网格线。

  • YLabel:Y轴标签。

  • 还有许多其他的属性,例如RGridLineStyle,RGridColor等,用于控制图形的样式和外观。

方法:

  1. 构造函数WindRosePlot:当创建WindRosePlot类的对象时,此构造函数将被调用。构造函数接收风玫瑰数据作为输入,并初始化类的属性。此外,还设置了默认的图形样式。

  2. plot方法:这个方法用于绘制风玫瑰图。它首先设置坐标轴和极坐标的属性。接下来,它会绘制主要和次要的R和Theta网格线。然后,它绘制刻度。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1190105.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

在mac上使用jmap -heap命令报错:Attaching to process ID 96530, please wait...

在mac上执行命令jmap -heap 96530 报错&#xff1a; Attaching to process ID 96530, please wait... ERROR: attach: task_for_pid(96530) failed: (os/kern) failure (5) Error attaching to process: sun.jvm.hotspot.debugger.DebuggerException: Cant attach to the proc…

数据结构(超详细讲解!!)第二十二节 广义表

1.定义 广义表&#xff0c;顾名思义&#xff0c;也是线性表的一种推广。广义表被广泛地应用于人工智能等领域的表处理语言LISP语言中。在LISP语言中&#xff0c;广义表是一种最基本的数据结构&#xff0c;就连LISP 语言的程序也表示为一系列的广义表。 广义表又称列表&#x…

【Mysql】去重(distinct)

目录 distinct 单字段 多字段 统计&#xff08; count ) distinct name为张三的有5条数据并且重复 单字段 语法&#xff1a; select distnct 字段名 from 表 这里的去重并不是删掉重复 多字段 select distinct 字段名1&#xff0c;字段名2 from 表 统计&#xff08; coun…

2020 ICPC 澳门(G,J,I)详解

链接&#xff1a;The 2020 ICPC Asia Macau Regional Contest G Game on Sequence 题意 给定长度为 n n n 数组 a i a_i ai​&#xff0c;A与G博弈&#xff0c;G先手&#xff0c;给定初始位置 k k k&#xff0c;若当前在 i i i 点转移到 j j j&#xff0c;满足 i <…

Google play的企业开发者账号比个人号上包成功率更高?

众所周知&#xff0c;Google play作为全球最大的Android应用市场&#xff0c;是开发者们推广应用的首选平台。Google play平台提供了两种账号类型&#xff1a;个人开发者和企业开发者&#xff0c;开发者们可以选择创建个人开发者账号或者企业开发者账号进行应用上架。 不过&am…

NR DCI size alignment

DCI对齐在38.212 7.3.1.0 DCI size alignment 中讲述。 Step 0 CSS 下&#xff0c;DCI 0_0根据初始UL BWP 确定大小&#xff0c;DCI 1_0 根据CORESET0 或初始DL BWP&#xff08;没有CORESET 0时&#xff09; 确定大小 根据激活的UL/DL BWP 确定DCI 0_0和DCI 1_0 的size&…

图的算法

拓扑排序算法 解析 要求&#xff1a;无环有向图 编译过程使用的是拓扑排序。A依赖BCD&#xff0c;在BCD三个文件编译完成才能引入A&#xff1b;B依赖ECD&#xff0c;在ECD三个文件编译完成才能引入B。拓扑排序排出整体的编译顺序E→CD→B→A 算法实现 找到整个图入度为0的点&…

《第三期(先导课)》之《Python 开发环境搭建》

文章目录 《第 1 节 初始Python》《第 6 节 pip包管理工具》 《第 1 节 初始Python》 。。。 《第 6 节 pip包管理工具》 pip是Python的包管理工具,用于安装、升级和管理Python包。 pip是Python标准库之外的一个第三方工具,可以从Python Package Index(PyPI)下载和安装各种P…

频次最高的38道selenium面试题及答案

1、selenium的原理是什么&#xff1f; selenium的原理涉及到3个部分&#xff0c;分别是&#xff1a; 浏览器driver&#xff1a;一般我们都会下载driverclient&#xff1a;也就是我们写的代码 client其实并不知道浏览器是怎么工作的&#xff0c;但是driver知道&#xff0c;在…

机器学习中的决策阈值

什么是决策阈值&#xff1f; sklearn不允许我们直接设置决策阈值&#xff0c;但它允许我们访问用于进行预测的决策分数&#xff08;决策函数o/p&#xff09;。我们可以从决策函数输出中选择最佳得分并将其设置为决策阈值&#xff0c;并且将小于该决策阈值的所有那些决策得分值…

点信息标注_BillboardTextActor3D

开发环境&#xff1a; Windows 11 家庭中文版Microsoft Visual Studio Community 2019VTK-9.3.0.rc0vtk-example参考代码 demo解决问题&#xff1a;点附近创建左边或其他信息&#xff0c;且信息面板显示状态不受相机缩放、旋转影响 prj name: BillboardTextActor3D #include…

【Qt之QMetaType】使用

介绍 QMetaType类管理元对象系统中的命名类型。 该类用作QVariant和排队的信号与槽连接中类型的编组辅助器。它将类型名称与类型关联起来&#xff0c;以便可以在运行时动态创建和销毁它。使用Q_DECLARE_METATYPE()声明新类型&#xff0c;以使它们可供QVariant和其他基于模板的…

民生画派创始人张龙(天驰)作品

简介 张龙&#xff08;天驰&#xff09; 中国民生画派创始人 首届“陆俨少奖”金奖得主 人民大学巨幅主题创作高级研修班导师 中央美院客座教授 神舟十二号载人飞船遨游太空搭载作品创作者 被评为2021、2022年年度最具收藏价值艺术家 中国美术家协会会员 中国美术家协…

【CesiumJS入门】(11)加载LAS点云数据

前言 最近有两次投递简历以及面试都被问到了是否有三维点云数据处理相关的经验。然而我的岗位都没有和点云相关的工作任务&#xff0c;所以还是得自己加把劲呀。 本篇将从数据获取到加载来简易地介绍一个LAS点云数据的加载。 加载数据 首先&#xff0c;你得有一份LAS格式的…

Python实验项目6 :文件操作与模块化

1、使用random库&#xff0c;产生10个100到200之间的随机数&#xff0c;并求其最大值、平均值、标准差和中位数。 # 1、使用random库&#xff0c;产生10个100到200之间的随机数&#xff0c;并求其最大值、平均值、标准差和中位数。 import random # 定义一个列表 list[] for i …

MySQL–第4关:查询用户日活数及支付金额

MySQL–第4关&#xff1a;查询用户日活数及支付金额 – WhiteNights Site 标签&#xff1a;MySQL 非常好的题&#xff0c;爱来自中国。 题目 没啥用 任务描述 现有3张业务表&#xff0c;详见如下: 需要输出结果如下&#xff0c;没有支付的日期不需要显示&#xff0c;请写出对…

Leetcode---370周赛

题目列表 2923. 找到冠军 I 2924. 找到冠军 II 2925. 在树上执行操作以后得到的最大分数 2926. 平衡子序列的最大和 一、找到冠军I 第一题模拟题&#xff0c;简单来说是看每一行(列)是否全是1&#xff0c;当然不包括自己比自己强的情况&#xff0c;需要特判 代码如下 …

python回文日期 并输出下一个ABABBABA型回文日期

题目&#xff1a; 输入&#xff1a; 输入包含一个八位整数N&#xff0c;表示日期 对于所有的测评用例&#xff0c;10000101 ≤N≤89991231&#xff0c;保证N是一个合法日期的8位数表示 输出&#xff1a; 输出两行&#xff0c;每行一个八位数。第一行表示下一个回文日期第二…

任务管理器的正确使用教程

快捷键 Ctrlshiftesc&#xff1a;进入任务管理器 我以Win11举例 如何给XX排序 给XX排序&#xff0c;点击空白处可以选择某项降序排列&#xff08;可以找到最占用某项资料的程序&#xff09;&#xff0c;再点击空白处可以选择某项升序排列 文件正在使用&#xff0c;如何解决 …

windows系统下查看安卓apk的sha1

1.在apk所在文件夹打开cmd或者powershell 2.输入 certutil -hashfile xxx.apk SHA1 这样就可以了 3.指令格式 certutil -hashfile FileName [HashAlgorithm] certutil -hashfile&#xff1a;原样输入 FileName&#xff1a;文件名 HashAlgorithm&#xff1a;可选项包括&…