heliokit-data-netcdf 0.1.0__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.
@@ -0,0 +1,4 @@
1
+ from .component import get_component
2
+
3
+ __all__ = ["get_component"]
4
+
@@ -0,0 +1,12 @@
1
+ from heliokit.adapters.data_ops import read_data_file
2
+ from heliokit.cli_specs import add_data_read_arguments
3
+ from heliokit_base import ComponentMetadata, SimpleComponent
4
+
5
+
6
+ def get_component():
7
+ return SimpleComponent(
8
+ ComponentMetadata(kind="data", operation="read", name="nc", aliases=("netcdf",), summary="Read NetCDF datasets."),
9
+ runner=lambda **kwargs: read_data_file("nc", **kwargs),
10
+ register_arguments=add_data_read_arguments,
11
+ )
12
+
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: heliokit-data-netcdf
3
+ Version: 0.1.0
4
+ Requires-Python: <3.11,>=3.10
5
+ Requires-Dist: heliokit>=0.1.0
@@ -0,0 +1,7 @@
1
+ heliokit_data_netcdf/__init__.py,sha256=LiHEaXM2FdJvLineXh1R1q9qcK0z9y0YlLuzEXLZi9Q,67
2
+ heliokit_data_netcdf/component.py,sha256=SyBsjsUIIZxjN4TWPizdQ7cnIC4xYnSSgoMW3LIiOBE,467
3
+ heliokit_data_netcdf-0.1.0.dist-info/METADATA,sha256=GkEdMqtHviM5OCVMUPZdhOLm4W3Bg5gg-THySc5fArE,130
4
+ heliokit_data_netcdf-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
5
+ heliokit_data_netcdf-0.1.0.dist-info/entry_points.txt,sha256=qECjgDMzSwQehjdgLaatyUn2493m9klvEDfkxDNId6Q,66
6
+ heliokit_data_netcdf-0.1.0.dist-info/top_level.txt,sha256=ZUexzuHfu29N8XOwXX0GtTewsC5SEC-ZzrBkcRxz_Zo,21
7
+ heliokit_data_netcdf-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [heliokit.data]
2
+ nc = heliokit_data_netcdf.component:get_component
@@ -0,0 +1 @@
1
+ heliokit_data_netcdf