Hoogle Search

Within Stackage Nightly 2025-10-08 (ghc-9.12.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. mapParseT :: forall err (m :: Type -> Type) a err' (m' :: Type -> Type) a' . (ReaderT ParseReader (ExceptT (ParseError err) m) a -> ReaderT ParseReader (ExceptT (ParseError err') m') a') -> ParseT err m a -> ParseT err' m' a'

    aeson-better-errors Data.Aeson.BetterErrors.Internal

    No documentation available.

  2. runParseT :: ParseT err m a -> Value -> m (Either (ParseError err) a)

    aeson-better-errors Data.Aeson.BetterErrors.Internal

    No documentation available.

  3. module Data.Astro.CelestialObject.RiseSet

    Computations rise and set of selestial objects.

    Examples

    Stars

    See Data.Astro.Star module for example.

    Planets

    See Data.Astro.Planet module for example.

  4. data RiseSet a

    astro Data.Astro.CelestialObject.RiseSet

    Some Info of Rise and Set of a celestial object

  5. RiseSet :: a -> a -> RiseSet a

    astro Data.Astro.CelestialObject.RiseSet

    Some Info of Rise and Set of the celestial object

  6. type RiseSetLCT = RiseSet RSInfo LocalCivilTime

    astro Data.Astro.CelestialObject.RiseSet

    Local Civil Time and Azimuth of Rise and Set

  7. type RiseSetLST = RiseSet RSInfo LocalSiderealTime

    astro Data.Astro.CelestialObject.RiseSet

    LST (Local Sidereal Time) and Azimuth of Rise and Set

  8. type RiseSetMB = RiseSet Maybe RSInfo LocalCivilTime

    astro Data.Astro.CelestialObject.RiseSet

    The optional Rise And optinal Set Information (LocalCivilTime and Azimuth)

  9. riseAndSet :: EquatorialCoordinates1 -> DecimalDegrees -> DecimalDegrees -> RiseSetLST

    astro Data.Astro.CelestialObject.RiseSet

    Calculate rise and set local sidereal time of a celestial object. It takes the equatorial coordinates of the celestial object, vertical shift and the latitude of the observation. To calculate vertical shift for stars use function refract from Data.Astro.Effects. In most cases you can assume that vertical shift equals 0.566569 (34 arcmins ~ 'refract (DD 0) 12 1012').

  10. riseAndSet2 :: DecimalHours -> (JulianDate -> EquatorialCoordinates1) -> GeographicCoordinates -> DecimalDegrees -> LocalCivilDate -> RiseSetMB

    astro Data.Astro.CelestialObject.RiseSet

    Calculate rise and set local sidereal time of a celestial object that changes its equatorial coordinates during the day (the Sun, the Moon, planets). It takes epsilon, the function that returns equatorial coordinates of the celestial object for a given julian date, vertical shift and the latitude of the observation. To calculate vertical shift for stars use function refract from Data.Astro.Effects. In most cases you can assume that vertical shift equals 0.566569 (34 arcmins ~ 'refract (DD 0) 12 1012').

Page 157 of many | Previous | Next