Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
8answers
3k views

How can I compute sunrise/sunset times?

I like to keep track of sunrise and sunset times. For the past couple of years I've been doing this with a small program written with a popular library for my favorite programming language. The last ...
4
votes
3answers
140 views

How to calculate sunrise and sunset time for current date with Delphi

I need to determine sunrise and sunset times (local time) for the current day given a specific latitude and longitude and using Delphi (I am using XE2). I've found this article and used the SysTools ...
3
votes
6answers
2k views

c# Sunrise Sun set with Lat Long

Is there a way in C# to calculate given a Lat and Long when the sun will set and rise for a given day? Ian
2
votes
2answers
213 views

Find out sunrise time from longitude and lattitude

Can anyone please tell me if it is possible to find out sunrise time for given Longitude and Latitude value in Objective-C?
2
votes
4answers
254 views

Using the Ruby Date class for Astronomical data

~ Approximate Solar Noon lw = 88.743 # my longitude jdate = Date.ordinal_to_jd(Time.now.year, Time.now.yday) n = (jdate - 2451545 - 0.0009 - lw / 360).round # lw is users longitude west of 0. ...
1
vote
1answer
91 views

PHP date_sun_info wrong times

I'm trying to use PHP's date_sun_info function to get information about the time of certain positions of the sun throughout the day: At the moment I'm using code similar to that in the documentation. ...
1
vote
2answers
238 views

Sunrise / Check time

For my app I use a sunriseCalc-lib. This lib calculates the sunrise-time and returns a string like this 12:20. Is it possible to check if the current time is later than the sunrise time? I have the ...
1
vote
1answer
109 views

DateTime::Event::Sunrise-question

Why does that script say that sunrise is at 04:11:20 - it should be dark night at this time. DateTime::Event::Sunrise #!/usr/bin/env perl use warnings; use 5.012; use DateTime; use ...
1
vote
5answers
277 views

Sunrise time tomorrow in PHP. How?

This is my script that calculates sunrise time for San Jose for today but if I wanted to get it for tomorrow how can I do it? <?php //San Jose, CA $lat = 37.339386; // North $long = ...
0
votes
0answers
49 views

How to schedule UILocalNotification for repeated non fixed firedate

I want to schedule local notification to notify the user of daily sunrise/sunset times. I have function that calculates both - sunrise and sunset given the date, longitude and latitude. The question ...
0
votes
4answers
241 views

sunrise sunset times in c

In my C application, I want to calculate sunrise/sunset times for a given date, latitude and longitude. i have been searching on the net but i can not find a working sample. I tried to implement this ...
0
votes
1answer
678 views

Generate Sunrise and Sunset Times from Latitude Longitude on today's date

everyone. I'm doing a project that makes only use of Javascript (client-side, not server-side) and I want to use the script from NOAA that I found in the other thread (I can't list more than one link ...
0
votes
1answer
347 views

Want to show sunrise/sunset time on website

On my website I want to display the sunrise and sunset time of a the place from where the person is opening the webpage. Now Google Web Search give the sunrise and sunset time if you search like this ...
0
votes
2answers
135 views

Problem with DateTime::Event::Sunrise

DateTime::Event::Sunrise Why do I get here the message "Can't locate object method "sunrise_datetime" via package "DateTime::Set"" #!/usr/bin/env perl use warnings; use 5.012; use DateTime; use ...
0
votes
1answer
847 views

Calculate Sunrise and Sunset times - port code to Android

I'm looking to create a simple calculator that will generate the sunrise and sunset for a given location (gps) for android. I've come across these two approaches: ...
0
votes
2answers
385 views

How can i calculate time duration between sunrise and sunset?

My question is How can i calculate time duration between sunrise and sunset? Then how can i divide this duration(sunrise to sunset) into 8 equal parts(Hr: Min)? All i need is starting and ending ...
0
votes
1answer
71 views

WordPress MU for hosting subdirectories

I'm trying to consolidate two WordPress installations into one WP MU install. Basically, I have example.com/blog and example.com/microsite/blog I'd like the microsite's blog and the /blog to both be ...