forked from radiantearth/stac-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTAC-ext-api.html
More file actions
20 lines (20 loc) · 748 Bytes
/
STAC-ext-api.html
File metadata and controls
20 lines (20 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="shortcut icon" href="../assets/images/favicon.png">
<title>STAC API</title>
</head>
<body>
<div id="content"></div>
<script src="https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js"> </script>
<script type="text/javascript">
Redoc.init('https://raw.githubusercontent.com/radiantearth/stac-spec/master/api-spec/STAC-extensions.yaml', {
expandResponses:"200,201,202,203,204",
pathInMiddlePanel: true,
hideDownloadButton: true
}, document.getElementById('content'));
</script>
</body>
</html>