Skip to content

Commit

Permalink
Change lat/lon names in Projective back to Ty/Tx.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanRyanIrish committed Dec 3, 2024
1 parent 36bb847 commit bf574c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions xrayvision/coordinates/frames.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ class Projective(SunPyBaseCoordinateFrame):
rsun = astropy.coordinates.QuantityAttribute(default=_RSUN, unit=u.km)
frame_specific_representation_info = {
astropy.coordinates.SphericalRepresentation: [
astropy.coordinates.RepresentationMapping("lon", u.arcsec),
astropy.coordinates.RepresentationMapping("lat", u.arcsec),
astropy.coordinates.RepresentationMapping("lon", "Tx", u.arcsec),
astropy.coordinates.RepresentationMapping("lat", "Ty", u.arcsec),
astropy.coordinates.RepresentationMapping("distance", "distance"),
],
astropy.coordinates.UnitSphericalRepresentation: [
astropy.coordinates.RepresentationMapping("lon", u.arcsec),
astropy.coordinates.RepresentationMapping("lat", u.arcsec),
astropy.coordinates.RepresentationMapping("lon", "Tx", u.arcsec),
astropy.coordinates.RepresentationMapping("lat", "Ty", u.arcsec),
],
}

Expand Down

0 comments on commit bf574c5

Please sign in to comment.