forked from ladybug-tools/epwmap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomfortmap.html
83 lines (67 loc) · 2.86 KB
/
comfortmap.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
<!DOCTYPE html>
<!--
Modified from example file by @mbostock (https://github.com/mbostock)
Check this link for original example: http://bl.ocks.org/d3noob/5193723
-->
<meta charset="utf-8">
<style>
path {
stroke: grey;
stroke-width: 0.5px;
fill: white;
}
header {
font-family: "PT Sans", sans-serif;
font-size: 12px;
}
footer {
font-family: "PT Sans", sans-serif;
font-size: 12px;
}
body {
font-family: "PT Sans", sans-serif;
font-size: 13px;
}
</style>
<header>
<title>outdoorcomfortmap</title>
Started by <a href="https://github.com/mostaphaRoudsari" rel="author">Mostapha Roudsari</a> at Dec, 21, 2014
- Inspired by <a href="https://github.com/mbostock" rel="author">Mike Bostock</a> 's
<a href="http://bl.ocks.org/d3noob/5193723" rel="link">example</a>
</header>
<h1>EnergyPlus Weather Data Map</h1>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v0.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script src="./js/jquery.tipsy.js"></script>
<link rel="stylesheet" href="./css/tipsy.css" type="text/css"/>
<div id="wrapper" class="map" style="width:100%;height:500px">
<script type="text/javascript" src = "./js/create.comfortmap.js"></script>
</div>
<div id="description" class="description" style="width:100%;height:80px">
<br><br>
<b>
Weather files are hosted by <a href="http://apps1.eere.energy.gov/buildings/energyplus/weatherdata_about.cfm" rel="link">US Department of Energy</a>.
</b>
<br><br>
Weather data information is parsed by <a href="https://github.com/mostaphaRoudsari/ladybug" rel="link">Ladybug</a> ||
Source code: <a href="https://github.com/mostaphaRoudsari/epwmap" rel="link">Github</a> ||
This page is using <a href="https://github.com/mbostock/D3" rel="link">D3</a> library. Click <a href="http://d3js.org/" rel="link">here</a> for more D3 examples.
<br>
This is a work in Progress... Check <a href="https://github.com/mostaphaRoudsari/epwmap/issues?q=is%3Aopen+is%3Aissue" rel="link">open issues</a> on Github to help or add new issues or get in touch >
<a style="margin-left:10px;" href ="https://www.linkedin.com/in/mostaphasadeghipour" target="blank"> Linkedin </a>
<a style="margin-left:10px;" href ="https://twitter.com/__Mostapha__" target="blank"> Twitter </a>
<a style="margin-left:10px;" href ="https://github.com/mostapharoudsari" target="blank"> Github </a>
</div>
<script>
// google analytic
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-57902264-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>