-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (72 loc) · 3.18 KB
/
index.html
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Mapa Evapotraspiração Tocantins</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-M2wvCLH6DSRazYeZRIm1JnYyh22purTM+FDB5CsyxtQJYeKq83arPe5wgbNmcFXGqiSH2XR8dT/fJISVA1r/zQ=="
crossorigin="" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-lInM/apFSqyy1o6s89K4iQUKg6ppXEgsVxT35HbzUupEVRh2Eu9Wdl4tHj7dZO0s1uvplcYGmt3498TtHq+log=="
crossorigin=""></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="example-container">
<div class="row">
<section class="col col-2 header">
<h1>ATLAS DIGITAL DA EVAPOTRANSPIRAÇÃO DE REFERÊNCIA DO TOCANTINS</h1>
<h2>Pelo método de Hargreaves-Samani<h2>
</section>
<section class="col col-10">
<div class="row">
<section class="col col-6">
<div id="map" class=""></div>
<div class="row">
<section class="col col-3">
<label class="input">
<input id="Latitude" placeholder="Latitude" name="Location.Latitude" />
<!-- @Html.TextBoxFor(m => m.Location.Latitude, new {id = "Latitude", placeholder = "Latitude"}) -->
</label>
<label class="input">
<input id="Longitude" placeholder="Longitude" name="Location.Longitude" /></label>
</label>
</section><br>
<label class="input">
<input id="dia_juliano" type="number" min="1" max="356" value="1">
<button checked="checked" onclick="alteraCampoDias()">VALOR MÉDIO PARA UMA SÉRIE</button> <!--Pensando em um nome curto para relacinar a médias-->
<input id="segundo_dia_juliano" type="number" min="1" max="356" value="1" disabled="disabled">
</label>
</section>
<section class="col col-3">
<div class="scroll">
<table class="table" id="DataTable" border="1">
<thead>
<tr>
<th scope="col">Dia juliano</th> <!--CONVERTER A SAÍDA EM DIAS NORMAIS(DD/MM)-->
<th scope="col">Tmed (ºC)</th>
<th scope="col">Tmax (ºC)</th>
<th scope="col">Tmin (ºC)</th>
<th scope="col">Radiação no Topo da Atimosfera (mm/dia)</th>
<th scope="col">Umidade</th> <!--PODE REMOVER ESSES DADOS-->
<th scope="col">Evapotranspiração de Referência (mm/dia)</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</section>
</div>
</section>
</div>
</div>
<!-- partial -->
<script src="./script.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="./dados.js"></script>
</body>
</html>