dragonfly-schema 1.15.0__tar.gz → 1.15.1__tar.gz

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 (32) hide show
  1. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/PKG-INFO +1 -1
  2. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/model.py +11 -0
  3. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema.egg-info/PKG-INFO +1 -1
  4. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/.coveragerc +0 -0
  5. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/CODE_OF_CONDUCT.md +0 -0
  6. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/CONTRIBUTING.md +0 -0
  7. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/LICENSE +0 -0
  8. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/MANIFEST.in +0 -0
  9. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/README.md +0 -0
  10. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dev-requirements.txt +0 -0
  11. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/docs.py +0 -0
  12. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/__init__.py +0 -0
  13. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/comparison/__init__.py +0 -0
  14. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/comparison/properties.py +0 -0
  15. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/doe2/__init__.py +0 -0
  16. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/doe2/properties.py +0 -0
  17. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/energy/__init__.py +0 -0
  18. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/energy/properties.py +0 -0
  19. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/radiance/__init__.py +0 -0
  20. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/radiance/gridpar.py +0 -0
  21. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/radiance/properties.py +0 -0
  22. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/roof.py +0 -0
  23. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/shading_parameter.py +0 -0
  24. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/skylight_parameter.py +0 -0
  25. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema/window_parameter.py +0 -0
  26. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema.egg-info/SOURCES.txt +0 -0
  27. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema.egg-info/dependency_links.txt +0 -0
  28. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema.egg-info/requires.txt +0 -0
  29. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/dragonfly_schema.egg-info/top_level.txt +0 -0
  30. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/requirements.txt +0 -0
  31. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/setup.cfg +0 -0
  32. {dragonfly_schema-1.15.0 → dragonfly_schema-1.15.1}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dragonfly-schema
3
- Version: 1.15.0
3
+ Version: 1.15.1
4
4
  Summary: Dragonfly Data-Model Objects
5
5
  Home-page: https://github.com/ladybug-tools/dragonfly-schema
6
6
  Author: Ladybug Tools
@@ -476,6 +476,17 @@ class Model(IDdBaseModel):
476
476
  'been performed on a given Model.'
477
477
  )
478
478
 
479
+ reference_vector: List[float] = Field(
480
+ None,
481
+ description='A n optional list of 3 (x, y, z) values that describe a Vector3D '
482
+ 'relating the model to an original source coordinate system. Setting a value '
483
+ 'here is useful if the model has been moved from its original location '
484
+ 'and there may be future operations of merging geometry from the original '
485
+ 'source system.',
486
+ min_items=3,
487
+ max_items=3
488
+ )
489
+
479
490
  properties: ModelProperties = Field(
480
491
  ...,
481
492
  description='Extension properties for particular simulation engines '
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dragonfly-schema
3
- Version: 1.15.0
3
+ Version: 1.15.1
4
4
  Summary: Dragonfly Data-Model Objects
5
5
  Home-page: https://github.com/ladybug-tools/dragonfly-schema
6
6
  Author: Ladybug Tools