• Formula for Earth radius at any given latitude.

    From James@artisticfootprint.com@21:1/5 to All on Wed Dec 2 12:42:28 2015
    can you explain the "/180*pi" part? I see it obviously works, but what's the reasoning for it?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ian Clifton@21:1/5 to James@artisticfootprint.com on Thu Dec 3 12:20:30 2015
    James@artisticfootprint.com writes:

    can you explain the "/180*pi" part? I see it obviously works, but
    what's the reasoning for it?

    I’m not sure of the context of ths question, but surely it’s just converting degrees to radians?
    --
    Ian ◎

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From w.van.snyder@gmail.com@21:1/5 to chuckage on Thu Feb 18 18:04:52 2016
    On Tuesday, February 8, 2011 at 4:13:50 PM UTC-8, chuckage wrote:
    chuckage had written this in response to http://www.psjournal.com/gis/Re-Formula-for-Earth-radius-at-any-given-latitude-3623-.htm
    :

    Uffe Kousgaard wrote:





    -------------------------------------




    -----------------------------------------------------------------------------
    function Radius(Latitude : Degrees;
    Spheroid : Spheroid_Type) return Meters is
    e2 : long_float renames Models(Spheroid).Eccentricity_Squared;
    b : Meters renames Models(Spheroid).Semi_Minor_Axis;
    f : long_float renames Models(Spheroid).Flattening;
    boa : long_float := 1.0 - f;
    Phi : Radians := Deg_to_Rad(Latitude);
    Psi : Radians := Geocentric_Latitude(Phi, boa);
    cl : long_float;
    r : Meters;
    begin
    cl := cos(Psi);
    r := b/sqrt(1.0 - e2*cl**2);
    return r;
    end Radius;



    ##-----------------------------------------------##
    Delivered via http://www.psjournal.com/
    GPS/GIS Community
    Web and RSS access to your favorite newsgroup -
    comp.infosystems.gis - 3593 messages and counting! ##-----------------------------------------------##


    Is the latitude the geodetic latitude or the geocentric latitude?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From glauber.ludwig@gmail.com@21:1/5 to Poster Matt on Fri Jan 12 02:49:53 2018
    On Thursday, January 31, 2008 at 4:54:17 PM UTC-2, Poster Matt wrote:
    The thread 'distance between lon and lat', at the end of last year, was interesting. Those with an interest in the subject might want to look at
    the Haversine Formula on the page linked below. I can't remember if this
    was mentioned in the thread or not, the thread is so long it'll take ages
    to check, and my useless newsgroup software won't let me search!

    Haversine Formula:
    http://www.movable-type.co.uk/scripts/gis-faq-5.1.html


    My question is slightly different. The mean radius of the Earth is approx. 6,372 km, but what formula is used to calculate the radius of the Earth
    for any given latitude?

    I wish my trig was up to working this out but I'm just a humble computer scientist with no degree in math.

    Thank you all for any help in this.

    Hello. You could use this online tool.

    https://rechneronline.de/earth-radius/

    It has also the formula for any latitude, so you can create a function.

    If you get the poles and equator radius (6,356.752 km and 6,378.137 km) from this website, you can see you get the same value as you can see in this page https://en.wikipedia.org/wiki/Earth_radius#Global_average_radii.

    So I think the formula is correct!

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)