Home
last modified time | relevance | path

Searched refs:open_mfdataset (Results 1 – 11 of 11) sorted by relevance

/dports/devel/py-xarray/xarray-0.20.1/asv_bench/benchmarks/
H A Ddataset_io.py357 xr.open_mfdataset(
363 xr.open_mfdataset(
368 xr.open_mfdataset(
374 xr.open_mfdataset(
379 xr.open_mfdataset(
385 xr.open_mfdataset(
390 xr.open_mfdataset(
396 xr.open_mfdataset(
412 xr.open_mfdataset(
418 xr.open_mfdataset(
[all …]
/dports/devel/py-xarray/xarray-0.20.1/xarray/tests/
H A Dtest_backends.py31 open_mfdataset,
104 return open_mfdataset(
3026 with open_mfdataset(
3069 with xr.open_mfdataset(
3129 with open_mfdataset(
3228 open_mfdataset(
3241 with open_mfdataset(
3260 with open_mfdataset(
3480 with open_mfdataset(
3499 with open_mfdataset(
[all …]
/dports/devel/py-xarray/xarray-0.20.1/xarray/
H A D__init__.py7 open_mfdataset,
/dports/devel/py-xarray/xarray-0.20.1/doc/user-guide/
H A Ddask.rst53 :py:func:`~xarray.open_mfdataset` function.
90 use :py:func:`~xarray.open_mfdataset`::
92 xr.open_mfdataset('my/files/*.nc', parallel=True)
96 for the full disclaimer). By default, :py:meth:`~xarray.open_mfdataset` will chunk each
100 … Passing the keyword argument ``parallel=True`` to :py:meth:`~xarray.open_mfdataset` will speed up…
551 3. Specify smaller chunks across space when using :py:meth:`~xarray.open_mfdataset` (e.g., ``chunks…
553 4. Using the h5netcdf package by passing ``engine='h5netcdf'`` to :py:meth:`~xarray.open_mfdataset`
H A Dio.rst227 simultaneously in parallel using :py:func:`open_mfdataset`::
229 xr.open_mfdataset('my/files/*.nc', parallel=True)
236 :py:func:`open_mfdataset` takes many kwargs that allow you to
249 xr.open_mfdataset('my/files/*.nc', concat_dim="time", combine="nested",
261 …times multi-file datasets are not conveniently organized for easy use of :py:func:`open_mfdataset`.
264 :py:func:`open_mfdataset` will call ``preprocess`` on every dataset
268 If :py:func:`open_mfdataset` does not meet your needs, other approaches are possible.
277 # this is basically what open_mfdataset does
906 This also works with ``open_mfdataset``, allowing you to pass a list of paths or
H A Dweather-climate.rst41 :py:func:`open_dataset` and :py:func:`open_mfdataset`.
H A Dcombining.rst304 These functions can be used by :py:func:`~xarray.open_mfdataset` to open many
/dports/devel/py-xarray/xarray-0.20.1/doc/
H A Dwhats-new.rst481 - Prevent passing `concat_dim` to :py:func:`xarray.open_mfdataset` when
650 :py:func:`open_mfdataset`. The full list of decoded attributes is in
860 - :py:func:`open_dataset` and :py:func:`open_mfdataset`
2173 ``open_mfdataset``). (:issue:`2159`)
2368 :py:meth:`~xarray.open_mfdataset` (:issue:`1263`) and/or to silence
2464 to ``open_mfdataset`` (:issue:`2647`).
3090 - Better error handling in ``open_mfdataset`` (:issue:`2077`).
4337 - Fix ``open_mfdataset`` with ``engine='pynio'`` (:issue:`936`).
5001 - ``xray.open_mfdataset`` now supports a ``preprocess`` argument for
5005 - ``xray.open_dataset`` and ``xray.open_mfdataset`` now use a
[all …]
H A Dapi.rst695 open_mfdataset
/dports/devel/py-xarray/xarray-0.20.1/doc/getting-started-guide/
H A Dquick-overview.rst228 …p). Xarray supports this use-case by providing the :py:meth:`~xarray.open_mfdataset` and the :py:m…
/dports/devel/py-xarray/xarray-0.20.1/xarray/backends/
H A Dapi.py692 def open_mfdataset( function