先贴在这了,后面应该用得着

  1. #define PI 3.1415926
  2. #include<math.h>
  3. #include<iostream>
  4. using namespace std;
  5. int days_of_month_1[]={31,28,31,30,31,30,31,31,30,31,30,31};
  6. int days_of_month_2[]={31,29,31,30,31,30,31,31,30,31,30,31};
  7. long double h=-0.833;
  8. //定义全局变量
  9. void input_date(int c[]){
  10. int i;
  11. cout<<"Enter the date (form: 2009 03 10):"<<endl;
  12. for(i=0;i<3;i++){
  13. cin>>c[i];
  14. }
  15. }
  16. //输入日期
  17. void input_glat(int c[]){
  18. int i;
  19. cout<<"Enter the degree of latitude(range: 0°- 60°,form: 40 40 40 (means 40°40′40″)):"<<endl;
  20. for(i=0;i<3;i++){
  21. cin>>c[i];
  22. }
  23. }
  24. //输入纬度
  25. void input_glong(int c[]){
  26. int i;
  27. cout<<"Enter the degree of longitude(west is negativ,form: 40 40 40 (means 40°40′40″)):"<<endl;
  28. for(i=0;i<3;i++){
  29. cin>>c[i];
  30. }
  31. }
  32. //输入经度
  33. int leap_year(int year){
  34. if(((year%400==0) || (year%100!=0) && (year%4==0))) return 1;
  35. else return 0;
  36. }
  37. //判断是否为闰年:若为闰年,返回1;若非闰年,返回0
  38. int days(int year, int month, int date){
  39. int i,a=0;
  40. for(i=2000;i<year;i++){
  41. if(leap_year(i)) a=a+366;
  42. else a=a+365;
  43. }
  44. if(leap_year(year)){
  45. for(i=0;i<month-1;i++){
  46. a=a+days_of_month_2[i];
  47. }
  48. }
  49. else {
  50. for(i=0;i<month-1;i++){
  51. a=a+days_of_month_1[i];
  52. }
  53. }
  54. a=a+date;
  55. return a;
  56. }
  57. //求从格林威治时间公元2000年1月1日到计算日天数days
  58. long double t_century(int days, long double UTo){
  59. return ((long double)days+UTo/360)/36525;
  60. }
  61. //求格林威治时间公元2000年1月1日到计算日的世纪数t
  62. long double L_sun(long double t_century){
  63. return (280.460+36000.770*t_century);
  64. }
  65. //求太阳的平黄径
  66. long double G_sun(long double t_century){
  67. return (357.528+35999.050*t_century);
  68. }
  69. //求太阳的平近点角
  70. long double ecliptic_longitude(long double L_sun,long double G_sun){
  71. return (L_sun+1.915*sin(G_sun*PI/180)+0.02*sin(2*G_sun*PI/180));
  72. }
  73. //求黄道经度
  74. long double earth_tilt(long double t_century){
  75. return (23.4393-0.0130*t_century);
  76. }
  77. //求地球倾角
  78. long double sun_deviation(long double earth_tilt, long double ecliptic_longitude){
  79. return (180/PI*asin(sin(PI/180*earth_tilt)*sin(PI/180*ecliptic_longitude)));
  80. }
  81. //求太阳偏差
  82. long double GHA(long double UTo, long double G_sun, long double ecliptic_longitude){
  83. return (UTo-180-1.915*sin(G_sun*PI/180)-0.02*sin(2*G_sun*PI/180)+2.466*sin(2*ecliptic_longitude*PI/180)-0.053*sin(4*ecliptic_longitude*PI/180));
  84. }
  85. //求格林威治时间的太阳时间角GHA
  86. long double e(long double h, long double glat, long double sun_deviation){
  87. return 180/PI*acos((sin(h*PI/180)-sin(glat*PI/180)*sin(sun_deviation*PI/180))/(cos(glat*PI/180)*cos(sun_deviation*PI/180)));
  88. }
  89. //求修正值e
  90. long double UT_rise(long double UTo, long double GHA, long double glong, long double e){
  91. return (UTo-(GHA+glong+e));
  92. }
  93. //求日出时间
  94. long double UT_set(long double UTo, long double GHA, long double glong, long double e){
  95. return (UTo-(GHA+glong-e));
  96. }
  97. //求日落时间
  98. long double result_rise(long double UT, long double UTo, long double glong, long double glat, int year, int month, int date){
  99. long double d;
  100. if(UT>=UTo) d=UT-UTo;
  101. else d=UTo-UT;
  102. if(d>=0.1) {
  103. UTo=UT;
  104. UT=UT_rise(UTo,GHA(UTo,G_sun(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo)))),glong,e(h,glat,sun_deviation(earth_tilt(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo))))));
  105. result_rise(UT,UTo,glong,glat,year,month,date);
  106. }
  107. return UT;
  108. }
  109. //判断并返回结果(日出)
  110. long double result_set(long double UT, long double UTo, long double glong, long double glat, int year, int month, int date){
  111. long double d;
  112. if(UT>=UTo) d=UT-UTo;
  113. else d=UTo-UT;
  114. if(d>=0.1){
  115. UTo=UT;
  116. UT=UT_set(UTo,GHA(UTo,G_sun(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo)))),glong,e(h,glat,sun_deviation(earth_tilt(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo))))));
  117. result_set(UT,UTo,glong,glat,year,month,date);
  118. }
  119. return UT;
  120. }
  121. //判断并返回结果(日落)
  122. int Zone(long double glong){
  123. if(glong>=0) return (int)((int)(glong/15.0)+1);
  124. else return (int)((int)(glong/15.0)-1);
  125. }
  126. //求时区
  127. void output(long double rise, long double set, long double glong){
  128. if((int)(60*(rise/15+Zone(glong)-(int)(rise/15+Zone(glong))))<10)
  129. cout<<"The time at which the sun rises is "<<(int)(rise/15+Zone(glong))<<":0"<<(int)(60*(rise/15+Zone(glong)-(int)(rise/15+Zone(glong))))<<" .\n";
  130. else cout<<"The time at which the sun rises is "<<(int)(rise/15+Zone(glong))<<":"<<(int)(60*(rise/15+Zone(glong)-(int)(rise/15+Zone(glong))))<<" .\n";
  131. if((int)(60*(set/15+Zone(glong)-(int)(set/15+Zone(glong))))<10)
  132. cout<<"The time at which the sun sets is "<<(int)(set/15+Zone(glong))<<": "<<(int)(60*(set/15+Zone(glong)-(int)(set/15+Zone(glong))))<<" .\n";
  133. else cout<<"The time at which the sun sets is "<<(int)(set/15+Zone(glong))<<":"<<(int)(60*(set/15+Zone(glong)-(int)(set/15+Zone(glong))))<<" .\n";
  134. }
  135. //打印结果
  136. int main(){
  137. long double UTo=180.0;
  138. int year,month,date;
  139. long double glat,glong;
  140. int c[3];
  141. input_date(c);
  142. year=c[0];
  143. month=c[1];
  144. date=c[2];
  145. input_glat(c);
  146. glat=c[0]+c[1]/60+c[2]/3600;
  147. input_glong(c);
  148. glong=c[0]+c[1]/60+c[2]/3600;
  149. long double rise,set;
  150. rise=result_rise(UT_rise(UTo,GHA(UTo,G_sun(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo)))),glong,e(h,glat,sun_deviation(earth_tilt(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo)))))),UTo,glong,glat,year,month,date);
  151. set=result_set(UT_set(UTo,GHA(UTo,G_sun(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo)))),glong,e(h,glat,sun_deviation(earth_tilt(t_century(days(year,month,date),UTo)),ecliptic_longitude(L_sun(t_century(days(year,month,date),UTo)),G_sun(t_century(days(year,month,date),UTo)))))),UTo,glong,glat,year,month,date);
  152. output(rise,set,glong);
  153. system("pause");
  154. return 0;
  155. }

利用日期、经纬度求日出日落时间 C语言程序代码(zz)的更多相关文章

  1. 利用OD破解一个简单的C语言程序

    最近在学习汇编(看的是王爽老师的<汇编语言(第三版)>),然后想尝试使用OD(Ollydbg)软件破解一个简单的C语言程序练练手. 环境: C语言编译环境:VC++6.0 系统:在Wind ...

  2. 编写一个求圆面积的C语言程序

    #include<stdio.h>   //文件包含//#define PI 3.14     //宏定义//void main()         { float r,s; scanf( ...

  3. C++/C语言程序代码

    //-----------------------------------1 #include <stdio.h> #include<stdlib.h> void main() ...

  4. C#可用的日出日落时间类

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

  5. java获取日出日落时间

    import java.math.BigDecimal; import java.text.ParseException; import java.text.SimpleDateFormat; imp ...

  6. 指针直接赋值为整型AND利用宏定义求结构体成员偏移量

    首先我们要更正一个很熟悉的概念,那就是指针不仅仅是“地址”,指针还有一个很重要的特性,那就是“类型”. 指针初始化时,“=”的右操作数; 除外,该语句表示指针为空): 所以 ; 这样的代码是不允许的. ...

  7. Kotlin入门(18)利用单例对象获取时间

    前面介绍了,使用扩展函数可以很方便地扩充数组Array的处理功能,例如交换两个数组元素.求数组的最大元素等等.那么除了数组之外,日期和时间的相关操作,也是很常见的,比如获取当前日期,获取当前时间.获取 ...

  8. SQLServer 日期函数大全 SQLServer 时间函数大全

    原文地址:https://www.cnblogs.com/zhangpengnike/p/6122588.html 一.统计语句 1.--统计当前[>当天00点以后的数据] SELECT * F ...

  9. Js 日期转换函数(UTC时间转换及日期想加减)

    IOS上Js日期转换中new Date("yyyy-mm-dd")不能正常工作,必须使用new Date("yyyy/MM/dd"); 日期相加减: Date. ...

随机推荐

  1. 一款简洁大气的jquery日期日历插件

    本jquery插件名为manhuaDate,暂时只支持jquery 1.9.0以下版本,比如jquery-1.8.3.min.js 查看效果网址:http://keleyi.com/a/bjad/em ...

  2. First,FirstOrDefault,Single,SingleOrDefault的区别

    操作符 如果源序列是空的 源序列只包含一个元素 源序列包含多个元素 First 抛异常 返回该元素 返回第一个元素 FirstOrDefault 返回default(TSource) 返回该元素 返回 ...

  3. iOS多线程简介

    1.进程 什么是进程 进程是指在系统中正在运行的一个应用程序 每个进程之间是独立的,每个进程均运行在其专用且受保护的内存空间内 比如同时打开迅雷.Xcode,系统就会分别启动2个进程 2.线程 什么是 ...

  4. 配置nginx支持ssl服务器—HTTPS

    下文摘自: http://docs.bigbluebutton.org/install/install.html     Configuring HTTPS on BigBlueButtonAncho ...

  5. Sharepoint学习笔记—习题系列--70-576习题解析 -(Q138-Q140)

    Question  138 You are designing a SharePoint 2010 application that will deploy a Web Part assembly. ...

  6. iOS开发-UI 从入门到精通(二)

    iOS开发-UI 从入门到精通(二)是对 iOS开发-UI 从入门到精通(一)知识点的巩固,主要以习题练习为主,增强实战经验,为以后做开发打下坚实的基础! ※开发环境和注意事项: 1.前期iOS-UI ...

  7. JAVA匿名内部类

    首先定义一个抽象类Computer public abstract class Computer { //抽象类是不可以常见对象的 int a=1; public abstract void onli ...

  8. Android触摸事件流程剖析

    Android中的触摸事件流程就是指MotionEvent如何传递,主要包括两个阶段: onInterceptTouchEvent触摸事件拦截方法传递,从外到里传递 onTouchEvent触摸事件处 ...

  9. ORACLE DELETE数据慢的案例

    今天遇到一个有意思的案例,一开发同事告诉我他删除一个表的记录非常慢,已经快1个多小时了还没有完成.而且删除的记录只有1百多条.真是大跌眼镜的一件事情.最后发现该表与多个表有外键关联关系(这个表即是主表 ...

  10. DB2 JDBC

    官方文档: http://www-01.ibm.com/support/knowledgecenter/SSEPGG_10.1.0/com.ibm.db2.luw.apdv.java.doc/src/ ...