46 lines
1.9 KiB
HTML
46 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ECMWF DestinE STAC Viewer</title>
|
|
<link rel="stylesheet" href="/app/styles.css" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github.min.css">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/json.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/python.min.js"></script>
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📚</text></svg>">
|
|
|
|
</head>
|
|
<body>
|
|
<div id="viewer">
|
|
<div id="catalog-list">
|
|
<h2>STAC Items</h2>
|
|
<p>Select one or more items and then click next iteratively build up a full request.</p>
|
|
|
|
<div class="sidebar-header">
|
|
<button id="previous-btn">Previous</button>
|
|
<a id="stac-anchor"><button id="stac-btn">Raw STAC</button></a>
|
|
<button id="next-btn">Next</button>
|
|
</div>
|
|
|
|
<div id="items">
|
|
<!-- Items from the STAC catalog will be rendered here -->
|
|
</div>
|
|
</div>
|
|
<div id="details">
|
|
{{ config.get('message', '')}}
|
|
<h2>Request</h2>
|
|
Hover over a key or value for more info.
|
|
<pre><code id="request-breakdown" class="language-json">
|
|
{
|
|
}
|
|
</code></pre>
|
|
<h2>Raw STAC</h2>
|
|
<pre><code id="raw-stac" class="language-json"></code></pre>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="/app/app.js"></script>
|
|
</body>
|
|
</html> |