Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TRASAL/frbcat
Query Fast Radio Burst catalogues
https://github.com/TRASAL/frbcat
frbs
Last synced: 2 months ago
JSON representation
Query Fast Radio Burst catalogues
- Host: GitHub
- URL: https://github.com/TRASAL/frbcat
- Owner: TRASAL
- License: mit
- Created: 2020-02-19T15:03:56.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-09-13T06:27:50.000Z (over 1 year ago)
- Last Synced: 2024-10-29T06:40:44.719Z (3 months ago)
- Topics: frbs
- Language: Python
- Homepage:
- Size: 45.9 KB
- Stars: 20
- Watchers: 3
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- frbsoft - GitHub - 55% open · ⏱️ 13.09.2023): (Catalog or Tools for Catalogues)
README
# Query the Fast Radio Burst Catalogue in Python
## Installation
```sh
pip3 install frbcat
```## Usage
Get a Pandas DataFrame of `frbcat` using
```python
from frbcat import Frbcat
df = Frbcat().df
```
Or get the chime repeaters using
```python
from frbcat import ChimeRepeaters
df = ChimeRepeaters().df
```
Or get the FRBs from the Transient Name Server, which as of Sep 2020 should have all FRBs
```python
from frbcat import TNS
tns = TNS(tns_name='my_user_name', tns_id='my_user_id')
df = tns.df
units = tns.units
```## Requirements
* pandas
* numpy
* requests## Contributing
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are appreciated.
1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request## License
Distributed under the MIT License. See `LICENSE` for more information.