Skip to main content

A package for calibrating wavelength data.

Project description

solar-wavelength-calibration

codecov

A package for calibrating wavelength data.

Deployment

solar-wavelength-calibration is deployed to PyPI

Development

git clone git@bitbucket.org:dkistdc/solar-wavelength-calibration.git
cd solar-wavelength-calibration
pre-commit install
pip install -e .[test]
pytest -v --cov solar-wavelength-calibration

Installation

pip install solar-wavelength-calibration

Usage

from solar_wavelength_calibration import WavelengthCalibrationFitter, WavelengthCalibrationParameters
import astropy.units as u
import numpy as np

Define the spectrum to be fit and compute the expected wavelength vector based on header information:

input_spectrum = np.arange(0.8, 1.0, 0.01)

input_wavelength_vector = np.arange(1067.5, 1076.3, 0.01) * u.nm

Set up the model parameters using values specific to your instrument:

input_parameters = WavelengthCalibrationParameters(
        crval=350.159 * u.nm,
        dispersion=4.042 * u.nm/u.pix,
        incident_light_angle=57.006 * u.deg,
        resolving_power=42500,
        opacity_factor=5.0,
        straylight_fraction=0.2,
        grating_constant=31600.0 * 1/u.m,
        doppler_velocity=-0.428 * u.km/u.s,
        order=52,
    )

Initialize the wavelength calibration fitter:

fitter = WavelengthCalibrationFitter(
        input_parameters=input_parameters,
    )

Perform the wavelength calibration fit:

fit_result = fitter(
        input_wavelength_vector=input_wavelength_vector,
        input_spectrum=input_spectrum,
    )

To access the fitted wavelength parameters (axis_num should the number for the WCS header corresponding to the wavelength axis (e.g., 1 for the first axis).):

fit_result.wavelength_parameters.to_header(axis_num=1)

Changelog

When you make any change to this repository it MUST be accompanied by a changelog file. The changelog for this repository uses the towncrier package. Entries in the changelog for the next release are added as individual files (one per change) to the changelog/ directory.

Writing a Changelog Entry

A changelog entry accompanying a change should be added to the changelog/ directory. The name of a file in this directory follows a specific template:

<PULL REQUEST NUMBER>.<TYPE>[.<COUNTER>].rst

The fields have the following meanings:

  • <PULL REQUEST NUMBER>: This is the number of the pull request, so people can jump from the changelog entry to the diff on BitBucket.

  • <TYPE>: This is the type of the change and must be one of the values described below.

  • <COUNTER>: This is an optional field, if you make more than one change of the same type you can append a counter to the subsequent changes, i.e. 100.bugfix.rst and 100.bugfix.1.rst for two bugfix changes in the same PR.

The list of possible types is defined the the towncrier section of pyproject.toml, the types are:

  • feature: This change is a new code feature.

  • bugfix: This is a change which fixes a bug.

  • doc: A documentation change.

  • removal: A deprecation or removal of public API.

  • misc: Any small change which doesn’t fit anywhere else, such as a change to the package infrastructure.

Rendering the Changelog at Release Time

When you are about to tag a release first you must run towncrier to render the changelog. The steps for this are as follows:

  • Run towncrier build –version vx.y.z using the version number you want to tag.

  • Agree to have towncrier remove the fragments.

  • Add and commit your changes.

  • Tag the release.

NOTE: If you forget to add a Changelog entry to a tagged release (either manually or automatically with towncrier) then the Bitbucket pipeline will fail. To be able to use the same tag you must delete it locally and on the remote branch:

# First, actually update the CHANGELOG and commit the update
git commit

# Delete tags
git tag -d vWHATEVER.THE.VERSION
git push --delete origin vWHATEVER.THE.VERSION

# Re-tag with the same version
git tag vWHATEVER.THE.VERSION
git push --tags origin main

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

solar_wavelength_calibration-2.0.0rc1.tar.gz (41.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file solar_wavelength_calibration-2.0.0rc1.tar.gz.

File metadata

File hashes

Hashes for solar_wavelength_calibration-2.0.0rc1.tar.gz
Algorithm Hash digest
SHA256 a422a64c1bdc282939fcaade6c3515a3a5d9e00678deca2d1860ee73775f7a9d
MD5 0353662d438f3f678cfd25f3fd04fcc5
BLAKE2b-256 c66ff8fad21424985061f50587b88e06a852061a35d6bdfa3d3a89f9893c58a4

See more details on using hashes here.

File details

Details for the file solar_wavelength_calibration-2.0.0rc1-py3-none-any.whl.

File metadata

File hashes

Hashes for solar_wavelength_calibration-2.0.0rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 cb60e90cba52ae8c7e53f574e738c06c284bc60c98a7a17937bfee75ab085ad0
MD5 84efaa072e6d6b5c51bd990bdbe28363
BLAKE2b-256 89cdfa5d0856695620b022a862f964f8fa4d1cb9ce9892a097fae57516916ebb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page