DefDAP 1.2.1__tar.gz → 1.2.2__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 (37) hide show
  1. {defdap-1.2.1 → defdap-1.2.2}/DefDAP.egg-info/PKG-INFO +1 -1
  2. {defdap-1.2.1 → defdap-1.2.2}/PKG-INFO +1 -1
  3. defdap-1.2.2/defdap/_version.py +1 -0
  4. {defdap-1.2.1 → defdap-1.2.2}/defdap/file_readers.py +8 -0
  5. {defdap-1.2.1 → defdap-1.2.2}/pyproject.toml +2 -2
  6. defdap-1.2.1/defdap/_version.py +0 -1
  7. {defdap-1.2.1 → defdap-1.2.2}/DefDAP.egg-info/SOURCES.txt +0 -0
  8. {defdap-1.2.1 → defdap-1.2.2}/DefDAP.egg-info/dependency_links.txt +0 -0
  9. {defdap-1.2.1 → defdap-1.2.2}/DefDAP.egg-info/requires.txt +0 -0
  10. {defdap-1.2.1 → defdap-1.2.2}/DefDAP.egg-info/top_level.txt +0 -0
  11. {defdap-1.2.1 → defdap-1.2.2}/LICENSE +0 -0
  12. {defdap-1.2.1 → defdap-1.2.2}/README.md +0 -0
  13. {defdap-1.2.1 → defdap-1.2.2}/defdap/__init__.py +0 -0
  14. {defdap-1.2.1 → defdap-1.2.2}/defdap/_accelerated.py +0 -0
  15. {defdap-1.2.1 → defdap-1.2.2}/defdap/base.py +0 -0
  16. {defdap-1.2.1 → defdap-1.2.2}/defdap/crystal.py +0 -0
  17. {defdap-1.2.1 → defdap-1.2.2}/defdap/crystal_utils.py +0 -0
  18. {defdap-1.2.1 → defdap-1.2.2}/defdap/ebsd.py +0 -0
  19. {defdap-1.2.1 → defdap-1.2.2}/defdap/experiment.py +0 -0
  20. {defdap-1.2.1 → defdap-1.2.2}/defdap/file_writers.py +0 -0
  21. {defdap-1.2.1 → defdap-1.2.2}/defdap/hrdic.py +0 -0
  22. {defdap-1.2.1 → defdap-1.2.2}/defdap/inspector.py +0 -0
  23. {defdap-1.2.1 → defdap-1.2.2}/defdap/plotting.py +0 -0
  24. {defdap-1.2.1 → defdap-1.2.2}/defdap/quat.py +0 -0
  25. {defdap-1.2.1 → defdap-1.2.2}/defdap/slip_systems/cubic_bcc.txt +0 -0
  26. {defdap-1.2.1 → defdap-1.2.2}/defdap/slip_systems/cubic_bcc_110only.txt +0 -0
  27. {defdap-1.2.1 → defdap-1.2.2}/defdap/slip_systems/cubic_fcc.txt +0 -0
  28. {defdap-1.2.1 → defdap-1.2.2}/defdap/slip_systems/cubic_fcc_damask.txt +0 -0
  29. {defdap-1.2.1 → defdap-1.2.2}/defdap/slip_systems/hexagonal_noca.txt +0 -0
  30. {defdap-1.2.1 → defdap-1.2.2}/defdap/slip_systems/hexagonal_withca.txt +0 -0
  31. {defdap-1.2.1 → defdap-1.2.2}/defdap/utils.py +0 -0
  32. {defdap-1.2.1 → defdap-1.2.2}/docs/source/conf.py +0 -0
  33. {defdap-1.2.1 → defdap-1.2.2}/setup.cfg +0 -0
  34. {defdap-1.2.1 → defdap-1.2.2}/tests/test_ebsd.py +0 -0
  35. {defdap-1.2.1 → defdap-1.2.2}/tests/test_hrdic.py +0 -0
  36. {defdap-1.2.1 → defdap-1.2.2}/tests/test_io.py +0 -0
  37. {defdap-1.2.1 → defdap-1.2.2}/tests/test_quat.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: DefDAP
3
- Version: 1.2.1
3
+ Version: 1.2.2
4
4
  Summary: A python library for correlating EBSD and HRDIC data.
5
5
  Author: Rhys Thomas, João Quinta da Fonseca
6
6
  Author-email: "Michael D. Atkinson" <michael.atkinson@ukaea.uk>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: DefDAP
3
- Version: 1.2.1
3
+ Version: 1.2.2
4
4
  Summary: A python library for correlating EBSD and HRDIC data.
5
5
  Author: Rhys Thomas, João Quinta da Fonseca
6
6
  Author-email: "Michael D. Atkinson" <michael.atkinson@ukaea.uk>
@@ -0,0 +1 @@
1
+ __version__ = '1.2.2'
@@ -900,6 +900,14 @@ class PyValeLoader(DICDataLoader):
900
900
 
901
901
  self.loaded_data.coordinate = coord_dense
902
902
  self.loaded_data.displacement = disp_dense
903
+ self.loaded_data.add(
904
+ 'cost', data['cost'].reshape(shape),
905
+ unit='', type='map', order=0,
906
+ plot_params={
907
+ 'plot_colour_bar': True,
908
+ 'clabel': 'Cost',
909
+ }
910
+ )
903
911
 
904
912
  self.check_data()
905
913
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "DefDAP"
7
- version = "1.2.1"
7
+ version = "1.2.2"
8
8
  authors = [
9
9
  {name = "Michael D. Atkinson", email = "michael.atkinson@ukaea.uk"},
10
10
  {name = "Rhys Thomas"},
@@ -75,7 +75,7 @@ defdap = ["slip_systems/*.txt"]
75
75
 
76
76
  [tool.commitizen]
77
77
  name = "cz_conventional_commits"
78
- version = "1.2.1"
78
+ version = "1.2.2"
79
79
  tag_format = "v$version"
80
80
  version_files = [
81
81
  "pyproject.toml:version",
@@ -1 +0,0 @@
1
- __version__ = '1.2.1'
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes