Metadata-Version: 2.4
Name: pandoraref
Version: 2.0.0
Summary: 
License-File: LICENSE
Author: Christina Hedges
Author-email: christina.l.hedges@nasa.gov
Requires-Python: >=3.9,<3.13
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: appdirs (>=1.4.4,<2.0.0)
Requires-Dist: astropy (>=6.0.0)
Requires-Dist: numpy (>=1.2)
Requires-Dist: pandas (>=2.2.3,<3.0.0)
Requires-Dist: rich (>=13.9.4,<14.0.0)
Description-Content-Type: text/markdown

# Pandora Reference

This package is a repository to hold reference data for the Pandora SmallSat data processing. This repository is **only used to store the current best reference products** for Pandora data processing. Rolling back to previous versions of this package will roll back to previous versions of reference products. All processed products will contain a version number of this package, which links to specific versions of processing files. At any given version number there is a single version of each file.

Follow this README strictly when updating products.

## Updating any number of reference products

If you are going to update reference products for Pandora processing you must follow these steps.

1. Clone this repository, if you do not already have a copy
2. Ensure the repository is up to date (`git pull`)
3. Go to the specific product within `src/pandoraref/data/` that you wish to update.

- Verify that your new product is compliant with the fits file format of the original product. (Note: If you change the format (e.g. add or remove headers or extensions), you must update the minor version number of this package.)
- Ensure your new product has an incremented version number in the header, compared to the old product.
- If you are changing the file name, ensure the new product follows the file naming convention.

4. Replace the file in the `src/pandoraref/data/`.
5. Where appropriate, update the README for each file.
6. In this modules `__init__.py` file, ensure that the product name is correct in the loading class. If you have added a new file or changed a name, make sure to update the class.
7. In this modules `pyproject.py` file update the version number. Follow the rules below.
8. Update the CHANGELOG for this package.

You may update multiple data products at once, but if you make any changes to this repository you must update the version number of this package.

### Versioning

Version numbers appear in two places:

1. Each file should have its own, consistent version number. If you update a flat field, you should increment the version number in that file.
2. The package itself represents the full assembly of the reference data products. If any files within the system change, this must be incremented.

When processing Pandora data, refer to the `pandora-ref` package number that was used when processing, so that your processing is reproducible using the same exact set of reference files.

If a file has a version name `dummy` this means this is a file that is for format definition only, and is not meant to be used in practice. `dummy` files should still be in the correct format, and should have data in them so that they can be applied (e.g. a flat field of 1's, a bias value of 0) but they should not contain any real information or expectations.

Follow this convention when updating the package version number

- Updating information within this package (e.g. readmes, docstrings): update patch number
- Updating data within files, but not changing any file structure: update patch number
- Updating data and changing the file structure (e.g. adding or removing headers or extensions): update minor version number
- Adding or removing data products entirely: update major version number

## Contents

For any given version number this package will have a single file for at least these files for both Pandora detectors

- Flat field
- Bias image
- Dark image
- Gain setting
- Read noise estimates
- Bad pixel map
- Non linearity curve
- WCS parameters
- WCS distortion
- Quantum Efficiency
- Throughput
- PRF Model
- Stipe model for VISDA

For NIRDA only there will be a single file for

- Wavelength as a function of pixel position (as measured)

### Future contents

It's expected that this repository will eventually include some number of SPICE kernels, and potentially will download and store locally the most recent SPICE kernels for the mission.

## Usage

If you use this package as a dependency to process data, follow these guidelines:

**I want to have my processing be reproducible**

In this case you should set the dependency to a specific stable version of `pandora-ref`. In any product you make you should specify the exact version number of `pandora-ref` you use.

**I want to have my processing have the best possible reference data**

In this case you should set the dependency to a specific major and minor versino of `pandora-ref`, but you can enable any patch number and pull the latest patches any time you run. You should keep any eye out for major or minor package version updates. In the case that there is a major or minor version update you should pull these updates, but you may need to update your code base as the file structures may have changed or new files may have been added. In any product you make you should specify the exact version number of `pandora-ref` you use.

### Installing and importing this package

You can install this package with pip. Once you install it as a dependency you will have the reference files installed locally. You can then find each file using the reference path objects:

```python
from pandoraref import NIRDAReference
nirdaref = NIRDAReference()

nirdaref.flat_file
nirdaref.badpix_file
```

These will each return strings. You can open the files astropy's FITS module

```python
from pandoraref import NIRDAReference
from astropy.io import fits
nirdaref = NIRDAReference()

with fits.open(nirdaref.flat_file) as hdulist:
    print(hdulist[0].header['VERSION'])
```

### Function naming

In this package (and all packages) names matter. We follow this naming convention wherever we can:

- Lower case noun is a property, e.g. `flat_file` is a property which is a string
- Lower case verb and then noun is a function e.g. `get_flat_file` would be a function

Certain verbs imply actions:

- `get_` implies retrieve and return an object. e.g. `get_wcs` will retrieve a WCS from storage and return that object.
- `create_` implies it will generatea new object, rather than `get`ting one from file e.g. `create_wcs` will create a new WCS solution from scratch

## What should be stored in this package?

This package is **not** the place to put codes, processes or data that **generates** reference data products.

This package is to

1. Store current best estimates of reference products
2. Hold functions to **convert** between data between other formats and the expected RDP format. (e.g. if LLNL provided a distortion file as a csv it is allowable to store that CSV and have a function to **convert** it to an expected fits file.)
3. Hold functions to return versions of RDPs under specific conditions. For example, a function to give the WCS RDP given an expected pointing.

Do not store calibration data or any generation scripts here.

## Expected Header Keywords

The following header keywords are expected at minimum inside files submitted to this package in the primary header:

- `TELESCOP`: This should be the telescope, which should always be NASA Pandora. Example:  "'NASA Pandora'       / telescope"
- `CAMERAID`: This is the ID of the instrument as used in the flight software, either the Panda PCO camera or the Near Infra Red camera. Example:  "'PcoCam  '           / ID of camera used in acquisition"
- `INSTRMNT`: This is the name of the instrument. Example:  "'VISDA   '           / instrument"
- `CREATOR`: This should be the software that created the file. Example:  "'Pandora DPC Software' / Software that created this file"
- `AUTHOR`: This should be the human or group that made the file. Example:  "'Christina Hedges'   / Person or group that created this file"
- `DATASRC`: This should show where the data that made the product has come from. This could be `DUMMY`, `THEORETICAL`, `SIMULATION`, `VENDOR`, `TVAC`, `COMMISSIONING`, `SCIENCE` or another relevant option.
- `VERSION`: This is the version number you pick for this file. This could be any string, and does not have to follow on from previous versions. Example:  "'dummy   '           / creator software version"
- `DATE`: This should be the ISOT date that the file was created. Example:  "'2025-11-14T15:53:06.035' / creation date"

# Files included

Below is a table of the contents of `pandoraref`. This table is updated automatically.

<!-- BEGIN AUTO TABLE -->

| Instrument   | File Name                   | File Version   | File Source   | File Creator         | File Author      | File Date   | File Size   |
|:-------------|:----------------------------|:---------------|:--------------|:---------------------|:-----------------|:------------|:------------|
| NIRDA        | bad_pixel_file              | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 98.44 KB    |
| NIRDA        | bias_file                   | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 90.00 KB    |
| NIRDA        | dark_file                   | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 2.81 KB     |
| NIRDA        | flat_file                   | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 165.94 KB   |
| NIRDA        | gain_file                   | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 2.81 KB     |
| NIRDA        | nonlin_file                 | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 8.44 KB     |
| NIRDA        | pixel_position_file         | Synthetic_V1   | SIMULATION    | Pandora DPC Software | Christina Hedges | 2025-11-14  | 30.94 KB    |
| NIRDA        | prf_file                    | Synthetic_V1   | SIMULATION    | Pandora DPC Software | Christina Hedges | 2025-11-14  | 2.52 MB     |
| NIRDA        | qe_file                     | v0.1.0         | THEORETICAL   | Pandora DPC Software | Christina Hedges | 2026-01-20  | 36.56 KB    |
| NIRDA        | readnoise_file              | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 2.81 KB     |
| NIRDA        | sip_file                    | v0.1.0         | SIMULATION    | Pandora DPC Software | Christina Hedges | 2026-01-20  | 5.62 KB     |
| NIRDA        | spectrum_normalization_file | dummy          | -             | Pandora DPC          | -                | 2025-12-02  | 19.69 KB    |
| NIRDA        | throughput_file             | v0.1.0         | THEORETICAL   | Pandora DPC Software | Christina Hedges | 2025-11-14  | 95.62 KB    |
| NIRDA        | wcs_file                    | v0.1.0         | SIMULATION    | Pandora DPC Software | Christina Hedges | 2026-01-20  | 2.81 KB     |
| VISDA        | bad_pixel_file              | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 98.44 KB    |
| VISDA        | bias_0d_file                | 1.0            | COMMISSIONING | Pandora DPC          | Rae Holcomb      | 2026-03-09  | 8.44 KB     |
| VISDA        | bias_file                   | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 90.00 KB    |
| VISDA        | dark_file                   | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 2.81 KB     |
| VISDA        | flat_file                   | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 165.94 KB   |
| VISDA        | gain_file                   | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 2.81 KB     |
| VISDA        | nonlin_file                 | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 8.44 KB     |
| VISDA        | prf_file                    | Synthetic_V1   | SIMULATION    | Pandora DPC Software | Christina Hedges | 2025-11-14  | 1.67 MB     |
| VISDA        | qe_file                     | v0.1.0         | VENDOR        | Pandora DPC Software | Christina Hedges | 2025-11-14  | 8.44 KB     |
| VISDA        | readnoise_file              | dummy          | DUMMY         | Pandora DPC Software | Christina Hedges | 2026-01-20  | 2.81 KB     |
| VISDA        | sip_file                    | v0.1.0         | SIMULATION    | Pandora DPC Software | Christina Hedges | 2026-01-20  | 5.62 KB     |
| VISDA        | stripes_file                | v0.1.0         | SCIENCE       | Pandora DPC Software | Christina Hedges | 2026-04-20  | 8.44 KB     |
| VISDA        | throughput_file             | v0.1.0         | THEORETICAL   | Pandora DPC Software | Christina Hedges | 2025-11-14  | 95.62 KB    |
| VISDA        | wcs_file                    | v0.1.0         | SIMULATION    | Pandora DPC Software | Christina Hedges | 2026-01-20  | 2.81 KB     |

<!-- END AUTO TABLE -->
