We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5412553 commit b495a6aCopy full SHA for b495a6a
xarray_sentinel/eopf_metadata.py
@@ -1,4 +1,5 @@
1
from typing import Any
2
+import warnings
3
4
import fsspec
5
import numpy as np
@@ -95,6 +96,7 @@ def extract_annotation_urlpath(product_urlpath: esa_safe.PathType) -> str:
95
96
97
98
def build_other_metadata(product_urlpath: esa_safe.PathType) -> dict[str, Any]:
99
+ warnings.warn("This is an unofficial, alpha converter", UserWarning)
100
annotation_urlpath = extract_annotation_urlpath(product_urlpath)
101
with fsspec.open(annotation_urlpath) as fp:
102
quality_information = esa_safe.parse_tag(fp, "//qualityInformation")
0 commit comments