forked from hapi-server/data-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_hapi_landing_page.html
17 lines (17 loc) · 1.04 KB
/
example_hapi_landing_page.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head> </head>
<body>
<h2> HAPI Server<h2>
<p> This server supports the HAPI 1.0 specification for delivery of time series
data. The server consists of the following 4 REST-like endpoints that will
respond to HTTP GET requests.
</p>
<ol>
<li> <a href="capabilities">capabilities</a> describe the capabilities of the server; this lists the output formats the server can emit (CSV and binary)</li>
<li><a href="catalog">catalog</a> list the datasets that are available; each dataset is associated with a unique id</li>
<li><a href="info">info</a> obtain a description for dataset of a given id; the description defines the parameters in every dataset record</li>
<li><a href="data">data</a> stream data content for a dataset of a given id; the streaming request must have time bounds (specified by request parameters time.min and time.max) and may indicate a subset of parameters (default is all parameters)</li>
</ol>
<p> For more information, see <a href="http://spase-group.org/hapi">this HAPI description</a> at the SPASE web site. </p>
</body>
<html>