Skip to content

Commit

Permalink
add in rob's empirical var correction for type 1 sol
Browse files Browse the repository at this point in the history
  • Loading branch information
sblunt committed Sep 6, 2024
1 parent b3ab054 commit e38fed0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions orbitize/hipparcos.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ def __init__(

self.solution_type = solution_details["isol_n"].values[0]

if self.solution_type == 1:
self.var = astrometric_solution["var"].values[0]
if self.solution_type == 1:
self.var = (10 * astrometric_solution["var"].values[0])**2 # N.B. input is different units than var from Vizier catalog!!
else:
self.var = 0

Expand Down

0 comments on commit e38fed0

Please sign in to comment.