-
Notifications
You must be signed in to change notification settings - Fork 10
WIP: Support icechunk stores #96
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
Closed
+2,379
−1,336
Closed
Changes from 8 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
441063e
Parametrize test parameters across test functions
5d760bc
Fix pre-commit failure
b87582d
Fix pyramid store detection in get_tile test
7890228
Update tests/test_app.py
jbusecke ad28eab
updated zarr; added zarr v3 test fixture; parametrize caching for tests
9161be4
Remove dask dependency
a018066
updated zarr fixtures+scripts; minor test changes+additions;add dask …
3e57c11
update tilejson expected responses
4d20b59
All tests passing with zarr v2 and v3
21f33d1
add icechunk fixture and generation script
e6d86ea
Remove debugs, fix most tests
d99859c
Merge branch 'main' into support-icechunk
jbusecke 791d618
Bump xarray + renable testing with cache
e1d90bf
Some more debugging of the tile test
98809ae
Fix errors by pinning rio-tiler
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -105,3 +105,4 @@ cdk.out/ | |
node_modules | ||
cdk.context.json | ||
*.nc | ||
.DS_Store |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 0 additions & 72 deletions
72
tests/fixtures/responses/test_zarr_store_zarr_histogram.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"bounds": [-180, -90.0, 180.0, 90.0], | ||
"band_metadata": [], | ||
"band_descriptions": [], | ||
"dtype": "float64", | ||
"nodata_type": "None", | ||
"height": 36, | ||
"count": 1, | ||
"width": 72, | ||
"attrs": {}, | ||
"name": "CDD0" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"tilejson": "2.2.0", | ||
"version": "1.0.0", | ||
"scheme": "xyz", | ||
"tiles": [ | ||
"http://testserver/tiles/WebMercatorQuad/{z}/{x}/{y}@1x?url=tests%2Ffixtures%2Fzarr_store_v3.zarr&variable=CDD0&decode_times=false&sel=time%3D0" | ||
], | ||
"minzoom": 0, | ||
"maxzoom": 0, | ||
"bounds": [-180.0, -90.0, 180.0, 90.0], | ||
"center": [0.0, 0.0, 0] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pickling problem is solved if we bump this up to
2025.10.1
!