Metadata-Version: 2.1
Name: trajectory_processing
Version: 0.4.6
Summary: A package for processing trajectory data
Author: Name
Author-email: email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: geopandas
Requires-Dist: ptrail
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: matplotlib
Requires-Dist: joblib
Requires-Dist: scikit-learn
Requires-Dist: torch

# Trajectory Processing Package

## 安装

使用 pip 安装：

```bash
pip install trajectory_processing
```

## 必要属性名
["user","经度","纬度","gps时间戳"]
user为车牌

## 测试代码

``` 
import os
from trajectory_processing import to_all
if __name__ == '__main__':
    import multiprocessing
    multiprocessing.freeze_support()  # 如果你打算冻结程序生成可执行文件，需要这一行
    input_filepath = r"C:\Users\zhang\Desktop\8个车辆的8~11月数据\待处理的轨迹数据.xlsx"  # 替换为实际文件路径
    output_filepath = r"C:\Users\zhang\Desktop\8个车辆的8~11月数据\处理完的轨迹数据.csv"
    to_all(input_filepath, output_filepath)
```
