This repository has been archived by the owner on Mar 4, 2021. It is now read-only.
Releases: cta-observatory/protozfitsreader
Releases · cta-observatory/protozfitsreader
'simple' interface
Simple zfits file exploration
Version information
You can now ask for protozfitsreader.__version__
.
And the README got a bit shorter.
New `ZFile` iterator, outputting `Event`s
The "highlevel" protozfitsreader from digicampipe was moved here. We propose to use this interface to read SST1M zfits files now:
from protozfitsreader import ZFile
file = ZFile(path)
print("number of events:", file.numrows)
for event in file:
# do something with event
pass
event is an instance of `protozfitsreader.Event`.
Supporting OSX
- Since V0.44 also OSX is supported for Python 3.5 and 3.6.
- Safer iteration until end-of-file.
Python 3.5 and 3.6
News:
- Testing on a 10 event example file
- Supporting Py 3.5 and 3.6
- protozfitsreader v0.43
- Verifying that uninstall really tidies up the shared object files (*.so)