Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lcav/pylocus
Localization package using distance and/or angle measurements
https://github.com/lcav/pylocus
Last synced: about 1 month ago
JSON representation
Localization package using distance and/or angle measurements
- Host: GitHub
- URL: https://github.com/lcav/pylocus
- Owner: LCAV
- License: bsd-2-clause
- Created: 2017-08-15T11:51:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-03-11T11:46:08.000Z (almost 3 years ago)
- Last Synced: 2024-11-07T15:52:38.429Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 5.89 MB
- Stars: 16
- Watchers: 7
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Welcome to pylocus, a python localization package
[![Build Status](https://travis-ci.org/LCAV/pylocus.svg?branch=master)](https://travis-ci.org/LCAV/pylocus)
[![Documentation Status](https://readthedocs.org/projects/pylocus/badge/?version=latest)](https://pylocus.readthedocs.io/en/latest/?badge=latest)This package contains Multidimensional Scaling, lateration, and other algorithms useful for localization using distances and/or angles.
## Local install
Since this package is in an early development phase, this is the recommended install method.
The latest updates will not always be immediately available on pip, they will be bundled
in the next package release. By keeping the local git repository up-to-date and redoing the local install
regularly, you can be sure to be using the latest version.To perform a local install on your computer, run from this folder level (where setup.py is located):
```bash
pip install -e .
```
This installs the package using symbolic links, avoiding the need for a reinstall whenever the source code is changed.
If you use conda, then```bash
conda develop .
```does the same trick.
## Install
To install from [pip](https://pypi.python.org/pypi/pylocus), simply run :
```bash
pip install pylocus
```## Documentation
This is a constantly growing package and documentation is work-in-progress. The current version can be found on [ReadTheDocs](http://pylocus.readthedocs.org/en/latest/)
See the tutorials folder for some exmaple scripts on how to use this package. More scripts will be added soon.