LSST Applications  21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
Public Member Functions | Static Public Attributes | Properties | List of all members
lsst.skymap.baseSkyMap.BaseSkyMapConfig Class Reference
Inheritance diagram for lsst.skymap.baseSkyMap.BaseSkyMapConfig:

Public Member Functions

def getPatchInnerDimensions (self)
 
def setPatchInnerDimensions (self, value)
 
def getPatchBorder (self)
 
def setPatchBorder (self, value)
 

Static Public Attributes

 tractBuilder
 
 tractOverlap
 
 pixelScale
 
 projection
 
 rotation
 

Properties

 patchInnerDimensions = property(getPatchInnerDimensions, setPatchInnerDimensions)
 
 patchBorder = property(getPatchBorder, setPatchBorder)
 

Detailed Description

Definition at line 39 of file baseSkyMap.py.

Member Function Documentation

◆ getPatchBorder()

def lsst.skymap.baseSkyMap.BaseSkyMapConfig.getPatchBorder (   self)
Get the patch border, for backwards compatibility.

This value is only used with the ``legacy`` tract builder,
and is ignored otherwise.  In general, the config should be
accessed directly with config.tractBuilder["legacy"].patchBorder.

Returns
-------
border: `int`

Definition at line 99 of file baseSkyMap.py.

99  def getPatchBorder(self):
100  """Get the patch border, for backwards compatibility.
101 
102  This value is only used with the ``legacy`` tract builder,
103  and is ignored otherwise. In general, the config should be
104  accessed directly with config.tractBuilder["legacy"].patchBorder.
105 
106  Returns
107  -------
108  border: `int`
109  """
110  return self.tractBuilder["legacy"].patchBorder
111 

◆ getPatchInnerDimensions()

def lsst.skymap.baseSkyMap.BaseSkyMapConfig.getPatchInnerDimensions (   self)
Get the patch inner dimensions, for backwards compatibility.

This value is only used with the ``legacy`` tract builder,
and is ignored otherwise.  In general, the config should be
accessed directly with config.tractBuilder["legacy"].patchInnerDimensions.

Returns
-------
innerDimensions : `list` [`int`, `int`]

Definition at line 71 of file baseSkyMap.py.

71  def getPatchInnerDimensions(self):
72  """Get the patch inner dimensions, for backwards compatibility.
73 
74  This value is only used with the ``legacy`` tract builder,
75  and is ignored otherwise. In general, the config should be
76  accessed directly with config.tractBuilder["legacy"].patchInnerDimensions.
77 
78  Returns
79  -------
80  innerDimensions : `list` [`int`, `int`]
81  """
82  return self.tractBuilder["legacy"].patchInnerDimensions
83 

◆ setPatchBorder()

def lsst.skymap.baseSkyMap.BaseSkyMapConfig.setPatchBorder (   self,
  value 
)
Set the patch border, for backwards compatibility.

This value is only used with the ``legacy`` tract builder,
and is ignored otherwise.  In general, the config should be
accessed directly with config.tractBuilder["legacy"].patchBorder.

Parameters
-------
border: `int`

Definition at line 112 of file baseSkyMap.py.

112  def setPatchBorder(self, value):
113  """Set the patch border, for backwards compatibility.
114 
115  This value is only used with the ``legacy`` tract builder,
116  and is ignored otherwise. In general, the config should be
117  accessed directly with config.tractBuilder["legacy"].patchBorder.
118 
119  Parameters
120  -------
121  border: `int`
122  """
123  self.tractBuilder["legacy"].patchBorder = value
124 

◆ setPatchInnerDimensions()

def lsst.skymap.baseSkyMap.BaseSkyMapConfig.setPatchInnerDimensions (   self,
  value 
)
Set the patch inner dimensions, for backwards compatibility.

This value is only used with the ``legacy`` tract builder,
and is ignored otherwise.  In general, the config should be
accessed directly with config.tractBuilder["legacy"].patchInnerDimensions.

Parameters
----------
value : `list` [`int`, `int`]

Definition at line 84 of file baseSkyMap.py.

84  def setPatchInnerDimensions(self, value):
85  """Set the patch inner dimensions, for backwards compatibility.
86 
87  This value is only used with the ``legacy`` tract builder,
88  and is ignored otherwise. In general, the config should be
89  accessed directly with config.tractBuilder["legacy"].patchInnerDimensions.
90 
91  Parameters
92  ----------
93  value : `list` [`int`, `int`]
94  """
95  self.tractBuilder["legacy"].patchInnerDimensions = value
96 

Member Data Documentation

◆ pixelScale

lsst.skymap.baseSkyMap.BaseSkyMapConfig.pixelScale
static
Initial value:
= pexConfig.Field(
doc="nominal pixel scale (arcsec/pixel)",
dtype=float,
default=0.333
)

Definition at line 50 of file baseSkyMap.py.

◆ projection

lsst.skymap.baseSkyMap.BaseSkyMapConfig.projection
static
Initial value:
= pexConfig.Field(
doc="one of the FITS WCS projection codes, such as:"
"- STG: stereographic projection"
"- MOL: Molleweide's projection"
"- TAN: tangent-plane projection",
dtype=str,
default="STG",
)

Definition at line 55 of file baseSkyMap.py.

◆ rotation

lsst.skymap.baseSkyMap.BaseSkyMapConfig.rotation
static
Initial value:
= pexConfig.Field(
doc="Rotation for WCS (deg)",
dtype=float,
default=0,
)

Definition at line 63 of file baseSkyMap.py.

◆ tractBuilder

lsst.skymap.baseSkyMap.BaseSkyMapConfig.tractBuilder
static
Initial value:
= tractBuilderRegistry.makeField(
doc="Algorithm for creating patches within the tract.",
default="legacy"
)

Definition at line 40 of file baseSkyMap.py.

◆ tractOverlap

lsst.skymap.baseSkyMap.BaseSkyMapConfig.tractOverlap
static
Initial value:
= pexConfig.Field(
doc="minimum overlap between adjacent sky tracts, on the sky (deg)",
dtype=float,
default=1.0,
)

Definition at line 45 of file baseSkyMap.py.

Property Documentation

◆ patchBorder

lsst.skymap.baseSkyMap.BaseSkyMapConfig.patchBorder = property(getPatchBorder, setPatchBorder)
static

Definition at line 125 of file baseSkyMap.py.

◆ patchInnerDimensions

lsst.skymap.baseSkyMap.BaseSkyMapConfig.patchInnerDimensions = property(getPatchInnerDimensions, setPatchInnerDimensions)
static

Definition at line 97 of file baseSkyMap.py.


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