Home
last modified time | relevance | path

Searched refs:jd2 (Results 26 – 50 of 180) sorted by relevance

12345678

/dports/astro/py-astropy/astropy-5.0/astropy/coordinates/builtin_frames/
H A Decliptic_transforms.py40 jd1, jd2 = get_jd12(equinox, 'tt')
46 gamb, phib, psib, epsa = erfa.pfw06(jd1, jd2)
48 dpsi, deps = erfa.nut06a(jd1, jd2)
52 obl = erfa.obl06(jd1, jd2)+deps
56 def _obliquity_only_rotation_matrix(obl=erfa.obl80(EQUINOX_J2000.jd1, EQUINOX_J2000.jd2) * u.radian…
H A Dintermediate_rotation_transforms.py78 jd1, jd2 = get_jd12(time, 'tt')
82 gast = erfa.gst06a(ujd1, ujd2, jd1, jd2)
84 gast = erfa.gst06(ujd1, ujd2, jd1, jd2, rbpn)
/dports/astro/py-astropy/astropy-5.0/astropy/time/tests/
H A Dtest_methods.py172 assert np.all(t0_reshape.jd2 == self.t0._time.jd2.reshape(5, 2, 5))
174 assert np.may_share_memory(t0_reshape.jd2, self.t0.jd2)
305 assert np.all(t0_reshape.jd2 == self.t0._time.jd2.reshape(5, 2, 5))
316 assert t0_reshape_t.jd2.shape == t0_reshape.T.shape
329 assert self.t2.jd2.shape == (5, 2, 5)
339 assert self.t2.jd2.shape == oldshape
399 assert np.may_share_memory(t0_3d.jd2, self.t0.jd2)
425 assert np.may_share_memory(t0_lr.jd2, self.t0.jd2)
433 assert np.may_share_memory(t0_270.jd2, self.t0.jd2)
H A Dtest_sidereal.py40 + (cls.time_ut1.tt.jd2 - cls.time_tt.jd2))
44 + (self.time_ut1.tt.jd2 - self.time_tt.jd2),
124 sp = erfa.sp00(t.tt.jd1, t.tt.jd2)
H A Dtest_basic.py126 assert t._time.jd2 is t2._time.jd2
132 assert t._time.jd2 is not t2._time.jd2
199 assert np.all(t7[5]._time.jd2 == t7._time.jd2[5])
201 assert np.all(t7[:, 2]._time.jd2 == t7._time.jd2[:, 2])
203 assert np.all(t7[:, 0]._time.jd2 == t._time.jd2)
1332 assert np.abs(t.jd2) <= 0.5
1336 assert np.all(np.abs(t.jd2) <= 0.5)
1337 assert np.any(np.abs(t.jd2) == 0.5) # At least one exactly 0.5
1441 assert t._time.jd2 is t0._time.jd2
1601 assert t0.jd2 == 0.0
[all …]
/dports/astro/py-astropy/astropy-5.0/astropy/io/misc/asdf/tags/time/
H A Dtimedelta.py36 assert allclose_jd2(old.jd2, new.jd2)
/dports/www/webtrees/webtrees-1.7.18/webtrees/app/Controller/
H A DAdvancedSearchController.php498 $jd2 = $date->maximumJulianDay();
502 $jd2 += $adjd;
507 $bind[] = $jd2;
514 $jd2 = $date->maximumJulianDay();
518 $jd2 += $adjd;
523 $bind[] = $jd2;
/dports/astro/py-astropy/astropy-5.0/astropy/coordinates/tests/
H A Dtest_atc_replacements.py26 jd1, jd2 = get_jd12(t, 'tdb')
27 astrom, _ = erfa.apci13(jd1, jd2)
/dports/astro/py-astropy/astropy-5.0/astropy/io/misc/asdf/data/schemas/astropy.org/astropy/time/
H A Dtimedelta-1.0.0.yaml17 jd2:
32 required: [jd1, jd2, format]
/dports/math/vtk6/VTK-6.2.0/ThirdParty/alglib/alglib/
H A Dblas.h73 int jd2);
95 int jd2);
/dports/devel/tcllib/tcllib-1.20/modules/calendar/
H A Dgregorian.test170 set jd2 [calendar::GregorianCalendar::EYMWDToJulianDay date3]
172 if { $jd2 != $jd } {
173 error "EYMDToJulianDate computed wrong day $jd2\
206 set jd2 [calendar::GregorianCalendar::EYMWDToJulianDay date2]
207 if { $jd2 != $jd } {
208 error "EYMWDToJulianDate computed wrong day $jd2\
/dports/devel/tcllibc/tcllib-1.20/modules/calendar/
H A Dgregorian.test170 set jd2 [calendar::GregorianCalendar::EYMWDToJulianDay date3]
172 if { $jd2 != $jd } {
173 error "EYMDToJulianDate computed wrong day $jd2\
206 set jd2 [calendar::GregorianCalendar::EYMWDToJulianDay date2]
207 if { $jd2 != $jd } {
208 error "EYMWDToJulianDate computed wrong day $jd2\
/dports/math/vtk9/VTK-9.1.0/Common/Core/Testing/Cxx/
H A DTestTimePointUtility.cxx339 vtkTypeUInt64 jd2 = tp2 / vtkTimePointUtility::MILLIS_PER_DAY; in TestSpecialDates() local
342 std::cout << "Julian Day for this historic date 10/4/1582 is: " << jd2 in TestSpecialDates()
346 if (jd2 != expectedJD) in TestSpecialDates()
348 std::cout << "ERROR: The computed Julian Day is " << jd2 in TestSpecialDates()
/dports/math/vtk8/VTK-8.2.0/Common/Core/Testing/Cxx/
H A DTestTimePointUtility.cxx368 vtkTypeUInt64 jd2 = tp2 / vtkTimePointUtility::MILLIS_PER_DAY; in TestSpecialDates() local
372 << jd2 in TestSpecialDates()
378 if (jd2 != expectedJD) in TestSpecialDates()
380 std::cout << "ERROR: The computed Julian Day is " << jd2 in TestSpecialDates()
/dports/math/vtk6/VTK-6.2.0/Common/Core/Testing/Cxx/
H A DTestTimePointUtility.cxx368 vtkTypeUInt64 jd2 = tp2 / vtkTimePointUtility::MILLIS_PER_DAY; in TestSpecialDates() local
372 << jd2 in TestSpecialDates()
378 if (jd2 != expectedJD) in TestSpecialDates()
380 std::cout << "ERROR: The computed Julian Day is " << jd2 in TestSpecialDates()
/dports/deskutils/gcal/gcal-4.1/src/
H A Dhd-astro.c559 auto double jd2; local
599 jd2 = julian_date = 2451550.09765
882 jd2 += (coeff1 * sin (mma_moon_mean_anomaly)
906 jd2 -= (MIN_BCE_TO_1_CE - 1.5);
910 num2date ((Ulint) jd2, &d, &m, &y);
911 val2hours (jd2, &hour, &min, NULL);
912 jd2 -= SS2DAY (delta_t (d, m, y, hour, min));
916 jd2 += meridian_time;
917 *eclipse_type += jd2;
/dports/math/singular/Singular-Release-4-2-1/Singular/svd/
H A Dblas.h75 int jd2);
93 int jd2);
297 int jd2) in copymatrix() argument
308 ap::ap_error::make_assertion(js2-js1==jd2-jd1); in copymatrix()
312 ap::vmove(b.getrow(idst, jd1, jd2), a.getrow(isrc, js1, js2)); in copymatrix()
360 int jd2) in copyandtranspose() argument
370 ap::ap_error::make_assertion(is2-is1==jd2-jd1); in copyandtranspose()
/dports/math/vtk6/VTK-6.2.0/ThirdParty/alglib/
H A Dblas.cpp170 int jd2) in copymatrix() argument
180 ap::ap_error::make_assertion(js2-js1==jd2-jd1, "CopyMatrix: different sizes!"); in copymatrix()
184 ap::vmove(&b(idst, jd1), &a(isrc, js1), ap::vlen(jd1,jd2)); in copymatrix()
229 int jd2) in copyandtranspose() argument
238 ap::ap_error::make_assertion(is2-is1==jd2-jd1, "CopyAndTranspose: different sizes!"); in copyandtranspose()
/dports/www/webtrees/webtrees-1.7.18/webtrees/app/Functions/
H A DFunctionsDb.php924 * @param int $jd2 the end range of julian day
930 public static function getCalendarEvents($jd1, $jd2, $facts, Tree $tree) argument
938 … "WHERE (d_julianday1>={$jd1} AND d_julianday1<={$jd2} OR d_julianday2>={$jd1} AND d_julianday2<={…
979 * @param int $jd2
985 public static function getEventsList($jd1, $jd2, $events, Tree $tree) argument
988 for ($jd = $jd1; $jd <= $jd2; ++$jd) {
/dports/astro/py-astropy/astropy-5.0/astropy/coordinates/
H A Dorbital_elements.py241 jd1, jd2 = get_jd12(t, 'tt')
242 nut, _ = erfa.nut06a(jd1, jd2)
/dports/astro/py-pyerfa/pyerfa-2.0.0/erfa/tests/
H A Dtest_erfa.py250 jd2 = 0.401182685
260 astrom = erfa.apcs13(jd1, jd2, pv)
274 astrombad = erfa.apcs13(jd1, jd2, pvbad)
278 astrom2 = erfa.apcs13(jd1, jd2, pvarr)
284 astrom3 = erfa.apcs13(jd1, jd2, pvmatarr)
/dports/astro/marble/marble-21.12.3/src/lib/astro/
H A Declsolar.cpp1345 double jd, step, jd2, jdf, d1, d2; in eclStart() local
1391 jd2 = jd - 1.0/86400.0; // go in seconds steps in eclStart()
1397 if (pcur == pold) eb_spt[nump] = jd2; in eclStart()
1399 jd2 = jd2 - 1.0/86400.0; // go in seconds steps in eclStart()
1407 jd2 = jd - 1.0/86400.0; // go in seconds steps in eclStart()
1412 if (pcur == pold) jd = jd2; in eclStart()
1414 jd2 = jd2 - 1.0/86400.0; // go in seconds steps in eclStart()
1583 double phi, lamda, d1, d2, jd, jd2; in eclPltCentral() local
1611 jd2 = jd; in eclPltCentral()
1614 jd2 = jd2 - 1.0/86400.0; // go in seconds steps in eclPltCentral()
[all …]
/dports/science/eccodes/eccodes-2.23.0-Source/definitions/grib2/
H A Dtemplate.4.localtime.def68 meta jd2 julian_day(dataDate, hour,minute,second);
70 transient diffInDays = (jd2 - jd1) : hidden; # float
/dports/net-im/jabberd/jabberd-2.7.0/tools/
H A DMakefile.am6 db-jd14-2-jd2.sql migrate-jd14dir-2-sqlite.pl migrate.pl \
/dports/japanese/today/ja-today-2.12_2/
H A Devent.c1241 long jd1, jd2; in check_week() local
1244 jd2 = Julian(calendar.year, end->month, end->day); in check_week()
1246 if (jd1 > jd2) { in check_week()
1248 jd2 = Julian(calendar.year + 1, end->month, end->day); in check_week()
1249 } else if (jd2 >= calendar.julian_day) { in check_week()
1254 if (jd1 <= calendar.julian_day && calendar.julian_day <= jd2) { in check_week()

12345678