We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9696e5a commit 1fd9b2dCopy full SHA for 1fd9b2d
tp-py/README.md
@@ -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