urbanopt-geojson 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +24 -0
  3. data/.rakeTasks +7 -0
  4. data/.rdoc_options +43 -0
  5. data/.rspec +2 -0
  6. data/.rubocop.yml +10 -0
  7. data/.travis.yml +35 -0
  8. data/CHANGELOG.md +5 -0
  9. data/Gemfile +27 -0
  10. data/Jenkinsfile +10 -0
  11. data/LICENSE.md +27 -0
  12. data/RDOC_MAIN.md +48 -0
  13. data/README.md +40 -0
  14. data/Rakefile +45 -0
  15. data/deploy_docs.sh +4 -0
  16. data/doc_templates/LICENSE.md +27 -0
  17. data/doc_templates/README.md.erb +42 -0
  18. data/doc_templates/copyright_erb.txt +31 -0
  19. data/doc_templates/copyright_js.txt +4 -0
  20. data/doc_templates/copyright_ruby.txt +29 -0
  21. data/docs/.gitignore +3 -0
  22. data/docs/.vuepress/components/BuildingProperties.vue +12 -0
  23. data/docs/.vuepress/components/DistrictSystemProperties.vue +12 -0
  24. data/docs/.vuepress/components/ElectricalConnectorProperties.vue +12 -0
  25. data/docs/.vuepress/components/ElectricalJunctionProperties.vue +12 -0
  26. data/docs/.vuepress/components/InnerJsonSchema.vue +80 -0
  27. data/docs/.vuepress/components/JsonSchema.vue +12 -0
  28. data/docs/.vuepress/components/RegionProperties.vue +12 -0
  29. data/docs/.vuepress/components/SiteProperties.vue +12 -0
  30. data/docs/.vuepress/components/StaticLink.vue +8 -0
  31. data/docs/.vuepress/components/ThermalConnectorProperties.vue +12 -0
  32. data/docs/.vuepress/components/ThermalJunctionProperties.vue +12 -0
  33. data/docs/.vuepress/config.js +22 -0
  34. data/docs/.vuepress/highlight.js +8 -0
  35. data/docs/.vuepress/public/custom_rdoc_styles.css +64 -0
  36. data/docs/.vuepress/utils.js +17 -0
  37. data/docs/README.md +30 -0
  38. data/docs/doc/created.rid +0 -0
  39. data/docs/package-lock.json +11771 -0
  40. data/docs/package.json +22 -0
  41. data/docs/schemas/building-properties.md +3 -0
  42. data/docs/schemas/district-system-properties.md +3 -0
  43. data/docs/schemas/electrical-connector-properties.md +3 -0
  44. data/docs/schemas/electrical-junction-properties.md +3 -0
  45. data/docs/schemas/region-properties.md +3 -0
  46. data/docs/schemas/site-properties.md +3 -0
  47. data/docs/schemas/thermal-connector-properties.md +3 -0
  48. data/docs/schemas/thermal-junction-properties.md +3 -0
  49. data/lib/measures/.rubocop.yml +5 -0
  50. data/lib/measures/urban_geometry_creation/LICENSE.md +27 -0
  51. data/lib/measures/urban_geometry_creation/README.md +48 -0
  52. data/lib/measures/urban_geometry_creation/README.md.erb +42 -0
  53. data/lib/measures/urban_geometry_creation/measure.rb +199 -0
  54. data/lib/measures/urban_geometry_creation/measure.xml +139 -0
  55. data/lib/measures/urban_geometry_creation/tests/nrel_stm_footprints.geojson +3238 -0
  56. data/lib/measures/urban_geometry_creation/tests/shadowed_tests.rb +80 -0
  57. data/lib/measures/urban_geometry_creation/tests/urban_geometry_creation_test.rb +143 -0
  58. data/lib/measures/urban_geometry_creation_zoning/LICENSE.md +27 -0
  59. data/lib/measures/urban_geometry_creation_zoning/README.md +48 -0
  60. data/lib/measures/urban_geometry_creation_zoning/README.md.erb +42 -0
  61. data/lib/measures/urban_geometry_creation_zoning/measure.rb +203 -0
  62. data/lib/measures/urban_geometry_creation_zoning/measure.xml +133 -0
  63. data/lib/measures/urban_geometry_creation_zoning/tests/nrel_stm_footprints.geojson +3238 -0
  64. data/lib/measures/urban_geometry_creation_zoning/tests/urban_geometry_creation_test.rb +143 -0
  65. data/lib/urbanopt/geojson.rb +41 -0
  66. data/lib/urbanopt/geojson/building.rb +341 -0
  67. data/lib/urbanopt/geojson/district_system.rb +53 -0
  68. data/lib/urbanopt/geojson/extension.rb +63 -0
  69. data/lib/urbanopt/geojson/feature.rb +206 -0
  70. data/lib/urbanopt/geojson/geo_file.rb +154 -0
  71. data/lib/urbanopt/geojson/helper.rb +340 -0
  72. data/lib/urbanopt/geojson/logging.rb +46 -0
  73. data/lib/urbanopt/geojson/mapper_classes.rb +85 -0
  74. data/lib/urbanopt/geojson/model.rb +133 -0
  75. data/lib/urbanopt/geojson/region.rb +55 -0
  76. data/lib/urbanopt/geojson/schema/building_properties.json +358 -0
  77. data/lib/urbanopt/geojson/schema/district_system_properties.json +137 -0
  78. data/lib/urbanopt/geojson/schema/electrical_connector_properties.json +77 -0
  79. data/lib/urbanopt/geojson/schema/electrical_junction_properties.json +64 -0
  80. data/lib/urbanopt/geojson/schema/geojson_schema.json +323 -0
  81. data/lib/urbanopt/geojson/schema/region_properties.json +93 -0
  82. data/lib/urbanopt/geojson/schema/site_properties.json +87 -0
  83. data/lib/urbanopt/geojson/schema/thermal_connector_properties.json +107 -0
  84. data/lib/urbanopt/geojson/schema/thermal_junction_properties.json +83 -0
  85. data/lib/urbanopt/geojson/update_areas.rb +102 -0
  86. data/lib/urbanopt/geojson/validate_geojson.rb +147 -0
  87. data/lib/urbanopt/geojson/version.rb +35 -0
  88. data/lib/urbanopt/geojson/workflows/building.osw +187 -0
  89. data/lib/urbanopt/geojson/workflows/building.osw.out +2806 -0
  90. data/lib/urbanopt/geojson/workflows/district_system.osw +84 -0
  91. data/lib/urbanopt/geojson/workflows/district_system.osw.out +646 -0
  92. data/lib/urbanopt/geojson/zoning.rb +134 -0
  93. data/package-lock.json +3 -0
  94. data/urbanopt-geojson-gem.gemspec +39 -0
  95. metadata +238 -0
@@ -0,0 +1,3238 @@
1
+ {
2
+ "type": "FeatureCollection",
3
+ "features": [
4
+ {
5
+ "type": "Feature",
6
+ "geometry": {
7
+ "type": "Polygon",
8
+ "coordinates": [
9
+ [
10
+ [
11
+ -105.17262205481528,
12
+ 39.74200726814212
13
+ ],
14
+ [
15
+ -105.17227604985236,
16
+ 39.74207739085327
17
+ ],
18
+ [
19
+ -105.17228543758394,
20
+ 39.74211245218208
21
+ ],
22
+ [
23
+ -105.17263278365134,
24
+ 39.7420423295066
25
+ ],
26
+ [
27
+ -105.17262205481528,
28
+ 39.74200726814212
29
+ ]
30
+ ]
31
+ ]
32
+ },
33
+ "properties": {
34
+ "id": "59a9ce2b42f7d007c059d32e",
35
+ "source_id": "Bridge",
36
+ "source_name": "NREL_GDS",
37
+ "project_id": "59a9ccdf42f7d007c059d2ed",
38
+ "stroke": "#555555",
39
+ "stroke-width": 2,
40
+ "stroke-opacity": 1,
41
+ "fill": "#555555",
42
+ "fill-opacity": 0.5,
43
+ "name": "Bridge",
44
+ "maximum_roof_height": 20,
45
+ "floor_area": 2634.7594734229789,
46
+ "number_of_stories": 2,
47
+ "number_of_stories_above_ground": 2,
48
+ "building_type": "Office",
49
+ "surface_elevation": 5198,
50
+ "type": "Building",
51
+ "footprint_area": 1319,
52
+ "footprint_perimeter": 228,
53
+ "updated_at": "2017-09-01T21:17:07.590Z",
54
+ "created_at": "2017-09-01T21:16:27.788Z",
55
+ "height": 6,
56
+ "geometryType": "Polygon"
57
+ }
58
+ },
59
+ {
60
+ "type": "Feature",
61
+ "geometry": {
62
+ "type": "Polygon",
63
+ "coordinates": [
64
+ [
65
+ [
66
+ -105.1761558651924,
67
+ 39.74217020021416
68
+ ],
69
+ [
70
+ -105.1763167977333,
71
+ 39.74228982098384
72
+ ],
73
+ [
74
+ -105.17616927623748,
75
+ 39.74240944154582
76
+ ],
77
+ [
78
+ -105.1760110259056,
79
+ 39.74228775855852
80
+ ],
81
+ [
82
+ -105.1761558651924,
83
+ 39.74217020021416
84
+ ]
85
+ ]
86
+ ]
87
+ },
88
+ "properties": {
89
+ "id": "59a9ce2b42f7d007c059d302",
90
+ "source_id": "Vehicle Testing and Integration Facility",
91
+ "source_name": "NREL_GDS",
92
+ "project_id": "59a9ccdf42f7d007c059d2ed",
93
+ "stroke": "#555555",
94
+ "stroke-width": 2,
95
+ "stroke-opacity": 1,
96
+ "fill": "#555555",
97
+ "fill-opacity": 0.5,
98
+ "name": "Vehicle Testing and Integration Facility",
99
+ "maximum_roof_height": 10,
100
+ "floor_area": 3745.419332770663,
101
+ "number_of_stories": 1,
102
+ "number_of_stories_above_ground": 1,
103
+ "building_type": "Office",
104
+ "surface_elevation": 5198,
105
+ "type": "Building",
106
+ "footprint_area": 3750,
107
+ "footprint_perimeter": 245,
108
+ "updated_at": "2017-09-01T21:17:07.507Z",
109
+ "created_at": "2017-09-01T21:16:27.649Z",
110
+ "height": 3,
111
+ "geometryType": "Polygon"
112
+ }
113
+ },
114
+ {
115
+ "type": "Feature",
116
+ "geometry": {
117
+ "type": "Polygon",
118
+ "coordinates": [
119
+ [
120
+ [
121
+ -105.17245844006539,
122
+ 39.74217484067896
123
+ ],
124
+ [
125
+ -105.17247788608074,
126
+ 39.74223207305198
127
+ ],
128
+ [
129
+ -105.17240680754184,
130
+ 39.74224805685938
131
+ ],
132
+ [
133
+ -105.17239071428776,
134
+ 39.74219288692785
135
+ ],
136
+ [
137
+ -105.17245844006539,
138
+ 39.74217484067896
139
+ ]
140
+ ]
141
+ ]
142
+ },
143
+ "properties": {
144
+ "id": "59a9ce2b42f7d007c059d334",
145
+ "source_id": "Unknown East A",
146
+ "source_name": "NREL_GDS",
147
+ "project_id": "59a9ccdf42f7d007c059d2ed",
148
+ "stroke": "#555555",
149
+ "stroke-width": 2,
150
+ "stroke-opacity": 1,
151
+ "fill": "#ffffff",
152
+ "fill-opacity": 0.5,
153
+ "name": "Unknown East A",
154
+ "maximum_roof_height": 10,
155
+ "floor_area": 430.5300967424212,
156
+ "number_of_stories": 1,
157
+ "number_of_stories_above_ground": 1,
158
+ "building_type": "Office",
159
+ "surface_elevation": 5198,
160
+ "type": "Building",
161
+ "footprint_area": 431,
162
+ "footprint_perimeter": 83,
163
+ "updated_at": "2017-09-01T21:17:07.607Z",
164
+ "created_at": "2017-09-01T21:16:27.805Z",
165
+ "height": 3,
166
+ "geometryType": "Polygon"
167
+ }
168
+ },
169
+ {
170
+ "type": "Feature",
171
+ "geometry": {
172
+ "type": "Polygon",
173
+ "coordinates": [
174
+ [
175
+ [
176
+ -105.17401546239852,
177
+ 39.74219907421204
178
+ ],
179
+ [
180
+ -105.17401546239852,
181
+ 39.74227950885668
182
+ ],
183
+ [
184
+ -105.17385184764862,
185
+ 39.74227950885668
186
+ ],
187
+ [
188
+ -105.17385184764862,
189
+ 39.74219907421204
190
+ ],
191
+ [
192
+ -105.17401546239852,
193
+ 39.74219907421204
194
+ ]
195
+ ]
196
+ ]
197
+ },
198
+ "properties": {
199
+ "id": "59a9ce2b42f7d007c059d32c",
200
+ "source_id": "Unknown E",
201
+ "source_name": "NREL_GDS",
202
+ "project_id": "59a9ccdf42f7d007c059d2ed",
203
+ "stroke": "#555555",
204
+ "stroke-width": 2,
205
+ "stroke-opacity": 1,
206
+ "fill": "#ffffff",
207
+ "fill-opacity": 0.5,
208
+ "name": "Unknown E",
209
+ "maximum_roof_height": 10,
210
+ "floor_area": 1348.1148998492616,
211
+ "number_of_stories": 1,
212
+ "number_of_stories_above_ground": 1,
213
+ "building_type": "Nonrefrigerated warehouse",
214
+ "surface_elevation": 5198,
215
+ "type": "Building",
216
+ "footprint_area": 1350,
217
+ "footprint_perimeter": 151,
218
+ "updated_at": "2017-09-01T21:17:07.585Z",
219
+ "created_at": "2017-09-01T21:16:27.782Z",
220
+ "height": 3,
221
+ "geometryType": "Polygon"
222
+ }
223
+ },
224
+ {
225
+ "type": "Feature",
226
+ "geometry": {
227
+ "type": "Polygon",
228
+ "coordinates": [
229
+ [
230
+ [
231
+ -105.17327651381493,
232
+ 39.74229291462166
233
+ ],
234
+ [
235
+ -105.17333284020424,
236
+ 39.7424280033386
237
+ ],
238
+ [
239
+ -105.17317861318588,
240
+ 39.74246718932906
241
+ ],
242
+ [
243
+ -105.17313703894614,
244
+ 39.7423228197803
245
+ ],
246
+ [
247
+ -105.17327651381493,
248
+ 39.74229291462166
249
+ ]
250
+ ]
251
+ ]
252
+ },
253
+ "properties": {
254
+ "id": "59a9ce2b42f7d007c059d338",
255
+ "source_id": "Unknown East B",
256
+ "source_name": "NREL_GDS",
257
+ "project_id": "59a9ccdf42f7d007c059d2ed",
258
+ "stroke": "#555555",
259
+ "stroke-width": 2,
260
+ "stroke-opacity": 1,
261
+ "fill": "#ffffff",
262
+ "fill-opacity": 0.5,
263
+ "name": "Unknown East B",
264
+ "maximum_roof_height": 10,
265
+ "floor_area": 2275.182706273205,
266
+ "number_of_stories": 1,
267
+ "number_of_stories_above_ground": 1,
268
+ "building_type": "Nonrefrigerated warehouse",
269
+ "surface_elevation": 5198,
270
+ "type": "Building",
271
+ "footprint_area": 2278,
272
+ "footprint_perimeter": 192,
273
+ "updated_at": "2017-09-01T21:17:07.612Z",
274
+ "created_at": "2017-09-01T21:16:27.817Z",
275
+ "height": 3,
276
+ "geometryType": "Polygon"
277
+ }
278
+ },
279
+ {
280
+ "type": "Feature",
281
+ "geometry": {
282
+ "type": "Polygon",
283
+ "coordinates": [
284
+ [
285
+ [
286
+ -105.175901055336,
287
+ 39.74320450052181
288
+ ],
289
+ [
290
+ -105.17580986022948,
291
+ 39.74327874680614
292
+ ],
293
+ [
294
+ -105.1757763326168,
295
+ 39.74324987326062
296
+ ],
297
+ [
298
+ -105.17586819827558,
299
+ 39.743179751742619
300
+ ],
301
+ [
302
+ -105.175901055336,
303
+ 39.74320450052181
304
+ ]
305
+ ]
306
+ ]
307
+ },
308
+ "properties": {
309
+ "id": "59a9ce2b42f7d007c059d33c",
310
+ "source_id": "Unknown North A",
311
+ "source_name": "NREL_GDS",
312
+ "project_id": "59a9ccdf42f7d007c059d2ed",
313
+ "stroke": "#555555",
314
+ "stroke-width": 2,
315
+ "stroke-opacity": 1,
316
+ "fill": "#ffffff",
317
+ "fill-opacity": 0.5,
318
+ "name": "Unknown North A",
319
+ "maximum_roof_height": 10,
320
+ "floor_area": 496.8163421439877,
321
+ "number_of_stories": 1,
322
+ "number_of_stories_above_ground": 1,
323
+ "building_type": "Nonrefrigerated warehouse",
324
+ "surface_elevation": 5198,
325
+ "type": "Building",
326
+ "footprint_area": 497,
327
+ "footprint_perimeter": 101,
328
+ "updated_at": "2017-09-01T21:17:07.618Z",
329
+ "created_at": "2017-09-01T21:16:27.829Z",
330
+ "height": 3,
331
+ "geometryType": "Polygon"
332
+ }
333
+ },
334
+ {
335
+ "type": "Feature",
336
+ "geometry": {
337
+ "type": "Polygon",
338
+ "coordinates": [
339
+ [
340
+ [
341
+ -105.17925918102262,
342
+ 39.74054292463572
343
+ ],
344
+ [
345
+ -105.17926454544068,
346
+ 39.740773921734817
347
+ ],
348
+ [
349
+ -105.17882466316225,
350
+ 39.740778046675988
351
+ ],
352
+ [
353
+ -105.17883002758025,
354
+ 39.74068523544014
355
+ ],
356
+ [
357
+ -105.17877370119096,
358
+ 39.74069554780587
359
+ ],
360
+ [
361
+ -105.1787656545639,
362
+ 39.7405656118851
363
+ ],
364
+ [
365
+ -105.178781747818,
366
+ 39.740549112068098
367
+ ],
368
+ [
369
+ -105.17925918102262,
370
+ 39.74054292463572
371
+ ]
372
+ ]
373
+ ]
374
+ },
375
+ "properties": {
376
+ "id": "59a9ce2b42f7d007c059d306",
377
+ "source_id": "Thermal Test Facility",
378
+ "source_name": "NREL_GDS",
379
+ "project_id": "59a9ccdf42f7d007c059d2ed",
380
+ "stroke": "#555555",
381
+ "stroke-width": 2,
382
+ "stroke-opacity": 1,
383
+ "fill": "#555555",
384
+ "fill-opacity": 0.5,
385
+ "name": "Thermal Test Facility",
386
+ "maximum_roof_height": 10,
387
+ "floor_area": 11082.92532453453,
388
+ "number_of_stories": 1,
389
+ "number_of_stories_above_ground": 1,
390
+ "building_type": "Office",
391
+ "surface_elevation": 5198,
392
+ "type": "Building",
393
+ "footprint_area": 11097,
394
+ "footprint_perimeter": 447,
395
+ "updated_at": "2017-09-01T21:17:07.518Z",
396
+ "created_at": "2017-09-01T21:16:27.662Z",
397
+ "height": 3,
398
+ "geometryType": "Polygon"
399
+ }
400
+ },
401
+ {
402
+ "type": "Feature",
403
+ "geometry": {
404
+ "type": "Polygon",
405
+ "coordinates": [
406
+ [
407
+ [
408
+ -105.17867982387544,
409
+ 39.74227332157966
410
+ ],
411
+ [
412
+ -105.17869055271149,
413
+ 39.74257031025016
414
+ ],
415
+ [
416
+ -105.17862617969512,
417
+ 39.74257443508378
418
+ ],
419
+ [
420
+ -105.178604722023,
421
+ 39.74241356638913
422
+ ],
423
+ [
424
+ -105.17823457717894,
425
+ 39.74240944154582
426
+ ],
427
+ [
428
+ -105.17823457717894,
429
+ 39.74227332157966
430
+ ],
431
+ [
432
+ -105.17867982387544,
433
+ 39.74227332157966
434
+ ]
435
+ ]
436
+ ]
437
+ },
438
+ "properties": {
439
+ "id": "59a9ce2b42f7d007c059d308",
440
+ "source_id": "Solar Radiation Research Laboratory",
441
+ "source_name": "NREL_GDS",
442
+ "project_id": "59a9ccdf42f7d007c059d2ed",
443
+ "stroke": "#555555",
444
+ "stroke-width": 2,
445
+ "stroke-opacity": 1,
446
+ "fill": "#555555",
447
+ "fill-opacity": 0.5,
448
+ "name": "Solar Radiation Research Laboratory",
449
+ "maximum_roof_height": 10,
450
+ "floor_area": 7533.319698669211,
451
+ "number_of_stories": 1,
452
+ "number_of_stories_above_ground": 1,
453
+ "building_type": "Office",
454
+ "surface_elevation": 5198,
455
+ "type": "Building",
456
+ "footprint_area": 7543,
457
+ "footprint_perimeter": 464,
458
+ "updated_at": "2017-09-01T21:17:07.524Z",
459
+ "created_at": "2017-09-01T21:16:27.668Z",
460
+ "height": 3,
461
+ "geometryType": "Polygon"
462
+ }
463
+ },
464
+ {
465
+ "type": "Feature",
466
+ "geometry": {
467
+ "type": "Polygon",
468
+ "coordinates": [
469
+ [
470
+ [
471
+ -105.17843306064606,
472
+ 39.74274355305013
473
+ ],
474
+ [
475
+ -105.17843306064606,
476
+ 39.742838423922709
477
+ ],
478
+ [
479
+ -105.1782238483429,
480
+ 39.742838423922709
481
+ ],
482
+ [
483
+ -105.1782238483429,
484
+ 39.74274355305013
485
+ ],
486
+ [
487
+ -105.17843306064606,
488
+ 39.74274355305013
489
+ ]
490
+ ]
491
+ ]
492
+ },
493
+ "properties": {
494
+ "id": "59a9ce2b42f7d007c059d30a",
495
+ "source_id": "High Flux Solar Furnace",
496
+ "source_name": "NREL_GDS",
497
+ "project_id": "59a9ccdf42f7d007c059d2ed",
498
+ "stroke": "#555555",
499
+ "stroke-width": 2,
500
+ "stroke-opacity": 1,
501
+ "fill": "#555555",
502
+ "fill-opacity": 0.5,
503
+ "name": "High Flux Solar Furnace",
504
+ "maximum_roof_height": 10,
505
+ "floor_area": 2033.1901736851845,
506
+ "number_of_stories": 1,
507
+ "number_of_stories_above_ground": 1,
508
+ "building_type": "Nonrefrigerated warehouse",
509
+ "surface_elevation": 5198,
510
+ "type": "Building",
511
+ "footprint_area": 2036,
512
+ "footprint_perimeter": 187,
513
+ "updated_at": "2017-09-01T21:17:07.529Z",
514
+ "created_at": "2017-09-01T21:16:27.674Z",
515
+ "height": 3,
516
+ "geometryType": "Polygon"
517
+ }
518
+ },
519
+ {
520
+ "type": "Feature",
521
+ "geometry": {
522
+ "type": "Polygon",
523
+ "coordinates": [
524
+ [
525
+ [
526
+ -105.1780253648758,
527
+ 39.74040061353742
528
+ ],
529
+ [
530
+ -105.1780253648758,
531
+ 39.740536737202777
532
+ ],
533
+ [
534
+ -105.17805755138396,
535
+ 39.740536737202777
536
+ ],
537
+ [
538
+ -105.17805755138396,
539
+ 39.74060273645887
540
+ ],
541
+ [
542
+ -105.17801463603972,
543
+ 39.74059861150721
544
+ ],
545
+ [
546
+ -105.17801463603972,
547
+ 39.74062129873826
548
+ ],
549
+ [
550
+ -105.17795026302336,
551
+ 39.74067286059923
552
+ ],
553
+ [
554
+ -105.17771154642104,
555
+ 39.74066667317794
556
+ ],
557
+ [
558
+ -105.17771422863008,
559
+ 39.74061717378771
560
+ ],
561
+ [
562
+ -105.17766326665879,
563
+ 39.740613048836937
564
+ ],
565
+ [
566
+ -105.17766326665879,
567
+ 39.74053879968045
568
+ ],
569
+ [
570
+ -105.17759084701538,
571
+ 39.74054292463572
572
+ ],
573
+ [
574
+ -105.17758011817934,
575
+ 39.74038617616321
576
+ ],
577
+ [
578
+ -105.1780253648758,
579
+ 39.74040061353742
580
+ ]
581
+ ]
582
+ ]
583
+ },
584
+ "properties": {
585
+ "id": "59a9ce2b42f7d007c059d304",
586
+ "source_id": "Outdoor Test Facility",
587
+ "source_name": "NREL_GDS",
588
+ "project_id": "59a9ccdf42f7d007c059d2ed",
589
+ "stroke": "#555555",
590
+ "stroke-width": 2,
591
+ "stroke-opacity": 1,
592
+ "fill": "#555555",
593
+ "fill-opacity": 0.5,
594
+ "name": "Outdoor Test Facility",
595
+ "maximum_roof_height": 20,
596
+ "floor_area": 22262.837177848254,
597
+ "number_of_stories": 2,
598
+ "number_of_stories_above_ground": 2,
599
+ "building_type": "Office",
600
+ "surface_elevation": 5198,
601
+ "type": "Building",
602
+ "footprint_area": 11145,
603
+ "footprint_perimeter": 459,
604
+ "updated_at": "2017-09-01T21:17:07.513Z",
605
+ "created_at": "2017-09-01T21:16:27.656Z",
606
+ "height": 6,
607
+ "geometryType": "Polygon"
608
+ }
609
+ },
610
+ {
611
+ "type": "Feature",
612
+ "geometry": {
613
+ "type": "Polygon",
614
+ "coordinates": [
615
+ [
616
+ [
617
+ -105.17866507172585,
618
+ 39.740657392044997
619
+ ],
620
+ [
621
+ -105.17866507172585,
622
+ 39.740707922642688
623
+ ],
624
+ [
625
+ -105.17861545085909,
626
+ 39.740707922642688
627
+ ],
628
+ [
629
+ -105.17861545085909,
630
+ 39.740657392044997
631
+ ],
632
+ [
633
+ -105.17866507172585,
634
+ 39.740657392044997
635
+ ]
636
+ ]
637
+ ]
638
+ },
639
+ "properties": {
640
+ "id": "59a9ce2b42f7d007c059d326",
641
+ "source_id": "Unknown West F",
642
+ "source_name": "NREL_GDS",
643
+ "project_id": "59a9ccdf42f7d007c059d2ed",
644
+ "stroke": "#555555",
645
+ "stroke-width": 2,
646
+ "stroke-opacity": 1,
647
+ "fill": "#ffffff",
648
+ "fill-opacity": 0.5,
649
+ "name": "Unknown West F",
650
+ "maximum_roof_height": 10,
651
+ "floor_area": 256.85601735902869,
652
+ "number_of_stories": 1,
653
+ "number_of_stories_above_ground": 1,
654
+ "building_type": "Nonrefrigerated warehouse",
655
+ "surface_elevation": 5198,
656
+ "type": "Building",
657
+ "footprint_area": 257,
658
+ "footprint_perimeter": 65,
659
+ "updated_at": "2017-09-01T21:17:07.573Z",
660
+ "created_at": "2017-09-01T21:16:27.764Z",
661
+ "height": 3,
662
+ "geometryType": "Polygon"
663
+ }
664
+ },
665
+ {
666
+ "type": "Feature",
667
+ "geometry": {
668
+ "type": "Polygon",
669
+ "coordinates": [
670
+ [
671
+ [
672
+ -105.179053992033,
673
+ 39.74086363914935
674
+ ],
675
+ [
676
+ -105.179053992033,
677
+ 39.74091829452857
678
+ ],
679
+ [
680
+ -105.17897620797156,
681
+ 39.74091829452857
682
+ ],
683
+ [
684
+ -105.17897620797156,
685
+ 39.74086363914935
686
+ ],
687
+ [
688
+ -105.179053992033,
689
+ 39.74086363914935
690
+ ]
691
+ ]
692
+ ]
693
+ },
694
+ "properties": {
695
+ "id": "59a9ce2b42f7d007c059d332",
696
+ "source_id": "Unknown West E",
697
+ "source_name": "NREL_GDS",
698
+ "project_id": "59a9ccdf42f7d007c059d2ed",
699
+ "stroke": "#555555",
700
+ "stroke-width": 2,
701
+ "stroke-opacity": 1,
702
+ "fill": "#ffffff",
703
+ "fill-opacity": 0.5,
704
+ "name": "Unknown West E",
705
+ "maximum_roof_height": 10,
706
+ "floor_area": 435.5050531914963,
707
+ "number_of_stories": 1,
708
+ "number_of_stories_above_ground": 1,
709
+ "building_type": "Nonrefrigerated warehouse",
710
+ "surface_elevation": 5198,
711
+ "type": "Building",
712
+ "footprint_area": 436,
713
+ "footprint_perimeter": 84,
714
+ "updated_at": "2017-09-01T21:17:07.602Z",
715
+ "created_at": "2017-09-01T21:16:27.799Z",
716
+ "height": 3,
717
+ "geometryType": "Polygon"
718
+ }
719
+ },
720
+ {
721
+ "type": "Feature",
722
+ "geometry": {
723
+ "type": "Polygon",
724
+ "coordinates": [
725
+ [
726
+ [
727
+ -105.17824999988078,
728
+ 39.742583715958577
729
+ ],
730
+ [
731
+ -105.17824999988078,
732
+ 39.74261826142586
733
+ ],
734
+ [
735
+ -105.17818696796894,
736
+ 39.74261826142586
737
+ ],
738
+ [
739
+ -105.17818696796894,
740
+ 39.742583715958577
741
+ ],
742
+ [
743
+ -105.17824999988078,
744
+ 39.742583715958577
745
+ ]
746
+ ]
747
+ ]
748
+ },
749
+ "properties": {
750
+ "id": "59a9ce2b42f7d007c059d33e",
751
+ "source_id": "Unknown North B",
752
+ "source_name": "NREL_GDS",
753
+ "project_id": "59a9ccdf42f7d007c059d2ed",
754
+ "stroke": "#555555",
755
+ "stroke-width": 2,
756
+ "stroke-opacity": 1,
757
+ "fill": "#ffffff",
758
+ "fill-opacity": 0.5,
759
+ "name": "Unknown North B",
760
+ "maximum_roof_height": 10,
761
+ "floor_area": 223.0543089454484,
762
+ "number_of_stories": 1,
763
+ "number_of_stories_above_ground": 1,
764
+ "building_type": "Nonrefrigerated warehouse",
765
+ "surface_elevation": 5198,
766
+ "type": "Building",
767
+ "footprint_area": 223,
768
+ "footprint_perimeter": 61,
769
+ "updated_at": "2017-09-01T21:17:07.623Z",
770
+ "created_at": "2017-09-01T21:16:27.835Z",
771
+ "height": 3,
772
+ "geometryType": "Polygon"
773
+ }
774
+ },
775
+ {
776
+ "type": "Feature",
777
+ "geometry": {
778
+ "type": "Polygon",
779
+ "coordinates": [
780
+ [
781
+ [
782
+ -105.17821244895458,
783
+ 39.74268374308511
784
+ ],
785
+ [
786
+ -105.17822451889514,
787
+ 39.742715710486638
788
+ ],
789
+ [
790
+ -105.17816215753556,
791
+ 39.74273014737284
792
+ ],
793
+ [
794
+ -105.17815075814724,
795
+ 39.74269611756492
796
+ ],
797
+ [
798
+ -105.17821244895458,
799
+ 39.74268374308511
800
+ ]
801
+ ]
802
+ ]
803
+ },
804
+ "properties": {
805
+ "id": "59a9ce2b42f7d007c059d340",
806
+ "source_id": "Unknown North C",
807
+ "source_name": "NREL_GDS",
808
+ "project_id": "59a9ccdf42f7d007c059d2ed",
809
+ "stroke": "#555555",
810
+ "stroke-width": 2,
811
+ "stroke-opacity": 1,
812
+ "fill": "#ffffff",
813
+ "fill-opacity": 0.5,
814
+ "name": "Unknown North C",
815
+ "maximum_roof_height": 10,
816
+ "floor_area": 225.7807088469266,
817
+ "number_of_stories": 1,
818
+ "number_of_stories_above_ground": 1,
819
+ "building_type": "Nonrefrigerated warehouse",
820
+ "surface_elevation": 5198,
821
+ "type": "Building",
822
+ "footprint_area": 226,
823
+ "footprint_perimeter": 61,
824
+ "updated_at": "2017-09-01T21:17:07.629Z",
825
+ "created_at": "2017-09-01T21:16:27.842Z",
826
+ "height": 3,
827
+ "geometryType": "Polygon"
828
+ }
829
+ },
830
+ {
831
+ "type": "Feature",
832
+ "geometry": {
833
+ "type": "Polygon",
834
+ "coordinates": [
835
+ [
836
+ [
837
+ -105.17904192209244,
838
+ 39.743279778003969
839
+ ],
840
+ [
841
+ -105.17904192209244,
842
+ 39.74331586991826
843
+ ],
844
+ [
845
+ -105.17895743250844,
846
+ 39.74331586991826
847
+ ],
848
+ [
849
+ -105.17895743250844,
850
+ 39.743279778003969
851
+ ],
852
+ [
853
+ -105.17904192209244,
854
+ 39.743279778003969
855
+ ]
856
+ ]
857
+ ]
858
+ },
859
+ "properties": {
860
+ "id": "59a9ce2b42f7d007c059d342",
861
+ "source_id": "Unknown North D",
862
+ "source_name": "NREL_GDS",
863
+ "project_id": "59a9ccdf42f7d007c059d2ed",
864
+ "stroke": "#555555",
865
+ "stroke-width": 2,
866
+ "stroke-opacity": 1,
867
+ "fill": "#ffffff",
868
+ "fill-opacity": 0.5,
869
+ "name": "Unknown North D",
870
+ "maximum_roof_height": 10,
871
+ "floor_area": 312.36893155319839,
872
+ "number_of_stories": 1,
873
+ "number_of_stories_above_ground": 1,
874
+ "building_type": "Nonrefrigerated warehouse",
875
+ "surface_elevation": 5198,
876
+ "type": "Building",
877
+ "footprint_area": 313,
878
+ "footprint_perimeter": 74,
879
+ "updated_at": "2017-09-01T21:17:07.635Z",
880
+ "created_at": "2017-09-01T21:16:27.850Z",
881
+ "height": 3,
882
+ "geometryType": "Polygon"
883
+ }
884
+ },
885
+ {
886
+ "type": "Feature",
887
+ "geometry": {
888
+ "type": "Polygon",
889
+ "coordinates": [
890
+ [
891
+ [
892
+ -105.17619609832762,
893
+ 39.738416477469318
894
+ ],
895
+ [
896
+ -105.17618268728256,
897
+ 39.73851960445191
898
+ ],
899
+ [
900
+ -105.1759573817253,
901
+ 39.738418540010489
902
+ ],
903
+ [
904
+ -105.17601907253264,
905
+ 39.73834222594624
906
+ ],
907
+ [
908
+ -105.17619609832762,
909
+ 39.738416477469318
910
+ ]
911
+ ]
912
+ ]
913
+ },
914
+ "properties": {
915
+ "id": "59a9ce2b42f7d007c059d300",
916
+ "source_id": "South Entrance",
917
+ "source_name": "NREL_GDS",
918
+ "project_id": "59a9ccdf42f7d007c059d2ed",
919
+ "stroke": "#555555",
920
+ "stroke-width": 2,
921
+ "stroke-opacity": 1,
922
+ "fill": "#555555",
923
+ "fill-opacity": 0.5,
924
+ "name": "South Entrance",
925
+ "maximum_roof_height": 10,
926
+ "floor_area": 2186.1813555730607,
927
+ "number_of_stories": 1,
928
+ "number_of_stories_above_ground": 1,
929
+ "building_type": "Vacant",
930
+ "surface_elevation": 5198,
931
+ "type": "Building",
932
+ "footprint_area": 2189,
933
+ "footprint_perimeter": 201,
934
+ "updated_at": "2017-09-01T21:17:07.502Z",
935
+ "created_at": "2017-09-01T21:16:27.643Z",
936
+ "height": 3,
937
+ "geometryType": "Polygon"
938
+ }
939
+ },
940
+ {
941
+ "type": "Feature",
942
+ "geometry": {
943
+ "type": "Polygon",
944
+ "coordinates": [
945
+ [
946
+ [
947
+ -105.1741737127304,
948
+ 39.73852579206593
949
+ ],
950
+ [
951
+ -105.17416566610337,
952
+ 39.738688732369357
953
+ ],
954
+ [
955
+ -105.17355412244798,
956
+ 39.73868460730315
957
+ ],
958
+ [
959
+ -105.17355680465696,
960
+ 39.73888054767585
961
+ ],
962
+ [
963
+ -105.1741683483124,
964
+ 39.73887848514855
965
+ ],
966
+ [
967
+ -105.17418712377548,
968
+ 39.73852785460386
969
+ ],
970
+ [
971
+ -105.17437756061556,
972
+ 39.738531979679468
973
+ ],
974
+ [
975
+ -105.17438292503359,
976
+ 39.739191988595539
977
+ ],
978
+ [
979
+ -105.1721566915512,
980
+ 39.73919611363141
981
+ ],
982
+ [
983
+ -105.17216205596924,
984
+ 39.73851135429899
985
+ ],
986
+ [
987
+ -105.17306327819826,
988
+ 39.73852166698998
989
+ ],
990
+ [
991
+ -105.1730579137802,
992
+ 39.738694919968228
993
+ ],
994
+ [
995
+ -105.17243832349776,
996
+ 39.73868666983629
997
+ ],
998
+ [
999
+ -105.17243832349776,
1000
+ 39.73886817251096
1001
+ ],
1002
+ [
1003
+ -105.1730713248253,
1004
+ 39.73887436009366
1005
+ ],
1006
+ [
1007
+ -105.1730713248253,
1008
+ 39.73852166698998
1009
+ ],
1010
+ [
1011
+ -105.17324030399324,
1012
+ 39.738523729528
1013
+ ],
1014
+ [
1015
+ -105.17324030399324,
1016
+ 39.73857735549478
1017
+ ],
1018
+ [
1019
+ -105.17329931259154,
1020
+ 39.73858560563983
1021
+ ],
1022
+ [
1023
+ -105.17330467700958,
1024
+ 39.738523729528
1025
+ ],
1026
+ [
1027
+ -105.1741737127304,
1028
+ 39.73852579206593
1029
+ ]
1030
+ ]
1031
+ ]
1032
+ },
1033
+ "properties": {
1034
+ "id": "59a9ce2b42f7d007c059d2fe",
1035
+ "source_id": "NREL Employee Parking Garage",
1036
+ "source_name": "NREL_GDS",
1037
+ "project_id": "59a9ccdf42f7d007c059d2ed",
1038
+ "stroke": "#555555",
1039
+ "stroke-width": 2,
1040
+ "stroke-opacity": 1,
1041
+ "fill": "#555555",
1042
+ "fill-opacity": 0.5,
1043
+ "name": "NREL Employee Parking Garage",
1044
+ "maximum_roof_height": 50,
1045
+ "floor_area": 641495.5237569604,
1046
+ "number_of_stories": 5,
1047
+ "number_of_stories_above_ground": 5,
1048
+ "building_type": "Vacant",
1049
+ "surface_elevation": 5198,
1050
+ "type": "Building",
1051
+ "footprint_area": 128457,
1052
+ "footprint_perimeter": 2987,
1053
+ "updated_at": "2017-09-01T21:17:07.496Z",
1054
+ "created_at": "2017-09-01T21:16:27.637Z",
1055
+ "height": 15,
1056
+ "geometryType": "Polygon"
1057
+ }
1058
+ },
1059
+ {
1060
+ "type": "Feature",
1061
+ "geometry": {
1062
+ "type": "Polygon",
1063
+ "coordinates": [
1064
+ [
1065
+ [
1066
+ -105.17319738864896,
1067
+ 39.74028511445897
1068
+ ],
1069
+ [
1070
+ -105.17319738864896,
1071
+ 39.740433613238597
1072
+ ],
1073
+ [
1074
+ -105.17305254936218,
1075
+ 39.74044186316138
1076
+ ],
1077
+ [
1078
+ -105.17305254936218,
1079
+ 39.74047898780182
1080
+ ],
1081
+ [
1082
+ -105.17287015914916,
1083
+ 39.74049136267749
1084
+ ],
1085
+ [
1086
+ -105.17284333705902,
1087
+ 39.740433613238597
1088
+ ],
1089
+ [
1090
+ -105.17259657382964,
1091
+ 39.740483112760617
1092
+ ],
1093
+ [
1094
+ -105.1725536584854,
1095
+ 39.74034698898933
1096
+ ],
1097
+ [
1098
+ -105.1728057861328,
1099
+ 39.74030161433919
1100
+ ],
1101
+ [
1102
+ -105.17278969287873,
1103
+ 39.74026448960319
1104
+ ],
1105
+ [
1106
+ -105.17290234565736,
1107
+ 39.74026448960319
1108
+ ],
1109
+ [
1110
+ -105.17290234565736,
1111
+ 39.74029748936951
1112
+ ],
1113
+ [
1114
+ -105.17319738864896,
1115
+ 39.74028511445897
1116
+ ]
1117
+ ]
1118
+ ]
1119
+ },
1120
+ "properties": {
1121
+ "id": "59a9ce2b42f7d007c059d2fa",
1122
+ "source_id": "Cafe",
1123
+ "source_name": "NREL_GDS",
1124
+ "project_id": "59a9ccdf42f7d007c059d2ed",
1125
+ "stroke": "#555555",
1126
+ "stroke-width": 2,
1127
+ "stroke-opacity": 1,
1128
+ "fill": "#555555",
1129
+ "fill-opacity": 0.5,
1130
+ "name": "Cafe",
1131
+ "maximum_roof_height": 10,
1132
+ "floor_area": 10476.075491518066,
1133
+ "number_of_stories": 1,
1134
+ "number_of_stories_above_ground": 1,
1135
+ "building_type": "Food service",
1136
+ "surface_elevation": 5198,
1137
+ "type": "Building",
1138
+ "footprint_area": 10489,
1139
+ "footprint_perimeter": 519,
1140
+ "updated_at": "2017-09-01T21:17:07.484Z",
1141
+ "created_at": "2017-09-01T21:16:27.622Z",
1142
+ "height": 3,
1143
+ "geometryType": "Polygon"
1144
+ }
1145
+ },
1146
+ {
1147
+ "type": "Feature",
1148
+ "geometry": {
1149
+ "type": "Polygon",
1150
+ "coordinates": [
1151
+ [
1152
+ [
1153
+ -105.17535656690598,
1154
+ 39.74076567185173
1155
+ ],
1156
+ [
1157
+ -105.175541639328,
1158
+ 39.741361723361027
1159
+ ],
1160
+ [
1161
+ -105.17560064792632,
1162
+ 39.74134728618816
1163
+ ],
1164
+ [
1165
+ -105.17561942338944,
1166
+ 39.741407097313189
1167
+ ],
1168
+ [
1169
+ -105.17463505268096,
1170
+ 39.74161127972826
1171
+ ],
1172
+ [
1173
+ -105.17458677291869,
1174
+ 39.74145247123556
1175
+ ],
1176
+ [
1177
+ -105.17438024282456,
1178
+ 39.74149784512795
1179
+ ],
1180
+ [
1181
+ -105.17425417900084,
1182
+ 39.741095666403968
1183
+ ],
1184
+ [
1185
+ -105.17431318759916,
1186
+ 39.741087416559398
1187
+ ],
1188
+ [
1189
+ -105.17435878515242,
1190
+ 39.74118641462883
1191
+ ],
1192
+ [
1193
+ -105.17454385757448,
1194
+ 39.741155477747387
1195
+ ],
1196
+ [
1197
+ -105.17447948455808,
1198
+ 39.74094304411997
1199
+ ],
1200
+ [
1201
+ -105.17476379871369,
1202
+ 39.74088941999406
1203
+ ],
1204
+ [
1205
+ -105.17474770545958,
1206
+ 39.74082960841969
1207
+ ],
1208
+ [
1209
+ -105.17518222332,
1210
+ 39.74074710961125
1211
+ ],
1212
+ [
1213
+ -105.17519563436508,
1214
+ 39.74079660890817
1215
+ ],
1216
+ [
1217
+ -105.17535656690598,
1218
+ 39.74076567185173
1219
+ ]
1220
+ ]
1221
+ ]
1222
+ },
1223
+ "properties": {
1224
+ "id": "59a9ce2b42f7d007c059d2fc",
1225
+ "source_id": "Field Test Laboratory Building",
1226
+ "source_name": "NREL_GDS",
1227
+ "project_id": "59a9ccdf42f7d007c059d2ed",
1228
+ "stroke": "#555555",
1229
+ "stroke-width": 2,
1230
+ "stroke-opacity": 1,
1231
+ "fill": "#555555",
1232
+ "fill-opacity": 0.5,
1233
+ "name": "Field Test Laboratory Building",
1234
+ "maximum_roof_height": 20,
1235
+ "floor_area": 150453.497095182,
1236
+ "number_of_stories": 2,
1237
+ "number_of_stories_above_ground": 2,
1238
+ "building_type": "Office",
1239
+ "surface_elevation": 5198,
1240
+ "type": "Building",
1241
+ "footprint_area": 75320,
1242
+ "footprint_perimeter": 1304,
1243
+ "updated_at": "2017-09-01T21:17:07.490Z",
1244
+ "created_at": "2017-09-01T21:16:27.629Z",
1245
+ "height": 6,
1246
+ "geometryType": "Polygon"
1247
+ }
1248
+ },
1249
+ {
1250
+ "type": "Feature",
1251
+ "geometry": {
1252
+ "type": "Polygon",
1253
+ "coordinates": [
1254
+ [
1255
+ [
1256
+ -105.17348170280458,
1257
+ 39.741225601325258
1258
+ ],
1259
+ [
1260
+ -105.17358362674712,
1261
+ 39.74150609492338
1262
+ ],
1263
+ [
1264
+ -105.1737579703331,
1265
+ 39.741466908386318
1266
+ ],
1267
+ [
1268
+ -105.17382770776749,
1269
+ 39.74165665351609
1270
+ ],
1271
+ [
1272
+ -105.17373114824297,
1273
+ 39.741675215511609
1274
+ ],
1275
+ [
1276
+ -105.17373919487,
1277
+ 39.74169790238824
1278
+ ],
1279
+ [
1280
+ -105.17349779605864,
1281
+ 39.74174946344368
1282
+ ],
1283
+ [
1284
+ -105.1735246181488,
1285
+ 39.741846398123417
1286
+ ],
1287
+ [
1288
+ -105.17311692237854,
1289
+ 39.74193714535966
1290
+ ],
1291
+ [
1292
+ -105.17314106225968,
1293
+ 39.74203407977541
1294
+ ],
1295
+ [
1296
+ -105.17282992601396,
1297
+ 39.74210007759743
1298
+ ],
1299
+ [
1300
+ -105.17285943031313,
1301
+ 39.74221144877893
1302
+ ],
1303
+ [
1304
+ -105.17251074314116,
1305
+ 39.74228363370776
1306
+ ],
1307
+ [
1308
+ -105.172478556633,
1309
+ 39.742168137785288
1310
+ ],
1311
+ [
1312
+ -105.172658264637,
1313
+ 39.74213513891473
1314
+ ],
1315
+ [
1316
+ -105.17259389162062,
1317
+ 39.74191858343471
1318
+ ],
1319
+ [
1320
+ -105.17248392105104,
1321
+ 39.741941270231169
1322
+ ],
1323
+ [
1324
+ -105.17239540815352,
1325
+ 39.74166077840448
1326
+ ],
1327
+ [
1328
+ -105.17275482416152,
1329
+ 39.74158859282312
1330
+ ],
1331
+ [
1332
+ -105.17282724380492,
1333
+ 39.74172471414187
1334
+ ],
1335
+ [
1336
+ -105.17289966344832,
1337
+ 39.741669028180357
1338
+ ],
1339
+ [
1340
+ -105.1729828119278,
1341
+ 39.74161746706474
1342
+ ],
1343
+ [
1344
+ -105.17310082912444,
1345
+ 39.74158240548408
1346
+ ],
1347
+ [
1348
+ -105.17319738864896,
1349
+ 39.74155765612227
1350
+ ],
1351
+ [
1352
+ -105.1731088757515,
1353
+ 39.74129778728684
1354
+ ],
1355
+ [
1356
+ -105.17348170280458,
1357
+ 39.741225601325258
1358
+ ]
1359
+ ]
1360
+ ]
1361
+ },
1362
+ "properties": {
1363
+ "id": "59a9ce2b42f7d007c059d2f8",
1364
+ "source_id": "Solar Energy Research Facility",
1365
+ "source_name": "NREL_GDS",
1366
+ "project_id": "59a9ccdf42f7d007c059d2ed",
1367
+ "stroke": "#555555",
1368
+ "stroke-width": 2,
1369
+ "stroke-opacity": 1,
1370
+ "fill": "#555555",
1371
+ "fill-opacity": 0.5,
1372
+ "name": "Solar Energy Research Facility",
1373
+ "maximum_roof_height": 20,
1374
+ "floor_area": 129822.68155033072,
1375
+ "number_of_stories": 2,
1376
+ "number_of_stories_above_ground": 2,
1377
+ "building_type": "Office",
1378
+ "surface_elevation": 5198,
1379
+ "type": "Building",
1380
+ "footprint_area": 64992,
1381
+ "footprint_perimeter": 1562,
1382
+ "updated_at": "2017-09-01T21:17:07.478Z",
1383
+ "created_at": "2017-09-01T21:16:27.616Z",
1384
+ "height": 6,
1385
+ "geometryType": "Polygon"
1386
+ }
1387
+ },
1388
+ {
1389
+ "type": "Feature",
1390
+ "geometry": {
1391
+ "type": "Polygon",
1392
+ "coordinates": [
1393
+ [
1394
+ [
1395
+ -105.17447143793108,
1396
+ 39.74164221640504
1397
+ ],
1398
+ [
1399
+ -105.17454922199248,
1400
+ 39.74171852681502
1401
+ ],
1402
+ [
1403
+ -105.1743695139885,
1404
+ 39.741844335684849
1405
+ ],
1406
+ [
1407
+ -105.1742836833,
1408
+ 39.74176390053228
1409
+ ],
1410
+ [
1411
+ -105.17447143793108,
1412
+ 39.74164221640504
1413
+ ]
1414
+ ]
1415
+ ]
1416
+ },
1417
+ "properties": {
1418
+ "id": "59a9ce2b42f7d007c059d32a",
1419
+ "source_id": "Unknown D",
1420
+ "source_name": "NREL_GDS",
1421
+ "project_id": "59a9ccdf42f7d007c059d2ed",
1422
+ "stroke": "#555555",
1423
+ "stroke-width": 2,
1424
+ "stroke-opacity": 1,
1425
+ "fill": "#ffffff",
1426
+ "fill-opacity": 0.5,
1427
+ "name": "Unknown D",
1428
+ "maximum_roof_height": 10,
1429
+ "floor_area": 2512.0969739778945,
1430
+ "number_of_stories": 1,
1431
+ "number_of_stories_above_ground": 1,
1432
+ "building_type": "Nonrefrigerated warehouse",
1433
+ "surface_elevation": 5198,
1434
+ "type": "Building",
1435
+ "footprint_area": 2515,
1436
+ "footprint_perimeter": 211,
1437
+ "updated_at": "2017-09-01T21:17:07.579Z",
1438
+ "created_at": "2017-09-01T21:16:27.776Z",
1439
+ "height": 3,
1440
+ "geometryType": "Polygon"
1441
+ }
1442
+ },
1443
+ {
1444
+ "type": "Feature",
1445
+ "geometry": {
1446
+ "type": "Polygon",
1447
+ "coordinates": [
1448
+ [
1449
+ [
1450
+ -105.17591714859008,
1451
+ 39.73855879266489
1452
+ ],
1453
+ [
1454
+ -105.1760298013687,
1455
+ 39.73860829353356
1456
+ ],
1457
+ [
1458
+ -105.17607808113096,
1459
+ 39.73864541916174
1460
+ ],
1461
+ [
1462
+ -105.17610490322112,
1463
+ 39.738701107566559
1464
+ ],
1465
+ [
1466
+ -105.17610490322112,
1467
+ 39.73944774035135
1468
+ ],
1469
+ [
1470
+ -105.17468333244324,
1471
+ 39.73944774035135
1472
+ ],
1473
+ [
1474
+ -105.17468333244324,
1475
+ 39.73855466759088
1476
+ ],
1477
+ [
1478
+ -105.17591714859008,
1479
+ 39.73855879266489
1480
+ ]
1481
+ ]
1482
+ ]
1483
+ },
1484
+ "properties": {
1485
+ "id": "59a9ce2b42f7d007c059d346",
1486
+ "source_id": "South Parking",
1487
+ "source_name": "NREL_GDS",
1488
+ "project_id": "59a9ccdf42f7d007c059d2ed",
1489
+ "stroke": "#555555",
1490
+ "stroke-width": 2,
1491
+ "stroke-opacity": 1,
1492
+ "fill": "#ffffff",
1493
+ "fill-opacity": 0.5,
1494
+ "name": "South Parking",
1495
+ "maximum_roof_height": 10,
1496
+ "floor_area": 128781.11978772244,
1497
+ "number_of_stories": 1,
1498
+ "number_of_stories_above_ground": 1,
1499
+ "building_type": "Vacant",
1500
+ "surface_elevation": 5198,
1501
+ "type": "Building",
1502
+ "footprint_area": 128940,
1503
+ "footprint_perimeter": 1422,
1504
+ "updated_at": "2017-09-01T21:17:07.640Z",
1505
+ "created_at": "2017-09-01T21:16:27.866Z",
1506
+ "height": 3,
1507
+ "geometryType": "Polygon"
1508
+ }
1509
+ },
1510
+ {
1511
+ "type": "Feature",
1512
+ "geometry": {
1513
+ "type": "Polygon",
1514
+ "coordinates": [
1515
+ [
1516
+ [
1517
+ -105.17225056886672,
1518
+ 39.74199695597272
1519
+ ],
1520
+ [
1521
+ -105.17231494188308,
1522
+ 39.74220732392354
1523
+ ],
1524
+ [
1525
+ -105.17237931489946,
1526
+ 39.74219494935599
1527
+ ],
1528
+ [
1529
+ -105.17240345478058,
1530
+ 39.74227538400541
1531
+ ],
1532
+ [
1533
+ -105.17234176397324,
1534
+ 39.74228982098384
1535
+ ],
1536
+ [
1537
+ -105.17234981060028,
1538
+ 39.74231663250717
1539
+ ],
1540
+ [
1541
+ -105.17230957746505,
1542
+ 39.742298070684459
1543
+ ],
1544
+ [
1545
+ -105.17225593328476,
1546
+ 39.74228775855852
1547
+ ],
1548
+ [
1549
+ -105.17192870378492,
1550
+ 39.74235478734931
1551
+ ],
1552
+ [
1553
+ -105.17187505960465,
1554
+ 39.74241975365357
1555
+ ],
1556
+ [
1557
+ -105.17185360193253,
1558
+ 39.742364068253667
1559
+ ],
1560
+ [
1561
+ -105.17160147428514,
1562
+ 39.74242181607491
1563
+ ],
1564
+ [
1565
+ -105.17162024974825,
1566
+ 39.742475439008419
1567
+ ],
1568
+ [
1569
+ -105.17137080430985,
1570
+ 39.74252493706388
1571
+ ],
1572
+ [
1573
+ -105.17130643129348,
1574
+ 39.74231869493161
1575
+ ],
1576
+ [
1577
+ -105.17122864723209,
1578
+ 39.74233313190098
1579
+ ],
1580
+ [
1581
+ -105.17117768526076,
1582
+ 39.74215576321069
1583
+ ],
1584
+ [
1585
+ -105.17101138830184,
1586
+ 39.74217638750045
1587
+ ],
1588
+ [
1589
+ -105.171038210392,
1590
+ 39.742098015166487
1591
+ ],
1592
+ [
1593
+ -105.17093360424042,
1594
+ 39.74208770301067
1595
+ ],
1596
+ [
1597
+ -105.17097920179369,
1598
+ 39.741885584444649
1599
+ ],
1600
+ [
1601
+ -105.17155051231384,
1602
+ 39.74194539510248
1603
+ ],
1604
+ [
1605
+ -105.17165511846543,
1606
+ 39.74189795906776
1607
+ ],
1608
+ [
1609
+ -105.17162024974825,
1610
+ 39.74195776971485
1611
+ ],
1612
+ [
1613
+ -105.171580016613,
1614
+ 39.74201551787655
1615
+ ],
1616
+ [
1617
+ -105.17160952091216,
1618
+ 39.74202376761002
1619
+ ],
1620
+ [
1621
+ -105.17163902521132,
1622
+ 39.7420423295066
1623
+ ],
1624
+ [
1625
+ -105.17164170742037,
1626
+ 39.74207120355811
1627
+ ],
1628
+ [
1629
+ -105.17162024974825,
1630
+ 39.742093890304349
1631
+ ],
1632
+ [
1633
+ -105.17162561416625,
1634
+ 39.742118639473549
1635
+ ],
1636
+ [
1637
+ -105.17225056886672,
1638
+ 39.74199695597272
1639
+ ]
1640
+ ]
1641
+ ]
1642
+ },
1643
+ "properties": {
1644
+ "id": "59a9ce2b42f7d007c059d2f6",
1645
+ "source_id": "Science and Technology Facility",
1646
+ "source_name": "NREL_GDS",
1647
+ "project_id": "59a9ccdf42f7d007c059d2ed",
1648
+ "stroke": "#555555",
1649
+ "stroke-width": 2,
1650
+ "stroke-opacity": 1,
1651
+ "fill": "#555555",
1652
+ "fill-opacity": 0.5,
1653
+ "name": "Science and Technology Facility",
1654
+ "maximum_roof_height": 30,
1655
+ "floor_area": 148624.32740708584,
1656
+ "number_of_stories": 3,
1657
+ "number_of_stories_above_ground": 3,
1658
+ "building_type": "Office",
1659
+ "surface_elevation": 5198,
1660
+ "type": "Building",
1661
+ "footprint_area": 49603,
1662
+ "footprint_perimeter": 1318,
1663
+ "updated_at": "2017-09-01T21:17:07.472Z",
1664
+ "created_at": "2017-09-01T21:16:27.607Z",
1665
+ "height": 9,
1666
+ "geometryType": "Polygon"
1667
+ }
1668
+ },
1669
+ {
1670
+ "type": "Feature",
1671
+ "geometry": {
1672
+ "type": "Polygon",
1673
+ "coordinates": [
1674
+ [
1675
+ [
1676
+ -105.17153978347779,
1677
+ 39.740334614087718
1678
+ ],
1679
+ [
1680
+ -105.17154514789579,
1681
+ 39.740503737550998
1682
+ ],
1683
+ [
1684
+ -105.17100602388382,
1685
+ 39.74050992498693
1686
+ ],
1687
+ [
1688
+ -105.1711106300354,
1689
+ 39.74077598420541
1690
+ ],
1691
+ [
1692
+ -105.17193406820296,
1693
+ 39.740604798934587
1694
+ ],
1695
+ [
1696
+ -105.17199575901032,
1697
+ 39.74077185926416
1698
+ ],
1699
+ [
1700
+ -105.17117500305176,
1701
+ 39.74094923151645
1702
+ ],
1703
+ [
1704
+ -105.1712554693222,
1705
+ 39.741233851153257
1706
+ ],
1707
+ [
1708
+ -105.17230689525606,
1709
+ 39.74102554269379
1710
+ ],
1711
+ [
1712
+ -105.17237663269045,
1713
+ 39.74119260200334
1714
+ ],
1715
+ [
1716
+ -105.17134666442873,
1717
+ 39.7414029724097
1718
+ ],
1719
+ [
1720
+ -105.1713842153549,
1721
+ 39.74148340798354
1722
+ ],
1723
+ [
1724
+ -105.1711481809616,
1725
+ 39.74153084430364
1726
+ ],
1727
+ [
1728
+ -105.17112135887145,
1729
+ 39.74145247123556
1730
+ ],
1731
+ [
1732
+ -105.17061173915865,
1733
+ 39.74156178101654
1734
+ ],
1735
+ [
1736
+ -105.17054468393329,
1737
+ 39.74138647279324
1738
+ ],
1739
+ [
1740
+ -105.17103552818299,
1741
+ 39.74128747501126
1742
+ ],
1743
+ [
1744
+ -105.17095237970352,
1745
+ 39.740984293419248
1746
+ ],
1747
+ [
1748
+ -105.17044812440872,
1749
+ 39.741099791325869
1750
+ ],
1751
+ [
1752
+ -105.17038375139237,
1753
+ 39.7409286068594
1754
+ ],
1755
+ [
1756
+ -105.17090141773223,
1757
+ 39.74081929607402
1758
+ ],
1759
+ [
1760
+ -105.1707834005356,
1761
+ 39.74050786250834
1762
+ ],
1763
+ [
1764
+ -105.17026305198672,
1765
+ 39.74051404994387
1766
+ ],
1767
+ [
1768
+ -105.17025768756864,
1769
+ 39.740334614087718
1770
+ ],
1771
+ [
1772
+ -105.17072439193726,
1773
+ 39.740336676571477
1774
+ ],
1775
+ [
1776
+ -105.17070293426514,
1777
+ 39.74028923942939
1778
+ ],
1779
+ [
1780
+ -105.17081826925278,
1781
+ 39.740274802031908
1782
+ ],
1783
+ [
1784
+ -105.17086386680605,
1785
+ 39.74034080153885
1786
+ ],
1787
+ [
1788
+ -105.17153978347779,
1789
+ 39.740334614087718
1790
+ ]
1791
+ ]
1792
+ ]
1793
+ },
1794
+ "properties": {
1795
+ "id": "59a9ce2b42f7d007c059d2f4",
1796
+ "source_id": "Research Support Facility",
1797
+ "source_name": "NREL_GDS",
1798
+ "project_id": "59a9ccdf42f7d007c059d2ed",
1799
+ "stroke": "#555555",
1800
+ "stroke-width": 2,
1801
+ "stroke-opacity": 1,
1802
+ "fill": "#555555",
1803
+ "fill-opacity": 0.5,
1804
+ "name": "Research Support Facility",
1805
+ "maximum_roof_height": 40,
1806
+ "floor_area": 405451.76968951968,
1807
+ "number_of_stories": 4,
1808
+ "number_of_stories_above_ground": 4,
1809
+ "building_type": "Office",
1810
+ "surface_elevation": 5198,
1811
+ "type": "Building",
1812
+ "footprint_area": 101488,
1813
+ "footprint_perimeter": 3325,
1814
+ "updated_at": "2017-09-01T21:17:07.465Z",
1815
+ "created_at": "2017-09-01T21:16:27.599Z",
1816
+ "height": 12,
1817
+ "geometryType": "Polygon"
1818
+ }
1819
+ },
1820
+ {
1821
+ "type": "Feature",
1822
+ "geometry": {
1823
+ "type": "Polygon",
1824
+ "coordinates": [
1825
+ [
1826
+ [
1827
+ -105.1712420582771,
1828
+ 39.743195219730669
1829
+ ],
1830
+ [
1831
+ -105.17083168029784,
1832
+ 39.74345301902031
1833
+ ],
1834
+ [
1835
+ -105.16999751329422,
1836
+ 39.74261774582203
1837
+ ],
1838
+ [
1839
+ -105.17005383968352,
1840
+ 39.7425641229992
1841
+ ],
1842
+ [
1843
+ -105.169957280159,
1844
+ 39.742469251748989
1845
+ ],
1846
+ [
1847
+ -105.16988754272463,
1848
+ 39.742491938364228
1849
+ ],
1850
+ [
1851
+ -105.16976416110993,
1852
+ 39.74227332157966
1853
+ ],
1854
+ [
1855
+ -105.16981244087218,
1856
+ 39.742254759745268
1857
+ ],
1858
+ [
1859
+ -105.169780254364,
1860
+ 39.74207120355811
1861
+ ],
1862
+ [
1863
+ -105.16938596963883,
1864
+ 39.74213307648483
1865
+ ],
1866
+ [
1867
+ -105.16932964324953,
1868
+ 39.74194951997353
1869
+ ],
1870
+ [
1871
+ -105.170314013958,
1872
+ 39.74180514934022
1873
+ ],
1874
+ [
1875
+ -105.17034888267516,
1876
+ 39.74198251893293
1877
+ ],
1878
+ [
1879
+ -105.16999751329422,
1880
+ 39.74204439193929
1881
+ ],
1882
+ [
1883
+ -105.17002433538436,
1884
+ 39.742159888069128
1885
+ ],
1886
+ [
1887
+ -105.1701021194458,
1888
+ 39.74212688919465
1889
+ ],
1890
+ [
1891
+ -105.1703569293022,
1892
+ 39.74207326598989
1893
+ ],
1894
+ [
1895
+ -105.17048299312592,
1896
+ 39.74223001062495
1897
+ ],
1898
+ [
1899
+ -105.17037034034728,
1900
+ 39.742306320384049
1901
+ ],
1902
+ [
1903
+ -105.17020672559738,
1904
+ 39.742380567636107
1905
+ ],
1906
+ [
1907
+ -105.17024427652358,
1908
+ 39.74243212818075
1909
+ ],
1910
+ [
1911
+ -105.17038106918337,
1912
+ 39.742343444020097
1913
+ ],
1914
+ [
1915
+ -105.1712420582771,
1916
+ 39.743195219730669
1917
+ ]
1918
+ ]
1919
+ ]
1920
+ },
1921
+ "properties": {
1922
+ "id": "59a9ce2b42f7d007c059d2ee",
1923
+ "source_id": "Energy Systems Integration Facility",
1924
+ "source_name": "NREL_GDS",
1925
+ "project_id": "59a9ccdf42f7d007c059d2ed",
1926
+ "stroke": "#555555",
1927
+ "stroke-width": 2,
1928
+ "stroke-opacity": 1,
1929
+ "fill": "#555555",
1930
+ "fill-opacity": 0.5,
1931
+ "name": "Energy Systems Integration Facility",
1932
+ "maximum_roof_height": 30,
1933
+ "floor_area": 296826.11368011057,
1934
+ "number_of_stories": 3,
1935
+ "number_of_stories_above_ground": 3,
1936
+ "building_type": "Office",
1937
+ "surface_elevation": 5198,
1938
+ "type": "Building",
1939
+ "footprint_area": 99064,
1940
+ "footprint_perimeter": 2194,
1941
+ "updated_at": "2017-09-01T21:17:07.447Z",
1942
+ "created_at": "2017-09-01T21:16:27.579Z",
1943
+ "height": 9,
1944
+ "geometryType": "Polygon"
1945
+ }
1946
+ },
1947
+ {
1948
+ "type": "Feature",
1949
+ "geometry": {
1950
+ "type": "Polygon",
1951
+ "coordinates": [
1952
+ [
1953
+ [
1954
+ -105.16835063695908,
1955
+ 39.740837858295069
1956
+ ],
1957
+ [
1958
+ -105.1685893535614,
1959
+ 39.74078629655753
1960
+ ],
1961
+ [
1962
+ -105.16853302717208,
1963
+ 39.74063161111354
1964
+ ],
1965
+ [
1966
+ -105.16874223947524,
1967
+ 39.740592424079299
1968
+ ],
1969
+ [
1970
+ -105.1687502861023,
1971
+ 39.740709985115248
1972
+ ],
1973
+ [
1974
+ -105.16874492168428,
1975
+ 39.740778046675988
1976
+ ],
1977
+ [
1978
+ -105.16872614622112,
1979
+ 39.740823421012468
1980
+ ],
1981
+ [
1982
+ -105.1686456799507,
1983
+ 39.74084198323243
1984
+ ],
1985
+ [
1986
+ -105.1686590909958,
1987
+ 39.74088529505951
1988
+ ],
1989
+ [
1990
+ -105.16839623451232,
1991
+ 39.740945106585517
1992
+ ],
1993
+ [
1994
+ -105.16835063695908,
1995
+ 39.740837858295069
1996
+ ]
1997
+ ]
1998
+ ]
1999
+ },
2000
+ "properties": {
2001
+ "id": "59a9ce2b42f7d007c059d2f0",
2002
+ "source_id": "Education Center",
2003
+ "source_name": "NREL_GDS",
2004
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2005
+ "stroke": "#555555",
2006
+ "stroke-width": 2,
2007
+ "stroke-opacity": 1,
2008
+ "fill": "#555555",
2009
+ "fill-opacity": 0.5,
2010
+ "name": "Education Center",
2011
+ "maximum_roof_height": 10,
2012
+ "floor_area": 7012.87258861096,
2013
+ "number_of_stories": 1,
2014
+ "number_of_stories_above_ground": 1,
2015
+ "building_type": "Office",
2016
+ "surface_elevation": 5198,
2017
+ "type": "Building",
2018
+ "footprint_area": 7022,
2019
+ "footprint_perimeter": 432,
2020
+ "updated_at": "2017-09-01T21:17:07.453Z",
2021
+ "created_at": "2017-09-01T21:16:27.586Z",
2022
+ "height": 3,
2023
+ "geometryType": "Polygon"
2024
+ }
2025
+ },
2026
+ {
2027
+ "type": "Feature",
2028
+ "geometry": {
2029
+ "type": "Polygon",
2030
+ "coordinates": [
2031
+ [
2032
+ [
2033
+ -105.16835063695908,
2034
+ 39.74028717694424
2035
+ ],
2036
+ [
2037
+ -105.16838818788529,
2038
+ 39.740247989714138
2039
+ ],
2040
+ [
2041
+ -105.16838014125824,
2042
+ 39.740221177385908
2043
+ ],
2044
+ [
2045
+ -105.16842037439347,
2046
+ 39.74021911489871
2047
+ ],
2048
+ [
2049
+ -105.16843378543853,
2050
+ 39.74023973976807
2051
+ ],
2052
+ [
2053
+ -105.16849011182784,
2054
+ 39.74026448960319
2055
+ ],
2056
+ [
2057
+ -105.16845524311064,
2058
+ 39.740311926762277
2059
+ ],
2060
+ [
2061
+ -105.1684632897377,
2062
+ 39.740330489120029
2063
+ ],
2064
+ [
2065
+ -105.16842305660247,
2066
+ 39.740336676571477
2067
+ ],
2068
+ [
2069
+ -105.16841769218444,
2070
+ 39.740313989246747
2071
+ ],
2072
+ [
2073
+ -105.16835063695908,
2074
+ 39.74028717694424
2075
+ ]
2076
+ ]
2077
+ ]
2078
+ },
2079
+ "properties": {
2080
+ "id": "59a9ce2b42f7d007c059d2f2",
2081
+ "source_id": "East Entry",
2082
+ "source_name": "NREL_GDS",
2083
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2084
+ "stroke": "#555555",
2085
+ "stroke-width": 2,
2086
+ "stroke-opacity": 1,
2087
+ "fill": "#555555",
2088
+ "fill-opacity": 0.5,
2089
+ "name": "East Entry",
2090
+ "maximum_roof_height": 10,
2091
+ "floor_area": 869.8921262156657,
2092
+ "number_of_stories": 1,
2093
+ "number_of_stories_above_ground": 1,
2094
+ "building_type": "Office",
2095
+ "surface_elevation": 5198,
2096
+ "type": "Building",
2097
+ "footprint_area": 871,
2098
+ "footprint_perimeter": 134,
2099
+ "updated_at": "2017-09-01T21:17:07.458Z",
2100
+ "created_at": "2017-09-01T21:16:27.592Z",
2101
+ "height": 3,
2102
+ "geometryType": "Polygon"
2103
+ }
2104
+ },
2105
+ {
2106
+ "type": "Feature",
2107
+ "geometry": {
2108
+ "type": "Polygon",
2109
+ "coordinates": [
2110
+ [
2111
+ [
2112
+ -105.1694905757904,
2113
+ 39.740254177173
2114
+ ],
2115
+ [
2116
+ -105.16960322856905,
2117
+ 39.74041711339001
2118
+ ],
2119
+ [
2120
+ -105.1697400212288,
2121
+ 39.74080485878753
2122
+ ],
2123
+ [
2124
+ -105.16912579536438,
2125
+ 39.740932731791307
2126
+ ],
2127
+ [
2128
+ -105.16898095607758,
2129
+ 39.74054292463572
2130
+ ],
2131
+ [
2132
+ -105.16897022724152,
2133
+ 39.74036348885474
2134
+ ],
2135
+ [
2136
+ -105.1694905757904,
2137
+ 39.740254177173
2138
+ ]
2139
+ ]
2140
+ ]
2141
+ },
2142
+ "properties": {
2143
+ "id": "59a9ce2b42f7d007c059d30e",
2144
+ "source_id": "East Parking",
2145
+ "source_name": "NREL_GDS",
2146
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2147
+ "stroke": "#555555",
2148
+ "stroke-width": 2,
2149
+ "stroke-opacity": 1,
2150
+ "fill": "#ff8000",
2151
+ "fill-opacity": 0.5,
2152
+ "name": "East Parking",
2153
+ "maximum_roof_height": 10,
2154
+ "floor_area": 37214.047827625705,
2155
+ "number_of_stories": 1,
2156
+ "number_of_stories_above_ground": 1,
2157
+ "building_type": "Vacant",
2158
+ "surface_elevation": 5198,
2159
+ "type": "Building",
2160
+ "footprint_area": 37260,
2161
+ "footprint_perimeter": 758,
2162
+ "updated_at": "2017-09-01T21:17:07.535Z",
2163
+ "created_at": "2017-09-01T21:16:27.687Z",
2164
+ "height": 3,
2165
+ "geometryType": "Polygon"
2166
+ }
2167
+ },
2168
+ {
2169
+ "type": "Feature",
2170
+ "geometry": {
2171
+ "type": "Polygon",
2172
+ "coordinates": [
2173
+ [
2174
+ [
2175
+ -105.1835373044014,
2176
+ 39.741153415288099
2177
+ ],
2178
+ [
2179
+ -105.1835373044014,
2180
+ 39.74119053954525
2181
+ ],
2182
+ [
2183
+ -105.183470249176,
2184
+ 39.74119053954525
2185
+ ],
2186
+ [
2187
+ -105.183470249176,
2188
+ 39.741153415288099
2189
+ ],
2190
+ [
2191
+ -105.1835373044014,
2192
+ 39.741153415288099
2193
+ ]
2194
+ ]
2195
+ ]
2196
+ },
2197
+ "properties": {
2198
+ "id": "59a9ce2b42f7d007c059d314",
2199
+ "source_id": "West Gate Entrance",
2200
+ "source_name": "NREL_GDS",
2201
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2202
+ "stroke": "#555555",
2203
+ "stroke-width": 2,
2204
+ "stroke-opacity": 1,
2205
+ "fill": "#555555",
2206
+ "fill-opacity": 0.5,
2207
+ "name": "West Gate Entrance",
2208
+ "maximum_roof_height": 10,
2209
+ "floor_area": 255.01065485744145,
2210
+ "number_of_stories": 1,
2211
+ "number_of_stories_above_ground": 1,
2212
+ "building_type": "Office",
2213
+ "surface_elevation": 5198,
2214
+ "type": "Building",
2215
+ "footprint_area": 255,
2216
+ "footprint_perimeter": 65,
2217
+ "updated_at": "2017-09-01T21:17:07.552Z",
2218
+ "created_at": "2017-09-01T21:16:27.707Z",
2219
+ "height": 3,
2220
+ "geometryType": "Polygon"
2221
+ }
2222
+ },
2223
+ {
2224
+ "type": "Feature",
2225
+ "geometry": {
2226
+ "type": "Polygon",
2227
+ "coordinates": [
2228
+ [
2229
+ [
2230
+ -105.18285870552065,
2231
+ 39.741409159764888
2232
+ ],
2233
+ [
2234
+ -105.18316179513933,
2235
+ 39.741574155697808
2236
+ ],
2237
+ [
2238
+ -105.18307864665988,
2239
+ 39.74166077840448
2240
+ ],
2241
+ [
2242
+ -105.18277555704118,
2243
+ 39.741499907576869
2244
+ ],
2245
+ [
2246
+ -105.18285870552065,
2247
+ 39.741409159764888
2248
+ ]
2249
+ ]
2250
+ ]
2251
+ },
2252
+ "properties": {
2253
+ "id": "59a9ce2b42f7d007c059d320",
2254
+ "source_id": "Unknown West A",
2255
+ "source_name": "NREL_GDS",
2256
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2257
+ "stroke": "#555555",
2258
+ "stroke-width": 2,
2259
+ "stroke-opacity": 1,
2260
+ "fill": "#ffffff",
2261
+ "fill-opacity": 0.5,
2262
+ "name": "Unknown West A",
2263
+ "maximum_roof_height": 10,
2264
+ "floor_area": 4141.329629323334,
2265
+ "number_of_stories": 1,
2266
+ "number_of_stories_above_ground": 1,
2267
+ "building_type": "Nonrefrigerated warehouse",
2268
+ "surface_elevation": 5198,
2269
+ "type": "Building",
2270
+ "footprint_area": 4146,
2271
+ "footprint_perimeter": 288,
2272
+ "updated_at": "2017-09-01T21:17:07.557Z",
2273
+ "created_at": "2017-09-01T21:16:27.746Z",
2274
+ "height": 3,
2275
+ "geometryType": "Polygon"
2276
+ }
2277
+ },
2278
+ {
2279
+ "type": "Feature",
2280
+ "geometry": {
2281
+ "type": "Polygon",
2282
+ "coordinates": [
2283
+ [
2284
+ [
2285
+ -105.18203258514405,
2286
+ 39.74077185926416
2287
+ ],
2288
+ [
2289
+ -105.18203794956209,
2290
+ 39.74103379254578
2291
+ ],
2292
+ [
2293
+ -105.18152564764024,
2294
+ 39.74102760515689
2295
+ ],
2296
+ [
2297
+ -105.1815202832222,
2298
+ 39.740769796793419
2299
+ ],
2300
+ [
2301
+ -105.18203258514405,
2302
+ 39.74077185926416
2303
+ ]
2304
+ ]
2305
+ ]
2306
+ },
2307
+ "properties": {
2308
+ "id": "59a9ce2b42f7d007c059d312",
2309
+ "source_id": "Shipping and Receiving Building",
2310
+ "source_name": "NREL_GDS",
2311
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2312
+ "stroke": "#555555",
2313
+ "stroke-width": 2,
2314
+ "stroke-opacity": 1,
2315
+ "fill": "#555555",
2316
+ "fill-opacity": 0.5,
2317
+ "name": "Shipping and Receiving Building",
2318
+ "maximum_roof_height": 10,
2319
+ "floor_area": 13635.809542119712,
2320
+ "number_of_stories": 1,
2321
+ "number_of_stories_above_ground": 1,
2322
+ "building_type": "Office",
2323
+ "surface_elevation": 5198,
2324
+ "type": "Building",
2325
+ "footprint_area": 13653,
2326
+ "footprint_perimeter": 478,
2327
+ "updated_at": "2017-09-01T21:17:07.546Z",
2328
+ "created_at": "2017-09-01T21:16:27.700Z",
2329
+ "height": 3,
2330
+ "geometryType": "Polygon"
2331
+ }
2332
+ },
2333
+ {
2334
+ "type": "Feature",
2335
+ "geometry": {
2336
+ "type": "Polygon",
2337
+ "coordinates": [
2338
+ [
2339
+ [
2340
+ -105.18196016550064,
2341
+ 39.74119878937745
2342
+ ],
2343
+ [
2344
+ -105.18196016550064,
2345
+ 39.74131016201551
2346
+ ],
2347
+ [
2348
+ -105.18159538507462,
2349
+ 39.74131016201551
2350
+ ],
2351
+ [
2352
+ -105.18159538507462,
2353
+ 39.74119878937745
2354
+ ],
2355
+ [
2356
+ -105.18196016550064,
2357
+ 39.74119878937745
2358
+ ]
2359
+ ]
2360
+ ]
2361
+ },
2362
+ "properties": {
2363
+ "id": "59a9ce2b42f7d007c059d322",
2364
+ "source_id": "Unknown West B",
2365
+ "source_name": "NREL_GDS",
2366
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2367
+ "stroke": "#555555",
2368
+ "stroke-width": 2,
2369
+ "stroke-opacity": 1,
2370
+ "fill": "#ffffff",
2371
+ "fill-opacity": 0.5,
2372
+ "name": "Unknown West B",
2373
+ "maximum_roof_height": 10,
2374
+ "floor_area": 4161.764002986851,
2375
+ "number_of_stories": 1,
2376
+ "number_of_stories_above_ground": 1,
2377
+ "building_type": "Nonrefrigerated warehouse",
2378
+ "surface_elevation": 5198,
2379
+ "type": "Building",
2380
+ "footprint_area": 4167,
2381
+ "footprint_perimeter": 286,
2382
+ "updated_at": "2017-09-01T21:17:07.563Z",
2383
+ "created_at": "2017-09-01T21:16:27.753Z",
2384
+ "height": 3,
2385
+ "geometryType": "Polygon"
2386
+ }
2387
+ },
2388
+ {
2389
+ "type": "Feature",
2390
+ "geometry": {
2391
+ "type": "Polygon",
2392
+ "coordinates": [
2393
+ [
2394
+ [
2395
+ -105.18126279115676,
2396
+ 39.74037586375124
2397
+ ],
2398
+ [
2399
+ -105.18126010894776,
2400
+ 39.74072442242161
2401
+ ],
2402
+ [
2403
+ -105.1808926463127,
2404
+ 39.740730609837729
2405
+ ],
2406
+ [
2407
+ -105.1808926463127,
2408
+ 39.740778046675988
2409
+ ],
2410
+ [
2411
+ -105.18125474452973,
2412
+ 39.74078217161693
2413
+ ],
2414
+ [
2415
+ -105.18125474452973,
2416
+ 39.74091004466277
2417
+ ],
2418
+ [
2419
+ -105.18035888671874,
2420
+ 39.74091004466277
2421
+ ],
2422
+ [
2423
+ -105.18036425113678,
2424
+ 39.740778046675988
2425
+ ],
2426
+ [
2427
+ -105.1804769039154,
2428
+ 39.74078217161693
2429
+ ],
2430
+ [
2431
+ -105.1804769039154,
2432
+ 39.74071411006025
2433
+ ],
2434
+ [
2435
+ -105.18052518367766,
2436
+ 39.74071204758778
2437
+ ],
2438
+ [
2439
+ -105.18052786588668,
2440
+ 39.740549112068098
2441
+ ],
2442
+ [
2443
+ -105.18045008182524,
2444
+ 39.740549112068098
2445
+ ],
2446
+ [
2447
+ -105.18045276403426,
2448
+ 39.74037173878594
2449
+ ],
2450
+ [
2451
+ -105.18073439598082,
2452
+ 39.74037173878594
2453
+ ],
2454
+ [
2455
+ -105.18072098493576,
2456
+ 39.740778046675988
2457
+ ],
2458
+ [
2459
+ -105.18084436655045,
2460
+ 39.7407801091465
2461
+ ],
2462
+ [
2463
+ -105.18084973096846,
2464
+ 39.740730609837729
2465
+ ],
2466
+ [
2467
+ -105.18080413341522,
2468
+ 39.740730609837729
2469
+ ],
2470
+ [
2471
+ -105.1808014512062,
2472
+ 39.74036967630326
2473
+ ],
2474
+ [
2475
+ -105.18126279115676,
2476
+ 39.74037586375124
2477
+ ]
2478
+ ]
2479
+ ]
2480
+ },
2481
+ "properties": {
2482
+ "id": "59a9ce2b42f7d007c059d310",
2483
+ "source_id": "Integrated Biorefinery Research Facility",
2484
+ "source_name": "NREL_GDS",
2485
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2486
+ "stroke": "#555555",
2487
+ "stroke-width": 2,
2488
+ "stroke-opacity": 1,
2489
+ "fill": "#555555",
2490
+ "fill-opacity": 0.5,
2491
+ "name": "Integrated Biorefinery Research Facility",
2492
+ "maximum_roof_height": 20,
2493
+ "floor_area": 77897.95814205545,
2494
+ "number_of_stories": 2,
2495
+ "number_of_stories_above_ground": 2,
2496
+ "building_type": "Office",
2497
+ "surface_elevation": 5198,
2498
+ "type": "Building",
2499
+ "footprint_area": 38997,
2500
+ "footprint_perimeter": 1467,
2501
+ "updated_at": "2017-09-01T21:17:07.541Z",
2502
+ "created_at": "2017-09-01T21:16:27.693Z",
2503
+ "height": 6,
2504
+ "geometryType": "Polygon"
2505
+ }
2506
+ },
2507
+ {
2508
+ "type": "Feature",
2509
+ "geometry": {
2510
+ "type": "Polygon",
2511
+ "coordinates": [
2512
+ [
2513
+ [
2514
+ -105.18126279115676,
2515
+ 39.741117322241198
2516
+ ],
2517
+ [
2518
+ -105.18126279115676,
2519
+ 39.7412091016663
2520
+ ],
2521
+ [
2522
+ -105.18120914697649,
2523
+ 39.7412091016663
2524
+ ],
2525
+ [
2526
+ -105.18120914697649,
2527
+ 39.741117322241198
2528
+ ],
2529
+ [
2530
+ -105.18126279115676,
2531
+ 39.741117322241198
2532
+ ]
2533
+ ]
2534
+ ]
2535
+ },
2536
+ "properties": {
2537
+ "id": "59a9ce2b42f7d007c059d324",
2538
+ "source_id": "Unknown West C",
2539
+ "source_name": "NREL_GDS",
2540
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2541
+ "stroke": "#555555",
2542
+ "stroke-width": 2,
2543
+ "stroke-opacity": 1,
2544
+ "fill": "#ffffff",
2545
+ "fill-opacity": 0.5,
2546
+ "name": "Unknown West C",
2547
+ "maximum_roof_height": 10,
2548
+ "floor_area": 504.35453370360076,
2549
+ "number_of_stories": 1,
2550
+ "number_of_stories_above_ground": 1,
2551
+ "building_type": "Nonrefrigerated warehouse",
2552
+ "surface_elevation": 5198,
2553
+ "type": "Building",
2554
+ "footprint_area": 505,
2555
+ "footprint_perimeter": 97,
2556
+ "updated_at": "2017-09-01T21:17:07.568Z",
2557
+ "created_at": "2017-09-01T21:16:27.759Z",
2558
+ "height": 3,
2559
+ "geometryType": "Polygon"
2560
+ }
2561
+ },
2562
+ {
2563
+ "type": "Feature",
2564
+ "geometry": {
2565
+ "type": "Polygon",
2566
+ "coordinates": [
2567
+ [
2568
+ [
2569
+ -105.18093690276146,
2570
+ 39.740990480812
2571
+ ],
2572
+ [
2573
+ -105.18093690276146,
2574
+ 39.74105544840245
2575
+ ],
2576
+ [
2577
+ -105.18085107207296,
2578
+ 39.74105544840245
2579
+ ],
2580
+ [
2581
+ -105.18085107207296,
2582
+ 39.740990480812
2583
+ ],
2584
+ [
2585
+ -105.18093690276146,
2586
+ 39.740990480812
2587
+ ]
2588
+ ]
2589
+ ]
2590
+ },
2591
+ "properties": {
2592
+ "id": "59a9ce2b42f7d007c059d330",
2593
+ "source_id": "Unknown West D",
2594
+ "source_name": "NREL_GDS",
2595
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2596
+ "stroke": "#555555",
2597
+ "stroke-width": 2,
2598
+ "stroke-opacity": 1,
2599
+ "fill": "#ffffff",
2600
+ "fill-opacity": 0.5,
2601
+ "name": "Unknown West D",
2602
+ "maximum_roof_height": 10,
2603
+ "floor_area": 571.226317848935,
2604
+ "number_of_stories": 1,
2605
+ "number_of_stories_above_ground": 1,
2606
+ "building_type": "Nonrefrigerated warehouse",
2607
+ "surface_elevation": 5198,
2608
+ "type": "Building",
2609
+ "footprint_area": 572,
2610
+ "footprint_perimeter": 96,
2611
+ "updated_at": "2017-09-01T21:17:07.596Z",
2612
+ "created_at": "2017-09-01T21:16:27.793Z",
2613
+ "height": 3,
2614
+ "geometryType": "Polygon"
2615
+ }
2616
+ },
2617
+ {
2618
+ "type": "Feature",
2619
+ "geometry": {
2620
+ "type": "Polygon",
2621
+ "coordinates": [
2622
+ [
2623
+ [
2624
+ -105.17823725938799,
2625
+ 39.74293329466468
2626
+ ],
2627
+ [
2628
+ -105.17823725938799,
2629
+ 39.74299001080672
2630
+ ],
2631
+ [
2632
+ -105.17816215753556,
2633
+ 39.74299001080672
2634
+ ],
2635
+ [
2636
+ -105.17816215753556,
2637
+ 39.74293329466468
2638
+ ],
2639
+ [
2640
+ -105.17823725938799,
2641
+ 39.74293329466468
2642
+ ]
2643
+ ]
2644
+ ]
2645
+ },
2646
+ "properties": {
2647
+ "id": "59a9ce2b42f7d007c059d344",
2648
+ "source_id": "High Flux PV",
2649
+ "source_name": "NREL_GDS",
2650
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2651
+ "stroke": "#555555",
2652
+ "stroke-width": 2,
2653
+ "stroke-opacity": 1,
2654
+ "fill": "#ff8000",
2655
+ "fill-opacity": 0.5,
2656
+ "name": "High Flux PV",
2657
+ "district_system_type": "Community Photovoltaic",
2658
+ "surface_elevation": 5198,
2659
+ "type": "District System",
2660
+ "floor_area": 436.3290804290652,
2661
+ "number_of_stories": 1,
2662
+ "maximum_roof_height": 10,
2663
+ "footprint_area": 437,
2664
+ "footprint_perimeter": 84,
2665
+ "updated_at": "2017-09-01T21:16:27.858Z",
2666
+ "created_at": "2017-09-01T21:16:27.858Z",
2667
+ "geometryType": "Polygon"
2668
+ }
2669
+ },
2670
+ {
2671
+ "type": "Feature",
2672
+ "geometry": {
2673
+ "type": "Polygon",
2674
+ "coordinates": [
2675
+ [
2676
+ [
2677
+ -105.17906606197356,
2678
+ 39.74304466449945
2679
+ ],
2680
+ [
2681
+ -105.17906606197356,
2682
+ 39.74312303575675
2683
+ ],
2684
+ [
2685
+ -105.17873883247376,
2686
+ 39.74312303575675
2687
+ ],
2688
+ [
2689
+ -105.17873883247376,
2690
+ 39.74304466449945
2691
+ ],
2692
+ [
2693
+ -105.17906606197356,
2694
+ 39.74304466449945
2695
+ ]
2696
+ ]
2697
+ ]
2698
+ },
2699
+ "properties": {
2700
+ "id": "59a9ce2b42f7d007c059d30c",
2701
+ "source_id": "Solar Industrial Mesa Test Area",
2702
+ "source_name": "NREL_GDS",
2703
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2704
+ "stroke": "#555555",
2705
+ "stroke-width": 2,
2706
+ "stroke-opacity": 1,
2707
+ "fill": "#929292",
2708
+ "fill-opacity": 0.5,
2709
+ "name": "Solar Industrial Mesa Test Area",
2710
+ "district_system_type": "Community Photovoltaic",
2711
+ "surface_elevation": 5198,
2712
+ "type": "District System",
2713
+ "floor_area": 2627.031817205871,
2714
+ "number_of_stories": 1,
2715
+ "maximum_roof_height": 10,
2716
+ "footprint_area": 2630,
2717
+ "footprint_perimeter": 241,
2718
+ "updated_at": "2017-09-01T21:16:27.681Z",
2719
+ "created_at": "2017-09-01T21:16:27.681Z",
2720
+ "geometryType": "Polygon"
2721
+ }
2722
+ },
2723
+ {
2724
+ "type": "Feature",
2725
+ "geometry": {
2726
+ "type": "Polygon",
2727
+ "coordinates": [
2728
+ [
2729
+ [
2730
+ -105.17793416976927,
2731
+ 39.74310653655209
2732
+ ],
2733
+ [
2734
+ -105.1784598827362,
2735
+ 39.74310653655209
2736
+ ],
2737
+ [
2738
+ -105.17847597599028,
2739
+ 39.74344064467641
2740
+ ],
2741
+ [
2742
+ -105.17873883247376,
2743
+ 39.74343239511262
2744
+ ],
2745
+ [
2746
+ -105.17874419689179,
2747
+ 39.74360563574524
2748
+ ],
2749
+ [
2750
+ -105.17847597599028,
2751
+ 39.74361388528828
2752
+ ],
2753
+ [
2754
+ -105.17848134040833,
2755
+ 39.743799499746248
2756
+ ],
2757
+ [
2758
+ -105.17821311950682,
2759
+ 39.74406348389192
2760
+ ],
2761
+ [
2762
+ -105.17796099185944,
2763
+ 39.74407173338017
2764
+ ],
2765
+ [
2766
+ -105.17793416976927,
2767
+ 39.74310653655209
2768
+ ]
2769
+ ]
2770
+ ]
2771
+ },
2772
+ "properties": {
2773
+ "id": "59a9ce2b42f7d007c059d316",
2774
+ "source_id": "Mesa PV A",
2775
+ "source_name": "NREL_GDS",
2776
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2777
+ "stroke": "#555555",
2778
+ "stroke-width": 2,
2779
+ "stroke-opacity": 1,
2780
+ "fill": "#ff8000",
2781
+ "fill-opacity": 0.5,
2782
+ "name": "Mesa PV A",
2783
+ "district_system_type": "Community Photovoltaic",
2784
+ "surface_elevation": 5198,
2785
+ "type": "District System",
2786
+ "floor_area": 52922.98044830567,
2787
+ "number_of_stories": 1,
2788
+ "maximum_roof_height": 10,
2789
+ "footprint_area": 52988,
2790
+ "footprint_perimeter": 1096,
2791
+ "updated_at": "2017-09-01T21:16:27.713Z",
2792
+ "created_at": "2017-09-01T21:16:27.713Z",
2793
+ "geometryType": "Polygon"
2794
+ }
2795
+ },
2796
+ {
2797
+ "type": "Feature",
2798
+ "geometry": {
2799
+ "type": "Polygon",
2800
+ "coordinates": [
2801
+ [
2802
+ [
2803
+ -105.17778664827348,
2804
+ 39.74351901548337
2805
+ ],
2806
+ [
2807
+ -105.17778664827348,
2808
+ 39.74403873542124
2809
+ ],
2810
+ [
2811
+ -105.17758280038834,
2812
+ 39.74403873542124
2813
+ ],
2814
+ [
2815
+ -105.17758280038834,
2816
+ 39.74351901548337
2817
+ ],
2818
+ [
2819
+ -105.17778664827348,
2820
+ 39.74351901548337
2821
+ ]
2822
+ ]
2823
+ ]
2824
+ },
2825
+ "properties": {
2826
+ "id": "59a9ce2b42f7d007c059d318",
2827
+ "source_id": "Mesa PV B",
2828
+ "source_name": "NREL_GDS",
2829
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2830
+ "stroke": "#555555",
2831
+ "stroke-width": 2,
2832
+ "stroke-opacity": 1,
2833
+ "fill": "#ff8000",
2834
+ "fill-opacity": 0.5,
2835
+ "name": "Mesa PV B",
2836
+ "district_system_type": "Community Photovoltaic",
2837
+ "surface_elevation": 5198,
2838
+ "type": "District System",
2839
+ "floor_area": 10852.438843447308,
2840
+ "number_of_stories": 1,
2841
+ "maximum_roof_height": 10,
2842
+ "footprint_area": 10866,
2843
+ "footprint_perimeter": 494,
2844
+ "updated_at": "2017-09-01T21:16:27.719Z",
2845
+ "created_at": "2017-09-01T21:16:27.719Z",
2846
+ "geometryType": "Polygon"
2847
+ }
2848
+ },
2849
+ {
2850
+ "type": "Feature",
2851
+ "geometry": {
2852
+ "type": "Polygon",
2853
+ "coordinates": [
2854
+ [
2855
+ [
2856
+ -105.17686665058136,
2857
+ 39.74435427775674
2858
+ ],
2859
+ [
2860
+ -105.1775935292244,
2861
+ 39.74434809066602
2862
+ ],
2863
+ [
2864
+ -105.17764180898667,
2865
+ 39.7443934626518
2866
+ ],
2867
+ [
2868
+ -105.17765522003174,
2869
+ 39.744554326724259
2870
+ ],
2871
+ [
2872
+ -105.17758548259737,
2873
+ 39.744618259776988
2874
+ ],
2875
+ [
2876
+ -105.17738968133927,
2877
+ 39.74461207270994
2878
+ ],
2879
+ [
2880
+ -105.1773950457573,
2881
+ 39.744812120929029
2882
+ ],
2883
+ [
2884
+ -105.17699003219605,
2885
+ 39.745148283123118
2886
+ ],
2887
+ [
2888
+ -105.17646700143814,
2889
+ 39.745152407802468
2890
+ ],
2891
+ [
2892
+ -105.17635971307752,
2893
+ 39.74506372714279
2894
+ ],
2895
+ [
2896
+ -105.17634630203249,
2897
+ 39.744789435077738
2898
+ ],
2899
+ [
2900
+ -105.17644822597504,
2901
+ 39.74470694100995
2902
+ ],
2903
+ [
2904
+ -105.17677009105683,
2905
+ 39.744717252773828
2906
+ ],
2907
+ [
2908
+ -105.1767674088478,
2909
+ 39.744622384488028
2910
+ ],
2911
+ [
2912
+ -105.17686933279036,
2913
+ 39.744622384488028
2914
+ ],
2915
+ [
2916
+ -105.17686665058136,
2917
+ 39.74435427775674
2918
+ ]
2919
+ ]
2920
+ ]
2921
+ },
2922
+ "properties": {
2923
+ "id": "59a9ce2b42f7d007c059d31a",
2924
+ "source_id": "Mesa PV C",
2925
+ "source_name": "NREL_GDS",
2926
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2927
+ "stroke": "#555555",
2928
+ "stroke-width": 2,
2929
+ "stroke-opacity": 1,
2930
+ "fill": "#ff8000",
2931
+ "fill-opacity": 0.5,
2932
+ "name": "Mesa PV C",
2933
+ "district_system_type": "Community Photovoltaic",
2934
+ "surface_elevation": 5198,
2935
+ "type": "District System",
2936
+ "floor_area": 65780.85750992882,
2937
+ "number_of_stories": 1,
2938
+ "maximum_roof_height": 10,
2939
+ "footprint_area": 65862,
2940
+ "footprint_perimeter": 1195,
2941
+ "updated_at": "2017-09-01T21:16:27.726Z",
2942
+ "created_at": "2017-09-01T21:16:27.726Z",
2943
+ "geometryType": "Polygon"
2944
+ }
2945
+ },
2946
+ {
2947
+ "type": "Feature",
2948
+ "geometry": {
2949
+ "type": "Polygon",
2950
+ "coordinates": [
2951
+ [
2952
+ [
2953
+ -105.17436146736144,
2954
+ 39.739653991075957
2955
+ ],
2956
+ [
2957
+ -105.17436146736144,
2958
+ 39.73971380367061
2959
+ ],
2960
+ [
2961
+ -105.1733422279358,
2962
+ 39.73971380367061
2963
+ ],
2964
+ [
2965
+ -105.1733422279358,
2966
+ 39.739653991075957
2967
+ ],
2968
+ [
2969
+ -105.17436146736144,
2970
+ 39.739653991075957
2971
+ ]
2972
+ ]
2973
+ ]
2974
+ },
2975
+ "properties": {
2976
+ "id": "59a9ce2b42f7d007c059d31c",
2977
+ "source_id": "Central PV A",
2978
+ "source_name": "NREL_GDS",
2979
+ "project_id": "59a9ccdf42f7d007c059d2ed",
2980
+ "stroke": "#555555",
2981
+ "stroke-width": 2,
2982
+ "stroke-opacity": 1,
2983
+ "fill": "#ff8000",
2984
+ "fill-opacity": 0.5,
2985
+ "name": "Central PV A",
2986
+ "district_system_type": "Community Photovoltaic",
2987
+ "surface_elevation": 5198,
2988
+ "type": "District System",
2989
+ "floor_area": 6245.195154729526,
2990
+ "number_of_stories": 1,
2991
+ "maximum_roof_height": 10,
2992
+ "footprint_area": 6253,
2993
+ "footprint_perimeter": 616,
2994
+ "updated_at": "2017-09-01T21:16:27.732Z",
2995
+ "created_at": "2017-09-01T21:16:27.732Z",
2996
+ "geometryType": "Polygon"
2997
+ }
2998
+ },
2999
+ {
3000
+ "type": "Feature",
3001
+ "geometry": {
3002
+ "type": "Polygon",
3003
+ "coordinates": [
3004
+ [
3005
+ [
3006
+ -105.1775076985359,
3007
+ 39.74032430166801
3008
+ ],
3009
+ [
3010
+ -105.1775076985359,
3011
+ 39.74076773432262
3012
+ ],
3013
+ [
3014
+ -105.17677545547484,
3015
+ 39.74075123455401
3016
+ ],
3017
+ [
3018
+ -105.17677545547484,
3019
+ 39.74067286059923
3020
+ ],
3021
+ [
3022
+ -105.17688810825348,
3023
+ 39.74031811421543
3024
+ ],
3025
+ [
3026
+ -105.1775076985359,
3027
+ 39.74032430166801
3028
+ ]
3029
+ ]
3030
+ ]
3031
+ },
3032
+ "properties": {
3033
+ "id": "59a9ce2b42f7d007c059d31e",
3034
+ "source_id": "Outdoor Test PV",
3035
+ "source_name": "NREL_GDS",
3036
+ "project_id": "59a9ccdf42f7d007c059d2ed",
3037
+ "stroke": "#555555",
3038
+ "stroke-width": 2,
3039
+ "stroke-opacity": 1,
3040
+ "fill": "#ff8000",
3041
+ "fill-opacity": 0.5,
3042
+ "name": "Outdoor Test PV",
3043
+ "district_system_type": "Community Photovoltaic",
3044
+ "surface_elevation": 5198,
3045
+ "type": "District System",
3046
+ "floor_area": 30864.504461112538,
3047
+ "number_of_stories": 1,
3048
+ "maximum_roof_height": 10,
3049
+ "footprint_area": 30903,
3050
+ "footprint_perimeter": 704,
3051
+ "updated_at": "2017-09-01T21:16:27.738Z",
3052
+ "created_at": "2017-09-01T21:16:27.738Z",
3053
+ "geometryType": "Polygon"
3054
+ }
3055
+ },
3056
+ {
3057
+ "type": "Feature",
3058
+ "geometry": {
3059
+ "type": "Polygon",
3060
+ "coordinates": [
3061
+ [
3062
+ [
3063
+ -105.17841093242169,
3064
+ 39.740738859724988
3065
+ ],
3066
+ [
3067
+ -105.17841093242169,
3068
+ 39.74080589002236
3069
+ ],
3070
+ [
3071
+ -105.17832309007645,
3072
+ 39.74080589002236
3073
+ ],
3074
+ [
3075
+ -105.17832309007645,
3076
+ 39.740738859724988
3077
+ ],
3078
+ [
3079
+ -105.17841093242169,
3080
+ 39.740738859724988
3081
+ ]
3082
+ ]
3083
+ ]
3084
+ },
3085
+ "properties": {
3086
+ "id": "59a9ce2b42f7d007c059d328",
3087
+ "source_id": "Outdoor Test PV ",
3088
+ "source_name": "NREL_GDS",
3089
+ "project_id": "59a9ccdf42f7d007c059d2ed",
3090
+ "stroke": "#555555",
3091
+ "stroke-width": 2,
3092
+ "stroke-opacity": 1,
3093
+ "fill": "#ff8000",
3094
+ "fill-opacity": 0.5,
3095
+ "name": "Outdoor Test PV B",
3096
+ "district_system_type": "Community Photovoltaic",
3097
+ "surface_elevation": 5198,
3098
+ "type": "District System",
3099
+ "floor_area": 603.1779746426488,
3100
+ "number_of_stories": 1,
3101
+ "maximum_roof_height": 10,
3102
+ "footprint_area": 604,
3103
+ "footprint_perimeter": 98,
3104
+ "updated_at": "2017-09-01T21:16:27.770Z",
3105
+ "created_at": "2017-09-01T21:16:27.770Z",
3106
+ "geometryType": "Polygon"
3107
+ }
3108
+ },
3109
+ {
3110
+ "type": "Feature",
3111
+ "geometry": {
3112
+ "type": "Polygon",
3113
+ "coordinates": [
3114
+ [
3115
+ [
3116
+ -105.17274141311646,
3117
+ 39.74230425795923
3118
+ ],
3119
+ [
3120
+ -105.17242625355722,
3121
+ 39.74237128673403
3122
+ ],
3123
+ [
3124
+ -105.1724624633789,
3125
+ 39.742490907154579
3126
+ ],
3127
+ [
3128
+ -105.17259389162062,
3129
+ 39.742469251748989
3130
+ ],
3131
+ [
3132
+ -105.17258048057556,
3133
+ 39.74240325428053
3134
+ ],
3135
+ [
3136
+ -105.17264753580092,
3137
+ 39.742390879748089
3138
+ ],
3139
+ [
3140
+ -105.17265290021897,
3141
+ 39.74241459759989
3142
+ ],
3143
+ [
3144
+ -105.1727655529976,
3145
+ 39.74239294217034
3146
+ ],
3147
+ [
3148
+ -105.17274141311646,
3149
+ 39.74230425795923
3150
+ ]
3151
+ ]
3152
+ ]
3153
+ },
3154
+ "properties": {
3155
+ "id": "59a9ce2b42f7d007c059d336",
3156
+ "source_id": "Central Chiller",
3157
+ "source_name": "NREL_GDS",
3158
+ "project_id": "59a9ccdf42f7d007c059d2ed",
3159
+ "stroke": "#555555",
3160
+ "stroke-width": 2,
3161
+ "stroke-opacity": 1,
3162
+ "fill": "#ffffff",
3163
+ "fill-opacity": 0.5,
3164
+ "name": "Central Chiller",
3165
+ "district_system_type": "Central Hot and Chilled Water",
3166
+ "surface_elevation": 5198,
3167
+ "type": "District System",
3168
+ "floor_area": 3304.607347039266,
3169
+ "number_of_stories": 1,
3170
+ "maximum_roof_height": 10,
3171
+ "footprint_area": 3309,
3172
+ "footprint_perimeter": 293,
3173
+ "updated_at": "2017-09-01T21:16:27.811Z",
3174
+ "created_at": "2017-09-01T21:16:27.811Z",
3175
+ "geometryType": "Polygon"
3176
+ }
3177
+ },
3178
+ {
3179
+ "type": "Feature",
3180
+ "geometry": {
3181
+ "type": "Polygon",
3182
+ "coordinates": [
3183
+ [
3184
+ [
3185
+ -105.17602711915973,
3186
+ 39.74248575110624
3187
+ ],
3188
+ [
3189
+ -105.17602711915973,
3190
+ 39.7425558733305
3191
+ ],
3192
+ [
3193
+ -105.1759198307991,
3194
+ 39.7425558733305
3195
+ ],
3196
+ [
3197
+ -105.1759198307991,
3198
+ 39.74248575110624
3199
+ ],
3200
+ [
3201
+ -105.17602711915973,
3202
+ 39.74248575110624
3203
+ ]
3204
+ ]
3205
+ ]
3206
+ },
3207
+ "properties": {
3208
+ "id": "59a9ce2b42f7d007c059d33a",
3209
+ "source_id": "Vehicle Testing PV",
3210
+ "source_name": "NREL_GDS",
3211
+ "project_id": "59a9ccdf42f7d007c059d2ed",
3212
+ "stroke": "#555555",
3213
+ "stroke-width": 2,
3214
+ "stroke-opacity": 1,
3215
+ "fill": "#ff8000",
3216
+ "fill-opacity": 0.5,
3217
+ "name": "Vehicle Testing PV",
3218
+ "district_system_type": "Community Photovoltaic",
3219
+ "surface_elevation": 5198,
3220
+ "type": "District System",
3221
+ "floor_area": 770.6689372973642,
3222
+ "number_of_stories": 1,
3223
+ "maximum_roof_height": 10,
3224
+ "footprint_area": 772,
3225
+ "footprint_perimeter": 111,
3226
+ "updated_at": "2017-09-01T21:16:27.823Z",
3227
+ "created_at": "2017-09-01T21:16:27.823Z",
3228
+ "geometryType": "Polygon"
3229
+ }
3230
+ }
3231
+ ],
3232
+ "crs": {
3233
+ "type": "name",
3234
+ "properties": {
3235
+ "name": "EPSG:4326"
3236
+ }
3237
+ }
3238
+ }