OpenTrace commited on
Commit
524bbb6
·
verified ·
1 Parent(s): 915939f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +71 -1
README.md CHANGED
@@ -8,11 +8,81 @@ tags:
8
  - trajectory analysis
9
  size_categories:
10
  - 1M<n<10M
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  configs:
12
  - config_name: default
13
  data_files:
14
- - "trajectory_sample.csv"
15
  - "meta_sample.json"
 
16
  viewer: true
17
  ---
18
 
 
8
  - trajectory analysis
9
  size_categories:
10
  - 1M<n<10M
11
+ dataset_info:
12
+ features:
13
+ trajectory:
14
+ - name: time
15
+ dtype: timestamp[s]
16
+ description: "Timestamp in ISO 8601 format"
17
+ - name: latitude
18
+ dtype: float64
19
+ description: "Latitude coordinates under WGS84 standard"
20
+ - name: longitude
21
+ dtype: float64
22
+ description: "Longitude coordinates under WGS84 standard"
23
+ - name: altitude
24
+ dtype: float64
25
+ description: "Altitude of trajectory points (optional)"
26
+ - name: osm_way_id
27
+ dtype: string
28
+ description: "Way ID in OpenStreetMap"
29
+ - name: matched_latitude
30
+ dtype: float64
31
+ description: "Matched latitude coordinates"
32
+ - name: matched_longitude
33
+ dtype: float64
34
+ description: "Matched longitude coordinates"
35
+ - name: matched_distance
36
+ dtype: float64
37
+ description: "Distance between trajectory point and matched coordinates"
38
+ - name: matched_type
39
+ dtype: string
40
+ description: "Type of matched coordinates"
41
+ meta:
42
+ - name: filename
43
+ dtype: string
44
+ description: "Original trajectory file name"
45
+ - name: uploaded
46
+ dtype: timestamp[s]
47
+ description: "Upload time of trajectory file"
48
+ - name: points
49
+ dtype: int64
50
+ description: "Number of data points in trajectory file"
51
+ - name: start_coordinate
52
+ dtype: string
53
+ description: "Starting coordinates of trajectory (longitude, latitude)"
54
+ - name: end_coordinate
55
+ dtype: string
56
+ description: "Ending coordinates of trajectory (longitude, latitude)"
57
+ - name: owner
58
+ dtype: string
59
+ description: "Uploader of trajectory data"
60
+ - name: description
61
+ dtype: string
62
+ description: "Description information of trajectory"
63
+ - name: tags
64
+ dtype: string
65
+ description: "Tags related to trajectory"
66
+ - name: visibility
67
+ dtype: string
68
+ description: "Visibility description of trajectory"
69
+ - name: distance
70
+ dtype: float64
71
+ description: "Total distance of trajectory"
72
+ - name: time
73
+ dtype: string
74
+ description: "Total duration of trajectory"
75
+ - name: geometry
76
+ dtype: string
77
+ description: "Geometric representation of trajectory, typically an array of [longitude, latitude]"
78
+ splits:
79
+ - name: sample
80
+ num_examples: 2
81
  configs:
82
  - config_name: default
83
  data_files:
 
84
  - "meta_sample.json"
85
+ - "trajectory_sample.csv"
86
  viewer: true
87
  ---
88