urbanopt-geojson 0.9.0 → 0.11.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.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/nightly_build.yml +19 -16
  3. data/CHANGELOG.md +20 -0
  4. data/CONTRIBUTING.md +2 -2
  5. data/Gemfile +10 -5
  6. data/LICENSE.md +16 -11
  7. data/README.md +2 -1
  8. data/Rakefile +2 -37
  9. data/doc_templates/LICENSE.md +16 -11
  10. data/doc_templates/copyright_erb.txt +2 -37
  11. data/doc_templates/copyright_js.txt +2 -2
  12. data/doc_templates/copyright_ruby.txt +2 -37
  13. data/docs/package-lock.json +3967 -3489
  14. data/lib/measures/.rubocop.yml +2 -1
  15. data/lib/measures/urban_geometry_creation/LICENSE.md +16 -11
  16. data/lib/measures/urban_geometry_creation/README.md +1 -1
  17. data/lib/measures/urban_geometry_creation/measure.rb +7 -41
  18. data/lib/measures/urban_geometry_creation/measure.xml +29 -29
  19. data/lib/measures/urban_geometry_creation_zoning/LICENSE.md +16 -11
  20. data/lib/measures/urban_geometry_creation_zoning/measure.rb +2 -37
  21. data/lib/measures/urban_geometry_creation_zoning/measure.xml +21 -27
  22. data/lib/urbanopt/geojson/building.rb +2 -37
  23. data/lib/urbanopt/geojson/derived_extension.rb +2 -37
  24. data/lib/urbanopt/geojson/district_system.rb +2 -37
  25. data/lib/urbanopt/geojson/feature.rb +3 -38
  26. data/lib/urbanopt/geojson/geo_file.rb +6 -38
  27. data/lib/urbanopt/geojson/helper.rb +2 -37
  28. data/lib/urbanopt/geojson/logging.rb +2 -37
  29. data/lib/urbanopt/geojson/mapper_classes.rb +2 -37
  30. data/lib/urbanopt/geojson/model.rb +2 -37
  31. data/lib/urbanopt/geojson/region.rb +2 -37
  32. data/lib/urbanopt/geojson/scale_area.rb +2 -37
  33. data/lib/urbanopt/geojson/schema/district_system_properties.json +5 -4
  34. data/lib/urbanopt/geojson/schema/thermal_connector_properties.json +6 -8
  35. data/lib/urbanopt/geojson/schema/thermal_junction_properties.json +7 -4
  36. data/lib/urbanopt/geojson/update_areas.rb +2 -37
  37. data/lib/urbanopt/geojson/validate_geojson.rb +2 -37
  38. data/lib/urbanopt/geojson/version.rb +3 -38
  39. data/lib/urbanopt/geojson/zoning.rb +2 -37
  40. data/lib/urbanopt/geojson.rb +2 -38
  41. data/lib/urbanopt-geojson.rb +2 -37
  42. data/package-lock.json +4706 -1
  43. data/urbanopt-geojson-gem.gemspec +1 -1
  44. metadata +4 -5
  45. data/Jenkinsfile +0 -10
@@ -1,41 +1,6 @@
1
1
  # *********************************************************************************
2
- # URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other
3
- # contributors. All rights reserved.
4
-
5
- # Redistribution and use in source and binary forms, with or without modification,
6
- # are permitted provided that the following conditions are met:
7
-
8
- # Redistributions of source code must retain the above copyright notice, this list
9
- # of conditions and the following disclaimer.
10
-
11
- # Redistributions in binary form must reproduce the above copyright notice, this
12
- # list of conditions and the following disclaimer in the documentation and/or other
13
- # materials provided with the distribution.
14
-
15
- # Neither the name of the copyright holder nor the names of its contributors may be
16
- # used to endorse or promote products derived from this software without specific
17
- # prior written permission.
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
-
29
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
30
- # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
31
- # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32
- # IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
33
- # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
34
- # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35
- # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
36
- # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
37
- # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
38
- # OF THE POSSIBILITY OF SUCH DAMAGE.
2
+ # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC.
3
+ # See also https://github.com/urbanopt/urbanopt-geojson-gem/blob/develop/LICENSE.md
39
4
  # *********************************************************************************
40
5
 
41
6
  require 'urbanopt/geojson/feature'
@@ -46,7 +11,6 @@ require 'urbanopt/geojson/geo_file'
46
11
  require 'urbanopt/geojson/helper'
47
12
  require 'urbanopt/geojson/model'
48
13
  require 'urbanopt/geojson/zoning'
49
- require 'urbanopt/geojson/model'
50
14
  require 'urbanopt/geojson/derived_extension'
51
15
  require 'urbanopt/geojson/logging'
52
16
  require 'urbanopt/geojson/scale_area'
@@ -1,41 +1,6 @@
1
1
  # *********************************************************************************
2
- # URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other
3
- # contributors. All rights reserved.
4
-
5
- # Redistribution and use in source and binary forms, with or without modification,
6
- # are permitted provided that the following conditions are met:
7
-
8
- # Redistributions of source code must retain the above copyright notice, this list
9
- # of conditions and the following disclaimer.
10
-
11
- # Redistributions in binary form must reproduce the above copyright notice, this
12
- # list of conditions and the following disclaimer in the documentation and/or other
13
- # materials provided with the distribution.
14
-
15
- # Neither the name of the copyright holder nor the names of its contributors may be
16
- # used to endorse or promote products derived from this software without specific
17
- # prior written permission.
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
-
29
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
30
- # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
31
- # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32
- # IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
33
- # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
34
- # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35
- # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
36
- # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
37
- # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
38
- # OF THE POSSIBILITY OF SUCH DAMAGE.
2
+ # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC.
3
+ # See also https://github.com/urbanopt/urbanopt-geojson-gem/blob/develop/LICENSE.md
39
4
  # *********************************************************************************
40
5
 
41
6
  require_relative 'urbanopt/geojson'