Skip to main content

A Python library to wrap functions and functionality for the Integrated Software for Imagers and Spectrometers (ISIS).

Project description

kalasiris

Calling ISIS programs from Python


https://img.shields.io/pypi/v/kalasiris.svg https://img.shields.io/conda/vn/conda-forge/kalasiris.svg https://travis-ci.com/rbeyer/kalasiris.svg?branch=master https://img.shields.io/circleci/project/github/conda-forge/kalasiris-feedstock/master.svg?label=noarch Documentation Status

The kalasiris library is a Python library to wrap functions and functionality for the Integrated Software for Imagers and Spectrometers (ISIS).

Features

  • Primarily a very lightweight wrapper around Python’s subprocess module to allow easy calling of ISIS programs in the shell from within Python.

  • Calling compatibility with pysis (and emulation of return types)

  • Guaranteed to work with ISIS 3.6.0+, probably works with ISIS 3+

  • Only guaranteed to work with Python 3.6.0+

ISIS

This library really only works if you already have ISIS installed and working properly. Quirks of working with where and how ISIS is loaded in your environment and how to use kalasiris with it, can be found in the documentation.

Quickstart

Are you new to Python? Or you just don’t want to mess with sophisticated Python installation procedures? Or you don’t want to commit to installing something when you don’t know if it will be worth it? Or you just want to write something ‘real quick’ in Python and need to call some ISIS programs now?

We’ve got you covered.

Just go into the kalasiris directory, and copy the kalasiris.py file into the same directory where your program is. It doesn’t depend on anything that isn’t already part of Python, so you can just use it like so:

from kalasiris import cam2map

fromcube = 'something.cub'
tocube = 'something_mapped.cub'
cam2map(fromcube, to=mapfile)

Easy! Assuming you have a something.cub file that can be map-projected.

Just grabbing this one file gets you the ability to call ISIS programs from your Python programs. There are other parts of this package that provide helper functions (like cubenormfile.writer), classes (like Histogram), and syntactic sugar (the _k functions). You don’t get them by just grabbing kalasiris.py as described above.

If you want all of the kalasiris library, but still don’t want to go through some formal installation process, you can clone this repo, and then move (or copy) the whole kalasiris/ directory (instead of just the kalasiris.py file inside of it) to your project, and then do the same thing as above, but now you can do more fun things like this:

import kalasiris as isis

img      = 'PSP_010502_2090_RED5_0.IMG'
hicube   = 'PSP_010502_2090_RED5_0.cub'
histfile = 'PSP_010502_2090_RED5_0.hist'

isis.hi2isis(img, to=hicube)

InsID = isis.getkey_k(hicub, 'Instrument', 'InstrumentId')
print(InsID)
# prints HIRISE

isis.hist(hicube, to=histfile)

h = isis.Histogram(histfile)

print(h)
# prints the hist file header info

print(h['Std Deviation'])
# prints 166.739

print(h[1])
# prints the second row of the histogram:
# HistRow(DN=3924.0, Pixels=1.0, CumulativePixels=2.0, Percent=4.88281e-05, CumulativePercent=9.76563e-05)

print(h[1][3])
print(h[1].Percent)
# both of the above print 4.88281e-05

You can see that you now have access to things like the Histogram class, the getkey_k() _k function, and much more.

Read the documentation for more: https://kalasiris.readthedocs.io

Installation

You can install kalasiris via pip or conda-forge:

To install kalasiris via pip, run this command in your terminal:

$ pip install kalasiris

Installing kalasiris from the conda-forge channel can be achieved by adding conda-forge to your channels with:

conda config --add channels conda-forge

Once the conda-forge channel has been enabled, kalasiris can be installed with:

conda install kalasiris

It is possible to list all of the versions of kalasiris available on your platform with:

conda search kalasiris --channel conda-forge

This repository layout was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

History

1.6.0 (2020-4-12)

  • Provided pysis return type and exception emulation.

  • Switched from Apache 2 to the BSD-3-Clause license.

1.5.0 (2019-11-16)

  • Did some documentation formatting.

  • Streamlined the fromlist module.

  • Put in a protection from accidentally adding a Path to a PathSet twice.

1.4.0 (2019-10-08)

  • Added the fromlist module.

1.3.0 (2019-10-06)

  • Added the cubeit_k() k_function.

  • Added TravisCI tests for ISIS 3.8.1 and 3.9.0

  • Separated tests into those that can run in-memory with mocking, and those that need the filesystem, and ISIS, etc.

1.2.0 (2019-10-04)

  • Added a documentation section to help guide a user to choose between pysis and kalasiris.

  • Improved the documentation for the version module a little.

  • Added the stats_k() k_function.

1.1.0 (2019-06-19)

  • Added the version module in order to query and retrieve ISIS version information from the ISIS system.

  • Added TravisCI tests for ISIS 3.7.1

1.0.0 (2019-04-24)

  • Removed cubenormDialect, and moved it to cubenormfile.Dialect

  • Implemented cubenormfile.writer and cubenormfile.DictWriter, to write the fixed-width file format that ISIS cubenorm will actually read.

0.2.0 (2019-03-23)

  • Implemented a new feature: the PathSet Class.

  • Enabled installation via conda-forge

  • Updated some documentation.

  • Fixed it so that the module documentation appears in readthedocs

0.1.2 (2019-03-04)

  • Discovered a bug that made us platform-dependent. Fixed.

  • Made a variety of documentation improvements.

  • Enabled and tested install via pip install

  • Enabled testing via tox

  • Enabled testing via Travis CI

0.1.1 (2019-02-22)

  • Jesse discovered that the code was incorrectly testing for executability of the $ISISROOT/bin/xml/*xml files instead of the $ISISROOT/bin/* program files, and issued a PR that fixed it.

0.1.0 (2019-02-20)

  • Initial creation finished. Time to share.

0.0.0 (2019-02-12)

  • Started project.

Version Numbering

The kalasiris library follows the Semantic Versioning 2.0.0 specification, such that released kalasiris version numbers follow this pattern: {major}.{minor}.{patch}.

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

kalasiris-1.6.0.tar.gz (42.5 kB view details)

Uploaded Source

Built Distribution

kalasiris-1.6.0-py3-none-any.whl (20.2 kB view details)

Uploaded Python 3

File details

Details for the file kalasiris-1.6.0.tar.gz.

File metadata

  • Download URL: kalasiris-1.6.0.tar.gz
  • Upload date:
  • Size: 42.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0.post20200119 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.6.7

File hashes

Hashes for kalasiris-1.6.0.tar.gz
Algorithm Hash digest
SHA256 aadb874074caaf39ba4900d2d1f0f5722fd5c7bb4b1c7dcf17cfdf79b800f1e0
MD5 76714b87663b36e9fd709a1b43a180bc
BLAKE2b-256 4a303440c9b737e7489f56848540007774b301e761ea378c01b81f16f22ec978

See more details on using hashes here.

File details

Details for the file kalasiris-1.6.0-py3-none-any.whl.

File metadata

  • Download URL: kalasiris-1.6.0-py3-none-any.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0.post20200119 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.6.7

File hashes

Hashes for kalasiris-1.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 90244c0daca1a9a4775598d01eb5c73016a04ff139cff24679138c32761f1684
MD5 b679414c71194e8a64a9c7b9350e2101
BLAKE2b-256 ee2409bb81c03ac67af47297886500419b0640704a565ff8bd8c044451159bd4

See more details on using hashes here.

Supported by

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