gmmcleod commited on
Commit
e28798a
·
verified ·
1 Parent(s): be58c73

Added overview of the dataset

Browse files
Files changed (1) hide show
  1. README.md +62 -3
README.md CHANGED
@@ -1,3 +1,62 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+ ADS-B Training Dataset (dump1090 Output)
5
+ Overview
6
+
7
+ This dataset contains ADS-B data captured using the dump1090 program. The data is organized into multiple directories, each representing a separate data collection session or environment. The dataset is designed for use in training and evaluating models related to aircraft signal analysis, localization, or reception quality prediction.
8
+
9
+ Structure
10
+
11
+ The dataset directory has the following structure:
12
+
13
+ train_data/
14
+
15
+ ├── ali/
16
+ │ ├── home/
17
+ │ └── ottawa/
18
+
19
+ ├── cory/
20
+
21
+ ├── gianna/
22
+ │ ├── madison/
23
+ │ └── minnesota/
24
+
25
+ ├── josh/
26
+
27
+ ├── sarah/
28
+
29
+ ├── metadata.csv
30
+ ├── .gitattributes
31
+ └── README.md
32
+
33
+ metadata.csv
34
+
35
+ The metadata file provides descriptive information about each data capture session. It is a CSV file with the following columns:
36
+
37
+ Column Description
38
+ file Path to the data file relative to the dataset root
39
+ shorthand Short identifier for the data collection setup
40
+ indoor TRUE if the receiver was indoors, otherwise FALSE
41
+ unobstructed_0-45 TRUE if the view in this range (degrees) was unobstructed (a window counts as unobstructed)
42
+ unobstructed_45-90 TRUE if the view in this range was unobstructed
43
+ unobstructed_90-135 TRUE if the view in this range was unobstructed
44
+ unobstructed_135-180 TRUE if the view in this range was unobstructed
45
+ unobstructed_180-225 TRUE if the view in this range was unobstructed
46
+ unobstructed_225-270 TRUE if the view in this range was unobstructed
47
+ unobstructed_270-315 TRUE if the view in this range was unobstructed
48
+ unobstructed_315-360 TRUE if the view in this range was unobstructed
49
+ Example Entry
50
+ file,shorthand,indoor,unobstructed_0-45,unobstructed_45-90,unobstructed_90-135,unobstructed_135-180,unobstructed_180-225,unobstructed_225-270,unobstructed_270-315,unobstructed_315-360
51
+ ali/home/office-gain-50-10-25-2023-16-16-03-dump1090,Iaho,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE
52
+
53
+ Data Source
54
+
55
+ All data files were generated using the dump1090
56
+ ADS-B decoder. Each file contains decoded messages from aircraft transponders received by an RTL-SDR device.
57
+
58
+ Usage Notes
59
+
60
+ The unobstructed flags correspond to 45° sectors around the receiver.
61
+
62
+ Each data directory contains raw dump1090 output files.