pygreatcircledistance


Namepygreatcircledistance JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/shpaker/pyGreatCircleDistance
SummaryCalculate the distance between two GPS coordinates in meters
upload_time2022-12-08 21:52:21
maintainer
docs_urlNone
authorAleksandr Shpak
requires_python>=3.7.2,<4.0.0
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pyGreatCircleDistance
=====================

Calculate the distance between two GPS coordinates in meters

[![PyPI](https://img.shields.io/pypi/v/pyGreatCircleDistance.svg)](https://pypi.python.org/pypi/pyGreatCircleDistance)
[![PyPI](https://img.shields.io/pypi/dm/pyGreatCircleDistance.svg)](https://pypi.python.org/pypi/pyGreatCircleDistance)
[![PyPI](https://img.shields.io/badge/code%20style-black-000000.svg)](href="https://github.com/psf/black)

Installation
------------

```
pip install pyGreatCircleDistance -U
```

Example
-------

```python
from pygreatcircledistance import vincenty_formula

dist = vincenty_formula((77.1539, -120.398), (77.1804, 129.55))
print(dist)  # 2332668.5392066096 meters
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/shpaker/pyGreatCircleDistance",
    "name": "pygreatcircledistance",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7.2,<4.0.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "Aleksandr Shpak",
    "author_email": "shpaker@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/1f/19/73b70636db99ab3c9878888699fef5d9f8c5bb3754254d0c74887ce48323/pygreatcircledistance-0.1.0.tar.gz",
    "platform": null,
    "description": "pyGreatCircleDistance\n=====================\n\nCalculate the distance between two GPS coordinates in meters\n\n[![PyPI](https://img.shields.io/pypi/v/pyGreatCircleDistance.svg)](https://pypi.python.org/pypi/pyGreatCircleDistance)\n[![PyPI](https://img.shields.io/pypi/dm/pyGreatCircleDistance.svg)](https://pypi.python.org/pypi/pyGreatCircleDistance)\n[![PyPI](https://img.shields.io/badge/code%20style-black-000000.svg)](href=\"https://github.com/psf/black)\n\nInstallation\n------------\n\n```\npip install pyGreatCircleDistance -U\n```\n\nExample\n-------\n\n```python\nfrom pygreatcircledistance import vincenty_formula\n\ndist = vincenty_formula((77.1539, -120.398), (77.1804, 129.55))\nprint(dist)  # 2332668.5392066096 meters\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Calculate the distance between two GPS coordinates in meters",
    "version": "0.1.0",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "f6fb94763d6c53b9f48a31525bf38996",
                "sha256": "e02ce8fe9db01fa7addae79aae9590053c3776a7402ac8bd74efa28d39f85e23"
            },
            "downloads": -1,
            "filename": "pygreatcircledistance-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f6fb94763d6c53b9f48a31525bf38996",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7.2,<4.0.0",
            "size": 2069,
            "upload_time": "2022-12-08T21:52:19",
            "upload_time_iso_8601": "2022-12-08T21:52:19.927125Z",
            "url": "https://files.pythonhosted.org/packages/ce/07/f6c52405cfa9359c4daf50739514f558bc0421b42269763939271282c26b/pygreatcircledistance-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6adce2df6e585ec160149e8c1edbfa3c",
                "sha256": "10d85152b793f1dd8773d8c6b3d8d10412bf2c975079a9a42e4a849f05b046a0"
            },
            "downloads": -1,
            "filename": "pygreatcircledistance-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "6adce2df6e585ec160149e8c1edbfa3c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7.2,<4.0.0",
            "size": 2352,
            "upload_time": "2022-12-08T21:52:21",
            "upload_time_iso_8601": "2022-12-08T21:52:21.841263Z",
            "url": "https://files.pythonhosted.org/packages/1f/19/73b70636db99ab3c9878888699fef5d9f8c5bb3754254d0c74887ce48323/pygreatcircledistance-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-08 21:52:21",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "shpaker",
    "github_project": "pyGreatCircleDistance",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pygreatcircledistance"
}
        
Elapsed time: 0.01582s