POV-Ray : Newsgroups : povray.programming : oblate spheriod Server Time
19 Apr 2024 13:59:39 EDT (-0400)
  oblate spheriod (Message 1 to 5 of 5)  
From: davidafisher
Subject: oblate spheriod
Date: 15 Apr 2007 09:45:02
Message: <web.46222b9025e498faed548b310@news.povray.org>
I'm trying to emulate the earth which is an oblate spheriod - flattened
sphere.

The true earth parameters are

equatorial radius = 6378137
polar radius = 6356752.314

which gives a flattening effect of 1/298.257

The correct result does not occur by scaling the y axis of a sphere to
create the flattening. What seems a likely solution is an ellipse that is
swept around its center.

Any body have any ideas?

DF


Post a reply to this message

From: Warp
Subject: Re: oblate spheriod
Date: 15 Apr 2007 10:23:07
Message: <4622354b@news.povray.org>
davidafisher <dav### [at] coppernet> wrote:
> The correct result does not occur by scaling the y axis of a sphere to
> create the flattening.

  Why not?

-- 
                                                          - Warp


Post a reply to this message

From: Mike Williams
Subject: Re: oblate spheriod
Date: 15 Apr 2007 10:42:18
Message: <k04qSPA9mjIGFwUr@econym.demon.co.uk>
Wasn't it davidafisher who wrote:
>I'm trying to emulate the earth which is an oblate spheriod - flattened
>sphere.
>
>The true earth parameters are
>
>equatorial radius = 6378137
>polar radius = 6356752.314
>
>which gives a flattening effect of 1/298.257
>
>The correct result does not occur by scaling the y axis of a sphere to
>create the flattening. What seems a likely solution is an ellipse that is
>swept around its center.

Sweeping an ellipse around its short axis gives exactly the same result
as scaling a sphere along the y axis. In both cases the result is a true
oblate spheroid.

The Earth isn't exactly a true oblate spheroid, but the difference is
far too small to see.

In fact, you have to be sure to place your eye within 0.2 degrees of
being perfectly aligned with the centre of your monitor to have a chance
of seeing the difference between the representation of the Earth as a
sphere or as an oblate spheroid. If your eye is off centre by more than
that, then the perspective error caused by viewing the screen at a
slight angle exceeds the difference between the two shapes.

-- 
Mike Williams
Gentleman of Leisure


Post a reply to this message

From: Christian Froeschlin
Subject: Re: oblate spheriod
Date: 15 Apr 2007 10:45:25
Message: <46223a85$1@news.povray.org>
davidafisher wrote:

> I'm trying to emulate the earth which is an oblate spheriod - flattened
> sphere. The correct result does not occur by scaling the y axis of a sphere

The formula (http://mathworld.wolfram.com/OblateSpheroid.html)
certainly looks just like a sphere with a different scaling for
one axis. Of course, you can also use an isosurface, which has
the advantage that you can add terrain elevation later.

#declare RADIUS_EQUATORIAL = 6.378137;
#declare RADIUS_POLAR      = 6.356752;

isosurface
{
   #local ALPHA_INV = 1/RADIUS_EQUATORIAL;
   #local C_INV     = 1/RADIUS_POLAR;
   function  {ALPHA_INV * (pow(x,2) + pow(z,2)) + C_INV * pow(y,2) - 1}
   max_gradient 2
   contained_by { sphere {0,6.5} }
   pigment {color White}
}


Post a reply to this message

From: Thorsten Froehlich
Subject: Re: oblate spheriod
Date: 15 Apr 2007 13:06:29
Message: <46225b95$1@news.povray.org>
davidafisher wrote:
> I'm trying to emulate the earth which is an oblate spheriod - flattened
> sphere.

This is the wrong group for this question.  This group is for discussion of
the POV-Ray source code, not general questions of using POV-Ray.  Questions
about using POV-Ray should be asked/made in either povray.general or
povray.newusers.

	Thorsten, POV-Team


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.