-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
302 lines (287 loc) · 23.4 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>DURAARK – Durable Architectural Knowledge: Data</title>
<link rel='stylesheet' id='esplanade-web-font-css' href='http://fonts.googleapis.com/css?family=Droid+Sans:regular,italic,bold,bolditalic&subset=latin' type='text/css' media='all' />
<link rel='stylesheet' id='esplanade-css' href='https://duraark.github.io/website/wp-content/themes/esplanade/style.css' type='text/css' media='all' />
<style type="text/css">
.blog #content {
box-shadow:none;
background:none;
}
.blog .post {
padding:2.7%;
margin-bottom:2.7%;
box-shadow:0 0 3px #999;
background:#fff;
}
.blog #posts-nav {
padding:20px;
margin-bottom:20px;
box-shadow:0 0 3px #999;
background:#fff;
border-top:none;
}
.paged #content {
margin-bottom:1.76%;
box-shadow:0 0 3px #999;
background:#fff;
}
.paged .post {
padding:4.28% 0;
margin:0 20px;
box-shadow:none;
background:none;
border-top:#eee 1px solid;
}
.paged #posts-nav {
padding:20px 0 0;
margin:20px;
margin-top:0;
box-shadow:none;
background:none;
border-top:#eee 1px solid;
}
h1,
.single .entry-title,
.page .entry-title,
.error404 .entry-title {
font-size:20px;
line-height:1.62em;
}
h2,
.entry-title {
font-size:18px;
line-height:1.62em;
}
h3,
.teaser .entry-title {
font-size:16px;
line-height:1.62em;
}
h4 {
font-size:14px;
line-height:1.62em;
}
a {
color:#3300cc;
}
a:hover {
color:#db3f20;
}
#sidebar,
#sidebar-left,
#sidebar-right {
color:#000000;
}
.widget-title {
color:#000000;
}
.widget-area a {
color:#3300cc;
}
#footer-area .widget-title {
color:#000000;
}
/*Margin-bottom for Widget area */
.widget-area li {
border-bottom: 1px dashed #d9d9d9;
line-height: 150%;
margin-bottom: 2em;
}
/*Change background color for Posts */
.home #content {
width:64.09%;
padding:20px;
margin-bottom:1.76%;
box-shadow:0 0 1px #999;
background:#cccccc;
}
/*Change background color for Pages*/
.paged #content,
.archive #content,
.search #content,
.error404 #content,
.entry,
#comments,
#respond {
margin-bottom:1.76%;
box-shadow:0 0 0px #3300cc;
background:#cccccc;
}
/*Change website backgrond and take away lines on left and right side*/
#wrapper {
position:relative;
max-width:1132px;
margin:0 auto;
box-shadow:0 0 0px #000;
background:#cccccc;
overflow:hidden;
}
/*Sticky post - width and place for textarea*/
#slider .entry-container {
float:left;
max-width:71%;
}
/*Border around image in Sticky Post*/
#slider .entry-attachment {
max-width:60.8%;
padding:0.47%;
background:#cccccc;
}
/* Gradient on Sticky Post, 5 last lines can be commented out*/
#slider {
position:relative;
margin:0 0 1.83%;
box-shadow:0 0 3px #999;
background:#cccccc;
background:-moz-linear-gradient(#ddd,#bbb);
background:-webkit-linear-gradient(#ddd,#bbb);
background:-o-linear-gradient(#ddd,#bbb);
background:-ms-linear-gradient(#ddd,#bbb);
background:linear-gradient(#ddd,#bbb);
}
/*Color around logo */
#header-image {
display:block;
max-width:99.9%;
padding:0.45%;
margin-bottom:0.76%;
box-shadow:0 0 0px #000;
background:#ffffff;
}
</style>
<style type="text/css">
#site-title,
#site-description {
position:absolute !important;
clip:rect(1px 1px 1px 1px); /* IE6, IE7 */
clip:rect(1px, 1px, 1px, 1px);
}
#header-image {
margin:1.76% 0;
}
</style>
<style type="text/css" id="custom-background-css">
body.custom-background { background-color: #cccccc; }
</style>
<style>
table img {
width: 64px;
height: auto;
}
table td {
text-align: left;
vertical-align: middle;
}
table tr:nth-child(2n) {
background: none;
}
table {
border-top: solid 2px black;
border-bottom: solid 2px black;
}
thead {
border-bottom: solid 1px black;
}
</style>
</head>
<body class="home page page-id-850 page-template-default custom-background">
<div id="wrapper">
<header>
<a href="#" rel="home">
<img id="header-image" src="https://duraark.github.io/website/wp-content/uploads/2014/03/DURAARK_Header_EU_Flag1.jpg" alt="DURAARK" scale="0" width="1082" height="130">
</a>
</header>
<section id='content' style='width:1050px'>
<h2>IFC</h2>
<table>
<thead>
<tr><th>image </th><th>name </th><th>author </th></tr>
</thead>
<tbody>
<tr><td> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/Academic_Autodesk_ifc.zip'>Academic Autodesk</a> </td><td>Autodesk </td></tr>
<tr><td> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/GeometryGym_PlanarPanels_ifc.zip'>Planar Panels</a></td><td>GeometryGym </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/Academic_ifc.zip-Academic_DDB-Uhrskov_Arch.ifc_.png'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/Academic_ifc.zip'>Academic</a> </td><td> </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/KIT_FJK_ifc.zip-KIT_FJK_Arch.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/KIT_FJK_ifc.zip'>FJK</a> </td><td>Karlsruhe Institute of Technology </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/KIT_Institute_ifc.zip-KIT_Institute_Arch.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/KIT_Institute_ifc.zip'>Institute</a> </td><td>Karlsruhe Institute of Technology </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/KIT_Smiley-West_Arch.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/KIT_Smiley-West_ifc.zip'>Smiley-West</a> </td><td>Karlsruhe Institute of Technology </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/NBS_Lakeside_ifc.zip-NBS_LakesideRVT01_Arch.ifc_.png'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/NBS_Lakeside_ifc.zip'>Lakeside</a> </td><td>UK National Building Specification </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/NBU_Duplex_ifc.zip-NBU_Duplex-Apt_Arch.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/NBU_Duplex_ifc.zip'>Duplex</a> </td><td>UK National Building Specification </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/NBU_MedicalClinic_ifc.zip-NBU_MedicalClinic_Arch.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/NBU_MedicalClinic_ifc.zip'>Medical Clinic</a> </td><td>UK National Building Specification </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/NBU_OfficeBuilding_ifc.zip-NBU_OfficeBuilding_Arch-1.ifc_.jpg'/></td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/NBU_OfficeBuilding_ifc.zip'>Office Building</a> </td><td>UK National Building Specification </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/NVW_DCR-LOD_ifc.zip-NVW_DCR-LOD200_Arch.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/NVW_DCR-LOD_ifc.zip'>DCR-LOD</a> </td><td>Nemetschek VectorWorks </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/SGD_BARD_ifc.zip-SGD_BARD_Arch.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/SGD_BARD_ifc.zip'>BARD</a> </td><td>Selvaag Gruppen / DDS Data Design System</td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/SGD_BODO_ifc.zip-SGD_BODO_Arch-3.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/SGD_BODO_ifc.zip'>BODO</a> </td><td>Selvaag Gruppen / DDS Data Design System</td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/SGD_Blueberry_ifc.zip-SGD_Blueberry_Arch-3.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/SGD_Blueberry_ifc.zip'>Blueberry</a> </td><td>Selvaag Gruppen / DDS Data Design System</td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/SGD_CDB-2010_Eng-HVAC.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/SGD_CDB_ifc.zip'>CDB</a> </td><td>Selvaag Gruppen / DDS Data Design System</td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/SGD_DDS_ifc.zip-SGD_DDS-CAD_Eng-CON.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/SGD_DDS_ifc.zip'>DDS</a> </td><td>Selvaag Gruppen / DDS Data Design System</td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/SGD_Duplex_ifc.zip-SGD_Duplex_Eng-HVAC-Plumbing.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/SGD_Duplex_ifc.zip'>Duplex</a> </td><td>Selvaag Gruppen / DDS Data Design System</td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/SGD_HiTOS_ifc.zip-SGD_HiTOS_Arch.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/SGD_HiTOS_ifc.zip'>HiTOS</a> </td><td>Selvaag Gruppen / DDS Data Design System</td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/SGD_Munkerud_ifc.zip-SGD_Munkerud_Merged.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/01_IFC/SGD_Munkerud_ifc.zip'>Munkerud</a> </td><td>Selvaag Gruppen / DDS Data Design System</td></tr>
</tbody>
</table>
<h2>E57</h2>
<table>
<thead>
<tr><th>image </th><th>name </th><th>author </th></tr>
</thead>
<tbody>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/Acadia_Office.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/Acadia_Office_e57.zip'>Office</a> </td><td>Acadia </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_Deleuran_AAVisitingSchoolAarhus.jpg'/></td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_Deleuran_AAVisitingSchoolAarhus_e57.zip'>CITA_Deleuran AA Visiting School Aarhus</a></td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_DermoidI.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_Dermoid_e57.zip'>Dermoid</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_DesignMuseum.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_DesignMuseum_e57.zip'>Design Museum Denmark</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_Diakon.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_Diakon_E57.zip'>Diakonissestiftelsen</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_Fraunhofer.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_Frauenhofer_e57.zip'>Fraunhofer</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_IAAC.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_IAAC_University_e57.zip'>IAAC</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_KADK-Courtyard.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_KADK_Courtyard_E57.zip'>KADK Courtyard</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_KADK-Festsalen.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_KADK-Festsalen_e57.zip'>KADK-Festsalen</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_KADK-Reception.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_KADK_Reception_E57.zip'>KADK-Reception</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_Kronborg.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_Kronborg_e57.zip'>Kronborg Castle</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_Marés.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_Marés_e57.zip'>Marés</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_NikolajKunsthal.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_NikolajKunsthal_e57.zip'>Nikolaj Kunsthal</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_PersistentModelling.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_PersistentModelling_e57.zip'>Persistent Modelling</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_Room-24-7.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_Room-24_7_e57.zip'>Room-24_7</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_StretchedSkin.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_StretchedSkin_e57.zip'>Stretched Skin</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_Tower.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_Tower_e57.zip'>Tower</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_UMTS_Exhibition.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_UMTS_Exhibition_E57.zip'>KADK_Exhibition_UMTS</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/DesignHub.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_DesignHub_e57.zip'>DesignHub</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/Nyborg.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/02_E57/CITA_Nyborg_E57.zip'>Nyborg Strand</a> </td><td>CITA </td></tr>
</tbody>
</table>
<h2>IFC E57</h2>
<table>
<thead>
<tr><th>image </th><th>name </th><th>author </th></tr>
</thead>
<tbody>
<tr><td> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/Autodesk_210-King_ifc.zip'>210-King</a> </td><td>Autodesk</td></tr>
<tr><td> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/LTU_A-House_2014-06-25_ifc.zip'>A House Scan June 2014</a> </td><td>LTU </td></tr>
<tr><td> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/LTU_A-House_2014-09-25_e57.zip'>A House Scan September 2014</a></td><td>LTU </td></tr>
<tr><td> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/CITA_Foundation-EDF_ifc.zip'>Foundation-EDF</a> </td><td>CITA </td></tr>
<tr><td> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/Plan3D_Haus30_e57.zip'>Haus30</a> </td><td>Plan3D </td></tr>
<tr><td> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/FOJAB_Landsarkivet_IFC.zip'>Landsarkivet</a> </td><td>FOJAB </td></tr>
<tr><td> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/CITA_Byg72_BasedOn_1st_Scan_06-2015_ifc.zip'>The Royal Danish Academy of Fine Arts
Schools of Architecture, Buiding 72 - Reconstructed BIM model from a Scan in June 2015</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/Autodesk_210-King.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/Autodesk_210-King_e57.zip'>210-King</a> </td><td>Autodesk</td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_Byg72_August.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/CITA_Byg72_2nd_Scan_08-2015_e57.zip'>The Royal Danish Academy of Fine Arts
Schools of Architecture, Building 72 - Scan August 2015</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_Byg72_June.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/CITA_Byg72_1st_Scan_06-2015_e57.zip'>The Royal Danish Academy of Fine Arts
Schools of Architecture, Building 72 - Scan June 2015</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_Byg72_September.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/CITA_Byg72_3rd_Scan_09-2015_e57.zip'>The Royal Danish Academy of Fine Arts
Schools of Architecture, Building72 - Scan September 2015</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/CITA_Foundation-EDF.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/CITA_Foundation-EDF_e57.zip'>Foundation-EDF</a> </td><td>CITA </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/FOJAB_Landsarkivet_2014.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/FOJAB_Landsarkivet_E57.zip'>Landsarkivet</a> </td><td>FOJAB </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/LTU_A-House_2014-06-25.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/LTU_A-House_2014-06-25_e57.zip'>A House Scan June 2014</a> </td><td>LTU </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/LTU_A-House_2014-09-25_ifc.zip-LTU_A-House_redesign.ifc_.jpg'/></td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/LTU_A-House_2014-09-25_ifc.zip'>A House Scan September 2014</a></td><td>LTU </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/LTU_A-House_2015-12-21.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/LTU_A-House_2015-12-21_e57.zip'>AHouse Scan
October 2015</a> </td><td>LTU </td></tr>
<tr><td><img src='https://duraark.github.io/website/wp-content/uploads/2016/01/Plan3D_Haus30_ifc.zip-Plan3D_Haus30.ifc_.jpg'/> </td><td><a href='https://tib.eu/data/duraark/BuildingData/03_IFC_E57/Plan3D_Haus30_ifc.zip'>Haus30</a> </td><td>Plan3D </td></tr>
</tbody>
</table>
</section>
</div>
</body>
</html>