OpenTrace commited on
Commit
0cab839
·
verified ·
1 Parent(s): 48f0f04

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +89 -1
README.md CHANGED
@@ -8,4 +8,92 @@ tags:
8
  - trajectory analysis
9
  size_categories:
10
  - 1M<n<10M
11
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  - trajectory analysis
9
  size_categories:
10
  - 1M<n<10M
11
+ ---
12
+
13
+ ## WorldTrace Dataset
14
+
15
+ ### 🗺️ Overview
16
+
17
+ WorldTrace is a large-scale, high-quality, globally-covering GPS trajectory dataset.
18
+
19
+ Trajectory data provides an important data source for understanding human mobility patterns and transforming urban intelligence. However, existing trajectory modeling methods have limitations in terms of task specificity, regional dependency, and data sensitivity. The construction of the WorldTrace dataset aims to address these challenges by providing unprecedented geographical diversity and data scale, thereby promoting the development of region-agnostic universal trajectory models. This dataset contains 2.45 million trajectories collected from 70 countries worldwide, totaling 8.8 billion raw GPS points, making it the most geographically comprehensive and diverse trajectory dataset currently available.
20
+
21
+ ### 📊 Key Statistics
22
+
23
+ | Trajectory Information | Statistical Values |
24
+ | --------------------------- | -------------------------------- |
25
+ | Number of Trajectories | 2.45 million |
26
+ | Number of Trajectory Points | 880 million (after processing) |
27
+ | Geographic Coverage | 70 countries |
28
+ | Time Span | August 2021 - December 2023 |
29
+ | Sampling Interval | 1 second (after standardization) |
30
+ | Average Trajectory Duration | ~6 minutes |
31
+ | Average Trajectory Distance | 5.73 kilometers |
32
+ | Average Trajectory Speed | 48.0 km/h |
33
+ | Average Trajectory Points | ~358 points |
34
+
35
+ ### 📁 File Structure and Data Format
36
+
37
+ We provide two types of files: processed trajectory data (Trajectory.zip) and metadata (Meta.zip). Each record in the dataset typically contains the following fields:
38
+
39
+ 📄 Trajectory: **csv** files
40
+
41
+ - `time`: Timestamp in ISO 8601 format
42
+ - `latitude`: Latitude coordinates under WGS84 standard
43
+ - `longitude`: Longitude coordinates under WGS84 standard
44
+ - `altitude`: Altitude of trajectory points (optional)
45
+ - `osm_way_id`: Way ID in OpenStreetMap
46
+ - `matched_latitude`: Matched latitude coordinates
47
+ - `matched_longitude`: Matched longitude coordinates
48
+ - `matched_distance`: Distance between trajectory point and matched coordinates
49
+ - `matched_type`: Type of matched coordinates
50
+
51
+ 📝 Meta: **json** files
52
+
53
+ - `Filename`: Original trajectory file name
54
+ - `Uploaded`: Upload time of trajectory file
55
+ - `Points`: Number of data points in trajectory file
56
+ - `Start coordinate`: Starting coordinates of trajectory (longitude, latitude)
57
+ - `End coordinate`: Ending coordinates of trajectory (longitude, latitude)
58
+ - `Owner`: Uploader of trajectory data
59
+ - `Description`: Description information of trajectory
60
+ - `Tags`: Tags related to trajectory
61
+ - `Visibility`: Visibility description of trajectory
62
+ - `Distance`: Total distance of trajectory
63
+ - `Time`: Total duration of trajectory
64
+ - `geometry`: Geometric representation of trajectory, typically an array of [longitude, latitude]
65
+
66
+ ### ⏬ Download
67
+
68
+ #### Using Git
69
+
70
+ ```bash
71
+ git lfs install
72
+ git clone git@hf.co:datasets/OpenTrace/WorldTrace
73
+ ```
74
+
75
+
76
+
77
+ #### Using Command Line
78
+
79
+ ```bash
80
+ hf download OpenTrace/WorldTrace --repo-type dataset
81
+ ```
82
+
83
+ ### ⚖️ Privacy and License
84
+
85
+ **Privacy:** To protect user privacy and comply with international data protection regulations, all data collection strictly adheres to privacy regulations and ethical guidelines. Trajectory data has been anonymized, and any personally identifiable information has been excluded.
86
+
87
+ **License:** The original data of this dataset follows the OpenStreetMap Open Database License ([ODbL](https://opendatacommons.org/licenses/odbl/)) version 1.0. Any derivative datasets we release will also follow the same license terms.
88
+
89
+ If you use the WorldTrace dataset in your research, please cite our paper:
90
+
91
+ ```ini
92
+ @article{unitraj2025,
93
+ title={UniTraj: Learning a Universal Trajectory Foundation Model from Billion-Scale Worldwide Traces},
94
+ author={Zhu, Yuanshao and Yu, James Jianqiao and Zhao, Xiangyu and Zhou, Xun and Han, Liang and Wei, Xuetao and Liang, Yuxuan},
95
+ journal={Advances in Neural Information Processing Systems},
96
+ volume={38},
97
+ year={2025}
98
+ }
99
+ ```