Skip to content
This repository was archived by the owner on Jul 14, 2025. It is now read-only.

Commit 57fa727

Browse files
committed
Update cyclone wind speed example
1 parent 85fd206 commit 57fa727

File tree

2 files changed

+73
-46
lines changed

2 files changed

+73
-46
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"stac_version": "1.0.0",
3+
"stac_extensions": [
4+
"https://stac-extensions.github.io/ml-model/v1.0.0/schema.json"
5+
],
6+
"type": "Collection",
7+
"id": "model-cyclone-wind-estimation-torchgeo",
8+
"title": "Tropical Cyclone Wind Speed Estimation Model",
9+
"description": "Regression model that can be used to esimate the wind speed of a tropical cyclone based on a GOES image of the storm. This model was trained on the [Tropical Cyclone Wind Estimation Competition dataset](https://mlhub.earth/10.34911/rdnt.xs53up) using the [Torchgeo](https://github.com/microsoft/torchgeo) package.",
10+
"license": "MIT",
11+
"extent": {
12+
"spatial": {
13+
"bbox": [
14+
[
15+
-179.999,
16+
-89.999,
17+
179.999,
18+
89.999
19+
]
20+
]
21+
},
22+
"temporal": {
23+
"interval": [
24+
[
25+
"2000-01-01T00:00:00Z",
26+
"2019-12-12T23:59:59Z"
27+
]
28+
]
29+
}
30+
},
31+
"summaries": {
32+
"ml-model:learning_approach": [
33+
"supervised"
34+
],
35+
"ml-model:prediction_type": [
36+
"regression"
37+
],
38+
"ml-model:architecture": [
39+
"resnet18"
40+
]
41+
},
42+
"links": [
43+
{
44+
"href": "https://example.com/examples/collection.json",
45+
"rel": "self"
46+
},
47+
{
48+
"href": "./item.json",
49+
"rel": "item"
50+
}
51+
]
52+
}

examples/cyclone-wind-speed/item.json

Lines changed: 21 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -6,61 +6,36 @@
66
],
77
"type": "Feature",
88
"id": "model-cyclone-wind-estimation-torchgeo",
9+
"collection": "model-cyclone-wind-estimation-torchgeo",
910
"bbox": [
1011
-179.999,
11-
-4.5,
12+
-89.999,
1213
179.999,
13-
70.55
14+
89.999
1415
],
1516
"geometry": {
16-
"type": "MultiPolygon",
17+
"type": "Polygon",
1718
"coordinates": [
1819
[
1920
[
20-
[
21-
3.2,
22-
-4.5
23-
],
24-
[
25-
3.2,
26-
70.55
27-
],
28-
[
29-
-179.999,
30-
70.55
31-
],
32-
[
33-
-179.999,
34-
-4.5
35-
],
36-
[
37-
3.2,
38-
-4.5
39-
]
40-
]
41-
],
42-
[
21+
-179.999,
22+
-89.999
23+
],
24+
[
25+
179.999,
26+
-89.999
27+
],
28+
[
29+
179.999,
30+
89.999
31+
],
32+
[
33+
-179.999,
34+
89.999
35+
],
4336
[
44-
[
45-
179.999,
46-
17.7
47-
],
48-
[
49-
179.999,
50-
42.7
51-
],
52-
[
53-
159.55,
54-
42.7
55-
],
56-
[
57-
159.55,
58-
17.7
59-
],
60-
[
61-
179.999,
62-
17.7
63-
]
37+
-179.999,
38+
-89.999
6439
]
6540
]
6641
]

0 commit comments

Comments
 (0)