[lat2,long2,BAZ] = FWReckon(lat1,long1,FAZ,rd,EarthRadius);
Function to compute a new LLA position given an LLA starting position, the forward Azimuth, and the down range using Great Circles.
|
Parameters |
Description |
|
lat1 [vector] |
Starting latitude in degrees |
|
long1 [vector] |
Starting longitude in degrees |
|
FAZ [vector] |
Forward Azimuth in degrees (Azimuth from starting position to the new position) |
|
rd [vector] |
Desired down range (m) |
|
EarthRadius [scalar/vector] |
Earth Radius, single geometric earth radius (m) or 2 element vector, [Equatorial radius, Polar radius], of the geodetic earth radii (m) |
|
Return Values |
Description |
|
lat2 [vector] |
New latitude in degrees |
|
long2 [vector] |
New longitude in degrees |
|
BAZ [vector] |
Back Azimuth in degrees (Azimuth from new position to starting position) |
Uses T. Vincenty's method in Forward.for obtained from: ftp://www.ngs.noaa.gov/pub/pcsoft/for_inv.3d/source/forward.for
|
Copyright (c) MZA Associates 2009. All rights reserved.
|
|
What do you think about this topic? Send feedback!
|