Metadata-Version: 2.1
Name: pydistance
Version: 0.0.1
Summary: Package for plotting the closest point for a given set of coordinates
Home-page: https://github.com/dang3r/pydistance
Author: Daniel Cardoza
Author-email: dan@danielcardoza.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.4.0
Description-Content-Type: text/markdown
Requires-Dist: geopy
Requires-Dist: pytz
Requires-Dist: gmplot
Requires-Dist: click
Requires-Dist: googlemaps


Pydistance

> A library for visualizing the closest point to a set of points.

![Example Image](https://github.com/dang3r/pydistance/blob/master/example.png?raw=true)

## Getting started

Install the Python3 package

```shell
pip3 install pydistance
```

## Usage

```
$ pyd --help
Usage: pyd [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  distance  Dumb command to test the distance_matrix api
  enrich    Enrich the locations with lat, lng information
  plot      Plot all employee addresses and the best determined office...
```

First, location information must be augmented with the latitude and longitude of each. Create a file `addrs.txt` and enrich it usinfg
`pyd enrich`.

To plot the closest point, use `pyd plot`.

## License

MIT

