Metadata-Version: 2.4
Name: gis-distance-tool
Version: 0.1.0
Summary: GIS距离分析工具-基于Haversine公式计算大圆距离
Author-email: belywe-spec <belywe79@gmail.com>
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: GIS
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: numpy
Requires-Dist: numpy>=1.20.0; extra == "numpy"
Provides-Extra: scipy
Requires-Dist: scipy>=1.7.0; extra == "scipy"
Provides-Extra: full
Requires-Dist: numpy>=1.20.0; extra == "full"
Requires-Dist: scipy>=1.7.0; extra == "full"
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: black>=22.0.0; extra == "dev"
Requires-Dist: flake8>=5.0.0; extra == "dev"
Requires-Dist: mypy>=0.990; extra == "dev"

# GIS Distance Tool

一个基于 Haversine 公式的 GIS 距离计算工具，支持单点和批量计算。

# 安装

# 基础安装（无依赖）
pip install .

# 安装 NumPy 支持
pip install .[numpy]

