File size: 1,640 Bytes
b4e5eb2
 
 
 
 
 
 
 
 
 
 
 
7097c0b
b4e5eb2
7097c0b
b4e5eb2
7097c0b
b4e5eb2
 
b031a7f
 
 
 
b4e5eb2
 
 
 
 
 
4059b9f
 
 
 
 
 
 
 
 
 
 
 
 
7097c0b
 
 
4059b9f
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
dataset_info:
  features:
  - name: source_node_id
    dtype: string
  - name: target_node_id
    dtype: string
  - name: relationship_type
    dtype: string
  - name: properties_json
    dtype: string
  - name: valid_from
    dtype: timestamp[ms]
  - name: valid_to
    dtype: timestamp[ms]
  - name: created_at
    dtype: timestamp[ms]
  splits:
  - name: train
    num_bytes: 615
    num_examples: 6
  download_size: 4158
  dataset_size: 615
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

#### Dataset Card for dwb2023/crisis_prediction_edges

**Purpose**  
Stores the edges (relationships) between nodes in the crisis prediction graph, representing connections like routes, impacts, and dependencies.

**Schema Description**
| Field Name | Data Type | Description |
|------------|-----------|-------------|
| source_node_id | string | ID of the source node |
| target_node_id | string | ID of the target node |
| relationship_type | string | Type of relationship (e.g., "IMPACTS", "ROUTED_THROUGH") |
| properties_json | string | JSON string containing edge properties |
| valid_from | timestamp[ms] | When the relationship became valid |
| valid_to | timestamp[ms] | When the relationship expired/will expire |
| created_at | timestamp[ms] | When the edge was created |

**Example Entry**
```python
{
    "source_node_id": "HKG_AIRPORT",
    "target_node_id": "FRA_AIRPORT",
    "relationship_type": "ROUTED_THROUGH",
    "properties_json": {"capacity": "500t", "frequency": "daily"},
    "valid_from": 1706745600000,
    "valid_to": 1709251200000,
    "created_at": 1706745600000
}
```