一个现成代码的公共类库,复制下来作为一个类文件就可以调用了。一般不需要了解实现过程,各种数学公式太麻烦。

调用方法:

SunTimeResult result = SunTimes.GetSunTime(DateTime.Now, double.Parse(Longitude), double.Parse(Latitude));
MessageBox.Show(string.Format("今天日出时间:{0},日落时间:{1}", result.SunriseTime.ToString("HH:mm:ss"), result.SunsetTime.ToString("HH:mm:ss")));

  

DateTime.Now是现在的时间
Longitude是经度
Latitude是纬度

类库代码如下:

using System;

namespace SwitchTime
{
/// <summary>
/// 日出日落时间类
/// </summary>
public static class SunTimes
{
#region 公共方法
/// <summary>
/// 计算日长
/// </summary>
/// <param name="date">日期</param>
/// <param name="longitude">经度</param>
/// <param name="latitude">纬度</param>
/// <returns>日长</returns>
/// <remarks>
/// 注:日期最小为2000.1.1号
/// </remarks>
public static double GetDayLength(DateTime date, double longitude, double latitude)
{
double result = DayLen(date.Year, date.Month, date.Day, longitude, latitude, -35.0 / 60.0, 1);
return result;
} /// <summary>
/// 计算日出日没时间
/// </summary>
/// <param name="date">日期</param>
/// <param name="longitude">经度</param>
/// <param name="latitude">纬度</param>
/// <returns>日落日出时间</returns>
/// <remarks>
/// 注:日期最小为2000.1.1号
/// </remarks>
public static SunTimeResult GetSunTime(DateTime date, double longitude, double latitude)
{
double start = 0;
double end = 0;
SunRiset(date.Year, date.Month, date.Day, longitude, latitude, -35.0 / 60.0, 1, ref start, ref end);
DateTime sunrise = ToLocalTime(date, start);
DateTime sunset = ToLocalTime(date, end);
return new SunTimeResult(sunrise, sunset);
}
#endregion #region 私有方法 #region 时间转换
private static DateTime ToLocalTime(DateTime time, double utTime)
{
int hour = Convert.ToInt32(Math.Floor(utTime));
double temp = utTime - hour;
hour += 8;//转换为东8区北京时间
temp = temp * 60;
int minute = Convert.ToInt32(Math.Floor(temp));
try
{
return new DateTime(time.Year, time.Month, time.Day, hour, minute, 0);
}
catch
{
return new DateTime(time.Year, time.Month, time.Day, 0, 0, 0);
}
}
#endregion #region 与日出日落时间相关计算
private static double DayLen(int year, int month, int day, double lon, double lat,
double altit, int upper_limb)
{
double d, /* Days since 2000 Jan 0.0 (negative before) */
obl_ecl, /* Obliquity (inclination) of Earth's axis */
//黄赤交角,在2000.0历元下国际规定为23度26分21.448秒,但有很小的时间演化。 sr, /* Solar distance, astronomical units */
slon, /* True solar longitude */
sin_sdecl, /* Sine of Sun's declination */
//太阳赤纬的正弦值。
cos_sdecl, /* Cosine of Sun's declination */
sradius, /* Sun's apparent radius */
t; /* Diurnal arc */ /* Compute d of 12h local mean solar time */
d = Days_since_2000_Jan_0(year, month, day) + 0.5 - lon / 360.0; /* Compute obliquity of ecliptic (inclination of Earth's axis) */
obl_ecl = 23.4393 - 3.563E-7 * d;
//这个黄赤交角时变公式来历复杂,很大程度是经验性的,不必追究。 /* Compute Sun's position */
slon = 0.0;
sr = 0.0;
Sunpos(d, ref slon, ref sr); /* Compute sine and cosine of Sun's declination */
sin_sdecl = Sind(obl_ecl) * Sind(slon);
cos_sdecl = Math.Sqrt(1.0 - sin_sdecl * sin_sdecl);
//用球面三角学公式计算太阳赤纬。 /* Compute the Sun's apparent radius, degrees */
sradius = 0.2666 / sr;
//视半径,同前。 /* Do correction to upper limb, if necessary */
if (upper_limb != 0)
altit -= sradius; /* Compute the diurnal arc that the Sun traverses to reach */
/* the specified altitide altit: */
//根据设定的地平高度判据计算周日弧长。
double cost;
cost = (Sind(altit) - Sind(lat) * sin_sdecl) /
(Cosd(lat) * cos_sdecl);
if (cost >= 1.0)
t = 0.0; /* Sun always below altit */
//极夜。
else if (cost <= -1.0)
t = 24.0; /* Sun always above altit */
//极昼。
else t = (2.0 / 15.0) * Acosd(cost); /* The diurnal arc, hours */
//周日弧换算成小时计。
return t; } private static void Sunpos(double d, ref double lon, ref double r)
{
double M,//太阳的平均近点角,从太阳观察到的地球(=从地球看到太阳的)距近日点(近地点)的角度。
w, //近日点的平均黄道经度。
e, //地球椭圆公转轨道离心率。
E, //太阳的偏近点角。计算公式见下面。 x, y,
v; //真近点角,太阳在任意时刻的真实近点角。 M = Revolution(356.0470 + 0.9856002585 * d);//自变量的组成:2000.0时刻太阳黄经为356.0470度,此后每天约推进一度(360度/365天
w = 282.9404 + 4.70935E-5 * d;//近日点的平均黄经。 e = 0.016709 - 1.151E-9 * d;//地球公转椭圆轨道离心率的时间演化。以上公式和黄赤交角公式一样,不必深究。 E = M + e * Radge * Sind(M) * (1.0 + e * Cosd(M));
x = Cosd(E) - e;
y = Math.Sqrt(1.0 - e * e) * Sind(E);
r = Math.Sqrt(x * x + y * y);
v = Atan2d(y, x);
lon = v + w;
if (lon >= 360.0)
lon -= 360.0;
} private static void Sun_RA_dec(double d, ref double RA, ref double dec, ref double r)
{
double lon, obl_ecl, x, y, z;
lon = 0.0; Sunpos(d, ref lon, ref r);
//计算太阳的黄道坐标。 x = r * Cosd(lon);
y = r * Sind(lon);
//计算太阳的直角坐标。 obl_ecl = 23.4393 - 3.563E-7 * d;
//黄赤交角,同前。 z = y * Sind(obl_ecl);
y = y * Cosd(obl_ecl);
//把太阳的黄道坐标转换成赤道坐标(暂改用直角坐标)。 RA = Atan2d(y, x);
dec = Atan2d(z, Math.Sqrt(x * x + y * y));
//最后转成赤道坐标。显然太阳的位置是由黄道坐标方便地直接确定的,但必须转换到赤
//道坐标里才能结合地球的自转确定我们需要的白昼长度。 }
/// <summary>
/// 日出没时刻计算
/// </summary>
/// <param name="year">年</param>
/// <param name="month">月</param>
/// <param name="day">日</param>
/// <param name="lon"></param>
/// <param name="lat"></param>
/// <param name="altit"></param>
/// <param name="upper_limb"></param>
/// <param name="trise">日出时刻</param>
/// <param name="tset">日没时刻</param>
/// <returns>太阳有出没现象,返回0 极昼,返回+1 极夜,返回-1</returns>
private static int SunRiset(int year, int month, int day, double lon, double lat,
double altit, int upper_limb, ref double trise, ref double tset)
{
double d, /* Days since 2000 Jan 0.0 (negative before) */
//以历元2000.0起算的日数。 sr, /* Solar distance, astronomical units */
//太阳距离,以天文单位计算(约1.5亿公里)。 sRA, /* Sun's Right Ascension */
//同前,太阳赤经。 sdec, /* Sun's declination */
//太阳赤纬。 sradius, /* Sun's apparent radius */
//太阳视半径,约16分(受日地距离、大气折射等诸多影响) t, /* Diurnal arc */
//周日弧,太阳一天在天上走过的弧长。 tsouth, /* Time when Sun is at south */
sidtime; /* Local sidereal time */
//当地恒星时,即地球的真实自转周期。比平均太阳日(日常时间)长3分56秒。 int rc = 0; /* Return cde from function - usually 0 */ /* Compute d of 12h local mean solar time */
d = Days_since_2000_Jan_0(year, month, day) + 0.5 - lon / 360.0;
//计算观测地当日中午时刻对应2000.0起算的日数。 /* Compute local sideral time of this moment */
sidtime = Revolution(GMST0(d) + 180.0 + lon);
//计算同时刻的当地恒星时(以角度为单位)。以格林尼治为基准,用经度差校正。 /* Compute Sun's RA + Decl at this moment */
sRA = 0.0;
sdec = 0.0;
sr = 0.0;
Sun_RA_dec(d, ref sRA, ref sdec, ref sr);
//计算同时刻太阳赤经赤纬。 /* Compute time when Sun is at south - in hours UT */
tsouth = 12.0 - Rev180(sidtime - sRA) / 15.0;
//计算太阳日的正午时刻,以世界时(格林尼治平太阳时)的小时计。 /* Compute the Sun's apparent radius, degrees */
sradius = 0.2666 / sr;
//太阳视半径。0.2666是一天文单位处的太阳视半径(角度)。 /* Do correction to upper limb, if necessary */
if (upper_limb != 0)
altit -= sradius;
//如果要用上边缘,就要扣除一个视半径。 /* Compute the diurnal arc that the Sun traverses to reach */
//计算周日弧。直接利用球面三角公式。如果碰到极昼极夜问题,同前处理。
/* the specified altitide altit: */ double cost;
cost = (Sind(altit) - Sind(lat) * Sind(sdec)) /
(Cosd(lat) * Cosd(sdec));
if (cost >= 1.0)
{
rc = -1;
t = 0.0;
}
else
{
if (cost <= -1.0)
{
rc = +1;
t = 12.0; /* Sun always above altit */
}
else
t = Acosd(cost) / 15.0; /* The diurnal arc, hours */
} /* Store rise and set times - in hours UT */
trise = tsouth - t;
tset = tsouth + t; return rc;
}
#endregion #region 辅助函数
/// <summary>
/// 历元2000.0,即以2000年第一天开端为计日起始(天文学以第一天为0日而非1日)。
/// 它与UT(就是世界时,格林尼治平均太阳时)1999年末重合。
/// </summary>
/// <param name="y"></param>
/// <param name="m"></param>
/// <param name="d"></param>
/// <returns></returns>
private static long Days_since_2000_Jan_0(int y, int m, int d)
{
return (367L * (y) - ((7 * ((y) + (((m) + 9) / 12))) / 4) + ((275 * (m)) / 9) + (d) - 730530L);
} private static double Revolution(double x)
{
return (x - 360.0 * Math.Floor(x * Inv360));
} private static double Rev180(double x)
{
return (x - 360.0 * Math.Floor(x * Inv360 + 0.5));
} private static double GMST0(double d)
{
double sidtim0;
sidtim0 = Revolution((180.0 + 356.0470 + 282.9404) +
(0.9856002585 + 4.70935E-5) * d);
return sidtim0;
} private static double Inv360 = 1.0 / 360.0;
#endregion #region 度与弧度转换系数,为球面三角计算作准备
private static double Sind(double x)
{
return Math.Sin(x * Degrad);
} private static double Cosd(double x)
{
return Math.Cos(x * Degrad);
} private static double Tand(double x)
{
return Math.Tan(x * Degrad); } private static double Atand(double x)
{
return Radge * Math.Atan(x);
} private static double Asind(double x)
{
return Radge * Math.Asin(x);
} private static double Acosd(double x)
{
return Radge * Math.Acos(x);
} private static double Atan2d(double y, double x)
{
return Radge * Math.Atan2(y, x); } private static double Radge = 180.0 / Math.PI;
private static double Degrad = Math.PI / 180.0; #endregion #endregion
} /// <summary>
/// 日出日落时间结果
/// </summary>
public class SunTimeResult
{
#region 构造与析构
/// <summary>
/// 构造函数
/// </summary>
/// <param name="sunrise">日出时间</param>
/// <param name="sunset">日落时间</param>
public SunTimeResult(DateTime sunrise, DateTime sunset)
{
sunriseTime = sunrise;
sunsetTime = sunset;
}
#endregion #region 属性定义
/// <summary>
/// 获取日出时间
/// </summary>
public DateTime SunriseTime
{
get
{
return sunriseTime;
}
} /// <summary>
/// 获取日落时间
/// </summary>
public DateTime SunsetTime
{
get
{
return sunsetTime;
}
}
#endregion #region 私成员
private DateTime sunriseTime;//日出时间
private DateTime sunsetTime;//日落时间
#endregion
}
}

  

C#可用的日出日落时间类的更多相关文章

  1. java时间类简单总结

    java时间类(Data类) 1.Data类(没有考虑到国际化,好多方法已过时java.util.Data包中) 父类(是类不是接口含有直接子类3个):  日期格式为:年月日时分秒(不包含毫秒部分) ...

  2. java最全时间类及用法

    对于时间类,这篇主要说明各种现实情况下如何取值,怎么定向取值,得到自己想要的时间参数.在java中时间类主要有Date.Calendar,暂时只介绍 java.util.*下的时间类,对于java.s ...

  3. java时间类Date、Calendar及用法

    对于时间类,这篇主要说明各种现实情况下如何取值,怎么定向取值,得到自己想要的时间参数.在java中时间类主要有Date.Calendar,暂时只介绍 java.util.*下的时间类,对于java.s ...

  4. Java日期时间API系列3-----Jdk7及以前的日期时间类的不方便使用问题

    使用Java日期时间类,每个人都很熟悉每个项目中必不可少的工具类就是dateutil,包含各种日期计算,格式化等处理,而且常常会遇到找不到可用的处理方法,需要自己新增方法,处理过程很复杂. 1.Dat ...

  5. Java 之 JDK1.8之前日期时间类

    一.JDK1.8之前日期时间类 二. java.lang.System类 System类提供的public static long currentTimeMillis()用来返回当前时间与1970年1 ...

  6. java新时间类

    时间 java8以前使用的时间很多方法都已经废弃了,而且不是线程安全的,java8提供了一系列的时间类,这些时间类都是线程安全的 LocalDate.LocalTime.LocalDateTime 这 ...

  7. Java中六大时间类的使用和区别

    关于java中六个时间类的使用和区别 java.util.Date java.sql.Date  java.sql.Time  java.sql.Timestamp java.text.SimpleD ...

  8. iOS--时间类date详解

    NSDate定义时间的类 NSDate是一个时间类,在编写程序时,我们很少遇到.今天我突然碰到,感觉很生疏. 给大家发个博客,让大家也都温习一下,哈哈! 兄弟用的时候突然发现竟然有一些bug,大家用时 ...

  9. 3 EventTime 事件时间类和TimeNow函数——Live555源码阅读(一)基本组件类

    这是Live555源码阅读的第一部分,包括了时间类,延时队列类,处理程序描述类,哈希表类这四个大类. 这里是时间相关类的第三个部分,也是最后一个部分. EventTime 事件时间类 这个类和Dela ...

随机推荐

  1. json相关类库,java对象与json相互转换

    有效选择七个关于Java的JSON开源类库 转自:http://www.open-open.com/lib/view/open1397870197828.html 翻译: (英语原文:http://w ...

  2. java编码原理,java编码和解码问题

    java的编码方式原理 java的JVM的缺省编码方式由系统的“本地语言环境”设置确定,和操作系统的类型无关 . 在JAVA源文件-->JAVAC-->Class-->Java--& ...

  3. 在本机搭建SVN服务器

    目的:在没有正式的SVN服务器的情况下,完成代码的本地备份. 参考:http://blog.csdn.net/ladofwind/article/details/2100200 以下是具体内容: 如何 ...

  4. 生产环境常见的HTTP状态码列表

    生产环境常见的HTTP状态码列表(List of HTTP status codes)为: 200 - OK,服务器成功返回网页     - Standard response for success ...

  5. XML简介与CDATA解释

    简介XML 是一种受到广泛支持的 Internet 标准,用于以一种特殊的方式编码结构化数据.实际上,以 XML 编码的数据可以通过任何编程语言解码,人们甚至可以使用标准的文本编辑器来阅读或编写 XM ...

  6. Juniper SSG5 PPTP VPN 619错误解决

    公司分部的客户端需要使用PPTP VPN连接总部,将网关更换为Juniper SSG5后,客户端出现了每几个小时自动断开的现象,错误619. 解决:Security —— ALG —— 开启PPTP协 ...

  7. html小技巧

    占位符 插入一个非间断空格.一般来说,无论你按多少次空格键,HTML也只会在单词之间显示一个空白间隔.当你需要插入多个空格时,请输入 或 代码.它们名为"空格占位符",你输入几个, ...

  8. 项目游戏开发日记 No.0x000005

    14软二杨近星(2014551622) 还有一周就要交项目了, 看着周围的人也都忙碌了起来, 看着大部分人的项目都已经初具容貌, 我们团队里面也搞得人心惶惶, 一来是, 时间不多了, 还有很多事情要做 ...

  9. Centos6下安装高版本Git

    yum remove git .tar.gz /usr/src/ cd /usr/src/ cd git-/ make configure whereis autoconf yum install a ...

  10. [Java]使用HttpClient实现一个简单爬虫,抓取煎蛋妹子图

    第一篇文章,就从一个简单爬虫开始吧. 这只虫子的功能很简单,抓取到”煎蛋网xxoo”网页(http://jandan.net/ooxx/page-1537),解析出其中的妹子图,保存至本地. 先放结果 ...