|
|
Azimuth Elevation mapping
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: how to calculate latitude and longitude from range and direction ...This was done in the days before the MAP_PROJ_* routines were released in ... sub-routing to calculated latitude and > > longitude from slant range, elevation and azimuth ... Cylindrical Texture Co-ordinates - comp.graphics.api.opengl ...azimuth, elevation and roll - comp.graphics.api.opengl Azimuth Elevation mapping - comp.soft-sys.matlab... manually specify texture co-ordinates for a planar projection ... polar contour plot - comp.lang.idl-pvwaveHi, I have 3 arrays, a zenith angle array, a azimuth angle array and DN values ... would approach this problem by setting up a Lambert > Equal-Area map projection ... glTranslate, glRotate - comp.graphics.api.openglazimuth, elevation and roll - comp.graphics.api.opengl Hello, I am using the following code ... To place it in the 'world' it uses an offset (to the centre of the map) and ... Azimuth Elevation mapping - Newsreader - MATLAB CentralHi 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. Azimuth and Elevation for satellite dish pointingExplanation of Azimuth and Elevation ... Large scale precision maps / plans can be useful in accurately ... 7/25/2012 10:41:18 PM
|
|
|
|
|
|
|
|
|