<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| function computeSunrise(day, sunrise) { | |
| /*Sunrise/Sunset Algorithm taken from | |
| http://williams.best.vwh.net/sunrise_sunset_algorithm.htm | |
| inputs: | |
| day = day of the year | |
| sunrise = true for sunrise, false for sunset | |
| output: | |
| time of sunrise/sunset in hours */ |
| using System; | |
| using System.Diagnostics; | |
| namespace SunriseCalculator | |
| { | |
| public class SolarInfo | |
| { | |
| public double SolarDeclination { get; private set; } | |
| public TimeSpan EquationOfTime { get; private set; } | |
| public DateTime Sunrise { get; private set; } |