-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtech2.html
115 lines (99 loc) · 6.24 KB
/
tech2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yuxin Yang | City Scope Module</title>
<link rel="stylesheet" type="text/css" href="resources/css/style.css">
</head>
<body>
<!-- Sidebar -->
<nav class="sidebar">
<p class=h1><strong>Y</strong>UXIN <strong>Y</strong>ANG</p>
<button type="button" class="collapsible">Landscape and Urban Design</button>
<div class="content">
<ul><a href="project1.html" class=p--info>From Airport to HST Station: Bio Intermodality</a></ul>
<ul><a href="project2.html" class=p--info>Crosswind Data Center</a></ul>
<ul><a href="project3.html" class=p--info>Migration is Beautiful: Biophillic Boulevard</a></ul>
<ul><a href="project4.html" class=p--info>Dredge Engine</a></ul>
</div>
<br>
<button type="button" class="collapsible">Technology</button>
<div class="content">
<ul><a href="tech1.html" class=p--info>IoT Shoreline: Wave, Weave</a></ul>
<ul><a href="tech2.html" class=p--info>CityScope Module: Kendall Life-Work Crescendo</a></ul>
<ul><a href="tech3.html" class=p--info>Remote Sensing Sanyang Wetland</a></ul>
<ul><a href="tech4.html" class=p--info>Adaptive Rocking Lattice Stool</a></ul>
<ul><a href="tech5.html" class=p--info>Air-Pillow Attire for Haphephobia</a></ul>
</div>
<p><a href="whim.html" class=p--info>Whim</a></p>
<p><a href="cv.html" class=p--info>CV</a></p>
<p><a href="index.html" class=p--info>About</a></p>
<footer>
<p>Published on GitHub Page <br>© Yuxin Yang, Feb 2023</p>
</footer>
</nav>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
<!-- Page Content -->
<div style="margin-left:280px" class="a">
<p class=h2>CityScope Module: Kendall Life-Work Crescendo</p>
<br>
<p class=p--caption> <strong>Info</strong> Patrick Chwalek (PhD), Yuxin Yang, Yoonjae Oh, Mirah Xu, 09-12/2021, Academy<br>
My contributions include proposal, analysis and scenarios, and data collection with the team<br>
<strong>Instructor</strong> Kent Larson, [email protected]<br>
Luis Alonso, [email protected] <br>
<strong>Institution</strong> MIT Media Lab, City Science Group<br></p>
<br>
<p class=p--info>This is an ESG assessment tool using Python and ArcGIS on analyzing office-to-
housing and office-to-green space conversion for MIT Kendall Square, serving as a development module for an open-source engagement platform
<a href="https://www.media.mit.edu/projects/cityscope/overview/">CityScope.</a></p>
<br>
<p class=p--info>The past year's remote working experience, whether hybrid or fully remote, poses many design problems for existing
office space culture. According to the Microsoft Work Index, 66% of leaders answered that their company are
considering redesigning their office spaces for hybrid work. Global office leasing volumes in the last two years have
dropped by half, and the US office vacancy rate (27%) has doubled from the previous year. According to the JLL
Boston office insight report, total vacancy and average asking rent in Boston are rising. The projected office vacancy
rate is 16.8%, 5% higher than the current rate.</p>
<p class=p--info>In response to these issues, our project explores the possibility of office building conversions in the scope of Kendall
Square. Our interactive statistical tool assists decision-makers in rethinking existing office buildings in Kendall and
transforming them into spaces in need. Our tool guides users to understand three perspectives based on the rate of
office transition:</p>
<p class=p--info>Environmental: How much can we reduce building and transportation <strong>GHG EMISSIONS</strong>?<br>
Financial: Is annual residential rent showing more <strong>FINANCIAL IMPROVEMENT</strong> than annual office rent?<br>
Wellness: Can we have more urban green space for <strong>INCREASED WELL-BEING</strong>?</p>
<p class=p--info>Today, it is clear that the lack of housing stocks in Kendall Square has a severe adverse impact on housing affordability.
By analyzing <strong>OFFICE-TO-HOUSING, OFFICE-TO-GREENSPACE </strong>conversions, our vision is to
gradually evolve Kendall into a more livable place where people can have better work-life symmetry.</p>
<br>
<!--Image Section-->
<div>
<img src="./resources/images/1_Page_09.jpg" height=640 alt=""><br>
<img src="./resources/images/1_Page_10.jpg" height=640 alt=""><br>
<img src="./resources/images/1_Page_11.jpg" height=640 alt=""><br>
<img src="./resources/images/1_Page_12.jpg" height=640 alt=""><br>
<img src="./resources/images/1_Page_13.jpg" height=640 alt=""><br>
</div>
<br><br><br>
<div>
<p class=p--info>Inquire via email: <a href="mailto:[email protected]">[email protected]</a><br>
Connect via LinkedIn: <a href="https://www.linkedin.com/in/yuxin-yang-78a671191/?originalSubdomain=cn">Here</a>
<footer>© Yuxin Yang, Feb 2023</footer> </p>
</div>
</div>
</body>
</html>