-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (70 loc) · 2.28 KB
/
index.html
File metadata and controls
75 lines (70 loc) · 2.28 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ESM-Tools STAC Extensions</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
line-height: 1.6;
}
h1 { color: #2c3e50; }
.extension {
border: 1px solid #e1e4e8;
border-radius: 6px;
padding: 1rem;
margin: 1rem 0;
}
.extension h2 { margin-top: 0; }
code {
background: #f6f8fa;
padding: 0.2rem 0.4rem;
border-radius: 3px;
font-size: 0.9em;
}
a { color: #0366d6; }
</style>
</head>
<body>
<h1>ESM-Tools STAC Extensions</h1>
<p>Custom STAC extensions for Earth System Model output data.</p>
<div class="extension">
<h2>HPC Storage Extension</h2>
<p><strong>Prefix:</strong> <code>hpc:</code></p>
<p>Storage metadata for HPC environments: facility, system, storage tier, tape state.</p>
<p>
<a href="hpc/">Documentation</a> |
<a href="hpc/v1.0.0/schema.json">Schema (v1.0.0)</a>
</p>
</div>
<div class="extension">
<h2>Namelist Extension</h2>
<p><strong>Prefix:</strong> <code>nml:</code></p>
<p>Fortran namelist parameters for searching by simulation configuration.</p>
<p>
<a href="namelist/">Documentation</a> |
<a href="namelist/v1.0.0/schema.json">Schema (v1.0.0)</a>
</p>
</div>
<div class="extension">
<h2>Paleoclimate Extension</h2>
<p><strong>Prefix:</strong> <code>paleo:</code></p>
<p>Geological time representation for paleoclimate simulations.</p>
<p>
<a href="paleo/">Documentation</a> |
<a href="paleo/v1.0.0/schema.json">Schema (v1.0.0)</a>
</p>
</div>
<h2>Usage</h2>
<pre><code>{
"stac_extensions": [
"https://esm-tools.github.io/stac-extensions/hpc/v1.0.0/schema.json"
]
}</code></pre>
<p><a href="https://github.com/esm-tools/stac-extensions">View on GitHub</a></p>
</body>
</html>