Skip to content

Commit b495a6a

Browse files
committed
Warn users
1 parent 5412553 commit b495a6a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

xarray_sentinel/eopf_metadata.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from typing import Any
2+
import warnings
23

34
import fsspec
45
import numpy as np
@@ -95,6 +96,7 @@ def extract_annotation_urlpath(product_urlpath: esa_safe.PathType) -> str:
9596

9697

9798
def build_other_metadata(product_urlpath: esa_safe.PathType) -> dict[str, Any]:
99+
warnings.warn("This is an unofficial, alpha converter", UserWarning)
98100
annotation_urlpath = extract_annotation_urlpath(product_urlpath)
99101
with fsspec.open(annotation_urlpath) as fp:
100102
quality_information = esa_safe.parse_tag(fp, "//qualityInformation")

0 commit comments

Comments
 (0)