1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# Command Line Interface For StellarSolver
Allows the usage of StellarSolver. The output and parameters are quite similar to astrometry.net solve-field. In many cases it should work as drop in replacement but with better performance.
**Build**
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_CLI=ON ../ && make -j $(expr $(nproc) + 2)
** Instalation **
sudo make install
**View Help**
To learn more about the available parameters use:
stellarsolver-cli -h
**Index files**
By default `stellarsolver-cli` expects the index files in `/usr/share/astrometry` but you can also specify another path with the `--index-files` Parameter. There is a third option where you can supply the path to a astrometry.cfg file with `--config`. This is mainly for backwards compatibility with astrometry.net.
The priority in descending order is:
- `--index-files`
- `--config`
- default value
**Usage**
Basic Usage:
stellarsolver-cli --index-files <path_to_index_file> <path_to_picture>
|