Skip to content

Commit

Permalink
Update location to match TN-0109
Browse files Browse the repository at this point in the history
  • Loading branch information
samaloney committed Jun 17, 2024
1 parent fc18e4f commit eb2ffb5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions stixpy/product/sources/quicklook.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,15 @@ def thermal_index(self):
@property
def flare_location(self) -> SkyCoord:
r"""
Flare location
Flare location as`
Notes
-----
From STIX-TN-0109-FHNW_I3R3 `YLOS = -Ysc = -Yint` and `ZLOS = Zsc = Xint`
"""
return SkyCoord(
self.data["loc_y"] * u.arcmin, -self.data["loc_z"] * u.arcmin, frame=STIXImaging(obstime=self.data["time"])
self.data["loc_z"] * u.arcmin, -self.data["loc_y"] * u.arcmin, frame=STIXImaging(obstime=self.data["time"])
)

@property
Expand Down

0 comments on commit eb2ffb5

Please sign in to comment.