Tracklet-less Heliocentric Orbit Recovery
Warning: THOR is still in very active development.
The latest "stable" version is v1.2. The code on the main branch is currently being used to develop THOR v2.0 and is not guaranteed to be stable. We anticipate that v2.0 will be the one most useful to the community and we aim for it to be released by the end of 2023. THOR v2.0 is a complete re-write of the THOR code primarily designed to enable it for use as a service on the Asteroid, Discovery, Analysis and Mapping (ADAM) platform. The primary goal of v2.0 is to enable THOR to work at scale on many small cloud-hosted VMs. The secondary goal of v2.0 is to add changes that will work towards enabling the linking of NEOs (THOR is currently configured to work on the Main Belt and outwards).
The corresponding notebook repository can be found at: https://github.com/moeyensj/thor_notebooks
The following installation paths are available:
Anaconda
Docker
Source
thor can be downloaded directly from anaconda:
conda install -c moeyensj thor
Or, if preferred, installed into its own environment via:
conda create -n thor_py311 -c moeyensj thor python=3.11
A Docker container with the latest version of the code can be pulled using:
docker pull moeyensj/thor:latest
To run the container:
docker run -it moeyensj/thor:latest
The THOR code is installed the /projects directory, and is by default also installed in the container's Python installation. To access the code in Python:
(base) root@202110177eee:/# python
Python 3.6.9 |Anaconda, Inc.| (default, Jul 30 2019, 19:07:31)
[GCC 7.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import thor
>>>
Clone this repository using either ssh or https. Once cloned and downloaded, cd into the repository.
Install THOR and its dependencies:
pip install .
To include development dependencies (ruff, pytest, etc.):
pip install ".[dev]"
Install THOR and its dependencies:
pdm install
To include development dependencies:
pdm install -G dev
You should now be able to import THOR:
>>> import thor