midas-plotting 0.3.0__tar.gz → 0.3.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 (23) hide show
  1. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/PKG-INFO +3 -3
  2. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/README.md +2 -2
  3. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting/__init__.py +3 -3
  4. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting/ff.py +1 -1
  5. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting/grains.py +1 -1
  6. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting.egg-info/PKG-INFO +3 -3
  7. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/pyproject.toml +1 -1
  8. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting/cli.py +0 -0
  9. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting/ipf.py +0 -0
  10. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting/laue.py +0 -0
  11. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting/maps.py +0 -0
  12. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting/mic.py +0 -0
  13. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting/solutions.py +0 -0
  14. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting.egg-info/SOURCES.txt +0 -0
  15. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting.egg-info/dependency_links.txt +0 -0
  16. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting.egg-info/entry_points.txt +0 -0
  17. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting.egg-info/requires.txt +0 -0
  18. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/midas_plotting.egg-info/top_level.txt +0 -0
  19. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/setup.cfg +0 -0
  20. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/tests/test_ff.py +0 -0
  21. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/tests/test_ipf.py +0 -0
  22. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/tests/test_laue.py +0 -0
  23. {midas_plotting-0.3.0 → midas_plotting-0.3.1}/tests/test_mic.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: midas-plotting
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Standard plots for MIDAS reconstructions - near-field, far-field and Laue: IPF maps and legends, grain maps, pole figures, strain and size distributions, and Laue texture diagnostics against their chance levels.
5
5
  Author-email: Hemant Sharma <hsharma@anl.gov>
6
6
  License: BSD-3-Clause
@@ -25,13 +25,13 @@ Standard plots for MIDAS reconstructions.
25
25
  ```python
26
26
  from midas_plotting import read_mic, orientation_map, compare_maps
27
27
 
28
- m = read_mic("Ce5Y_mr.2.mic")
28
+ m = read_mic("sampleC_mr.2.mic")
29
29
  print(m.summary())
30
30
  orientation_map(m, space_group=225, cmin=0.3)
31
31
  ```
32
32
 
33
33
  ```bash
34
- midas-plot Ce5Y.0.mic Ce5Y_sum3thr2.0.mic --kind orientation --cmin 0.3 \
34
+ midas-plot sampleC.0.mic sampleC_sum3thr2.0.mic --kind orientation --cmin 0.3 \
35
35
  --titles "baseline|sum3+thr2" -o compare.png
36
36
  ```
37
37
 
@@ -5,13 +5,13 @@ Standard plots for MIDAS reconstructions.
5
5
  ```python
6
6
  from midas_plotting import read_mic, orientation_map, compare_maps
7
7
 
8
- m = read_mic("Ce5Y_mr.2.mic")
8
+ m = read_mic("sampleC_mr.2.mic")
9
9
  print(m.summary())
10
10
  orientation_map(m, space_group=225, cmin=0.3)
11
11
  ```
12
12
 
13
13
  ```bash
14
- midas-plot Ce5Y.0.mic Ce5Y_sum3thr2.0.mic --kind orientation --cmin 0.3 \
14
+ midas-plot sampleC.0.mic sampleC_sum3thr2.0.mic --kind orientation --cmin 0.3 \
15
15
  --titles "baseline|sum3+thr2" -o compare.png
16
16
  ```
17
17
 
@@ -1,7 +1,7 @@
1
1
  """Standard plots for MIDAS reconstructions.
2
2
 
3
3
  from midas_plotting import read_mic, orientation_map
4
- orientation_map("Ce5Y.0.mic", space_group=225, cmin=0.3)
4
+ orientation_map("sampleC.0.mic", space_group=225, cmin=0.3)
5
5
 
6
6
  Far-field ``Grains.csv`` lives in the ``ff`` submodule::
7
7
 
@@ -26,7 +26,7 @@ Laue microdiffraction lives in ``laue``, and reads the indexer's text output::
26
26
 
27
27
  or from the shell::
28
28
 
29
- midas-plot Ce5Y.0.mic --kind orientation --cmin 0.3 --sg 225
29
+ midas-plot sampleC.0.mic --kind orientation --cmin 0.3 --sg 225
30
30
  midas-plot Grains.csv --kind summary
31
31
 
32
32
  Written after the same IPF colouring, .mic parsing and map plotting were
@@ -48,7 +48,7 @@ from .solutions import (
48
48
  )
49
49
  from .mic import MicMap, read_mic
50
50
 
51
- __version__ = "0.3.0"
51
+ __version__ = "0.3.1"
52
52
  __all__ = [
53
53
  "MicMap", "read_mic", "GrainList", "read_grains", "ff", "laue",
54
54
  "LaueSolutions", "LaueSpots", "read_solutions", "read_spots",
@@ -13,7 +13,7 @@ takes an optional ``ax``, and returns the axes -- matching
13
13
  Two things worth knowing before reading any of these plots:
14
14
 
15
15
  * **Grain positions are good to ~100 µm**, not to the six decimals
16
- ``Grains.csv`` prints (``FF_HEDM_Lab_Notebook.md`` §2d). Do not over-read
16
+ ``Grains.csv`` prints (``manuals/ff-hedm/LAB_NOTEBOOK.md`` §2d). Do not over-read
17
17
  small spatial structure.
18
18
  * **``GrainRadius`` is only correct with ``midas-process-grains >= 0.6.1``.**
19
19
  Older versions report approximately the sample-wide mean radius for *every*
@@ -49,7 +49,7 @@ class GrainList:
49
49
  pos : (N, 3) float
50
50
  Grain centre-of-mass X, Y, Z in **micrometres**. Trustworthy to about
51
51
  ~100 µm on a typical reconstruction -- do not read the six decimals the
52
- file prints (``FF_HEDM_Lab_Notebook.md`` §2d).
52
+ file prints (``manuals/ff-hedm/LAB_NOTEBOOK.md`` §2d).
53
53
  euler : (N, 3) float
54
54
  Bunge ZXZ Euler angles in **radians**, matching the ``.mic`` convention
55
55
  so :func:`midas_plotting.ipf_rgb` accepts them directly.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: midas-plotting
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Standard plots for MIDAS reconstructions - near-field, far-field and Laue: IPF maps and legends, grain maps, pole figures, strain and size distributions, and Laue texture diagnostics against their chance levels.
5
5
  Author-email: Hemant Sharma <hsharma@anl.gov>
6
6
  License: BSD-3-Clause
@@ -25,13 +25,13 @@ Standard plots for MIDAS reconstructions.
25
25
  ```python
26
26
  from midas_plotting import read_mic, orientation_map, compare_maps
27
27
 
28
- m = read_mic("Ce5Y_mr.2.mic")
28
+ m = read_mic("sampleC_mr.2.mic")
29
29
  print(m.summary())
30
30
  orientation_map(m, space_group=225, cmin=0.3)
31
31
  ```
32
32
 
33
33
  ```bash
34
- midas-plot Ce5Y.0.mic Ce5Y_sum3thr2.0.mic --kind orientation --cmin 0.3 \
34
+ midas-plot sampleC.0.mic sampleC_sum3thr2.0.mic --kind orientation --cmin 0.3 \
35
35
  --titles "baseline|sum3+thr2" -o compare.png
36
36
  ```
37
37
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "midas-plotting"
7
- version = "0.3.0"
7
+ version = "0.3.1"
8
8
  description = "Standard plots for MIDAS reconstructions - near-field, far-field and Laue: IPF maps and legends, grain maps, pole figures, strain and size distributions, and Laue texture diagnostics against their chance levels."
9
9
  readme = "README.md"
10
10
  license = { text = "BSD-3-Clause" }
File without changes