Displaying 1 result from an estimated 1 matches for "6378km".
Did you mean:
6378
2012 Sep 02
1
why variations in accuracy between R to ARCGIS for the same point reprojection?
...nd my
calculations are different from both R and ArcGis:
First, I calculated the radious of the Earth in two different ways:
=Re * (1 - e^2)/ (1 - e^2 *SIN(RADIANS(Latitude))^2)^(3/2)
=Re * SQRT(1 - e^2) / (1 - e^2 * (SIN(RADIANS(Latitude)))^2)
where Re is the radius of the Earth at the tropics(6378km) and e is
the eccentricity of the ellipsoid (0.081082).
According to several books I used, the position of a point in the
Y-axis in the Berhmann projection could be estimated as:
=Re*(SIN(RADIANS(Latitude))/COS(RADIANS(Spll)))
where Spll is the standard parallel, which in the Berhmann's pr...