-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (105 loc) · 5.41 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
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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Measurement Earth</title>
<meta property='og:title' content='Measurement Earth' />
<meta property='og:image' content='https://www.measurement.earth/me-logo2-ruler-cropped.png' />
<meta property='og:description' content='The Measurement Earth Global Open Data and Trusted Sensor Platform will transform our understanding of the planet we live on.' />
<meta property='og:url' content='https://www.measurement.earth' />
<meta property="og:type" content="website" />
<link rel="stylesheet" href="css/leaflet-1.7.1.css" />
<script src="scripts/leaflet-1.7.1.js"></script>
<script src='scripts/eosjs-api.js'></script>
<script src='scripts/eosjs-jsonrpc.js'></script>
<script src="scripts/me-lib.js"></script>
<script src="scripts/me-map.js"></script>
<link rel="stylesheet" href="css/style.css" />
<meta name="description" content="Measurement Earth Global IoT Open Data and Trusted Sensor Platform">
<meta name="keywords" content="geospatial, map, sensor, quality, authenticity, contextual, measurements, environment, bigdata, IoT, blockchain">
<link href="me-favicon.ico" type="image/x-icon" rel="icon">
<link href="me-favicon.ico" type="image/x-icon" rel="shortcut icon">
</head>
<body>
<div class="hero-image">
<div class="hero-text">
<h1></h1>
</div>
</div>
<div style="width: 800px; text-align: left; margin: auto;">
<h1>
<b><i>Measurement Earth</i> is a Blockchain-based Big Data Platform for the Internet of Things.</b>
<br />
<br />
The <I>Measurement Earth Global Open Data and Trusted Sensor Platform</I> will transform our understanding of the planet we live on.
<br />
<br />
As climate change raises the stakes, we believe the need to acquire quality, authentic and contextually rich data about environmental
and human activity has never been higher. We are working with a goal to deploy 1 million
Trusted Sensor Platforms around the world to facilitate this transformation of knowledge.
</h1>
<br />
<h1>The data generated by all deployed Measurement Earth Trusted Sensor Platforms is open to anyone, anywhere in the world through the Measurement Earth open data platform.</h1>
<br />
<h1>
<u>How to participate</u>
<ul>
<li>Become a Trusted Sensor Platform (TSP) sponsor, operator or both.</li>
<li>Use our data analysis tools to gain insights into the environment and your operations.</li>
<li>Use these tools and more to create positive change in the world around you.</li>
</ul>
A world of possibility awaits!
<br /><br />
<br />
What's happening in the world right now:<br />
</h1>
<button type="button" onclick="zoomPoints()">Zoom All Points</button>
Include:
<input type="checkbox" onclick="inactiveCbSel()" id="inactive_checkbox" /><label for="inactive_checkbox">Inactive</label>
<input type="checkbox" onclick="airCbSel()" id="air_checkbox" checked /><label for="air_checkbox">Air Quality</label>
<!-- <input type="checkbox" onclick="evCbSel()" id="ev_checkbox" checked /><label for="ev_checkbox">EV Stations</label> -->
<!-- <input type="checkbox" onclick="agCbSel()" id="ag_checkbox" checked /><label for="ag_checkbox">Ag Stations</label> -->
<br />
<br />
</div>
<div id="map" style="height: 500px; width: 1000px"></div>
<script>
function getChecked() {
var icbox = document.getElementById('inactive_checkbox')
var aqcbox = document.getElementById('air_checkbox')
return { inactive: icbox.checked, air: aqcbox.checked }
}
function inactiveCbSel(val) {
me_lib_map_summary(getChecked())
}
const params = new URLSearchParams(location.search);
for (let p of params) {
console.log(p)
}
let chain = params.get('chain')
console.log('chain: ' + chain)
me_map_init();
me_lib_init(chain);
me_lib_map_summary(getChecked());
</script>
<br />
<br />
<h1>
<a href="./how.html" target="_blank" rel="noopener noreferrer">How It Works</a>
<br />
<a href="./pages/stations/air_v2/index.html" target="_blank" rel="noopener noreferrer">Sensors</a>
</h1>
<img src="me-logo2-ruler-cropped.png" alt="Measurement Earth Logo" /><br />
© Measurement Earth 2020-2024
<div id="footer">Contact: <a href="mailto:hello@measurement.earth">hello@measurement.earth</a></div>
<div id="footer">
<b>Socials</b><br /><br />
<a href="https://github.com/measurementearth">GitHub</a><br />
<a href="https://twitter.com/measure_earth">Twitter/X</a><br />
<a href="https://t.me/measure_earth">Telegram</a>
<br /><br />
<b>Resources</b><br/><br />
<br />
</div>
<div id="footer">Build: v1.5.0</div>
</body>
</html>