Compiled binaries for the 6S Radiative Transfer Model exposed as package resources.
Project description
6S Binaries
This distribution provides access to compiled binaries of the 6S Radiative Transfer Model as package resources.
It does not provide a Python interface to 6S. For a Python interface, see Robin Wilson's Py6S.
Currently, this project includes binaries for 6SV1.1 and 6SV2.1. It requires Python 3.9+ and supports Linux, macOS, and Windows.
Install
Pre-compiled wheels can be installed from PyPI:
$ pip install 6s-bin
If you are using poetry, you can add this distribution as a dependency using
poetry add
:
$ poetry add 6s-bin
Installing from source
Building this distribution involves downloading, validating, and compiling the 6S source code. See build.py
for details about the build process. A Fortran 77 compiler is required to compile 6S.
Build and install from source distribution:
$ pip install --no-binary=6s-bin 6s-bin
Build and install from git:
$ pip install '6s-bin @ git+https://github.com/brianschubert/6s-bin'
Build and install from local source tree:
$ pip install .
Python Usage
Call sixs_bin.get_path(version)
to get the path to an installed 6S binary. The parameter version
is required, and must be either the string "1.1"
or "2.1"
.
>>> import sixs_bin
>>> sixs_bin.get_path("1.1")
PosixPath('<path to virtual environment>/lib/python3.X/site-packages/sixs_bin/sixsV1.1')
>>> sixs_bin.get_path("2.1")
PosixPath('<path to virtual environment>/lib/python3.X/site-packages/sixs_bin/sixsV2.1')
If you also have Py6S installed, you can call sixs_bin.make_wrapper()
to get a Py6S.SixS
instance that's configured to use the installed 6SV1.1 binary.
>>> wrapper = sixs_bin.make_wrapper()
>>> wrapper
<Py6S.sixs.SixS object at 0x...>
>>> wrapper.sixs_path
PosixPath('<path to virtual environment>/lib/python3.X/site-packages/sixs_bin/sixsV1.1')
>>> wrapper.run()
>>> wrapper.outputs.apparent_radiance
134.632
Command Line Usage
Run python3 -m sixs_bin --help
to see all available command line options.
$ python3 -m sixs_bin --help
usage: python3 -m sixs_bin [-h] [--version]
[--path {1.1,2.1} | --exec {1.1,2.1} | --test-wrapper]
6S v1.1 and 6S v2.1 binaries provided as package resources.
optional arguments:
-h, --help show this help message and exit
--version show program's version number and exit
command:
--path {1.1,2.1} Print the path to the specified 6S executable from this package's
resources.
--exec {1.1,2.1} Execute specified 6S executable in a subprocess, inheriting stdin and
stdout. This option is provided as a convenience, but its not
generally recommended. Running 6S using this option is around 5%
slower than executing the binary directly, due the overhead of
starting the Python interpreter and subprocess.
--test-wrapper Run Py6S.SixS.test on this package's 6SV1.1 executable.
To get the path to an installed 6S binary, run sixs_bin
as an executable module with the --path
flag specified. The --path
flag takes one required argument, which must be either the string 1.1
or 2.1
:
$ python3 -m sixs_bin --path 2.1
<path to virtual environment>/lib/python3.X/site-packages/sixs_bin/sixsV2.1
If you need the path to the containing directory, use dirname
. For example:
$ SIXS_DIR=$(dirname $(python3 -m sixs_bin --path 2.1))
$ echo $SIXS_DIR
<path to virtual environment>/lib/python3.X/site-packages/sixs_bin
Test
Tests can be run using pytest:
$ pytest
Some tests are included to check compatibility with Robin Wilson's Py6S wrapper. These tests will be ignored if Py6S
is not available.
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 Distributions
File details
Details for the file 6s_bin-0.11.3.tar.gz
.
File metadata
- Download URL: 6s_bin-0.11.3.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d40f0f4606221d95893a7935b89eadc3725184401c4d1641e99ff41c7402958 |
|
MD5 | e16cfc938e6ba2e653a405e2ea04c3f6 |
|
BLAKE2b-256 | 0d988d2a4fe10206cc85b04fcc7c485993ba6da82567a33981571f5cf3b5dd34 |
File details
Details for the file 6s_bin-0.11.3-py3-none-win_amd64.whl
.
File metadata
- Download URL: 6s_bin-0.11.3-py3-none-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: Python 3, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1667613f3ef16fe3a4bd30403365c8fd047871c17a28b27c46b5439055aaedd3 |
|
MD5 | 1e7e57e6771e1d7841e73fca9b4a4d97 |
|
BLAKE2b-256 | 53b9137e4fa94c0b14a3a4deda6d1b4daa5429b42ba59d9c97d99176d955426c |
File details
Details for the file 6s_bin-0.11.3-py3-none-manylinux_2_35_x86_64.whl
.
File metadata
- Download URL: 6s_bin-0.11.3-py3-none-manylinux_2_35_x86_64.whl
- Upload date:
- Size: 828.2 kB
- Tags: Python 3, manylinux: glibc 2.35+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 861abecb7e2c506e62115223512686533af7124d1174cd8bae5761cb650ad483 |
|
MD5 | 11817c1cfafa1e67a9a56fdce78e0718 |
|
BLAKE2b-256 | 89b08e6a812d56035e6f18241eecc32bc80eeb5eaaca6220532dbc09e5ec4cb1 |
File details
Details for the file 6s_bin-0.11.3-py3-none-macosx_12_0_x86_64.whl
.
File metadata
- Download URL: 6s_bin-0.11.3-py3-none-macosx_12_0_x86_64.whl
- Upload date:
- Size: 823.9 kB
- Tags: Python 3, macOS 12.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c83c6f1a5d3d7774f5c067142cc64ada1129a4af96f8bb33a7104f137f27801 |
|
MD5 | 8013f39969faaaeb3a46825a6d1c2e78 |
|
BLAKE2b-256 | c15292acb0070ec00a9bfe26ccd8a4a97a0bd250711123d51fef45db9870188a |