237 lines
6.6 KiB
Python
237 lines
6.6 KiB
Python
from __future__ import annotations
|
|
|
|
from .common import ApiErrorEnvelope, ApiErrorItem, Envelope, PaginationEnvelope
|
|
from .project import ProjectCreate, ProjectList, ProjectRead, ProjectUpdate
|
|
from .area import AreaCreate, AreaList, AreaRead, AreaUpdate
|
|
from .analysis import ChangeDetectionRequest, ChangeDetectionSummary
|
|
from .dataset import DatasetCreateResponse, DatasetList
|
|
from .detection import (
|
|
DetectionListResponse,
|
|
DetectionModelCapability,
|
|
DetectionModelsResponse,
|
|
DetectionQaRequest,
|
|
DetectionRead,
|
|
DetectionRunListResponse,
|
|
DetectionRunRead,
|
|
DetectionRunRequest,
|
|
DetectionRunResponse,
|
|
ModelAssetListResponse,
|
|
ModelAssetRead,
|
|
)
|
|
from .detection_review import DetectionReviewList, DetectionReviewRead, DetectionReviewSummary, DetectionReviewUpsert
|
|
from .segmentation import (
|
|
SegmentationListResponse,
|
|
SegmentationModelCapability,
|
|
SegmentationModelsResponse,
|
|
SegmentationQaRequest,
|
|
SegmentationRead,
|
|
SegmentationRunListResponse,
|
|
SegmentationRunRead,
|
|
SegmentationRunRequest,
|
|
SegmentationRunResponse,
|
|
)
|
|
from .health import HealthResponse, SystemCapabilities
|
|
from .job import JobCreate, JobList, JobRead, JobStatus
|
|
from .orthophoto import OrthophotoAcquireRequest, OrthophotoAcquisitionResult, OrthophotoProductRead
|
|
from .dhmv import (
|
|
DhmvAcquireRequest,
|
|
DhmvAcquisitionResult,
|
|
DhmvProductRead,
|
|
TerrainMetric,
|
|
TerrainPartitionSelectionRequest,
|
|
TerrainSelectionRequest,
|
|
TerrainSelectionResponse,
|
|
TerrainSelectionSummary,
|
|
)
|
|
from .flood_hazard import (
|
|
FloodHazardAcquireRequest,
|
|
FloodHazardAcquisitionResult,
|
|
FloodHazardMetric,
|
|
FloodHazardPartitionSelectionRequest,
|
|
FloodHazardProductRead,
|
|
FloodHazardSelectionRequest,
|
|
FloodHazardSelectionResponse,
|
|
FloodHazardSelectionSummary,
|
|
)
|
|
from .thematic_raster import (
|
|
ThematicRasterAcquireRequest,
|
|
ThematicRasterAcquisitionResult,
|
|
ThematicRasterMetric,
|
|
ThematicRasterProductRead,
|
|
ThematicRasterSelectionRequest,
|
|
ThematicRasterSelectionResponse,
|
|
ThematicRasterSelectionSummary,
|
|
)
|
|
from .external import (
|
|
ExternalFetchRequest,
|
|
ExternalFetchResponse,
|
|
ProviderCapabilitiesResponse,
|
|
ProviderCapabilityResponse,
|
|
ProviderImportRequest,
|
|
ProviderImportResponse,
|
|
ProviderLayersResponse,
|
|
ProviderStatusResponse,
|
|
)
|
|
from .export import (
|
|
ExportContentResponse,
|
|
ExportCreateResponse,
|
|
ExportListResponse,
|
|
ExportRead,
|
|
GeoJsonExportRequest,
|
|
MetadataExportRequest,
|
|
ReportExportRequest,
|
|
)
|
|
from .qa import QaProviderComparisonRequest, QaProviderComparisonResult
|
|
from .operations import (
|
|
RasterClipRequest,
|
|
RasterIndexBaseRequest,
|
|
RasterMetadataResponse,
|
|
RasterNdviRequest,
|
|
RasterNdwiRequest,
|
|
RasterNdbiRequest,
|
|
RasterOperationResult,
|
|
RasterPreviewResponse,
|
|
RasterReprojectRequest,
|
|
RasterReprojectResponse,
|
|
RasterStatsResponse,
|
|
RasterTileManifest,
|
|
RasterTileManifestTile,
|
|
RasterTileRequest,
|
|
RasterTileResponse,
|
|
VectorBBoxResponse,
|
|
VectorBufferRequest,
|
|
VectorClipRequest,
|
|
VectorIntersectRequest,
|
|
VectorOperationRequest,
|
|
VectorOperationResult,
|
|
VectorSelectionBBox,
|
|
VectorSelectionDeriveRequest,
|
|
VectorSelectionRequest,
|
|
VectorSelectionResponse,
|
|
VectorSelectionMetric,
|
|
VectorSelectionSummary,
|
|
VectorStatsRequest,
|
|
VectorStatsResponse,
|
|
)
|
|
|
|
__all__ = [
|
|
"Envelope",
|
|
"ApiErrorEnvelope",
|
|
"ApiErrorItem",
|
|
"PaginationEnvelope",
|
|
"ProjectCreate",
|
|
"ProjectRead",
|
|
"ProjectUpdate",
|
|
"ProjectList",
|
|
"AreaCreate",
|
|
"AreaRead",
|
|
"AreaUpdate",
|
|
"AreaList",
|
|
"ChangeDetectionRequest",
|
|
"ChangeDetectionSummary",
|
|
"DatasetCreateResponse",
|
|
"DatasetList",
|
|
"DetectionListResponse",
|
|
"DetectionModelCapability",
|
|
"DetectionModelsResponse",
|
|
"DetectionQaRequest",
|
|
"DetectionRead",
|
|
"DetectionRunListResponse",
|
|
"DetectionRunRead",
|
|
"DetectionRunRequest",
|
|
"DetectionRunResponse",
|
|
"ModelAssetListResponse",
|
|
"ModelAssetRead",
|
|
"DetectionReviewList",
|
|
"DetectionReviewRead",
|
|
"DetectionReviewSummary",
|
|
"DetectionReviewUpsert",
|
|
"SegmentationListResponse",
|
|
"SegmentationModelCapability",
|
|
"SegmentationModelsResponse",
|
|
"SegmentationQaRequest",
|
|
"SegmentationRead",
|
|
"SegmentationRunListResponse",
|
|
"SegmentationRunRead",
|
|
"SegmentationRunRequest",
|
|
"SegmentationRunResponse",
|
|
"HealthResponse",
|
|
"SystemCapabilities",
|
|
"JobCreate",
|
|
"JobList",
|
|
"JobRead",
|
|
"JobStatus",
|
|
"OrthophotoAcquireRequest",
|
|
"OrthophotoAcquisitionResult",
|
|
"OrthophotoProductRead",
|
|
"DhmvAcquireRequest",
|
|
"DhmvAcquisitionResult",
|
|
"DhmvProductRead",
|
|
"TerrainMetric",
|
|
"TerrainPartitionSelectionRequest",
|
|
"TerrainSelectionRequest",
|
|
"TerrainSelectionResponse",
|
|
"TerrainSelectionSummary",
|
|
"FloodHazardAcquireRequest",
|
|
"FloodHazardAcquisitionResult",
|
|
"FloodHazardMetric",
|
|
"FloodHazardPartitionSelectionRequest",
|
|
"FloodHazardProductRead",
|
|
"FloodHazardSelectionRequest",
|
|
"FloodHazardSelectionResponse",
|
|
"FloodHazardSelectionSummary",
|
|
"ThematicRasterAcquireRequest",
|
|
"ThematicRasterAcquisitionResult",
|
|
"ThematicRasterMetric",
|
|
"ThematicRasterProductRead",
|
|
"ThematicRasterSelectionRequest",
|
|
"ThematicRasterSelectionResponse",
|
|
"ThematicRasterSelectionSummary",
|
|
"VectorBBoxResponse",
|
|
"VectorClipRequest",
|
|
"VectorBufferRequest",
|
|
"VectorIntersectRequest",
|
|
"VectorOperationRequest",
|
|
"VectorOperationResult",
|
|
"VectorSelectionBBox",
|
|
"VectorSelectionDeriveRequest",
|
|
"VectorSelectionRequest",
|
|
"VectorSelectionResponse",
|
|
"VectorSelectionMetric",
|
|
"VectorSelectionSummary",
|
|
"RasterClipRequest",
|
|
"RasterStatsResponse",
|
|
"RasterReprojectRequest",
|
|
"RasterReprojectResponse",
|
|
"RasterTileRequest",
|
|
"RasterMetadataResponse",
|
|
"RasterOperationResult",
|
|
"RasterPreviewResponse",
|
|
"RasterTileManifestTile",
|
|
"RasterTileManifest",
|
|
"RasterTileResponse",
|
|
"RasterIndexBaseRequest",
|
|
"RasterNdviRequest",
|
|
"RasterNdwiRequest",
|
|
"RasterNdbiRequest",
|
|
"VectorStatsRequest",
|
|
"VectorStatsResponse",
|
|
"ExternalFetchRequest",
|
|
"ExternalFetchResponse",
|
|
"ProviderCapabilitiesResponse",
|
|
"ProviderCapabilityResponse",
|
|
"ProviderImportRequest",
|
|
"ProviderImportResponse",
|
|
"ProviderLayersResponse",
|
|
"ProviderStatusResponse",
|
|
"GeoJsonExportRequest",
|
|
"MetadataExportRequest",
|
|
"ReportExportRequest",
|
|
"ExportRead",
|
|
"ExportCreateResponse",
|
|
"ExportListResponse",
|
|
"ExportContentResponse",
|
|
"QaProviderComparisonRequest",
|
|
"QaProviderComparisonResult",
|
|
]
|