本文整理汇总了C#中System.Date.GetUTCMonth方法的典型用法代码示例。如果您正苦于以下问题:C# Date.GetUTCMonth方法的具体用法?C# Date.GetUTCMonth怎么用?C# Date.GetUTCMonth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Date
的用法示例。
在下文中一共展示了Date.GetUTCMonth方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MstFromUTC2
//static void AltAzToRaDec2(double alt, double az, out double hrAngle, out double dec, double lat)
//{
// if (alt == 0)
// {
// alt = .00000000001;
// }
// if (az == 0)
// {
// az = .00000000001;
// }
// double sin_dec;
// double cos_lat = Math.Cos(lat);
// if (alt > Math.PI / 2.0)
// {
// alt = Math.PI - alt;
// az += Math.PI;
// }
// if (alt < -Math.PI / 2.0)
// {
// alt = -Math.PI - alt;
// az -= Math.PI;
// }
// sin_dec = Math.Sin(lat) * Math.Sin(alt) + cos_lat * Math.Cos(alt) * Math.Cos(az);
// dec = Math.Asin(sin_dec);
// if (cos_lat < .00001)
// {
// hrAngle = az + Math.PI;
// }
// else
// {
// double cos_lat_cos_dec = (cos_lat * Math.Cos(dec));
// double sin_alt_sinLat_sin_dec = Math.Sin(alt) - Math.Sin(lat) * sin_dec;
// double acosTarget = sin_alt_sinLat_sin_dec / cos_lat_cos_dec;
// double temp = 0;
// if (Math.Abs(acosTarget) < 1.1)
// {
// if (acosTarget > 1)
// {
// acosTarget = 1.0;
// }
// if (acosTarget < -1)
// {
// acosTarget = -1.0;
// }
// temp = Math.Acos(acosTarget);
// }
// else
// {
// temp = Math.PI;
// }
// //if (double.IsNaN(temp))
// //{
// // temp = Math.PI;
// //}
// if (Math.Sin(az) > 0.0)
// {
// hrAngle = Math.PI - temp;
// }
// else
// {
// hrAngle = Math.PI + temp;
// }
// }
//}
public static double MstFromUTC2(Date utc, double lng)
{
int year = utc.GetUTCFullYear();
int month = utc.GetUTCMonth()+1;
int day = utc.GetUTCDate();
int hour = utc.GetUTCHours();
int minute = utc.GetUTCMinutes();
double second = utc.GetUTCSeconds() + utc.GetUTCMilliseconds() / 1000.0;
if (month == 1 || month == 2)
{
year -= 1;
month += 12;
}
int a = (int)(year / 100);
int b = 2 - a + (int)Math.Floor((double)(a / 4.0));
int c = (int)Math.Floor(365.25 * year);
int d = (int)Math.Floor(30.6001 * (month + 1));
double julianDays;
double jd2;
double julianCenturies;
double mst;
julianDays = b + c + d - 730550.5 + day + (hour + minute / 60.00 + second / 3600.00) / 24.00;
julianCenturies = julianDays / 36525.0d;
mst = 280.46061837 + 360.98564736629d * julianDays + 0.000387933d * julianCenturies * julianCenturies - julianCenturies * julianCenturies * julianCenturies / 38710000 + lng;
if (mst > 0.0)
{
while (mst > 360.0)
{
mst = mst - 360.0;
}
//.........这里部分代码省略.........
示例2: UtcToJulian
public static double UtcToJulian(Date utc)
{
int year = utc.GetUTCFullYear();
int month = utc.GetUTCMonth()+1;
double day = utc.GetUTCDate();
double hour = utc.GetUTCHours();
double minute = utc.GetUTCMinutes();
double second = utc.GetUTCSeconds() + utc.GetUTCMilliseconds() / 1000.0;
double dblDay = day + (hour / 24.0) + (minute / 1440.0) + (second / 86400.0);
return AstroCalc.GetJulianDay(year, month, dblDay);
//return DateToJD(year, month, dblDay, true);
//return julianDays;
}