使用什么绘图软件:具有唯一数据的2D极坐标图

时间:2014-04-28 01:15:10

标签: matlab colors plot gnuplot polar-coordinates

我的(示例)数据采用以下格式:

R_min  R_max   θ_min   θ_min   Zones

0   260 0   1.57    114
260 270 0   1.57    106
270 320 0   1.57    107

如您所见,我有从R_min到R_max创建的“区域”(区域)从theta_min扫描到theta_max。每行数据表示我想要根据区域编号用相应颜色绘制的区域。在这个简单的例子中,我上面显示的数据如下图所示:

enter image description here

我应该用什么绘图软件来完成此任务?我一直在调查以下选项:

是否有其他程序或更好的方法来编译我的数据以使我的手头任务可行?

我的真实数据集有数千行数据,并不像四分之一圆彩虹那么简单。

2 个答案:

答案 0 :(得分:2)

这是gnuplot的一种可能的解决方案。这使用circles绘图样式在具有指定半径的原点绘制重叠楔形。这要求您按最大半径下降对数据进行排序,并且没有间隙。

这是一个可能的脚本:

set xrange [0:350]
set yrange [0:350]

set size ratio -1
set style fill solid noborder
set palette defined (106 'blue', 107 'yellow', 114 'magenta')
set cbrange [106:114]
unset colorbox
plot 'test.txt' using (0):(0):2:($3*180/pi):($4*180/pi):5 with circles linecolor palette notitle

结果(用4.6.4):

enter image description here

更多评论:

  • 圆的半径以x轴为单位给出,但y轴没有相应调整。这就是为什么你必须设置xrangeyrange甚至两个轴与set size ratio -1的比率。

  • 使用调色板进行着色是一种选择,其他选项如使用linecolor variablelinecolor rgb variable,例如,在gnuplot candlestick red and green fill

  • 在Unix系统上,排序也可以在运行中进行,例如:

    plot '< sort -r test.txt' ...
    

答案 1 :(得分:1)

使用简单的三角函数和fill函数,使用Matlab实现这一点很容易:

% R_min  R_max   θ_min   θ_min   Zones
data = [
    0   260 0   1.57    114
    260 270 0   1.57    106
    270 320 0   1.57    107];

% Define a color table, indexed by the "Zones" column
colors = {};
colors{114} = [1.0 0.0 0.5];
colors{106} = [0.7 0.0 1.0];
colors{107} = [1.0 1.0 0.0];

% Define the resolution of the plot (more points = more round)
nPoints = 100;

clf;
hold on;
for i = 1:size(data, 1)
    % Extract the data from the i'th row. There's no need for this, you
    % could access it directly below, but it makes the code more clean. :)
    r_min = data(i,1);
    r_max = data(i,2);
    theta_min = data(i,3);
    theta_max = data(i,4);
    color = data(i, 5);

    % First, get the sine and cosine between theta_min and theta_max
    sin_theta = sin(linspace(theta_min, theta_max, nPoints));
    cos_theta = cos(linspace(theta_min, theta_max, nPoints));

    % Now, draw a semi-circle with radius = r_min and merge this
    % semi-circle with another with radius = r_max, but reversed, so that
    % it begins where the previous semi-circle ended.
    x = [sin_theta * r_min sin_theta(end:-1:1) * r_max];
    y = [cos_theta * r_min cos_theta(end:-1:1) * r_max];

    % Draw the polygon.
    fill(x,y, colors{color}, 'EdgeColor', colors{color});
end
hold off;
axis equal;
grid;
maxRadius = max(data(:,2));
axis([-maxRadius maxRadius -maxRadius maxRadius]);

结果:

enter image description here