A SSLCertVerificationError is raised when datasets are opened from VSCode (for some users) but not on Google Colab.
Adding a few lines of code fixes the issue.
Example fix:
hrv = xr.open_dataset(
"zip:///::https://huggingface.co/datasets/climatehackai/climatehackai-2023/resolve/main/satellite-hrv/2020/7.zarr.zip",
engine="zarr",
consolidated=True,
backend_kwargs={
"storage_options": {
"https": {
"ssl": False
}
}
}
)
hrv