Azimuth Elevation mapping

  • Follow


Hi everybody,

I've the triplet [AF,theta,phi] (AF=Array Factror), and would like to map this data into Azimuth Elevation (AZ EL) map. It means to flatten hemisphere. What kind of mapping should I do?

ejs
  
0
Reply Eyal 8/30/2010 6:33:26 AM

"Eyal Spielman" <eyal_shp@yahoo.com> wrote in message <i5fjbm$177$1@fred.mathworks.com>...
> Hi everybody,
> 
> I've the triplet [AF,theta,phi] (AF=Array Factror), and would like to map this data into Azimuth Elevation (AZ EL) map. It means to flatten hemisphere. What kind of mapping should I do?
> 
> ejs
>   

I succeed to find the answer.

First I convert to uv - plane as follows:

u=cos(phi).*sin(theta);
v=sin(phi).*sin(theta);

And afterward I convert to Azimuth/Elevation - plane as follows:

AZ=linspace(-pi/2,pi/2,length(u));
EL=linspace(-pi/2,pi/2,length(v));
u1=cos(EL)'*sin(AZ);
v1=sin(EL)'*ones(size(AZ));
AF_azel=griddata(u,v,AF,u1,v1);
0
Reply eyal_shp (5) 8/31/2010 8:31:24 AM


1 Replies
455 Views

(page loaded in 0.06 seconds)

Similiar Articles:







7/25/2012 10:41:18 PM


Reply: