Skip to content

Commit

Permalink
🐛 Fix ellipse width and height for AL
Browse files Browse the repository at this point in the history
  • Loading branch information
Xen0Xys authored and ManonMarchand committed May 27, 2024
1 parent bc41477 commit b1b8e0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ipyaladin/region_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ def _from_ellipse_sky_region(self, region: EllipseSkyRegion) -> None:
self.infos = {
"ra": region.center.ra.deg,
"dec": region.center.dec.deg,
"a": a.deg,
"b": b.deg,
"a": a.deg / 2,
"b": b.deg / 2,
"theta": angle.deg,
}

Expand Down

0 comments on commit b1b8e0f

Please sign in to comment.