stvid/README.md

162 lines
3.3 KiB
Markdown
Raw Normal View History

2022-07-31 20:45:07 -06:00
# stvid
Fork/clone of cbassa's `stvid`.
2022-07-31 20:59:32 -06:00
# Installation
Debian. Install package dependencies:
```
2022-07-31 21:05:19 -06:00
sudo apt install python3-virtualenv python3-pip python3-dev \
2022-07-31 21:27:08 -06:00
source-extractor astrometry.net \
libeigen3-dev giza-dev
2022-07-31 20:59:32 -06:00
```
2022-07-31 22:23:13 -06:00
Perhaps need some of the `astrometry.net` data files:
```
sudo apt install \
astrometry-data-tycho2 astrometry-data-tycho2-07 \
astrometry-data-tycho2-08 astrometry-data-tycho2-09 \
astrometry-data-tycho2-10-19
```
2022-07-31 20:59:32 -06:00
```
git clone https://spacecruft.org/spacecruft/stvid
# Or use upstream:
git clone https://github.com/cbassa/stvid
```
Optionally, set up python virtual environment:
```
cd stvid
virtualenv -p python3 env
source env/bin/activate
pip install --upgrade pip
```
2022-08-07 14:16:33 -06:00
Install dependencies. Numpy needs to be installed first, or the
install fails.
2022-07-31 20:59:32 -06:00
```
pip install --upgrade numpy
pip install --upgrade -r requirements.txt
2022-07-31 20:59:32 -06:00
```
2022-07-31 21:14:34 -06:00
Debian in bug #941466 changed the name of the `sextractor` dependency to
`source-extractor`, so a symlink is needed for now:
```
sudo ln -s /usr/bin/source-extractor /usr/local/bin/sextractor
```
2022-07-31 21:27:08 -06:00
Install hough3d-code dependency:
```
2022-08-07 14:16:33 -06:00
cd ../
2022-07-31 21:27:08 -06:00
git clone https://gitlab.com/pierros/hough3d-code
cd hough3d-code
make all
sudo cp -p hough3dlines /usr/local/bin/hough3dlines
```
# Configure
Thusly...
```
2022-08-07 14:16:33 -06:00
cd stvid/
2022-07-31 21:27:08 -06:00
cp -p configuration.ini-dist configuration.ini
# Edit
2022-07-31 21:54:24 -06:00
# Note for fields st-username and st-password, *don't* use quotes.
# Set:
2022-07-31 21:27:08 -06:00
vi configuration.ini
```
2022-07-31 21:14:34 -06:00
2022-07-31 21:54:24 -06:00
Edit various `configuration.ini` fields:
```
# For example:
observer_cospar = 9999 # COSPAR number of observer's site
observer_name = Jeff Moe # Name of observer
observer_lat = 40.568912 # Latitude of location in decimal degrees
observer_lon = -105.225852 # Longitude of location in decimal degrees
observer_height = 1860 # Elevation of location in meters
2022-07-31 22:23:13 -06:00
observations_path = ./data/obs # Path for raw acquisitions
tle_path = ./data/tle # Path where TLEs are stored (and updated)
2022-07-31 21:54:24 -06:00
results_path = ./data/results # Path for results of processed obs
st-username = foo
st-password = bar
# Path to source-extractor
sex_config = /usr/bin/source-extractor
```
Store downloads here:
```
2022-07-31 22:23:13 -06:00
mkdir -p ./data/obs ./data/tle ./data/results
2022-07-31 21:54:24 -06:00
```
2022-07-31 22:35:49 -06:00
Set `astrometry.net` to run in parallel, assuming you have enough RAM:
(This doesn't appear to work? Breaks?).
```
sudo vim /etc/astrometry.cfg
# Uncomment:
inparallel
```
2022-07-31 21:54:24 -06:00
2022-07-31 20:59:32 -06:00
# Usage
Enter `virtualenv`, if used:
```
cd stvid/
source env/bin/activate
```
2022-07-31 21:54:24 -06:00
Get the latest TLEs:
```
./update_tle.py
```
2022-07-31 20:59:32 -06:00
2022-07-31 22:09:59 -06:00
# Fixed
2022-07-31 21:59:34 -06:00
When running `acquire.py` on `amd64` architecture it gives this error:
```
OSError: libbcm_host.so: cannot open shared object file: No such file or directory
```
The `libbcm_host.so` is a (non-libre?) firmware file that is part of Raspberry Pi.
https://github.com/raspberrypi/firmware/blob/master/opt/vc/lib/libbcm_host.so
2022-07-31 22:02:28 -06:00
That error comes from installing `picamerax` on `amd64`, which was added to
`requirements.txt`, but should really just be when on Raspberry Pi.
```
env/lib/python3.10/site-packages/picamerax/bcm_host.py:_lib = ct.CDLL('libbcm_host.so')
```
2022-07-31 22:09:59 -06:00
For now, just import the library that calls for that binary if the
Pi camera is used. No need to call it (and crash) if CV2 is used on non-Pi.
2022-07-31 21:59:34 -06:00
2022-07-31 20:45:07 -06:00
# Upstream
See `README-upstream.md`.
`stvid`:
* https://github.com/cbassa/stvid
2022-08-07 14:16:33 -06:00
© 2018-2022 Cees Bassa
2022-07-31 20:45:07 -06:00
# License
Same as upstream license, GPLv3.
2022-07-31 22:35:49 -06:00
© 2022, Jeff Moe