Reputation: 1
I have a file that contains 4 values(X-start, X-end, Y-start, Y-end) that denote the X and Y ranges of a grid. These points are represented in the u-v coordinate system. However I would like to plot them in WGS84 system. Is there a mathematical formula that can help with this conversion ?
Since I had two axis (Azimuth and Elevation axes), I applied the following formula to convert each point in the grid to WGS84. This formula however is giving me really weird results.
x_vector = ( -1 * Az * (math.sin(math.sqrt( AzAz + ElEl )))) / (math.sqrt( AzAz + ElEl )) y_vector = ( El * (math.sin(math.sqrt( AzAz + ElEl )))) / (math.sqrt( AzAz + ElEl ))
Upvotes: 0
Views: 177