Source code for weitsicht.metadata.metadata_results
# -----------------------------------------------------------------------
# Copyright 2026 Martin Wieser
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# -----------------------------------------------------------------------
"""Result objects and issues for metadata extraction and image building.
This mirrors the pattern used for projection and mapping results, but keeps metadata issues
separate from the generic :class:`weitsicht.utils.Issue` enum.
"""
from __future__ import annotations
from dataclasses import dataclass
from enum import Enum
from typing import Literal
import numpy as np
from pyproj import CRS
from pyproj.crs.crs import CompoundCRS
from weitsicht.camera.base_perspective import CameraBasePerspective
from weitsicht.image.perspective import ImagePerspective
from weitsicht.transform.rotation import Rotation
from weitsicht.utils import ResultFailure
__all__ = [
"MetadataIssue",
"IORFromMetaResultSuccess",
"IORFromMetaResult",
"EORFromMetaResultSuccess",
"EORFromMetaResult",
"ImageFromMetaResultSuccess",
"ImageFromMetaResult",
]
IORFromMetaResult = IORFromMetaResultSuccess | ResultFailure[MetadataIssue]
EORFromMetaResult = EORFromMetaResultSuccess | ResultFailure[MetadataIssue]
ImageFromMetaResult = ImageFromMetaResultSuccess | ResultFailure[MetadataIssue]