sdf-xarray 0.2.1__cp313-cp313-macosx_11_0_arm64.whl → 0.2.3__cp313-cp313-macosx_11_0_arm64.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 sdf-xarray might be problematic. Click here for more details.
- lib/SDFC_14.4.7/libsdfc.a +0 -0
- sdf_xarray/__init__.py +6 -0
- sdf_xarray/_version.py +2 -2
- sdf_xarray/sdf_interface.cpython-313-darwin.so +0 -0
- {sdf_xarray-0.2.1.dist-info → sdf_xarray-0.2.3.dist-info}/METADATA +16 -2
- {sdf_xarray-0.2.1.dist-info → sdf_xarray-0.2.3.dist-info}/RECORD +9 -9
- {sdf_xarray-0.2.1.dist-info → sdf_xarray-0.2.3.dist-info}/WHEEL +1 -1
- {sdf_xarray-0.2.1.dist-info → sdf_xarray-0.2.3.dist-info}/entry_points.txt +0 -0
- {sdf_xarray-0.2.1.dist-info → sdf_xarray-0.2.3.dist-info}/licenses/LICENCE +0 -0
lib/SDFC_14.4.7/libsdfc.a
CHANGED
|
Binary file
|
sdf_xarray/__init__.py
CHANGED
|
@@ -15,6 +15,10 @@ from xarray.core import indexing
|
|
|
15
15
|
from xarray.core.utils import close_on_error, try_read_magic_number_from_path
|
|
16
16
|
from xarray.core.variable import Variable
|
|
17
17
|
|
|
18
|
+
# NOTE: Do not delete this line, otherwise the "epoch" accessor will not be
|
|
19
|
+
# imported when the user imports sdf_xarray
|
|
20
|
+
import sdf_xarray.plotting # noqa: F401
|
|
21
|
+
|
|
18
22
|
from .sdf_interface import Constant, SDFFile # type: ignore # noqa: PGH003
|
|
19
23
|
|
|
20
24
|
|
|
@@ -306,6 +310,8 @@ class SDFDataStore(AbstractDataStore):
|
|
|
306
310
|
# Had some problems with these variables, so just ignore them for now
|
|
307
311
|
if "cpu" in key.lower():
|
|
308
312
|
continue
|
|
313
|
+
if "boundary" in key.lower():
|
|
314
|
+
continue
|
|
309
315
|
if "output file" in key.lower():
|
|
310
316
|
continue
|
|
311
317
|
|
sdf_xarray/_version.py
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: sdf-xarray
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: Provides a backend for xarray to read SDF files as created by the EPOCH plasma PIC code.
|
|
5
5
|
Author-Email: Peter Hill <peter.hill@york.ac.uk>, Joel Adams <joel.adams@york.ac.uk>, Shaun Doherty <shaun.doherty@york.ac.uk>
|
|
6
6
|
License: Copyright 2024, Peter Hill, Joel Adams, epochpic team
|
|
@@ -32,6 +32,15 @@ License: Copyright 2024, Peter Hill, Joel Adams, epochpic team
|
|
|
32
32
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33
33
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
34
34
|
|
|
35
|
+
Classifier: Programming Language :: Python
|
|
36
|
+
Classifier: Programming Language :: Python :: 3
|
|
37
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
38
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
39
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
40
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
41
|
+
Classifier: Intended Audience :: Science/Research
|
|
42
|
+
Classifier: Topic :: Scientific/Engineering
|
|
43
|
+
Classifier: Operating System :: OS Independent
|
|
35
44
|
Requires-Python: >=3.10
|
|
36
45
|
Requires-Dist: numpy>=2.0.0
|
|
37
46
|
Requires-Dist: xarray>=2024.1.0
|
|
@@ -52,6 +61,7 @@ Requires-Dist: myst-parser; extra == "docs"
|
|
|
52
61
|
Provides-Extra: test
|
|
53
62
|
Requires-Dist: pytest>=3.3.0; extra == "test"
|
|
54
63
|
Requires-Dist: dask[complete]; extra == "test"
|
|
64
|
+
Requires-Dist: matplotlib; extra == "test"
|
|
55
65
|
Provides-Extra: lint
|
|
56
66
|
Requires-Dist: ruff; extra == "lint"
|
|
57
67
|
Provides-Extra: build
|
|
@@ -66,9 +76,13 @@ Description-Content-Type: text/markdown
|
|
|
66
76
|
|
|
67
77
|
# sdf-xarray
|
|
68
78
|
|
|
69
|
-

|
|
80
|
+
[](https://pypi.org/project/sdf-xarray/)
|
|
70
81
|

|
|
71
82
|

|
|
83
|
+
[](https://sdf-xarray.readthedocs.io)
|
|
84
|
+
[](https://github.com/python/black)
|
|
85
|
+
|
|
72
86
|
|
|
73
87
|
sdf-xarray provides a backend for [xarray](https://xarray.dev) to read SDF files as created by
|
|
74
88
|
[EPOCH](https://epochpic.github.io) using the [SDF-C](https://github.com/epochpic/SDF_C) library.
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
sdf_xarray-0.2.3.dist-info/RECORD,,
|
|
2
|
+
sdf_xarray-0.2.3.dist-info/WHEEL,sha256=yzv-J-0GhTeRwkaN4gTfSmvu-oLqNrxO_JmdmKfUbgA,114
|
|
3
|
+
sdf_xarray-0.2.3.dist-info/entry_points.txt,sha256=gP7BIQpXNg6vIf7S7p-Rw_EJZTC1X50BsVTkK7dA7g0,57
|
|
4
|
+
sdf_xarray-0.2.3.dist-info/METADATA,sha256=lqXX5Gbv6Owmrsit-iN9e4-OoJMLZDV2huiixewB-ik,9048
|
|
5
|
+
sdf_xarray-0.2.3.dist-info/licenses/LICENCE,sha256=0FfLVWQRQERtj0vUKjJk7-UrDp-t70Et9izWejGe4Os,1487
|
|
1
6
|
include/SDFC_14.4.7/sdf_derived.h,sha256=VqRsCmjmSRIOGqZSiPMsvmNaFBoNzXhrlKeyWGYIzm8,636
|
|
2
7
|
include/SDFC_14.4.7/sdf_helper.h,sha256=UD291Xf8ZUeh34iv-qLN-u8f5vPQz0joTFxIQWUIVYA,1020
|
|
3
8
|
include/SDFC_14.4.7/sdf_vector_type.h,sha256=5tcQcF7zDm7kTkLCzm12G5Z3ARVXvw7-XpKQ6WWej6U,1527
|
|
@@ -6,19 +11,14 @@ include/SDFC_14.4.7/sdf_extension.h,sha256=my_ze10hSGfWEQEaUWh8TxFuVsiAl-g6aDn6q
|
|
|
6
11
|
include/SDFC_14.4.7/uthash.h,sha256=BN_4JfPHloW0kI3VRhvCqP8D2VcvD0HpSLgo4MBz6Sk,62067
|
|
7
12
|
include/SDFC_14.4.7/sdf.h,sha256=8RWP2yH8xn_sCcbqZPT443LBaPy_3SHjOxA6IL4xLzE,24996
|
|
8
13
|
include/SDFC_14.4.7/sdf_list_type.h,sha256=WEq5Qmtv00-A7lmLadxC7RbFy46yLYRgg0LynCGk4PE,1350
|
|
9
|
-
lib/SDFC_14.4.7/libsdfc.a,sha256=
|
|
14
|
+
lib/SDFC_14.4.7/libsdfc.a,sha256=j9xEkewjSiog1JIIacAkhdfnX_KV0OmnFdv4SOUOlQ8,564248
|
|
10
15
|
lib/SDFC_14.4.7/SDFCTargets-release.cmake,sha256=Xq-QJnH563tMRWlM5o2wdMSm9EiSKXru4U4hlR-eXlo,811
|
|
11
16
|
lib/SDFC_14.4.7/SDFCTargets.cmake,sha256=deEq1SSWHOfneFC4Tfj6O315PrDwpKa73ZSrXOt_Isc,4047
|
|
12
17
|
lib/SDFC_14.4.7/SDFCConfig.cmake,sha256=QQOXXHTYSEzXXckN8CCi9vuhMmirf2MrOA8b3tY4m2A,784
|
|
13
18
|
lib/SDFC_14.4.7/SDFCConfigVersion.cmake,sha256=2dR0eWIHiMKSdOwWBD9kI6EA-1mvVZsn61d50hSazkE,2765
|
|
14
|
-
sdf_xarray
|
|
15
|
-
sdf_xarray-0.2.1.dist-info/WHEEL,sha256=eXHwyB1RdhCzPENBXiRF2Ly_mYZX2sKNxeIVuzbAtg8,114
|
|
16
|
-
sdf_xarray-0.2.1.dist-info/entry_points.txt,sha256=gP7BIQpXNg6vIf7S7p-Rw_EJZTC1X50BsVTkK7dA7g0,57
|
|
17
|
-
sdf_xarray-0.2.1.dist-info/METADATA,sha256=gfR0XGC6e0b1WFgTdVMf1nfL4AsICdVCDQCOsjZC2kY,7989
|
|
18
|
-
sdf_xarray-0.2.1.dist-info/licenses/LICENCE,sha256=0FfLVWQRQERtj0vUKjJk7-UrDp-t70Et9izWejGe4Os,1487
|
|
19
|
-
sdf_xarray/_version.py,sha256=UoNvMtd4wCG76RwoSpNCUtaFyTwakGcZolfjXzNVSMY,511
|
|
19
|
+
sdf_xarray/_version.py,sha256=wD8hnA5gV5UmPkQnpT3xR6V2csgj9K5NEADogbLK79M,511
|
|
20
20
|
sdf_xarray/plotting.py,sha256=2d9aIkbB2fZTTUUfYE47CMoemUAU8birq6JL6l3sEvQ,6054
|
|
21
21
|
sdf_xarray/sdf_interface.pyx,sha256=U2TW0LXUyhuK3uEEr93g2dOKjIVdQJHarMC1Kn9nheI,11642
|
|
22
|
-
sdf_xarray/__init__.py,sha256=
|
|
23
|
-
sdf_xarray/sdf_interface.cpython-313-darwin.so,sha256=
|
|
22
|
+
sdf_xarray/__init__.py,sha256=VAV1g025T7w5EEUOt4dY4FeXOLXm7BJhdx5jUv8PCT0,17174
|
|
23
|
+
sdf_xarray/sdf_interface.cpython-313-darwin.so,sha256=dvAU1hC-n6I0QtO9F3MA3YGi_N3eC-Gd8zKP0BNZuzc,417424
|
|
24
24
|
sdf_xarray/csdf.pxd,sha256=6VCmPTbvKOQt3O-r1R1Gj-GvQJ2pOUeSRnkxgMLBvy0,4078
|
|
File without changes
|
|
File without changes
|