Anyone know of a web service or .NET class library that can provide rise/set times for the sun and moon for any given date and any given latitude/longitude?

Thanks in advance.

link|improve this question

Would a VB(A) function that does the Sun calculations (not moon) work for you? – MandoMando Nov 26 '09 at 16:01
MandoMando, I DO need sun calculations, but it would be nice to have both sun and moon together in the same code. But yes, I could use VB code, as long as I could compile it to a class library. – NovaJoe Nov 30 '09 at 4:49
feedback

3 Answers

up vote 1 down vote accepted

Have a look at The ASCOM Initiative. This is the technology used by Microsoft's World Wide Telescope to provide control of telescopes. In version 5.5 of the ASCOM Platform, one of the new components that we've just introduced is a .NET interface to the NOVAS library, which gives you a host of vector astrometry routines and the Kepler orbit engine for doing positional astrometry on solar system bodies.

I don't think that there is a function that will directly give you sunrise/sunset, but it will give you all of the building blocks you need to compute these and much more.

All of this is open source, too. The original NOVAS routines are available from the US Naval Observatory site linked above, in both FORTRAN and C. The ASCOM source code is available from our subversion server.

link|improve this answer
I DID see these on the USNO site, and thank you. I will definitely check out the ASCOM project. Sounds promising. I've seen mention of ASCOM in the Starry Night software and on amateur telescopes. Thanks! – NovaJoe Nov 30 '09 at 4:55
I wound up using some code from a friend, but next time I'll definitely go NOVAS. The C# wrappers for it expose all of the functionality I need, and at avery high level of accuracy. Too bad the documentation is so terse. But this IS astrophysics, after all. – NovaJoe Mar 25 '11 at 16:01
feedback

yes - the SunTime class at CodeProject may be of some help!

link|improve this answer
Looks like a good fine! – o.k.w Nov 26 '09 at 16:02
This DOES look really cool. However, I found an open source C project that produces the results I need. Now, to figure out a way to port it to a .NET class library. The C code is ugly, to say the least. I may just have to tweak it to accept an arg array and return a fixed array of results. Not exactly a C guy, so this'll be interesting. – NovaJoe Nov 30 '09 at 4:51
feedback

Also, there is a ephemeris which might be what you're looking for as this is the ultimate astronomer programming kit? Have made a feeble attempt at it a few years ago when I made an astrology program using VB6, it produced a nice report of the starsigns in the each of the twelve houses, but couldn't get the drawing of the stars at the time of the birthdate/time input accurate enough.

Hope this helps, Best regards, Tom.

link|improve this answer
This looks really cool too. So many options in the responses to this post! So exciting! Thanks folks! – NovaJoe Nov 30 '09 at 4:56
Hey Tom, I looked at this. Although I'm sure the astrology portion of the library is very good, the astronomy portion for producing the ephemrides isn't quite what I'm looking for. Thanks though! – NovaJoe Nov 30 '09 at 5:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.