how do I view the sun as I'm standing on earth?

Have a question about using Celestia? Check here first for FAQs and helpful advice.
Forum rules
Please help to make this forum more useful by checking the FAQs before posting! Keep it clean, keep it civil, keep it truthful, stay on topic, be responsible, share your knowledge.
Topic author
rookie37
Posts: 3
Joined: 31.07.2011
With us: 13 years 3 months

how do I view the sun as I'm standing on earth?

Post #1by rookie37 » 31.07.2011, 09:07

I'm new to Celestia. Can I plot an analemma with it? I want to draw a figure 8 and bring it into photoshop.

Avatar
Fenerit M
Posts: 1880
Joined: 26.03.2007
Age: 17
With us: 17 years 7 months
Location: Thyrrenian sea

Re: how do I view the sun as I'm standing on earth?

Post #2by Fenerit » 31.07.2011, 23:58

Not sure of this; just a midnight replay after concert. At noon in your location, let center on the sun and synchronize it. Do bookmark the situation. Open the solarsys.ssc and set the Earth's rotation = 0. Restart Celestia and take up the bookmark. Do increasw the turns ("L" key). About Photoshop, maybe you must work on situation's screendumps (layer's propriety "add" or "screen" or "darken").

EDIT LATER:
be sure that the horizon be visible through the FOV.
Never at rest.
Massimo

Avatar
Hungry4info
Posts: 1133
Joined: 11.09.2005
With us: 19 years 2 months
Location: Indiana, United States

Re: how do I view the sun as I'm standing on earth?

Post #3by Hungry4info » 01.08.2011, 00:12

Fenerit wrote:Open the solarsys.ssc and set the Earth's rotation = 0.

Don't you need to not set it at all or define a synchronous rotation? Zero would still lead to the sun going across the sky (once per year).
Current Setup:
Windows 7 64 bit. Celestia 1.6.0.
AMD Athlon Processor, 1.6 Ghz, 3 Gb RAM
ATI Radeon HD 3200 Graphics

Avatar
Fenerit M
Posts: 1880
Joined: 26.03.2007
Age: 17
With us: 17 years 7 months
Location: Thyrrenian sea

Re: how do I view the sun as I'm standing on earth?

Post #4by Fenerit » 01.08.2011, 00:21

Hungry4info wrote:
Fenerit wrote:Open the solarsys.ssc and set the Earth's rotation = 0.

Don't you need to not set it at all or define a synchronous rotation? Zero would still lead to the sun going across the sky (once per year).

Right. No synch.
Never at rest.
Massimo

abramson
Posts: 408
Joined: 22.07.2003
With us: 21 years 4 months
Location: Bariloche, Argentina

Re: how do I view the sun as I'm standing on earth?

Post #5by abramson » 02.08.2011, 19:39

My suggestion is to use a planetarium program instead, which is better suited than Celestia for these tasks. In Stellarium you advance by 1 solar day with the key = (and receed with -, or by solar weeks with [ and ]). Keep pressed and you'll see a beautiful analemma. You can't track the path, though (at least I am not aware how to do it). In Cartes du Ciel, choose "day" from the drop box of time increments, and press the animation button. (Better, set something like 7 days for faster animation.)

(Edited for errors)
Last edited by abramson on 03.08.2011, 12:50, edited 1 time in total.

Topic author
rookie37
Posts: 3
Joined: 31.07.2011
With us: 13 years 3 months

Re: how do I view the sun as I'm standing on earth?

Post #6by rookie37 » 03.08.2011, 02:59

Can you recommend some planetarium software?

abramson
Posts: 408
Joined: 22.07.2003
With us: 21 years 4 months
Location: Bariloche, Argentina

Re: how do I view the sun as I'm standing on earth?

Post #7by abramson » 03.08.2011, 12:47

As I said, Stellarium and Cartes du Ciel. Stellarium is very realistic. Cartes du Ciel is better to plan an observing session and to use at the telescope.

For the analemma, I would say Stellarium. Just set the time to local noon, face the sun, choose a wide enough field of view and press ] (or [) to add (or substract) a solar week until you are content. You can save snapshots with ctrl-s, they automatically get a file name with increasing numbers.

NOTE: My explanation in a previous message was wrong. You need to change by 1 solar day, week, etc (not sidereal). I have edited the message. I apologize.

Avatar
Marco Klunder
Posts: 181
Joined: 20.02.2008
Age: 62
With us: 16 years 9 months
Location: The Netherlands

Re: how do I view the sun as I'm standing on earth?

Post #8by Marco Klunder » 03.08.2011, 15:49

abramson wrote:My suggestion is to use a planetarium program instead, which is better suited than Celestia for these tasks.

Hello,

Yes I like Stellarium too, but for this "analemma simulation" Celestia is very well occupied :D

Take the following (example) script and run in Celestia:

Code: Select all

-- CELX Initialisation
celestia:setrenderflags{orbits=false, cloudmaps=false, cloudshadows=false, constellations=false, galaxies=false,
                        planets=true, stars=true, nightmaps=false, eclipseshadows=false, ringshadows=false,
                        comettails=false, boundaries=false, markers=false, automag=true, atmospheres=true,
                        grid=false, smoothlines=false, lightdelay=false, partialtrajectories=false, nebulae=false,
                  openclusters=false, globulars=false, ecliptic=false, equatorialgrid=false, galacticgrid=false,
                        eclipticgrid=false, horizontalgrid=true}

sun=celestia:find("Sol")
earth=celestia:find("Sol/Earth")
celestia:settimescale(0)
obs=celestia:getobserver()
obs:setfov(math.rad(110))

-- Define position on Earth (Latitude/Longitude in degrees)
lat_earth  = 52.3833              -- Latitude in degrees
long_earth = 4.9                  -- Longitude in degrees

-- Goto position on Earth surface, center the Sun and set initial data/time
obs:gotolonglat(earth, math.rad(long_earth), math.rad(lat_earth), earth:radius()+1, 0, celestia:newvector(0,1,0))
obs:synchronous(earth)
wait(0)
obs:gotosurface(earth, 0)
wait(0)
tdb_juliandate = celestia:utctotdb(2011, 8, 3, 10)
celestia:settime(tdb_juliandate)
obs:center(sun, 0)
wait(0)

--Analemma Routine
for i=0,2000 do
   tdb_date = tdb_juliandate + i
   celestia:settime(tdb_date)
   wait(0.025)
end


The analemma drawing itself, however is not present, but the simulation very well shows the analemma.
You can change longitude and latitude and corresponding UTC time for the local noon yourself of course, as well as playing with the FOV.

Marco
Marco Klunder
email: marco.klunder@xs4all.nl
Windows10 PD 3.0 GHz, 2 GB of RAM, Nvidia GeForce 6700 XL
Celestia161 / SVN + Lua Edu Tools v1.2 Beta9, Celestia160-ED and Celestia1621

abramson
Posts: 408
Joined: 22.07.2003
With us: 21 years 4 months
Location: Bariloche, Argentina

Re: how do I view the sun as I'm standing on earth?

Post #9by abramson » 03.08.2011, 16:08

Agreed: you can do it in Celestia, using your script or one that rookie37 (new to Celestia) might learn to program himself, thus becoming more knowledgeable both in Celestia and in the art of programming.

Or, rookie37 can launch Stellarium and press ]. I will say no more.

Topic author
rookie37
Posts: 3
Joined: 31.07.2011
With us: 13 years 3 months

Re: how do I view the sun as I'm standing on earth?

Post #10by rookie37 » 03.08.2011, 23:12

abramson wrote:NOTE: My explanation in a previous message was wrong. You need to change by 1 solar day, week, etc (not sidereal). I have edited the message. I apologize.

No appology needed. If fact it makes my embarresment a little easier. I skimmed over your first email and didn't see that you already made a suggestion for software


Return to “Help Central”