Skip to content

Bultako/ctapipe

This branch is 2978 commits behind cta-observatory/ctapipe:main.

Folders and files

NameName
Last commit message
Last commit date
Aug 30, 2021
Nov 26, 2021
Nov 16, 2021
Aug 3, 2021
Feb 7, 2019
Nov 13, 2020
Apr 21, 2017
Jun 29, 2017
May 6, 2021
May 20, 2020
Sep 20, 2021
Jul 16, 2019
Jul 5, 2021
Jul 31, 2017
Jan 6, 2020
Nov 13, 2020
Sep 1, 2017
Nov 22, 2021
May 11, 2021
Nov 13, 2020
Nov 8, 2021
Sep 1, 2021

Repository files navigation

ctapipe Test Status codacy coverage conda doilatest

Low-level data processing pipeline software for CTA (the Cherenkov Telescope Array)

This is code is a prototype data processing framework and is under rapid development. It is not recommended for production use unless you are an expert or developer!

Citing this software

If you use this software for a publication, please cite the proper version using the following DOIs:

  • v0.11.0 : doiv011
  • v0.10.5 : doiv010
  • v0.9.1 : doiv09
  • v0.8.0 : doiv08
  • v0.7.0 : doiv07

Installation for Users

ctapipe and its dependencies may be installed using the Anaconda or Miniconda package system. We recommend creating a conda virtual environment first, to isolate the installed version and dependencies from your master environment (this is optional).

The following command will set up a conda virtual environment, add the necessary package channels, and install ctapipe specified version and its dependencies:

CTAPIPE_VER=0.11.0
wget https://raw.githubusercontent.com/cta-observatory/ctapipe/v$CTAPIPE_VER/environment.yml
conda env create -n cta -f environment.yml
conda activate cta
conda install -c conda-forge ctapipe=$CTAPIPE_VER

Note: To prevent packages you installed with pip install --user from taking precedence over the conda environment, run:

conda env config vars set PYTHONNOUSERSITE=1 -n cta

Note: this environment contains many useful packages that are not strictly requirements of ctapipe. To get only ctapipe and its direct dependencies, just do conda install -c conda-forge ctapipe[=<version>] in an environment of your choice.

Note: If you encounter long Solving environment times with conda, try using mamba (https://github.com/mamba-org/mamba) instead.

The file environment.yml can be found in this repo. Note this is pre-alpha software and is not yet stable enough for end-users (expect large API changes until the first stable 1.0 release).

Developers should follow the development install instructions found in the documentation.

About

CTA Low-level Data Processing Pipeline Prototype

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.7%
  • Other 0.3%