urbanopt-scenario 0.4.3 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +30 -0
- data/Gemfile +8 -14
- data/LICENSE.md +29 -17
- data/Rakefile +16 -6
- data/docs/package-lock.json +86 -39
- data/docs/package.json +5 -2
- data/lib/urbanopt-scenario.rb +16 -6
- data/lib/urbanopt/scenario.rb +16 -6
- data/lib/urbanopt/scenario/default_reports.rb +16 -6
- data/lib/urbanopt/scenario/extension.rb +16 -6
- data/lib/urbanopt/scenario/logger.rb +16 -6
- data/lib/urbanopt/scenario/scenario_base.rb +16 -6
- data/lib/urbanopt/scenario/scenario_csv.rb +49 -20
- data/lib/urbanopt/scenario/scenario_datapoint_base.rb +16 -6
- data/lib/urbanopt/scenario/scenario_post_processor_base.rb +16 -6
- data/lib/urbanopt/scenario/scenario_post_processor_default.rb +17 -10
- data/lib/urbanopt/scenario/scenario_post_processor_opendss.rb +18 -8
- data/lib/urbanopt/scenario/scenario_runner_base.rb +16 -6
- data/lib/urbanopt/scenario/scenario_runner_osw.rb +16 -6
- data/lib/urbanopt/scenario/scenario_visualization.rb +22 -11
- data/lib/urbanopt/scenario/simulation_dir_base.rb +16 -6
- data/lib/urbanopt/scenario/simulation_dir_osw.rb +16 -6
- data/lib/urbanopt/scenario/simulation_mapper_base.rb +16 -6
- data/lib/urbanopt/scenario/version.rb +17 -7
- data/urbanopt-scenario-gem.gemspec +13 -8
- metadata +7 -63
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42853feb93cde288a5b5a2951752d34a9c4bf0417cc67655fb7b1593f7189e37
|
4
|
+
data.tar.gz: f16a9afda1f180fcd44f4e022b5eff21aedb5a194aced8e025d05d948d189ddb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94383f70166f6bc7be7ce0191ac1de72e6d5e7935a2fc812d4e9d8e666be1fc8a6d6ec770be068108154f9093aabe33b5cddad04bbb3f846999c1e6f19720cfb
|
7
|
+
data.tar.gz: ada9964c4a820e03bdc2c87896acb79eb42679f1b2b3849bf5c7b6f5910dd2b72df0e7f90b722f908e45ff1595a9861da2c0303b262edb162cac5896b468b5f3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,35 @@
|
|
1
1
|
# URBANopt Scenario Gem
|
2
2
|
|
3
|
+
## Version 0.6.1
|
4
|
+
Date Range: 04-30-21 - 05/14/21
|
5
|
+
|
6
|
+
- Fixed [#227]( https://github.com/urbanopt/urbanopt-cli/issues/227 ), Runtime error when running urbanopt cli example project
|
7
|
+
|
8
|
+
## Version 0.6.0
|
9
|
+
Date Range: 02/05/21 - 04/29/21
|
10
|
+
|
11
|
+
- Fixed [#198]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/198 ), Update copyrights for 2021
|
12
|
+
- Fixed [#205]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/205 ), Incorrect bundle paths being used in UO project
|
13
|
+
- Updated dependencies for OpenStudio 3.2.0 / Ruby 2.7
|
14
|
+
|
15
|
+
## Version 0.5.1
|
16
|
+
Date Range: 12/15/20 - 02/04/21
|
17
|
+
|
18
|
+
- Fixed [#175]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/175 ), Need additional reporting output to supply to DES (Modelica) team
|
19
|
+
- Fixed [#194]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/194 ), In the visualization reports, update graphs to show names of features and not feature ids
|
20
|
+
- Fixed [#196]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/196 ), In opendss postprocessor: update scenario reports saving method to not save the feature reports.
|
21
|
+
|
22
|
+
## Version 0.5.0
|
23
|
+
Date Range: 11/17/20 - 12/09/20
|
24
|
+
|
25
|
+
- Fixed [#177]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/177 ), Fix bug in the method that saves the CSV report
|
26
|
+
- Fixed [#188]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/188 ), support OpenStudio 3.1.0
|
27
|
+
|
28
|
+
## Version 0.4.4
|
29
|
+
Date Range: 11/13/20 - 11/16/20
|
30
|
+
|
31
|
+
- Fixed [#183]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/183 ), Bug in query for scenario_db output file
|
32
|
+
|
3
33
|
## Version 0.4.3
|
4
34
|
Date Range: 10/01/20 - 11/12/20
|
5
35
|
|
data/Gemfile
CHANGED
@@ -20,10 +20,16 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
|
|
20
20
|
# gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'
|
21
21
|
# end
|
22
22
|
|
23
|
+
# if allow_local && File.exist?('../urbanopt-core-gem')
|
24
|
+
# gem 'urbanopt-core', path: '../urbanopt-core-gem'
|
25
|
+
# elsif allow_local
|
26
|
+
# gem 'urbanopt-core', github: 'URBANopt/urbanopt-core-gem', branch: 'develop'
|
27
|
+
# end
|
28
|
+
|
23
29
|
# if allow_local && File.exist?('../openstudio-common-measures-gem')
|
24
30
|
# gem 'openstudio-common-measures', path: '../openstudio-common-measures-gem'
|
25
31
|
# elsif allow_local
|
26
|
-
#
|
32
|
+
# gem 'openstudio-common-measures', github: 'NREL/openstudio-common-measures-gem', branch: 'develop'
|
27
33
|
# end
|
28
34
|
|
29
35
|
# if allow_local && File.exist?('../openstudio-model-articulation-gem')
|
@@ -32,24 +38,12 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
|
|
32
38
|
# gem 'openstudio-model-articulation', github: 'NREL/openstudio-model-articulation-gem', branch: 'develop'
|
33
39
|
# end
|
34
40
|
|
35
|
-
# if allow_local && File.exist?('../urbanopt-core-gem')
|
36
|
-
# gem 'urbanopt-core', path: '../urbanopt-core-gem'
|
37
|
-
# elsif allow_local
|
38
|
-
# gem 'urbanopt-core', github: 'URBANopt/urbanopt-core-gem', branch: 'develop'
|
39
|
-
# else
|
40
|
-
# gem 'urbanopt-core', '~>0.4.0'
|
41
|
-
# end
|
42
|
-
|
43
41
|
# if allow_local && File.exist?('../urbanopt-reporting-gem')
|
44
42
|
# gem 'urbanopt-reporting', path: '../urbanopt-reporting-gem'
|
45
43
|
# elsif allow_local
|
46
|
-
# gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
|
47
|
-
# else
|
48
|
-
# gem 'urbanopt-reporting', '~> 0.2.1'
|
49
|
-
# end
|
50
44
|
|
51
45
|
# if allow_local && File.exist?('../openstudio-load-flexibility-measures-gem')
|
52
46
|
# gem 'openstudio-load-flexibility-measures', path: '../openstudio-load-flexibility-measures-gem'
|
53
47
|
# elseif allow_local
|
54
|
-
# gem 'openstudio-load-flexibility-measures', github: 'NREL/openstudio-load-flexibility-measures-gem', branch: '
|
48
|
+
# gem 'openstudio-load-flexibility-measures', github: 'NREL/openstudio-load-flexibility-measures-gem', branch: 'develop'
|
55
49
|
# end
|
data/LICENSE.md
CHANGED
@@ -1,27 +1,39 @@
|
|
1
|
-
|
1
|
+
# License
|
2
|
+
|
3
|
+
URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other
|
2
4
|
contributors. All rights reserved.
|
3
5
|
|
4
|
-
Redistribution and use in source and binary forms, with or without modification,
|
6
|
+
Redistribution and use in source and binary forms, with or without modification,
|
5
7
|
are permitted provided that the following conditions are met:
|
6
8
|
|
7
|
-
Redistributions of source code must retain the above copyright notice, this list
|
9
|
+
Redistributions of source code must retain the above copyright notice, this list
|
8
10
|
of conditions and the following disclaimer.
|
9
11
|
|
10
|
-
Redistributions in binary form must reproduce the above copyright notice, this
|
11
|
-
list of conditions and the following disclaimer in the documentation and/or other
|
12
|
+
Redistributions in binary form must reproduce the above copyright notice, this
|
13
|
+
list of conditions and the following disclaimer in the documentation and/or other
|
12
14
|
materials provided with the distribution.
|
13
|
-
|
14
|
-
Neither the name of the copyright holder nor the names of its contributors may be
|
15
|
-
used to endorse or promote products derived from this software without specific
|
15
|
+
|
16
|
+
Neither the name of the copyright holder nor the names of its contributors may be
|
17
|
+
used to endorse or promote products derived from this software without specific
|
16
18
|
prior written permission.
|
17
19
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
20
|
+
Redistribution of this software, without modification, must refer to the software
|
21
|
+
by the same designation. Redistribution of a modified version of this software
|
22
|
+
(i) may not refer to the modified version by the same designation, or by any
|
23
|
+
confusingly similar designation, and (ii) must refer to the underlying software
|
24
|
+
originally provided by Alliance as “URBANopt”. Except to comply with the foregoing,
|
25
|
+
the term “URBANopt”, or any confusingly similar designation may not be used to
|
26
|
+
refer to any modified version of this software or any modified version of the
|
27
|
+
underlying software originally provided by Alliance without the prior written
|
28
|
+
consent of Alliance.
|
29
|
+
|
30
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
31
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
32
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
33
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
34
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
35
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
36
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
37
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
38
|
+
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
27
39
|
OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/Rakefile
CHANGED
@@ -1,21 +1,31 @@
|
|
1
1
|
# *********************************************************************************
|
2
|
-
# URBANopt
|
2
|
+
# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other
|
3
3
|
# contributors. All rights reserved.
|
4
|
-
|
4
|
+
|
5
5
|
# Redistribution and use in source and binary forms, with or without modification,
|
6
6
|
# are permitted provided that the following conditions are met:
|
7
|
-
|
7
|
+
|
8
8
|
# Redistributions of source code must retain the above copyright notice, this list
|
9
9
|
# of conditions and the following disclaimer.
|
10
|
-
|
10
|
+
|
11
11
|
# Redistributions in binary form must reproduce the above copyright notice, this
|
12
12
|
# list of conditions and the following disclaimer in the documentation and/or other
|
13
13
|
# materials provided with the distribution.
|
14
|
-
|
14
|
+
|
15
15
|
# Neither the name of the copyright holder nor the names of its contributors may be
|
16
16
|
# used to endorse or promote products derived from this software without specific
|
17
17
|
# prior written permission.
|
18
|
-
|
18
|
+
|
19
|
+
# Redistribution of this software, without modification, must refer to the software
|
20
|
+
# by the same designation. Redistribution of a modified version of this software
|
21
|
+
# (i) may not refer to the modified version by the same designation, or by any
|
22
|
+
# confusingly similar designation, and (ii) must refer to the underlying software
|
23
|
+
# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing,
|
24
|
+
# the term “URBANopt”, or any confusingly similar designation may not be used to
|
25
|
+
# refer to any modified version of this software or any modified version of the
|
26
|
+
# underlying software originally provided by Alliance without the prior written
|
27
|
+
# consent of Alliance.
|
28
|
+
|
19
29
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
20
30
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
21
31
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
data/docs/package-lock.json
CHANGED
@@ -2338,7 +2338,6 @@
|
|
2338
2338
|
"move-concurrently": "^1.0.1",
|
2339
2339
|
"promise-inflight": "^1.0.1",
|
2340
2340
|
"rimraf": "^2.6.3",
|
2341
|
-
"ssri": "^6.0.1",
|
2342
2341
|
"unique-filename": "^1.1.1",
|
2343
2342
|
"y18n": "^4.0.0"
|
2344
2343
|
}
|
@@ -3693,23 +3692,23 @@
|
|
3693
3692
|
"integrity": "sha512-z4gU6dA1CbBJsAErW5swTGAaU2TBzc2mPAonJb00zqW1rOraDo2zfBMDRvaz9cVic+0JEZiYbHWPw/fTaZlG2Q=="
|
3694
3693
|
},
|
3695
3694
|
"elliptic": {
|
3696
|
-
"version": "6.5.
|
3697
|
-
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.
|
3698
|
-
"integrity": "sha512-
|
3695
|
+
"version": "6.5.4",
|
3696
|
+
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
|
3697
|
+
"integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==",
|
3699
3698
|
"requires": {
|
3700
|
-
"bn.js": "^4.
|
3701
|
-
"brorand": "^1.0
|
3699
|
+
"bn.js": "^4.11.9",
|
3700
|
+
"brorand": "^1.1.0",
|
3702
3701
|
"hash.js": "^1.0.0",
|
3703
|
-
"hmac-drbg": "^1.0.
|
3704
|
-
"inherits": "^2.0.
|
3705
|
-
"minimalistic-assert": "^1.0.
|
3706
|
-
"minimalistic-crypto-utils": "^1.0.
|
3702
|
+
"hmac-drbg": "^1.0.1",
|
3703
|
+
"inherits": "^2.0.4",
|
3704
|
+
"minimalistic-assert": "^1.0.1",
|
3705
|
+
"minimalistic-crypto-utils": "^1.0.1"
|
3707
3706
|
},
|
3708
3707
|
"dependencies": {
|
3709
3708
|
"bn.js": {
|
3710
|
-
"version": "4.
|
3711
|
-
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.
|
3712
|
-
"integrity": "sha512-
|
3709
|
+
"version": "4.12.0",
|
3710
|
+
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
3711
|
+
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
|
3713
3712
|
}
|
3714
3713
|
}
|
3715
3714
|
},
|
@@ -4150,6 +4149,12 @@
|
|
4150
4149
|
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
|
4151
4150
|
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
|
4152
4151
|
},
|
4152
|
+
"fast-xml-parser": {
|
4153
|
+
"version": "3.19.0",
|
4154
|
+
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz",
|
4155
|
+
"integrity": "sha512-4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg==",
|
4156
|
+
"dev": true
|
4157
|
+
},
|
4153
4158
|
"faye-websocket": {
|
4154
4159
|
"version": "0.10.0",
|
4155
4160
|
"resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz",
|
@@ -4605,6 +4610,13 @@
|
|
4605
4610
|
"integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==",
|
4606
4611
|
"requires": {
|
4607
4612
|
"ini": "^1.3.5"
|
4613
|
+
},
|
4614
|
+
"dependencies": {
|
4615
|
+
"ini": {
|
4616
|
+
"version": "1.3.8",
|
4617
|
+
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
|
4618
|
+
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
|
4619
|
+
}
|
4608
4620
|
}
|
4609
4621
|
},
|
4610
4622
|
"globals": {
|
@@ -4801,9 +4813,9 @@
|
|
4801
4813
|
"integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ=="
|
4802
4814
|
},
|
4803
4815
|
"highlight.js": {
|
4804
|
-
"version": "10.
|
4805
|
-
"resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.
|
4806
|
-
"integrity": "sha512-
|
4816
|
+
"version": "10.4.1",
|
4817
|
+
"resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.4.1.tgz",
|
4818
|
+
"integrity": "sha512-yR5lWvNz7c85OhVAEAeFhVCc/GV4C30Fjzc/rCP0aCWzc1UUOPUk55dK/qdwTZHBvMZo+eZ2jpk62ndX/xMFlg=="
|
4807
4819
|
},
|
4808
4820
|
"hmac-drbg": {
|
4809
4821
|
"version": "1.0.1",
|
@@ -5130,9 +5142,10 @@
|
|
5130
5142
|
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
5131
5143
|
},
|
5132
5144
|
"ini": {
|
5133
|
-
"version": "
|
5134
|
-
"resolved": "https://registry.npmjs.org/ini/-/ini-
|
5135
|
-
"integrity": "sha512-
|
5145
|
+
"version": "2.0.0",
|
5146
|
+
"resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz",
|
5147
|
+
"integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==",
|
5148
|
+
"dev": true
|
5136
5149
|
},
|
5137
5150
|
"internal-ip": {
|
5138
5151
|
"version": "4.3.0",
|
@@ -5415,11 +5428,12 @@
|
|
5415
5428
|
"integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
|
5416
5429
|
},
|
5417
5430
|
"is-svg": {
|
5418
|
-
"version": "3.
|
5419
|
-
"resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.
|
5420
|
-
"integrity": "sha512-
|
5431
|
+
"version": "4.3.1",
|
5432
|
+
"resolved": "https://registry.npmjs.org/is-svg/-/is-svg-4.3.1.tgz",
|
5433
|
+
"integrity": "sha512-h2CGs+yPUyvkgTJQS9cJzo9lYK06WgRiXUqBBHtglSzVKAuH4/oWsqk7LGfbSa1hGk9QcZ0SyQtVggvBA8LZXA==",
|
5434
|
+
"dev": true,
|
5421
5435
|
"requires": {
|
5422
|
-
"
|
5436
|
+
"fast-xml-parser": "^3.19.0"
|
5423
5437
|
}
|
5424
5438
|
},
|
5425
5439
|
"is-symbol": {
|
@@ -5673,9 +5687,9 @@
|
|
5673
5687
|
}
|
5674
5688
|
},
|
5675
5689
|
"lodash": {
|
5676
|
-
"version": "4.17.
|
5677
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.
|
5678
|
-
"integrity": "sha512-
|
5690
|
+
"version": "4.17.21",
|
5691
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
5692
|
+
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
|
5679
5693
|
},
|
5680
5694
|
"lodash._reinterpolate": {
|
5681
5695
|
"version": "3.0.0",
|
@@ -6034,6 +6048,23 @@
|
|
6034
6048
|
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
|
6035
6049
|
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
|
6036
6050
|
},
|
6051
|
+
"minipass": {
|
6052
|
+
"version": "3.1.3",
|
6053
|
+
"resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz",
|
6054
|
+
"integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==",
|
6055
|
+
"dev": true,
|
6056
|
+
"requires": {
|
6057
|
+
"yallist": "^4.0.0"
|
6058
|
+
},
|
6059
|
+
"dependencies": {
|
6060
|
+
"yallist": {
|
6061
|
+
"version": "4.0.0",
|
6062
|
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
6063
|
+
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
|
6064
|
+
"dev": true
|
6065
|
+
}
|
6066
|
+
}
|
6067
|
+
},
|
6037
6068
|
"mississippi": {
|
6038
6069
|
"version": "3.0.0",
|
6039
6070
|
"resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz",
|
@@ -7232,6 +7263,14 @@
|
|
7232
7263
|
"svgo": "^1.0.0"
|
7233
7264
|
},
|
7234
7265
|
"dependencies": {
|
7266
|
+
"is-svg": {
|
7267
|
+
"version": "3.0.0",
|
7268
|
+
"resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz",
|
7269
|
+
"integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==",
|
7270
|
+
"requires": {
|
7271
|
+
"html-comment-regex": "^1.1.0"
|
7272
|
+
}
|
7273
|
+
},
|
7235
7274
|
"postcss-value-parser": {
|
7236
7275
|
"version": "3.3.1",
|
7237
7276
|
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
|
@@ -7280,9 +7319,9 @@
|
|
7280
7319
|
"integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA=="
|
7281
7320
|
},
|
7282
7321
|
"prismjs": {
|
7283
|
-
"version": "1.
|
7284
|
-
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.
|
7285
|
-
"integrity": "sha512-
|
7322
|
+
"version": "1.23.0",
|
7323
|
+
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.23.0.tgz",
|
7324
|
+
"integrity": "sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA==",
|
7286
7325
|
"requires": {
|
7287
7326
|
"clipboard": "^2.0.0"
|
7288
7327
|
}
|
@@ -7473,6 +7512,13 @@
|
|
7473
7512
|
"ini": "~1.3.0",
|
7474
7513
|
"minimist": "^1.2.0",
|
7475
7514
|
"strip-json-comments": "~2.0.1"
|
7515
|
+
},
|
7516
|
+
"dependencies": {
|
7517
|
+
"ini": {
|
7518
|
+
"version": "1.3.8",
|
7519
|
+
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
|
7520
|
+
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
|
7521
|
+
}
|
7476
7522
|
}
|
7477
7523
|
},
|
7478
7524
|
"readable-stream": {
|
@@ -8365,11 +8411,12 @@
|
|
8365
8411
|
}
|
8366
8412
|
},
|
8367
8413
|
"ssri": {
|
8368
|
-
"version": "
|
8369
|
-
"resolved": "https://registry.npmjs.org/ssri/-/ssri-
|
8370
|
-
"integrity": "sha512-
|
8414
|
+
"version": "8.0.1",
|
8415
|
+
"resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz",
|
8416
|
+
"integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==",
|
8417
|
+
"dev": true,
|
8371
8418
|
"requires": {
|
8372
|
-
"
|
8419
|
+
"minipass": "^3.1.1"
|
8373
8420
|
}
|
8374
8421
|
},
|
8375
8422
|
"stable": {
|
@@ -9244,9 +9291,9 @@
|
|
9244
9291
|
}
|
9245
9292
|
},
|
9246
9293
|
"url-parse": {
|
9247
|
-
"version": "1.
|
9248
|
-
"resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.
|
9249
|
-
"integrity": "sha512-
|
9294
|
+
"version": "1.5.1",
|
9295
|
+
"resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz",
|
9296
|
+
"integrity": "sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q==",
|
9250
9297
|
"requires": {
|
9251
9298
|
"querystringify": "^2.1.1",
|
9252
9299
|
"requires-port": "^1.0.0"
|
@@ -9977,9 +10024,9 @@
|
|
9977
10024
|
"integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
|
9978
10025
|
},
|
9979
10026
|
"y18n": {
|
9980
|
-
"version": "4.0.
|
9981
|
-
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.
|
9982
|
-
"integrity": "sha512-
|
10027
|
+
"version": "4.0.1",
|
10028
|
+
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz",
|
10029
|
+
"integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ=="
|
9983
10030
|
},
|
9984
10031
|
"yallist": {
|
9985
10032
|
"version": "3.1.1",
|
data/docs/package.json
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
},
|
11
11
|
"author": "NREL",
|
12
12
|
"dependencies": {
|
13
|
-
"highlight.js": "^10.
|
13
|
+
"highlight.js": "^10.4.1",
|
14
14
|
"json-schema-ref-parser": "^9.0.6",
|
15
15
|
"json-schema-view-js": "git+https://git@github.com/bgschiller/json-schema-view-js.git",
|
16
16
|
"vuepress": "^1.6.0",
|
@@ -20,11 +20,14 @@
|
|
20
20
|
"braces": "^3.0.2",
|
21
21
|
"dot-prop": "^5.3.0",
|
22
22
|
"gh-pages": "^3.1.0",
|
23
|
+
"is-svg": ">=4.3.1",
|
23
24
|
"js-yaml": "^3.14.0",
|
24
25
|
"minimist": ">=1.2.3",
|
25
26
|
"node-forge": ">=0.10.0",
|
26
27
|
"serialize-javascript": "^5.0.1",
|
27
28
|
"set-value": "^3.0.2",
|
28
|
-
"
|
29
|
+
"ssri": ">=8.0.1",
|
30
|
+
"yargs-parser": "^20.2.1",
|
31
|
+
"ini": "^2.0.0"
|
29
32
|
}
|
30
33
|
}
|
data/lib/urbanopt-scenario.rb
CHANGED
@@ -1,21 +1,31 @@
|
|
1
1
|
# *********************************************************************************
|
2
|
-
# URBANopt
|
2
|
+
# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other
|
3
3
|
# contributors. All rights reserved.
|
4
|
-
|
4
|
+
|
5
5
|
# Redistribution and use in source and binary forms, with or without modification,
|
6
6
|
# are permitted provided that the following conditions are met:
|
7
|
-
|
7
|
+
|
8
8
|
# Redistributions of source code must retain the above copyright notice, this list
|
9
9
|
# of conditions and the following disclaimer.
|
10
|
-
|
10
|
+
|
11
11
|
# Redistributions in binary form must reproduce the above copyright notice, this
|
12
12
|
# list of conditions and the following disclaimer in the documentation and/or other
|
13
13
|
# materials provided with the distribution.
|
14
|
-
|
14
|
+
|
15
15
|
# Neither the name of the copyright holder nor the names of its contributors may be
|
16
16
|
# used to endorse or promote products derived from this software without specific
|
17
17
|
# prior written permission.
|
18
|
-
|
18
|
+
|
19
|
+
# Redistribution of this software, without modification, must refer to the software
|
20
|
+
# by the same designation. Redistribution of a modified version of this software
|
21
|
+
# (i) may not refer to the modified version by the same designation, or by any
|
22
|
+
# confusingly similar designation, and (ii) must refer to the underlying software
|
23
|
+
# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing,
|
24
|
+
# the term “URBANopt”, or any confusingly similar designation may not be used to
|
25
|
+
# refer to any modified version of this software or any modified version of the
|
26
|
+
# underlying software originally provided by Alliance without the prior written
|
27
|
+
# consent of Alliance.
|
28
|
+
|
19
29
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
20
30
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
21
31
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|