pyvlasiator 0.1.8__py3-none-any.whl → 0.1.9__py3-none-any.whl
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.
Potentially problematic release.
This version of pyvlasiator might be problematic. Click here for more details.
- pyvlasiator/plot/plot.py +3 -3
- {pyvlasiator-0.1.8.dist-info → pyvlasiator-0.1.9.dist-info}/METADATA +1 -1
- {pyvlasiator-0.1.8.dist-info → pyvlasiator-0.1.9.dist-info}/RECORD +5 -5
- {pyvlasiator-0.1.8.dist-info → pyvlasiator-0.1.9.dist-info}/LICENSE.md +0 -0
- {pyvlasiator-0.1.8.dist-info → pyvlasiator-0.1.9.dist-info}/WHEEL +0 -0
pyvlasiator/plot/plot.py
CHANGED
|
@@ -700,17 +700,17 @@ def prep2dslice(meta: Vlsv, var: str, dir: int, comp: int, pArgs: PlotArgs):
|
|
|
700
700
|
if comp != -1:
|
|
701
701
|
data = data3D[icut, :, :, comp]
|
|
702
702
|
else:
|
|
703
|
-
data = np.linalg.norm(data3D[icut, :, :, :], axis=
|
|
703
|
+
data = np.linalg.norm(data3D[icut, :, :, :], axis=2)
|
|
704
704
|
elif dir == 1:
|
|
705
705
|
if comp != -1:
|
|
706
706
|
data = data3D[:, icut, :, comp]
|
|
707
707
|
else:
|
|
708
|
-
data = np.linalg.norm(data3D[:, icut, :, :], axis=
|
|
708
|
+
data = np.linalg.norm(data3D[:, icut, :, :], axis=2)
|
|
709
709
|
elif dir == 2:
|
|
710
710
|
if comp != -1:
|
|
711
711
|
data = data3D[:, :, icut, comp]
|
|
712
712
|
else:
|
|
713
|
-
data = np.linalg.norm(data3D[:, :, icut, :], axis=
|
|
713
|
+
data = np.linalg.norm(data3D[:, :, icut, :], axis=2)
|
|
714
714
|
else: # moments, dccrg grid
|
|
715
715
|
# vlasov grid, AMR
|
|
716
716
|
if data3D.ndim == 1:
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
pyvlasiator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
pyvlasiator/plot/__init__.py,sha256=1QgvCaH3js2rCCJs3JoKcFN0fUOVfz7_gFSxyP8auLg,281
|
|
3
|
-
pyvlasiator/plot/plot.py,sha256=
|
|
3
|
+
pyvlasiator/plot/plot.py,sha256=ZDh4FETtZ7sjAtVDoHwEeD2rPRuU8gS-aQPqbx9pSpc,35706
|
|
4
4
|
pyvlasiator/pyvlasiator.py,sha256=11dp6PsBPHacbGHtzI7mdS8NreiBNYuwbI5cx_5bfDw,62
|
|
5
5
|
pyvlasiator/vlsv/__init__.py,sha256=T1_Znxt_H7XL-Al5IG0C_CKBw_u2VkeVQ3O1INH29po,81
|
|
6
6
|
pyvlasiator/vlsv/reader.py,sha256=jSwtGU7V7uJzytuMMGBik811vghQu1o1GgEj9bgaOR4,35610
|
|
7
7
|
pyvlasiator/vlsv/variables.py,sha256=5g0PZT0GScVTloYPlmogU1VtHYGQ4fe3yvEtDlWCZMk,6030
|
|
8
|
-
pyvlasiator-0.1.
|
|
9
|
-
pyvlasiator-0.1.
|
|
10
|
-
pyvlasiator-0.1.
|
|
11
|
-
pyvlasiator-0.1.
|
|
8
|
+
pyvlasiator-0.1.9.dist-info/LICENSE.md,sha256=UbZmGbnA73ReemkiNPRNfqgGtpPwiGFJiOZo0gxiP_o,1125
|
|
9
|
+
pyvlasiator-0.1.9.dist-info/METADATA,sha256=if23wZW4A5r9nLB7IczKc8ctLoTc1mUdlDqLcy7kfhE,1953
|
|
10
|
+
pyvlasiator-0.1.9.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
11
|
+
pyvlasiator-0.1.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|