urbanopt-cli 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9e2bd8a0e017ea6ee23ba2e879c2a907119cb5423bd2e39523e1a82ef5de86a9
4
- data.tar.gz: ee8255001d28b3975c512e507685f78d139e0d2d2ad5f38aa55d41a5c1b1b5f4
3
+ metadata.gz: 59db82b38f70275aaa88121688fad7fce235014d93ee4e32783003dff3b73cd6
4
+ data.tar.gz: a188b5a11bf3e357689e359fdd16a5afabb1eb0e1e9370b14b183c64b0c36def
5
5
  SHA512:
6
- metadata.gz: 4afe5bea5d1344209273015af0d7ac1d9ddaf59daec4ae1faeb47019e31ce8262201542ae1ce8f6db805c5fce1471730526b34d1dc46c0bbc0cfe7c8699c86f1
7
- data.tar.gz: 97ab90105e0e4536c388e36846bfec5b268754813b2361628ae134a80b4b30d229d852d7f15c885900c4aa182a3fec7d5da9cb9ec2610acad0db287df87ed440
6
+ metadata.gz: 2699e19bfa0f00fc9b7c9087830443c9011269ee59b836ee9e149bd0e03fa7080b8b38aa940e909136c795d036a6d957b5664f5b2daeb64c163e3756964c587e
7
+ data.tar.gz: 825adde2b638cec19bc045b4acecec26282c032a685af1f160d54de6ebb7d8919fbae854439c738ae2944faf17b92d8ba528003bba0653b82ebc82e141e6886d
data/.gitignore CHANGED
@@ -12,8 +12,9 @@
12
12
  .vscode/
13
13
  .idea/
14
14
 
15
- # rbenv virtualenv management file
15
+ # virtualenv management
16
16
  .ruby-version
17
+ .python-version
17
18
 
18
19
  # rspec failure tracking
19
20
  .rspec_status
@@ -21,6 +22,7 @@
21
22
  # rspec test folder
22
23
  spec/test_directory
23
24
  spec/test_directory_res
25
+ spec/test_directory_elec
24
26
 
25
27
  Gemfile.lock
26
28
  .rubocop*
data/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## Version 0.5.1
4
+
5
+ Date Range 12/17/20 - 3/8/20
6
+
7
+ - Fixed [#157]( https://github.com/urbanopt/urbanopt-cli/issues/157 ), Edit maximum value for y axis in visualization graphs
8
+ - Fixed [#158]( https://github.com/urbanopt/urbanopt-cli/issues/158 ), Check units for Gas:Facility in visualization graphs
9
+ - Fixed [#172]( https://github.com/urbanopt/urbanopt-cli/issues/172 ), Add district heating/cooling systems
10
+ - Fixed [#174]( https://github.com/urbanopt/urbanopt-cli/issues/174 ), Ditto reader doesn't work in a virtualenv
11
+ - Fixed [#175]( https://github.com/urbanopt/urbanopt-cli/issues/175 ), developer_nrel_key warning at each user command
12
+ - Fixed [#176]( https://github.com/urbanopt/urbanopt-cli/issues/176 ), validate eui results
13
+ - Fixed [#183]( https://github.com/urbanopt/urbanopt-cli/issues/183 ), Add EV charging measure to example project
14
+ - Fixed [#184]( https://github.com/urbanopt/urbanopt-cli/issues/184 ), Change fuel units to kBtus on the monthly and net charts
15
+ - Fixed [#187]( https://github.com/urbanopt/urbanopt-cli/issues/187 ), Tests shouldn't take so long
16
+ - Fixed [#192]( https://github.com/urbanopt/urbanopt-cli/issues/192 ), Add electrical components to feature-file to work with opendss
17
+ - Fixed [#199]( https://github.com/urbanopt/urbanopt-cli/issues/199 ), re-added the multifamily options to the commercial_building_types list.
18
+ - Fixed [#200]( https://github.com/urbanopt/urbanopt-cli/issues/200 ), Scenario Level Assumptions File cannot be Defined by User
19
+ - Fixed [#201]( https://github.com/urbanopt/urbanopt-cli/issues/201 ), OpenDSS should work with URBANopt
20
+ - Fixed [#202]( https://github.com/urbanopt/urbanopt-cli/issues/202 ), Use the new Ditto-Reader CLI in the UO CLI - Remove Pycall Dependency
21
+ - Fixed [#203]( https://github.com/urbanopt/urbanopt-cli/issues/203 ), Update CI to install Python and urbanopt-ditto-reader package
22
+
3
23
  ## Version 0.5.0
4
24
 
5
25
  Date Range 11/17/20 - 12/16/20
data/CMakeLists.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  cmake_minimum_required(VERSION 3.10.2)
2
2
  cmake_policy(SET CMP0048 NEW)
3
3
 
4
- project(UrbanOptCLI VERSION 0.4.1)
4
+ project(UrbanOptCLI VERSION 0.5.0)
5
5
 
6
6
  include(FindOpenStudioSDK.cmake)
7
7
 
@@ -89,21 +89,21 @@ option(BUILD_PACKAGE "Build package" OFF)
89
89
  # need to update the MD5sum for each platform and url below
90
90
  if(UNIX)
91
91
  if(APPLE)
92
- set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20201119-darwin.tar.gz")
93
- set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "950d0725f8cddd5c31df94b0357e3125")
92
+ set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20201229-darwin.tar.gz")
93
+ set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "729fc3e28d067507cc468dc44a013c36")
94
94
  else()
95
- set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20201123-linux.tar.gz")
96
- set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "596fc8b2383baa2dd9e0bf81644c8593")
95
+ set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20201229-linux.tar.gz")
96
+ set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "611f8b4ea835279b25003dbbf4f87a8c")
97
97
  endif()
98
98
  elseif(WIN32)
99
99
  if(CMAKE_CL_64)
100
- set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20201119-windows.tar.gz")
101
- set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "f6af2bbfee964d46f756c55e9f74ce84")
100
+ set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20201230-windows.tar.gz")
101
+ set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "147b1dce55875b4d39b953de3def4b0c")
102
102
  endif()
103
103
  endif()
104
104
 
105
105
  set(URBANOPT_CLI_GEMS_ZIP_LOCAL_PATH "${PROJECT_BINARY_DIR}/${URBANOPT_CLI_GEMS_ZIP_FILENAME}")
106
- set(URBANOPT_CLI_GEMS_DIR "${PROJECT_BINARY_DIR}/urbanopt_cli_gems")
106
+ set(URBANOPT_CLI_GEMS_DIR "${PROJECT_BINARY_DIR}/urbanopt-cli-gems")
107
107
  if(EXISTS "${URBANOPT_CLI_GEMS_ZIP_LOCAL_PATH}")
108
108
  file(MD5 "${URBANOPT_CLI_GEMS_ZIP_LOCAL_PATH}" URBANOPT_CLI_GEMS_ZIP_MD5)
109
109
  endif()
@@ -126,7 +126,7 @@ set(RUBY_DIR "${PROJECT_BINARY_DIR}/ruby")
126
126
  if(UNIX)
127
127
  if(APPLE)
128
128
  set(RUBY_ZIP_FILENAME "ruby-2.5.5-darwin.tar.gz")
129
- set(RUBY_ZIP_EXPECTED_MD5 "2351d0505c7ac168477e02ea7900369a")
129
+ set(RUBY_ZIP_EXPECTED_MD5 "27e3e91bd19f4edf1c04d31c7345ce5d")
130
130
  else()
131
131
  set(RUBY_ZIP_FILENAME "ruby-2.5.5-linux.tar.gz")
132
132
  set(RUBY_ZIP_EXPECTED_MD5 "5c9ab1aeb3366e6e579592cbb72ddbef")
@@ -176,7 +176,7 @@ elseif(WIN32)
176
176
  endif()
177
177
 
178
178
  install(DIRECTORY "${PROJECT_BINARY_DIR}/ruby" DESTINATION "." COMPONENT "Ruby" USE_SOURCE_PERMISSIONS)
179
- install(DIRECTORY "${PROJECT_BINARY_DIR}/urbanopt_cli_gems/" DESTINATION "gems" COMPONENT "UrbanOpt" USE_SOURCE_PERMISSIONS)
179
+ install(DIRECTORY "${PROJECT_BINARY_DIR}/urbanopt-cli-gems/" DESTINATION "gems" COMPONENT "UrbanOpt" USE_SOURCE_PERMISSIONS)
180
180
 
181
181
  #if(WIN32)
182
182
  # install(PROGRAMS "${OPENSTUDIO_SDK_PATH}/bin/install_utility.exe" DESTINATION bin COMPONENT "CLI")
@@ -1,6 +1,6 @@
1
1
  set(OPENSTUDIO_VERSION_MAJOR 3)
2
- set(OPENSTUDIO_VERSION_MINOR 0)
3
- set(OPENSTUDIO_VERSION_PATCH 1)
2
+ set(OPENSTUDIO_VERSION_MINOR 1)
3
+ set(OPENSTUDIO_VERSION_PATCH 0)
4
4
  set(OPENSTUDIO_VERSION "${OPENSTUDIO_VERSION_MAJOR}.${OPENSTUDIO_VERSION_MINOR}.${OPENSTUDIO_VERSION_PATCH}")
5
5
 
6
6
  find_package(openstudio "${OPENSTUDIO_VERSION}" CONFIG)
@@ -16,18 +16,18 @@ else()
16
16
  set(OPENSTUDIO_BASELINK "https://openstudio-builds.s3.amazonaws.com/${OPENSTUDIO_VERSION}"
17
17
  CACHE STRING "Base link to where the openstudio archives are hosted" FORCE)
18
18
 
19
- set(OPENSTUDIO_VERSION_SHA "+09b7c8a554")
19
+ set(OPENSTUDIO_VERSION_SHA "+e165090621")
20
20
 
21
21
  if(APPLE)
22
- set(OPENSTUDIO_EXPECTED_HASH f0c8df7811812fd1601db2842d2eea0b)
22
+ set(OPENSTUDIO_EXPECTED_HASH 20d74394f0889261ee1c382383461b0b)
23
23
  set(OPENSTUDIO_PLATFORM "Darwin")
24
24
  set(OPENSTUDIO_EXT "tar.gz")
25
25
  elseif(UNIX)
26
- set(OPENSTUDIO_EXPECTED_HASH deeafa60b1f87f98527b85b3f0652ea4)
26
+ set(OPENSTUDIO_EXPECTED_HASH 866cdac61ca955ce6d13ecf0fa5230a2)
27
27
  set(OPENSTUDIO_PLATFORM "Linux")
28
28
  set(OPENSTUDIO_EXT "tar.gz")
29
29
  elseif(WIN32)
30
- set(OPENSTUDIO_EXPECTED_HASH f4329ab725fe3e68203a112f8b9655e5)
30
+ set(OPENSTUDIO_EXPECTED_HASH aa04ed795c6d2b558df6175fad042f1f)
31
31
  set(OPENSTUDIO_PLATFORM "Windows")
32
32
  set(OPENSTUDIO_EXT "tar.gz")
33
33
  endif()
data/Gemfile CHANGED
@@ -36,13 +36,13 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
36
36
  # if allow_local && File.exist?('../urbanopt-scenario-gem')
37
37
  # gem 'urbanopt-scenario', path: '../urbanopt-scenario-gem'
38
38
  # elsif allow_local
39
- # gem 'urbanopt-scenario', github: 'URBANopt/urbanopt-scenario-gem', branch: 'develop'
39
+ # gem 'urbanopt-scenario', github: 'URBANopt/urbanopt-scenario-gem', branch: 'develop'
40
40
  # end
41
41
 
42
42
  # if allow_local && File.exist?('../urbanopt-geojson-gem')
43
43
  # gem 'urbanopt-geojson', path: '../urbanopt-geojson-gem'
44
44
  # elsif allow_local
45
- # gem 'urbanopt-geojson', github: 'URBANopt/urbanopt-geojson-gem', branch: 'develop'
45
+ # gem 'urbanopt-geojson', github: 'URBANopt/urbanopt-geojson-gem', branch: 'develop'
46
46
  # end
47
47
 
48
48
  # if allow_local && File.exist?('../urbanopt-reopt-gem')
@@ -51,14 +51,14 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
51
51
  # gem 'urbanopt-reopt', github: 'URBANopt/urbanopt-reopt-gem', branch: 'develop'
52
52
  # end
53
53
 
54
- #if allow_local && File.exist?('../openstudio-load-flexibility-measures')
55
- # gem 'openstudio-load-flexibility-measures', path: '../openstudio-load-flexibility-measures'
56
- #elsif allow_local
57
- # gem 'openstudio-load-flexibility-measures', github: 'NREL/openstudio-load-flexibility-measures-gem', branch: 'develop'
58
- #end
54
+ # if allow_local && File.exist?('../openstudio-load-flexibility-measures')
55
+ # gem 'openstudio-load-flexibility-measures', path: '../openstudio-load-flexibility-measures'
56
+ # elsif allow_local
57
+ # gem 'openstudio-load-flexibility-measures', github: 'NREL/openstudio-load-flexibility-measures-gem', branch: 'develop'
58
+ # end
59
59
 
60
60
  # if allow_local && File.exist?('../urbanopt-reporting-gem')
61
- # gem 'urbanopt-reporting', path: '../urbanopt-reporting-gem'
61
+ # gem 'urbanopt-reporting', path: '../urbanopt-reporting-gem'
62
62
  # elsif allow_local
63
- # gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
63
+ # gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
64
64
  # end
@@ -75,9 +75,9 @@ else
75
75
  end
76
76
 
77
77
  if allow_local && File.exists?('../urbanopt-reporting-gem')
78
- gem 'urbanopt-reporting', path: '../urbanotp-reporting-gem'
78
+ gem 'urbanopt-reporting', path: '../urbanopt-reporting-gem'
79
79
  elsif allow_local
80
80
  gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
81
81
  else
82
- gem 'urbanopt-reporting', '~> 0.3.2'
83
- end
82
+ gem 'urbanopt-reporting', '~> 0.3.6'
83
+ end
@@ -33,7 +33,7 @@
33
33
  "end_date": "2017-12-31T07:00:00.000Z",
34
34
  "cec_climate_zone": null,
35
35
  "climate_zone": "6A",
36
- "default_template": "90.1-2013",
36
+ "default_template": "90.1-2013",
37
37
  "import_surrounding_buildings_as_shading": null,
38
38
  "surface_elevation": null,
39
39
  "tariff_filename": null,
@@ -45,8 +45,8 @@
45
45
  "coordinates": [
46
46
  -78.84948467732347,
47
47
  42.81677154451123
48
- ]
49
- }
48
+ ]
49
+ }
50
50
  },
51
51
 
52
52
  {
@@ -118,7 +118,11 @@
118
118
  "building_type": "Food service",
119
119
  "floor_area": 22313,
120
120
  "footprint_area": 22313,
121
- "number_of_stories": 1
121
+ "number_of_stories": 1,
122
+ "ev_charging": true,
123
+ "ev_charging_behavior": "Business as Usual",
124
+ "ev_percent": 100,
125
+ "ev_curtailment_frac": 0.5
122
126
  },
123
127
  "geometry": {
124
128
  "type": "Polygon",
@@ -158,7 +162,9 @@
158
162
  "building_type": "Food service",
159
163
  "floor_area": 125631,
160
164
  "footprint_area": 41877,
161
- "number_of_stories": 3
165
+ "number_of_stories": 3,
166
+ "ev_charging": true,
167
+ "ev_charging_station_type": "Typical Public"
162
168
  },
163
169
  "geometry": {
164
170
  "type": "Polygon",
@@ -198,7 +204,9 @@
198
204
  "building_type": "Food service",
199
205
  "floor_area": 31623,
200
206
  "footprint_area": 10541,
201
- "number_of_stories": 3
207
+ "number_of_stories": 3,
208
+ "ev_charging": true,
209
+ "ev_charging_station_type": "Typical Public"
202
210
  },
203
211
  "geometry": {
204
212
  "type": "Polygon",
@@ -233,12 +241,15 @@
233
241
  "type": "Feature",
234
242
  "properties": {
235
243
  "id": "5",
236
- "name": "Restaurant 14",
244
+ "name": "District Office 1",
237
245
  "type": "Building",
238
- "building_type": "Food service",
246
+ "building_type": "Office",
247
+ "system_type": "VAV district chilled water with district hot water reheat",
239
248
  "floor_area": 8804,
240
249
  "footprint_area": 8804,
241
- "number_of_stories": 1
250
+ "number_of_stories": 1,
251
+ "ev_charging": true,
252
+ "ev_charging_station_type": "Typical Work"
242
253
  },
243
254
  "geometry": {
244
255
  "type": "Polygon",
@@ -273,12 +284,14 @@
273
284
  "type": "Feature",
274
285
  "properties": {
275
286
  "id": "6",
276
- "name": "Restaurant 15",
287
+ "name": "District Office 2",
277
288
  "type": "Building",
278
- "building_type": "Food service",
289
+ "building_type": "Office",
290
+ "system_type": "VAV district chilled water with district hot water reheat",
279
291
  "floor_area": 10689,
280
292
  "footprint_area": 10689,
281
- "number_of_stories": 1
293
+ "number_of_stories": 1,
294
+ "ev_charging": true
282
295
  },
283
296
  "geometry": {
284
297
  "type": "Polygon",
@@ -316,6 +329,7 @@
316
329
  "name": "Office 1",
317
330
  "type": "Building",
318
331
  "building_type": "Office",
332
+ "system_type": "VAV district chilled water with district hot water reheat",
319
333
  "number_of_stories": 6,
320
334
  "detailed_model_filename": "7.osm"
321
335
  },
@@ -355,6 +369,7 @@
355
369
  "name": "Hospital 1",
356
370
  "type": "Building",
357
371
  "building_type": "Outpatient health care",
372
+ "system_type": "VAV district chilled water with district hot water reheat",
358
373
  "number_of_stories": 10,
359
374
  "detailed_model_filename": "8.osm"
360
375
  },
@@ -392,9 +407,9 @@
392
407
  ]
393
408
  ]
394
409
  ]
395
- }
410
+ }
396
411
  },
397
-
412
+
398
413
  {
399
414
  "type": "Feature",
400
415
  "properties": {
@@ -449,7 +464,7 @@
449
464
  ]
450
465
  }
451
466
  },
452
-
467
+
453
468
  {
454
469
  "type": "Feature",
455
470
  "properties": {
@@ -505,7 +520,7 @@
505
520
  ]
506
521
  }
507
522
  },
508
-
523
+
509
524
  {
510
525
  "type": "Feature",
511
526
  "properties": {
@@ -545,7 +560,7 @@
545
560
  ]
546
561
  }
547
562
  },
548
-
563
+
549
564
  {"type": "Feature",
550
565
  "properties": {
551
566
  "id": "12",
@@ -582,9 +597,9 @@
582
597
  ]
583
598
  ]
584
599
  ]
585
- }
600
+ }
586
601
  },
587
-
602
+
588
603
  {
589
604
  "type": "Feature",
590
605
  "properties": {
@@ -622,7 +637,7 @@
622
637
  ]
623
638
  ]
624
639
  ]
625
- }
640
+ }
626
641
  }
627
642
  ]
628
643
  }
@@ -0,0 +1,2116 @@
1
+ {
2
+ "type": "FeatureCollection",
3
+ "mappers": [],
4
+ "project": {
5
+ "id": "7c33a001-bccb-413e-ac87-67558b5d4b07",
6
+ "name": "New Project",
7
+ "begin_date": "2017-01-01T07:00:00.000Z",
8
+ "end_date": "2017-12-31T07:00:00.000Z",
9
+ "cec_climate_zone": null,
10
+ "climate_zone": "6A",
11
+ "default_template": "90.1-2013",
12
+ "import_surrounding_buildings_as_shading": null,
13
+ "surface_elevation": null,
14
+ "tariff_filename": null,
15
+ "timesteps_per_hour": 1,
16
+ "weather_filename": "USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw"
17
+ },
18
+ "scenarios": [
19
+ {
20
+ "feature_mappings": [],
21
+ "id": "72301739-c6c3-4dd7-bf1a-f37c8eff40db",
22
+ "name": "New Scenario"
23
+ }
24
+ ],
25
+ "features": [
26
+ {
27
+ "type": "Feature",
28
+ "properties": {
29
+ "id": "53340c2c-ab20-40db-aba1-11ac607c52a7",
30
+ "name": "Site Origin",
31
+ "type": "Site Origin",
32
+ "begin_date": "2017-01-01T07:00:00.000Z",
33
+ "end_date": "2017-12-31T07:00:00.000Z",
34
+ "cec_climate_zone": null,
35
+ "climate_zone": "6A",
36
+ "default_template": "90.1-2013",
37
+ "import_surrounding_buildings_as_shading": null,
38
+ "surface_elevation": null,
39
+ "tariff_filename": null,
40
+ "timesteps_per_hour": 1,
41
+ "weather_filename": "USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw"
42
+ },
43
+ "geometry": {
44
+ "type": "Point",
45
+ "coordinates": [
46
+ -78.84948467732347,
47
+ 42.81677154451123
48
+ ]
49
+ }
50
+ },
51
+
52
+ {
53
+ "type": "Feature",
54
+ "properties": {
55
+ "id": "1",
56
+ "name": "Mixed_use 1",
57
+ "type": "Building",
58
+ "building_type": "Mixed use",
59
+ "floor_area": 752184,
60
+ "footprint_area": 188046,
61
+ "number_of_stories": 4,
62
+ "mixed_type_1": "Office",
63
+ "mixed_type_1_percentage": 50,
64
+ "mixed_type_2": "Food service",
65
+ "mixed_type_2_percentage": 50,
66
+ "mixed_type_3": "Strip shopping mall",
67
+ "mixed_type_3_percentage": 0,
68
+ "mixed_type_4": "Lodging",
69
+ "mixed_type_4_percentage": 0
70
+ },
71
+ "geometry": {
72
+ "type": "Polygon",
73
+ "coordinates": [
74
+ [
75
+ [
76
+ -78.84650338745196,
77
+ 42.81331301863236
78
+ ],
79
+ [
80
+ -78.84652443964629,
81
+ 42.81463974371101
82
+ ],
83
+ [
84
+ -78.84680142363833,
85
+ 42.815293654042534
86
+ ],
87
+ [
88
+ -78.84744455124724,
89
+ 42.81514110006128
90
+ ],
91
+ [
92
+ -78.84728610028628,
93
+ 42.81478165791734
94
+ ],
95
+ [
96
+ -78.84786797764677,
97
+ 42.814643631760134
98
+ ],
99
+ [
100
+ -78.84721106637106,
101
+ 42.813153418927016
102
+ ],
103
+ [
104
+ -78.84650338745196,
105
+ 42.81331301863236
106
+ ]
107
+ ]
108
+ ]
109
+ }
110
+ },
111
+
112
+ {
113
+ "type": "Feature",
114
+ "properties": {
115
+ "id": "2",
116
+ "name": "Restaurant 1",
117
+ "type": "Building",
118
+ "building_type": "Food service",
119
+ "floor_area": 22313,
120
+ "footprint_area": 22313,
121
+ "number_of_stories": 1,
122
+ "ev_charging": true,
123
+ "ev_charging_behavior": "Business as Usual",
124
+ "ev_percent": 100,
125
+ "ev_curtailment_frac": 0.5
126
+ },
127
+ "geometry": {
128
+ "type": "Polygon",
129
+ "coordinates": [
130
+ [
131
+ [
132
+ -78.8500120420453,
133
+ 42.81812185529549
134
+ ],
135
+ [
136
+ -78.85038975191084,
137
+ 42.81803226424341
138
+ ],
139
+ [
140
+ -78.850630729414,
141
+ 42.81857888627522
142
+ ],
143
+ [
144
+ -78.85025301954843,
145
+ 42.81866847653532
146
+ ],
147
+ [
148
+ -78.8500120420453,
149
+ 42.81812185529549
150
+ ]
151
+ ]
152
+ ]
153
+ }
154
+ },
155
+
156
+ {
157
+ "type": "Feature",
158
+ "properties": {
159
+ "id": "3",
160
+ "name": "Restaurant 10",
161
+ "type": "Building",
162
+ "building_type": "Food service",
163
+ "floor_area": 125631,
164
+ "footprint_area": 41877,
165
+ "number_of_stories": 3,
166
+ "ev_charging": true,
167
+ "ev_charging_station_type": "Typical Public"
168
+ },
169
+ "geometry": {
170
+ "type": "Polygon",
171
+ "coordinates": [
172
+ [
173
+ [
174
+ -78.84962224800356,
175
+ 42.81329273502644
176
+ ],
177
+ [
178
+ -78.84929833482822,
179
+ 42.81337083838241
180
+ ],
181
+ [
182
+ -78.84983265832118,
183
+ 42.814563298664666
184
+ ],
185
+ [
186
+ -78.85015657149653,
187
+ 42.81448519681467
188
+ ],
189
+ [
190
+ -78.84962224800356,
191
+ 42.81329273502644
192
+ ]
193
+ ]
194
+ ]
195
+ }
196
+ },
197
+
198
+ {
199
+ "type": "Feature",
200
+ "properties": {
201
+ "id": "4",
202
+ "name": "Restaurant 12",
203
+ "type": "Building",
204
+ "building_type": "Food service",
205
+ "floor_area": 31623,
206
+ "footprint_area": 10541,
207
+ "number_of_stories": 3,
208
+ "ev_charging": true,
209
+ "ev_charging_station_type": "Typical Public"
210
+ },
211
+ "geometry": {
212
+ "type": "Polygon",
213
+ "coordinates": [
214
+ [
215
+ [
216
+ -78.84907318596754,
217
+ 42.81342719667407
218
+ ],
219
+ [
220
+ -78.84862090048105,
221
+ 42.81353625345659
222
+ ],
223
+ [
224
+ -78.84871721918239,
225
+ 42.813751210926796
226
+ ],
227
+ [
228
+ -78.84916950466888,
229
+ 42.81364215452331
230
+ ],
231
+ [
232
+ -78.84907318596754,
233
+ 42.81342719667407
234
+ ]
235
+ ]
236
+ ]
237
+ }
238
+ },
239
+
240
+ {
241
+ "type": "Feature",
242
+ "properties": {
243
+ "id": "5",
244
+ "name": "District Office 1",
245
+ "type": "Building",
246
+ "building_type": "Office",
247
+ "system_type": "VAV district chilled water with district hot water reheat",
248
+ "floor_area": 8804,
249
+ "footprint_area": 8804,
250
+ "number_of_stories": 1,
251
+ "ev_charging": true,
252
+ "ev_charging_station_type": "Typical Work"
253
+ },
254
+ "geometry": {
255
+ "type": "Polygon",
256
+ "coordinates": [
257
+ [
258
+ [
259
+ -78.84809175426629,
260
+ 42.81367038997507
261
+ ],
262
+ [
263
+ -78.84848670778973,
264
+ 42.81357515750889
265
+ ],
266
+ [
267
+ -78.84857883872144,
268
+ 42.81378076888831
269
+ ],
270
+ [
271
+ -78.84818388519801,
272
+ 42.81387600103781
273
+ ],
274
+ [
275
+ -78.84809175426629,
276
+ 42.81367038997507
277
+ ]
278
+ ]
279
+ ]
280
+ }
281
+ },
282
+
283
+ {
284
+ "type": "Feature",
285
+ "properties": {
286
+ "id": "6",
287
+ "name": "District Office 2",
288
+ "type": "Building",
289
+ "building_type": "Office",
290
+ "system_type": "VAV district chilled water with district hot water reheat",
291
+ "floor_area": 10689,
292
+ "footprint_area": 10689,
293
+ "number_of_stories": 1,
294
+ "ev_charging": true
295
+ },
296
+ "geometry": {
297
+ "type": "Polygon",
298
+ "coordinates": [
299
+ [
300
+ [
301
+ -78.84846106738529,
302
+ 42.814495803077364
303
+ ],
304
+ [
305
+ -78.8486903952376,
306
+ 42.81444050756261
307
+ ],
308
+ [
309
+ -78.8484977578349,
310
+ 42.81401059666683
311
+ ],
312
+ [
313
+ -78.84826842998261,
314
+ 42.81406589256599
315
+ ],
316
+ [
317
+ -78.84846106738529,
318
+ 42.814495803077364
319
+ ]
320
+ ]
321
+ ]
322
+ }
323
+ },
324
+
325
+ {
326
+ "type": "Feature",
327
+ "properties": {
328
+ "id": "7",
329
+ "name": "Office 1",
330
+ "type": "Building",
331
+ "building_type": "Office",
332
+ "system_type": "VAV district chilled water with district hot water reheat",
333
+ "number_of_stories": 6,
334
+ "detailed_model_filename": "7.osm"
335
+ },
336
+ "geometry": {
337
+ "type": "Polygon",
338
+ "coordinates": [
339
+ [
340
+ [
341
+ -78.84733878006863,
342
+ 42.816466983030836
343
+ ],
344
+ [
345
+ -78.84854275129324,
346
+ 42.81617669028003
347
+ ],
348
+ [
349
+ -78.848356395545,
350
+ 42.81576080994094
351
+ ],
352
+ [
353
+ -78.84715242432038,
354
+ 42.81605110464406
355
+ ],
356
+ [
357
+ -78.84733878006863,
358
+ 42.816466983030836
359
+ ]
360
+ ]
361
+ ]
362
+ }
363
+ },
364
+
365
+ {
366
+ "type": "Feature",
367
+ "properties": {
368
+ "id": "8",
369
+ "name": "Hospital 1",
370
+ "type": "Building",
371
+ "building_type": "Outpatient health care",
372
+ "system_type": "VAV district chilled water with district hot water reheat",
373
+ "number_of_stories": 10,
374
+ "detailed_model_filename": "8.osm"
375
+ },
376
+ "geometry": {
377
+ "type": "Polygon",
378
+ "coordinates": [
379
+ [
380
+ [
381
+ -78.84973966335251,
382
+ 42.8154441454509
383
+ ],
384
+ [
385
+ -78.85049562542395,
386
+ 42.81525669280299
387
+ ],
388
+ [
389
+ -78.85078257620685,
390
+ 42.81588131780643
391
+ ],
392
+ [
393
+ -78.8505086568277,
394
+ 42.81594736368234
395
+ ],
396
+ [
397
+ -78.85041233812638,
398
+ 42.815732413845666
399
+ ],
400
+ [
401
+ -78.84991755499783,
402
+ 42.81585689105046
403
+ ],
404
+ [
405
+ -78.84973966335251,
406
+ 42.8154441454509
407
+ ]
408
+ ]
409
+ ]
410
+ }
411
+ },
412
+
413
+ {
414
+ "type": "Feature",
415
+ "properties": {
416
+ "id": "9",
417
+ "name": "Hospital 2",
418
+ "type": "Building",
419
+ "building_type": "Inpatient health care",
420
+ "number_of_stories": 3,
421
+ "detailed_model_filename": "9.osm"
422
+ },
423
+ "geometry": {
424
+ "type": "Polygon",
425
+ "coordinates": [
426
+ [
427
+ [
428
+ -78.85083627755732,
429
+ 42.81600678613279
430
+ ],
431
+ [
432
+ -78.85056039001891,
433
+ 42.816076133580566
434
+ ],
435
+ [
436
+ -78.85072568130569,
437
+ 42.816450649528036
438
+ ],
439
+ [
440
+ -78.84940134236577,
441
+ 42.81677160705479
442
+ ],
443
+ [
444
+ -78.84958014898304,
445
+ 42.81716858994267
446
+ ],
447
+ [
448
+ -78.8507262115271,
449
+ 42.816890840117026
450
+ ],
451
+ [
452
+ -78.8508565789851,
453
+ 42.81719595796099
454
+ ],
455
+ [
456
+ -78.85132137101688,
457
+ 42.81708331517635
458
+ ],
459
+ [
460
+ -78.85083627755732,
461
+ 42.81600678613279
462
+ ]
463
+ ]
464
+ ]
465
+ }
466
+ },
467
+
468
+ {
469
+ "type": "Feature",
470
+ "properties": {
471
+ "id": "10",
472
+ "name": "Mixed use 2",
473
+ "type": "Building",
474
+ "building_type": "Mixed use",
475
+ "floor_area": 1278384,
476
+ "footprint_area": 159798,
477
+ "number_of_stories": 8,
478
+ "mixed_type_1": "Strip shopping mall",
479
+ "mixed_type_1_percentage": 25,
480
+ "mixed_type_2": "Food service",
481
+ "mixed_type_2_percentage": 25,
482
+ "mixed_type_3": "Office",
483
+ "mixed_type_3_percentage": 15,
484
+ "mixed_type_4": "Lodging",
485
+ "mixed_type_4_percentage": 35
486
+ },
487
+ "geometry": {
488
+ "type": "Polygon",
489
+ "coordinates": [
490
+ [
491
+ [
492
+ -78.85115264550463,
493
+ 42.81786093060211
494
+ ],
495
+ [
496
+ -78.85163483958878,
497
+ 42.81774467026972
498
+ ],
499
+ [
500
+ -78.85246596719499,
501
+ 42.819583261120755
502
+ ],
503
+ [
504
+ -78.85082390085432,
505
+ 42.819979162017745
506
+ ],
507
+ [
508
+ -78.85060552295334,
509
+ 42.81947573727234
510
+ ],
511
+ [
512
+ -78.85174564783776,
513
+ 42.81920483484765
514
+ ],
515
+ [
516
+ -78.85115264550463,
517
+ 42.81786093060211
518
+ ]
519
+ ]
520
+ ]
521
+ }
522
+ },
523
+
524
+ {
525
+ "type": "Feature",
526
+ "properties": {
527
+ "id": "11",
528
+ "name": "Restaurant 13",
529
+ "type": "Building",
530
+ "building_type": "Food service",
531
+ "floor_area": 32511,
532
+ "footprint_area": 10837,
533
+ "number_of_stories": 3
534
+ },
535
+ "geometry": {
536
+ "type": "Polygon",
537
+ "coordinates": [
538
+ [
539
+ [
540
+ -78.84961163640645,
541
+ 42.81460851835703
542
+ ],
543
+ [
544
+ -78.84914661048371,
545
+ 42.81472064501696
546
+ ],
547
+ [
548
+ -78.84905029178236,
549
+ 42.81450569091638
550
+ ],
551
+ [
552
+ -78.84951531770513,
553
+ 42.81439356386673
554
+ ],
555
+ [
556
+ -78.84961163640645,
557
+ 42.81460851835703
558
+ ]
559
+ ]
560
+ ]
561
+ }
562
+ },
563
+
564
+ {"type": "Feature",
565
+ "properties": {
566
+ "id": "12",
567
+ "name": "Mall 1",
568
+ "type": "Building",
569
+ "building_type": "Strip shopping mall",
570
+ "floor_area": 374409,
571
+ "footprint_area": 124803,
572
+ "number_of_stories": 3
573
+ },
574
+ "geometry": {
575
+ "type": "Polygon",
576
+ "coordinates": [
577
+ [
578
+ [
579
+ -78.84768338040897,
580
+ 42.817161656757065
581
+ ],
582
+ [
583
+ -78.8482630702579,
584
+ 42.8170218879136
585
+ ],
586
+ [
587
+ -78.84915297130291,
588
+ 42.81900776764229
589
+ ],
590
+ [
591
+ -78.84857328145401,
592
+ 42.81914753199706
593
+ ],
594
+ [
595
+ -78.84768338040897,
596
+ 42.817161656757065
597
+ ]
598
+ ]
599
+ ]
600
+ }
601
+ },
602
+
603
+ {
604
+ "type": "Feature",
605
+ "properties": {
606
+ "id": "13",
607
+ "name": "Hotel 1",
608
+ "type": "Building",
609
+ "building_type": "Lodging",
610
+ "floor_area": 316160,
611
+ "footprint_area": 31616,
612
+ "number_of_stories": 10
613
+ },
614
+ "geometry": {
615
+ "type": "Polygon",
616
+ "coordinates": [
617
+ [
618
+ [
619
+ -78.8494955083645,
620
+ 42.819748790984335
621
+ ],
622
+ [
623
+ -78.84891089471263,
624
+ 42.81989327725856
625
+ ],
626
+ [
627
+ -78.8491389243777,
628
+ 42.82038967009544
629
+ ],
630
+ [
631
+ -78.84972353802956,
632
+ 42.82024518498119
633
+ ],
634
+ [
635
+ -78.8494955083645,
636
+ 42.819748790984335
637
+ ]
638
+ ]
639
+ ]
640
+ }
641
+ },
642
+ {
643
+ "type": "Feature",
644
+ "properties": {
645
+ "id": "3f960177-51b5-4a0b-9c35-41da085597fc",
646
+ "geometryType": "Rectangle",
647
+ "name": "substation",
648
+ "type": "District System",
649
+ "footprint_area": 36412,
650
+ "footprint_perimeter": 769,
651
+ "district_system_type": "Electrical Substation"
652
+ },
653
+ "geometry": {
654
+ "type": "Polygon",
655
+ "coordinates": [
656
+ [
657
+ [
658
+ -78.84050846099855,
659
+ 42.82071392432047
660
+ ],
661
+ [
662
+ -78.84050846099855,
663
+ 42.820257495607194
664
+ ],
665
+ [
666
+ -78.83969306945802,
667
+ 42.820257495607194
668
+ ],
669
+ [
670
+ -78.83969306945802,
671
+ 42.82071392432047
672
+ ],
673
+ [
674
+ -78.84050846099855,
675
+ 42.82071392432047
676
+ ]
677
+ ]
678
+ ]
679
+ }
680
+ },
681
+ {
682
+ "type": "Feature",
683
+ "properties": {
684
+ "id": "897530f5-a6d6-446f-94fd-4087196fceaf",
685
+ "geometryType": "Rectangle",
686
+ "name": "t1",
687
+ "type": "District System",
688
+ "footprint_area": 8921,
689
+ "footprint_perimeter": 379,
690
+ "district_system_type": "Transformer",
691
+ "equipment": [
692
+ "Transformer--75KVA PM"
693
+ ]
694
+ },
695
+ "geometry": {
696
+ "type": "Polygon",
697
+ "coordinates": [
698
+ [
699
+ [
700
+ -78.84829759597778,
701
+ 42.819816802617964
702
+ ],
703
+ [
704
+ -78.84829759597778,
705
+ 42.81958071579592
706
+ ],
707
+ [
708
+ -78.84791135787965,
709
+ 42.81958071579592
710
+ ],
711
+ [
712
+ -78.84791135787965,
713
+ 42.819816802617964
714
+ ],
715
+ [
716
+ -78.84829759597778,
717
+ 42.819816802617964
718
+ ]
719
+ ]
720
+ ]
721
+ }
722
+ },
723
+ {
724
+ "type": "Feature",
725
+ "properties": {
726
+ "id": "b02e3fe9-77d0-47f9-86cb-e4db960afd62",
727
+ "geometryType": "Rectangle",
728
+ "name": "t2",
729
+ "type": "District System",
730
+ "footprint_area": 13682,
731
+ "footprint_perimeter": 471,
732
+ "district_system_type": "Transformer",
733
+ "equipment": [
734
+ "Transformer--75KVA CT"
735
+ ]
736
+ },
737
+ "geometry": {
738
+ "type": "Polygon",
739
+ "coordinates": [
740
+ [
741
+ [
742
+ -78.84600162506105,
743
+ 42.81466990552482
744
+ ],
745
+ [
746
+ -78.84600162506105,
747
+ 42.81430787523061
748
+ ],
749
+ [
750
+ -78.8456153869629,
751
+ 42.81430787523061
752
+ ],
753
+ [
754
+ -78.8456153869629,
755
+ 42.81466990552482
756
+ ],
757
+ [
758
+ -78.84600162506105,
759
+ 42.81466990552482
760
+ ]
761
+ ]
762
+ ]
763
+ }
764
+ },
765
+ {
766
+ "type": "Feature",
767
+ "properties": {
768
+ "id": "54cd0a5a-2ebe-4b39-936a-f238b503c221",
769
+ "geometryType": "Rectangle",
770
+ "name": "t3",
771
+ "type": "District System",
772
+ "footprint_area": 13085,
773
+ "footprint_perimeter": 459,
774
+ "district_system_type": "Transformer",
775
+ "equipment": [
776
+ "Transformer--100KVA PM"
777
+ ]
778
+ },
779
+ "geometry": {
780
+ "type": "Polygon",
781
+ "coordinates": [
782
+ [
783
+ [
784
+ -78.85344743728639,
785
+ 42.819336758466164
786
+ ],
787
+ [
788
+ -78.85344743728639,
789
+ 42.818990494797106
790
+ ],
791
+ [
792
+ -78.85306119918825,
793
+ 42.818990494797106
794
+ ],
795
+ [
796
+ -78.85306119918825,
797
+ 42.819336758466164
798
+ ],
799
+ [
800
+ -78.85344743728639,
801
+ 42.819336758466164
802
+ ]
803
+ ]
804
+ ]
805
+ }
806
+ },
807
+ {
808
+ "type": "Feature",
809
+ "properties": {
810
+ "id": "1b4b5dcf-8d18-4954-b655-a93634542733",
811
+ "geometryType": "Rectangle",
812
+ "name": "t4",
813
+ "type": "District System",
814
+ "footprint_area": 6279,
815
+ "footprint_perimeter": 333,
816
+ "district_system_type": "Transformer",
817
+ "equipment": [
818
+ "Transformer--50KVA PM"
819
+ ]
820
+ },
821
+ "geometry": {
822
+ "type": "Polygon",
823
+ "coordinates": [
824
+ [
825
+ [
826
+ -78.8517951965332,
827
+ 42.815889774609616
828
+ ],
829
+ [
830
+ -78.8517951965332,
831
+ 42.81573237349923
832
+ ],
833
+ [
834
+ -78.85138750076295,
835
+ 42.81573237349923
836
+ ],
837
+ [
838
+ -78.85138750076295,
839
+ 42.815889774609616
840
+ ],
841
+ [
842
+ -78.8517951965332,
843
+ 42.815889774609616
844
+ ]
845
+ ]
846
+ ]
847
+ }
848
+ },
849
+ {
850
+ "type": "Feature",
851
+ "properties": {
852
+ "id": "502e96e3-853a-4b3d-b88d-fe59af4d7b65",
853
+ "geometryType": "Rectangle",
854
+ "name": "t5",
855
+ "type": "District System",
856
+ "footprint_area": 13881,
857
+ "footprint_perimeter": 471,
858
+ "district_system_type": "Transformer",
859
+ "equipment": [
860
+ "Transformer--50KVA CT"
861
+ ]
862
+ },
863
+ "geometry": {
864
+ "type": "Polygon",
865
+ "coordinates": [
866
+ [
867
+ [
868
+ -78.85035753250122,
869
+ 42.81360741929652
870
+ ],
871
+ [
872
+ -78.85035753250122,
873
+ 42.813276864302594
874
+ ],
875
+ [
876
+ -78.84992837905885,
877
+ 42.813276864302594
878
+ ],
879
+ [
880
+ -78.84992837905885,
881
+ 42.81360741929652
882
+ ],
883
+ [
884
+ -78.85035753250122,
885
+ 42.81360741929652
886
+ ]
887
+ ]
888
+ ]
889
+ }
890
+ },
891
+ {
892
+ "type": "Feature",
893
+ "properties": {
894
+ "id": "673b1313-10f8-40fd-bac9-083c187fe932",
895
+ "type": "ElectricalJunction",
896
+ "DSId": "3f960177-51b5-4a0b-9c35-41da085597fc"
897
+ },
898
+ "geometry": {
899
+ "type": "Point",
900
+ "coordinates": [
901
+ -78.84050846099856,
902
+ 42.82051718821927
903
+ ]
904
+ }
905
+ },
906
+ {
907
+ "type": "Feature",
908
+ "properties": {
909
+ "id": "6398a8fa-be81-4773-a837-6cb0c35ad1a4",
910
+ "type": "ElectricalJunction"
911
+ },
912
+ "geometry": {
913
+ "type": "Point",
914
+ "coordinates": [
915
+ -78.84844779968263,
916
+ 42.82064309939614
917
+ ]
918
+ }
919
+ },
920
+ {
921
+ "type": "Feature",
922
+ "properties": {
923
+ "id": "11abf04c-1002-4d48-9f1d-edb4872cf9c3",
924
+ "type": "ElectricalConnector",
925
+ "startJunctionId": "673b1313-10f8-40fd-bac9-083c187fe932",
926
+ "endJunctionId": "6398a8fa-be81-4773-a837-6cb0c35ad1a4",
927
+ "total_length": 2125,
928
+ "connector_type": "Wire",
929
+ "wires": [
930
+ "OH AL 2/0 A",
931
+ "OH AL 2/0 B",
932
+ "OH AL 2/0 C",
933
+ "OH AL 2/0 N"
934
+ ],
935
+ "name": "p1"
936
+ },
937
+ "geometry": {
938
+ "type": "LineString",
939
+ "coordinates": [
940
+ [
941
+ -78.84050846099856,
942
+ 42.82051718821927
943
+ ],
944
+ [
945
+ -78.84844779968263,
946
+ 42.82064309939614
947
+ ]
948
+ ]
949
+ }
950
+ },
951
+ {
952
+ "type": "Feature",
953
+ "properties": {
954
+ "id": "38c748dc-7e65-4798-9c57-7a5ad07a8830",
955
+ "type": "ElectricalJunction"
956
+ },
957
+ "geometry": {
958
+ "type": "Point",
959
+ "coordinates": [
960
+ -78.85346889495851,
961
+ 42.82064309939614
962
+ ]
963
+ }
964
+ },
965
+ {
966
+ "type": "Feature",
967
+ "properties": {
968
+ "id": "17f547a3-aad9-4cc3-98be-327aefe6a1d6",
969
+ "type": "ElectricalConnector",
970
+ "startJunctionId": "6398a8fa-be81-4773-a837-6cb0c35ad1a4",
971
+ "endJunctionId": "38c748dc-7e65-4798-9c57-7a5ad07a8830",
972
+ "total_length": 1344,
973
+ "connector_type": "Wire",
974
+ "wires": [
975
+ "OH AL 2/0 A",
976
+ "OH AL 2/0 B",
977
+ "OH AL 2/0 C",
978
+ "OH AL 2/0 N"
979
+ ],
980
+ "name": "p2"
981
+ },
982
+ "geometry": {
983
+ "type": "LineString",
984
+ "coordinates": [
985
+ [
986
+ -78.84844779968265,
987
+ 42.82064309939612
988
+ ],
989
+ [
990
+ -78.85346889495851,
991
+ 42.82064309939614
992
+ ]
993
+ ]
994
+ }
995
+ },
996
+ {
997
+ "type": "Feature",
998
+ "properties": {
999
+ "id": "4deadac5-3035-4051-91fd-f5910c93cd75",
1000
+ "type": "ElectricalJunction"
1001
+ },
1002
+ "geometry": {
1003
+ "type": "Point",
1004
+ "coordinates": [
1005
+ -78.84765386581422,
1006
+ 42.819745976665985
1007
+ ]
1008
+ }
1009
+ },
1010
+ {
1011
+ "type": "Feature",
1012
+ "properties": {
1013
+ "id": "36fd2f4e-8305-4f45-ae4a-5a7a3cc95013",
1014
+ "type": "ElectricalConnector",
1015
+ "startJunctionId": "6398a8fa-be81-4773-a837-6cb0c35ad1a4",
1016
+ "endJunctionId": "4deadac5-3035-4051-91fd-f5910c93cd75",
1017
+ "total_length": 390,
1018
+ "connector_type": "Wire",
1019
+ "wires": [
1020
+ "OH AL 2/0 A",
1021
+ "OH AL 2/0 B",
1022
+ "OH AL 2/0 C",
1023
+ "OH AL 2/0 N"
1024
+ ],
1025
+ "name": "p3"
1026
+ },
1027
+ "geometry": {
1028
+ "type": "LineString",
1029
+ "coordinates": [
1030
+ [
1031
+ -78.84844779968265,
1032
+ 42.82064309939612
1033
+ ],
1034
+ [
1035
+ -78.84765386581422,
1036
+ 42.819745976665985
1037
+ ]
1038
+ ]
1039
+ }
1040
+ },
1041
+ {
1042
+ "type": "Feature",
1043
+ "properties": {
1044
+ "id": "7bba9925-4f7c-4f0d-9b94-d0b8298962ea",
1045
+ "type": "ElectricalJunction"
1046
+ },
1047
+ "geometry": {
1048
+ "type": "Point",
1049
+ "coordinates": [
1050
+ -78.84529352188112,
1051
+ 42.81456759283041
1052
+ ]
1053
+ }
1054
+ },
1055
+ {
1056
+ "type": "Feature",
1057
+ "properties": {
1058
+ "id": "16e5aef9-56d0-478e-a9b2-903c7e6f7222",
1059
+ "type": "ElectricalConnector",
1060
+ "startJunctionId": "4deadac5-3035-4051-91fd-f5910c93cd75",
1061
+ "endJunctionId": "7bba9925-4f7c-4f0d-9b94-d0b8298962ea",
1062
+ "total_length": 1992,
1063
+ "connector_type": "Wire",
1064
+ "wires": [
1065
+ "OH AL 2/0 A",
1066
+ "OH AL 2/0 B",
1067
+ "OH AL 2/0 C",
1068
+ "OH AL 2/0 N"
1069
+ ],
1070
+ "name": "p4"
1071
+ },
1072
+ "geometry": {
1073
+ "type": "LineString",
1074
+ "coordinates": [
1075
+ [
1076
+ -78.84765386581424,
1077
+ 42.819745976665956
1078
+ ],
1079
+ [
1080
+ -78.84529352188112,
1081
+ 42.81456759283041
1082
+ ]
1083
+ ]
1084
+ }
1085
+ },
1086
+ {
1087
+ "type": "Feature",
1088
+ "properties": {
1089
+ "id": "df21bd3d-f2a5-40df-a41b-54c8d73829a5",
1090
+ "type": "ElectricalJunction"
1091
+ },
1092
+ "geometry": {
1093
+ "type": "Point",
1094
+ "coordinates": [
1095
+ -78.85276079177858,
1096
+ 42.81899049479709
1097
+ ]
1098
+ }
1099
+ },
1100
+ {
1101
+ "type": "Feature",
1102
+ "properties": {
1103
+ "id": "1324f2a2-4fc9-4020-b144-b027f2633991",
1104
+ "type": "ElectricalConnector",
1105
+ "startJunctionId": "38c748dc-7e65-4798-9c57-7a5ad07a8830",
1106
+ "endJunctionId": "df21bd3d-f2a5-40df-a41b-54c8d73829a5",
1107
+ "total_length": 632,
1108
+ "connector_type": "Wire",
1109
+ "wires": [
1110
+ "OH AL 2/0 A",
1111
+ "OH AL 2/0 B",
1112
+ "OH AL 2/0 C",
1113
+ "OH AL 2/0 N"
1114
+ ],
1115
+ "name": "p5"
1116
+ },
1117
+ "geometry": {
1118
+ "type": "LineString",
1119
+ "coordinates": [
1120
+ [
1121
+ -78.85346889495851,
1122
+ 42.82064309939612
1123
+ ],
1124
+ [
1125
+ -78.85276079177858,
1126
+ 42.81899049479709
1127
+ ]
1128
+ ]
1129
+ }
1130
+ },
1131
+ {
1132
+ "type": "Feature",
1133
+ "properties": {
1134
+ "id": "2796b96e-5bc0-4890-9bb0-bcf7b5baf9c7",
1135
+ "type": "ElectricalJunction"
1136
+ },
1137
+ "geometry": {
1138
+ "type": "Point",
1139
+ "coordinates": [
1140
+ -78.85100126266482,
1141
+ 42.81555923181502
1142
+ ]
1143
+ }
1144
+ },
1145
+ {
1146
+ "type": "Feature",
1147
+ "properties": {
1148
+ "id": "f912d33f-f017-4ba5-b2fd-2ed2eec38b71",
1149
+ "type": "ElectricalConnector",
1150
+ "startJunctionId": "df21bd3d-f2a5-40df-a41b-54c8d73829a5",
1151
+ "endJunctionId": "2796b96e-5bc0-4890-9bb0-bcf7b5baf9c7",
1152
+ "total_length": 1216,
1153
+ "connector_type": "Wire",
1154
+ "wires": [
1155
+ "OH AL 2/0 A",
1156
+ "OH AL 2/0 B",
1157
+ "OH AL 2/0 C",
1158
+ "OH AL 2/0 N"
1159
+ ],
1160
+ "name": "p6"
1161
+ },
1162
+ "geometry": {
1163
+ "type": "LineString",
1164
+ "coordinates": [
1165
+ [
1166
+ -78.85276079177858,
1167
+ 42.81899049479709
1168
+ ],
1169
+ [
1170
+ -78.85115146636963,
1171
+ 42.81587403451662
1172
+ ],
1173
+ [
1174
+ -78.85100126266482,
1175
+ 42.81555923181502
1176
+ ]
1177
+ ]
1178
+ }
1179
+ },
1180
+ {
1181
+ "type": "Feature",
1182
+ "properties": {
1183
+ "id": "258aad84-ed22-48ee-995a-4c5869ae9274",
1184
+ "type": "ElectricalJunction"
1185
+ },
1186
+ "geometry": {
1187
+ "type": "Point",
1188
+ "coordinates": [
1189
+ -78.85018587112428,
1190
+ 42.8138907507422
1191
+ ]
1192
+ }
1193
+ },
1194
+ {
1195
+ "type": "Feature",
1196
+ "properties": {
1197
+ "id": "5b3d3f0c-0c14-4c3d-9080-0fb5bbea5470",
1198
+ "type": "ElectricalConnector",
1199
+ "startJunctionId": "2796b96e-5bc0-4890-9bb0-bcf7b5baf9c7",
1200
+ "endJunctionId": "258aad84-ed22-48ee-995a-4c5869ae9274",
1201
+ "total_length": 647,
1202
+ "connector_type": "Wire",
1203
+ "wires": [
1204
+ "OH AL 2/0 A",
1205
+ "OH AL 2/0 B",
1206
+ "OH AL 2/0 C",
1207
+ "OH AL 2/0 N"
1208
+ ],
1209
+ "name": "p7"
1210
+ },
1211
+ "geometry": {
1212
+ "type": "LineString",
1213
+ "coordinates": [
1214
+ [
1215
+ -78.85100126266484,
1216
+ 42.81555923181503
1217
+ ],
1218
+ [
1219
+ -78.85018587112428,
1220
+ 42.8138907507422
1221
+ ]
1222
+ ]
1223
+ }
1224
+ },
1225
+ {
1226
+ "type": "Feature",
1227
+ "properties": {
1228
+ "id": "9dae1cd8-ddca-4bdd-8324-61b771b77225",
1229
+ "type": "ElectricalJunction",
1230
+ "DSId": "897530f5-a6d6-446f-94fd-4087196fceaf"
1231
+ },
1232
+ "geometry": {
1233
+ "type": "Point",
1234
+ "coordinates": [
1235
+ -78.84791135787965,
1236
+ 42.819580715795915
1237
+ ]
1238
+ }
1239
+ },
1240
+ {
1241
+ "type": "Feature",
1242
+ "properties": {
1243
+ "id": "861ae659-79c7-45f7-9933-bed0a2560e7c",
1244
+ "type": "ElectricalConnector",
1245
+ "startJunctionId": "4deadac5-3035-4051-91fd-f5910c93cd75",
1246
+ "endJunctionId": "9dae1cd8-ddca-4bdd-8324-61b771b77225",
1247
+ "total_length": 92,
1248
+ "connector_type": "Wire",
1249
+ "wires": [
1250
+ "OH AL 2/0 A",
1251
+ "OH AL 2/0 B",
1252
+ "OH AL 2/0 C",
1253
+ "OH AL 2/0 N"
1254
+ ],
1255
+ "name": "p8"
1256
+ },
1257
+ "geometry": {
1258
+ "type": "LineString",
1259
+ "coordinates": [
1260
+ [
1261
+ -78.84765386581424,
1262
+ 42.81974597666594
1263
+ ],
1264
+ [
1265
+ -78.84791135787965,
1266
+ 42.819580715795915
1267
+ ]
1268
+ ]
1269
+ }
1270
+ },
1271
+ {
1272
+ "type": "Feature",
1273
+ "properties": {
1274
+ "id": "3ad29eb4-60b2-4050-a87c-dcd858184622",
1275
+ "type": "ElectricalJunction",
1276
+ "DSId": "54cd0a5a-2ebe-4b39-936a-f238b503c221"
1277
+ },
1278
+ "geometry": {
1279
+ "type": "Point",
1280
+ "coordinates": [
1281
+ -78.85306119918825,
1282
+ 42.81899049479709
1283
+ ]
1284
+ }
1285
+ },
1286
+ {
1287
+ "type": "Feature",
1288
+ "properties": {
1289
+ "id": "6cdda038-b853-4a8e-bf6d-304c49d93688",
1290
+ "type": "ElectricalConnector",
1291
+ "startJunctionId": "df21bd3d-f2a5-40df-a41b-54c8d73829a5",
1292
+ "endJunctionId": "3ad29eb4-60b2-4050-a87c-dcd858184622",
1293
+ "total_length": 80,
1294
+ "connector_type": "Wire",
1295
+ "wires": [
1296
+ "OH AL 2/0 A",
1297
+ "OH AL 2/0 B",
1298
+ "OH AL 2/0 C",
1299
+ "OH AL 2/0 N"
1300
+ ],
1301
+ "name": "p9"
1302
+ },
1303
+ "geometry": {
1304
+ "type": "LineString",
1305
+ "coordinates": [
1306
+ [
1307
+ -78.85276079177858,
1308
+ 42.81899049479709
1309
+ ],
1310
+ [
1311
+ -78.85306119918825,
1312
+ 42.81899049479709
1313
+ ]
1314
+ ]
1315
+ }
1316
+ },
1317
+ {
1318
+ "type": "Feature",
1319
+ "properties": {
1320
+ "id": "b4d75954-0bde-4707-875a-c2fabffec277",
1321
+ "type": "ElectricalJunction",
1322
+ "DSId": "1b4b5dcf-8d18-4954-b655-a93634542733"
1323
+ },
1324
+ "geometry": {
1325
+ "type": "Point",
1326
+ "coordinates": [
1327
+ -78.85138750076295,
1328
+ 42.81588977460963
1329
+ ]
1330
+ }
1331
+ },
1332
+ {
1333
+ "type": "Feature",
1334
+ "properties": {
1335
+ "id": "ed866262-f11e-4ea7-b5f9-eecfea8ecbaf",
1336
+ "type": "ElectricalJunction",
1337
+ "DSId": "502e96e3-853a-4b3d-b88d-fe59af4d7b65"
1338
+ },
1339
+ "geometry": {
1340
+ "type": "Point",
1341
+ "coordinates": [
1342
+ -78.85035753250123,
1343
+ 42.81360741929651
1344
+ ]
1345
+ }
1346
+ },
1347
+ {
1348
+ "type": "Feature",
1349
+ "properties": {
1350
+ "id": "b1003fd0-cd27-4de5-9851-f14382846fc4",
1351
+ "type": "ElectricalJunction",
1352
+ "DSId": "54cd0a5a-2ebe-4b39-936a-f238b503c221"
1353
+ },
1354
+ "geometry": {
1355
+ "type": "Point",
1356
+ "coordinates": [
1357
+ -78.85306119918825,
1358
+ 42.81933675846616
1359
+ ]
1360
+ }
1361
+ },
1362
+ {
1363
+ "type": "Feature",
1364
+ "properties": {
1365
+ "id": "44963046-644a-4c03-b81c-f65d80475015",
1366
+ "type": "ElectricalJunction",
1367
+ "buildingId": "10"
1368
+ },
1369
+ "geometry": {
1370
+ "type": "Point",
1371
+ "coordinates": [
1372
+ -78.85246596719499,
1373
+ 42.81958326112075
1374
+ ]
1375
+ }
1376
+ },
1377
+ {
1378
+ "type": "Feature",
1379
+ "properties": {
1380
+ "id": "f2d0448f-aab3-4da0-8aca-17564c8e3a58",
1381
+ "type": "ElectricalConnector",
1382
+ "startJunctionId": "b1003fd0-cd27-4de5-9851-f14382846fc4",
1383
+ "endJunctionId": "44963046-644a-4c03-b81c-f65d80475015",
1384
+ "total_length": 183,
1385
+ "wires": [
1386
+ "UG TPLX 1/0 A",
1387
+ "UG TPLX 1/0 B",
1388
+ "UG TPLX 1/0 C"
1389
+ ],
1390
+ "connector_type": "Wire",
1391
+ "name": "s1"
1392
+ },
1393
+ "geometry": {
1394
+ "type": "LineString",
1395
+ "coordinates": [
1396
+ [
1397
+ -78.85306119918825,
1398
+ 42.81933675846616
1399
+ ],
1400
+ [
1401
+ -78.85246596719499,
1402
+ 42.81958326112075
1403
+ ]
1404
+ ]
1405
+ }
1406
+ },
1407
+ {
1408
+ "type": "Feature",
1409
+ "properties": {
1410
+ "id": "53c917d8-b04d-4110-bdd9-cbf044e6a1fa",
1411
+ "type": "ElectricalJunction",
1412
+ "buildingId": "2"
1413
+ },
1414
+ "geometry": {
1415
+ "type": "Point",
1416
+ "coordinates": [
1417
+ -78.850630729414,
1418
+ 42.81857888627522
1419
+ ]
1420
+ }
1421
+ },
1422
+ {
1423
+ "type": "Feature",
1424
+ "properties": {
1425
+ "id": "59f65367-c852-40ab-9d7f-dc30822570f7",
1426
+ "type": "ElectricalConnector",
1427
+ "startJunctionId": "b1003fd0-cd27-4de5-9851-f14382846fc4",
1428
+ "endJunctionId": "53c917d8-b04d-4110-bdd9-cbf044e6a1fa",
1429
+ "total_length": 707,
1430
+ "wires": [
1431
+ "UG TPLX 1/0 A",
1432
+ "UG TPLX 1/0 B",
1433
+ "UG TPLX 1/0 C"
1434
+ ],
1435
+ "connector_type": "Wire",
1436
+ "name": "s2"
1437
+ },
1438
+ "geometry": {
1439
+ "type": "LineString",
1440
+ "coordinates": [
1441
+ [
1442
+ -78.85306119918825,
1443
+ 42.81933675846616
1444
+ ],
1445
+ [
1446
+ -78.850630729414,
1447
+ 42.81857888627522
1448
+ ]
1449
+ ]
1450
+ }
1451
+ },
1452
+ {
1453
+ "type": "Feature",
1454
+ "properties": {
1455
+ "id": "3a0599b8-84a9-488a-ab8d-dc62b244ee8c",
1456
+ "type": "ElectricalJunction",
1457
+ "DSId": "897530f5-a6d6-446f-94fd-4087196fceaf"
1458
+ },
1459
+ "geometry": {
1460
+ "type": "Point",
1461
+ "coordinates": [
1462
+ -78.84829759597778,
1463
+ 42.81981680261798
1464
+ ]
1465
+ }
1466
+ },
1467
+ {
1468
+ "type": "Feature",
1469
+ "properties": {
1470
+ "id": "38a42375-ff02-497e-90ef-c5d9eb78850e",
1471
+ "type": "ElectricalJunction",
1472
+ "buildingId": "13"
1473
+ },
1474
+ "geometry": {
1475
+ "type": "Point",
1476
+ "coordinates": [
1477
+ -78.84913892437771,
1478
+ 42.82038967009542
1479
+ ]
1480
+ }
1481
+ },
1482
+ {
1483
+ "type": "Feature",
1484
+ "properties": {
1485
+ "id": "10e9de09-902c-4373-8fa3-06a3e19e8b38",
1486
+ "type": "ElectricalConnector",
1487
+ "startJunctionId": "3a0599b8-84a9-488a-ab8d-dc62b244ee8c",
1488
+ "endJunctionId": "38a42375-ff02-497e-90ef-c5d9eb78850e",
1489
+ "total_length": 307,
1490
+ "wires": [
1491
+ "UG TPLX 1/0 A",
1492
+ "UG TPLX 1/0 B",
1493
+ "UG TPLX 1/0 C"
1494
+ ],
1495
+ "connector_type": "Wire",
1496
+ "name": "s3"
1497
+ },
1498
+ "geometry": {
1499
+ "type": "LineString",
1500
+ "coordinates": [
1501
+ [
1502
+ -78.84829759597778,
1503
+ 42.81981680261798
1504
+ ],
1505
+ [
1506
+ -78.84913892437771,
1507
+ 42.82038967009542
1508
+ ]
1509
+ ]
1510
+ }
1511
+ },
1512
+ {
1513
+ "type": "Feature",
1514
+ "properties": {
1515
+ "id": "753b77b9-b88b-443f-9c3b-3cd977bb3558",
1516
+ "type": "ElectricalJunction",
1517
+ "buildingId": "12"
1518
+ },
1519
+ "geometry": {
1520
+ "type": "Point",
1521
+ "coordinates": [
1522
+ -78.84857328145401,
1523
+ 42.81914753199707
1524
+ ]
1525
+ }
1526
+ },
1527
+ {
1528
+ "type": "Feature",
1529
+ "properties": {
1530
+ "id": "de88d8f3-d596-4088-8ee7-d96326ab083c",
1531
+ "type": "ElectricalConnector",
1532
+ "startJunctionId": "3a0599b8-84a9-488a-ab8d-dc62b244ee8c",
1533
+ "endJunctionId": "753b77b9-b88b-443f-9c3b-3cd977bb3558",
1534
+ "total_length": 255,
1535
+ "wires": [
1536
+ "UG TPLX 1/0 A",
1537
+ "UG TPLX 1/0 B",
1538
+ "UG TPLX 1/0 C"
1539
+ ],
1540
+ "connector_type": "Wire",
1541
+ "name": "s4"
1542
+ },
1543
+ "geometry": {
1544
+ "type": "LineString",
1545
+ "coordinates": [
1546
+ [
1547
+ -78.84829759597778,
1548
+ 42.81981680261798
1549
+ ],
1550
+ [
1551
+ -78.84857328145401,
1552
+ 42.81914753199707
1553
+ ]
1554
+ ]
1555
+ }
1556
+ },
1557
+ {
1558
+ "type": "Feature",
1559
+ "properties": {
1560
+ "id": "14080f48-4e0d-4ca6-9ed2-7db253f920f4",
1561
+ "type": "ElectricalJunction",
1562
+ "DSId": "b02e3fe9-77d0-47f9-86cb-e4db960afd62"
1563
+ },
1564
+ "geometry": {
1565
+ "type": "Point",
1566
+ "coordinates": [
1567
+ -78.84600162506106,
1568
+ 42.81466990552482
1569
+ ]
1570
+ }
1571
+ },
1572
+ {
1573
+ "type": "Feature",
1574
+ "properties": {
1575
+ "id": "9d037967-7ac1-4296-8f87-2d4a842d7a87",
1576
+ "type": "ElectricalJunction",
1577
+ "buildingId": "7"
1578
+ },
1579
+ "geometry": {
1580
+ "type": "Point",
1581
+ "coordinates": [
1582
+ -78.8471524243204,
1583
+ 42.81605110464405
1584
+ ]
1585
+ }
1586
+ },
1587
+ {
1588
+ "type": "Feature",
1589
+ "properties": {
1590
+ "id": "44c05d80-7a90-4229-94f7-0ef2787b2cc7",
1591
+ "type": "ElectricalConnector",
1592
+ "startJunctionId": "14080f48-4e0d-4ca6-9ed2-7db253f920f4",
1593
+ "endJunctionId": "9d037967-7ac1-4296-8f87-2d4a842d7a87",
1594
+ "total_length": 591,
1595
+ "wires": [
1596
+ "OH TPLX 2/0 S1",
1597
+ "OH TPLX 2/0 S2",
1598
+ "OH TPLX 2/0 N"
1599
+ ],
1600
+ "connector_type": "Wire",
1601
+ "name": "s5"
1602
+ },
1603
+ "geometry": {
1604
+ "type": "LineString",
1605
+ "coordinates": [
1606
+ [
1607
+ -78.84600162506106,
1608
+ 42.81466990552482
1609
+ ],
1610
+ [
1611
+ -78.8471524243204,
1612
+ 42.81605110464405
1613
+ ]
1614
+ ]
1615
+ }
1616
+ },
1617
+ {
1618
+ "type": "Feature",
1619
+ "properties": {
1620
+ "id": "e4bcf9d6-e0b7-421c-91d4-554d06c69364",
1621
+ "type": "ElectricalJunction",
1622
+ "buildingId": "1"
1623
+ },
1624
+ "geometry": {
1625
+ "type": "Point",
1626
+ "coordinates": [
1627
+ -78.84690284729004,
1628
+ 42.81494536193761
1629
+ ]
1630
+ }
1631
+ },
1632
+ {
1633
+ "type": "Feature",
1634
+ "properties": {
1635
+ "id": "40c59858-58c3-4b8c-8521-f7a251f06740",
1636
+ "type": "ElectricalConnector",
1637
+ "startJunctionId": "14080f48-4e0d-4ca6-9ed2-7db253f920f4",
1638
+ "endJunctionId": "e4bcf9d6-e0b7-421c-91d4-554d06c69364",
1639
+ "total_length": 261,
1640
+ "wires": [
1641
+ "OH TPLX 2/0 S2",
1642
+ "OH TPLX 2/0 N",
1643
+ "OH TPLX 2/0 S1"
1644
+ ],
1645
+ "connector_type": "Wire",
1646
+ "name": "s6"
1647
+ },
1648
+ "geometry": {
1649
+ "type": "LineString",
1650
+ "coordinates": [
1651
+ [
1652
+ -78.84600162506106,
1653
+ 42.81466990552482
1654
+ ],
1655
+ [
1656
+ -78.84690284729004,
1657
+ 42.81494536193761
1658
+ ]
1659
+ ]
1660
+ }
1661
+ },
1662
+ {
1663
+ "type": "Feature",
1664
+ "properties": {
1665
+ "id": "40867501-5a41-4626-a9d4-be5444a5b575",
1666
+ "type": "ElectricalJunction",
1667
+ "buildingId": "9"
1668
+ },
1669
+ "geometry": {
1670
+ "type": "Point",
1671
+ "coordinates": [
1672
+ -78.85132137101688,
1673
+ 42.81708331517632
1674
+ ]
1675
+ }
1676
+ },
1677
+ {
1678
+ "type": "Feature",
1679
+ "properties": {
1680
+ "id": "96ac00ff-1369-472b-b8cd-d8721355f4c5",
1681
+ "type": "ElectricalConnector",
1682
+ "startJunctionId": "b4d75954-0bde-4707-875a-c2fabffec277",
1683
+ "endJunctionId": "40867501-5a41-4626-a9d4-be5444a5b575",
1684
+ "total_length": 436,
1685
+ "wires": [
1686
+ "UG TPLX 2/0 C",
1687
+ "UG TPLX 2/0 B",
1688
+ "UG TPLX 2/0 A"
1689
+ ],
1690
+ "connector_type": "Wire",
1691
+ "name": "s7"
1692
+ },
1693
+ "geometry": {
1694
+ "type": "LineString",
1695
+ "coordinates": [
1696
+ [
1697
+ -78.85138750076295,
1698
+ 42.81588977460963
1699
+ ],
1700
+ [
1701
+ -78.85132137101688,
1702
+ 42.81708331517632
1703
+ ]
1704
+ ]
1705
+ }
1706
+ },
1707
+ {
1708
+ "type": "Feature",
1709
+ "properties": {
1710
+ "id": "18fe5a25-2547-4c32-a225-8bd455e93c9b",
1711
+ "type": "ElectricalJunction",
1712
+ "buildingId": "8"
1713
+ },
1714
+ "geometry": {
1715
+ "type": "Point",
1716
+ "coordinates": [
1717
+ -78.85078257620687,
1718
+ 42.81588131780642
1719
+ ]
1720
+ }
1721
+ },
1722
+ {
1723
+ "type": "Feature",
1724
+ "properties": {
1725
+ "id": "e2dcff78-1f88-496b-9111-66ea2cc6c889",
1726
+ "type": "ElectricalConnector",
1727
+ "startJunctionId": "b4d75954-0bde-4707-875a-c2fabffec277",
1728
+ "endJunctionId": "18fe5a25-2547-4c32-a225-8bd455e93c9b",
1729
+ "total_length": 162,
1730
+ "wires": [
1731
+ "UG TPLX 2/0 A",
1732
+ "UG TPLX 2/0 B",
1733
+ "UG TPLX 2/0 C"
1734
+ ],
1735
+ "connector_type": "Wire",
1736
+ "name": "s8"
1737
+ },
1738
+ "geometry": {
1739
+ "type": "LineString",
1740
+ "coordinates": [
1741
+ [
1742
+ -78.85138750076295,
1743
+ 42.81588977460963
1744
+ ],
1745
+ [
1746
+ -78.85078257620687,
1747
+ 42.81588131780642
1748
+ ]
1749
+ ]
1750
+ }
1751
+ },
1752
+ {
1753
+ "type": "Feature",
1754
+ "properties": {
1755
+ "id": "67b07fac-6666-4954-98b8-3e08b0896646",
1756
+ "type": "ElectricalJunction",
1757
+ "buildingId": "3"
1758
+ },
1759
+ "geometry": {
1760
+ "type": "Point",
1761
+ "coordinates": [
1762
+ -78.84962224800354,
1763
+ 42.81329273502643
1764
+ ]
1765
+ }
1766
+ },
1767
+ {
1768
+ "type": "Feature",
1769
+ "properties": {
1770
+ "id": "9e3fff1f-2625-4f3f-b510-f4e51683c941",
1771
+ "type": "ElectricalConnector",
1772
+ "startJunctionId": "ed866262-f11e-4ea7-b5f9-eecfea8ecbaf",
1773
+ "endJunctionId": "67b07fac-6666-4954-98b8-3e08b0896646",
1774
+ "total_length": 228,
1775
+ "wires": [
1776
+ "OH TPLX 2/0 N",
1777
+ "OH TPLX 2/0 S2",
1778
+ "OH TPLX 2/0 S1"
1779
+ ],
1780
+ "connector_type": "Wire",
1781
+ "name": "s9"
1782
+ },
1783
+ "geometry": {
1784
+ "type": "LineString",
1785
+ "coordinates": [
1786
+ [
1787
+ -78.85035753250125,
1788
+ 42.81360741929651
1789
+ ],
1790
+ [
1791
+ -78.84962224800354,
1792
+ 42.81329273502643
1793
+ ]
1794
+ ]
1795
+ }
1796
+ },
1797
+ {
1798
+ "type": "Feature",
1799
+ "properties": {
1800
+ "id": "14072af7-3121-4e3d-b85f-c79868702ec9",
1801
+ "type": "ElectricalJunction",
1802
+ "buildingId": "11"
1803
+ },
1804
+ "geometry": {
1805
+ "type": "Point",
1806
+ "coordinates": [
1807
+ -78.84951531770513,
1808
+ 42.814393563866716
1809
+ ]
1810
+ }
1811
+ },
1812
+ {
1813
+ "type": "Feature",
1814
+ "properties": {
1815
+ "id": "a0ba7300-0264-4450-8a1b-6f8045ee7cfe",
1816
+ "type": "ElectricalConnector",
1817
+ "startJunctionId": "ed866262-f11e-4ea7-b5f9-eecfea8ecbaf",
1818
+ "endJunctionId": "14072af7-3121-4e3d-b85f-c79868702ec9",
1819
+ "total_length": 365,
1820
+ "wires": [
1821
+ "OH TPLX 2/0 S2",
1822
+ "OH TPLX 2/0 S1",
1823
+ "OH TPLX 2/0 N"
1824
+ ],
1825
+ "connector_type": "Wire",
1826
+ "name": "s10"
1827
+ },
1828
+ "geometry": {
1829
+ "type": "LineString",
1830
+ "coordinates": [
1831
+ [
1832
+ -78.85035753250125,
1833
+ 42.81360741929651
1834
+ ],
1835
+ [
1836
+ -78.84951531770513,
1837
+ 42.814393563866716
1838
+ ]
1839
+ ]
1840
+ }
1841
+ },
1842
+ {
1843
+ "type": "Feature",
1844
+ "properties": {
1845
+ "id": "db52eea7-f395-4fb1-999d-47c82333a4a7",
1846
+ "type": "ElectricalJunction",
1847
+ "buildingId": "6"
1848
+ },
1849
+ "geometry": {
1850
+ "type": "Point",
1851
+ "coordinates": [
1852
+ -78.84856946000984,
1853
+ 42.81417061550575
1854
+ ]
1855
+ }
1856
+ },
1857
+ {
1858
+ "type": "Feature",
1859
+ "properties": {
1860
+ "id": "bf23c675-d787-4994-803b-18d8d4900699",
1861
+ "type": "ElectricalConnector",
1862
+ "startJunctionId": "ed866262-f11e-4ea7-b5f9-eecfea8ecbaf",
1863
+ "endJunctionId": "db52eea7-f395-4fb1-999d-47c82333a4a7",
1864
+ "total_length": 521,
1865
+ "wires": [
1866
+ "OH TPLX 2/0 S1",
1867
+ "OH TPLX 2/0 S2",
1868
+ "OH TPLX 2/0 N"
1869
+ ],
1870
+ "connector_type": "Wire",
1871
+ "name": "s11"
1872
+ },
1873
+ "geometry": {
1874
+ "type": "LineString",
1875
+ "coordinates": [
1876
+ [
1877
+ -78.85035753250125,
1878
+ 42.81360741929651
1879
+ ],
1880
+ [
1881
+ -78.84856946000984,
1882
+ 42.81417061550575
1883
+ ]
1884
+ ]
1885
+ }
1886
+ },
1887
+ {
1888
+ "type": "Feature",
1889
+ "properties": {
1890
+ "id": "be6e5e58-e73e-4172-a939-250c6a7a3c2c",
1891
+ "type": "ElectricalJunction",
1892
+ "buildingId": "4"
1893
+ },
1894
+ "geometry": {
1895
+ "type": "Point",
1896
+ "coordinates": [
1897
+ -78.8491695046689,
1898
+ 42.81364215452331
1899
+ ]
1900
+ }
1901
+ },
1902
+ {
1903
+ "type": "Feature",
1904
+ "properties": {
1905
+ "id": "bbb1f6a0-394e-4b38-bd51-1fa8f70d89dd",
1906
+ "type": "ElectricalConnector",
1907
+ "startJunctionId": "ed866262-f11e-4ea7-b5f9-eecfea8ecbaf",
1908
+ "endJunctionId": "be6e5e58-e73e-4172-a939-250c6a7a3c2c",
1909
+ "total_length": 318,
1910
+ "wires": [
1911
+ "OH TPLX 2/0 S1",
1912
+ "OH TPLX 2/0 S2",
1913
+ "OH TPLX 2/0 N"
1914
+ ],
1915
+ "connector_type": "Wire",
1916
+ "name": "s12"
1917
+ },
1918
+ "geometry": {
1919
+ "type": "LineString",
1920
+ "coordinates": [
1921
+ [
1922
+ -78.85035753250125,
1923
+ 42.81360741929651
1924
+ ],
1925
+ [
1926
+ -78.8491695046689,
1927
+ 42.81364215452331
1928
+ ]
1929
+ ]
1930
+ }
1931
+ },
1932
+ {
1933
+ "type": "Feature",
1934
+ "properties": {
1935
+ "id": "3d1aa47d-69dd-4200-ab34-9b6244ad82d7",
1936
+ "type": "ElectricalJunction",
1937
+ "buildingId": "5"
1938
+ },
1939
+ "geometry": {
1940
+ "type": "Point",
1941
+ "coordinates": [
1942
+ -78.84818388519801,
1943
+ 42.8138760010378
1944
+ ]
1945
+ }
1946
+ },
1947
+ {
1948
+ "type": "Feature",
1949
+ "properties": {
1950
+ "id": "68c17aed-1c16-4a75-b0a7-7cf2db5d605d",
1951
+ "type": "ElectricalConnector",
1952
+ "startJunctionId": "ed866262-f11e-4ea7-b5f9-eecfea8ecbaf",
1953
+ "endJunctionId": "3d1aa47d-69dd-4200-ab34-9b6244ad82d7",
1954
+ "total_length": 590,
1955
+ "wires": [
1956
+ "OH TPLX 2/0 S1",
1957
+ "OH TPLX 2/0 S2",
1958
+ "OH TPLX 2/0 N"
1959
+ ],
1960
+ "connector_type": "Wire",
1961
+ "name": "s13"
1962
+ },
1963
+ "geometry": {
1964
+ "type": "LineString",
1965
+ "coordinates": [
1966
+ [
1967
+ -78.85035753250125,
1968
+ 42.81360741929651
1969
+ ],
1970
+ [
1971
+ -78.84818388519801,
1972
+ 42.8138760010378
1973
+ ]
1974
+ ]
1975
+ }
1976
+ },
1977
+ {
1978
+ "type": "Feature",
1979
+ "properties": {
1980
+ "id": "194f2b59-5877-4485-85b9-bd0ac6f75e25",
1981
+ "type": "ElectricalJunction",
1982
+ "DSId": "b02e3fe9-77d0-47f9-86cb-e4db960afd62"
1983
+ },
1984
+ "geometry": {
1985
+ "type": "Point",
1986
+ "coordinates": [
1987
+ -78.8456153869629,
1988
+ 42.8143078752306
1989
+ ]
1990
+ }
1991
+ },
1992
+ {
1993
+ "type": "Feature",
1994
+ "properties": {
1995
+ "id": "db1a87fb-d770-4939-b747-7cadf1f304f8",
1996
+ "type": "ElectricalConnector",
1997
+ "startJunctionId": "7bba9925-4f7c-4f0d-9b94-d0b8298962ea",
1998
+ "endJunctionId": "194f2b59-5877-4485-85b9-bd0ac6f75e25",
1999
+ "total_length": 128,
2000
+ "name": "p12",
2001
+ "connector_type": "Wire",
2002
+ "wires": [
2003
+ "OH AL 1/0 A",
2004
+ "OH AL 1/0 B",
2005
+ "OH AL 1/0 C",
2006
+ "OH AL 1/0 N"
2007
+ ]
2008
+ },
2009
+ "geometry": {
2010
+ "type": "LineString",
2011
+ "coordinates": [
2012
+ [
2013
+ -78.84529352188113,
2014
+ 42.81456759283039
2015
+ ],
2016
+ [
2017
+ -78.8456153869629,
2018
+ 42.8143078752306
2019
+ ]
2020
+ ]
2021
+ }
2022
+ },
2023
+ {
2024
+ "type": "Feature",
2025
+ "properties": {
2026
+ "id": "b9ac3056-629d-40cc-b520-cfe15eb7296c",
2027
+ "type": "ElectricalJunction",
2028
+ "DSId": "502e96e3-853a-4b3d-b88d-fe59af4d7b65"
2029
+ },
2030
+ "geometry": {
2031
+ "type": "Point",
2032
+ "coordinates": [
2033
+ -78.85035753250123,
2034
+ 42.81327686430259
2035
+ ]
2036
+ }
2037
+ },
2038
+ {
2039
+ "type": "Feature",
2040
+ "properties": {
2041
+ "id": "bfdf4e28-5baf-4d54-9d0a-5a7dc3fbd4f3",
2042
+ "type": "ElectricalConnector",
2043
+ "startJunctionId": "258aad84-ed22-48ee-995a-4c5869ae9274",
2044
+ "endJunctionId": "b9ac3056-629d-40cc-b520-cfe15eb7296c",
2045
+ "total_length": 229,
2046
+ "wires": [
2047
+ "OH AL 1/0 A",
2048
+ "OH AL 1/0 B",
2049
+ "OH AL 1/0 C",
2050
+ "OH AL 1/0 N"
2051
+ ],
2052
+ "connector_type": "Wire",
2053
+ "name": "p11"
2054
+ },
2055
+ "geometry": {
2056
+ "type": "LineString",
2057
+ "coordinates": [
2058
+ [
2059
+ -78.8501858711243,
2060
+ 42.81389075074219
2061
+ ],
2062
+ [
2063
+ -78.85035753250123,
2064
+ 42.81327686430259
2065
+ ]
2066
+ ]
2067
+ }
2068
+ },
2069
+ {
2070
+ "type": "Feature",
2071
+ "properties": {
2072
+ "id": "c8181999-1d82-4f4f-b0d7-7affddf06378",
2073
+ "type": "ElectricalJunction",
2074
+ "DSId": "1b4b5dcf-8d18-4954-b655-a93634542733"
2075
+ },
2076
+ "geometry": {
2077
+ "type": "Point",
2078
+ "coordinates": [
2079
+ -78.85138750076295,
2080
+ 42.81573237349922
2081
+ ]
2082
+ }
2083
+ },
2084
+ {
2085
+ "type": "Feature",
2086
+ "properties": {
2087
+ "id": "f57d88d3-925f-4d5d-b25c-b3b9475f1ea7",
2088
+ "type": "ElectricalConnector",
2089
+ "startJunctionId": "2796b96e-5bc0-4890-9bb0-bcf7b5baf9c7",
2090
+ "endJunctionId": "c8181999-1d82-4f4f-b0d7-7affddf06378",
2091
+ "total_length": 121,
2092
+ "wires": [
2093
+ "OH AL 2/0 A",
2094
+ "OH AL 2/0 B",
2095
+ "OH AL 2/0 C",
2096
+ "OH AL 2/0 N"
2097
+ ],
2098
+ "connector_type": "Wire",
2099
+ "name": "p10"
2100
+ },
2101
+ "geometry": {
2102
+ "type": "LineString",
2103
+ "coordinates": [
2104
+ [
2105
+ -78.85100126266484,
2106
+ 42.81555923181503
2107
+ ],
2108
+ [
2109
+ -78.85138750076295,
2110
+ 42.81573237349922
2111
+ ]
2112
+ ]
2113
+ }
2114
+ }
2115
+ ]
2116
+ }