statistics-1.0.0

Basic Statistical Information

Outline

Schema Definitions

This type is an object with the following properties:

  • zodiacal_light

    numberRequired

    Estimated Zodiacal Light Surface Brightness (MJy/sr)

    A model estimate of the Zodiacal light contribution to the sky background in units of MegaJanskys per steradian (MJy/sr).

  • image_median

    numberRequired

    Median Image Value (DN/s)

    Median image value in units of data numbers per second (DN/s).

  • image_rms

    numberRequired

    Image Mean Absolute Deviation (DN/s)

    Mean absolute deviation of the image values in units of data numbers per second (DN/s).

  • good_pixel_fraction

    numberRequired

    Fraction of Good Pixels

    The fraction of pixels on the science portion of the detector for which the data quality bits are do not include a value corresponding to “DO_NOT_USE”.

Original Schema

%YAML 1.1
---
$schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0
id: asdf://stsci.edu/datamodels/roman/schemas/statistics-1.0.0

title: |
  Basic Statistical Information

type: object
properties:
  zodiacal_light:
    title: Estimated Zodiacal Light Surface Brightness (MJy/sr)
    description: |
      A model estimate of the Zodiacal light
      contribution to the sky background in units of MegaJanskys
      per steradian (MJy/sr).
    type: number
    sdf:
      special_processing: VALUE_REQUIRED
      source:
        origin: TBD
    archive_catalog:
      datatype: float
      destination: [WFIExposure.zodiacal_light]
  image_median:
    title: Median Image Value (DN/s)
    description: |
      Median image value in units of data numbers per
      second (DN/s).
    type: number
    sdf:
      special_processing: VALUE_REQUIRED
      source:
        origin: TBD
    archive_catalog:
      datatype: float
      destination: [WFIExposure.image_median]
  image_rms:
    title: Image Mean Absolute Deviation (DN/s)
    description: |
      Mean absolute deviation of the image values in
      units of data numbers per second (DN/s).
    type: number
    sdf:
      special_processing: VALUE_REQUIRED
      source:
        origin: TBD
    archive_catalog:
      datatype: float
      destination: [WFIExposure.image_rms]
  good_pixel_fraction:
    title: Fraction of Good Pixels
    description: |
      The fraction of pixels on the science portion of
      the detector for which the data quality bits are do not
      include a value corresponding to "DO_NOT_USE".
    type: number
    sdf:
      special_processing: VALUE_REQUIRED
      source:
        origin: TBD
    archive_catalog:
      datatype: float
      destination: [WFIExposure.good_pixel_fraction]
propertyOrder: [zodiacal_light, image_median, image_rms, good_pixel_fraction]
flowStyle: block
required: [zodiacal_light, image_median, image_rms, good_pixel_fraction]