Skip to content

Commit 1fd9b2d

Browse files
committed
fix(tp-py): add missing README.md required by pyproject.toml
1 parent 9696e5a commit 1fd9b2d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

tp-py/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# tp-lib Python Bindings
2+
3+
Python bindings for the Train Positioning Library (TP-Lib), providing GNSS track axis projection and train path calculation.
4+
5+
## Installation
6+
7+
```bash
8+
pip install tp-lib
9+
```
10+
11+
## Usage
12+
13+
```python
14+
from tp_lib import project_positions, ProjectionConfig
15+
16+
config = ProjectionConfig(max_search_radius_meters=1000.0)
17+
result = project_positions(gnss_positions, network, config)
18+
```

0 commit comments

Comments
 (0)