Metadata-Version: 2.1
Name: gpsdistance
Version: 0.0.3
Summary: GPS distance between 2D and 3D
Home-page: https://github.com/krnick/gpsdistance
Author: SONG,JUN-WEI
Author-email: sungboss2004@gmail.com
License: MIT Licence
Keywords: distance,GPS
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# GPS Distance



## Usage

```bash
pip install gpsdistance
```

```python
import gpsdistance
```

# Two-dimensional Distance (kilometer based)

```python
dist = gpsdistance()

print(dist.get_2distance(lat1, lon1, lat2, lon2))
```


# three-dimensional Distance (kilometer based)

```python
dist = gpsdistance()

print(dist.get_3distance(lat1, lon1, alt1, lat2, lon2, alt2))
```



