Routines for converting to and from vax single-precision floating-point values
Project description
Introduction
vax
is a set of routines for converting between NumPy floating point and complex
scalars/arrays and VAX-format single- and double-precision floats.
vax
is a product of the PDS Ring-Moon Systems Node.
Installation
The vax
module is available via the rms-vax
package on PyPI and can be installed with:
pip install rms-vax
Getting Started
The vax
module provides two functions for converting from VAX-format floats:
from_vax32
: Interpret a series of bytes or NumPy array as one or more VAX single-precision floats and convert them to a NumPy float or complex scalar or array.from_vax64
: Interpret a series of bytes NumPy array as one or more VAX double-precision floats and convert them to a NumPy float or complex scalar or array.
and two functions for converting to VAX-format floats::
to_vax32
: Convert a NumPy float or complex scalar or array to a NumPy array containing the binary representation of VAX single-precision floats. Such an array can not be used for arithmetic operations since it is not in IEEE 754 format.to_vax32_bytes
: Convert a NumPy float or complex scalar or array to a Pythonbytes
object containing the binary representation of VAX single-precision floats.
Note that there are no functions to convert a NumPy array to VAX double-precision format.
Details of each function are available in the module documentation.
Basic operation is as follows:
import vax
b = vax.to_vax32([1., 2., 3.])
print(f'b = {b!r}')
ba = vax.to_vax32_bytes([1., 2., 3.])
print(f'ba = {ba!r}')
v = vax.from_vax32(b)
print(f'v = {v!r}')
va = vax.from_vax32(ba)
print(f'va = {va!r}')
yields:
b = array([2.3138e-41, 2.3318e-41, 2.3407e-41], dtype=float32)
ba = b'\x80@\x00\x00\x00A\x00\x00@A\x00\x00'
v = array([1., 2., 3.], dtype=float32)
va = array([1., 2., 3.], dtype=float32)
As NASA data products stored as VAX-format floats are often provided in JPL's VICAR file
format, you may also be interested in the rms-vicar
package
(documentation).
Contributing
Information on contributing to this package can be found in the Contributing Guide.
Links
Licensing
This code is licensed under the Apache License v2.0.
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
Built Distribution
File details
Details for the file rms_vax-1.0.4.tar.gz
.
File metadata
- Download URL: rms_vax-1.0.4.tar.gz
- Upload date:
- Size: 36.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 476c6a90fa5b2366265dba44a54968e36d35ed078d37d7ef78f7334116e9fe7c |
|
MD5 | 19e7f0f4e89de4481dff1a361b7fcabe |
|
BLAKE2b-256 | 3baeda11e4b249e748e2d865b357de72e0ba73f2f5211dde17e6caa71070a9c1 |
File details
Details for the file rms_vax-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: rms_vax-1.0.4-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 978acb0fb8f94a4ad30b823af13ebfbb2b7a2712b42af163ec806594c7399b54 |
|
MD5 | 07ee5df2c2c0cbeac38622149bbc2ca0 |
|
BLAKE2b-256 | 883423fb519644294cbc3e90aec47d9e76302ee23b057a171e0d7cf97bb24049 |