From eb2ffb50090ebe754d1a1edcf7cd694462c260d4 Mon Sep 17 00:00:00 2001 From: Shane Maloney Date: Mon, 17 Jun 2024 12:01:31 +0100 Subject: [PATCH] Update location to match TN-0109 --- stixpy/product/sources/quicklook.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/stixpy/product/sources/quicklook.py b/stixpy/product/sources/quicklook.py index a1e3896..b547394 100644 --- a/stixpy/product/sources/quicklook.py +++ b/stixpy/product/sources/quicklook.py @@ -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