Currently, the main way to get pysatIncubator is through github.
git clone https://github.com/pysat/pysatIncubator.git
Change directories into the repository folder and run the setup.py file. For a local install use the "--user" flag after "install".
cd pysatIncubator/
python setup.py install
pysatIncubator is currently in an initial development phase. Much of the API is being built off of the upcoming pysat 3.0.0 software in order to streamline the usage and test coverage. This version of pysat is planned for release later this year. Currently, you can access the develop version of this through github:
git clone https://github.com/pysat/pysat.git
cd pysat
git checkout develop-3
python setup.py install
It should be noted that this is a working branch and is subject to change.
The instrument modules are portable and designed to be run like any pysat instrument.
import pysat
from pysatIncubator.instruments import champ_star
champ = pysat.Instrument(inst_module=champ_star)
Another way to use the instruments in an external repository is to register the instruments. This only needs to be done the first time you load an instrument. Afterward, pysat will identify them using the platform
and name
keywords.
import pysat
pysat.utils.registry.register('pysatIncubator.instruments.champ_star')
champ = pysat.Instrument('champ', 'star')