-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathHome.jsx
More file actions
63 lines (61 loc) · 2.09 KB
/
Copy pathHome.jsx
File metadata and controls
63 lines (61 loc) · 2.09 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
import { UsaceBox } from "@usace/groundwork";
import { Link } from "react-router-dom";
function Home() {
return (
<>
<UsaceBox title="Introduction" className="mt-8">
Welcome to the US Army Corps of Engineers Corps Water Management System Data
API.
</UsaceBox>
<UsaceBox title="Quick Links">
<ul className="ms-5 pl-5 list-disc list-outside [&_ul]:list-[revert]">
<li>
<Link className="underline" to="/swagger-ui">
Swagger UI
</Link>{" "}
- Interactive API documentation
</li>
<li>
<Link className="underline" to="/data-query">
Data Query Tool
</Link>{" "}
- A tool for querying and retrieving data from the API.
</li>
<li>
<Link className="underline" to="/regexp">
Regular Expressions
</Link>{" "}
- A guide to using regular expressions in the API.
</li>
</ul>
</UsaceBox>
<UsaceBox title="Some Quick Notes">
<div>
<Link to="/swagger-ui">Swagger UI</Link>
<ul className="pl-5 list-disc list-outside [&_ul]:list-[revert]">
<li>
Dates and Intervals/Durations are always in either the ISO 8601 or
milliseconds since the unix epoch.
</li>
<li>
The interval is the time between two different measurements.
<ul className="list-disc ml-4">
<li>
An interval of 0 and irregular are equivalent and mean that there is
no fixed interval between measurements
</li>
</ul>
</li>
<li>
The Duration is used for aggregating calculations (Sums over time,
Averages) and indicates the time window over which samples are gathered to
generate a value.
</li>
<li>Errors are always returned as JSON objects</li>
</ul>
</div>
</UsaceBox>
</>
);
}
export default Home;