R/RcppExports.R
Section13.Rd
Calculate house cusp, ascendant, Medium Coeli, etc. calculations
swe_houses_ex(jd_ut, cuspflag, geolat, geolon, hsys)
swe_houses_armc(armc, geolat, eps, hsys)
swe_house_name(hsys)
UT Julian day number as double (day)
cusp flag as integer (0 [tropical], SE$FLG_SIDEREAL, SE$FLG_RADIANS)
geographic latitude as double (deg)
geographic longitude as double (deg)
house method, one-letter case sensitive as char
right ascension of the MC as double (deg)
ecliptic obliquity as double (deg)
swe_houses_ex
returns a list with named entries: return
status flag as integer,
cusps
cusps values as double and ascmc
ascendent, MCs. etc. as double.
swe_houses_armc
returns a list with named entries: return
status flag as integer,
cusps
cusps values as double and ascmc
ascendent, MCs, etc. as double.
swe_house_name
returns the house name as string
Calculate houses' cusps, ascendant, Medium Coeli (MC), etc.
Calculate houses' information from the right ascension of the Medium Coeli (MC).
Provide the house name.
Section 13 in http://www.astro.com/swisseph/swephprg.htm. Remember that array indices start in R at 1, while in C they start at 0!
swe_houses_ex(1234567, 0, 53, 0, 'B')
#> $return
#> [1] 0
#>
#> $cusps
#> [1] 0.00000 46.64518 67.89822 88.19583 108.40898 145.68710 186.61910
#> [8] 226.64518 247.89822 268.19583 288.40898 325.68710 6.61910 0.00000
#> [15] 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000
#> [22] 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000
#> [29] 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000
#> [36] 0.00000 0.00000
#>
#> $ascmc
#> [1] 46.64518 288.40898 289.99675 196.36986 21.69681 13.76371 31.65048
#> [8] 193.76371 0.00000 0.00000
#>
swe_houses_armc(12, 53, 23, 'B')
#> $return
#> [1] 0
#>
#> $cusps
#> [1] 0.00000 125.97068 147.38669 169.96807 193.00244 233.05493 269.54195
#> [8] 305.97068 327.38669 349.96807 13.00244 53.05493 89.54195 0.00000
#> [15] 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000
#> [22] 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000
#> [29] 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000
#> [36] 0.00000 0.00000
#>
#> $ascmc
#> [1] 125.97068 13.00244 12.00000 263.98576 101.07060 71.50788 116.41241
#> [8] 251.50788 0.00000 0.00000
#>
swe_house_name('G')
#> [1] "Gauquelin sectors"