From 2e1b3c441ec0452c12b033e227418332b74ba09b Mon Sep 17 00:00:00 2001 From: William Jamieson Date: Fri, 8 Dec 2023 11:40:10 -0500 Subject: [PATCH] Remove the unused variance schema --- docs/schemas.rst | 1 - src/rad/resources/schemas/variance-1.0.0.yaml | 28 ------------------- 2 files changed, 29 deletions(-) delete mode 100644 src/rad/resources/schemas/variance-1.0.0.yaml diff --git a/docs/schemas.rst b/docs/schemas.rst index bd0dfef1..df16239f 100644 --- a/docs/schemas.rst +++ b/docs/schemas.rst @@ -28,7 +28,6 @@ The RAD schemas: ramp-1.0.0 ref_file-1.0.0 target-1.0.0 - variance-1.0.0 velocity_aberration-1.0.0 visit-1.0.0 wfi_detector-1.0.0 diff --git a/src/rad/resources/schemas/variance-1.0.0.yaml b/src/rad/resources/schemas/variance-1.0.0.yaml deleted file mode 100644 index b7821e46..00000000 --- a/src/rad/resources/schemas/variance-1.0.0.yaml +++ /dev/null @@ -1,28 +0,0 @@ -%YAML 1.1 ---- -$schema: asdf://stsci.edu/datamodels/roman/schemas/rad_schema-1.0.0 -id: asdf://stsci.edu/datamodels/roman/schemas/variance-1.0.0 - -title: | - An object that is required to include the variance arrays. - - -type: object -properties: - var_poisson: - title: variance due to poisson noise - tag: tag:stsci.edu:asdf/core/ndarray-1.0.0 - datatype: float32 - ndim: 3 - var_rnoise: - title: variance due to read noise - tag: tag:stsci.edu:asdf/core/ndarray-1.0.0 - datatype: float32 - ndim: 3 - var_flat: - title: variance due to flat field - tag: tag:stsci.edu:asdf/core/ndarray-1.0.0 - datatype: float32 - ndim: 3 -required: [var_poisson, var_rnoise, var_flat] -...