Routines for converting to and from VICAR image files
Project description
PyPI Release | Test Status | Code Coverage |
---|---|---|
rms-vicar
PDS Ring-Moon Systems Node, SETI Institute
Supported versions: Python >= 3.7
Classes and methods to read and write JPL's VICAR-format data files:
VicarLabel class for reading, writing, and parsing of VICAR labels.
VicarImage class for handling VICAR image (and other) data files.
VicarError extension of class ValueError to contain exceptions.
This module supports the definition of the VICAR file format as found here:
https://www-mipl.jpl.nasa.gov/external/VICAR_file_fmt.pdf
To read a VICAR image file:
vic = VicarImage("path/to/file")
vic.array = the 3-D data array converted to native format.
vic.array2d = same as above, but with leading dimension (typically, bands) stripped.
vic.prefix = the array prefix bytes as a 3-D array of unsigned bytes.
vic.prefix2d = same as above, but with the leading dimension stripped.
vic.binheader = the binary header as a bytes object; use vic.binheader_array() to
= extract information.
vic.label = the internal VicarLabel object that manages the VICAR label
information, if direct access is needed.
VICAR parameter values can be extracted from the label using dictionary-like syntax:
len(vic) = the number of parameters in the VICAR label.
vic['LBLSIZE'] = the value of the LBLSIZE parameter (an integer).
vic[0] = the value of the first parameter.
vic[-1] = the value of the last parameter.
vic['LBLSIZE',-1] = the value of the last occurrence of the LBLSIZE parameter.
vic.get(('LBLSIZE',2), 99) = the value of the third occurrence of the LBLSIZE
parameter, or 99 if there are fewer than 3 occurrences.
vic.arg('LBLSIZE') = the numeric index of "LBLSIZE" among the VICAR parameters.
You can also use dictionary-like syntax to modify and insert header values:
vic['SOLDIST'] = 1.e9 # set SOLDICT to this value.
del vic['SOLDIST',0] # Remove the first occurrence of SOLDIST from the label.
vic['LBLSIZE+'] = 2000 # insert a new LBLSIZE parameter instead of modifying an
# existing one.
Note that certain required VICAR parameters contain structural information about the file; these cannot generally be modified directly.
Numerous methods are available to iterate over the VICAR label parameters:
for (name,value) in vic.items(): ...
for key in vic.keys(): ...
for name in vic.names(): ...
for value in vic.values(): ...
Iterators can take a regular expression as input to restrict the items returned:
for value in vic.values(r'LAB\d\d'): ...
Use str(vic)
to get the VICAR label content represented as a string.
Here are the steps to create and write a VICAR image file:
vic = VicarImage()
vic.array = array
vic.prefix = prefix
vic.binheader = binheader
vic['NOTES'] = ['add as many more VICAR parameters', 'as you wish']
vic.write_file("path/to/file")
Project details
Release history Release notifications | RSS feed
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
Hashes for rms_vicar-1.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0754650d451816e810603d0294f5dacdfc0497b2f75b276a551b3834853f2cce |
|
MD5 | a039595b6432364733864cc7aafac06a |
|
BLAKE2b-256 | 4b23f6ad190f403837b36eaf6070c129ccc1af80eef7cf7b2cf4d68003c16863 |