This repository has been archived by the owner on Jan 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.php
executable file
·121 lines (96 loc) · 2.4 KB
/
help.php
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php include ('header.php'); ?>
<!-- Below is the website main files -->
<style>
table,th,td
{
border:1px solid black;
border-collapse:collapse;
}
th,td
{
padding:5px;
}
</style>
<p class="p1">
<p>
<h3>Structure Brief</h3>
<table>
<tr>
<th>Page</th>
<th>Description</th>
</tr>
<tr>
<td>Submit Sightings</td>
<td>
This page is used for submitting sigle sighting, which could include: (1) a photo of what you saw; (2) the animal name;
(3) the time and date of the sighting; (4) the location of where you got the sighting; (5) the animal's gender, age, and status;
(6) a short description to tell our community more about this sighting.
</td>
</tr>
<tr>
<td>Explore Sightings</td>
<td>
This page is used for viewing and downloading our data by applying a filter you want. Our system provide three ways
for users: table, graphs, and heat map.
</td>
</tr>
<tr>
<td>Sighting Detail</td>
<td>This page is used for displaying the detail of a single sighting. Users can see all relative information about one specific
sighting and rate it based on the quality of the data.
</td>
</tr>
<tr>
<td>Update Sighting Detail</td>
<td>
This page is used for editing all information of a single sighting by a power user or the creator of this sighting.
</td>
</tr>
<tr>
<td>CSV Upload</td>
<td>This page is used for inputing bulk data to our system. The specification of CSV file format is listed below.</td>
</tr>
<tr>
<td>My Account</td>
<td>This page is used for modifying account information, such as email address, and password.</td>
</tr>
<tr>
<td>Help</td>
<td>This page is used for briefly describing the role of each major page.</td>
</tr>
<tr>
<td>About</td>
<td>This page contains brief description of our system and acknowledgement.</td>
</tr>
</table>
</p>
<br>
<p>
<h3>CSV Format Specification</h3>
In order to ensure our system could process your data file properly and successfully. Please submit your CSV file in following
format:
<table>
<tr>
<td>animal name</td>
<td>sighting time</td>
<td>sighting date</td>
<td>latitude of sighting location</td>
<td>longitude of sighting location</td>
<td>animal gender</td>
<td>animal status</td>
<td>description</td>
<td>animal age</td>
</tr>
</table>
</p>
<br>
<p>
<h3>Need further help?</h3>
Email us <a href="mailto:[email protected]?Subject=General%20Inquiry" target="_top">
NOW</a>
</p>
</p>
</div>
</div>
<!-- Above is the website main files -->
<?php include ('../footer.php'); ?>