当前位置: 首页>>代码示例>>PHP>>正文


PHP Solar::ApparentEclVSOP87方法代码示例

本文整理汇总了PHP中Solar::ApparentEclVSOP87方法的典型用法代码示例。如果您正苦于以下问题:PHP Solar::ApparentEclVSOP87方法的具体用法?PHP Solar::ApparentEclVSOP87怎么用?PHP Solar::ApparentEclVSOP87使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Solar的用法示例。


在下文中一共展示了Solar::ApparentEclVSOP87方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: accurate

 /**
  * Finds the accurate time of a solstice or equinox using the complete VSOP87
  * theory
  *
  * @param int   $year  The year to find a solstice or equinox for
  * @param array $terms An array of the mean terms for the desired equinox or
  *                     solstice
  * @param int   $month The month of the equinox or solstice to find
  *
  * @return float The JD of the solstice or equinox in TD
  */
 private static function accurate($year, array $terms, $month)
 {
     $Y = $year < 1000 ? (int) $year / 1000 : ((int) $year - 2000) / 1000;
     $q = intval($month / 3) - 1;
     $jde0 = static::Horner($Y, $terms);
     for ($i = 0; $i < 100; $i++) {
         // TODO:: use vsop 87, but use IAU apparent stuff?
         $λ = Solar::ApparentEclVSOP87(AstroDate::fromJD($jde0))->λ->rad;
         $Δ = 58 * sin(deg2rad($q * 90) - $λ);
         $jde0 += $Δ;
         if (abs($Δ) < 5.0E-7) {
             break;
         }
     }
     return $jde0;
 }
开发者ID:gavinkou,项目名称:AstroDate,代码行数:27,代码来源:SolsticeEquinoxTrait.php


注:本文中的Solar::ApparentEclVSOP87方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。