Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

open_virtual_dataset with dmr++ #113

Merged
merged 28 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
18b53bd
basic dmr parsing functionality
ayushnag May 13, 2024
47d8901
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 14, 2024
f3bfa82
Merge branch 'TomNicholas:main' into dmr-adapter
ayushnag May 14, 2024
aaf6af2
Speedup DMR chunk key parsing
agoodm May 14, 2024
fc8b0d8
Merge pull request #1 from agoodm/dmr-adapter
ayushnag May 14, 2024
7b81eeb
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 14, 2024
8334d0a
added groups, docs, and bug fixes
ayushnag May 16, 2024
64d59b1
Merge branch 'TomNicholas:main' into dmr-adapter
ayushnag Jun 3, 2024
1a3b787
Merge branch 'zarr-developers:main' into dmr-adapter
ayushnag Jun 21, 2024
7580fdc
rework hdf5 parser and group logic
ayushnag Jun 27, 2024
52ceba0
Merge remote-tracking branch 'upstream/main' into dmr-adapter
ayushnag Jul 3, 2024
b1f9aee
update attrs cast to python dtype
ayushnag Jul 10, 2024
ae29176
parser passing tests
ayushnag Jul 14, 2024
6e763f9
match main manifest dtypes
ayushnag Jul 14, 2024
0824ed2
Merge branch 'zarr-developers:main' into dmr-adapter
ayushnag Jul 15, 2024
659ab65
Merge branch 'zarr-developers:main' into dmr-adapter
ayushnag Jul 15, 2024
b8531c8
Merge branch 'zarr-developers:main' into dmr-adapter
ayushnag Jul 19, 2024
0125d71
Merge branch 'zarr-developers:main' into dmr-adapter
ayushnag Aug 2, 2024
ef8aa9c
modularize dmrpp.py
ayushnag Aug 3, 2024
7638092
add dmrpp api docs
ayushnag Aug 4, 2024
83cb586
resolve conflict
ayushnag Aug 4, 2024
cb6feff
resolve releases conflict
ayushnag Aug 4, 2024
888ce32
indexes and docs fix
ayushnag Aug 25, 2024
3e15e8e
Merge branch 'main' into dmr-adapter
TomNicholas Aug 26, 2024
ee23ec0
Fix type hint for shape
TomNicholas Aug 26, 2024
d9337ff
change how FileType is used
TomNicholas Aug 26, 2024
6bb9218
Change FileType check again
TomNicholas Aug 26, 2024
d1948d4
fix storage_options bug
TomNicholas Aug 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ v1.0.1 (unreleased)
New Features
~~~~~~~~~~~~

- Add parser for the OPeNDAP DMR++ XML format and integration with open_virtual_dataset (:pull:`113`)
By `Ayush Nag <https://github.com/ayushnag>`_.

- Load scalar variables by default. (:pull:`205`)
By `Gustavo Hidalgo <https://github.com/ghidalgo3>`_.

Expand Down
1 change: 1 addition & 0 deletions virtualizarr/kerchunk.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ class FileType(AutoName):
tiff = auto()
fits = auto()
zarr = auto()
dmrpp = auto()
zarr_v3 = auto()


Expand Down
Loading
Loading