8000 xarray.open_mzar: open multiple zarr files (in parallel) by Mikejmnez · Pull Request #4003 · pydata/xarray · GitHub
[go: up one dir, main page]

Skip to content

xarray.open_mzar: open multiple zarr files (in parallel) #4003

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
wants to merge 58 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
f55ed1c
create def for multiple zarr files and added commentary/definition, w…
Apr 23, 2020
49f6512
just as with ``xr.open_mfdatasets``, identify the paths as local dire…
Apr 23, 2020
f35a3e5
added error if no path
Apr 23, 2020
9f728aa
finished copying similar code from `xr.open_mfdatasets`
Apr 23, 2020
8d0a844
remove blank lines
Apr 23, 2020
b3b0f1d
fixed typo
Apr 23, 2020
2221943
added ``xr.open_mzarr()`` to the list of available modules to call
Apr 23, 2020
ac35e7c
imported missing function
Apr 23, 2020
64654f3
imported missing glob
Apr 23, 2020
d5a5cef
imported function from backend.api
Apr 23, 2020
4c0ef19
imported function to facilitate mzarr
Apr 23, 2020
d158c21
correctly imported functions from core to mzarr
Apr 23, 2020
5171420
imported to use on open_mzarr
Apr 23, 2020
e1e51bb
removed lock and autoclose since not taken by ``open_zarr``
Apr 23, 2020
b6bf2cf
fixed typo
Apr 23, 2020
3bc4be8
class is not needed since zarr stores don`t remain open
Apr 23, 2020
a79b125
removed old behavior
Apr 23, 2020
2d3bbb5
set default
Apr 23, 2020
f7cf580
listed open_mzarr
Apr 25, 2020
53c8623
removed unused imported function
Apr 25, 2020
34d755e
imported Path - hadn`t before
Apr 25, 2020
b39b37e
remove unncessesary comments
Apr 25, 2020
276006a
modified comments
Apr 25, 2020
6f04be6
isorted zarr
Apr 25, 2020
aa97e1a
isorted
Apr 25, 2020
06de16a
erased open_mzarr. Added capability to open_dataset to open zarr files
Apr 28, 2020
f94fc9f
removed imported but unused
Apr 28, 2020
16e08e3
comment to `zarr` engine
Apr 28, 2020
22828fc
added chunking code from `open_zarr`
Apr 28, 2020
021f2cc
remove import `open_mzarr``
Apr 28, 2020
985f28c
removed `open_mzarr`` from top-level-function
Apr 28, 2020
e8ed887
missing return in nested function
Apr 29, 2020
d693514
moved outside of nested function, had touble with reading before assi…
Apr 29, 2020
df34f18
added missing argument associated with zarr stores, onto the definiti…
Apr 29, 2020
98351c7
isort zarr.py
Apr 29, 2020
160bd67
removed blank lines, fixed typo on `chunks`
Apr 29, 2020
7e57e9b
removed imported but unused
Apr 29, 2020
ac0f093
restored conditional for `auto`
Apr 29, 2020
6a1516c
removed imported but unused `dask.array`
Apr 29, 2020
8999faf
added capabilities for file_or_obj to be a mutablemapper such as `fss…
Apr 29, 2020
5df0985
moved to a different conditional since file_or_obj is a mutablemappin…
Apr 29, 2020
2d94ea2
isort api.py
Apr 29, 2020
377ef53
restored the option for when file_or_obk is a str, such as an url.
Apr 29, 2020
f48c84b
fixed relabel
Apr 29, 2020
8376cca
update open_dataset for zarr files
Apr 29, 2020
aed1cc5
remove open_zarr from tests, now open_dataset(engine=`zarr`)
Apr 29, 2020
b488363
remove extra file, and raise deprecating warning on open_zarr
Apr 29, 2020
bae7f10
added internal call to open_dataset from depricated open_zarr
Apr 29, 2020
37ff214
defined engine=`zarr`
Apr 29, 2020
b8b98f5
correct argument for open_dataset
Apr 29, 2020
5c37329
pass arguments as backend_kwargs
Apr 29, 2020
831f15b
pass backend_kwargs as argument
Apr 29, 2020
80dd7da
typo
Apr 29, 2020
4ebf380
set `overwrite_enconded_chunks as backend_kwargs
Apr 29, 2020
4ce3007
do not pass as backend, use for chunking
Apr 29, 2020
89a780b
removed commented code
May 22, 2020
6f6eb23
moved definitions to zarr backends
May 22, 2020
62893ab
Merge pull request #1 from Mikejmnez/new_branch
May 22, 2020
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
Prev Previous commit
Next Next commit
listed open_mzarr
  • Loading branch information
Miguel Jimenez-Urias committed Apr 25, 2020
commit f7cf58010cce9ff7ea8cb1ecb38b4880943aa76c
1 change: 1 addition & 0 deletions xarray/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
"open_mfdataset",
"open_rasterio",
"open_zarr",
"open_mzarr",
"polyval",
"register_dataarray_accessor",
"register_dataset_accessor",
Expand Down
0