|
59 | 59 | T_NetcdfEngine = Literal["netcdf4", "scipy", "h5netcdf"]
|
60 | 60 | T_Engine = Union[
|
61 | 61 | T_NetcdfEngine,
|
62 |
| - Literal["pydap", "pynio", "pseudonetcdf", "zarr"], |
| 62 | + Literal["pydap", "pynio", "zarr"], |
63 | 63 | type[BackendEntrypoint],
|
64 | 64 | str, # no nice typing support for custom backends
|
65 | 65 | None,
|
|
78 | 78 | "pydap": backends.PydapDataStore.open,
|
79 | 79 | "h5netcdf": backends.H5NetCDFStore.open,
|
80 | 80 | "pynio": backends.NioDataStore,
|
81 |
| - "pseudonetcdf": backends.PseudoNetCDFDataStore.open, |
82 | 81 | "zarr": backends.ZarrStore.open_group,
|
83 | 82 | }
|
84 | 83 |
|
@@ -420,7 +419,7 @@ def open_dataset(
|
420 | 419 | scipy.io.netcdf (only netCDF3 supported). Byte-strings or file-like
|
421 | 420 | objects are opened by scipy.io.netcdf (netCDF3) or h5py (netCDF4/HDF).
|
422 | 421 | engine : {"netcdf4", "scipy", "pydap", "h5netcdf", "pynio", \
|
423 |
| - "pseudonetcdf", "zarr", None}, installed backend \ |
| 422 | + "zarr", None}, installed backend \ |
424 | 423 | or subclass of xarray.backends.BackendEntrypoint, optional
|
425 | 424 | Engine to use when reading files. If not provided, the default engine
|
426 | 425 | is chosen based on available dependencies, with a preference for
|
@@ -452,8 +451,7 @@ def open_dataset(
|
452 | 451 | taken from variable attributes (if they exist). If the `_FillValue` or
|
453 | 452 | `missing_value` attribute contains multiple values a warning will be
|
454 | 453 | issued and all array values matching one of the multiple values will
|
455 |
| - be replaced by NA. mask_and_scale defaults to True except for the |
456 |
| - pseudonetcdf backend. This keyword may not be supported by all the backends. |
| 454 | + be replaced by NA. This keyword may not be supported by all the backends. |
457 | 455 | decode_times : bool, optional
|
458 | 456 | If True, decode times encoded in the standard NetCDF datetime format
|
459 | 457 | into datetime objects. Otherwise, leave them encoded as numbers.
|
@@ -523,7 +521,7 @@ def open_dataset(
|
523 | 521 | relevant when using dask or another form of parallelism. By default,
|
524 | 522 | appropriate locks are chosen to safely read and write files with the
|
525 | 523 | currently active dask scheduler. Supported by "netcdf4", "h5netcdf",
|
526 |
| - "scipy", "pynio", "pseudonetcdf". |
| 524 | + "scipy", "pynio". |
527 | 525 |
|
528 | 526 | See engine open function for kwargs accepted by each specific engine.
|
529 | 527 |
|
@@ -628,7 +626,7 @@ def open_dataarray(
|
628 | 626 | scipy.io.netcdf (only netCDF3 supported). Byte-strings or file-like
|
629 | 627 | objects are opened by scipy.io.netcdf (netCDF3) or h5py (netCDF4/HDF).
|
630 | 628 | engine : {"netcdf4", "scipy", "pydap", "h5netcdf", "pynio", \
|
631 |
| - "pseudonetcdf", "zarr", None}, installed backend \ |
| 629 | + "zarr", None}, installed backend \ |
632 | 630 | or subclass of xarray.backends.BackendEntrypoint, optional
|
633 | 631 | Engine to use when reading files. If not provided, the default engine
|
634 | 632 | is chosen based on available dependencies, with a preference for
|
@@ -658,8 +656,7 @@ def open_dataarray(
|
658 | 656 | taken from variable attributes (if they exist). If the `_FillValue` or
|
659 | 657 | `missing_value` attribute contains multiple values a warning will be
|
660 | 658 | issued and all array values matching one of the multiple values will
|
661 |
| - be replaced by NA. mask_and_scale defaults to True except for the |
662 |
| - pseudonetcdf backend. This keyword may not be supported by all the backends. |
| 659 | + be replaced by NA. This keyword may not be supported by all the backends. |
663 | 660 | decode_times : bool, optional
|
664 | 661 | If True, decode times encoded in the standard NetCDF datetime format
|
665 | 662 | into datetime objects. Otherwise, leave them encoded as numbers.
|
@@ -729,7 +726,7 @@ def open_dataarray(
|
729 | 726 | relevant when using dask or another form of parallelism. By default,
|
730 | 727 | appropriate locks are chosen to safely read and write files with the
|
731 | 728 | currently active dask scheduler. Supported by "netcdf4", "h5netcdf",
|
732 |
| - "scipy", "pynio", "pseudonetcdf". |
| 729 | + "scipy", "pynio". |
733 | 730 |
|
734 | 731 | See engine open function for kwargs accepted by each specific engine.
|
735 | 732 |
|
@@ -869,7 +866,7 @@ def open_mfdataset(
|
869 | 866 | You can find the file-name from which each dataset was loaded in
|
870 | 867 | ``ds.encoding["source"]``.
|
871 | 868 | engine : {"netcdf4", "scipy", "pydap", "h5netcdf", "pynio", \
|
872 |
| - "pseudonetcdf", "zarr", None}, installed backend \ |
| 869 | + "zarr", None}, installed backend \ |
873 | 870 | or subclass of xarray.backends.BackendEntrypoint, optional
|
874 | 871 | Engine to use when reading files. If not provided, the default engine
|
875 | 872 | is chosen based on available dependencies, with a preference for
|
|
0 commit comments