-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (101 loc) · 3.25 KB
/
index.html
File metadata and controls
107 lines (101 loc) · 3.25 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EnergyAtlas.io</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background: #f4f4f4;
color: #333;
}
header {
background: #111;
color: #fff;
padding: 2rem;
text-align: center;
}
section {
max-width: 1000px;
margin: auto;
padding: 2rem;
background: #fff;
margin-top: 1rem;
}
h1, h2, h3 {
color: #111;
}
ul {
padding-left: 1.5rem;
}
.cta {
text-align: center;
margin-top: 2rem;
}
.cta a {
display: inline-block;
background: #007acc;
color: #fff;
padding: 0.75rem 1.5rem;
text-decoration: none;
border-radius: 5px;
margin: 0.5rem;
}
footer {
text-align: center;
padding: 1rem;
background: #eee;
font-size: 0.9rem;
}
</style>
</head>
<body>
<header>
<h1>EnergyAtlas.io</h1>
<p>Your Digital Twin for Urban Energy Insight</p>
</header>
<section>
<h2>What is EnergyAtlas.io?</h2>
<p>EnergyAtlas.io is an urban-scale simulation platform that transforms cities into data-rich digital twins. Built on years of research in Urban Building Energy Modeling (UBEM), it enables users to simulate energy use, analyze decarbonization pathways, and prioritize retrofits city-wide.</p>
</section>
<section>
<h2>Key Features</h2>
<ul>
<li><strong>Urban Digital Twin Builder:</strong> Generate 3D building models using open and proprietary geospatial data.</li>
<li><strong>City-Scale Energy Simulation:</strong> Run operational energy use and emissions simulations across building stocks.</li>
<li><strong>Scenario Planning:</strong> Evaluate electrification, envelope upgrades, and renewables integration.</li>
<li><strong>Retrofit Prioritization:</strong> Identify cost-effective upgrades using building archetypes and emissions profiles.</li>
<li><strong>Public Dashboard:</strong> Communicate results through interactive maps and charts.</li>
<li><strong>Integration-Ready:</strong> Compatible with EnergyPlus, OpenStudio, and external dashboards.</li>
</ul>
</section>
<section>
<h2>Use Cases</h2>
<ul>
<li>Municipal climate action planning</li>
<li>Resilience assessment under extreme weather</li>
<li>Policy simulations and compliance tracking</li>
<li>Equity mapping for energy interventions</li>
<li>Academic and policy research</li>
</ul>
</section>
<section>
<h2>Backed by Research</h2>
<p>EnergyAtlas.io is developed at Cornell University's Environmental Systems Lab and has been successfully applied in Ithaca, NYC, and Tompkins County to guide decarbonization and retrofit efforts.</p>
</section>
<section class="cta">
<h2>Ready to Transform Your City?</h2>
<a href="#">Join the Beta Program</a>
<a href="#">Request a Demo</a>
<a href="#">Explore Use Cases</a>
</section>
<footer>
<p><strong>Contact:</strong> Dr. Timur Dogan – info@energyatlas.io</p>
<p>© 2025 EnergyAtlas.io</p>
</footer>
</body>
</html>