dwb2023 commited on
Commit
f377255
·
verified ·
1 Parent(s): a38f4ba

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +99 -0
README.md CHANGED
@@ -30,4 +30,103 @@ configs:
30
  data_files:
31
  - split: train
32
  path: data/train-*
 
33
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  data_files:
31
  - split: train
32
  path: data/train-*
33
+ license: cc-by-4.0
34
  ---
35
+
36
+ # Crisis Prediction Datasets
37
+ ## Dataset Card for dwb2023/crisis_prediction_datasets
38
+
39
+ ### Purpose
40
+ A catalog of datasets supporting crisis prediction and response analysis, with particular focus on transportation and supply chain disruptions. This catalog tracks datasets that can be used to model temporal dependencies, test counterfactual scenarios, and analyze cascading failures in crisis situations.
41
+
42
+ ### Intended Use
43
+ - Primary Use: Research and evaluation of crisis response datasets
44
+ - Intended Users: Data scientists, data engineers, and ML engineers working on crisis prediction systems
45
+ - Out of Scope: Real-time data ingestion or operational deployment
46
+
47
+ ### Schema Description
48
+ The catalog uses the following schema to track and document datasets:
49
+
50
+ | Field Name | Data Type | Description |
51
+ |------------|-----------|-------------|
52
+ | dataset_id | string | Unique identifier for the dataset in the catalog (e.g., "OPENSKY_2020", "GDELT_2020_Q1") |
53
+ | dataset_name | string | Human-readable name of the dataset (e.g., "OpenSky Network", "GDELT Event Database") |
54
+ | source_url | string | URL or reference point for accessing the dataset |
55
+ | supported_entities | sequence[string] | List of entity types contained in the dataset (e.g., ["Airport", "Flight", "Policy"]) |
56
+ | supported_events | sequence[string] | List of event types the dataset can track (e.g., ["FlightCancellation", "HubClosure"]) |
57
+ | description | string | Detailed description of the dataset's contents, format, and relevance to crisis prediction |
58
+ | last_updated | timestamp[ms] | When the dataset itself was last updated, in milliseconds since epoch |
59
+ | coverage_timeframe | string | Time period covered by the dataset (e.g., "2020-03-20 to 2020-03-27") |
60
+ | created_at | timestamp[ms] | When this catalog entry was created, in milliseconds since epoch |
61
+
62
+ ### Example Entry
63
+ ```sql
64
+ {
65
+ "dataset_id": "OPENSKY_2020",
66
+ "dataset_name": "OpenSky Network",
67
+ "source_url": "https://opensky-network.org/api",
68
+ "supported_entities": ["Airport", "Flight"],
69
+ "supported_events": ["FlightCancellation", "FlightDelay"],
70
+ "description": "Real-time & historical ADS-B flight tracking data",
71
+ "last_updated": "2025-01-30",
72
+ "coverage_timeframe": "2020-03-20 to 2020-03-27",
73
+ "created_at": "2025-01-31"
74
+ }
75
+ ```
76
+
77
+ ### Key Features
78
+ - Tracks datasets supporting temporal graph analysis
79
+ - Maps datasets to specific entity and event types
80
+ - Documents coverage periods aligned with crisis events
81
+ - Enables dataset comparison and selection for analysis
82
+
83
+ ### Usage Caveats
84
+ - Catalog is for research planning purposes only
85
+ - Does not include actual data storage or automated ingestion
86
+ - Focus is on iterative research evaluation of datasets
87
+
88
+ ### Implementation Details
89
+
90
+ #### Query Examples
91
+ ```sql
92
+ -- Find datasets containing flight data
93
+ SELECT dataset_name, source_url
94
+ FROM dataset_catalog
95
+ WHERE supported_entities LIKE '%"Flight"%';
96
+
97
+ -- Get datasets covering March 2020
98
+ SELECT dataset_name, description
99
+ FROM dataset_catalog
100
+ WHERE coverage_timeframe LIKE '%2020-03%';
101
+
102
+ -- List recently updated datasets
103
+ SELECT dataset_name, last_updated
104
+ FROM dataset_catalog
105
+ ORDER BY last_updated DESC;
106
+ ```
107
+
108
+ #### Key SQL Operations
109
+ ```sql
110
+ -- Create new dataset entry
111
+ INSERT INTO dataset_catalog (
112
+ dataset_id, dataset_name, source_url,
113
+ supported_entities, supported_events,
114
+ description, coverage_timeframe
115
+ ) VALUES (
116
+ 'GDELT_2020_Q1',
117
+ 'GDELT Event Database',
118
+ 'https://www.gdeltproject.org/',
119
+ '["Airport", "Policy", "Organization"]',
120
+ '["PolicyChange", "BorderClosure"]',
121
+ 'Global event database tracking media-reported events',
122
+ '2020-01-01 to 2020-03-31'
123
+ );
124
+
125
+ -- Update dataset coverage
126
+ UPDATE dataset_catalog
127
+ SET coverage_timeframe = '2020-01-01 to 2020-06-30'
128
+ WHERE dataset_id = 'GDELT_2020_Q1';
129
+ ```
130
+
131
+ ### Citation
132
+ This catalog was developed as part of research into crisis prediction and response systems, focusing on the March 2020 COVID-19 disruptions to global air cargo operations.