https://github.com/cta-observatory/pycorsikaio

Python reader for CORSIKA binary file format

https://github.com/cta-observatory/pycorsikaio

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (4.7%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

Python reader for CORSIKA binary file format

Basic Info
  • Host: GitHub
  • Owner: cta-observatory
  • License: mit
  • Language: Python
  • Default Branch: main
  • Homepage:
  • Size: 163 MB
Statistics
  • Stars: 9
  • Watchers: 27
  • Forks: 2
  • Open Issues: 7
  • Releases: 18
Created over 8 years ago · Last pushed over 1 year ago
Metadata Files
Readme License

README.md

pycorsikaio CI PyPI version

Python module to read the CORSIKA binary output files.

Install

Run pip install corsikaio

Features

Load CORSIKA binary particle or cherenkov data files using python and numpy.

Also supports MMCS 6.5

```python from corsikaio import CorsikaCherenkovFile import matplotlib.pyplot as plt

with CorsikaCherenkovFile('cer000001') as f: print(f.runheader['runnumber']) print(f.version)

for e in f:
    print(e.header['total_energy'])

    plt.scatter(e.photons['x'], e.photons['y'])
    plt.show()

```

Owner

  • Name: Cherenkov Telescope Array Consortium
  • Login: cta-observatory
  • Kind: organization

open-source software for the CTA Consortium.

GitHub Events

Total
  • Release event: 1
  • Watch event: 1
  • Issue comment event: 2
  • Push event: 2
  • Pull request review event: 1
  • Fork event: 1
  • Create event: 1
Last Year
  • Release event: 1
  • Watch event: 1
  • Issue comment event: 2
  • Push event: 2
  • Pull request review event: 1
  • Fork event: 1
  • Create event: 1

Issues and Pull Requests

Last synced: almost 3 years ago

All Time
  • Total issues: 17
  • Total pull requests: 19
  • Average time to close issues: 7 months
  • Average time to close pull requests: 18 days
  • Total issue authors: 9
  • Total pull request authors: 3
  • Average comments per issue: 2.41
  • Average comments per pull request: 1.63
  • Merged pull requests: 16
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 10
  • Pull requests: 14
  • Average time to close issues: about 14 hours
  • Average time to close pull requests: 11 days
  • Issue authors: 5
  • Pull request authors: 3
  • Average comments per issue: 2.1
  • Average comments per pull request: 2.14
  • Merged pull requests: 11
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • maxnoe (4)
  • HealthyPear (3)
  • The-Ludwig (2)
  • Jean1995 (2)
  • watsonjj (1)
  • relleums (1)
  • kbruegge (1)
  • VictorBarbosaMartins (1)
  • jr-lloyd (1)
  • micheledoro (1)
  • sultamehr (1)
Pull Request Authors
  • maxnoe (16)
  • HealthyPear (2)
  • VictorBarbosaMartins (1)
  • oven8 (1)
Top Labels
Issue Labels
documentation (1)
Pull Request Labels
maintenance (2) feature (1)

Dependencies

setup.py pypi
  • numpy *
.github/workflows/ci.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
  • codecov/codecov-action v1 composite
.github/workflows/deploy.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
  • pypa/gh-action-pypi-publish master composite
.github/workflows/release_drafter.yml actions
  • release-drafter/release-drafter v5 composite
pyproject.toml pypi