Source code for astrophot.models.sky_model_object

from .model_object import ComponentModel
from ..utils.decorators import combine_docstrings

__all__ = ["SkyModel"]


[docs] @combine_docstrings class SkyModel(ComponentModel): """prototype class for any sky background model. This simply imposes that the center is a locked parameter, not involved in the fit. Also, a sky model object has no psf mode or integration mode by default since it is intended to change over much larger spatial scales than the psf or pixel size. """ _parameter_specs = {"center": {"units": "arcsec", "shape": (2,), "dynamic": False}} _model_type = "sky" usable = False def __init__(self, *args, integrate_mode="none", **kwargs): super().__init__(*args, integrate_mode=integrate_mode, **kwargs)
[docs] def initialize(self): """Initialize the sky model, this is called after the model is created and before it is used. This is where we can set the center to be a locked parameter. """ if not self.center.initialized: target_area = self.target[self.window] self.center = target_area.center super().initialize()
@property def psf_convolve(self) -> bool: return False @psf_convolve.setter def psf_convolve(self, val: bool): pass