-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample_custom_dataset.json
More file actions
54 lines (53 loc) · 1.4 KB
/
example_custom_dataset.json
File metadata and controls
54 lines (53 loc) · 1.4 KB
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
{
"dataset_type": "custom",
"description": "Example custom dataset - Weather observations",
"schema": {
"type": "custom",
"filter_fields": ["station", "condition", "temperature_range"],
"metadata_fields": ["timestamp", "humidity", "pressure", "wind_speed"]
},
"images": [
{
"id": "weather_001",
"collection": "station_a",
"station": "station_a",
"condition": "sunny",
"temperature_range": "warm",
"metadata": {
"timestamp": "2024-01-01T12:00:00Z",
"humidity": 65,
"pressure": 1013.25,
"wind_speed": 15.5,
"description": "Clear sunny day with moderate wind"
}
},
{
"id": "weather_002",
"collection": "station_b",
"station": "station_b",
"condition": "cloudy",
"temperature_range": "cool",
"metadata": {
"timestamp": "2024-01-02T14:00:00Z",
"humidity": 80,
"pressure": 1008.50,
"wind_speed": 8.2,
"description": "Overcast conditions with light breeze"
}
},
{
"id": "weather_003",
"collection": "station_a",
"station": "station_a",
"condition": "rainy",
"temperature_range": "cold",
"metadata": {
"timestamp": "2024-01-03T10:00:00Z",
"humidity": 95,
"pressure": 998.75,
"wind_speed": 22.3,
"description": "Heavy rain with strong winds"
}
}
]
}