Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- other
|
| 5 |
+
tags:
|
| 6 |
+
- synthetic-data
|
| 7 |
+
- geospatial
|
| 8 |
+
- gps
|
| 9 |
+
- trajectory
|
| 10 |
+
- logistics
|
| 11 |
+
size_categories:
|
| 12 |
+
- 10M<n<100M
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# FreeSyntheticGPSTrajectories100M
|
| 16 |
+
|
| 17 |
+
100 million fully synthetic GPS trip points across roughly 944,000 trips, built for developers and researchers working on logistics, rideshare, fleet-tracking, or mapping systems who need realistic-shaped trajectory data without touching real location data. Every trip is a continuous, physically plausible path — not independent random points — making this suitable for testing route reconstruction, trip segmentation, geofencing, and time-series/spatial pipelines. No real vehicles, devices, or individuals are represented; every trip is randomly generated.
|
| 18 |
+
|
| 19 |
+
## Schema
|
| 20 |
+
|
| 21 |
+
| Column | Type | Description |
|
| 22 |
+
|---|---|---|
|
| 23 |
+
| point_id | string | Unique identifier for this GPS ping |
|
| 24 |
+
| trip_id | string | Groups points belonging to the same continuous trip |
|
| 25 |
+
| vehicle_id | string | Vehicle/device identifier, reused across multiple trips |
|
| 26 |
+
| trip_sequence_num | int32 | Position of this point within its trip (0-indexed) |
|
| 27 |
+
| timestamp | string | ISO 8601 UTC timestamp |
|
| 28 |
+
| latitude | float32 | |
|
| 29 |
+
| longitude | float32 | |
|
| 30 |
+
| speed_kmh | float32 | |
|
| 31 |
+
| heading_deg | float32 | Compass heading, 0-360 |
|
| 32 |
+
| accuracy_m | float32 | Simulated GPS accuracy in meters |
|
| 33 |
+
|
| 34 |
+
## Format
|
| 35 |
+
|
| 36 |
+
Single Parquet file, Snappy compression, ~3.2 GB, 100,000,000 rows.
|
| 37 |
+
|
| 38 |
+
## Quick start
|
| 39 |
+
|
| 40 |
+
```python
|
| 41 |
+
import duckdb
|
| 42 |
+
duckdb.sql("SELECT * FROM 'geo_gps_100M.parquet' LIMIT 10").show()
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
```python
|
| 46 |
+
import pyarrow.parquet as pq
|
| 47 |
+
pf = pq.ParquetFile("geo_gps_100M.parquet")
|
| 48 |
+
for batch in pf.iter_batches(batch_size=100000):
|
| 49 |
+
... # process each batch
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
```python
|
| 53 |
+
from datasets import load_dataset
|
| 54 |
+
ds = load_dataset("ziadatalabs/FreeSyntheticGPSTrajectories100M", streaming=True)
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
## Notes
|
| 58 |
+
|
| 59 |
+
Points are ~10 seconds apart within a trip. Trips originate in one of 35 major world cities (weighted toward larger metros) and follow a continuous random-walk path — heading drifts gradually and speed follows realistic urban/highway/stop patterns rather than teleporting between unrelated coordinates. Vehicles are reused across multiple trips to mirror a fleet-style usage pattern. All entirely synthetic — no real GPS traces, devices, or individuals are represented.
|
| 60 |
+
|
| 61 |
+
## License & Usage
|
| 62 |
+
|
| 63 |
+
Licensed under CC-BY-NC-4.0. Free for personal, research, and educational use with attribution. Not licensed for commercial use.
|
| 64 |
+
|
| 65 |
+
---
|
| 66 |
+
|
| 67 |
+
Created by Zia Data Labs. Questions or feedback: zia.data.team@protonmail.com
|