You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The [virtual-tiff](https://github.com/virtual-zarr/virtual-tiff) library provides a TIFF parser. See [their API documentation for details](https://virtual-tiff.readthedocs.io/en/latest/api/parser/).
Copy file name to clipboardExpand all lines: docs/faq.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -128,7 +128,7 @@ Users of Kerchunk may find the following comparison table useful, which shows wh
128
128
|**Generation of references from archival files (1)**|||
129
129
| From a netCDF4/HDF5 file |`kerchunk.hdf.SingleHdf5ToZarr`|`open_virtual_dataset(..., parser=HDFParser())`|
130
130
| From a netCDF3 file |`kerchunk.netCDF3.NetCDF3ToZarr`|`open_virtual_dataset(..., parser=NetCDF3Parser())`, via `kerchunk.netCDF3.NetCDF3ToZarr`|
131
-
| From a COG / tiff file |`kerchunk.tiff.tiff_to_zarr`|`open_virtual_dataset(..., parser=TIFFParser())`, via `kerchunk.tiff.tiff_to_zarr` or potentially `tifffile` (❌ Not yet implemented - see [issue #291](https://github.com/zarr-developers/VirtualiZarr/issues/291)) |
131
+
| From a COG / tiff file |`kerchunk.tiff.tiff_to_zarr`|`open_virtual_dataset(..., parser=VirtualTIFF())`, via [virtual_tiff](https://github.com/virtual-zarr/virtual-tiff)|
132
132
| From a Zarr v2 store |`kerchunk.zarr.ZarrToZarr`|`open_virtual_dataset(..., parser=ZarrParser())` (❌ Not yet implemented - see [issue #262](https://github.com/zarr-developers/VirtualiZarr/issues/262)) |
133
133
| From a Zarr v3 store ||`open_virtual_dataset(..., parser=ZarrParser())`|
134
134
| From a GRIB2 file |`kerchunk.grib2.scan_grib`|`open_virtual_datatree(..., parser=GribParser())` (❌ Not yet implemented - see [issue #11](https://github.com/zarr-developers/VirtualiZarr/issues/11)) |
min-deps = ["dev", "test", "hdf", "hdf5-lib"] # VirtualiZarr/conftest.py using h5py, so the minimum set of dependencies for testing still includes hdf libs
195
199
# Inherit from min-deps to get all the test commands, along with optional dependencies
0 commit comments