Hi,
I found that you append the first column of magnitude data to the end of the range azimuth magnitude matrix. The matrix is then transposed and flipped upside down. Does the appending of the first column to the end not cause the coordinates to be more closely spaced than they actually are? Here is the code:
mag_data_dynamic = squeeze(abs(radar_data_angle_range_dynamic(indices_1D+1,[1:end 1])));
mag_data_static = squeeze(abs(radar_data_angle_range_Static(indices_1D+1,[1:end 1])));
mag_data_dynamic = mag_data_dynamic';
mag_data_static = mag_data_static';
mag_data_dynamic = flipud(mag_data_dynamic);
mag_data_static = flipud(mag_data_static);