urbanopt-geojson 0.7.0 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/CHANGELOG.md +22 -0
  4. data/LICENSE.md +1 -1
  5. data/doc_templates/LICENSE.md +1 -1
  6. data/doc_templates/copyright_erb.txt +1 -1
  7. data/doc_templates/copyright_js.txt +2 -2
  8. data/doc_templates/copyright_ruby.txt +1 -1
  9. data/docs/package-lock.json +15961 -1719
  10. data/lib/measures/urban_geometry_creation/measure.rb +1 -1
  11. data/lib/measures/urban_geometry_creation_zoning/measure.rb +1 -1
  12. data/lib/urbanopt/geojson/building.rb +1 -1
  13. data/lib/urbanopt/geojson/derived_extension.rb +1 -1
  14. data/lib/urbanopt/geojson/district_system.rb +1 -1
  15. data/lib/urbanopt/geojson/feature.rb +2 -2
  16. data/lib/urbanopt/geojson/geo_file.rb +18 -3
  17. data/lib/urbanopt/geojson/helper.rb +1 -1
  18. data/lib/urbanopt/geojson/logging.rb +1 -1
  19. data/lib/urbanopt/geojson/mapper_classes.rb +1 -1
  20. data/lib/urbanopt/geojson/model.rb +1 -1
  21. data/lib/urbanopt/geojson/region.rb +1 -1
  22. data/lib/urbanopt/geojson/scale_area.rb +1 -1
  23. data/lib/urbanopt/geojson/schema/breaker_properties.json +33 -0
  24. data/lib/urbanopt/geojson/schema/building_properties.json +641 -591
  25. data/lib/urbanopt/geojson/schema/capacitor_properties.json +38 -0
  26. data/lib/urbanopt/geojson/schema/consumer_properties.json +58 -0
  27. data/lib/urbanopt/geojson/schema/distribution_generator.json +45 -0
  28. data/lib/urbanopt/geojson/schema/distribution_transformer.json +54 -0
  29. data/lib/urbanopt/geojson/schema/district_system_properties.json +10 -15
  30. data/lib/urbanopt/geojson/schema/dummy_node_properties.json +21 -0
  31. data/lib/urbanopt/geojson/schema/electrical_connector_properties.json +6 -135
  32. data/lib/urbanopt/geojson/schema/hvmv_substation_properties.json +54 -0
  33. data/lib/urbanopt/geojson/schema/line_properties.json +69 -0
  34. data/lib/urbanopt/geojson/schema/region_properties.json +1 -1
  35. data/lib/urbanopt/geojson/schema/site_properties.json +126 -98
  36. data/lib/urbanopt/geojson/schema/switch_properties.json +33 -0
  37. data/lib/urbanopt/geojson/update_areas.rb +1 -1
  38. data/lib/urbanopt/geojson/validate_geojson.rb +1 -1
  39. data/lib/urbanopt/geojson/version.rb +2 -2
  40. data/lib/urbanopt/geojson/zoning.rb +1 -1
  41. data/lib/urbanopt/geojson.rb +1 -1
  42. data/lib/urbanopt-geojson.rb +1 -1
  43. data/urbanopt-geojson-gem.gemspec +1 -1
  44. metadata +13 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f896693bb0498f279398f50d17c0468e22514411ef40cd75cbc327bd16ed37af
4
- data.tar.gz: f32d08a09e49f7bf16028a7d77da8f1b698ea35618cc7709ed563b305bad92dd
3
+ metadata.gz: 7613399a7562744b442496ca2e1f504ea799dcbeb53aa4f70b3515c91d9cdd00
4
+ data.tar.gz: d93fde6bdd9ad432bc560dc0f76ee17e5c67bd2c79be13e4521a944f6e28aa75
5
5
  SHA512:
6
- metadata.gz: 3101c208c258a9412206f150e6f537550129ab46f6fd701bd930263201ee8de58d78c2ebf69b9e11e54b1e8cfc1d20b37709103e6d81bba862b4642e8e1665ef
7
- data.tar.gz: f547cc982318ad33991b318d2801a9e32f7183a5ac3df8488349ab1965d244260205860fd00dbbeb1f38564503fdee1a5f574412bd21aea01c17df560467a486
6
+ metadata.gz: d07deae4e780938602afdee97570444d68c48373343437728d793ac6962bd5f50e0c2112190d05f435e6bb381ade777e3e4d563cca61a5dafa6f834d24ef35f4
7
+ data.tar.gz: dd481e3f4dce7716c2dd7f8f9950678d24b53bfb21a61d76459cfccdef0dde2330040b0d974d7f1782905f80538ffc012877d32e28c2fc086e76bd96c5c957ac
data/.gitignore CHANGED
@@ -19,6 +19,7 @@ out.txt
19
19
  .rspec_status
20
20
 
21
21
  # Ignore IDE files
22
+ .vscode/
22
23
  /.idea
23
24
  .DS_Store
24
25
  urbanopt-geojson-*.gem
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # URBANopt GeoJSON Gem
2
2
 
3
+ ## Version 0.8.0
4
+ Date Range: 11/23/21 - 05/10/21
5
+ - Fixed [#205]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/205 ), adding RNM result fields
6
+ - Fixed [#206]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/206 ), Bump follow-redirects from 1.13.3 to 1.14.7 in /docs
7
+ - Fixed [#207]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/207 ), Bump follow-redirects from 1.13.3 to 1.14.8 in /docs
8
+ - Fixed [#208]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/208 ), Bump url-parse from 1.5.3 to 1.5.7 in /docs
9
+ - Fixed [#209]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/209 ), Regenerating docs
10
+ - Fixed [#210]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/210 ), Bump prismjs from 1.25.0 to 1.27.0 in /docs
11
+ - Fixed [#211]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/211 ), Bump url-parse from 1.5.3 to 1.5.10 in /docs
12
+ - Fixed [#212]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/212 ), Support for custom HPXMLs
13
+ - Fixed [#213]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/213 ), Update licenses
14
+ - Fixed [#215]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/215 ), Schema validation of feature file
15
+ - Fixed [#216]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/216 ), changes for opendss-rnm-us catalog alignment
16
+ - Fixed [#218]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/218 ), Adds new template to turn off appliances and modify appliance efficiency
17
+ - Fixed [#219]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/219 ), added emissions properties/attributes to GeoJSON schemas
18
+ - Fixed [#221]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/221 ), Ev charging
19
+ - Fixed [#222]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/222 ), Bump async from 2.6.3 to 2.6.4 in /docs
20
+ - Fixed [#223]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/223 ), ADD EMISSIONS
21
+ - Fixed [#224]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/224 ), removed dependencies from buildings schema
22
+ - Fixed [#227]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/227 ), restore required fields in building schema definition
23
+ - Fixed [#228]( https://github.com/urbanopt/urbanopt-geojson-gem/pull/228 ), missed one instance of skipping validation when hpxml directory is present
24
+
3
25
  ## Version 0.7.0
4
26
  Date Range: 10/16/21 - 11/22/21
5
27
 
data/LICENSE.md CHANGED
@@ -1,4 +1,4 @@
1
- URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other
1
+ URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other
2
2
  contributors. All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without modification,
@@ -1,4 +1,4 @@
1
- URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other
1
+ URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other
2
2
  contributors. All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without modification,
@@ -1,6 +1,6 @@
1
1
  <%
2
2
  # *********************************************************************************
3
- # URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other
3
+ # URBANopt™, Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other
4
4
  # contributors. All rights reserved.
5
5
 
6
6
  # Redistribution and use in source and binary forms, with or without modification,
@@ -1,4 +1,4 @@
1
1
  /* @preserve
2
- * URBANopt (tm), Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved.
2
+ * URBANopt (tm), Copyright (c) 2019-2022, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved.
3
3
  * Use of this source code is governed by the BSD 3-Clause license.
4
- */
4
+ */
@@ -1,5 +1,5 @@
1
1
  # *********************************************************************************
2
- # URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other
2
+ # URBANopt™, Copyright (c) 2019-2022, 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,