Skip to content

Instantly share code, notes, and snippets.

@sebgod
Last active September 13, 2022 06:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebgod/a93cfec1fccf0e8db9b02c205e7bfe5d to your computer and use it in GitHub Desktop.
Save sebgod/a93cfec1fccf0e8db9b02c205e7bfe5d to your computer and use it in GitHub Desktop.
Import-Module PowerHTML -Cmdlet ConvertFrom-Html
Add-Type -AssemblyName System.Web
# Constants
Set-Variable S_IAUName 'IAU Name' -Option Constant
Set-Variable S_IAUNameId 'IAUName' -Option Constant
Set-Variable S_ConstId 'ID' -Option Constant
Set-Variable S_ConstName 'Const.' -Option Constant
Set-Variable S_ConstNameId 'Constellation' -Option Constant
Set-Variable S_StarComp '#' -Option Constant
Set-Variable S_StarCompId 'WDSComponentId' -Option Constant
Set-Variable S_Designation 'Designation' -Option Constant
Set-Variable S_RaJ2000 'RA(J2000)' -Option Constant
Set-Variable S_RaJ2000Id 'RA_J2000' -Option Constant
Set-Variable S_DecJ2000 'Dec(J2000)' -Option Constant
Set-Variable S_DecJ2000Id 'Dec_J2000' -Option Constant
Set-Variable S_Vmag 'Vmag' -Option Constant
Set-Variable S_ApprovalDate 'Approval Date' -Option Constant
Set-Variable S_ApprovalDateId 'ApprovalDate' -Option Constant
# returns the decimal hour angle for given right ascension on a given [DateTime] for a given logitude.
function RightAscensionToHourAngle
{
[OutputType([double])]
param (
[DateTime] $utcDateTime,
[double] $longitude,
[double] $rightAscension
)
$gst = UTtoGst $utcDateTime
$lst = GsTtoLst $gst $longitude
$raHours = $rightAscension
$h1 = $lst - $raHours
$h = $h1
if ($h -lt 0) {
$h += 24
}
return $h
}
function HourAngleToRightAscension
{
[OutputType([double])]
param (
[DateTime] $utcDateTime,
[double] $longitude,
[double] $hourAngle
)
$gst = UTtoGst $utcDateTime
$lst = GsTtoLst $gst $longitude
$raHours = $hourAngle
$h1 = $lst - $raHours
$h = $h1
if ($h1 -lt 0)
{
$h += 24
}
return $h
}
class HorizonCoordinates
{
[double] $Azimuth
[double] $Altitude
}
class EquatorialCoordinates
{
[double] $RightAscension
[double] $Declination
}
function ConvertHozToEq
{
[OutputType([EquatorialCoordinates])]
param(
[DateTime] $utcDateTime,
[double] $latitude,
[double] $longitude,
[HorizonCoordinates] $altAz
)
$az = DegreesToRadians $altAz.Azimuth
$alt = DegreesToRadians $altAz.Altitude
$lat = DegreesToRadians $latitude
$sinDec = [math]::Sin($alt) * [math]::Sin($lat) + [math]::Cos($alt) * [math]::Cos($lat) * [math]::Cos($az)
$dec = RadiansToDegrees ([math]::Asin($sinDec))
$y = -[math]::Cos($alt) * [math]::Cos($lat) * [math]::Sin($az)
$x = [math]::Sin($alt) - [math]::Sin($lat) * $sinDec
$upperA = [math]::Atan2($y,$x)
$upperB = RadiansToDegrees $upperA
$ha = $upperB
if ($upperB -lt 0)
{
$ha += 360;
}
$ha /= 15;
$equatorialCoordinates = [EquatorialCoordinates]::new()
$equatorialCoordinates.RightAscension = HourAngleToRightAscension $utcDateTime $longitude $ha
$equatorialCoordinates.Declination = $dec
return $equatorialCoordinates
}
function ConvertEqToHoz
{
[OutputType([EquatorialCoordinates])]
param(
[double] $hourAngle,
[double] $latitude,
[double] $declination
)
$h = $hourAngle * 15;
$h1 = DegreesToRadians $h
$d = DegreesToRadians $declination
$lat = DegreesToRadians $latitude
$sinA = [math]::Sin($d) * [math]::Sin($lat) + [math]::Cos($d) * [math]::Cos($lat) * [math]::Cos($h1)
$y = -[math]::Cos($d) * [math]::Cos($lat) * [math]::Sin($h1);
$x = [math]::Sin($d) - [math]::Sin($lat) * $sinA;
$upperA = [math]::Atan2($y, $x)
$upperB = RadiansToDegrees($upperA)
$horizonCoordinates = [HorizonCoordinates]::new()
$horizonCoordinates.Altitude = RadiansToDegrees ([math]::Asin($sinA))
$horizonCoordinates.Azimuth = $upperB
if ($upperB -lt 0)
{
$horizonCoordinates.Azimuth += 360
}
return $horizonCoordinates
}
function DegreesToRadians
{
[OutputType([double])]
param([double] $degrees)
return ([math]::PI / 180) * $degrees
}
function RadiansToDegrees
{
[OutputType([double])]
param([double] $radians)
[double] $degrees = (180 / [math]::PI) * $radians
return $degrees
}
function DateTimeToDecimalHours
{
[OutputType([double])]
param([DateTime] $utcDateTime)
[double] $sec = $utcDateTime.Second
[double] $min = $utcDateTime.Minute
[double] $hour = $utcDateTime.Hour
$a = [math]::Abs($sec) / 60
$b = ([math]::Abs($min) + $a) / 60
$c = [math]::Abs($hour) + $b
$d = $c
if (($hour -lt 0) -or ($min -lt 0) -or ($sec -lt 0))
{
$d = -$c
}
return $d
}
function UTtoGst
{
[OutputType([double])]
param([DateTime] $utcDateTime)
try
{
$util = New-Object -ComObject ASCOM.Utilities.Util -Strict
$jd = $util.DateUTCToJulian($utcDateTime) - 0.5
}
finally
{
if ([System.Runtime.Interopservices.Marshal]::ReleaseComObject($util) -ne 0) {
Write-Error 'Failed to release ASCOM.Utilities.Util'
}
$util = $null
}
if (($jd % 1) -le 0.5)
{
$jd = [math]::Floor($jd)
}
else
{
$jd = [math]::Floor($jd) + 0.5
}
$s = $jd - 2451545.0
$t = $s / 36525.0
$t0 = 6.697374558 + (2400.051336 * $t ) +(0.000025862 * ($t * $t) )
while ($t0 -lt 0)
{
$t0 += 24
}
while ($t0 -ge 24)
{
$t0 -= 24
}
$ut = DateTimeToDecimalHours($utcDateTime)
$a = $ut * 1.002737909
$t1 = $t0 + $a
while ($t1 -lt 0)
{
$t1 += 24
}
while ($t1 -ge 24)
{
$t1 -= 24
}
return $t1
}
function GsTtoLst
{
[OutputType([double])]
param(
[double] $gst,
[double] $longitude
)
$l = $longitude/ 15
$lst = $gst + $l
while ($lst -lt 0 )
{
$lst += 24
}
while ($lst -ge 24)
{
$lst -= 24
}
return $lst
}
function ConvertTo-CompatibleName
{
[CmdletBinding()]
param(
[Parameter(Mandatory = $true, ValueFromPipeline = $true)] [string] $name
)
switch ($name) {
$S_IAUName { $S_IAUNameId }
$S_ConstName { $S_ConstNameId }
$S_StarComp { $S_StarCompId }
$S_RaJ2000 { $S_RaJ2000Id }
$S_DecJ2000 { $S_DecJ2000Id }
$S_ApprovalDate { $S_ApprovalDateId }
default { $name }
}
}
function Get-NamedStars
{
[CmdletBinding()]
param()
begin {
$html = ConvertFrom-Html -Uri 'https://www.iau.org/public/themes/naming_stars/' -Raw
$table = $html.GetElementById('dtHorizontalExample')
# $table = $main.ChildNodes['table']
$rows = $table.ChildNodes | Where-Object Name -eq 'tr'
$headers = $rows[0].ChildNodes | Where-Object Name -eq 'th' | Select-Object -ExpandProperty InnerText
$dataRows = $rows | Select-Object -Skip 1
}
process {
$dataRows | ForEach-Object {
$cols = $PSItem.ChildNodes | Where-Object Name -eq 'td'
if ($cols.Count -eq $headers.Count) {
$props = [ordered]@{}
0..($cols.Count - 1) | ForEach-Object {
$header = $headers[$PSItem] | ConvertTo-CompatibleName
$innerText = [System.Web.HttpUtility]::HtmlDecode($cols[$PSItem].InnerText)
if ($innerText -ne '-' -and $innerText -ne '_') {
$props[$header] = $innerText
}
}
$designation = $props[$S_Designation]
if ($null -ne $designation -and -not $designation.StartsWith('PSR'))
{
$S_Vmag | ForEach-Object {
$propId = $PSItem | ConvertTo-CompatibleName
$props[$propId] = [double]::Parse($props[$propId])
}
}
$S_RaJ2000, $S_DecJ2000 | ForEach-Object {
$propId = $PSItem | ConvertTo-CompatibleName
$props[$propId] = [double]::Parse($props[$propId])
}
[PSCustomObject]$props
}
}
}
end {
}
}
function ConvertTo-AltAz
{
[CmdletBinding()]
param(
[Parameter(ValueFromPipeline = $true)] [PSCustomObject] $NamedStar,
[Parameter()] [object] $Mount
)
begin {
$utcDateTime = $Mount.UTCDate
$lat = $Mount.SiteLatitude
$long = $Mount.SiteLongitude
}
process {
Write-Verbose "Processing: $($NamedStar.$S_IAUName)"
$ra = $NamedStar.$S_RaJ2000Id
$dec = $NamedStar.$S_DecJ2000Id
$ha = RightAscensionToHourAngle $utcDateTime $long ($ra / 15)
$horizontalCoordinates = ConvertEqToHoz $ha $lat $dec
$props = [ordered]@{
$S_IAUNameId = $NamedStar.$S_IAUNameId
$S_Designation = $NamedStar.$S_Designation
$S_ConstID = $NamedStar.$S_ConstID
$S_ConstNameId = $NamedStar.$S_ConstNameId
$S_StarCompId = $NamedStar.$S_StarCompId
$S_Vmag = $NamedStar.$S_Vmag
$S_RaJ2000Id = $ra
$S_DecJ2000Id = $dec
Altitude = $horizontalCoordinates.Altitude
Azimuth = $horizontalCoordinates.Azimuth
HourAngle = $ha
SiteLat = $lat
SiteLong = $long
}
[PSCustomObject]$props
}
end {
}
}
$stars = Get-NamedStars | Sort-Object $S_IAUNameId
$stars | ConvertTo-Json | Out-File -Encoding UTF8NoBOM "$PSScriptRoot/named-stars.json"
# "IAU Catalog of Star Names (IAU-CSN)"
# IAU Division C Working Group on Star Names (WGSN) https://www.iau.org/science/scientific_bodies/working_groups/280/
# WGSN Chair: Susanne Hoffmann. WGSN Secretary: Eric Mamajek. Email questions or comments to: starnames@exopla.net
# Last updated 2022-04-04 (see notes on latest edits at end of file)
#
# For use of the contents of the data of this file, we encourage users to cite the official IAU version of the data at:
$ https://www.iau.org/public/themes/naming_stars/. At times there may be a time delay between the posting of names in this file and what
# is posted on the IAU website. All IAU-produced products (Images, Videos, Texts) are released under Creative Commons Attribution
# (i.e. free to use in all perpetuity, world-wide, as long as the source is mentioned). Rows (2) and (5) require UTF-8 encoding
# (For Firefox browser, set > View > Repair Text Encoding). WGSN is working to add brief summaries of etymological information
# to future editions of this table.
#(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) (13) (14) (15) (16)
#Name/ASCII Name/Diacritics Designation ID ID Con # WDS_J mag bnd HIP HD RA(J2000) Dec(J2000) Date Notes
Absolutno Absolutno XO-5 _ _ Lyn _ _ 11.95 G _ _ 116.716506 39.094572 2019-12-17
Acamar Acamar HR 897 tet01 θ1 Eri A 02583-4018 2.88 V 13847 18622 44.565311 -40.304672 2016-07-20 *
Achernar Achernar HR 472 alf α Eri A _ 0.45 V 7588 10144 24.428523 -57.236753 2016-06-30
Achird Achird HR 219 eta η Cas A 00491+5749 3.46 V 3821 4614 12.276213 57.815187 2017-09-05
Acrab Acrab HR 5984 bet β Sco Aa 16054-1948 2.56 V 78820 144217 241.359300 -19.805453 2016-08-21
Acrux Acrux HR 4730 alf α Cru Aa 12266-6306 1.33 V 60718 108248 186.649563 -63.099093 2016-07-20
Acubens Acubens HR 3572 alf α Cnc Aa 08585+1151 4.26 V 44066 76756 134.621761 11.857700 2016-07-20
Adhafera Adhafera HR 4031 zet ζ Leo Aa 10167+2325 3.43 V 50335 89025 154.172567 23.417312 2016-07-20
Adhara Adhara HR 2618 eps ε CMa A 06586-2858 1.50 V 33579 52089 104.656453 -28.972086 2016-08-21
Adhil Adhil HR 390 ksi ξ And _ _ 4.87 V 6411 8207 20.585080 45.528778 2016-08-21
Ain Ain HR 1409 eps ε Tau Aa1 04286+1911 3.53 V 20889 28305 67.154163 19.180435 2015-12-15
Ainalrami Ainalrami HR 7116 nu01 ν1 Sgr A 18542-2245 4.86 V 92761 174974 283.542404 -22.744840 2017-09-05
Aladfar Aladfar HR 7298 eta η Lyr Aa 19138+3909 4.43 V 94481 180163 288.439531 39.145970 2017-09-05
Alasia Alasia HD 168746 _ _ Ser _ 18218-1155 7.95 V 90004 168746 275.457428 -11.922682 2019-12-17
Albaldah Albaldah HR 7264 pi π Sgr A 19098-2101 2.88 V 94141 178524 287.440971 -21.023615 2017-09-05
Albali Albali HR 7950 eps ε Aqr _ _ 3.78 V 102618 198001 311.918969 -9.495775 2016-09-12
Albireo Albireo HR 7417 bet β Cyg Aa 19307+2758 3.37 V 95947 183912 292.680351 27.959692 2016-07-20
Alchiba Alchiba HR 4623 alf α Crv _ _ 4.02 V 59199 105452 182.103402 -24.728875 2016-09-12
Alcor Alcor HR 5062 80 80 UMa Ca 13239+5456 3.99 V 65477 116842 201.306403 54.987954 2016-06-30 *
Alcyone Alcyone HR 1165 eta η Tau A 03475+2406 2.85 V 17702 23630 56.871152 24.105136 2016-06-30
Aldebaran Aldebaran HR 1457 alf α Tau _ 04359+1631 0.87 V 21421 29139 68.980163 16.509302 2016-06-30
Alderamin Alderamin HR 8162 alf α Cep _ 21186+6235 2.45 V 105199 203280 319.644885 62.585574 2016-07-20
Aldhanab Aldhanab HR 8353 gam γ Gru _ _ 3.00 V 108085 207971 328.482192 -37.364855 2017-09-05
Aldhibah Aldhibah HR 6396 zet ζ Dra A 17088+6543 3.17 V 83895 155763 257.196650 65.714684 2017-09-05
Aldulfin Aldulfin HR 7852 eps ε Del _ _ 4.03 V 101421 195810 308.303216 11.303261 2017-09-05
Alfirk Alfirk HR 8238 bet β Cep Aa 21287+7034 3.23 V 106032 205021 322.164987 70.560715 2016-08-21
Algedi Algedi HR 7754 alf02 α2 Cap _ 20181-1233 3.58 V 100064 192947 304.513566 -12.544852 2016-08-21
Algenib Algenib HR 39 gam γ Peg _ 00132+1511 2.83 V 1067 886 3.308963 15.183594 2016-06-30
Algieba Algieba HR 4057 gam01 γ1 Leo _ 10200+1950 2.61 V 50583 89484 154.993144 19.841489 2016-07-20 *
Algol Algol HR 936 bet β Per Aa1 03082+4057 2.09 V 14576 19356 47.042215 40.955648 2016-06-30
Algorab Algorab HR 4757 del δ Crv A 12299-1631 2.94 V 60965 108767 187.466063 -16.515431 2016-07-20
Alhena Alhena HR 2421 gam γ Gem Aa 06377+1624 1.93 V 31681 47105 99.427960 16.399280 2016-07-20
Alioth Alioth HR 4905 eps ε UMa A 12540+5558 1.76 V 62956 112185 193.507290 55.959823 2016-06-30
Aljanah Aljanah HR 7949 eps ε Cyg Aa 20462+3358 2.48 V 102488 197989 311.552843 33.970257 2017-06-30
Alkaid Alkaid HR 5191 eta η UMa _ _ 1.85 V 67301 120315 206.885157 49.313267 2016-06-30
Alkalurops Alkalurops HR 5733 mu01 μ1 Boo Aa 15245+3723 4.31 V 75411 137391 231.122618 37.377169 2016-08-21
Alkaphrah Alkaphrah HR 3594 kap κ UMa A 09036+4709 4.16 V 44471 77327 135.906365 47.156525 2017-09-05
Alkarab Alkarab HR 8905 ups υ Peg _ _ 4.42 V 115623 220657 351.344931 23.404100 2017-09-05
Alkes Alkes HR 4287 alf α Crt _ _ 4.08 V 53740 95272 164.943604 -18.298783 2016-09-12
Almaaz Almaaz HR 1605 eps ε Aur _ 05020+4349 3.03 V 23416 31964 75.492219 43.823307 2017-02-01
Almach Almach HR 603 gam γ And A 02039+4220 2.10 V 9640 12533 30.974804 42.329725 2016-07-20 *
Alnair Alnair HR 8425 alf α Gru _ 22082-4658 1.73 V 109268 209952 332.058270 -46.960974 2016-07-20
Alnasl Alnasl HR 6746 gam02 γ2 Sgr _ _ 2.98 V 88635 165135 271.452025 -30.424100 2016-08-21
Alnilam Alnilam HR 1903 eps ε Ori _ 05362-0112 1.69 V 26311 37128 84.053389 -1.201919 2016-07-20
Alnitak Alnitak HR 1948 zet ζ Ori Aa 05407-0157 1.74 V 26727 37742 85.189694 -1.942574 2016-07-20
Alniyat Alniyat HR 6084 sig σ Sco Aa1 16212-2536 2.90 V 80112 147165 245.297149 -25.592792 2017-02-01
Alphard Alphard HR 3748 alf α Hya _ 09276-0840 1.99 V 46390 81797 141.896847 -8.658602 2016-07-20
Alphecca Alphecca HR 5793 alf α CrB _ _ 2.22 V 76267 139006 233.671950 26.714693 2016-07-20
Alpheratz Alpheratz HR 15 alf α And Aa 00084+2905 2.07 V 677 358 2.096916 29.090431 2016-06-30
Alpherg Alpherg HR 437 eta η Psc A 01315+1521 3.83 V 7097 9270 22.870873 15.345823 2018-06-01
Alrakis Alrakis HR 6370 mu μ Dra A 17053+5428 5.55 V 83608 154906 256.333807 54.470078 2017-02-01
Alrescha Alrescha HR 596 alf α Psc A 02020+0246 3.82 V 9487 12446 30.511772 2.763735 2016-08-21
Alruba Alruba HR 6618 _ _ Dra _ _ 5.75 V 86782 161693 265.996568 53.801715 2018-06-01
Alsafi Alsafi HR 7462 sig σ Dra _ 19324+6940 4.67 V 96100 185144 293.089960 69.661176 2017-06-30
Alsciaukat Alsciaukat HR 3275 31 31 Lyn _ _ 4.25 V 41075 70272 125.708792 43.188131 2017-06-30
Alsephina Alsephina HR 3485 del δ Vel Aa 08447-5443 1.99 V 42913 74956 131.175944 -54.708819 2017-09-05
Alshain Alshain HR 7602 bet β Aql A 19553+0624 3.71 V 98036 188512 298.828304 6.406763 2016-08-21
Alshat Alshat HR 7773 nu ν Cap A 20207-1246 4.77 V 100310 193432 305.165898 -12.759079 2017-06-30
Altair Altair HR 7557 alf α Aql _ 19508+0852 0.76 V 97649 187642 297.695827 8.868321 2016-06-30
Altais Altais HR 7310 del δ Dra _ 19126+6740 3.07 V 94376 180711 288.138750 67.661541 2016-08-21
Alterf Alterf HR 3773 lam λ Leo _ _ 4.32 V 46750 82308 142.930115 22.967970 2017-02-01
Aludra Aludra HR 2827 eta η CMa _ 07241-2918 2.45 V 35904 58350 111.023760 -29.303106 2016-07-20
Alula Australis Alula Australis HR 4375 ksi ξ UMa Aa 11182+3132 4.41 V 55203 98231 169.545423 31.529161 2016-07-20
Alula Borealis Alula Borealis HR 4377 nu ν UMa _ 11185+3306 3.49 V 55219 98262 169.619737 33.094305 2016-07-20
Alya Alya HR 7141 tet01 θ1 Ser A 18562+0412 4.62 V 92946 175638 284.054949 4.203602 2016-08-21
Alzirr Alzirr HR 2484 ksi ξ Gem _ _ 3.35 V 32362 48737 101.322351 12.895592 2017-06-30
Amadioha Amadioha HD 43197 _ _ CMa _ _ 8.98 V 29550 43197 93.398590 -29.897264 2019-12-17
Amansinaya Amansinaya WASP-34 _ _ Crt _ _ 10.30 V _ _ 165.399575 -23.860662 2019-12-17
Anadolu Anadolu WASP-52 _ _ Peg _ _ 11.95 G _ _ 348.494823 8.761270 2019-12-17
Ancha Ancha HR 8499 tet θ Aqr _ _ 4.17 V 110003 211391 334.208485 -7.783291 2016-09-12
Angetenar Angetenar HR 850 tau02 τ2 Eri _ 02510-2100 4.76 V 13288 17824 42.759674 -21.004018 2017-06-30
Aniara Aniara HD 102956 _ _ UMa _ _ 7.86 V 57820 102956 177.843796 57.640734 2019-12-17
Ankaa Ankaa HR 99 alf α Phe _ 00263-4218 2.40 V 2081 2261 6.570939 -42.306084 2016-07-20
Anser Anser HR 7405 alf α Vul _ 19287+2440 4.44 V 95771 183439 292.176375 24.664903 2017-06-30
Antares Antares HR 6134 alf α Sco A 16294-2626 1.06 V 80763 148478 247.351915 -26.432003 2016-06-30
Arcalis Arcalís HD 131496 _ _ Boo _ _ 7.80 V 72845 131496 223.345951 18.235409 2019-12-17
Arcturus Arcturus HR 5340 alf α Boo _ 14157+1911 -0.05 V 69673 124897 213.915300 19.182409 2016-06-30
Arkab Posterior Arkab Posterior HR 7343 bet02 β2 Sgr _ _ 4.27 V 95294 181623 290.804740 -44.799779 2016-10-05
Arkab Prior Arkab Prior HR 7337 bet01 β1 Sgr _ 19226-4428 3.96 V 95241 181454 290.659551 -44.458959 2016-10-05
Arneb Arneb HR 1865 alf α Lep A 05327-1749 2.58 V 25985 36673 83.182567 -17.822289 2016-07-20
Ascella Ascella HR 7194 zet ζ Sgr A 19026-2953 2.60 V 93506 176687 285.653043 -29.880063 2016-09-12
Asellus Australis Asellus Australis HR 3461 del δ Cnc Aa 08447+1809 3.94 V 42911 74442 131.171248 18.154309 2016-11-06
Asellus Borealis Asellus Borealis HR 3449 gam γ Cnc Aa 08433+2128 4.66 V 42806 74198 130.821442 21.468501 2016-11-06
Ashlesha Ashlesha HR 3482 eps ε Hya A 08468+0625 3.49 V 43109 74874 131.693794 6.418809 2018-06-01
Aspidiske Aspidiske HR 3699 iot ι Car _ _ 2.21 V 45556 80404 139.272529 -59.275232 2016-07-20
Asterope Asterope HR 1151 21 21 Tau A 03459+2433 5.76 V 17579 23432 56.476987 24.554512 2016-08-21
Atakoraka Atakoraka WASP-64 _ _ CMa _ 06445-3252 12.53 G _ _ 101.115022 -32.858383 2019-12-17
Athebyne Athebyne HR 6132 eta η Dra A 16240+6131 2.73 V 80331 148387 245.997858 61.514214 2017-09-05
Atik Atik HR 1131 omi ο Per A 03443+3217 3.84 V 17448 23180 56.079720 32.288240 2016-09-12
Atlas Atlas HR 1178 27 27 Tau Aa1 03492+2403 3.62 V 17847 23850 57.290597 24.053415 2016-08-21
Atria Atria HR 6217 alf α TrA _ 16487-6902 1.91 V 82273 150798 252.166229 -69.027712 2016-07-20
Avior Avior HR 3307 eps ε Car A 08225-5931 1.86 V 41037 71129 125.628480 -59.509484 2016-07-20
Axolotl Axólotl HD 224693 _ _ Cet _ _ 8.23 V 118319 224693 359.974298 -22.428116 2019-12-17
Ayeyarwady Ayeyarwady HD 18742 _ _ Eri _ _ 7.81 V 13993 18742 45.044402 -20.802604 2019-12-17
Azelfafage Azelfafage HR 8301 pi01 π1 Cyg _ _ 4.69 V 107136 206672 325.523602 51.189623 2016-09-12
Azha Azha HR 874 eta η Eri _ _ 3.89 V 13701 18322 44.106873 -8.898145 2016-09-12
Azmidi Azmidi HR 3045 ksi ξ Pup _ 07493-2452 3.45 V 38170 63700 117.323563 -24.859786 2018-06-01
Baekdu Baekdu HD 133086 8 8 UMi _ 14568+7454 6.83 V 73136 133086 224.201473 74.900923 2019-12-17
Barnard's Star Barnard's Star GJ 699 V2500 V2500 Oph _ _ 9.54 V 87937 _ 269.454023 4.668288 2017-02-01
Baten Kaitos Baten Kaitos HR 539 zet ζ Cet Aa 01515-1020 3.74 V 8645 11353 27.865137 -10.335044 2016-09-12
Beemim Beemim HR 1393 ups03 υ3 Eri _ _ 3.97 V 20535 28028 66.009239 -34.016848 2017-06-30
Beid Beid HR 1298 omi01 ο1 Eri _ _ 4.04 V 19587 26574 62.966415 -6.837580 2016-09-12
Belel Belel HD 181342 _ _ Sgr _ _ 7.55 V 95124 181342 290.267627 -23.619570 2019-12-17
Belenos Bélénos HD 8574 _ _ Psc _ _ 7.12 V 6643 8574 021.302148 28.566695 2019-12-17
Bellatrix Bellatrix HR 1790 gam γ Ori _ 05251+0621 1.64 V 25336 35468 81.282764 6.349703 2016-06-30
Berehynia Berehynia HAT-P-15 _ _ Per _ _ 11.72 G _ _ 066.248062 39.460642 2019-12-17
Betelgeuse Betelgeuse HR 2061 alf α Ori Aa 05552+0724 0.45 V 27989 39801 88.792939 7.407064 2016-06-30
Bharani Bharani HR 838 41 41 Ari Aa 02500+2716 3.61 V 13209 17573 42.495972 27.260507 2017-06-30
Bibha Bibhā HD 86081 _ _ Sex _ _ 8.73 V 48711 86081 149.024661 -3.808423 2019-12-17
Biham Biham HR 8450 tet θ Peg _ _ 3.52 V 109427 210418 332.549939 6.197863 2016-08-21
Bosona Bosona HD 206610 _ _ Aqr _ _ 8.34 V 107251 206610 325.853751 -7.408253 2019-12-17
Botein Botein HR 951 del δ Ari _ _ 4.35 V 14838 19787 47.907356 19.726674 2016-09-12
Brachium Brachium HR 5603 sig σ Lib A 15041-2517 3.25 V 73714 133216 226.017567 -25.281961 2017-09-05
Bubup Bubup HD 38283 _ _ Men _ _ 6.69 V 26380 38283 84.258403 -73.699346 2019-12-17
Buna Buna HD 16175 _ _ And _ _ 7.28 V 12191 16175 39.257963 42.062630 2019-12-17
Bunda Bunda HR 8264 ksi ξ Aqr A 21378-0751 4.80 V 106786 205767 324.437956 -7.854202 2018-06-01
Canopus Canopus HR 2326 alf α Car A 06240-5242 -0.62 V 30438 45348 95.987958 -52.695661 2016-06-30
Capella Capella HR 1708 alf α Aur Aa 05167+4600 0.08 V 24608 34029 79.172328 45.997991 2016-06-30
Caph Caph HR 21 bet β Cas A 00092+5909 2.28 V 746 432 2.294522 59.149781 2016-06-30
Castor Castor HR 2891 alf α Gem Aa 07346+3153 1.98 V 36850 60179 113.649428 31.888276 2016-06-30
Castula Castula HR 265 ups02 υ2 Cas _ _ 4.62 V 4422 5395 14.166271 59.181055 2017-09-05
Cebalrai Cebalrai HR 6603 bet β Oph _ _ 2.76 V 86742 161096 265.868136 4.567300 2016-08-21
Ceibo Ceibo HD 63454 _ _ Cha _ _ 9.37 V 37284 63454 114.841057 -78.278974 2019-12-17
Celaeno Celaeno HR 1140 16 16 Tau _ 03448+2417 5.45 V 17489 23288 56.200893 24.289468 2016-08-21
Cervantes Cervantes HR 6585 mu μ Ara _ _ 5.15 V 86796 160691 266.036255 -51.834051 2015-12-15
Chalawan Chalawan HR 4277 47 47 UMa _ _ 5.03 V 53721 95128 164.866553 40.430256 2015-12-15
Chamukuy Chamukuy HR 1412 tet02 θ2 Tau Aa 04287+1552 3.73 V 20894 28319 67.165586 15.870882 2017-09-05
Chaophraya Chaophraya WASP-50 _ _ Eri _ _ 11.55 G _ _ 043.688059 -10.898063 2019-12-17
Chara Chara HR 4785 bet β CVn Aa 12337+4121 4.24 V 61317 109358 188.435603 41.357479 2016-07-20
Chason Chasoň HAT-P-5 _ _ Lyr _ 18176+3637 11.82 G _ _ 274.405470 36.621436 2019-12-17
Chechia Chechia HD 192699 _ _ Aql _ _ 6.44 V 99894 192699 304.025017 4.580795 2019-12-17
Chertan Chertan HR 4359 tet θ Leo _ _ 3.33 V 54879 97633 168.560019 15.429571 2016-07-20
Citadelle Citadelle HD 1502 _ _ Psc _ _ 8.36 V 1547 1502 4.821110 14.054756 2019-12-17
Citala Citalá HD 52265 _ _ Mon _ _ 6.29 V 33719 52265 105.075149 -5.367161 2019-12-17
Cocibolca Cocibolca HD 4208 _ _ Scl _ _ 7.78 V 3479 4208 11.111045 -26.515683 2019-12-17
Copernicus Copernicus HR 3522 55 55 Cnc A 08526+2820 5.95 V 43587 75732 133.149212 28.330820 2015-12-15
Cor Caroli Cor Caroli HR 4915 alf02 α2 CVn Aa 12560+3819 2.89 V 63125 112413 194.006943 38.318376 2016-07-20
Cujam Cujam HR 6117 ome ω Her A 16254+1402 4.57 V 80463 148112 246.353979 14.033274 2017-02-01
Cursa Cursa HR 1666 bet β Eri _ 05078-0505 2.78 V 23875 33111 76.962440 -5.086446 2016-07-20
Dabih Dabih HR 7776 bet01 β1 Cap Aa 20210-1447 3.05 V 100345 193495 305.252803 -14.781405 2016-08-21
Dalim Dalim HR 963 alf α For A 03121-2859 3.86 V 14879 20010 48.018864 -28.987620 2017-09-05
Deneb Deneb HR 7924 alf α Cyg _ 20414+4517 1.25 V 102098 197345 310.357980 45.280339 2016-06-30
Deneb Algedi Deneb Algedi HR 8322 del δ Cap Aa 21470-1608 2.85 V 107556 207098 326.760184 -16.127287 2017-02-01
Denebola Denebola HR 4534 bet β Leo _ 11491+1434 2.14 V 57632 102647 177.264910 14.572058 2016-06-30
Diadem Diadem HR 4968 alf α Com A 13100+1732 4.85 V 64241 114378 197.497029 17.529447 2017-02-01
Dingolay Dingolay HD 96063 _ _ Leo _ _ 8.21 V 54158 96063 166.185228 -02.513218 2019-12-17
Diphda Diphda HR 188 bet β Cet _ _ 2.04 V 3419 4128 10.897379 -17.986606 2016-08-21
Diwo Dìwö WASP-17 _ _ Sco _ 15598-2804 11.38 G _ _ 239.962287 -28.061753 2019-12-17
Diya Diya WASP-72 _ _ For _ _ 10.84 G _ _ 041.040041 -30.169045 2019-12-17
Dofida Dofida HD 117618 _ _ Cen _ _ 7.17 V 66047 117618 203.106482 -47.271365 2019-12-17
Dombay Dombay HAT-P-3 _ _ UMa _ _ 11.28 G _ _ 206.094141 48.028668 2019-12-17
Dschubba Dschubba HR 5953 del δ Sco A 16003-2237 2.29 V 78401 143275 240.083359 -22.621710 2016-08-21
Dubhe Dubhe HR 4301 alf α UMa A 11037+6145 1.81 V 54061 95689 165.931965 61.751035 2016-06-30
Dziban Dziban HR 6636 psi01 ψ1 Dra A 17419+7209 4.57 V 86614 162003 265.484814 72.148847 2017-09-05
Ebla Ebla HD 218566 _ _ Psc _ _ 8.59 V 114322 218566 347.294696 -2.260746 2019-12-17
Edasich Edasich HR 5744 iot ι Dra _ 15249+5858 3.29 V 75458 137759 231.232396 58.966063 2015-12-15
Electra Electra HR 1142 17 17 Tau _ 03449+2407 3.72 V 17499 23302 56.218904 24.113336 2016-08-21
Elgafar Elgafar HR 5409 phi ϕ Vir A 14282-0214 4.84 V 70755 126868 217.050575 -2.227957 2018-06-01
Elkurud Elkurud HR 2177 tet θ Col _ _ 5.00 V 29034 42167 91.881801 -37.252920 2018-06-01
Elnath Elnath HR 1791 bet β Tau Aa 05263+2836 1.65 V 25428 35497 81.572971 28.607452 2016-07-20
Eltanin Eltanin HR 6705 gam γ Dra _ 17566+5129 2.24 V 87833 164058 269.151541 51.488896 2016-08-21
Emiw Emiw HD 7199 _ _ Tuc _ _ 8.06 V 5529 7199 17.696756 -66.188164 2019-12-17
Enif Enif HR 8308 eps ε Peg _ 21442+0953 2.38 V 107315 206778 326.046484 9.875009 2016-07-20
Errai Errai HR 8974 gam γ Cep Aa 23393+7738 3.21 V 116727 222404 354.836655 77.632313 2015-12-15
Fafnir Fafnir HR 6945 42 42 Dra A 18260+6534 4.82 V 90344 170693 276.496406 65.563480 2015-12-15
Fang Fang HR 5944 pi π Sco Aa 15589-2607 2.89 V 78265 143018 239.712972 -26.114108 2017-06-30
Fawaris Fawaris HR 7528 del δ Cyg A 19450+4508 2.90 V 97165 186882 296.243658 45.130810 2018-06-01
Felis Felis HR 3923 _ _ Hya _ _ 4.94 V 48615 85951 148.717528 -19.009336 2018-06-01
Felixvarela Felixvarela BD-17 63 _ _ Cet _ _ 9.62 V 2247 _ 7.142942 -16.226345 2019-12-17
Flegetonte Flegetonte HD 102195 _ _ Vir _ 11457+0249 8.07 V 57370 102195 176.426220 2.821479 2019-12-17
Fomalhaut Fomalhaut HR 8728 alf α PsA A 22577-2937 1.17 V 113368 216956 344.412693 -29.622237 2015-12-15
Formosa Formosa HD 100655 _ _ Leo _ _ 6.45 V 56508 100655 173.765637 20.441545 2019-12-17
Franz Franz HAT-P-14 _ _ Her _ 17205+3815 9.86 V _ _ 260.116160 38.242197 2019-12-17
Fulu Fulu HR 153 zet ζ Cas _ _ 3.69 V 2920 3360 9.242851 53.896908 2017-06-30
Fumalsamakah Fumalsamakah HR 8773 bet β Psc _ _ 4.48 V 113889 217891 345.969225 3.820045 2018-06-01
Funi Funi HD 109246 _ _ Dra _ _ 8.75 V 61177 109246 188.029952 74.489547 2019-12-17
Furud Furud HR 2282 zet ζ CMa Aa 06203-3004 3.02 V 30122 44402 95.078300 -30.063367 2016-07-20
Fuyue Fuyue HR 6630 _ _ Sco _ 17499-3703 3.19 V 87261 161892 267.464503 -37.043305 2017-06-30
Gacrux Gacrux HR 4763 gam γ Cru _ 12312-5707 1.59 V 61084 108903 187.791498 -57.113213 2016-07-20
Gakyid Gakyid HD 73534 _ _ Cnc _ _ 8.23 V 42446 73534 129.815846 12.960375 2019-12-17
Geminga Geminga PSR B0633+17 _ _ Gem _ _ _ _ _ _ 98.475638 17.770253 2022-04-04
Giausar Giausar HR 4434 lam λ Dra _ _ 3.82 V 56211 100029 172.850920 69.331075 2017-02-01
Gienah Gienah HR 4662 gam γ Crv _ 12158-1733 2.58 V 59803 106625 183.951543 -17.541929 2016-11-06
Ginan Ginan HR 4700 eps ε Cru _ _ 3.59 V 60260 107446 185.340039 -60.401147 2017-11-17
Gloas Gloas WASP-13 _ _ Lyn _ _ 10.38 G _ _ 140.102977 33.882417 2019-12-17
Gomeisa Gomeisa HR 2845 bet β CMi A 07272+0817 2.89 V 36188 58715 111.787674 8.289316 2016-07-20
Grumium Grumium HR 6688 ksi ξ Dra A 17535+5652 3.73 V 87585 163588 268.382207 56.872646 2016-09-12
Gudja Gudja HR 5879 kap κ Ser _ _ 4.09 V 77450 141477 237.184903 18.141564 2018-08-10
Gumala Gumala HD 179949 V5652 V5652 Sgr _ 19156-2411 6.25 V 94645 179949 288.888459 -24.179354 2019-12-17
Guniibuu Guniibuu HR 6402 36 _ Oph A 17153-2636 5.07 V 84405 155886 258.837875 -26.598892 2018-08-10
Hadar Hadar HR 5267 bet β Cen Aa 14038-6022 0.61 V 68702 122451 210.955856 -60.373035 2016-08-21
Haedus Haedus HR 1641 eta η Aur _ _ 3.18 V 23767 32630 76.628722 41.234476 2017-06-30
Hamal Hamal HR 617 alf α Ari _ _ 2.01 V 9884 12929 31.793357 23.462418 2016-07-20
Hassaleh Hassaleh HR 1577 iot ι Aur _ _ 2.69 V 23015 31398 74.248421 33.166100 2017-06-30
Hatysa Hatysa HR 1899 iot ι Ori Aa 05354-0555 2.80 V 26241 37043 83.858258 -05.909901 2017-09-05
Helvetios Helvetios HR 8729 51 51 Peg _ 22575+2046 5.49 V 113357 217014 344.366583 20.768831 2015-12-15
Heze Heze HR 5107 zet ζ Vir A 13347-0036 3.38 V 66249 118098 203.673300 -0.595820 2018-06-01
Hoggar Hoggar HD 28678 _ _ Tau _ _ 8.38 V 21109 28678 67.856059 4.575295 2019-12-17
Homam Homam HR 8634 zet ζ Peg A 22415+1050 3.41 V 112029 214923 340.365503 10.831363 2016-08-21
Horna Horna HAT-P-38 _ _ Tri _ _ 12.30 G _ _ 035.383251 32.246136 2019-12-17
Hunahpu Hunahpú HD 98219 _ _ Crt _ _ 8.05 V 55174 98219 169.448138 -23.975415 2019-12-17
Hunor Hunor HAT-P-2 _ _ Her _ _ 8.72 V 80076 147506 245.151491 41.048086 2019-12-17
Iklil Iklil HR 5928 rho ρ Sco Aa 15569-2913 3.87 V 78104 142669 239.221151 -29.214073 2017-09-05
Illyrian Illyrian HD 82886 _ _ LMi _ _ 7.62 V 47087 82886 143.938267 34.780742 2019-12-17
Imai Imai HR 4656 del δ Cru _ _ 2.75 V 59747 106490 183.786320 -58.748927 2018-08-10
Inquill Inquill HD 156411 _ _ Ara _ _ 6.67 V 84787 156411 259.964168 -48.549320 2019-12-17
Intan Intan HD 20868 _ _ For _ _ 9.92 V 15578 20868 50.177891 -33.730104 2019-12-17
Intercrus Intercrus HR 3743 _ _ UMa _ 09287+4536 5.41 V 46471 81688 142.166618 45.601482 2015-12-15
Irena Irena WASP-38 _ _ Her _ _ 9.41 V _ _ 243.959855 10.032579 2019-12-17
Itonda Itonda HD 208487 _ _ Gru _ _ 7.47 V 108375 208487 329.332698 -37.763624 2019-12-17
Izar Izar HR 5506 eps ε Boo A 14450+2704 2.35 V 72105 129988 221.246763 27.074207 2016-08-21
Jabbah Jabbah HR 6027 nu ν Sco Aa 16120-1928 4.50 V 79374 145502 242.998894 -19.460708 2017-06-30
Jishui Jishui HR 2930 omi ο Gem _ _ 4.89 V 37265 61110 114.791387 34.584346 2017-06-30
Kaffaljidhma Kaffaljidhma HR 804 gam γ Cet A 02433+0314 3.56 V 12706 16970 40.825163 3.235816 2017-02-01
Kalausi Kalausi HD 83443 _ _ Vel _ 09372-4316 8.23 V 47202 83443 144.299282 -43.272204 2019-12-17
Kamuy Kamuy HD 145457 _ _ CrB _ _ 6.57 V 79219 145457 242.516310 26.742748 2019-12-17
Kang Kang HR 5315 kap κ Vir _ _ 4.18 V 69427 124294 213.223939 -10.273704 2017-06-30
Karaka Karaka HD 137388 _ _ Aps _ 15357-8012 8.71 V 76351 137388 233.916337 -80.204594 2019-12-17
Kaus Australis Kaus Australis HR 6879 eps ε Sgr A 18242-3423 1.79 V 90185 169022 276.042993 -34.384616 2016-07-20
Kaus Borealis Kaus Borealis HR 6913 lam λ Sgr _ 18280-2525 2.82 V 90496 169916 276.992668 -25.421701 2016-07-20
Kaus Media Kaus Media HR 6859 del δ Sgr _ 18210-2950 2.72 V 89931 168454 275.248508 -29.828104 2016-07-20
Kaveh Kaveh HD 175541 _ _ Ser _ _ 8.02 V 92895 175541 283.920350 4.265323 2019-12-17
Keid Keid HR 1325 omi02 ο2 Eri A 04153-0739 4.43 V 19849 26965 63.817999 -7.652872 2016-09-12
Khambalia Khambalia HR 5359 lam λ Vir A 14191-1322 4.52 V 69974 125337 214.777468 -13.371096 2017-09-05
Kitalpha Kitalpha HR 8131 alf α Equ A 21158+0515 3.92 V 104987 202447 318.955949 5.247865 2016-08-21
Kochab Kochab HR 5563 bet β UMi _ 14507+7409 2.07 V 72607 131873 222.676357 74.155504 2016-07-20
Koeia Koeia HIP 12961 _ _ Eri _ _ 10.25 V 12961 _ 041.678695 -23.086612 2019-12-17
Koit Koit XO-4 _ _ Lyn _ _ 10.78 G _ _ 110.388168 58.268087 2019-12-17
Kornephoros Kornephoros HR 6148 bet β Her Aa 16302+2129 2.78 V 80816 148856 247.554998 21.489611 2016-08-21
Kraz Kraz HR 4786 bet β Crv _ _ 2.65 V 61359 109379 188.596810 -23.396759 2018-06-01
Kurhah Kurhah HR 8417 ksi ξ Cep Aa 22038+6438 4.26 V 108917 209790 330.947724 64.627971 2016-09-12
La Superba La Superba HR 4846 Y Y CVn _ _ 5.42 V 62223 110914 191.282615 45.440257 2018-08-10
Larawag Larawag HR 6241 eps ε Sco _ _ 2.29 V 82396 151680 252.540878 -34.293232 2017-11-17
Lerna Lerna HAT-P-42 _ _ Hya _ _ 12.00 G _ _ 135.344371 6.097227 2019-12-17
Lesath Lesath HR 6508 ups υ Sco _ _ 2.70 V 85696 158408 262.690979 -37.295813 2016-08-21
Libertas Libertas HR 7595 ksi ξ Aql A 19542+0828 4.71 V 97938 188310 298.562008 8.461453 2015-12-15
Lich Lich PSR B1257+12 _ _ Vir _ _ _ _ _ _ 195.012701 12.682417 2015-12-15
Liesma Liesma HD 118203 _ _ UMa _ _ 8.05 V 66192 118203 203.510581 53.728527 2019-12-17
Lilii Borea Lilii Borea HR 824 39 39 Ari _ _ 4.52 V 13061 17361 41.977256 29.247115 2017-09-05
Lionrock Lionrock HD 212771 _ _ Aqr _ _ 7.60 V 110813 212771 336.762801 -17.263656 2019-12-17
Lucilinburhuc Lucilinburhuc HD 45350 _ _ Aur _ _ 7.89 V 30860 45350 97.190463 38.962962 2019-12-17
Lusitania Lusitânia HD 45652 _ _ Mon _ _ 8.10 V 30905 45652 97.304966 10.933891 2019-12-17
Maasym Maasym HR 6526 lam λ Her _ _ 4.41 V 85693 158899 262.684626 26.110645 2016-09-12
Macondo Macondo HD 93083 _ _ Ant _ _ 8.30 V 52521 93083 161.087146 -33.577024 2019-12-17
Mago Mago HD 32518 _ _ Cam _ _ 6.43 V 24003 32518 77.403000 69.639404 2019-12-17
Mahasim Mahasim HR 2095 tet θ Aur A 05597+3713 2.65 V 28380 40312 89.930292 37.212585 2017-06-30
Mahsati Mahsati HD 152581 _ _ Oph _ _ 8.38 V 82651 152581 253.431594 11.973748 2019-12-17
Maia Maia HR 1149 20 20 Tau _ 03458+2422 3.87 V 17573 23408 56.456695 24.367751 2016-07-20
Malmok Malmok WASP-39 V732 V732 Vir _ 14293-0327 11.89 G _ _ 217.326730 -3.444501 2019-12-17
Marfik Marfik HR 6149 lam λ Oph A 16309+0159 3.82 V 80883 148857 247.728453 1.983888 2016-09-12
Markab Markab HR 8781 alf α Peg _ _ 2.49 V 113963 218045 346.190223 15.205267 2016-06-30
Markeb Markeb HR 3734 kap κ Vel _ _ 2.47 V 45941 81188 140.528407 -55.010667 2017-09-05
Marohu Márohu WASP-6 _ _ Aqr _ _ 11.98 G _ _ 348.157237 -22.673966 2019-12-17
Marsic Marsic HR 6008 kap κ Her A 16081+1703 5.00 V 79043 145001 242.018857 17.046980 2017-02-01
Matar Matar HR 8650 eta η Peg Aa 22430+3013 2.93 V 112158 215182 340.750579 30.221244 2016-08-21
Mazaalai Mazaalai HAT-P-21 _ _ UMa _ _ 11.56 G _ _ 171.274941 41.027964 2020-03-01
Mebsuta Mebsuta HR 2473 eps ε Gem 06439+2508 3.06 V 32246 48329 100.983026 25.131127 2016-07-20
Megrez Megrez HR 4660 del δ UMa _ 12154+5702 3.32 V 59774 106591 183.856503 57.032615 2016-06-30
Meissa Meissa HR 1879 lam λ Ori A 05351+0956 3.39 V 26207 36861 83.784486 9.934156 2016-07-20
Mekbuda Mekbuda HR 2650 zet ζ Gem Aa 07041+2034 4.01 V 34088 52973 106.027215 20.570295 2016-09-12
Meleph Meleph HR 3429 eps ε Cnc Aa 08405+1933 6.29 V 42556 73731 130.112544 19.544809 2017-09-05
Menkalinan Menkalinan HR 2088 bet β Aur Aa 05595+4457 1.90 V 28360 40183 89.882179 44.947433 2016-07-20
Menkar Menkar HR 911 alf α Cet _ _ 2.54 V 14135 18884 45.569885 4.089737 2016-06-30
Menkent Menkent HR 5288 tet θ Cen _ 14067-3622 2.06 V 68933 123139 211.670617 -36.369958 2016-08-21
Menkib Menkib HR 1228 ksi ξ Per _ 03590+3547 3.98 V 18614 24912 59.741253 35.791032 2016-09-12
Merak Merak HR 4295 bet β UMa _ _ 2.34 V 53910 95418 165.460319 56.382426 2016-06-30
Merga Merga HR 5533 38 38 Boo _ _ 5.76 V 72487 130945 222.327791 46.116206 2016-09-12
Meridiana Meridiana HR 7254 alf α CrA _ _ 4.11 V 94114 178253 287.368087 -37.904473 2017-09-05
Merope Merope HR 1156 23 23 Tau Aa 03463+2357 4.14 V 17608 23480 56.581552 23.948348 2016-07-20
Mesarthim Mesarthim HR 546 gam02 γ2 Ari A 01535+1918 4.75 V 8832 11502 28.382560 19.293852 2016-08-21
Miaplacidus Miaplacidus HR 3685 bet β Car _ _ 1.67 V 45238 80007 138.299906 -69.717208 2016-07-20
Mimosa Mimosa HR 4853 bet β Cru _ 12477-5941 1.25 V 62434 111123 191.930263 -59.688764 2016-07-20
Minchir Minchir HR 3418 sig σ Hya _ _ 4.45 V 42402 73471 129.689323 3.341436 2017-09-05
Minelauva Minelauva HR 4910 del δ Vir _ 12556+0324 3.39 V 63090 112300 193.900869 3.397470 2017-06-30
Mintaka Mintaka HR 1852 del δ Ori Aa 05320-0018 2.25 V 25930 36486 83.001667 -0.299095 2016-07-20
Mira Mira HR 681 omi ο Cet Aa 02193-0259 6.47 V 10826 14386 34.836617 -2.977640 2016-06-30
Mirach Mirach HR 337 bet β And _ 01097+3537 2.07 V 5447 6860 17.433013 35.620557 2016-06-30
Miram Miram HR 834 eta η Per A 02507+5554 3.77 V 13268 17506 42.674207 55.895497 2017-09-05
Mirfak Mirfak HR 1017 alf α Per _ 03243+4952 1.79 V 15863 20902 51.080709 49.861179 2016-07-20
Mirzam Mirzam HR 2294 bet β CMa _ 06227-1757 1.98 V 30324 44743 95.674939 -17.955919 2016-07-20
Misam Misam HR 941 kap κ Per Aa 03095+4451 3.79 V 14668 19476 47.374048 44.857541 2017-09-05
Mizar Mizar HR 5054 zet ζ UMa Aa 13239+5456 2.23 V 65378 116656 200.981429 54.925362 2016-06-30
Moldoveanu Moldoveanu XO-1 _ _ CrB _ _ 11.28 V _ _ 240.549360 28.169561 2019-12-17
Monch Mönch HD 130322 _ _ Vir _ 14475-0017 8.04 V 72339 130322 221.886361 -00.281474 2019-12-17
Montuno Montuno WASP-79 _ _ Eri _ _ 10.06 V _ _ 066.370903 -30.600447 2019-12-17
Morava Morava WASP-60 _ _ Peg _ _ 12.18 V _ _ 356.666561 31.155937 2019-12-17
Moriah Moriah HAT-P-23 _ _ Del _ _ 12.17 G _ _ 306.123848 16.762170 2019-12-17
Mothallah Mothallah HR 544 alf α Tri _ 01531+2935 3.42 V 8796 11443 28.270450 29.578826 2016-08-21
Mouhoun Mouhoun HD 30856 _ _ Eri _ _ 7.91 V 22491 30856 72.574423 -24.368843 2019-12-17
Mpingo Mpingo WASP-71 _ _ Cet _ _ 10.57 G _ _ 029.263350 0.758855 2019-12-17
Muliphein Muliphein HR 2657 gam γ CMa _ _ 4.11 V 34045 53244 105.939554 -15.633286 2016-08-21
Muphrid Muphrid HR 5235 eta η Boo Aa 13547+1824 2.68 V 67927 121370 208.671161 18.397717 2016-09-12
Muscida Muscida HR 3323 omi ο UMa A 08303+6043 3.35 V 41704 71369 127.566128 60.718170 2016-07-20
Musica Musica HR 8030 18 18 Del _ 20584+1050 5.48 V 103527 199665 314.608058 10.839286 2015-12-15
Muspelheim Muspelheim HAT-P-29 _ _ Per _ 02125+5147 11.73 G _ _ 033.131160 51.778767 2019-12-17
Nahn Nahn HR 3627 ksi ξ Cnc A 09094+2203 5.70 V 44946 78515 137.339722 22.045446 2018-06-01
Naledi Naledi WASP-62 _ _ Dor _ _ 10.12 V _ _ 087.139974 -63.988441 2019-12-17
Naos Naos HR 3165 zet ζ Pup _ _ 2.21 V 39429 66811 120.896031 -40.003148 2016-08-21
Nashira Nashira HR 8278 gam γ Cap A _ 3.69 V 106985 206088 325.022735 -16.662308 2016-08-21
Nasti Násti HD 68988 _ _ UMa _ _ 8.20 V 40687 68988 124.592386 61.460721 2019-12-17
Natasha Natasha HD 85390 _ _ Vel _ 09500-4947 8.54 V 48235 85390 147.510404 -49.790266 2019-12-17
Nekkar Nekkar HR 5602 bet β Boo _ _ 3.49 V 73555 133208 225.486510 40.390567 2016-08-21
Nembus Nembus HR 464 51 51 And _ _ 3.59 V 7607 9927 24.498154 48.628214 2017-09-05
Nenque Nenque HD 6434 _ _ Phe _ _ 7.72 V 5054 6434 16.167293 -39.488218 2019-12-17
Nervia Nervia HD 49674 _ _ Aur A 06515+4052 8.10 V 32916 49674 102.877151 40.867757 2019-12-17
Nganurganity Nganurganity HR 2646 sig σ CMa _ 07017-2756 3.49 V 33856 52877 105.429782 -27.934830 2017-09-05
Nihal Nihal HR 1829 bet β Lep A 05282-2046 2.83 V 25606 36079 82.061346 -20.759441 2016-07-20
Nikawiy Nikawiy HD 136418 _ _ Boo _ _ 7.88 V 74961 136418 229.775760 41.733206 2019-12-17
Nosaxa Nosaxa HD 48265 _ _ Pup _ _ 8.05 V 31895 48265 100.007196 -48.541956 2019-12-17
Nunki Nunki HR 7121 sig σ Sgr Aa 18553-2618 2.05 V 92855 175191 283.816360 -26.296724 2016-08-21
Nusakan Nusakan HR 5747 bet β CrB A 15278+2906 3.90 V 75695 137909 231.957211 29.105699 2016-09-12
Nushagak Nushagak HD 17156 _ _ Cas _ _ 8.17 V 13192 17156 42.435361 71.753231 2019-12-17
Nyamien Nyamien WASP-15 _ _ Cen _ 13557-3210 10.80 G _ _ 208.927967 -32.159615 2019-12-17
Ogma Ogma HD 149026 _ _ Her _ _ 8.16 V 80838 149026 247.623409 38.347311 2015-12-15
Okab Okab HR 7235 zet ζ Aql A 19054+1352 2.99 V 93747 177724 286.352533 13.863477 2018-06-01
Paikauhale Paikauhale HR 6165 tau τ Sco A 16359-2813 2.82 V 81266 149438 248.970637 -28.216017 2018-08-10
Parumleo Parumleo WASP-32 _ _ Psc _ _ 11.41 G _ _ 003.961699 1.200441 2019-12-17
Peacock Peacock HR 7790 alf α Pav Aa 20256-5644 1.94 V 100751 193924 306.411904 -56.735090 2016-07-20
Petra Petra WASP-80 _ _ Aql _ 20127-0209 11.27 G _ _ 303.167372 -2.144220 2019-12-17
Phact Phact HR 1956 alf α Col _ 05396-3404 2.65 V 26634 37795 84.912254 -34.074110 2016-07-20
Phecda Phecda HR 4554 gam γ UMa Aa 11538+5342 2.41 V 58001 103287 178.457679 53.694758 2016-07-20
Pherkad Pherkad HR 5735 gam γ UMi _ _ 3.00 V 75097 137422 230.182150 71.834017 2016-08-21
Phoenicia Phoenicia HD 192263 V1703 V1703 Aql _ 20140-0052 7.79 V 99711 192263 303.499356 -0.866881 2019-12-17
Piautos Piautos HR 3268 lam λ Cnc A _ 5.92 V 40881 70011 125.133901 24.022311 2018-06-01
Pincoya Pincoya HD 164604 _ _ Sgr _ _ 9.66 V 88414 164604 270.778888 -28.560655 2019-12-17
Pipirima Pipirima HR 6252 mu02 μ2 Sco A 16523-3801 3.56 V 82545 151985 253.083939 -38.017535 2017-09-05 *
Pipoltr Pipoltr TrES-3 V1434 V1434 Her _ _ 12.20 G _ _ 268.029244 37.546177 2019-12-17
Pleione Pleione HR 1180 28 28 Tau Aa 03492+2408 5.05 V 17851 23862 57.296738 24.136710 2016-06-30
Poerava Poerava HD 221287 _ _ Tuc _ _ 7.82 V 116084 221287 352.834742 -58.209731 2019-12-17
Polaris Polaris HR 424 alf α UMi Aa 02318+8916 2.13 V 11767 8890 37.954561 89.264109 2016-06-30
Polaris Australis Polaris Australis HR 7228 sig σ Oct _ _ 5.45 V 104382 177482 317.195164 -88.956499 2017-09-05
Polis Polis HR 6812 mu μ Sgr Aa 18138-2104 3.84 V 89341 166937 273.440870 -21.058832 2017-09-05
Pollux Pollux HR 2990 bet β Gem _ 07453+2802 1.16 V 37826 62509 116.328958 28.026199 2015-12-15
Porrima Porrima HR 4825 gam γ Vir A 12417-0127 3.44 V 61941 110379 190.415181 -1.449373 2016-07-20
Praecipua Praecipua HR 4247 46 46 LMi _ _ 3.79 V 53229 94264 163.327937 34.214872 2017-06-30
Prima Hyadum Prima Hyadum HR 1346 gam γ Tau A 04198+1538 3.65 V 20205 27371 64.948349 15.627643 2017-09-05
Procyon Procyon HR 2943 alf α CMi A 07393+0514 0.40 V 37279 61421 114.825493 5.224993 2016-06-30
Propus Propus HR 2216 eta η Gem A 06149+2230 3.32 V 29655 42995 93.719405 22.506794 2016-07-20
Proxima Centauri Proxima Centauri GJ 551 alf α Cen C 14396-6050 11.01 V 70890 999999 217.428953 -62.679484 2016-08-21 *
Ran Ran HR 1084 eps ε Eri _ 03329-0927 3.73 V 16537 22049 53.232687 -9.458259 2015-12-15
Rana Rana HR 1136 del δ Eri _ _ 3.53 V 17378 23249 55.812086 -9.763392 2022-04-04
Rapeto Rapeto HD 153950 _ _ Sco _ _ 7.39 V 83547 153950 256.128629 -43.309770 2019-12-17
Rasalas Rasalas HR 3905 mu μ Leo _ _ 3.88 V 48455 85503 148.190903 26.006953 2016-09-12
Rasalgethi Rasalgethi HR 6406 alf01 α1 Her Aa 17146+1423 3.37 V 84345 156014 258.661910 14.390333 2016-06-30
Rasalhague Rasalhague HR 6556 alf α Oph A 17349+1234 2.08 V 86032 159561 263.733627 12.560035 2016-07-20
Rastaban Rastaban HR 6536 bet β Dra A 17304+5218 2.79 V 85670 159181 262.608174 52.301389 2016-08-21
Regulus Regulus HR 3982 alf α Leo A 10084+1158 1.36 V 49669 87901 152.092962 11.967209 2016-06-30
Revati Revati HR 361 zet ζ Psc A 01137+0735 5.21 V 5737 7344 18.432864 7.575354 2017-06-30
Rigel Rigel HR 1713 bet β Ori A 05145-0812 0.18 V 24436 34085 78.634467 -8.201638 2016-06-30
Rigil Kentaurus Rigil Kentaurus HR 5459 alf α Cen A 14396-6050 -0.01 V 71683 128620 219.902066 -60.833975 2016-11-06 *
Rosaliadecastro Rosalíadecastro HD 149143 _ _ Oph _ _ 7.89 V 81022 149143 248.212712 2.084828 2019-12-17
Rotanev Rotanev HR 7882 bet β Del A 20375+1436 3.64 V 101769 196524 309.387235 14.595115 2016-09-12
Ruchbah Ruchbah HR 403 del δ Cas Aa 01258+6014 2.66 V 6686 8538 21.453964 60.235284 2016-08-21
Rukbat Rukbat HR 7348 alf α Sgr _ _ 3.96 V 95347 181869 290.971570 -40.615940 2016-07-20
Sabik Sabik HR 6378 eta η Oph A 17104-1544 2.43 V 84012 155125 257.594529 -15.724907 2016-08-21
Saclateni Saclateni HR 1612 zet ζ Aur A 05025+4105 3.69 V 23453 32068 75.619531 41.075839 2017-06-30
Sadachbia Sadachbia HR 8518 gam γ Aqr Aa 22217-0123 3.86 V 110395 212061 335.414064 -1.387334 2016-08-21
Sadalbari Sadalbari HR 8684 mu μ Peg _ _ 3.51 V 112748 216131 342.500809 24.601577 2016-08-21
Sadalmelik Sadalmelik HR 8414 alf α Aqr A 22058-0019 2.95 V 109074 209750 331.445983 -0.319849 2016-08-21
Sadalsuud Sadalsuud HR 8232 bet β Aqr A 21316-0534 2.90 V 106278 204867 322.889715 -5.571176 2016-08-21
Sadr Sadr HR 7796 gam γ Cyg A 20222+4015 2.23 V 100453 194093 305.557091 40.256679 2016-08-21
Sagarmatha Sagarmatha HD 100777 _ _ Leo _ _ 8.42 V 56572 100777 173.964679 -04.755695 2019-12-17
Saiph Saiph HR 2004 kap κ Ori _ _ 2.07 V 27366 38771 86.939120 -9.669605 2016-07-20
Salm Salm HR 8880 tau τ Peg _ _ 4.58 V 115250 220061 350.159341 23.740336 2017-09-05
Samaya Sāmaya HD 205739 _ _ PsA _ _ 8.56 V 106824 205739 324.535016 -31.737484 2019-12-17
Sansuna Sansuna HAT-P-34 _ _ Sge _ 20127+1806 10.31 V _ _ 303.195361 18.104833 2019-12-17
Sargas Sargas HR 6553 tet θ Sco A 17373-4300 1.86 V 86228 159532 264.329711 -42.997824 2016-08-21
Sarin Sarin HR 6410 del δ Her Aa 17150+2450 3.12 V 84379 156164 258.757963 24.839204 2016-09-12
Sceptrum Sceptrum HR 1481 53 53 Eri A 04382-1418 4.02 V 21594 29503 69.545104 -14.304017 2017-06-30
Scheat Scheat HR 8775 bet β Peg _ 23038+2805 2.44 V 113881 217906 345.943572 28.082785 2016-06-30
Schedar Schedar HR 168 alf α Cas _ 00405+5632 2.24 V 3179 3712 10.126838 56.537331 2016-08-21
Secunda Hyadum Secunda Hyadum HR 1373 del01 δ1 Tau Aa 04230+1732 3.78 V 20455 27697 65.733719 17.542514 2017-09-05
Segin Segin HR 0542 eps ε Cas _ _ 3.35 V 8886 11415 28.598857 63.670101 2017-09-05
Seginus Seginus HR 5435 gam γ Boo Aa 14321+3818 3.04 V 71075 127762 218.019466 38.308251 2016-08-21
Sham Sham HR 7479 alf α Sge _ 19401+1801 4.39 V 96757 185758 295.024133 18.013891 2016-09-12
Shama Shama HD 99109 _ _ Leo _ _ 9.10 V 55664 99109 171.072328 -1.529073 2019-12-17
Sharjah Sharjah HIP 79431 _ _ Sco _ _ 11.34 V 79431 _ 243.174084 -18.875503 2019-12-17
Shaula Shaula HR 6527 lam λ Sco Aa 17336-3706 2.08 V 85927 158926 263.402167 -37.103824 2016-07-20
Sheliak Sheliak HR 7106 bet β Lyr Aa1 18501+3322 3.60 V 92420 174638 282.519978 33.362668 2016-08-21
Sheratan Sheratan HR 553 bet β Ari A 01546+2049 2.70 V 8903 11636 28.660046 20.808031 2016-07-20
Sika Sika HD 181720 _ _ Sgr _ _ 7.84 V 95262 181720 290.720770 -32.919053 2019-12-17
Sirius Sirius HR 2491 alf α CMa A 06451-1643 -1.45 V 32349 48915 101.287155 -16.716116 2016-06-30
Situla Situla HR 8610 kap κ Aqr A 22378-0414 5.04 V 111710 214376 339.439084 -4.228056 2016-09-12
Skat Skat HR 8709 del δ Aqr A _ 3.27 V 113136 216627 343.662556 -15.820827 2016-08-21
Solaris Solaris BD+14 4559 _ _ Peg _ _ 9.78 V 104780 _ 318.399959 14.689385 2019-12-17
Spica Spica HR 5056 alf α Vir Aa 13252-1110 0.98 V 65474 116658 201.298247 -11.161319 2016-06-30
Sterrennacht Sterrennacht HAT-P-6 _ _ And _ _ 10.54 V _ _ 354.774209 42.465973 2019-12-17
Stribor Stribor HD 75898 _ _ Lyn _ _ 8.03 V 43674 75898 133.461689 33.056812 2019-12-17
Sualocin Sualocin HR 7906 alf α Del Aa 20396+1555 3.86 V 101958 196867 309.909530 15.912073 2016-09-12
Subra Subra HR 3852 omi ο Leo Aa 09412+0954 3.52 V 47508 83808 145.287640 9.892308 2016-09-12
Suhail Suhail HR 3634 lam λ Vel _ 09080-4326 2.23 V 44816 78647 136.998993 -43.432589 2016-08-21
Sulafat Sulafat HR 7178 gam γ Lyr _ 18589+3241 3.25 V 93194 176437 284.735928 32.689557 2016-08-21
Syrma Syrma HR 5338 iot ι Vir _ _ 4.07 V 69701 124850 214.003623 -6.000545 2016-09-12
Tabit Tabit HR 1543 pi03 π3 Ori _ 04498+0658 3.19 V 22449 30652 72.460045 6.961275 2017-09-05
Taika Taika HAT-P-40 _ _ Lac _ _ 11.35 V _ _ 335.512865 45.457366 2019-12-17
Taiyangshou Taiyangshou HR 4518 chi χ UMa _ _ 3.69 V 57399 102224 176.512559 47.779406 2017-06-30
Taiyi Taiyi HR 4916 8 8 Dra _ _ 5.23 V 63076 112429 193.868951 65.438474 2017-06-30
Talitha Talitha HR 3569 iot ι UMa Aa 08592+4803 3.12 V 44127 76644 134.801890 48.041826 2016-07-20
Tangra Tangra WASP-21 _ _ Peg _ _ 11.40 G _ _ 347.492723 18.396078 2019-12-17
Tania Australis Tania Australis HR 4069 mu μ UMa A _ 3.06 V 50801 89758 155.582250 41.499519 2016-07-20
Tania Borealis Tania Borealis HR 4033 lam λ UMa A _ 3.45 V 50372 89021 154.274095 42.914356 2016-07-20
Tapecue Tapecue HD 63765 _ _ Car _ _ 8.10 V 38041 63765 116.957168 -54.264144 2019-12-17
Tarazed Tarazed HR 7525 gam γ Aql _ 19463+1037 2.72 V 97278 186791 296.564915 10.613262 2016-08-21
Tarf Tarf HR 3249 bet β Cnc A 08165+0911 3.53 V 40526 69267 124.128838 9.185544 2018-06-01
Taygeta Taygeta HR 1145 19 19 Tau Aa 03452+2428 4.30 V 17531 23338 56.302063 24.467270 2016-08-21
Tegmine Tegmine HR 3208 zet01 ζ1 Cnc A 08122+1739 5.24 V 40167 68255 123.053168 17.647801 2016-09-12
Tejat Tejat HR 2286 mu μ Gem Aa 06230+2231 2.87 V 30343 44478 95.740112 22.513583 2017-02-01
Terebellum Terebellum HR 7597 ome ω Sgr A _ 4.70 V 98066 188376 298.959838 -26.299534 2017-09-05
Tevel Tevel HAT-P-9 _ _ Aur _ _ 12.15 G _ _ 110.168568 37.140651 2019-12-17
Theemin Theemin HR 1464 ups02 υ2 Eri _ _ 3.81 V 21393 29291 68.887660 -30.562341 2017-02-01
Thuban Thuban HR 5291 alf α Dra A 14044+6423 3.67 V 68756 123299 211.097291 64.375851 2016-06-30
Tiaki Tiaki HR 8636 bet β Gru _ _ 2.12 V 112122 214952 340.666876 -46.884576 2017-09-05
Tianguan Tianguan HR 1910 zet ζ Tau A _ 2.97 V 26451 37202 84.411189 21.142544 2017-06-30
Tianyi Tianyi HR 4863 7 7 Dra _ _ 5.43 V 62423 111335 191.893099 66.790305 2017-06-30
Timir Timir HD 148427 _ _ Oph _ _ 6.89 V 80687 148427 247.117296 -13.399636 2019-12-17
Tislit Tislit WASP-161 _ _ Pup _ _ 10.77 V _ _ 126.337846 -11.500986 2019-12-17
Titawin Titawin HR 458 ups υ And A 01368+4124 4.09 V 7513 9826 24.199342 41.405457 2015-12-15
Tojil Tojil WASP-22 _ _ Eri _ 03313-2349 11.58 G _ _ 052.818029 -23.819678 2019-12-17
Toliman Toliman HR 5460 alf α Cen B 14396-6050 1.35 V 71681 128621 219.896096 -60.837528 2018-08-10 *
Tonatiuh Tonatiuh HR 4609 _ _ Cam _ _ 5.80 V 58952 104985 181.312995 76.905735 2015-12-15
Torcular Torcular HR 510 omi ο Psc A 01454+0909 4.29 V 8198 10761 26.348466 9.157737 2017-09-05
Tuiren Tuiren HAT-P-36 _ _ CVn _ _ 12.09 G _ _ 188.266276 44.915333 2019-12-17
Tupa Tupã HD 108147 _ _ Cru _ 12258-6401 6.99 V 60644 108147 186.442779 -64.022088 2019-12-17
Tupi Tupi HD 23079 _ _ Ret _ _ 7.12 V 17096 23079 54.929567 -52.915838 2019-12-17
Tureis Tureis HR 3185 rho ρ Pup A 08075-2418 2.83 V 39757 67523 121.886037 -24.304324 2016-09-12
Ukdah Ukdah HR 3845 iot ι Hya _ _ 3.90 V 47431 83618 144.964008 -1.142810 2018-06-01
Uklun Uklun HD 102117 _ _ Cen _ _ 7.47 V 57291 102117 176.210254 -58.703710 2019-12-17
Unukalhai Unukalhai HR 5854 alf α Ser _ 15443+0626 2.63 V 77070 140573 236.066976 6.425629 2016-08-21
Uruk Uruk HD 231701 _ _ Sge _ _ 8.97 V 96078 231701 293.017338 16.474289 2019-12-17
Vega Vega HR 7001 alf α Lyr _ 18369+3846 0.03 V 91262 172167 279.234735 38.783689 2016-06-30
Veritate Veritate HR 8930 14 14 And A 23313+3914 5.22 V 116076 221345 352.822556 39.236197 2015-12-15
Vindemiatrix Vindemiatrix HR 4932 eps ε Vir _ 13022+1058 2.85 V 63608 113226 195.544157 10.959149 2016-07-20
Wasat Wasat HR 2777 del δ Gem Aa 07201+2159 3.52 V 35550 56986 110.030749 21.982316 2016-08-21
Wazn Wazn HR 2040 bet β Col _ 05510-3546 3.12 V 27628 39425 87.739968 -35.768310 2016-07-20
Wezen Wezen HR 2693 del δ CMa Aa 07084-2624 1.83 V 34444 54605 107.097850 -26.393200 2016-07-20
Wurren Wurren HR 338 zet ζ Phe Aa 01084-5515 4.02 V 5348 6882 17.096173 -55.245758 2017-11-17
Xamidimura Xamidimura HR 6247 mu01 μ1 Sco Aa 16519-3803 3.00 V 82514 151890 252.967630 -38.047380 2017-09-05 *
Xihe Xihe HD 173416 _ _ Lyr _ _ 6.04 V 91852 173416 280.900456 36.556606 2019-12-17
Xuange Xuange HR 5351 lam λ Boo _ 14164+4605 4.18 V 69732 125162 214.095912 46.088306 2017-06-30
Yed Posterior Yed Posterior HR 6075 eps ε Oph _ 16183-0442 3.23 V 79882 146791 244.580374 -4.692510 2016-10-05
Yed Prior Yed Prior HR 6056 del δ Oph _ 16143-0342 2.73 V 79593 146051 243.586411 -3.694323 2016-10-05
Yildun Yildun HR 6789 del δ UMi _ 17322+8635 4.35 V 85822 166205 263.054126 86.586462 2016-08-21
Zaniah Zaniah HR 4689 eta η Vir Aa 12199-0040 4.60 V 60129 107259 184.976476 -0.666793 2016-09-12
Zaurak Zaurak HR 1231 gam γ Eri _ 03580-1331 2.97 V 18543 25025 59.507360 -13.508516 2016-07-20
Zavijava Zavijava HR 4540 bet β Vir _ 11507+0146 3.59 V 57757 102870 177.673826 1.764717 2016-08-21
Zhang Zhang HR 3903 ups01 υ1 Hya A _ 4.11 V 48356 85444 147.869558 -14.846603 2017-06-30
Zibal Zibal HR 984 zet ζ Eri Aa 03158-0849 4.80 V 15197 20320 48.958436 -8.819731 2016-09-12
Zosma Zosma HR 4357 del δ Leo _ 11141+2031 2.56 V 54872 97603 168.527089 20.523718 2016-07-20
Zubenelgenubi Zubenelgenubi HR 5531 alf02 α2 Lib Aa 14509-1603 2.75 V 72622 130841 222.719638 -16.041777 2016-08-21
Zubenelhakrabi Zubenelhakrabi HR 5787 gam γ Lib A 15355-1447 3.91 V 76333 138905 233.881578 -14.789536 2017-09-05
Zubeneschamali Zubeneschamali HR 5685 bet β Lib _ _ 2.61 V 74785 135742 229.251724 -9.382914 2016-08-21
#Name/ASCII Name/Diacritics Designation ID ID Con # WDS_J mag bnd HIP HD RA(J2000) Dec(J2000) Date Notes
#(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) (13) (14) (15) (16)
#
# Notes:
# (1) Proper name adopted by IAU WGSN (ASCII version)
# (2) Proper name adopted by IAU Working Group on Star Names (WGSN)
# (version with diacritic symbols, UTF-8).
# (3) Fiducial designation (in order of preference and availability):
# HR, GJ, HD, HIP, or discovery survey designation for host stars
# of transiting exoplanets (see SIMBAD;
# http://simbad.u-strasbg.fr/simbad/).
# (4) ID column is either (in order of preference and availability)
# Bayer greek letter (using SIMBAD databases; e.g. "alf" = alpha; see
# table http://simbad.u-strasbg.fr/Pages/guide/chA.htx), Flamsteed
# numbers (both following The Bright Star Catalogue [BSC], 5th Revised
# Ed. (Hoffleit & Warren 1991), or variable star designations.
# (5) ID, same as column 3 but Bayer Greek letters in UTF-8 encoding.
# (6) Constellation (3-letter IAU abbrev.; following "The IAU Style Manual",
# Wilkins 1989, Table 11).
# (7) The "#" after the constellation column is the component ID to
# Washington Double Star (WDS) catalog multiple system, if needed
# (e.g. Proxima Centauri = alf Cen "C"), but may be left blank
# ("_") where the primary, by visual brightness, is unambiguous
# (blank = A) or if the other WDS catalogue entries are obviously
# unphysical (i.e. the star appears to have no known physical
# stellar companions). Component IDs are also given where the
# star does not have a WDS entry (i.e. is not a resolved
# multiple), but the star is either known to be a spectroscopic
# binary or astrometric binary in the literature (usually a "A"
# or "Aa" is given in those cases, e.g. Wezen). Many thanks to
# Brian Mason (IAU Commission G1 Binary and Multiple Star
# Systems) for help with vetting the WDS designations and IDs.
# (8) WDS designation for multiple systems (or candidate multiple systems),
# the official double star catalogue of IAU Commission 26 (now
# (9) Magnitude in either Johnson V or Gaia G photometric system. For
# multiple stars, the V magnitude of the component is listed
# where available or calculable, however in some cases (e.g. some
# spectroscopic binaries, astrometric binaries), the unresolved
# magnitude is listed. Magnitudes are preferentially from The
# Hipparcos and Tycho catalogues (ESA 1997), WDS, or Gaia DR2
# catalog.
# (10) Band (V or G) for magnitude listed in column (9).
# (11) HIP designations from The Hipparcos and Tycho Catalogues (ESA 1997).
# (12) HD designations, usually cross-identified from SIMBAD, BSC, HIP
# catalogues.
# (13) Right Ascension (ICRS, epoch 2000.0)
# (14) Declination (ICRS, epoch 2000.0) Columns 10 and 11 are
# calculated for epoch 2000.0 using Vizier, usually using
# positions and proper motions from the revised Hipparcos
# catalogue ("Hipparcos, the New Reduction of the Raw Data" (van
# Leeuwen 2007 A&A, 474, 653), Gaia DR2 (Gaia Collaboration et
# al. 2018 A&A, 616, A1), or Tycho-2 catalogue (Hog et al. 2000,
# A&A, 355, L27).
# (15) Date approved. Names marked approved "2015-12-15" are exoplanet
# host star names - a mix of common names and names adopted via
# the NameExoWorlds contest - reviewed and adopted by the
# Executive Committee WG Public Naming of Planets and Planetary
# Satellites, and recognized by WGSN (although the posted date
# pre-dates WGSN). Names dated "2019-12-17" are exoplanet host
# star names from the IAU100 NameExoWorlds public naming
# campaign, and the winning entries were reviewed and adopted by
# the IAU100 NameExoWorlds Steering Committee (which had
# representatives from WGSN).
# (16) Notes:
# * Acamar is tet01 Eri = tet Eri A = WDS J02583-4018A.
# * Algieba is gam01 Leo = gam Leo A = WDS J10200+1950A.
# * Alcor is 80 UMa A, which is component Ca of multiple WDS
# J13239+5456 (Mizar is component Aa).
# * Almach is gam01 And = gam And A = WDS J02039+4220A.
# * Pipirima is mu02 Sco (WDS J16523-3801A) and Xamidimura is mu01 Sco
# Aa (WDS J16519-3803Aa) and, however the these two stars are a
# wide physical multiple (WDS J16519-3803AD; sep. 346.8").
# * alf Cen system: three stellar components have IAU names:
# A: Rigil Kentaurus, B: Toliman, C: Proxima Centauri.
#
# Notes on edits.
# 2018-06-11: Piautos: An incorrect position for Piautos was listed on a
# version of this list posted in early June 2018. The position
# has been corrected.
# 2018-06-19: The WDS and component entries for Polaris and Polaris
# Australis were flipped and this has been corrected.
# Polaris is WDS J02318+8916 Aa, while Polaris Australis
# has no WDS entry nor component ID.
# 2018-07-09: Okab: Typo in HIP # for Okab corrected to HIP 93747.
# 2018-08-10: Algedi: removed WDS component ID as none of the WDS
# entries appear to be physically related.
# 2018-08-10: Azmidi: removed WDS component ID as B is unlikely to
# be physically connected with A, and evidence for SB
# status of A is weak.
# 2018-08-10: Added: Gudja, Guniibuu, Imai, La Superba, Paikauhale & Toliman.
# 2018-09-07: Fixed: Cujam: fixed o Her to ω Her (rest of data was correct).
# 2019-09-20: Fixed: Piautos: added A component as system is an
# unresolved spectroscopic binary (Gullikson et al., 2016,
# AJ, 152, 40).
# 2020-02-13: Added: 112 star names from IAU100 NameExoWorlds public
# naming campaign (see names, etymologies, and names of
# proposers at:
# http://www.nameexoworlds.iau.org/final-results). Note
# that the spelling of the name for HD 145457 from the
# Japan IAU100 NameExoWorlds campaign was originally
# "Kamui", but after consultation with the Hokkaido Ainu
# association, the IAU100 NameExoWorlds Steering Committee
# approved amending the spelling to "Kamuy".
# 2020-03-01: Added: Mazaalai = HAT-P-21. Mazaalai is the winning
# entry from Mongolia, and the last star name approved by
# the IAU100 NameExoWorlds Steering Committee for the 2019
# public naming campaign (exoplanet HAT-P-21b was assigned
# name Bambaruush).
# 2020-03-15: Several NameExoWorlds 2019 star names were found to be
# misassigned to stars due to sorting errors (names from
# Denmark(Muspelheim), Dominican Republic(Marohu),
# Finland(Horna), Ireland(Tuiren), Malta(Sansuna),
# Pakistan(Shama), Palestine(Moriah), Russia(Dombay),
# Serbia(Morava), South Africa(Naledi)). The
# name-designation assignments have been checked again
# with: http://www.nameexoworlds.iau.org/final-results.
# If you used the 2020-02-13 or 2020-03-01 versions,
# please update to this latest version. Thank you to
# Eduardo Penteado for pointing out the errors.
# 2021-04-04: Fixed accented version "Chaso" to "Chasoň" for HAT-P-5.
# Clarification for HD 149143: The star name is spelled
# "Rosalíadecastro" and the exoplanet b is "Ríosar". The
# accents were accidently omitted in the IAU100 NameExoWorlds
# announcement materials.
# 2022-04-04: Added "Geminga" and "Rana". See Annual Report WGSN 2021:
# https://www.iau.org/static/science/scientific_bodies/working_groups/280/wg-starnames-annual-report-2021-2022.pdf

Copyright (c) 2020 Sebastian Godelet

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

[
{
"IAUName": "Absolutno",
"Designation": "XO-5",
"Constellation": "Lyn",
"Vmag": 12.13,
"RA_J2000": 116.716506,
"Dec_J2000": 39.094572,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Acamar",
"Designation": "HR 897",
"ID": "θ1",
"Constellation": "Eri",
"WDSComponentId": "A",
"WDS_J": "02583-4018",
"Vmag": 2.88,
"RA_J2000": 44.565311,
"Dec_J2000": -40.304672,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Achernar",
"Designation": "HR 472",
"ID": "α",
"Constellation": "Eri",
"WDSComponentId": "A",
"Vmag": 0.45,
"RA_J2000": 24.428523,
"Dec_J2000": -57.236753,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Achird",
"Designation": "HR 219",
"ID": "η",
"Constellation": "Cas",
"WDSComponentId": "A",
"WDS_J": "00491+5749",
"Vmag": 3.46,
"RA_J2000": 12.276213,
"Dec_J2000": 57.815187,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Acrab",
"Designation": "HR 5984",
"ID": "β1",
"Constellation": "Sco",
"WDSComponentId": "Aa",
"WDS_J": "16054-1948",
"Vmag": 2.56,
"RA_J2000": 241.3593,
"Dec_J2000": -19.805453,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Acrux",
"Designation": "HR 4730",
"ID": "α",
"Constellation": "Cru",
"WDSComponentId": "Aa",
"WDS_J": "12266-6306",
"Vmag": 1.33,
"RA_J2000": 186.649563,
"Dec_J2000": -63.099093,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Acubens",
"Designation": "HR 3572",
"ID": "α",
"Constellation": "Cnc",
"WDSComponentId": "Aa",
"WDS_J": "08585+1151",
"Vmag": 4.26,
"RA_J2000": 134.62174,
"Dec_J2000": 11.857687,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Adhafera",
"Designation": "HR 4031",
"ID": "ζ",
"Constellation": "Leo",
"WDSComponentId": "Aa",
"WDS_J": "10167+2325",
"Vmag": 3.43,
"RA_J2000": 154.172567,
"Dec_J2000": 23.417312,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Adhara",
"Designation": "HR 2618",
"ID": "ε",
"Constellation": "CMa",
"WDSComponentId": "A",
"WDS_J": "06586-2858",
"Vmag": 1.5,
"RA_J2000": 104.656453,
"Dec_J2000": -28.972086,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Adhil",
"Designation": "HR 390",
"ID": "ξ",
"Constellation": "And",
"Vmag": 4.87,
"RA_J2000": 20.58508,
"Dec_J2000": 45.528778,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Ain",
"Designation": "HR 1409",
"ID": "ε",
"Constellation": "Tau",
"WDSComponentId": "Aa1",
"WDS_J": "04286+1911",
"Vmag": 3.53,
"RA_J2000": 67.154163,
"Dec_J2000": 19.180435,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Ainalrami",
"Designation": "HR 7116",
"ID": "ν1",
"Constellation": "Sgr",
"WDSComponentId": "A",
"WDS_J": "18542-2245",
"Vmag": 4.86,
"RA_J2000": 283.542404,
"Dec_J2000": -22.74484,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Aladfar",
"Designation": "HR 7298",
"ID": "η",
"Constellation": "Lyr",
"WDSComponentId": "Aa",
"WDS_J": "19138+3909",
"Vmag": 4.43,
"RA_J2000": 288.439531,
"Dec_J2000": 39.14597,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Alasia",
"Designation": "HD 168746",
"Constellation": "Ser",
"WDS_J": "18218-1155",
"Vmag": 7.95,
"RA_J2000": 275.457428,
"Dec_J2000": -11.922682,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Albaldah",
"Designation": "HR 7264",
"ID": "π",
"Constellation": "Sgr",
"WDSComponentId": "A",
"WDS_J": "19098-2101",
"Vmag": 2.88,
"RA_J2000": 287.440971,
"Dec_J2000": -21.023615,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Albali",
"Designation": "HR 7950",
"ID": "ε",
"Constellation": "Aqr",
"Vmag": 3.78,
"RA_J2000": 311.918969,
"Dec_J2000": -9.495775,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Albireo",
"Designation": "HR 7417",
"ID": "β1",
"Constellation": "Cyg",
"WDSComponentId": "Aa",
"WDS_J": "19307+2758",
"Vmag": 3.05,
"RA_J2000": 292.680351,
"Dec_J2000": 27.959692,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Alchiba",
"Designation": "HR 4623",
"ID": "α",
"Constellation": "Crv",
"Vmag": 4.02,
"RA_J2000": 182.103402,
"Dec_J2000": -24.728875,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Alcor",
"Designation": "HR 5062",
"ID": "80",
"Constellation": "UMa",
"WDSComponentId": "Ca",
"WDS_J": "13239+5456",
"Vmag": 3.99,
"RA_J2000": 201.306403,
"Dec_J2000": 54.987954,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Alcyone",
"Designation": "HR 1165",
"ID": "η",
"Constellation": "Tau",
"WDSComponentId": "A",
"WDS_J": "03475+2406",
"Vmag": 2.85,
"RA_J2000": 56.871152,
"Dec_J2000": 24.105136,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Aldebaran",
"Designation": "HR 1457",
"ID": "α",
"Constellation": "Tau",
"WDS_J": "04359+1631",
"Vmag": 0.87,
"RA_J2000": 68.980163,
"Dec_J2000": 16.509302,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Alderamin",
"Designation": "HR 8162",
"ID": "α",
"Constellation": "Cep",
"WDS_J": "21186+6235",
"Vmag": 2.45,
"RA_J2000": 319.644885,
"Dec_J2000": 62.585574,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Aldhanab",
"Designation": "HR 8353",
"ID": "γ",
"Constellation": "Gru",
"Vmag": 3.0,
"RA_J2000": 328.482192,
"Dec_J2000": -37.364855,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Aldhibah",
"Designation": "HR 6396",
"ID": "ζ",
"Constellation": "Dra",
"WDSComponentId": "A",
"WDS_J": "17088+6543",
"Vmag": 3.17,
"RA_J2000": 257.19665,
"Dec_J2000": 65.714684,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Aldulfin",
"Designation": "HR 7852",
"ID": "ε",
"Constellation": "Del",
"Vmag": 4.03,
"RA_J2000": 308.303216,
"Dec_J2000": 11.303261,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Alfirk",
"Designation": "HR 8238",
"ID": "β",
"Constellation": "Cep",
"WDSComponentId": "Aa",
"WDS_J": "21287+7034",
"Vmag": 3.23,
"RA_J2000": 322.164987,
"Dec_J2000": 70.560715,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Algedi",
"Designation": "HR 7754",
"ID": "α2",
"Constellation": "Cap",
"WDS_J": "20181-1233",
"Vmag": 3.58,
"RA_J2000": 304.513566,
"Dec_J2000": -12.544852,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Algenib",
"Designation": "HR 39",
"ID": "γ",
"Constellation": "Peg",
"WDS_J": "00132+1511",
"Vmag": 2.83,
"RA_J2000": 3.308963,
"Dec_J2000": 15.183594,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Algieba",
"Designation": "HR 4057",
"ID": "γ1",
"Constellation": "Leo",
"WDS_J": "10200+1950",
"Vmag": 2.61,
"RA_J2000": 154.993144,
"Dec_J2000": 19.841489,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Algol",
"Designation": "HR 936",
"ID": "β",
"Constellation": "Per",
"WDSComponentId": "Aa1",
"WDS_J": "03082+4057",
"Vmag": 2.09,
"RA_J2000": 47.042215,
"Dec_J2000": 40.955648,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Algorab",
"Designation": "HR 4757",
"ID": "δ",
"Constellation": "Crv",
"WDSComponentId": "A",
"WDS_J": "12299-1631",
"Vmag": 2.94,
"RA_J2000": 187.466063,
"Dec_J2000": -16.515431,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Alhena",
"Designation": "HR 2421",
"ID": "γ",
"Constellation": "Gem",
"WDSComponentId": "Aa",
"WDS_J": "06377+1624",
"Vmag": 1.93,
"RA_J2000": 99.42796,
"Dec_J2000": 16.39928,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Alioth",
"Designation": "HR 4905",
"ID": "ε",
"Constellation": "UMa",
"WDSComponentId": "A",
"WDS_J": "12540+5558",
"Vmag": 1.76,
"RA_J2000": 193.50729,
"Dec_J2000": 55.959823,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Aljanah",
"Designation": "HR 7949",
"ID": "ε",
"Constellation": "Cyg",
"WDSComponentId": "Aa",
"WDS_J": "20462+3358",
"Vmag": 2.48,
"RA_J2000": 311.552843,
"Dec_J2000": 33.970257,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Alkaid",
"Designation": "HR 5191",
"ID": "η",
"Constellation": "UMa",
"Vmag": 1.85,
"RA_J2000": 206.885157,
"Dec_J2000": 49.313267,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Alkalurops",
"Designation": "HR 5733",
"ID": "μ1",
"Constellation": "Boo",
"WDSComponentId": "Aa",
"WDS_J": "15245+3723",
"Vmag": 4.31,
"RA_J2000": 231.122618,
"Dec_J2000": 37.377169,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Alkaphrah",
"Designation": "HR 3594",
"ID": "κ",
"Constellation": "UMa",
"WDSComponentId": "A",
"WDS_J": "09036+4709",
"Vmag": 4.16,
"RA_J2000": 135.906365,
"Dec_J2000": 47.156525,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Alkarab",
"Designation": "HR 8905",
"ID": "υ",
"Constellation": "Peg",
"Vmag": 4.42,
"RA_J2000": 351.344931,
"Dec_J2000": 23.4041,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Alkes",
"Designation": "HR 4287",
"ID": "α",
"Constellation": "Crt",
"Vmag": 4.08,
"RA_J2000": 164.943604,
"Dec_J2000": -18.298783,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Almaaz",
"Designation": "HR 1605",
"ID": "ε",
"Constellation": "Aur",
"WDS_J": "05020+4349",
"Vmag": 3.03,
"RA_J2000": 75.492219,
"Dec_J2000": 43.823307,
"ApprovalDate": "2017-02-01"
},
{
"IAUName": "Almach",
"Designation": "HR 603",
"ID": "γ",
"Constellation": "And",
"WDSComponentId": "A",
"WDS_J": "02039+4220",
"Vmag": 2.1,
"RA_J2000": 30.974804,
"Dec_J2000": 42.329725,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Alnair",
"Designation": "HR 8425",
"ID": "α",
"Constellation": "Gru",
"WDS_J": "22082-4658",
"Vmag": 1.73,
"RA_J2000": 332.05827,
"Dec_J2000": -46.960974,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Alnasl",
"Designation": "HR 6746",
"ID": "γ2",
"Constellation": "Sgr",
"Vmag": 2.98,
"RA_J2000": 271.452025,
"Dec_J2000": -30.4241,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Alnilam",
"Designation": "HR 1903",
"ID": "ε",
"Constellation": "Ori",
"WDS_J": "05362-0112",
"Vmag": 1.69,
"RA_J2000": 84.053389,
"Dec_J2000": -1.201919,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Alnitak",
"Designation": "HR 1948",
"ID": "ζ",
"Constellation": "Ori",
"WDSComponentId": "Aa",
"WDS_J": "05407-0157",
"Vmag": 1.74,
"RA_J2000": 85.189694,
"Dec_J2000": -1.942574,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Alniyat",
"Designation": "HR 6084",
"ID": "σ",
"Constellation": "Sco",
"WDSComponentId": "Aa1",
"WDS_J": "16212-2536",
"Vmag": 2.9,
"RA_J2000": 245.297149,
"Dec_J2000": -25.592792,
"ApprovalDate": "2017-02-01"
},
{
"IAUName": "Alphard",
"Designation": "HR 3748",
"ID": "α",
"Constellation": "Hya",
"WDS_J": "09276-0840",
"Vmag": 1.99,
"RA_J2000": 141.896847,
"Dec_J2000": -8.658602,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Alphecca",
"Designation": "HR 5793",
"ID": "α",
"Constellation": "CrB",
"Vmag": 2.22,
"RA_J2000": 233.67195,
"Dec_J2000": 26.714693,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Alpheratz",
"Designation": "HR 15",
"ID": "α",
"Constellation": "And",
"WDSComponentId": "Aa",
"WDS_J": "00084+2905",
"Vmag": 2.07,
"RA_J2000": 2.096916,
"Dec_J2000": 29.090431,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Alpherg",
"Designation": "HR 437",
"ID": "η",
"Constellation": "Psc",
"WDSComponentId": "A",
"WDS_J": "01315+1521",
"Vmag": 3.83,
"RA_J2000": 22.870873,
"Dec_J2000": 15.345823,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Alrakis",
"Designation": "HR 6370",
"ID": "μ",
"Constellation": "Dra",
"WDSComponentId": "A",
"WDS_J": "17053+5428",
"Vmag": 5.55,
"RA_J2000": 256.333807,
"Dec_J2000": 54.470078,
"ApprovalDate": "2017-02-01"
},
{
"IAUName": "Alrescha",
"Designation": "HR 596",
"ID": "α",
"Constellation": "Psc",
"WDSComponentId": "A",
"WDS_J": "02020+0246",
"Vmag": 3.82,
"RA_J2000": 30.511772,
"Dec_J2000": 2.763735,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Alruba",
"Designation": "HR 6618",
"Constellation": "Dra",
"Vmag": 5.75,
"RA_J2000": 265.996568,
"Dec_J2000": 53.801715,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Alsafi",
"Designation": "HR 7462",
"ID": "σ",
"Constellation": "Dra",
"WDS_J": "19324+6940",
"Vmag": 4.67,
"RA_J2000": 293.08996,
"Dec_J2000": 69.661176,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Alsciaukat",
"Designation": "HR 3275",
"ID": "31",
"Constellation": "Lyn",
"Vmag": 4.25,
"RA_J2000": 125.708792,
"Dec_J2000": 43.188131,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Alsephina",
"Designation": "HR 3485",
"ID": "δ",
"Constellation": "Vel",
"WDSComponentId": "Aa",
"WDS_J": "08447-5443",
"Vmag": 1.99,
"RA_J2000": 131.175944,
"Dec_J2000": -54.708819,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Alshain",
"Designation": "HR 7602",
"ID": "β",
"Constellation": "Aql",
"WDSComponentId": "A",
"WDS_J": "19553+0624",
"Vmag": 3.71,
"RA_J2000": 298.828304,
"Dec_J2000": 6.406763,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Alshat",
"Designation": "HR 7773",
"ID": "ν",
"Constellation": "Cap",
"WDSComponentId": "A",
"WDS_J": "20207-1246",
"Vmag": 4.77,
"RA_J2000": 305.165898,
"Dec_J2000": -12.759079,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Altair",
"Designation": "HR 7557",
"ID": "α",
"Constellation": "Aql",
"WDS_J": "19508+0852",
"Vmag": 0.76,
"RA_J2000": 297.695827,
"Dec_J2000": 8.868321,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Altais",
"Designation": "HR 7310",
"ID": "δ",
"Constellation": "Dra",
"WDS_J": "19126+6740",
"Vmag": 3.07,
"RA_J2000": 288.13875,
"Dec_J2000": 67.661541,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Alterf",
"Designation": "HR 3773",
"ID": "λ",
"Constellation": "Leo",
"Vmag": 4.32,
"RA_J2000": 142.930115,
"Dec_J2000": 22.96797,
"ApprovalDate": "2017-02-01"
},
{
"IAUName": "Aludra",
"Designation": "HR 2827",
"ID": "η",
"Constellation": "CMa",
"WDS_J": "07241-2918",
"Vmag": 2.45,
"RA_J2000": 111.02376,
"Dec_J2000": -29.303106,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Alula Australis",
"Designation": "HR 4375",
"ID": "ξ",
"Constellation": "UMa",
"WDSComponentId": "Aa",
"WDS_J": "11182+3132",
"Vmag": 4.41,
"RA_J2000": 169.545423,
"Dec_J2000": 31.529161,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Alula Borealis",
"Designation": "HR 4377",
"ID": "ν",
"Constellation": "UMa",
"WDS_J": "11185+3306",
"Vmag": 3.49,
"RA_J2000": 169.619737,
"Dec_J2000": 33.094305,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Alya",
"Designation": "HR 7141",
"ID": "θ1",
"Constellation": "Ser",
"WDSComponentId": "A",
"WDS_J": "18562+0412",
"Vmag": 4.62,
"RA_J2000": 284.054949,
"Dec_J2000": 4.203602,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Alzirr",
"Designation": "HR 2484",
"ID": "ξ",
"Constellation": "Gem",
"Vmag": 3.35,
"RA_J2000": 101.322351,
"Dec_J2000": 12.895592,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Amadioha",
"Designation": "HD 43197",
"Constellation": "CMa",
"Vmag": 8.98,
"RA_J2000": 93.39859,
"Dec_J2000": -29.897264,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Amansinaya",
"Designation": "WASP-34",
"Constellation": "Crt",
"Vmag": 10.3,
"RA_J2000": 165.399575,
"Dec_J2000": -23.860662,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Anadolu",
"Designation": "WASP-52",
"Constellation": "Peg",
"Vmag": 12.2,
"RA_J2000": 348.494823,
"Dec_J2000": 8.76127,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Ancha",
"Designation": "HR 8499",
"ID": "θ",
"Constellation": "Aqr",
"Vmag": 4.17,
"RA_J2000": 334.208485,
"Dec_J2000": -7.783291,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Angetenar",
"Designation": "HR 850",
"ID": "τ2",
"Constellation": "Eri",
"WDS_J": "02510-2100",
"Vmag": 4.76,
"RA_J2000": 42.759674,
"Dec_J2000": -21.004018,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Aniara",
"Designation": "HD 102956",
"Constellation": "UMa",
"Vmag": 7.86,
"RA_J2000": 177.843796,
"Dec_J2000": 57.640734,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Ankaa",
"Designation": "HR 99",
"ID": "α",
"Constellation": "Phe",
"WDS_J": "00263-4218",
"Vmag": 2.4,
"RA_J2000": 6.570939,
"Dec_J2000": -42.306084,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Anser",
"Designation": "HR 7405",
"ID": "α",
"Constellation": "Vul",
"WDS_J": "19287+2440",
"Vmag": 4.44,
"RA_J2000": 292.176375,
"Dec_J2000": 24.664903,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Antares",
"Designation": "HR 6134",
"ID": "α",
"Constellation": "Sco",
"WDSComponentId": "A",
"WDS_J": "16294-2626",
"Vmag": 1.06,
"RA_J2000": 247.351915,
"Dec_J2000": -26.432003,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Arcalís",
"Designation": "HD 131496",
"Constellation": "Boo",
"Vmag": 7.8,
"RA_J2000": 223.345951,
"Dec_J2000": 18.235409,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Arcturus",
"Designation": "HR 5340",
"ID": "α",
"Constellation": "Boo",
"WDS_J": "14157+1911",
"Vmag": -0.05,
"RA_J2000": 213.9153,
"Dec_J2000": 19.182409,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Arkab Posterior",
"Designation": "HR 7343",
"ID": "β2",
"Constellation": "Sgr",
"Vmag": 4.27,
"RA_J2000": 290.80474,
"Dec_J2000": -44.799779,
"ApprovalDate": "2016-10-05"
},
{
"IAUName": "Arkab Prior",
"Designation": "HR 7337",
"ID": "β1",
"Constellation": "Sgr",
"WDS_J": "19226-4428",
"Vmag": 3.96,
"RA_J2000": 290.659551,
"Dec_J2000": -44.458959,
"ApprovalDate": "2016-10-05"
},
{
"IAUName": "Arneb",
"Designation": "HR 1865",
"ID": "α",
"Constellation": "Lep",
"WDSComponentId": "A",
"WDS_J": "05327-1749",
"Vmag": 2.58,
"RA_J2000": 83.182567,
"Dec_J2000": -17.822289,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Ascella",
"Designation": "HR 7194",
"ID": "ζ",
"Constellation": "Sgr",
"WDSComponentId": "A",
"WDS_J": "19026-2953",
"Vmag": 2.6,
"RA_J2000": 285.653043,
"Dec_J2000": -29.880063,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Asellus Australis",
"Designation": "HR 3461",
"ID": "δ",
"Constellation": "Cnc",
"WDSComponentId": "Aa",
"WDS_J": "08447+1809",
"Vmag": 3.94,
"RA_J2000": 131.171248,
"Dec_J2000": 18.154309,
"ApprovalDate": "2016-11-06"
},
{
"IAUName": "Asellus Borealis",
"Designation": "HR 3449",
"ID": "γ",
"Constellation": "Cnc",
"WDSComponentId": "Aa",
"WDS_J": "08433+2128",
"Vmag": 4.66,
"RA_J2000": 130.821442,
"Dec_J2000": 21.468501,
"ApprovalDate": "2016-11-06"
},
{
"IAUName": "Ashlesha",
"Designation": "HR 3482",
"ID": "ε",
"Constellation": "Hya",
"WDSComponentId": "A",
"WDS_J": "08468+0625",
"Vmag": 3.49,
"RA_J2000": 131.693794,
"Dec_J2000": 6.418809,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Aspidiske",
"Designation": "HR 3699",
"ID": "ι",
"Constellation": "Car",
"Vmag": 2.21,
"RA_J2000": 139.272529,
"Dec_J2000": -59.275232,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Asterope",
"Designation": "HR 1151",
"ID": "21",
"Constellation": "Tau",
"WDSComponentId": "A",
"WDS_J": "03459+2433",
"Vmag": 5.76,
"RA_J2000": 56.476987,
"Dec_J2000": 24.554512,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Atakoraka",
"Designation": "WASP-64",
"Constellation": "CMa",
"WDS_J": "06445-3252",
"Vmag": 12.69,
"RA_J2000": 101.115022,
"Dec_J2000": -32.858383,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Athebyne",
"Designation": "HR 6132",
"ID": "η",
"Constellation": "Dra",
"WDSComponentId": "A",
"WDS_J": "16240+6131",
"Vmag": 2.73,
"RA_J2000": 245.997858,
"Dec_J2000": 61.514214,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Atik",
"Designation": "HR 1131",
"ID": "ο",
"Constellation": "Per",
"WDSComponentId": "A",
"WDS_J": "03443+3217",
"Vmag": 3.84,
"RA_J2000": 56.07972,
"Dec_J2000": 32.28824,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Atlas",
"Designation": "HR 1178",
"ID": "27",
"Constellation": "Tau",
"WDSComponentId": "Aa1",
"WDS_J": "03492+2403",
"Vmag": 3.62,
"RA_J2000": 57.290597,
"Dec_J2000": 24.053415,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Atria",
"Designation": "HR 6217",
"ID": "α",
"Constellation": "TrA",
"WDS_J": "16487-6902",
"Vmag": 1.91,
"RA_J2000": 252.166229,
"Dec_J2000": -69.027712,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Avior",
"Designation": "HR 3307",
"ID": "ε",
"Constellation": "Car",
"WDSComponentId": "A",
"WDS_J": "08225-5931",
"Vmag": 1.86,
"RA_J2000": 125.62848,
"Dec_J2000": -59.509484,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Axólotl",
"Designation": "HD 224693",
"Constellation": "Cet",
"Vmag": 8.23,
"RA_J2000": 359.974298,
"Dec_J2000": -22.428116,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Ayeyarwady",
"Designation": "HD 18742",
"Constellation": "Eri",
"Vmag": 7.81,
"RA_J2000": 45.044402,
"Dec_J2000": -20.802604,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Azelfafage",
"Designation": "HR 8301",
"ID": "π1",
"Constellation": "Cyg",
"Vmag": 4.69,
"RA_J2000": 325.523602,
"Dec_J2000": 51.189623,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Azha",
"Designation": "HR 874",
"ID": "η",
"Constellation": "Eri",
"Vmag": 3.89,
"RA_J2000": 44.106873,
"Dec_J2000": -8.898145,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Azmidi",
"Designation": "HR 3045",
"ID": "ξ",
"Constellation": "Pup",
"WDSComponentId": "–",
"WDS_J": "07493-2452",
"Vmag": 3.45,
"RA_J2000": 117.323563,
"Dec_J2000": -24.859786,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Baekdu",
"Designation": "HD 133086",
"ID": "8",
"Constellation": "UMi",
"WDS_J": "14568+7454",
"Vmag": 6.83,
"RA_J2000": 224.201473,
"Dec_J2000": 74.900923,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Barnard's Star",
"Designation": "GJ 699",
"ID": "V2500",
"Constellation": "Oph",
"Vmag": 9.54,
"RA_J2000": 269.454023,
"Dec_J2000": 4.668288,
"ApprovalDate": "2017-02-01"
},
{
"IAUName": "Baten Kaitos",
"Designation": "HR 539",
"ID": "ζ",
"Constellation": "Cet",
"WDSComponentId": "Aa",
"WDS_J": "01515-1020",
"Vmag": 3.74,
"RA_J2000": 27.865137,
"Dec_J2000": -10.335044,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Beemim",
"Designation": "HR 1393",
"ID": "υ3",
"Constellation": "Eri",
"Vmag": 3.97,
"RA_J2000": 66.009239,
"Dec_J2000": -34.016848,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Beid",
"Designation": "HR 1298",
"ID": "ο1",
"Constellation": "Eri",
"Vmag": 4.04,
"RA_J2000": 62.966415,
"Dec_J2000": -6.83758,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Belel",
"Designation": "HD 181342",
"Constellation": "Sgr",
"Vmag": 7.55,
"RA_J2000": 290.267627,
"Dec_J2000": -23.61957,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Bélénos",
"Designation": "HD 8574",
"Constellation": "Psc",
"Vmag": 7.12,
"RA_J2000": 21.302148,
"Dec_J2000": 28.566695,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Bellatrix",
"Designation": "HR 1790",
"ID": "γ",
"Constellation": "Ori",
"WDS_J": "05251+0621",
"Vmag": 1.64,
"RA_J2000": 81.282764,
"Dec_J2000": 6.349703,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Berehynia",
"Designation": "HAT-P-15",
"Constellation": "Per",
"Vmag": 12.02,
"RA_J2000": 66.248062,
"Dec_J2000": 39.460642,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Betelgeuse",
"Designation": "HR 2061",
"ID": "α",
"Constellation": "Ori",
"WDSComponentId": "Aa",
"WDS_J": "05552+0724",
"Vmag": 0.45,
"RA_J2000": 88.792939,
"Dec_J2000": 7.407064,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Bharani",
"Designation": "HR 838",
"ID": "41",
"Constellation": "Ari",
"WDSComponentId": "Aa",
"WDS_J": "02500+2716",
"Vmag": 3.61,
"RA_J2000": 42.495972,
"Dec_J2000": 27.260507,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Bibhā",
"Designation": "HD 86081",
"Constellation": "Sex",
"Vmag": 8.73,
"RA_J2000": 149.024661,
"Dec_J2000": -3.808423,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Biham",
"Designation": "HR 8450",
"ID": "θ",
"Constellation": "Peg",
"Vmag": 3.52,
"RA_J2000": 332.549939,
"Dec_J2000": 6.197863,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Bosona",
"Designation": "HD 206610",
"Constellation": "Aqr",
"Vmag": 8.34,
"RA_J2000": 325.853751,
"Dec_J2000": -7.408253,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Botein",
"Designation": "HR 951",
"ID": "δ",
"Constellation": "Ari",
"Vmag": 4.35,
"RA_J2000": 47.907356,
"Dec_J2000": 19.726674,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Brachium",
"Designation": "HR 5603",
"ID": "σ",
"Constellation": "Lib",
"WDSComponentId": "A",
"WDS_J": "15041-2517",
"Vmag": 3.25,
"RA_J2000": 226.017567,
"Dec_J2000": -25.281961,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Bubup",
"Designation": "HD 38283",
"Constellation": "Men",
"Vmag": 6.69,
"RA_J2000": 84.258403,
"Dec_J2000": -73.699346,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Buna",
"Designation": "HD 16175",
"Constellation": "And",
"Vmag": 7.28,
"RA_J2000": 39.257963,
"Dec_J2000": 42.06263,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Bunda",
"Designation": "HR 8264",
"ID": "ξ",
"Constellation": "Aqr",
"WDSComponentId": "A",
"WDS_J": "21378-0751",
"Vmag": 4.8,
"RA_J2000": 324.437956,
"Dec_J2000": -7.854202,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Canopus",
"Designation": "HR 2326",
"ID": "α",
"Constellation": "Car",
"WDSComponentId": "A",
"WDS_J": "06240-5242",
"Vmag": -0.62,
"RA_J2000": 95.987958,
"Dec_J2000": -52.695661,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Capella",
"Designation": "HR 1708",
"ID": "α",
"Constellation": "Aur",
"WDSComponentId": "Aa",
"WDS_J": "05167+4600",
"Vmag": 0.08,
"RA_J2000": 79.172328,
"Dec_J2000": 45.997991,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Caph",
"Designation": "HR 21",
"ID": "β",
"Constellation": "Cas",
"WDSComponentId": "A",
"WDS_J": "00092+5909",
"Vmag": 2.28,
"RA_J2000": 2.294522,
"Dec_J2000": 59.149781,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Castor",
"Designation": "HR 2891",
"ID": "α",
"Constellation": "Gem",
"WDSComponentId": "Aa",
"WDS_J": "07346+3153",
"Vmag": 1.98,
"RA_J2000": 113.649428,
"Dec_J2000": 31.888276,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Castula",
"Designation": "HR 265",
"ID": "υ2",
"Constellation": "Cas",
"Vmag": 4.62,
"RA_J2000": 14.166271,
"Dec_J2000": 59.181055,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Cebalrai",
"Designation": "HR 6603",
"ID": "β",
"Constellation": "Oph",
"Vmag": 2.76,
"RA_J2000": 265.868136,
"Dec_J2000": 4.5673,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Ceibo",
"Designation": "HD 63454",
"Constellation": "Cha",
"Vmag": 9.37,
"RA_J2000": 114.841057,
"Dec_J2000": -78.278974,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Celaeno",
"Designation": "HR 1140",
"ID": "16",
"Constellation": "Tau",
"WDS_J": "03448+2417",
"Vmag": 5.45,
"RA_J2000": 56.200893,
"Dec_J2000": 24.289468,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Cervantes",
"Designation": "HR 6585",
"ID": "μ",
"Constellation": "Ara",
"Vmag": 5.15,
"RA_J2000": 266.036255,
"Dec_J2000": -51.834051,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Chalawan",
"Designation": "HR 4277",
"ID": "47",
"Constellation": "UMa",
"Vmag": 5.03,
"RA_J2000": 164.866553,
"Dec_J2000": 40.430256,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Chamukuy",
"Designation": "HR 1412",
"ID": "θ2",
"Constellation": "Tau",
"WDSComponentId": "Aa",
"WDS_J": "04287+1552",
"Vmag": 3.73,
"RA_J2000": 67.165586,
"Dec_J2000": 15.870882,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Chaophraya",
"Designation": "WASP-50",
"Constellation": "Eri",
"Vmag": 11.74,
"RA_J2000": 43.688059,
"Dec_J2000": -10.898063,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Chara",
"Designation": "HR 4785",
"ID": "β",
"Constellation": "CVn",
"WDSComponentId": "Aa",
"WDS_J": "12337+4121",
"Vmag": 4.24,
"RA_J2000": 188.435603,
"Dec_J2000": 41.357479,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Chasoň",
"Designation": "HAT-P-5",
"Constellation": "Lyr",
"WDS_J": "18176+3637",
"Vmag": 11.96,
"RA_J2000": 274.40547,
"Dec_J2000": 36.621436,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Chechia",
"Designation": "HD 192699",
"Constellation": "Aql",
"Vmag": 6.44,
"RA_J2000": 304.025017,
"Dec_J2000": 4.580795,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Chertan",
"Designation": "HR 4359",
"ID": "θ",
"Constellation": "Leo",
"Vmag": 3.33,
"RA_J2000": 168.560019,
"Dec_J2000": 15.429571,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Citadelle",
"Designation": "HD 1502",
"Constellation": "Psc",
"Vmag": 8.36,
"RA_J2000": 4.82111,
"Dec_J2000": 14.054756,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Citalá",
"Designation": "HD 52265",
"Constellation": "Mon",
"Vmag": 6.29,
"RA_J2000": 105.075149,
"Dec_J2000": -5.367161,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Cocibolca",
"Designation": "HD 4208",
"Constellation": "Scl",
"Vmag": 7.78,
"RA_J2000": 11.111045,
"Dec_J2000": -26.515683,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Copernicus",
"Designation": "HR 3522",
"ID": "55",
"Constellation": "Cnc",
"WDSComponentId": "A",
"WDS_J": "08526+2820",
"Vmag": 5.95,
"RA_J2000": 133.149212,
"Dec_J2000": 28.33082,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Cor Caroli",
"Designation": "HR 4915",
"ID": "α2",
"Constellation": "CVn",
"WDSComponentId": "Aa",
"WDS_J": "12560+3819",
"Vmag": 2.89,
"RA_J2000": 194.006943,
"Dec_J2000": 38.318376,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Cujam",
"Designation": "HR 6117",
"ID": "ω",
"Constellation": "Her",
"WDSComponentId": "A",
"WDS_J": "16254+1402",
"Vmag": 4.57,
"RA_J2000": 246.353979,
"Dec_J2000": 14.033274,
"ApprovalDate": "2017-02-01"
},
{
"IAUName": "Cursa",
"Designation": "HR 1666",
"ID": "β",
"Constellation": "Eri",
"WDS_J": "05078-0505",
"Vmag": 2.78,
"RA_J2000": 76.96244,
"Dec_J2000": -5.086446,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Dabih",
"Designation": "HR 7776",
"ID": "β1",
"Constellation": "Cap",
"WDSComponentId": "Aa",
"WDS_J": "20210-1447",
"Vmag": 3.05,
"RA_J2000": 305.252803,
"Dec_J2000": -14.781405,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Dalim",
"Designation": "HR 963",
"ID": "α",
"Constellation": "For",
"WDSComponentId": "A",
"WDS_J": "03121-2859",
"Vmag": 3.86,
"RA_J2000": 48.018864,
"Dec_J2000": -28.98762,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Deneb",
"Designation": "HR 7924",
"ID": "α",
"Constellation": "Cyg",
"WDS_J": "20414+4517",
"Vmag": 1.25,
"RA_J2000": 310.35798,
"Dec_J2000": 45.280339,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Deneb Algedi",
"Designation": "HR 8322",
"ID": "δ",
"Constellation": "Cap",
"WDSComponentId": "Aa",
"WDS_J": "21470-1608",
"Vmag": 2.85,
"RA_J2000": 326.760184,
"Dec_J2000": -16.127287,
"ApprovalDate": "2017-02-01"
},
{
"IAUName": "Denebola",
"Designation": "HR 4534",
"ID": "β",
"Constellation": "Leo",
"WDS_J": "11491+1434",
"Vmag": 2.14,
"RA_J2000": 177.26491,
"Dec_J2000": 14.572058,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Diadem",
"Designation": "HR 4968",
"ID": "α",
"Constellation": "Com",
"WDSComponentId": "A",
"WDS_J": "13100+1732",
"Vmag": 4.85,
"RA_J2000": 197.497029,
"Dec_J2000": 17.529447,
"ApprovalDate": "2017-02-01"
},
{
"IAUName": "Dingolay",
"Designation": "HD 96063",
"Constellation": "Leo",
"Vmag": 8.21,
"RA_J2000": 166.185228,
"Dec_J2000": -2.513218,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Diphda",
"Designation": "HR 188",
"ID": "β",
"Constellation": "Cet",
"Vmag": 2.04,
"RA_J2000": 10.897379,
"Dec_J2000": -17.986606,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Dìwö",
"Designation": "WASP-17",
"Constellation": "Sco",
"WDS_J": "15598-2804",
"Vmag": 11.49,
"RA_J2000": 239.962287,
"Dec_J2000": -28.061753,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Diya",
"Designation": "WASP-72",
"Constellation": "For",
"WDS_J": "02442-3010",
"Vmag": 10.97,
"RA_J2000": 41.040041,
"Dec_J2000": -30.169045,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Dofida",
"Designation": "HD 117618",
"Constellation": "Cen",
"Vmag": 7.17,
"RA_J2000": 203.106482,
"Dec_J2000": -47.271365,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Dombay",
"Designation": "HAT-P-3",
"Constellation": "UMa",
"Vmag": 11.52,
"RA_J2000": 206.094141,
"Dec_J2000": 48.028668,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Dschubba",
"Designation": "HR 5953",
"ID": "δ",
"Constellation": "Sco",
"WDSComponentId": "A",
"WDS_J": "16003-2237",
"Vmag": 2.29,
"RA_J2000": 240.083359,
"Dec_J2000": -22.62171,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Dubhe",
"Designation": "HR 4301",
"ID": "α",
"Constellation": "UMa",
"WDSComponentId": "A",
"WDS_J": "11037+6145",
"Vmag": 1.81,
"RA_J2000": 165.931965,
"Dec_J2000": 61.751035,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Dziban",
"Designation": "HR 6636",
"ID": "ψ1",
"Constellation": "Dra",
"WDSComponentId": "A",
"WDS_J": "17419+7209",
"Vmag": 4.57,
"RA_J2000": 265.484814,
"Dec_J2000": 72.148847,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Ebla",
"Designation": "HD 218566",
"Constellation": "Psc",
"Vmag": 8.59,
"RA_J2000": 347.294696,
"Dec_J2000": -2.260746,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Edasich",
"Designation": "HR 5744",
"ID": "ι",
"Constellation": "Dra",
"WDS_J": "15249+5858",
"Vmag": 3.29,
"RA_J2000": 231.232396,
"Dec_J2000": 58.966063,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Electra",
"Designation": "HR 1142",
"ID": "17",
"Constellation": "Tau",
"WDS_J": "03449+2407",
"Vmag": 3.72,
"RA_J2000": 56.218904,
"Dec_J2000": 24.113336,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Elgafar",
"Designation": "HR 5409",
"ID": "ϕ",
"Constellation": "Vir",
"WDSComponentId": "A",
"WDS_J": "14282-0214",
"Vmag": 4.84,
"RA_J2000": 217.050575,
"Dec_J2000": -2.227957,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Elkurud",
"Designation": "HR 2177",
"ID": "θ",
"Constellation": "Col",
"Vmag": 5.0,
"RA_J2000": 91.881801,
"Dec_J2000": -37.25292,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Elnath",
"Designation": "HR 1791",
"ID": "β",
"Constellation": "Tau",
"WDSComponentId": "Aa",
"WDS_J": "05263+2836",
"Vmag": 1.65,
"RA_J2000": 81.572971,
"Dec_J2000": 28.607452,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Eltanin",
"Designation": "HR 6705",
"ID": "γ",
"Constellation": "Dra",
"WDS_J": "17566+5129",
"Vmag": 2.24,
"RA_J2000": 269.151541,
"Dec_J2000": 51.488896,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Emiw",
"Designation": "HD 7199",
"Constellation": "Tuc",
"Vmag": 8.06,
"RA_J2000": 17.696756,
"Dec_J2000": -66.188164,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Enif",
"Designation": "HR 8308",
"ID": "ε",
"Constellation": "Peg",
"WDS_J": "21442+0953",
"Vmag": 2.38,
"RA_J2000": 326.046484,
"Dec_J2000": 9.875009,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Errai",
"Designation": "HR 8974",
"ID": "γ",
"Constellation": "Cep",
"WDSComponentId": "Aa",
"WDS_J": "23393+7738",
"Vmag": 3.21,
"RA_J2000": 354.836655,
"Dec_J2000": 77.632313,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Fafnir",
"Designation": "HR 6945",
"ID": "42",
"Constellation": "Dra",
"WDSComponentId": "A",
"WDS_J": "18260+6534",
"Vmag": 4.82,
"RA_J2000": 276.496406,
"Dec_J2000": 65.56348,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Fang",
"Designation": "HR 5944",
"ID": "π",
"Constellation": "Sco",
"WDSComponentId": "Aa",
"WDS_J": "15589-2607",
"Vmag": 2.89,
"RA_J2000": 239.712972,
"Dec_J2000": -26.114108,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Fawaris",
"Designation": "HR 7528",
"ID": "δ",
"Constellation": "Cyg",
"WDSComponentId": "A",
"WDS_J": "19450+4508",
"Vmag": 2.9,
"RA_J2000": 296.243658,
"Dec_J2000": 45.13081,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Felis",
"Designation": "HR 3923",
"Constellation": "Hya",
"Vmag": 4.94,
"RA_J2000": 148.717528,
"Dec_J2000": -19.009336,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Felixvarela",
"Designation": "BD-17 63",
"Constellation": "Cet",
"Vmag": 9.62,
"RA_J2000": 7.142942,
"Dec_J2000": -16.226345,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Flegetonte",
"Designation": "HD 102195",
"Constellation": "Vir",
"WDS_J": "11457+0249",
"Vmag": 8.07,
"RA_J2000": 176.42622,
"Dec_J2000": 2.821479,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Fomalhaut",
"Designation": "HR 8728",
"ID": "α",
"Constellation": "PsA",
"WDSComponentId": "A",
"WDS_J": "22577-2937",
"Vmag": 1.17,
"RA_J2000": 344.412693,
"Dec_J2000": -29.622237,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Formosa",
"Designation": "HD 100655",
"Constellation": "Leo",
"Vmag": 6.45,
"RA_J2000": 173.765637,
"Dec_J2000": 20.441545,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Franz",
"Designation": "HAT-P-14",
"Constellation": "Her",
"WDS_J": "17205+3815",
"Vmag": 9.86,
"RA_J2000": 260.11616,
"Dec_J2000": 38.242197,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Fulu",
"Designation": "HR 153",
"ID": "ζ",
"Constellation": "Cas",
"Vmag": 3.69,
"RA_J2000": 9.242851,
"Dec_J2000": 53.896908,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Fumalsamakah",
"Designation": "HR 8773",
"ID": "β",
"Constellation": "Psc",
"Vmag": 4.48,
"RA_J2000": 345.969225,
"Dec_J2000": 3.820045,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Funi",
"Designation": "HD 109246",
"Constellation": "Dra",
"Vmag": 8.75,
"RA_J2000": 188.029952,
"Dec_J2000": 74.489547,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Furud",
"Designation": "HR 2282",
"ID": "ζ",
"Constellation": "CMa",
"WDSComponentId": "Aa",
"WDS_J": "06203-3004",
"Vmag": 3.02,
"RA_J2000": 95.0783,
"Dec_J2000": -30.063367,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Fuyue",
"Designation": "HR 6630",
"Constellation": "Sco",
"WDS_J": "17499-3703",
"Vmag": 3.19,
"RA_J2000": 267.464503,
"Dec_J2000": -37.043305,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Gacrux",
"Designation": "HR 4763",
"ID": "γ",
"Constellation": "Cru",
"WDS_J": "12312-5707",
"Vmag": 1.59,
"RA_J2000": 187.791498,
"Dec_J2000": -57.113213,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Gakyid",
"Designation": "HD 73534",
"Constellation": "Cnc",
"Vmag": 8.23,
"RA_J2000": 129.815846,
"Dec_J2000": 12.960375,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Geminga",
"Designation": "PSR B0633+17",
"Constellation": "Gem",
"RA_J2000": 98.475638,
"Dec_J2000": 17.770253,
"ApprovalDate": "2022-04-04"
},
{
"IAUName": "Giausar",
"Designation": "HR 4434",
"ID": "λ",
"Constellation": "Dra",
"Vmag": 3.82,
"RA_J2000": 172.85092,
"Dec_J2000": 69.331075,
"ApprovalDate": "2017-02-01"
},
{
"IAUName": "Gienah",
"Designation": "HR 4662",
"ID": "γ",
"Constellation": "Crv",
"WDSComponentId": "A",
"WDS_J": "12158-1733",
"Vmag": 2.58,
"RA_J2000": 183.951543,
"Dec_J2000": -17.541929,
"ApprovalDate": "2016-11-06"
},
{
"IAUName": "Ginan",
"Designation": "HR 4700",
"ID": "ε",
"Constellation": "Cru",
"Vmag": 3.59,
"RA_J2000": 185.340039,
"Dec_J2000": -60.401147,
"ApprovalDate": "2017-11-19"
},
{
"IAUName": "Gloas",
"Designation": "WASP-13",
"Constellation": "Lyn",
"Vmag": 10.51,
"RA_J2000": 140.102977,
"Dec_J2000": 33.882417,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Gomeisa",
"Designation": "HR 2845",
"ID": "β",
"Constellation": "CMi",
"WDSComponentId": "A",
"WDS_J": "07272+0817",
"Vmag": 2.89,
"RA_J2000": 111.787674,
"Dec_J2000": 8.289316,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Grumium",
"Designation": "HR 6688",
"ID": "ξ",
"Constellation": "Dra",
"WDSComponentId": "A",
"WDS_J": "17535+5652",
"Vmag": 3.73,
"RA_J2000": 268.382207,
"Dec_J2000": 56.872646,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Gudja",
"Designation": "HR 5879",
"ID": "κ",
"Constellation": "Ser",
"Vmag": 4.09,
"RA_J2000": 237.184903,
"Dec_J2000": 18.141564,
"ApprovalDate": "2018-08-10"
},
{
"IAUName": "Gumala",
"Designation": "HD 179949",
"ID": "V5652",
"Constellation": "Sgr",
"WDS_J": "19156-2411",
"Vmag": 6.25,
"RA_J2000": 288.888459,
"Dec_J2000": -24.179354,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Guniibuu",
"Designation": "HR 6402",
"ID": "36",
"Constellation": "Oph",
"WDSComponentId": "A",
"WDS_J": "17153-2636",
"Vmag": 5.07,
"RA_J2000": 258.837875,
"Dec_J2000": -26.598892,
"ApprovalDate": "2018-08-10"
},
{
"IAUName": "Hadar",
"Designation": "HR 5267",
"ID": "β",
"Constellation": "Cen",
"WDSComponentId": "Aa",
"WDS_J": "14038-6022",
"Vmag": 0.61,
"RA_J2000": 210.955856,
"Dec_J2000": -60.373035,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Haedus",
"Designation": "HR 1641",
"ID": "η",
"Constellation": "Aur",
"Vmag": 3.18,
"RA_J2000": 76.628722,
"Dec_J2000": 41.234476,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Hamal",
"Designation": "HR 617",
"ID": "α",
"Constellation": "Ari",
"Vmag": 2.01,
"RA_J2000": 31.793357,
"Dec_J2000": 23.462418,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Hassaleh",
"Designation": "HR 1577",
"ID": "ι",
"Constellation": "Aur",
"Vmag": 2.69,
"RA_J2000": 74.248421,
"Dec_J2000": 33.1661,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Hatysa",
"Designation": "HR 1899",
"ID": "ι",
"Constellation": "Ori",
"WDSComponentId": "Aa",
"WDS_J": "05354-0555",
"Vmag": 2.8,
"RA_J2000": 83.858258,
"Dec_J2000": -5.909901,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Helvetios",
"Designation": "HR 8729",
"ID": "51",
"Constellation": "Peg",
"WDS_J": "22575+2046",
"Vmag": 5.49,
"RA_J2000": 344.366583,
"Dec_J2000": 20.768831,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Heze",
"Designation": "HR 5107",
"ID": "ζ",
"Constellation": "Vir",
"WDSComponentId": "A",
"WDS_J": "13347-0036",
"Vmag": 3.38,
"RA_J2000": 203.6733,
"Dec_J2000": -0.59582,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Hoggar",
"Designation": "HD 28678",
"Constellation": "Tau",
"Vmag": 8.38,
"RA_J2000": 67.856059,
"Dec_J2000": 4.575295,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Homam",
"Designation": "HR 8634",
"ID": "ζ",
"Constellation": "Peg",
"WDSComponentId": "A",
"WDS_J": "22415+1050",
"Vmag": 3.41,
"RA_J2000": 340.365503,
"Dec_J2000": 10.831363,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Horna",
"Designation": "HAT-P-38",
"Constellation": "Tri",
"Vmag": 12.53,
"RA_J2000": 35.383251,
"Dec_J2000": 32.246136,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Hunahpú",
"Designation": "HD 98219",
"Constellation": "Crt",
"Vmag": 8.05,
"RA_J2000": 169.448138,
"Dec_J2000": -23.975415,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Hunor",
"Designation": "HAT-P-2",
"Constellation": "Her",
"Vmag": 8.72,
"RA_J2000": 245.151491,
"Dec_J2000": 41.048086,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Iklil",
"Designation": "HR 5928",
"ID": "ρ",
"Constellation": "Sco",
"WDSComponentId": "Aa",
"WDS_J": "15569-2913",
"Vmag": 3.87,
"RA_J2000": 239.221151,
"Dec_J2000": -29.214073,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Illyrian",
"Designation": "HD 82886",
"Constellation": "LMi",
"Vmag": 7.62,
"RA_J2000": 143.938267,
"Dec_J2000": 34.780742,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Imai",
"Designation": "HR 4656",
"ID": "δ",
"Constellation": "Cru",
"Vmag": 2.75,
"RA_J2000": 183.78632,
"Dec_J2000": -58.748927,
"ApprovalDate": "2018-08-10"
},
{
"IAUName": "Inquill",
"Designation": "HD 156411",
"Constellation": "Ara",
"Vmag": 6.67,
"RA_J2000": 259.964168,
"Dec_J2000": -48.54932,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Intan",
"Designation": "HD 20868",
"Constellation": "For",
"Vmag": 9.92,
"RA_J2000": 50.177891,
"Dec_J2000": -33.730104,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Intercrus",
"Designation": "HR 3743",
"Constellation": "UMa",
"WDS_J": "09287+4536",
"Vmag": 5.41,
"RA_J2000": 142.166618,
"Dec_J2000": 45.601482,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Irena",
"Designation": "WASP-38",
"Constellation": "Her",
"Vmag": 9.41,
"RA_J2000": 243.959855,
"Dec_J2000": 10.032579,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Itonda",
"Designation": "HD 208487",
"Constellation": "Gru",
"Vmag": 7.47,
"RA_J2000": 329.332698,
"Dec_J2000": -37.763624,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Izar",
"Designation": "HR 5506",
"ID": "ε",
"Constellation": "Boo",
"WDSComponentId": "A",
"WDS_J": "14450+2704",
"Vmag": 2.35,
"RA_J2000": 221.246763,
"Dec_J2000": 27.074207,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Jabbah",
"Designation": "HR 6027",
"ID": "ν",
"Constellation": "Sco",
"WDSComponentId": "Aa",
"WDS_J": "16120-1928",
"Vmag": 4.5,
"RA_J2000": 242.998894,
"Dec_J2000": -19.460708,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Jishui",
"Designation": "HR 2930",
"ID": "ο",
"Constellation": "Gem",
"Vmag": 4.89,
"RA_J2000": 114.791387,
"Dec_J2000": 34.584346,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Kaffaljidhma",
"Designation": "HR 804",
"ID": "γ",
"Constellation": "Cet",
"WDSComponentId": "A",
"WDS_J": "02433+0314",
"Vmag": 3.56,
"RA_J2000": 40.825163,
"Dec_J2000": 3.235816,
"ApprovalDate": "2017-02-01"
},
{
"IAUName": "Kalausi",
"Designation": "HD 83443",
"Constellation": "Vel",
"WDS_J": "09372-4316",
"Vmag": 8.23,
"RA_J2000": 144.299282,
"Dec_J2000": -43.272204,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Kamuy",
"Designation": "HD 145457",
"Constellation": "CrB",
"Vmag": 6.57,
"RA_J2000": 242.51631,
"Dec_J2000": 26.742748,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Kang",
"Designation": "HR 5315",
"ID": "κ",
"Constellation": "Vir",
"Vmag": 4.18,
"RA_J2000": 213.223939,
"Dec_J2000": -10.273704,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Karaka",
"Designation": "HD 137388",
"Constellation": "Aps",
"WDS_J": "15357-8012",
"Vmag": 8.71,
"RA_J2000": 233.916337,
"Dec_J2000": -80.204594,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Kaus Australis",
"Designation": "HR 6879",
"ID": "ε",
"Constellation": "Sgr",
"WDSComponentId": "A",
"WDS_J": "18242-3423",
"Vmag": 1.79,
"RA_J2000": 276.042993,
"Dec_J2000": -34.384616,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Kaus Borealis",
"Designation": "HR 6913",
"ID": "λ",
"Constellation": "Sgr",
"WDS_J": "18280-2525",
"Vmag": 2.82,
"RA_J2000": 276.992668,
"Dec_J2000": -25.421701,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Kaus Media",
"Designation": "HR 6859",
"ID": "δ",
"Constellation": "Sgr",
"WDS_J": "18210-2950",
"Vmag": 2.72,
"RA_J2000": 275.248508,
"Dec_J2000": -29.828104,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Kaveh",
"Designation": "HD 175541",
"Constellation": "Ser",
"Vmag": 8.02,
"RA_J2000": 283.92035,
"Dec_J2000": 4.265323,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Keid",
"Designation": "HR 1325",
"ID": "ο2",
"Constellation": "Eri",
"WDSComponentId": "A",
"WDS_J": "04153-0739",
"Vmag": 4.43,
"RA_J2000": 63.817999,
"Dec_J2000": -7.652872,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Khambalia",
"Designation": "HR 5359",
"ID": "λ",
"Constellation": "Vir",
"WDSComponentId": "A",
"WDS_J": "14191-1322",
"Vmag": 4.52,
"RA_J2000": 214.777468,
"Dec_J2000": -13.371096,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Kitalpha",
"Designation": "HR 8131",
"ID": "α",
"Constellation": "Equ",
"WDSComponentId": "A",
"WDS_J": "21158+0515",
"Vmag": 3.92,
"RA_J2000": 318.955949,
"Dec_J2000": 5.247865,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Kochab",
"Designation": "HR 5563",
"ID": "β",
"Constellation": "UMi",
"WDS_J": "14507+7409",
"Vmag": 2.07,
"RA_J2000": 222.676357,
"Dec_J2000": 74.155504,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Koeia",
"Designation": "HIP 12961",
"Constellation": "Eri",
"Vmag": 10.25,
"RA_J2000": 41.678695,
"Dec_J2000": -23.086612,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Koit",
"Designation": "XO-4",
"Constellation": "Lyn",
"Vmag": 10.62,
"RA_J2000": 110.388168,
"Dec_J2000": 58.268087,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Kornephoros",
"Designation": "HR 6148",
"ID": "β",
"Constellation": "Her",
"WDSComponentId": "Aa",
"WDS_J": "16302+2129",
"Vmag": 2.78,
"RA_J2000": 247.554998,
"Dec_J2000": 21.489611,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Kraz",
"Designation": "HR 4786",
"ID": "β",
"Constellation": "Crv",
"Vmag": 2.65,
"RA_J2000": 188.59681,
"Dec_J2000": -23.396759,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Kurhah",
"Designation": "HR 8417",
"ID": "ξ",
"Constellation": "Cep",
"WDSComponentId": "Aa",
"WDS_J": "22038+6438",
"Vmag": 4.26,
"RA_J2000": 330.947724,
"Dec_J2000": 64.627971,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "La Superba",
"Designation": "HR 4846",
"ID": "Y",
"Constellation": "CVn",
"Vmag": 5.42,
"RA_J2000": 191.282615,
"Dec_J2000": 45.440257,
"ApprovalDate": "2018-08-10"
},
{
"IAUName": "Larawag",
"Designation": "HR 6241",
"ID": "ε",
"Constellation": "Sco",
"Vmag": 2.29,
"RA_J2000": 252.540878,
"Dec_J2000": -34.293232,
"ApprovalDate": "2017-11-19"
},
{
"IAUName": "Lerna",
"Designation": "HAT-P-42",
"Constellation": "Hya",
"Vmag": 12.15,
"RA_J2000": 135.344371,
"Dec_J2000": 6.097227,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Lesath",
"Designation": "HR 6508",
"ID": "υ",
"Constellation": "Sco",
"Vmag": 2.7,
"RA_J2000": 262.690979,
"Dec_J2000": -37.295813,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Libertas",
"Designation": "HR 7595",
"ID": "ξ",
"Constellation": "Aql",
"WDSComponentId": "A",
"WDS_J": "19542+0828",
"Vmag": 4.71,
"RA_J2000": 298.562008,
"Dec_J2000": 8.461453,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Lich",
"Designation": "PSR B1257+12",
"Constellation": "Vir",
"RA_J2000": 195.012701,
"Dec_J2000": 12.682417,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Liesma",
"Designation": "HD 118203",
"Constellation": "UMa",
"Vmag": 8.05,
"RA_J2000": 203.510581,
"Dec_J2000": 53.728527,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Lilii Borea",
"Designation": "HR 824",
"ID": "39",
"Constellation": "Ari",
"Vmag": 4.52,
"RA_J2000": 41.977256,
"Dec_J2000": 29.247115,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Lionrock",
"Designation": "HD 212771",
"Constellation": "Aqr",
"Vmag": 7.6,
"RA_J2000": 336.762801,
"Dec_J2000": -17.263656,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Lucilinburhuc",
"Designation": "HD 45350",
"Constellation": "Aur",
"Vmag": 7.89,
"RA_J2000": 97.190463,
"Dec_J2000": 38.962962,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Lusitânia",
"Designation": "HD 45652",
"Constellation": "Mon",
"Vmag": 8.1,
"RA_J2000": 97.304966,
"Dec_J2000": 10.933891,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Maasym",
"Designation": "HR 6526",
"ID": "λ",
"Constellation": "Her",
"Vmag": 4.41,
"RA_J2000": 262.684626,
"Dec_J2000": 26.110645,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Macondo",
"Designation": "HD 93083",
"Constellation": "Ant",
"Vmag": 8.3,
"RA_J2000": 161.087146,
"Dec_J2000": -33.577024,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Mago",
"Designation": "HD 32518",
"Constellation": "Cam",
"Vmag": 6.43,
"RA_J2000": 77.403,
"Dec_J2000": 69.639404,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Mahasim",
"Designation": "HR 2095",
"ID": "θ",
"Constellation": "Aur",
"WDSComponentId": "A",
"WDS_J": "05597+3713",
"Vmag": 2.65,
"RA_J2000": 89.930292,
"Dec_J2000": 37.212585,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Mahsati",
"Designation": "HD 152581",
"Constellation": "Oph",
"Vmag": 8.38,
"RA_J2000": 253.431594,
"Dec_J2000": 11.973748,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Maia",
"Designation": "HR 1149",
"ID": "20",
"Constellation": "Tau",
"WDS_J": "03458+2422",
"Vmag": 3.87,
"RA_J2000": 56.456695,
"Dec_J2000": 24.367751,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Malmok",
"Designation": "WASP-39",
"ID": "V732",
"Constellation": "Vir",
"WDS_J": "14293-0327",
"Vmag": 11.89,
"RA_J2000": 217.32673,
"Dec_J2000": -3.444501,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Marfik",
"Designation": "HR 6149",
"ID": "λ",
"Constellation": "Oph",
"WDSComponentId": "A",
"WDS_J": "16309+0159",
"Vmag": 3.82,
"RA_J2000": 247.728453,
"Dec_J2000": 1.983888,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Markab",
"Designation": "HR 8781",
"ID": "α",
"Constellation": "Peg",
"Vmag": 2.49,
"RA_J2000": 346.190223,
"Dec_J2000": 15.205267,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Markeb",
"Designation": "HR 3734",
"ID": "κ",
"Constellation": "Vel",
"Vmag": 2.47,
"RA_J2000": 140.528407,
"Dec_J2000": -55.010667,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Márohu",
"Designation": "WASP-6",
"Constellation": "Aqr",
"Vmag": 12.16,
"RA_J2000": 348.157237,
"Dec_J2000": -22.673966,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Marsic",
"Designation": "HR 6008",
"ID": "κ",
"Constellation": "Her",
"WDSComponentId": "A",
"WDS_J": "16081+1703",
"Vmag": 5.0,
"RA_J2000": 242.018857,
"Dec_J2000": 17.04698,
"ApprovalDate": "2017-02-01"
},
{
"IAUName": "Matar",
"Designation": "HR 8650",
"ID": "η",
"Constellation": "Peg",
"WDSComponentId": "Aa",
"WDS_J": "22430+3013",
"Vmag": 2.93,
"RA_J2000": 340.750579,
"Dec_J2000": 30.221244,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Mazaalai",
"Designation": "HAT-P-21",
"Constellation": "UMa",
"Vmag": 11.72,
"RA_J2000": 171.274941,
"Dec_J2000": 41.027964,
"ApprovalDate": "2020-03-01"
},
{
"IAUName": "Mebsuta",
"Designation": "HR 2473",
"ID": "ε",
"Constellation": "Gem",
"WDS_J": "06439+2508",
"Vmag": 3.06,
"RA_J2000": 100.983026,
"Dec_J2000": 25.131127,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Megrez",
"Designation": "HR 4660",
"ID": "δ",
"Constellation": "UMa",
"WDS_J": "12154+5702",
"Vmag": 3.32,
"RA_J2000": 183.856503,
"Dec_J2000": 57.032615,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Meissa",
"Designation": "HR 1879",
"ID": "λ",
"Constellation": "Ori",
"WDSComponentId": "A",
"WDS_J": "05351+0956",
"Vmag": 3.39,
"RA_J2000": 83.784486,
"Dec_J2000": 9.934156,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Mekbuda",
"Designation": "HR 2650",
"ID": "ζ",
"Constellation": "Gem",
"WDSComponentId": "Aa",
"WDS_J": "07041+2034",
"Vmag": 4.01,
"RA_J2000": 106.027215,
"Dec_J2000": 20.570295,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Meleph",
"Designation": "HR 3429",
"ID": "ε",
"Constellation": "Cnc",
"WDSComponentId": "Aa",
"WDS_J": "08405+1933",
"Vmag": 6.29,
"RA_J2000": 130.112544,
"Dec_J2000": 19.544809,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Menkalinan",
"Designation": "HR 2088",
"ID": "β",
"Constellation": "Aur",
"WDSComponentId": "Aa",
"WDS_J": "05595+4457",
"Vmag": 1.9,
"RA_J2000": 89.882179,
"Dec_J2000": 44.947433,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Menkar",
"Designation": "HR 911",
"ID": "α",
"Constellation": "Cet",
"Vmag": 2.54,
"RA_J2000": 45.569885,
"Dec_J2000": 4.089737,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Menkent",
"Designation": "HR 5288",
"ID": "θ",
"Constellation": "Cen",
"WDS_J": "14067-3622",
"Vmag": 2.06,
"RA_J2000": 211.670617,
"Dec_J2000": -36.369958,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Menkib",
"Designation": "HR 1228",
"ID": "ξ",
"Constellation": "Per",
"WDS_J": "03590+3547",
"Vmag": 3.98,
"RA_J2000": 59.741253,
"Dec_J2000": 35.791032,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Merak",
"Designation": "HR 4295",
"ID": "β",
"Constellation": "UMa",
"Vmag": 2.34,
"RA_J2000": 165.460319,
"Dec_J2000": 56.382426,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Merga",
"Designation": "HR 5533",
"ID": "38",
"Constellation": "Boo",
"Vmag": 5.76,
"RA_J2000": 222.327791,
"Dec_J2000": 46.116206,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Meridiana",
"Designation": "HR 7254",
"ID": "α",
"Constellation": "CrA",
"Vmag": 4.11,
"RA_J2000": 287.368087,
"Dec_J2000": -37.904473,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Merope",
"Designation": "HR 1156",
"ID": "23",
"Constellation": "Tau",
"WDSComponentId": "Aa",
"WDS_J": "03463+2357",
"Vmag": 4.14,
"RA_J2000": 56.581552,
"Dec_J2000": 23.948348,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Mesarthim",
"Designation": "HR 546",
"ID": "γ1",
"Constellation": "Ari",
"WDSComponentId": "A",
"WDS_J": "01535+1918",
"Vmag": 4.75,
"RA_J2000": 28.38256,
"Dec_J2000": 19.293852,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Miaplacidus",
"Designation": "HR 3685",
"ID": "β",
"Constellation": "Car",
"Vmag": 1.67,
"RA_J2000": 138.299906,
"Dec_J2000": -69.717208,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Mimosa",
"Designation": "HR 4853",
"ID": "β",
"Constellation": "Cru",
"WDS_J": "12477-5941",
"Vmag": 1.25,
"RA_J2000": 191.930263,
"Dec_J2000": -59.688764,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Minchir",
"Designation": "HR 3418",
"ID": "σ",
"Constellation": "Hya",
"Vmag": 4.45,
"RA_J2000": 129.689323,
"Dec_J2000": 3.341436,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Minelauva",
"Designation": "HR 4910",
"ID": "δ",
"Constellation": "Vir",
"WDS_J": "12556+0324",
"Vmag": 3.39,
"RA_J2000": 193.900869,
"Dec_J2000": 3.39747,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Mintaka",
"Designation": "HR 1852",
"ID": "δ",
"Constellation": "Ori",
"WDSComponentId": "Aa",
"WDS_J": "05320-0018",
"Vmag": 2.25,
"RA_J2000": 83.001667,
"Dec_J2000": -0.299095,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Mira",
"Designation": "HR 681",
"ID": "ο",
"Constellation": "Cet",
"WDSComponentId": "Aa",
"WDS_J": "02193-0259",
"Vmag": 6.47,
"RA_J2000": 34.836617,
"Dec_J2000": -2.97764,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Mirach",
"Designation": "HR 337",
"ID": "β",
"Constellation": "And",
"WDS_J": "01097+3537",
"Vmag": 2.07,
"RA_J2000": 17.433013,
"Dec_J2000": 35.620557,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Miram",
"Designation": "HR 834",
"ID": "η",
"Constellation": "Per",
"WDSComponentId": "A",
"WDS_J": "02507+5554",
"Vmag": 3.77,
"RA_J2000": 42.674207,
"Dec_J2000": 55.895497,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Mirfak",
"Designation": "HR 1017",
"ID": "α",
"Constellation": "Per",
"WDS_J": "03243+4952",
"Vmag": 1.79,
"RA_J2000": 51.080709,
"Dec_J2000": 49.861179,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Mirzam",
"Designation": "HR 2294",
"ID": "β",
"Constellation": "CMa",
"WDS_J": "06227-1757",
"Vmag": 1.98,
"RA_J2000": 95.674939,
"Dec_J2000": -17.955919,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Misam",
"Designation": "HR 941",
"ID": "κ",
"Constellation": "Per",
"WDSComponentId": "Aa",
"WDS_J": "03095+4451",
"Vmag": 3.79,
"RA_J2000": 47.374048,
"Dec_J2000": 44.857541,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Mizar",
"Designation": "HR 5054",
"ID": "ζ",
"Constellation": "UMa",
"WDSComponentId": "Aa",
"WDS_J": "13239+5456",
"Vmag": 2.23,
"RA_J2000": 200.981429,
"Dec_J2000": 54.925362,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Moldoveanu",
"Designation": "XO-1",
"Constellation": "CrB",
"Vmag": 11.28,
"RA_J2000": 240.54936,
"Dec_J2000": 28.169561,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Mönch",
"Designation": "HD 130322",
"Constellation": "Vir",
"WDS_J": "14475-0017",
"Vmag": 8.04,
"RA_J2000": 221.886361,
"Dec_J2000": -0.281474,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Montuno",
"Designation": "WASP-79",
"Constellation": "Eri",
"Vmag": 10.06,
"RA_J2000": 66.370903,
"Dec_J2000": -30.600447,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Morava",
"Designation": "WASP-60",
"Constellation": "Peg",
"Vmag": 12.18,
"RA_J2000": 356.666561,
"Dec_J2000": 31.155937,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Moriah",
"Designation": "HAT-P-23",
"Constellation": "Del",
"Vmag": 12.32,
"RA_J2000": 306.123848,
"Dec_J2000": 16.76217,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Mothallah",
"Designation": "HR 544",
"ID": "α",
"Constellation": "Tri",
"WDS_J": "01531+2935",
"Vmag": 3.42,
"RA_J2000": 28.27045,
"Dec_J2000": 29.578826,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Mouhoun",
"Designation": "HD 30856",
"Constellation": "Eri",
"Vmag": 7.91,
"RA_J2000": 72.574423,
"Dec_J2000": -24.368843,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Mpingo",
"Designation": "WASP-71",
"Constellation": "Cet",
"Vmag": 10.7,
"RA_J2000": 29.26335,
"Dec_J2000": 0.758855,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Muliphein",
"Designation": "HR 2657",
"ID": "γ",
"Constellation": "CMa",
"Vmag": 4.11,
"RA_J2000": 105.939554,
"Dec_J2000": -15.633286,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Muphrid",
"Designation": "HR 5235",
"ID": "η",
"Constellation": "Boo",
"WDSComponentId": "Aa",
"WDS_J": "13547+1824",
"Vmag": 2.68,
"RA_J2000": 208.671161,
"Dec_J2000": 18.397717,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Muscida",
"Designation": "HR 3323",
"ID": "ο",
"Constellation": "UMa",
"WDSComponentId": "A",
"WDS_J": "08303+6043",
"Vmag": 3.35,
"RA_J2000": 127.566128,
"Dec_J2000": 60.71817,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Musica",
"Designation": "HR 8030",
"ID": "18",
"Constellation": "Del",
"WDS_J": "20584+1050",
"Vmag": 5.48,
"RA_J2000": 314.608058,
"Dec_J2000": 10.839286,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Muspelheim",
"Designation": "HAT-P-29",
"Constellation": "Per",
"WDS_J": "02125+5147",
"Vmag": 11.89,
"RA_J2000": 33.13116,
"Dec_J2000": 51.778767,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Nahn",
"Designation": "HR 3627",
"ID": "ξ",
"Constellation": "Cnc",
"WDSComponentId": "A",
"WDS_J": "09094+2203",
"Vmag": 5.7,
"RA_J2000": 137.339722,
"Dec_J2000": 22.045446,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Naledi",
"Designation": "WASP-62",
"Constellation": "Dor",
"Vmag": 10.12,
"RA_J2000": 87.139974,
"Dec_J2000": -63.988441,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Naos",
"Designation": "HR 3165",
"ID": "ζ",
"Constellation": "Pup",
"Vmag": 2.21,
"RA_J2000": 120.896031,
"Dec_J2000": -40.003148,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Nashira",
"Designation": "HR 8278",
"ID": "γ",
"Constellation": "Cap",
"WDSComponentId": "A",
"Vmag": 3.69,
"RA_J2000": 325.022735,
"Dec_J2000": -16.662308,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Násti",
"Designation": "HD 68988",
"Constellation": "UMa",
"Vmag": 8.2,
"RA_J2000": 124.592386,
"Dec_J2000": 61.460721,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Natasha",
"Designation": "HD 85390",
"Constellation": "Vel",
"WDS_J": "09500-4947",
"Vmag": 8.54,
"RA_J2000": 147.510404,
"Dec_J2000": -49.790266,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Nekkar",
"Designation": "HR 5602",
"ID": "β",
"Constellation": "Boo",
"Vmag": 3.49,
"RA_J2000": 225.48651,
"Dec_J2000": 40.390567,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Nembus",
"Designation": "HR 464",
"ID": "51",
"Constellation": "And",
"Vmag": 3.59,
"RA_J2000": 24.498154,
"Dec_J2000": 48.628214,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Nenque",
"Designation": "HD 6434",
"Constellation": "Phe",
"Vmag": 7.72,
"RA_J2000": 16.167293,
"Dec_J2000": -39.488218,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Nervia",
"Designation": "HD 49674",
"Constellation": "Aur",
"WDSComponentId": "A",
"WDS_J": "06515+4052",
"Vmag": 8.1,
"RA_J2000": 102.877151,
"Dec_J2000": 40.867757,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Nihal",
"Designation": "HR 1829",
"ID": "β",
"Constellation": "Lep",
"WDSComponentId": "A",
"WDS_J": "05282-2046",
"Vmag": 2.81,
"RA_J2000": 82.061346,
"Dec_J2000": -20.759441,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Nikawiy",
"Designation": "HD 136418",
"Constellation": "Boo",
"Vmag": 7.88,
"RA_J2000": 229.77576,
"Dec_J2000": 41.733206,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Nosaxa",
"Designation": "HD 48265",
"Constellation": "Pup",
"Vmag": 8.05,
"RA_J2000": 100.007196,
"Dec_J2000": -48.541956,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Nunki",
"Designation": "HR 7121",
"ID": "σ",
"Constellation": "Sgr",
"WDSComponentId": "Aa",
"WDS_J": "18553-2618",
"Vmag": 2.05,
"RA_J2000": 283.81636,
"Dec_J2000": -26.296724,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Nusakan",
"Designation": "HR 5747",
"ID": "β",
"Constellation": "CrB",
"WDSComponentId": "A",
"WDS_J": "15278+2906",
"Vmag": 3.66,
"RA_J2000": 231.957211,
"Dec_J2000": 29.105699,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Nushagak",
"Designation": "HD 17156",
"Constellation": "Cas",
"Vmag": 8.17,
"RA_J2000": 42.435361,
"Dec_J2000": 71.753231,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Nyamien",
"Designation": "WASP-15",
"Constellation": "Cen",
"WDS_J": "13557-3210",
"Vmag": 10.91,
"RA_J2000": 208.927967,
"Dec_J2000": -32.159615,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Ogma",
"Designation": "HD 149026",
"Constellation": "Her",
"Vmag": 8.16,
"RA_J2000": 247.623409,
"Dec_J2000": 38.347311,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Okab",
"Designation": "HR 7235",
"ID": "ζ",
"Constellation": "Aql",
"WDSComponentId": "A",
"WDS_J": "19054+1352",
"Vmag": 2.99,
"RA_J2000": 286.352533,
"Dec_J2000": 13.863477,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Paikauhale",
"Designation": "HR 6165",
"ID": "τ",
"Constellation": "Sco",
"WDSComponentId": "A",
"WDS_J": "16359-2813",
"Vmag": 2.82,
"RA_J2000": 248.970637,
"Dec_J2000": -28.216017,
"ApprovalDate": "2018-08-10"
},
{
"IAUName": "Parumleo",
"Designation": "WASP-32",
"Constellation": "Psc",
"Vmag": 11.54,
"RA_J2000": 3.961699,
"Dec_J2000": 1.200441,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Peacock",
"Designation": "HR 7790",
"ID": "α",
"Constellation": "Pav",
"WDSComponentId": "Aa",
"WDS_J": "20256-5644",
"Vmag": 1.94,
"RA_J2000": 306.411904,
"Dec_J2000": -56.73509,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Petra",
"Designation": "WASP-80",
"Constellation": "Aql",
"WDS_J": "20127-0209",
"Vmag": 11.88,
"RA_J2000": 303.167372,
"Dec_J2000": -2.14422,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Phact",
"Designation": "HR 1956",
"ID": "α",
"Constellation": "Col",
"WDS_J": "05396-3404",
"Vmag": 2.65,
"RA_J2000": 84.912254,
"Dec_J2000": -34.07411,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Phecda",
"Designation": "HR 4554",
"ID": "γ",
"Constellation": "UMa",
"WDSComponentId": "Aa",
"WDS_J": "11538+5342",
"Vmag": 2.41,
"RA_J2000": 178.457679,
"Dec_J2000": 53.694758,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Pherkad",
"Designation": "HR 5735",
"ID": "γ",
"Constellation": "UMi",
"Vmag": 3.0,
"RA_J2000": 230.18215,
"Dec_J2000": 71.834017,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Phoenicia",
"Designation": "HD 192263",
"ID": "V1703",
"Constellation": "Aql",
"WDS_J": "20140-0052",
"Vmag": 7.79,
"RA_J2000": 303.499356,
"Dec_J2000": -0.866881,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Piautos",
"Designation": "HR 3268",
"ID": "λ",
"Constellation": "Cnc",
"Vmag": 5.92,
"RA_J2000": 125.133901,
"Dec_J2000": 24.022311,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Pincoya",
"Designation": "HD 164604",
"Constellation": "Sgr",
"Vmag": 9.66,
"RA_J2000": 270.778888,
"Dec_J2000": -28.560655,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Pipirima",
"Designation": "HR 6252",
"ID": "μ2",
"Constellation": "Sco",
"WDSComponentId": "A",
"WDS_J": "16523-3801",
"Vmag": 3.56,
"RA_J2000": 253.083939,
"Dec_J2000": -38.017535,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Pipoltr",
"Designation": "TrES-3",
"ID": "V1434",
"Constellation": "Her",
"Vmag": 12.37,
"RA_J2000": 268.029244,
"Dec_J2000": 37.546177,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Pleione",
"Designation": "HR 1180",
"ID": "28",
"Constellation": "Tau",
"WDSComponentId": "Aa",
"WDS_J": "03492+2408",
"Vmag": 5.05,
"RA_J2000": 57.296738,
"Dec_J2000": 24.13671,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Poerava",
"Designation": "HD 221287",
"Constellation": "Tuc",
"Vmag": 7.82,
"RA_J2000": 352.834742,
"Dec_J2000": -58.209731,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Polaris",
"Designation": "HR 424",
"ID": "α",
"Constellation": "UMi",
"WDSComponentId": "Aa",
"WDS_J": "02318+8916",
"Vmag": 1.97,
"RA_J2000": 37.954561,
"Dec_J2000": 89.264109,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Polaris Australis",
"Designation": "HR 7228",
"ID": "σ",
"Constellation": "Oct",
"Vmag": 5.45,
"RA_J2000": 317.195164,
"Dec_J2000": -88.956499,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Polis",
"Designation": "HR 6812",
"ID": "μ",
"Constellation": "Sgr",
"WDSComponentId": "Aa",
"WDS_J": "18138-2104",
"Vmag": 3.84,
"RA_J2000": 273.44087,
"Dec_J2000": -21.058832,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Pollux",
"Designation": "HR 2990",
"ID": "β",
"Constellation": "Gem",
"WDS_J": "07453+2802",
"Vmag": 1.16,
"RA_J2000": 116.328958,
"Dec_J2000": 28.026199,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Porrima",
"Designation": "HR 4825",
"ID": "γ",
"Constellation": "Vir",
"WDSComponentId": "A",
"WDS_J": "12417-0127",
"Vmag": 2.74,
"RA_J2000": 190.415181,
"Dec_J2000": -1.449373,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Praecipua",
"Designation": "HR 4247",
"ID": "46",
"Constellation": "LMi",
"Vmag": 3.79,
"RA_J2000": 163.327937,
"Dec_J2000": 34.214872,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Prima Hyadum",
"Designation": "HR 1346",
"ID": "γ",
"Constellation": "Tau",
"WDSComponentId": "A",
"WDS_J": "04198+1538",
"Vmag": 3.65,
"RA_J2000": 64.948349,
"Dec_J2000": 15.627643,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Procyon",
"Designation": "HR 2943",
"ID": "α",
"Constellation": "CMi",
"WDSComponentId": "A",
"WDS_J": "07393+0514",
"Vmag": 0.4,
"RA_J2000": 114.825493,
"Dec_J2000": 5.224993,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Propus",
"Designation": "HR 2216",
"ID": "η",
"Constellation": "Gem",
"WDSComponentId": "A",
"WDS_J": "06149+2230",
"Vmag": 3.31,
"RA_J2000": 93.719405,
"Dec_J2000": 22.506794,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Proxima Centauri",
"Designation": "GJ 551",
"ID": "α",
"Constellation": "Cen",
"WDSComponentId": "C\t",
"WDS_J": "14396-6050",
"Vmag": 11.01,
"RA_J2000": 217.428953,
"Dec_J2000": -62.679484,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Ran",
"Designation": "HR 1084",
"ID": "ε",
"Constellation": "Eri",
"WDS_J": "03329-0927",
"Vmag": 3.73,
"RA_J2000": 53.232687,
"Dec_J2000": -9.458259,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Rana",
"Designation": "HR 1136",
"ID": "δ",
"Constellation": "Eri",
"Vmag": 3.53,
"RA_J2000": 55.812086,
"Dec_J2000": -9.763392,
"ApprovalDate": "2022-04-04"
},
{
"IAUName": "Rapeto",
"Designation": "HD 153950",
"Constellation": "Sco",
"Vmag": 7.39,
"RA_J2000": 256.128629,
"Dec_J2000": -43.30977,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Rasalas",
"Designation": "HR 3905",
"ID": "μ",
"Constellation": "Leo",
"Vmag": 3.88,
"RA_J2000": 148.190903,
"Dec_J2000": 26.006953,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Rasalgethi",
"Designation": "HR 6406",
"ID": "α1",
"Constellation": "Her",
"WDSComponentId": "Aa",
"WDS_J": "17146+1423",
"Vmag": 3.37,
"RA_J2000": 258.66191,
"Dec_J2000": 14.390333,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Rasalhague",
"Designation": "HR 6556",
"ID": "α",
"Constellation": "Oph",
"WDSComponentId": "A",
"WDS_J": "17349+1234",
"Vmag": 2.08,
"RA_J2000": 263.733627,
"Dec_J2000": 12.560035,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Rastaban",
"Designation": "HR 6536",
"ID": "β",
"Constellation": "Dra",
"WDSComponentId": "A",
"WDS_J": "17304+5218",
"Vmag": 2.79,
"RA_J2000": 262.608174,
"Dec_J2000": 52.301389,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Regulus",
"Designation": "HR 3982",
"ID": "α",
"Constellation": "Leo",
"WDSComponentId": "A",
"WDS_J": "10084+1158",
"Vmag": 1.36,
"RA_J2000": 152.092962,
"Dec_J2000": 11.967209,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Revati",
"Designation": "HR 361",
"ID": "ζ",
"Constellation": "Psc",
"WDSComponentId": "A",
"WDS_J": "01137+0735",
"Vmag": 5.21,
"RA_J2000": 18.432864,
"Dec_J2000": 7.575354,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Rigel",
"Designation": "HR 1713",
"ID": "β",
"Constellation": "Ori",
"WDSComponentId": "A",
"WDS_J": "05145-0812",
"Vmag": 0.18,
"RA_J2000": 78.634467,
"Dec_J2000": -8.201638,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Rigil Kentaurus",
"Designation": "HR 5459",
"ID": "α",
"Constellation": "Cen",
"WDSComponentId": "A",
"WDS_J": "14396-6050",
"Vmag": -0.01,
"RA_J2000": 219.902066,
"Dec_J2000": -60.833975,
"ApprovalDate": "2016-11-06"
},
{
"IAUName": "Rosaliadecastro",
"Designation": "HD 149143",
"Constellation": "Oph",
"Vmag": 7.89,
"RA_J2000": 248.212712,
"Dec_J2000": 2.084828,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Rotanev",
"Designation": "HR 7882",
"ID": "β",
"Constellation": "Del",
"WDSComponentId": "A",
"WDS_J": "20375+1436",
"Vmag": 3.64,
"RA_J2000": 309.387235,
"Dec_J2000": 14.595115,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Ruchbah",
"Designation": "HR 403",
"ID": "δ",
"Constellation": "Cas",
"WDSComponentId": "Aa",
"WDS_J": "01258+6014",
"Vmag": 2.66,
"RA_J2000": 21.453964,
"Dec_J2000": 60.235284,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Rukbat",
"Designation": "HR 7348",
"ID": "α",
"Constellation": "Sgr",
"Vmag": 3.96,
"RA_J2000": 290.97157,
"Dec_J2000": -40.61594,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Sabik",
"Designation": "HR 6378",
"ID": "η",
"Constellation": "Oph",
"WDSComponentId": "A",
"WDS_J": "17104-1544",
"Vmag": 2.43,
"RA_J2000": 257.594529,
"Dec_J2000": -15.724907,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Saclateni",
"Designation": "HR 1612",
"ID": "ζ",
"Constellation": "Aur",
"WDSComponentId": "A",
"WDS_J": "05025+4105",
"Vmag": 3.69,
"RA_J2000": 75.619531,
"Dec_J2000": 41.075839,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Sadachbia",
"Designation": "HR 8518",
"ID": "γ",
"Constellation": "Aqr",
"WDSComponentId": "Aa",
"WDS_J": "22217-0123",
"Vmag": 3.86,
"RA_J2000": 335.414064,
"Dec_J2000": -1.387334,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Sadalbari",
"Designation": "HR 8684",
"ID": "μ",
"Constellation": "Peg",
"Vmag": 3.51,
"RA_J2000": 342.500809,
"Dec_J2000": 24.601577,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Sadalmelik",
"Designation": "HR 8414",
"ID": "α",
"Constellation": "Aqr",
"WDSComponentId": "A",
"WDS_J": "22058-0019",
"Vmag": 2.95,
"RA_J2000": 331.445983,
"Dec_J2000": -0.319849,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Sadalsuud",
"Designation": "HR 8232",
"ID": "β",
"Constellation": "Aqr",
"WDSComponentId": "A",
"WDS_J": "21316-0534",
"Vmag": 2.9,
"RA_J2000": 322.889715,
"Dec_J2000": -5.571176,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Sadr",
"Designation": "HR 7796",
"ID": "γ",
"Constellation": "Cyg",
"WDSComponentId": "A",
"WDS_J": "20222+4015",
"Vmag": 2.23,
"RA_J2000": 305.557091,
"Dec_J2000": 40.256679,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Sagarmatha",
"Designation": "HD 100777",
"Constellation": "Leo",
"Vmag": 8.42,
"RA_J2000": 173.964679,
"Dec_J2000": -4.755695,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Saiph",
"Designation": "HR 2004",
"ID": "κ",
"Constellation": "Ori",
"Vmag": 2.07,
"RA_J2000": 86.93912,
"Dec_J2000": -9.669605,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Salm",
"Designation": "HR 8880",
"ID": "τ",
"Constellation": "Peg",
"Vmag": 4.58,
"RA_J2000": 350.159341,
"Dec_J2000": 23.740336,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Sāmaya",
"Designation": "HD 205739",
"Constellation": "PsA",
"Vmag": 8.56,
"RA_J2000": 324.535016,
"Dec_J2000": -31.737484,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Sansuna",
"Designation": "HAT-P-34",
"Constellation": "Sge",
"WDS_J": "20127+1806",
"Vmag": 10.31,
"RA_J2000": 303.195361,
"Dec_J2000": 18.104833,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Sargas",
"Designation": "HR 6553",
"ID": "θ",
"Constellation": "Sco",
"WDSComponentId": "A",
"WDS_J": "17373-4300",
"Vmag": 1.86,
"RA_J2000": 264.329711,
"Dec_J2000": -42.997824,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Sarin",
"Designation": "HR 6410",
"ID": "δ",
"Constellation": "Her",
"WDSComponentId": "Aa",
"WDS_J": "17150+2450",
"Vmag": 3.12,
"RA_J2000": 258.757963,
"Dec_J2000": 24.839204,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Sceptrum",
"Designation": "HR 1481",
"ID": "53",
"Constellation": "Eri",
"WDSComponentId": "A",
"WDS_J": "04382-1418",
"Vmag": 4.02,
"RA_J2000": 69.545104,
"Dec_J2000": -14.304017,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Scheat",
"Designation": "HR 8775",
"ID": "β",
"Constellation": "Peg",
"WDS_J": "23038+2805",
"Vmag": 2.44,
"RA_J2000": 345.943572,
"Dec_J2000": 28.082785,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Schedar",
"Designation": "HR 168",
"ID": "α",
"Constellation": "Cas",
"WDS_J": "00405+5632",
"Vmag": 2.24,
"RA_J2000": 10.126838,
"Dec_J2000": 56.537331,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Secunda Hyadum",
"Designation": "HR 1373",
"ID": "δ",
"Constellation": "Tau",
"WDSComponentId": "Aa",
"WDS_J": "04230+1732",
"Vmag": 3.78,
"RA_J2000": 65.733719,
"Dec_J2000": 17.542514,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Segin",
"Designation": "HR 0542",
"ID": "ε",
"Constellation": "Cas",
"Vmag": 3.35,
"RA_J2000": 28.598857,
"Dec_J2000": 63.670101,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Seginus",
"Designation": "HR 5435",
"ID": "γ",
"Constellation": "Boo",
"WDSComponentId": "Aa",
"WDS_J": "14321+3818",
"Vmag": 3.04,
"RA_J2000": 218.019466,
"Dec_J2000": 38.308251,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Sham",
"Designation": "HR 7479",
"ID": "α",
"Constellation": "Sge",
"WDS_J": "19401+1801",
"Vmag": 4.39,
"RA_J2000": 295.024133,
"Dec_J2000": 18.013891,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Shama",
"Designation": "HD 99109",
"Constellation": "Leo",
"Vmag": 9.1,
"RA_J2000": 171.072328,
"Dec_J2000": -1.529073,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Sharjah",
"Designation": "HIP 79431",
"Constellation": "Sco",
"Vmag": 11.34,
"RA_J2000": 243.174084,
"Dec_J2000": -18.875503,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Shaula",
"Designation": "HR 6527",
"ID": "λ",
"Constellation": "Sco",
"WDSComponentId": "Aa",
"WDS_J": "17336-3706",
"Vmag": 1.62,
"RA_J2000": 263.402167,
"Dec_J2000": -37.103824,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Sheliak",
"Designation": "HR 7106",
"ID": "β",
"Constellation": "Lyr",
"WDSComponentId": "Aa1",
"WDS_J": "18501+3322",
"Vmag": 3.52,
"RA_J2000": 282.519978,
"Dec_J2000": 33.362668,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Sheratan",
"Designation": "HR 553",
"ID": "β",
"Constellation": "Ari",
"WDSComponentId": "A",
"WDS_J": "01546+2049",
"Vmag": 2.64,
"RA_J2000": 28.660046,
"Dec_J2000": 20.808031,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Sika",
"Designation": "HD 181720",
"Constellation": "Sgr",
"Vmag": 7.84,
"RA_J2000": 290.72077,
"Dec_J2000": -32.919053,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Sirius",
"Designation": "HR 2491",
"ID": "α",
"Constellation": "CMa",
"WDSComponentId": "A",
"WDS_J": "06451-1643",
"Vmag": -1.44,
"RA_J2000": 101.287155,
"Dec_J2000": -16.716116,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Situla",
"Designation": "HR 8610",
"ID": "κ",
"Constellation": "Aqr",
"WDSComponentId": "A",
"WDS_J": "22378-0414",
"Vmag": 5.04,
"RA_J2000": 339.439084,
"Dec_J2000": -4.228056,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Skat",
"Designation": "HR 8709",
"ID": "δ",
"Constellation": "Aqr",
"WDSComponentId": "A",
"Vmag": 3.27,
"RA_J2000": 343.662556,
"Dec_J2000": -15.820827,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Solaris",
"Designation": "BD+14-4559",
"Constellation": "Peg",
"Vmag": 9.78,
"RA_J2000": 318.399959,
"Dec_J2000": 14.689385,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Spica",
"Designation": "HR 5056",
"ID": "α",
"Constellation": "Vir",
"WDSComponentId": "Aa",
"WDS_J": "13252-1110",
"Vmag": 0.98,
"RA_J2000": 201.298247,
"Dec_J2000": -11.161319,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Sterrennacht",
"Designation": "HAT-P-6",
"Constellation": "And",
"Vmag": 10.54,
"RA_J2000": 354.774209,
"Dec_J2000": 42.465973,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Stribor",
"Designation": "HD 75898",
"Constellation": "Lyn",
"Vmag": 8.03,
"RA_J2000": 133.461689,
"Dec_J2000": 33.056812,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Sualocin",
"Designation": "HR 7906",
"ID": "α",
"Constellation": "Del",
"WDSComponentId": "Aa",
"WDS_J": "20396+1555",
"Vmag": 3.77,
"RA_J2000": 309.90953,
"Dec_J2000": 15.912073,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Subra",
"Designation": "HR 3852",
"ID": "ο",
"Constellation": "Leo",
"WDSComponentId": "Aa",
"WDS_J": "09412+0954",
"Vmag": 3.52,
"RA_J2000": 145.28764,
"Dec_J2000": 9.892308,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Suhail",
"Designation": "HR 3634",
"ID": "λ",
"Constellation": "Vel",
"WDS_J": "09080-4326",
"Vmag": 2.23,
"RA_J2000": 136.998993,
"Dec_J2000": -43.432589,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Sulafat",
"Designation": "HR 7178",
"ID": "γ",
"Constellation": "Lyr",
"WDS_J": "18589+3241",
"Vmag": 3.25,
"RA_J2000": 284.735928,
"Dec_J2000": 32.689557,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Syrma",
"Designation": "HR 5338",
"ID": "ι",
"Constellation": "Vir",
"Vmag": 4.07,
"RA_J2000": 214.003623,
"Dec_J2000": -6.000545,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Tabit",
"Designation": "HR 1543",
"ID": "π3",
"Constellation": "Ori",
"WDS_J": "04498+0658",
"Vmag": 3.19,
"RA_J2000": 72.460045,
"Dec_J2000": 6.961275,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Taika",
"Designation": "HAT-P-40",
"Constellation": "Lac",
"Vmag": 11.35,
"RA_J2000": 335.512865,
"Dec_J2000": 45.457366,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Taiyangshou",
"Designation": "HR 4518",
"ID": "χ",
"Constellation": "UMa",
"Vmag": 3.69,
"RA_J2000": 176.512559,
"Dec_J2000": 47.779406,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Taiyi",
"Designation": "HR 4916",
"ID": "8",
"Constellation": "Dra",
"Vmag": 5.23,
"RA_J2000": 193.868951,
"Dec_J2000": 65.438474,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Talitha",
"Designation": "HR 3569",
"ID": "ι",
"Constellation": "UMa",
"WDSComponentId": "Aa",
"WDS_J": "08592+4803",
"Vmag": 3.12,
"RA_J2000": 134.80189,
"Dec_J2000": 48.041826,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Tangra",
"Designation": "WASP-21",
"Constellation": "Peg",
"Vmag": 11.55,
"RA_J2000": 347.492723,
"Dec_J2000": 18.396078,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Tania Australis",
"Designation": "HR 4069",
"ID": "μ",
"Constellation": "UMa",
"WDSComponentId": "A",
"Vmag": 3.06,
"RA_J2000": 155.58225,
"Dec_J2000": 41.499519,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Tania Borealis",
"Designation": "HR 4033",
"ID": "λ",
"Constellation": "UMa",
"WDSComponentId": "A",
"Vmag": 3.45,
"RA_J2000": 154.274095,
"Dec_J2000": 42.914356,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Tapecue",
"Designation": "HD 63765",
"Constellation": "Car",
"Vmag": 8.1,
"RA_J2000": 116.957168,
"Dec_J2000": -54.264144,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Tarazed",
"Designation": "HR 7525",
"ID": "γ",
"Constellation": "Aql",
"WDS_J": "19463+1037",
"Vmag": 2.72,
"RA_J2000": 296.564915,
"Dec_J2000": 10.613262,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Tarf",
"Designation": "HR 3249",
"ID": "β",
"Constellation": "Cnc",
"WDSComponentId": "A",
"WDS_J": "08165+0911",
"Vmag": 3.53,
"RA_J2000": 124.128838,
"Dec_J2000": 9.185544,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Taygeta",
"Designation": "HR 1145",
"ID": "19",
"Constellation": "Tau",
"WDSComponentId": "Aa",
"WDS_J": "03452+2428",
"Vmag": 4.3,
"RA_J2000": 56.302063,
"Dec_J2000": 24.46727,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Tegmine",
"Designation": "HR 3208",
"ID": "ζ1",
"Constellation": "Cnc",
"WDSComponentId": "A",
"WDS_J": "08122+1739",
"Vmag": 4.67,
"RA_J2000": 123.05316,
"Dec_J2000": 17.647821,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Tejat",
"Designation": "HR 2286",
"ID": "μ",
"Constellation": "Gem",
"WDSComponentId": "Aa",
"WDS_J": "06230+2231",
"Vmag": 2.87,
"RA_J2000": 95.740112,
"Dec_J2000": 22.513583,
"ApprovalDate": "2017-02-01"
},
{
"IAUName": "Terebellum",
"Designation": "HR 7597",
"ID": "ω",
"Constellation": "Sgr",
"WDSComponentId": "A",
"Vmag": 4.7,
"RA_J2000": 298.959838,
"Dec_J2000": -26.299534,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Tevel",
"Designation": "HAT-P-9",
"Constellation": "Aur",
"Vmag": 12.26,
"RA_J2000": 110.168568,
"Dec_J2000": 37.140651,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Theemin",
"Designation": "HR 1464",
"ID": "υ2",
"Constellation": "Eri",
"Vmag": 3.81,
"RA_J2000": 68.88766,
"Dec_J2000": -30.562341,
"ApprovalDate": "2017-02-01"
},
{
"IAUName": "Thuban",
"Designation": "HR 5291",
"ID": "α",
"Constellation": "Dra",
"WDSComponentId": "A",
"WDS_J": "14044+6423",
"Vmag": 3.67,
"RA_J2000": 211.097291,
"Dec_J2000": 64.375851,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Tiaki",
"Designation": "HR 8636",
"ID": "β",
"Constellation": "Gru",
"Vmag": 2.12,
"RA_J2000": 340.666876,
"Dec_J2000": -46.884576,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Tianguan",
"Designation": "HR 1910",
"ID": "ζ",
"Constellation": "Tau",
"WDSComponentId": "A",
"Vmag": 2.97,
"RA_J2000": 84.411189,
"Dec_J2000": 21.142544,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Tianyi",
"Designation": "HR 4863",
"ID": "7",
"Constellation": "Dra",
"Vmag": 5.43,
"RA_J2000": 191.893099,
"Dec_J2000": 66.790305,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Timir",
"Designation": "HD 148427",
"Constellation": "Oph",
"Vmag": 6.89,
"RA_J2000": 247.117296,
"Dec_J2000": -13.399636,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Tislit",
"Designation": "WASP-161",
"Constellation": "Pup",
"Vmag": 10.77,
"RA_J2000": 126.337846,
"Dec_J2000": -11.500986,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Titawin",
"Designation": "HR 458",
"ID": "υ",
"Constellation": "And",
"WDSComponentId": "A",
"WDS_J": "01368+4124",
"Vmag": 4.09,
"RA_J2000": 24.199342,
"Dec_J2000": 41.405457,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Tojil",
"Designation": "WASP-22",
"Constellation": "Eri",
"WDS_J": "03313-2349",
"Vmag": 11.71,
"RA_J2000": 52.818029,
"Dec_J2000": -23.819678,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Toliman",
"Designation": "HR 5460",
"ID": "α",
"Constellation": "Cen",
"WDSComponentId": "B",
"WDS_J": "14396-6050",
"Vmag": 1.35,
"RA_J2000": 219.896096,
"Dec_J2000": -60.837528,
"ApprovalDate": "2018-08-10"
},
{
"IAUName": "Tonatiuh",
"Designation": "HR 4609",
"Constellation": "Cam",
"Vmag": 5.8,
"RA_J2000": 181.312995,
"Dec_J2000": 76.905735,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Torcular",
"Designation": "HR 510",
"ID": "ο",
"Constellation": "Psc",
"WDSComponentId": "A",
"WDS_J": "01454+0909",
"Vmag": 4.29,
"RA_J2000": 26.348466,
"Dec_J2000": 9.157737,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Tuiren",
"Designation": "HAT-P-36",
"Constellation": "CVn",
"Vmag": 12.25,
"RA_J2000": 188.266276,
"Dec_J2000": 44.915333,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Tupã",
"Designation": "HD 108147",
"Constellation": "Cru",
"WDS_J": "12258-6401",
"Vmag": 6.99,
"RA_J2000": 186.442779,
"Dec_J2000": -64.022088,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Tupi",
"Designation": "HD 23079",
"Constellation": "Ret",
"Vmag": 7.12,
"RA_J2000": 54.929567,
"Dec_J2000": -52.915838,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Tureis",
"Designation": "HR 3185",
"ID": "ρ",
"Constellation": "Pup",
"WDSComponentId": "A",
"WDS_J": "08075-2418",
"Vmag": 2.83,
"RA_J2000": 121.886037,
"Dec_J2000": -24.304324,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Ukdah",
"Designation": "HR 3845",
"ID": "ι",
"Constellation": "Hya",
"Vmag": 3.9,
"RA_J2000": 144.964008,
"Dec_J2000": -1.14281,
"ApprovalDate": "2018-06-01"
},
{
"IAUName": "Uklun",
"Designation": "HD 102117",
"Constellation": "Cen",
"Vmag": 7.47,
"RA_J2000": 176.210254,
"Dec_J2000": -58.70371,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Unukalhai",
"Designation": "HR 5854",
"ID": "α",
"Constellation": "Ser",
"WDS_J": "15443+0626",
"Vmag": 2.63,
"RA_J2000": 236.066976,
"Dec_J2000": 6.425629,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Unurgunite",
"Designation": "HR 2646",
"ID": "σ",
"Constellation": "CMa",
"WDS_J": "07017-2756",
"Vmag": 3.49,
"RA_J2000": 105.429782,
"Dec_J2000": -27.93483,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Uruk",
"Designation": "HD 231701",
"Constellation": "Sge",
"Vmag": 8.97,
"RA_J2000": 293.017338,
"Dec_J2000": 16.474289,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Vega",
"Designation": "HR 7001",
"ID": "α",
"Constellation": "Lyr",
"WDS_J": "18369+3846",
"Vmag": 0.03,
"RA_J2000": 279.234735,
"Dec_J2000": 38.783689,
"ApprovalDate": "2016-06-30"
},
{
"IAUName": "Veritate",
"Designation": "HR 8930",
"ID": "14",
"Constellation": "And",
"WDSComponentId": "A",
"WDS_J": "23313+3914",
"Vmag": 5.22,
"RA_J2000": 352.822556,
"Dec_J2000": 39.236197,
"ApprovalDate": "2015-12-15"
},
{
"IAUName": "Vindemiatrix",
"Designation": "HR 4932",
"ID": "ε",
"Constellation": "Vir",
"WDS_J": "13022+1058",
"Vmag": 2.85,
"RA_J2000": 195.544157,
"Dec_J2000": 10.959149,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Wasat",
"Designation": "HR 2777",
"ID": "δ",
"Constellation": "Gem",
"WDSComponentId": "Aa",
"WDS_J": "07201+2159",
"Vmag": 3.5,
"RA_J2000": 110.030749,
"Dec_J2000": 21.982316,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Wazn",
"Designation": "HR 2040",
"ID": "β",
"Constellation": "Col",
"WDS_J": "05510-3546",
"Vmag": 3.12,
"RA_J2000": 87.739968,
"Dec_J2000": -35.76831,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Wezen",
"Designation": "HR 2693",
"ID": "δ",
"Constellation": "CMa",
"WDSComponentId": "Aa",
"WDS_J": "07084-2624",
"Vmag": 1.83,
"RA_J2000": 107.09785,
"Dec_J2000": -26.3932,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Wurren",
"Designation": "HR 338",
"ID": "ζ",
"Constellation": "Phe",
"WDSComponentId": "Aa",
"WDS_J": "01084-5515",
"Vmag": 4.02,
"RA_J2000": 17.096173,
"Dec_J2000": -55.245758,
"ApprovalDate": "2017-11-19"
},
{
"IAUName": "Xamidimura",
"Designation": "HR 6247",
"ID": "μ1",
"Constellation": "Sco",
"WDSComponentId": "Aa",
"WDS_J": "16519-3803",
"Vmag": 3.0,
"RA_J2000": 252.96763,
"Dec_J2000": -38.04738,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Xihe",
"Designation": "HD 173416",
"Constellation": "Lyr",
"Vmag": 6.04,
"RA_J2000": 280.900456,
"Dec_J2000": 36.556606,
"ApprovalDate": "2019-12-17"
},
{
"IAUName": "Xuange",
"Designation": "HR 5351",
"ID": "λ",
"Constellation": "Boo",
"WDS_J": "14164+4605",
"Vmag": 4.18,
"RA_J2000": 214.095912,
"Dec_J2000": 46.088306,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Yed Posterior",
"Designation": "HR 6075",
"ID": "ε",
"Constellation": "Oph",
"WDS_J": "16183-0442",
"Vmag": 3.23,
"RA_J2000": 244.580374,
"Dec_J2000": -4.69251,
"ApprovalDate": "2016-10-05"
},
{
"IAUName": "Yed Prior",
"Designation": "HR 6056",
"ID": "δ",
"Constellation": "Oph",
"WDS_J": "16143-0342",
"Vmag": 2.73,
"RA_J2000": 243.586411,
"Dec_J2000": -3.694323,
"ApprovalDate": "2016-10-05"
},
{
"IAUName": "Yildun",
"Designation": "HR 6789",
"ID": "δ",
"Constellation": "UMi",
"WDS_J": "17322+8635",
"Vmag": 4.35,
"RA_J2000": 263.054126,
"Dec_J2000": 86.586462,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Zaniah",
"Designation": "HR 4689",
"ID": "η",
"Constellation": "Vir",
"WDSComponentId": "Aa",
"WDS_J": "12199-0040",
"Vmag": 3.89,
"RA_J2000": 184.976476,
"Dec_J2000": -0.666793,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Zaurak",
"Designation": "HR 1231",
"ID": "γ",
"Constellation": "Eri",
"WDS_J": "03580-1331",
"Vmag": 2.97,
"RA_J2000": 59.50736,
"Dec_J2000": -13.508516,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Zavijava",
"Designation": "HR 4540",
"ID": "β",
"Constellation": "Vir",
"WDS_J": "11507+0146",
"Vmag": 3.59,
"RA_J2000": 177.673826,
"Dec_J2000": 1.764717,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Zhang",
"Designation": "HR 3903",
"ID": "υ1",
"Constellation": "Hya",
"WDSComponentId": "A",
"Vmag": 4.11,
"RA_J2000": 147.869558,
"Dec_J2000": -14.846603,
"ApprovalDate": "2017-06-30"
},
{
"IAUName": "Zibal",
"Designation": "HR 984",
"ID": "ζ",
"Constellation": "Eri",
"WDSComponentId": "Aa",
"WDS_J": "03158-0849",
"Vmag": 4.8,
"RA_J2000": 48.958436,
"Dec_J2000": -8.819731,
"ApprovalDate": "2016-09-12"
},
{
"IAUName": "Zosma",
"Designation": "HR 4357",
"ID": "δ",
"Constellation": "Leo",
"WDS_J": "11141+2031",
"Vmag": 2.56,
"RA_J2000": 168.527089,
"Dec_J2000": 20.523718,
"ApprovalDate": "2016-07-20"
},
{
"IAUName": "Zubenelgenubi",
"Designation": "HR 5531",
"ID": "α2",
"Constellation": "Lib",
"WDSComponentId": "Aa",
"WDS_J": "14509-1603",
"Vmag": 2.75,
"RA_J2000": 222.719638,
"Dec_J2000": -16.041777,
"ApprovalDate": "2016-08-21"
},
{
"IAUName": "Zubenelhakrabi",
"Designation": "HR 5787",
"ID": "γ",
"Constellation": "Lib",
"WDSComponentId": "A",
"WDS_J": "15355-1447",
"Vmag": 3.91,
"RA_J2000": 233.881578,
"Dec_J2000": -14.789536,
"ApprovalDate": "2017-09-05"
},
{
"IAUName": "Zubeneschamali",
"Designation": "HR 5685",
"ID": "β",
"Constellation": "Lib",
"Vmag": 2.61,
"RA_J2000": 229.251724,
"Dec_J2000": -9.382914,
"ApprovalDate": "2016-08-21"
}
]
"""
Module: search_and_solve.py, Script for SharpCap 4.0
Author: Sebastian Godelet (GitHub: sebgod)
License: MIT (see LICENSE.md)
Install:
1. Download via Gist (https://gist.githubusercontent.com/sebgod/a93cfec1fccf0e8db9b02c205e7bfe5d/raw/search_and_solve.py),
right-click and "Save as" anywhere.
2. Add to SharpCap scripts (requires Pro) via: SharpCap Settings -> Startup Scripts -> Add
2. Install All Sky Plate Solver (http://www.astrogb.com/astrogb/All_Sky_Plate_Solver.html)
3. If you run the 64-bit edition of SharpCap, the script will advise you to apply a registry fix (one time only)
Supported custom buttons:
1. 🎯ASPS
- Normal Click
Requires camera connected, will capture a frame and try to solve it using All Sky Plate Solver.
If the mount is connected will use a near-search given current mount position and search radius,
otherwise a blind-solve will be performed.
- Shift-Click
Syncs normally and on success retargets (if mount is connected).
- Ctrl-Click
Allows you to specify a custom search radius for ASPS near search (default 15 degrees).
- Shift-Ctrl-Click
Allows you to specify a the focal length of the optical system.
- Alt-Click
Will run plate-solving in a loop.
2. 🔍NED
- Normal Click
Searches NED (https://ned.ipac.caltech.edu/) for the object specified in the `Target Name` input field,
and slews to that target on success.
3. 🧿AF
- Normal Click
Moves outward using smallest increment and determines quality score (FWHM and # stars)
- Shift-Click
Like normal click but inward direction
- Alt-Click
Uses broad then fine-grained search to determine best focus value (outward)
- Shift-Alt-Click
Like Alt-Click but inward direction
4. 🛑Stop
Stops any running background task (auto-focuser, plate solving, object lookup)
"""
import json # for NED object search
import httplib # for NED object search
import ConfigParser # for storing settings
from datetime import datetime
import clr
clr.AddReference('System.Windows.Forms')
clr.AddReference('Microsoft.VisualBasic')
clr.AddReference('SharpCap.ImageProcessing')
from System import Activator, Guid # for activating COM objects
from System import Array, String, StringComparison
from System import Environment as DotNetEnvironment
from System import Math
from System import Type as DotNetType # for resolving ProcID
from System import Uri # for NED object search
from System.Threading import Thread, ParameterizedThreadStart, CancellationTokenSource
from System.IO import Path, File, Directory
from SharpCap.Base import NotificationStatus
from SharpCap.ImageProcessing import RADecPosition
from System.Windows.Forms import Control, Keys, Screen
from Microsoft.VisualBasic import Interaction # for Input
ASPS_SECTION = 'ASPS'
RADIUS = 'radius' # unit: degrees
FOCAL_LENGTH = 'focal length' # unit: mm
PIXEL_SIZE = 'pixel size' # unit: μm
STELLARIUM_TELESCOPE_INDEX = 'stellarium telescope' # 1..n
STELLARIUM_ADDRESS = 'stellarium address' # hostname:port
AF_SECTION = 'AF'
SMALL_STEP_SIZE = 'small step size' # 1..n
SMALL_FOCUSER_SAMPLES = 'small focuser samples' # 1..n
LARGE_STEP_SIZE = 'large step size' # 1..n
LARGE_FOCUSER_SAMPLES = 'large focuser samples' # 1..n
CAMERA_SAMPLES = 'camera samples' # 1..n
OLD_SETTINGS_INI = 'search_and_solve.ini'
NEW_SETTINGS_INI = 'extension_pack.ini'
STELLARIUM_POS = None
stopBackgroundTCS = None
def runInBackground(fun):
global stopBackgroundTCS
if stopBackgroundTCS is None or stopBackgroundTCS.IsCancellationRequested:
try:
stopBackgroundCTS.Dispose()
except:
pass
stopBackgroundTCS = CancellationTokenSource()
token = stopBackgroundTCS.Token
Thread(ParameterizedThreadStart(fun)).Start(token)
def newTempFilePrefix():
return Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString('D'))
def localSharpCapAppData():
return Path.Combine(DotNetEnvironment.GetFolderPath(DotNetEnvironment.SpecialFolder.LocalApplicationData), 'SharpCap')
def fullPathOfStartupScript(scriptFileName):
scripts = SharpCap.Settings.StartupScripts.Split('\r')
return Array.Find(scripts, lambda x: String.Equals(Path.GetFileName(x), scriptFileName, StringComparison.OrdinalIgnoreCase))
def showNotification(text, sev = NotificationStatus.OK):
SharpCap.ShowNotification(text, sev)
FIX_ASPS_64BIT_REG_SCRIPT = R'''Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\WOW6432Node\CLSID\{BB5A41D4-511E-4AA6-ACB2-7B1EE7269216}]
"AppID"="{BB5A41D4-511E-4AA6-ACB2-7B1EE7269216}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\WOW6432Node\AppID\{BB5A41D4-511E-4AA6-ACB2-7B1EE7269216}]
"DllSurrogate"=""
'''
def validateStepSzie(input, default):
return validateInput('Step size', input, default, 1, 1000, lambda x: int(x))
def validateSample(input, default):
return validateInput('Sample size', input, default, 1, 100, lambda x: int(x))
def validateStellariumTelescopeIndex(input, default):
return validateInput('Stellarium telescope index', input, default, 1, 9, lambda x: int(x))
def validateStellariumAddress(input, default):
return str(input) if input is not None else default
def validateFocalLength(input, default):
return validateInput('Focal length', input, default, 0, 20000, lambda x: int(x))
def validateRadius(input, default):
return validateInput('Radius', input, default, 0.1, 180, lambda x: float(x))
def validatePixelSize(input, default):
return validateInput('Pixel size', input, default, 0, 100, lambda x: float(x))
def validateInput(name, input, default, min, max, castFun):
try:
newValue = castFun(input) if input is not None and input is not '' else default
if newValue < min or newValue > max:
showNotification('{} {} is larger not in range {}..{}, keeping {}'\
.format(name, newValue, min, max, default), NotificationStatus.Warning)
return newValue
except:
showNotification('{} {} is not a valid value, keeping {}'.format(name, input, default), NotificationStatus.Warning)
return default
def parseSetting(parser, section, settings, key, validateFun):
if section in parser.sections():
opts = parser.options(section)
if key in opts:
settings[key] = validateFun(parser.get(section, key), settings[key])
def makeFilePath(name):
return Path.Combine(localSharpCapAppData(), name)
def openSectionForReading(parser, section, settings):
return lambda n, v: parseSetting(parser, section, settings, n, v)
def readSettings():
parser = ConfigParser.ConfigParser()
oldIniFilePath = makeFilePath(OLD_SETTINGS_INI)
newIniFilePath = makeFilePath(NEW_SETTINGS_INI)
settings = {
# ASPS
RADIUS: 15.0,
FOCAL_LENGTH: 0,
PIXEL_SIZE: 0.0,
STELLARIUM_TELESCOPE_INDEX: 1,
STELLARIUM_ADDRESS: 'localhost:8090',
# AF
SMALL_STEP_SIZE: 1,
SMALL_FOCUSER_SAMPLES: 50,
LARGE_STEP_SIZE: 100,
LARGE_FOCUSER_SAMPLES: 5,
CAMERA_SAMPLES: 3
}
try:
iniFilePath = oldIniFilePath if File.Exists(oldIniFilePath) else newIniFilePath
if File.Exists(iniFilePath):
parser.read(iniFilePath)
reader = openSectionForReading(parser, ASPS_SECTION, settings)
reader(RADIUS, validateRadius)
reader(FOCAL_LENGTH, validateFocalLength)
reader(PIXEL_SIZE, validatePixelSize)
reader(STELLARIUM_TELESCOPE_INDEX, validateStellariumTelescopeIndex)
reader(STELLARIUM_TELESCOPE_INDEX, validateStellariumAddress)
reader = openSectionForReading(parser, AF_SECTION, settings)
reader(SMALL_STEP_SIZE, validateStepSzie)
reader(SMALL_FOCUSER_SAMPLES, validateSample)
reader(LARGE_STEP_SIZE, validateStepSzie)
reader(LARGE_FOCUSER_SAMPLES, validateSample)
reader(CAMERA_SAMPLES, validateSample)
except Exception, e:
print e
showNotification('Setting file {} is not valid'.format(iniFilePath), NotificationStatus.Error)
return settings
def updateSetting(parser, section, settings, key):
parser.set(section, key, settings[key])
def openSectionForWriting(parser, section, settings):
parser.add_section(section)
return lambda n: updateSetting(parser, section, settings, n)
def writeSettings(settings):
parser = ConfigParser.ConfigParser()
oldIniFilePath = makeFilePath(OLD_SETTINGS_INI)
iniFilePath = makeFilePath(NEW_SETTINGS_INI)
iniFile = None
try:
iniFile = open(iniFilePath, 'w')
writer = openSectionForWriting(parser, ASPS_SECTION, settings)
writer(RADIUS)
writer(FOCAL_LENGTH)
writer(PIXEL_SIZE)
writer(STELLARIUM_TELESCOPE_INDEX)
writer(STELLARIUM_ADDRESS)
writer = openSectionForWriting(parser, AF_SECTION, settings)
writer(SMALL_STEP_SIZE)
writer(SMALL_FOCUSER_SAMPLES)
writer(LARGE_STEP_SIZE)
writer(LARGE_FOCUSER_SAMPLES)
writer(CAMERA_SAMPLES)
parser.write(iniFile)
if File.Exists(oldIniFilePath):
File.Delete(oldIniFilePath)
except Exception, e:
print e
showNotification('Error while writing setting file {}'.format(iniFilePath), NotificationStatus.Error)
finally:
try:
if iniFile:
iniFile.close()
except:
pass # nothing we can do here
def centerOfCurrentScreen():
currentWorkingArea = Screen.FromControl(SharpCap.MainWindow).WorkingArea
x = currentWorkingArea.Width / 2 + currentWorkingArea.X
y = currentWorkingArea.Height / 2 + currentWorkingArea.Y
return (x, y)
def updateSettingFromInput(settings, key, title, unit, validateFun):
(x, y) = centerOfCurrentScreen()
default = settings[key]
inputText = Interaction.InputBox("Input {} in {} or cancel to keep current setting ({})".format(key, unit, default), \
title, str(default), x - 100, y - 20)
settings[key] = validateFun(inputText, default)
def slewToObject(formalName, raDec):
mount = SharpCap.Mounts.SelectedMount
if mount is not None and mount.Connected:
showNotification('Slew to {} at {}'.format(formalName, raDec))
mount.SlewTo(raDec)
elif mount is not None:
showNotification('Please connect with mount {} to slew to {}'\
.format(mount.Name, formalName), NotificationStatus.Error)
else:
showNotification('No mount configured!', NotificationStatus.Error)
def plateSolve(settings, solver, frame, retarget, loop, cancellationToken):
global STELLARIUM_POS
fl = settings[FOCAL_LENGTH]
px = settings[PIXEL_SIZE]
radius = settings[RADIUS]
stellarium_telescope = settings[STELLARIUM_TELESCOPE_INDEX]
stellarium_address = settings[STELLARIUM_ADDRESS]
stellarium_conn = None
while not cancellationToken.IsCancellationRequested:
mount = SharpCap.Mounts.SelectedMount
mountConnectedBeforeSolve = mount.Connected
if mountConnectedBeforeSolve:
raDec = RADecPosition(mount.RA, mount.Dec)
timeOutSec = 60
nearPosStr = raDec.ToString()
canDoNearSearch = True
showNotification('Mount {} connected, solving using fl={} px={} pos={} radius={} retarget={}'\
.format(mount.Name, fl, px, nearPosStr, radius, retarget))
else:
try:
if stellarium_conn is None:
stellarium_conn = httplib.HTTPConnection(stellarium_address)
canDoNearSearch = STELLARIUM_POS is not None
if canDoNearSearch:
raDec = STELLARIUM_POS
nearPosStr = raDec.ToString()
showNotification('Stellarium telescope #{} connected, solving using fl={} px={} pos={} radius={} retarget={}'\
.format(stellarium_telescope, fl, px, nearPosStr, radius, retarget))
else:
showNotification('Blind-solving because no mount connected and Stellarium telescope #{} position is unknown'\
.format(stellarium_telescope), NotificationStatus.Warning)
except Exception, e:
canDoNearSearch = False
print e
showNotification('Error while connecting to Stellarium at {}'.format(stellarium_address), NotificationStatus.Error)
timeOutSec = 120
if not canDoNearSearch:
radius = 0
raDec = None
nearPosStr = 'unknown'
solver.TimeOutTime = timeOutSec
if not solver.Done:
solver.Abort = True
if raDec is None:
ra = 0
dec = 0
else:
ra = raDec.RightAscension * 15
dec = raDec.Declination
solver.PlateSolveAsync(frame, fl, px, ra, dec, radius)
while not solver.Done:
if cancellationToken.IsCancellationRequested:
solver.Abort = True
else:
Thread.Sleep(500)
try:
File.Delete(frame)
except Exception, e:
print e
if solver.ReturnCode == 1:
solvedRaDec = RADecPosition(solver.RA / 15, solver.Dec)
if cancellationToken.IsCancellationRequested:
showNotification('Plate solving successful, but cancelled', NotificationStatus.Warning)
elif mount.Connected:
showNotification('{}, sync {} from {} to {}'.format(solver.ReturnMessage, mount.Name, nearPosStr, solvedRaDec))
mount.SyncTo(solvedRaDec)
target = SharpCap.TargetName if SharpCap.TargetName is not None and SharpCap.TargetName.Length > 0 else 'Unknown'
if retarget:
if mountConnectedBeforeSolve:
slewToObject(target, raDec)
else:
showNotification('Could not re-center {} on {} as we could not obtain previous target position.'\
.format(mount.Name, target), NotificationStatus.Warning)
elif mountConnectedBeforeSolve:
showNotification('{}, but mount {} disconnected during solving, center of frame is={}'\
.format(solver.ReturnMessage, mount.Name, solvedRaDec), NotificationStatus.Warning)
elif stellarium_conn is not None:
showNotification('{}, center of frame is {}, updating Stellarium telescope'.format(solver.ReturnMessage, solvedRaDec, stellarium_telescope),\
NotificationStatus.Warning)
try:
STELLARIUM_POS = solvedRaDec
degToRad = Math.PI / 180.0
raRad = degToRad * solvedRaDec.RightAscension * 15
decRad = degToRad * solvedRaDec.Declination
cosDec = Math.Cos(decRad)
x = cosDec * Math.Cos(raRad)
y = cosDec * Math.Sin(raRad)
z = Math.Sin(decRad)
stellarium_conn.request('POST', '/api/main/view', 'j2000=[{},{},{}]'.format(x, y, z))
response = stellarium_conn.getresponse()
if response.status != 200:
showNotification('Error {} while trying to update Stellarium FoV'.format(response.status))
stellarium_conn.request('POST', '/api/stelaction/do', 'id=actionSlew_Telescope_To_Direction_{}'.format(stellarium_telescope))
response = stellarium_conn.getresponse()
if response.status != 200:
showNotification('Error {} while trying to update Stellarium telescope #{} position'.format(response.status, stellarium_telescope))
except Exception, e:
print e
showNotification('Error while trying to update Stellarium FoV and telescope #{} position'.format(stellarium_telescope))
else:
showNotification('Blind-{}, center of frame is={}'.format(solver.ReturnMessage, solvedRaDec), NotificationStatus.Warning)
elif solver.ReturnCode > 0:
showNotification('Solving returned {} {}'.format(solver.ReturnCode, solver.ReturnMessage), NotificationStatus.Error)
elif cancellationToken.IsCancellationRequested:
showNotification('Solving cancelled before completing successfuly', NotificationStatus.Warning)
else:
showNotification('Solving failed with unspecified error', NotificationStatus.Error)
# end loop
if not loop:
break
if stellarium_conn is not None:
try:
stellarium_conn.Close()
except:
pass # nothing we can do
def captureFrameAndSolve(solver, cancellationToken):
settings = readSettings()
fl = settings[FOCAL_LENGTH]
if Control.ModifierKeys == Keys.Control:
updateSettingFromInput(settings, RADIUS, 'Input plate solving radius for near search', 'degrees', validateRadius)
writeSettings(settings)
elif Control.ModifierKeys == Keys.Shift | Keys.Control:
updateSettingFromInput(settings, FOCAL_LENGTH, 'Input plate focal length of the optical system', 'mm', validateFocalLength)
writeSettings(settings)
elif SharpCap.IsCameraSelected:
cam = SharpCap.SelectedCamera
if fl > 0:
cam.AdditionalExtendedFrameData['FOCALLEN'] = fl
singleFrame = Path.Combine(newTempFilePrefix() + '.fits')
if cam.CaptureSingleFrameTo(singleFrame):
plateSolve(settings, solver, singleFrame,\
Control.ModifierKeys == Keys.Shift, Control.ModifierKeys == Keys.Alt, cancellationToken)
else:
showNotification('No camera selected, aborting plate solve.', NotificationStatus.Warning)
def removeExistingButton(name):
existingButton = SharpCap.CustomButtons.Find(lambda x: x.Name == name)
if existingButton is not None:
SharpCap.RemoveCustomButton(existingButton)
def addASPSButton():
aspsType = DotNetType.GetTypeFromProgID('AllSkyPlateSolver.PlateSolver', False)
if aspsType is None:
notInstalled = 'All Sky Plate Solver is not installed'
if DotNetEnvironment.Is64BitProcess:
fixASPS64BitRegistrationFile = Path.Combine(localSharpCapAppData(), 'asps_dllsurrogate.reg')
File.WriteAllText(fixASPS64BitRegistrationFile, FIX_ASPS_64BIT_REG_SCRIPT)
errorMsg = 'Either {} or not configured for 64-bit processes, in that case please run: {}'\
.format(notInstalled, fixASPS64BitRegistrationFile)
else:
errorMsg = notInstalled
showNotification(errorMsg, NotificationStatus.Error)
else:
asps = Activator.CreateInstance(aspsType)
print 'Loaded ASPS version: ' + asps.Version
aspsButtonName = '🎯ASPS'
removeExistingButton(aspsButtonName)
SharpCap.AddCustomButton(aspsButtonName, None, 'Plate-solve using ASPS', \
lambda: runInBackground(lambda ct: captureFrameAndSolve(asps, ct)))
def searchObjectUsingNED(target, cancellationToken):
if target is not None and target.Length > 1 and not cancellationToken.IsCancellationRequested:
conn = None
try:
conn = httplib.HTTPSConnection('ned.ipac.caltech.edu')
targetEsc = Uri.EscapeDataString(target)
conn.request('GET', '/srs/ObjectLookup?name=' + targetEsc)
response = conn.getresponse()
if response.status == 200:
decoder = json.JSONDecoder()
result = decoder.decode(response.read())
if result['StatusCode'] == 100 and result['ResultCode'] == 3:
formalName = result['Interpreted']['Name']
position = result['Preferred']['Position']
raDec = RADecPosition(position['RA'] / 15, position['Dec'])
return (formalName, raDec)
elif result['StatusCode'] == 100 and result['ResultCode'] == 1:
showNotification('Found several objects matching {}: {}'\
.format(target, ', '.join(result['Interpreted']['Aliases'])), NotificationStatus.Warning)
return None
else:
showNotification('Error while looking up {}: {}'.format(target, r.reason), NotificationStatus.Error)
return None
except Exception, e:
print e
showNotification('Error while looking up {}'.format(target), NotificationStatus.Error)
return None
finally:
if conn is not None:
try:
conn.Close()
except:
pass # nothing we can do
elif cancellationToken.IsCancellationRequested:
showNotification('Cancelled search for target', NotificationStatus.Warning)
else:
showNotification('No target defined!', NotificationStatus.Warning)
def searchObjectAndSlew(cancellationToken):
result = searchObjectUsingNED(SharpCap.TargetName, cancellationToken)
if result is not None and not cancellationToken.IsCancellationRequested:
(formalName, raDec) = result
slewToObject(formalName, raDec)
def addObjectSearchButton():
searchButtonName = '🔍NED'
removeExistingButton(searchButtonName)
SharpCap.AddCustomButton(searchButtonName, None, 'Search target object using NED', \
lambda: runInBackground(searchObjectAndSlew))
def takeFocusSample(camera, focuser, focalLen, folder, cameraSamples, filterPosition, cancellationToken):
for cameraSample in range(1, int(cameraSamples) + 1):
if cancellationToken.IsCancellationRequested:
break
position = focuser.Position
frame = "fp{}-cs{}-ms{}-fw{}.fits".format(position, cameraSample, cameraSamples, filterPosition)
camera.AdditionalExtendedFrameData['FILTERNO'] = filterPosition
camera.AdditionalExtendedFrameData['FOCALLEN'] = focalLen
camera.AdditionalExtendedFrameData['FOCUSPOS'] = position
camera.AdditionalExtendedFrameData['FOCUSCSF'] = cameraSample
camera.AdditionalExtendedFrameData['FOCUSMSF'] = cameraSamples
camera.CaptureSingleFrameTo(Path.Combine(folder, frame), False)
def autoFocus(cancellationToken):
inwardDir = Control.ModifierKeys.HasFlag(Keys.Shift)
isLarge = Control.ModifierKeys.HasFlag(Keys.Alt)
focuser = SharpCap.Focusers.SelectedFocuser
camera = SharpCap.SelectedCamera
settings = readSettings()
stepSize = settings[LARGE_STEP_SIZE if isLarge else SMALL_STEP_SIZE]
focuserSamples = settings[LARGE_FOCUSER_SAMPLES if isLarge else SMALL_FOCUSER_SAMPLES]
cameraSamples = settings[CAMERA_SAMPLES]
if focuser is None:
showNotification('No focuser selected!', NotificationStatus.Warning)
elif not focuser.Connected:
showNotification('Selected focuser is not connected!', NotificationStatus.Warning)
elif camera is None:
showNotification('No camera is selected!', NotificationStatus.Warning)
elif not camera.CanCapture:
showNotification('Selected camera can not capture!', NotificationStatus.Warning)
else:
stepDiff = -stepSize if inwardDir else stepSize
initTime = datetime.utcnow()
initTimeStamp = initTime.strftime('%Y-%m-%dT%H%M%S')
initPosition = focuser.Position
fw = SharpCap.Wheels.SelectedWheel
filterPosition = fw.Position if fw is not None and fw.Connected else 0
folder = Path.Combine(SharpCap.CaptureFolder, 'Focusing', "ts{}-fp{}".format(initTimeStamp, initPosition))
if not Directory.Exists(folder):
Directory.CreateDirectory(folder)
for focuserSample in range(1, int(focuserSamples) + 1):
if cancellationToken.IsCancellationRequested:
break
if focuserSample is not 1:
focuser.Move(focuser.Position + stepDiff)
while not cancellationToken.IsCancellationRequested and focuser.IsMoving:
Thread.Sleep(1)
takeFocusSample(camera, focuser, settings[FOCAL_LENGTH], folder, cameraSamples, filterPosition, cancellationToken)
if cancellationToken.IsCancellationRequested:
showNotification('Auto-Focusing was cancelled', NotificationStatus.Warning)
def addAutoFocusButton():
autoFocusButtonName = '🧿AF'
removeExistingButton(autoFocusButtonName)
SharpCap.AddCustomButton(autoFocusButtonName, None, 'Auto-Focus', lambda: runInBackground(autoFocus))
def stopBackgroundTasks():
global stopBackgroundTCS
if stopBackgroundTCS is not None:
stopBackgroundTCS.Cancel(False)
stopBackgroundTCS.Dispose()
stopBackgroundTCS = None
def addStopButton():
stopButtonName = '🛑Stop'
removeExistingButton(stopButtonName)
SharpCap.AddCustomButton(stopButtonName, None, 'Stop', stopBackgroundTasks)
addASPSButton()
addObjectSearchButton()
addAutoFocusButton()
addStopButton()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment