Home
last modified time | relevance | path

Searched refs:almanac (Results 1 – 25 of 376) sorted by relevance

12345678910>>...16

/dports/astro/p5-Astro-satpass/Astro-satpass-0.122/t/
H A Dsun.t296 is $almanac[0]{almanac}{event}, 'transit',
312 is $almanac[1]{almanac}{event}, 'twilight',
327 is $almanac[2]{almanac}{event}, 'horizon',
342 is $almanac[3]{almanac}{event}, 'transit',
357 is $almanac[4]{almanac}{event}, 'horizon',
372 is $almanac[5]{almanac}{event}, 'twilight',
407 is $almanac[0]{almanac}{event}, 'transit',
423 is $almanac[1]{almanac}{event}, 'twilight',
438 is $almanac[2]{almanac}{event}, 'horizon',
453 is $almanac[3]{almanac}{event}, 'transit',
[all …]
H A Dmoon.t133 my @events = $moon->universal( $time )->almanac( $sta );
193 my @events = $moon->universal( $time )->almanac();
258 is $events[0]{almanac}{event}, 'horizon',
261 cmp_ok $events[0]{almanac}{detail}, '==', 1,
264 is $events[0]{almanac}{description}, 'Moon rise',
274 is $events[1]{almanac}{event}, 'transit',
277 cmp_ok $events[1]{almanac}{detail}, '==', 1,
280 is $events[1]{almanac}{description}, 'Moon transits meridian',
290 is $events[2]{almanac}{event}, 'horizon',
293 cmp_ok $events[2]{almanac}{detail}, '==', 0,
[all …]
/dports/astro/py-skyfield/skyfield-1.41/skyfield/tests/
H A Dtest_almanac.py1 from skyfield import api, almanac
12 i = almanac.fraction_illuminated(e, 'moon', t0).round(2)
23 t, y = almanac.find_discrete(t0, t1, almanac.seasons(e))
37 t, y = almanac.find_discrete(t0, t1, almanac.moon_phases(e))
47 f = almanac.oppositions_conjunctions(e, e['mars'])
48 t, y = almanac.find_discrete(t0, t1, f)
58 f = almanac.oppositions_conjunctions(e, e['moon'])
59 t, y = almanac.find_discrete(t0, t1, f)
73 t, y = almanac.find_discrete(t0, t1, almanac.sunrise_sunset(e, bluffton))
84 t, y = almanac.find_discrete(t0, t1, almanac.dark_twilight_day(e, defiance))
[all …]
H A Dtest_almanac_east_asia.py2 from skyfield import api, almanac
16 t, y = almanac.find_discrete(t0, t1, f)
25 t, y = almanac.find_discrete(t0, t1, f)
34 t, y = almanac.find_discrete(t0, t1, f)
43 t, y = almanac.find_discrete(t0, t1, f)
/dports/astro/p5-Astro-satpass/Astro-satpass-0.122/lib/Astro/Coord/ECI/
H A DMixin.pm25 almanac => [ qw{ almanac almanac_hash } ],
34 sub almanac { subroutine
41 my @almanac;
55 push @almanac, [ $time, $event, $which, $text ];
59 return (sort {$a->[0] <=> $b->[0]} @almanac);
68 almanac => {
73 }, $self->almanac( $station, $start, $end );
157 my @almanac = $body->almanac( $station, $start, $end );
167 my @almanac = $body->almanac( $start, $end )
180 The @almanac list is returned sorted by time.
[all …]
/dports/astro/p5-Astro-App-Satpass2/Astro-App-Satpass2-0.049/t/
H A Drewrite.t27 call_m( source => { level1 => 1 }, [ 'almanac' ], undef,
28 q{Rewrite 'almanac'} );
30 is scalar @commands, 2, q{Expect two commands from 'almanac'};
34 is_deeply $commands[1], [ 'almanac' ], q{Second command is 'almanac'};
66 execute( 'macro list farmers', <<'EOD', 'Rewrite almanac' );
69 almanac
H A Dcomplete.t36 complete( 'a', [ qw{ alias almanac } ] );
38 complete( 'core.a', [ qw{ core.alias core.almanac } ] );
40 complete( 'al', [ qw{ alias almanac } ] );
42 complete( 'alm', [ qw{ almanac } ] );
46 complete( 'almanac -h', [ qw{ -horizon } ] );
48 complete( 'almanac --h', [ qw{ --horizon } ] );
H A Dlocale.t17 text => [ almanac => 'title' ],
19 ), 'Almanac', q{almanac => 'title'};
H A Drewrite_macros1 macro farmers almanac
/dports/astro/py-skyfield/skyfield-1.41/skyfield/documentation/
H A Dalmanac.rst20 Then, load the “almanac” module.
24 from skyfield import almanac
84 t, y = almanac.find_discrete(t0, t1, almanac.seasons(eph))
116 phase = almanac.moon_phase(eph, t)
130 t, y = almanac.find_discrete(t0, t1, almanac.moon_phases(eph))
160 t, y = almanac.find_discrete(t0, t1, almanac.moon_nodes(eph))
186 t, y = almanac.find_discrete(t0, t1, f)
239 t, y = almanac.find_discrete(t0, t1, f)
291 t, y = almanac.find_discrete(t0, t1, almanac.sunrise_sunset(eph, bluffton))
318 t, y = almanac.find_discrete(t0, t1, f)
[all …]
H A Dapi-almanac.rst6 .. currentmodule:: skyfield.almanac
8 See :doc:`almanac` for a guide to using these routines to search for the
H A Dtoc.rst18 almanac
37 api-almanac
H A Dexamples.rst39 from skyfield import almanac
53 f = almanac.meridian_transits(eph, eph['Sun'], bluffton)
54 times, events = almanac.find_discrete(t0, t1, f)
73 are all available through the :doc:`almanac` module.
82 from skyfield import almanac
96 f = almanac.dark_twilight_day(eph, bluffton)
97 times, events = almanac.find_discrete(t0, t1, f)
103 print(tstr, ' ', almanac.TWILIGHTS[e], 'starts')
105 print(tstr, ' ', almanac.TWILIGHTS[previous_e], 'ends')
346 from skyfield.almanac import find_discrete, risings_and_settings
/dports/astro/p5-Astro-satpass/Astro-satpass-0.122/eg/
H A Dalmanac75 my @almanac;
80 push @almanac, $class->new( station => $loc )->almanac(
87 foreach (sort {$a->[0] <=> $b->[0]} @almanac) {
/dports/astro/gpsd/gpsd-3.20/
H A Dpseudonmea.c412 (int)session->gpsdata.subframe.sub5.almanac.sv, in gpsd_binary_almanac_dump()
414 (unsigned int)session->gpsdata.subframe.sub5.almanac.svh, in gpsd_binary_almanac_dump()
415 (unsigned int)session->gpsdata.subframe.sub5.almanac.e, in gpsd_binary_almanac_dump()
416 (unsigned int)session->gpsdata.subframe.sub5.almanac.toa, in gpsd_binary_almanac_dump()
417 (unsigned int)session->gpsdata.subframe.sub5.almanac.deltai, in gpsd_binary_almanac_dump()
418 (unsigned int)session->gpsdata.subframe.sub5.almanac.Omegad, in gpsd_binary_almanac_dump()
419 (unsigned int)session->gpsdata.subframe.sub5.almanac.sqrtA, in gpsd_binary_almanac_dump()
420 (unsigned int)session->gpsdata.subframe.sub5.almanac.omega, in gpsd_binary_almanac_dump()
422 (unsigned int)session->gpsdata.subframe.sub5.almanac.M0, in gpsd_binary_almanac_dump()
423 (unsigned int)session->gpsdata.subframe.sub5.almanac.af0, in gpsd_binary_almanac_dump()
[all …]
H A Dgpsd_json.c646 (int)subframe->sub5.almanac.sv, in json_subframe_dump()
650 subframe->sub5.almanac.d_deltai, in json_subframe_dump()
651 subframe->sub5.almanac.d_Omegad, in json_subframe_dump()
652 subframe->sub5.almanac.d_sqrtA, in json_subframe_dump()
653 subframe->sub5.almanac.d_Omega0, in json_subframe_dump()
654 subframe->sub5.almanac.d_omega, in json_subframe_dump()
655 subframe->sub5.almanac.d_M0, in json_subframe_dump()
656 subframe->sub5.almanac.d_af0, in json_subframe_dump()
657 subframe->sub5.almanac.d_af1); in json_subframe_dump()
665 (int)subframe->sub5.almanac.sv, in json_subframe_dump()
[all …]
/dports/astro/gpstk/GPSTk-8.0.0/ref/usersguide/
H A DcompSatVis.tex42 \subsubsection{Generating satellite visibility statistics using the SEM almanac from the USCG Navig…
43almanac data from the file current.al3 and a list of station locations from the file stations.msc.…
/dports/astro/p5-Astro-App-Satpass2/Astro-App-Satpass2-0.049/eg/
H A Dquarters_vcalendar23 # newline. The quarters() method uses the almanac template.
25 formatter template almanac <<'EOD'
30 SUMMARY:[% item.almanac( units = 'description' ) %]
/dports/astro/gpstk/GPSTk-8.0.0/swig/apps/
H A Dposition_difference.py128 almanac = gpstk.GPSAlmanacStore()
132 almanac.addAlmanac(orbit)
145 return yuma_holder(almanac, sat)
151 almanac = gpstk.GPSAlmanacStore()
155 almanac.addAlmanac(orbit)
168 return sem_holder(almanac, sat)
/dports/www/py-protego/Protego-0.1.16/tests/test_data/
H A Dwww.almanac.com47 Sitemap: https://www.almanac.com/googlenews.xml
48 Sitemap: https://www.almanac.com/sitemap.xml
H A Dwww.upenn.edu10 Disallow: /almanac/volumes/*/*/*/issueContents.html
/dports/astro/p5-Astro-App-Satpass2/Astro-App-Satpass2-0.049/lib/Astro/App/Satpass2/Locale/
H A DC.pm75 almanac => <<'EOD',
405 almanac => {
/dports/astro/kstars/kstars-3.5.6/po/en_GB/docs/kstars/
H A Dwut.docbook34 >The WUT tool also displays a short almanac of data for the selected date: the rise and set times f…
36 >Below the almanac is where the object information is displayed. The objects are organised into typ…
/dports/astro/kstars/kstars-3.5.6/kstars/ekos/ekoslive/
H A Dmessage.cpp1393 {"SunRise", almanac.getSunRise()}, in processAstronomyCommands()
1394 {"SunSet", almanac.getSunSet()}, in processAstronomyCommands()
1395 {"SunMaxAlt", almanac.getSunMaxAlt()}, in processAstronomyCommands()
1396 {"SunMinAlt", almanac.getSunMinAlt()}, in processAstronomyCommands()
1397 {"MoonRise", almanac.getMoonRise()}, in processAstronomyCommands()
1398 {"MoonSet", almanac.getMoonSet()}, in processAstronomyCommands()
1399 {"MoonPhase", almanac.getMoonPhase()}, in processAstronomyCommands()
1400 {"MoonIllum", almanac.getMoonIllum()}, in processAstronomyCommands()
1401 {"Dawn", almanac.getDawnAstronomicalTwilight()}, in processAstronomyCommands()
1402 {"Dusk", almanac.getDuskAstronomicalTwilight()}, in processAstronomyCommands()
[all …]
/dports/astro/py-kosmorrolib/kosmorrolib-1.0.1/kosmorrolib/
H A Devents.py25 from skyfield import almanac, eclipselib
371 event_time, event_id = almanac.find_discrete(
372 start_time, end_time, almanac.seasons(get_skf_objects())

12345678910>>...16