Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marians/bfs-gamma-archiver
Archives gamma radiation data from Bundesamt für Strahlenschutz (bfs), Germany
https://github.com/marians/bfs-gamma-archiver
Last synced: 27 days ago
JSON representation
Archives gamma radiation data from Bundesamt für Strahlenschutz (bfs), Germany
- Host: GitHub
- URL: https://github.com/marians/bfs-gamma-archiver
- Owner: marians
- License: mit
- Created: 2014-05-13T06:19:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-13T08:39:47.000Z (over 10 years ago)
- Last Synced: 2024-04-23T17:20:09.628Z (7 months ago)
- Language: Python
- Size: 164 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
bfs-gamma-archiver
==================Little python program that archives gamma radiation data from
Bundesamt für Strahlenschutz (bfs), Germany to a MySQL database.This is helpful because the bfs provides high-res data only
for a span of 24 hours.## Quick start
1. [Contact the BFS](http://www.bfs.de/de/bfs/Kontakt) to get a
personal account for http://odlinfo.bfs.de/daten/2. On your machine, create a MySQL database and, if necessary,
a user with SELECT, INSERT and CREATE TABLE permissions.3. Copy config.dist.py to config.py
4. Edit config.py to match your MySQL settings and your
BFS credentials.5. Optional/recommended: Create a virtual environment and
activate it.```
virtualenv venv
source venv/bin/activate
```6. Install requirements:
```
pip install -r requirements.txt
```7. Run the script:
```
python download.py -v
```