LSST Applications g034a557a3c+0df69e75ff,g0afe43252f+b86e4b8053,g11f7dcd041+017865fdd3,g1cd03abf6b+1c8dc8730a,g1ce3e0751c+f991eae79d,g28da252d5a+a136f03385,g2bbee38e9b+b6588ad223,g2bc492864f+b6588ad223,g2cdde0e794+8523d0dbb4,g347aa1857d+b6588ad223,g35bb328faa+b86e4b8053,g3a166c0a6a+b6588ad223,g461a3dce89+b86e4b8053,g52b1c1532d+b86e4b8053,g6233c72cae+da9c58a417,g7f3b0d46df+ad13c1b82d,g80478fca09+f29c5d6c70,g858d7b2824+4fc997592f,g8cd86fa7b1+5f14beadf5,g965a9036f2+4fc997592f,g979bb04a14+87f76c17e6,g9ddcbc5298+f24b38b85a,gae0086650b+b86e4b8053,gbb886bcc26+77117948e7,gc28159a63d+b6588ad223,gc30aee3386+a2f0f6cab9,gcaf7e4fdec+4fc997592f,gcd45df26be+4fc997592f,gcdd4ae20e8+0acf6430b1,gcf0d15dbbd+0acf6430b1,gdaeeff99f8+006e14e809,gdbce86181e+467b805b48,ge3d4d395c2+224150c836,ge5f7162a3a+1d9667e7ad,ge6cb8fbbf7+0992c83eee,ge79ae78c31+b6588ad223,gf048a9a2f4+41d6ddaca1,gf0baf85859+b4cca3d10f,w.2024.30
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Protected Attributes | List of all members
lsst.display.astrowidgets.astrowidgets.WcsAdaptorForGinga Class Reference
Inheritance diagram for lsst.display.astrowidgets.astrowidgets.WcsAdaptorForGinga:
lsst.display.astrowidgets.astrowidgets.AstropyWCS

Public Member Functions

 __init__ (self, wcs)
 
 pixtoradec (self, idxs, coords='data')
 
 pixtosystem (self, idxs, system=None, coords='data')
 
 radectopix (self, ra_deg, dec_deg, coords='data', naxispath=None)
 
 all_pix2world (self, *args, **kwargs)
 
 datapt_to_wcspt (self, *args)
 
 wcspt_to_datapt (self, *args)
 

Protected Attributes

 _wcs
 

Detailed Description

A class to adapt the LSST Wcs class for Ginga.

This was taken largely from the afw.display.ginga package.

Parameters
----------
wcs : `ginga.util.wcsmod.wcs_astropy`
    WCS to adapt for Ginga.

Definition at line 501 of file astrowidgets.py.

Constructor & Destructor Documentation

◆ __init__()

lsst.display.astrowidgets.astrowidgets.WcsAdaptorForGinga.__init__ ( self,
wcs )

Definition at line 511 of file astrowidgets.py.

511 def __init__(self, wcs):
512 self._wcs = wcs
513

Member Function Documentation

◆ all_pix2world()

lsst.display.astrowidgets.astrowidgets.WcsAdaptorForGinga.all_pix2world ( self,
* args,
** kwargs )

Definition at line 576 of file astrowidgets.py.

576 def all_pix2world(self, *args, **kwargs):
577 out = []
578 print(f"{args}")
579 for pos in args[0]:
580 r, d = self.pixtoradec(pos)
581 out.append([r, d])
582 return tuple(out)
583

◆ datapt_to_wcspt()

lsst.display.astrowidgets.astrowidgets.WcsAdaptorForGinga.datapt_to_wcspt ( self,
* args )

Definition at line 584 of file astrowidgets.py.

584 def datapt_to_wcspt(self, *args):
585 return (0.0, 0.0)
586

◆ pixtoradec()

lsst.display.astrowidgets.astrowidgets.WcsAdaptorForGinga.pixtoradec ( self,
idxs,
coords = 'data' )
Return (ra, dec) in degrees given a position in pixels.

Parameters
----------
idxs : `list` [`tuple` [`float`, `float`]]
    Pixel locations to convert.
coords  : `str`, optional
    This parameter is ignored.
Returns
-------
ra : `list`
    RA position in degrees.
dec : `list`
    DEC position in degrees.

Definition at line 514 of file astrowidgets.py.

514 def pixtoradec(self, idxs, coords='data'):
515 """Return (ra, dec) in degrees given a position in pixels.
516
517 Parameters
518 ----------
519 idxs : `list` [`tuple` [`float`, `float`]]
520 Pixel locations to convert.
521 coords : `str`, optional
522 This parameter is ignored.
523 Returns
524 -------
525 ra : `list`
526 RA position in degrees.
527 dec : `list`
528 DEC position in degrees.
529 """
530 ra, dec = self._wcs.pixelToSky(*idxs)
531
532 return ra.asDegrees(), dec.asDegrees()
533

◆ pixtosystem()

lsst.display.astrowidgets.astrowidgets.WcsAdaptorForGinga.pixtosystem ( self,
idxs,
system = None,
coords = 'data' )
Return (ra, dec) in degrees given a position in pixels.

Parameters
----------
idxs : `list` [`tuple` [`float`, `float`]]
    Pixel locations to convert.
system : `str`, optional
    This parameter is ignored.
coords : `str`, optional
    This parameter is ignored.

Returns
-------
ra : `list`
    RA position in degrees.
dec : `list`
    DEC position in degrees.

Definition at line 534 of file astrowidgets.py.

534 def pixtosystem(self, idxs, system=None, coords='data'):
535 """Return (ra, dec) in degrees given a position in pixels.
536
537 Parameters
538 ----------
539 idxs : `list` [`tuple` [`float`, `float`]]
540 Pixel locations to convert.
541 system : `str`, optional
542 This parameter is ignored.
543 coords : `str`, optional
544 This parameter is ignored.
545
546 Returns
547 -------
548 ra : `list`
549 RA position in degrees.
550 dec : `list`
551 DEC position in degrees.
552 """
553 return self.pixtoradec(idxs, coords=coords)
554

◆ radectopix()

lsst.display.astrowidgets.astrowidgets.WcsAdaptorForGinga.radectopix ( self,
ra_deg,
dec_deg,
coords = 'data',
naxispath = None )
Return (x, y) in pixels given (ra, dec) in degrees

Parameters
----------
ra_deg : `list` [`float`]
    RA position in degrees.
dec_deg : `list` [`float`]
    DEC position in degrees.
coords : `str`, optional
    This parameter is ignored.
naxispath : `str`, optional
    This parameter is ignored.

Returns
-------
out : `tuple` [`list` [`float, `float`]]
    Image coordates for input positions.

Definition at line 555 of file astrowidgets.py.

555 def radectopix(self, ra_deg, dec_deg, coords='data', naxispath=None):
556 """Return (x, y) in pixels given (ra, dec) in degrees
557
558 Parameters
559 ----------
560 ra_deg : `list` [`float`]
561 RA position in degrees.
562 dec_deg : `list` [`float`]
563 DEC position in degrees.
564 coords : `str`, optional
565 This parameter is ignored.
566 naxispath : `str`, optional
567 This parameter is ignored.
568
569 Returns
570 -------
571 out : `tuple` [`list` [`float, `float`]]
572 Image coordates for input positions.
573 """
574 return self._wcs.skyToPixel(ra_deg*afwGeom.degrees, dec_deg*afwGeom.degrees)
575

◆ wcspt_to_datapt()

lsst.display.astrowidgets.astrowidgets.WcsAdaptorForGinga.wcspt_to_datapt ( self,
* args )

Definition at line 587 of file astrowidgets.py.

587 def wcspt_to_datapt(self, *args):
588 return (0.0, 0.0)

Member Data Documentation

◆ _wcs

lsst.display.astrowidgets.astrowidgets.WcsAdaptorForGinga._wcs
protected

Definition at line 512 of file astrowidgets.py.


The documentation for this class was generated from the following file: