urbanopt-scenario 0.5.1 → 0.6.0
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 +7 -0
- data/Gemfile +0 -2
- data/LICENSE.md +29 -17
- data/Rakefile +16 -6
- data/docs/package-lock.json +78 -28
- data/docs/package.json +2 -0
- 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 +47 -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 +16 -6
- data/lib/urbanopt/scenario/scenario_post_processor_opendss.rb +16 -6
- 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 +17 -7
- 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 +9 -11
- metadata +7 -77
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6806b8d26475423d39fb4de3b5e3f51b1db8b1caf7f4ce17feca438b8f482315
|
4
|
+
data.tar.gz: 8a565d268d69710c0e58799cac2bef11a29cc5286756a8e9da00f618ca4cbe33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a99e381e8803d2e5428877fe963de5cba17826cc97256cdc434da1bb10e41972e9d51d5f4001f3915fb0881c766347eb02068027e7f096d4b8215190aebd3a31
|
7
|
+
data.tar.gz: 752857f0afd9ce62e9e9462837657a5bf827518a989b1375f2a052ae0dbb8f52c0a94f18bb54fcbd0d273da7d3563fd19d4c9f54536745f3678434c9fa75fbee
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# URBANopt Scenario Gem
|
2
2
|
|
3
|
+
## Version 0.6.0
|
4
|
+
Date Range: 02/05/21 - 04/29/21
|
5
|
+
|
6
|
+
- Fixed [#198]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/198 ), Update copyrights for 2021
|
7
|
+
- Fixed [#205]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/205 ), Incorrect bundle paths being used in UO project
|
8
|
+
- Updated dependencies for OpenStudio 3.2.0 / Ruby 2.7
|
9
|
+
|
3
10
|
## Version 0.5.1
|
4
11
|
Date Range: 12/15/20 - 02/04/21
|
5
12
|
|
data/Gemfile
CHANGED
@@ -41,8 +41,6 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
|
|
41
41
|
# if allow_local && File.exist?('../urbanopt-reporting-gem')
|
42
42
|
# gem 'urbanopt-reporting', path: '../urbanopt-reporting-gem'
|
43
43
|
# elsif allow_local
|
44
|
-
# gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
|
45
|
-
# end
|
46
44
|
|
47
45
|
# if allow_local && File.exist?('../openstudio-load-flexibility-measures-gem')
|
48
46
|
# gem 'openstudio-load-flexibility-measures', path: '../openstudio-load-flexibility-measures-gem'
|
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",
|
@@ -4602,7 +4607,17 @@
|
|
4602
4607
|
"global-dirs": {
|
4603
4608
|
"version": "2.0.1",
|
4604
4609
|
"resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.0.1.tgz",
|
4605
|
-
"integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A=="
|
4610
|
+
"integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==",
|
4611
|
+
"requires": {
|
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
|
+
}
|
4620
|
+
}
|
4606
4621
|
},
|
4607
4622
|
"globals": {
|
4608
4623
|
"version": "11.12.0",
|
@@ -5413,11 +5428,12 @@
|
|
5413
5428
|
"integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
|
5414
5429
|
},
|
5415
5430
|
"is-svg": {
|
5416
|
-
"version": "3.
|
5417
|
-
"resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.
|
5418
|
-
"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,
|
5419
5435
|
"requires": {
|
5420
|
-
"
|
5436
|
+
"fast-xml-parser": "^3.19.0"
|
5421
5437
|
}
|
5422
5438
|
},
|
5423
5439
|
"is-symbol": {
|
@@ -6032,6 +6048,23 @@
|
|
6032
6048
|
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
|
6033
6049
|
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
|
6034
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
|
+
},
|
6035
6068
|
"mississippi": {
|
6036
6069
|
"version": "3.0.0",
|
6037
6070
|
"resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz",
|
@@ -7230,6 +7263,14 @@
|
|
7230
7263
|
"svgo": "^1.0.0"
|
7231
7264
|
},
|
7232
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
|
+
},
|
7233
7274
|
"postcss-value-parser": {
|
7234
7275
|
"version": "3.3.1",
|
7235
7276
|
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
|
@@ -7278,9 +7319,9 @@
|
|
7278
7319
|
"integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA=="
|
7279
7320
|
},
|
7280
7321
|
"prismjs": {
|
7281
|
-
"version": "1.
|
7282
|
-
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.
|
7283
|
-
"integrity": "sha512-
|
7322
|
+
"version": "1.23.0",
|
7323
|
+
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.23.0.tgz",
|
7324
|
+
"integrity": "sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA==",
|
7284
7325
|
"requires": {
|
7285
7326
|
"clipboard": "^2.0.0"
|
7286
7327
|
}
|
@@ -7468,8 +7509,16 @@
|
|
7468
7509
|
"integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
|
7469
7510
|
"requires": {
|
7470
7511
|
"deep-extend": "^0.6.0",
|
7512
|
+
"ini": "~1.3.0",
|
7471
7513
|
"minimist": "^1.2.0",
|
7472
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
|
+
}
|
7473
7522
|
}
|
7474
7523
|
},
|
7475
7524
|
"readable-stream": {
|
@@ -8362,11 +8411,12 @@
|
|
8362
8411
|
}
|
8363
8412
|
},
|
8364
8413
|
"ssri": {
|
8365
|
-
"version": "
|
8366
|
-
"resolved": "https://registry.npmjs.org/ssri/-/ssri-
|
8367
|
-
"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,
|
8368
8418
|
"requires": {
|
8369
|
-
"
|
8419
|
+
"minipass": "^3.1.1"
|
8370
8420
|
}
|
8371
8421
|
},
|
8372
8422
|
"stable": {
|
@@ -9974,9 +10024,9 @@
|
|
9974
10024
|
"integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
|
9975
10025
|
},
|
9976
10026
|
"y18n": {
|
9977
|
-
"version": "4.0.
|
9978
|
-
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.
|
9979
|
-
"integrity": "sha512-
|
10027
|
+
"version": "4.0.1",
|
10028
|
+
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz",
|
10029
|
+
"integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ=="
|
9980
10030
|
},
|
9981
10031
|
"yallist": {
|
9982
10032
|
"version": "3.1.1",
|
data/docs/package.json
CHANGED
@@ -20,11 +20,13 @@
|
|
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",
|
29
|
+
"ssri": ">=8.0.1",
|
28
30
|
"yargs-parser": "^20.2.1",
|
29
31
|
"ini": "^2.0.0"
|
30
32
|
}
|
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.
|
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.
|
@@ -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.
|