Add vector change detection foundation
This commit is contained in:
@@ -283,6 +283,27 @@ export interface GeojsonEnvelopeResponse {
|
||||
data: object
|
||||
}
|
||||
|
||||
export interface ChangeDetectionRequest {
|
||||
source_dataset_id: string
|
||||
target_dataset_id: string
|
||||
iou_threshold: number
|
||||
include_unchanged: boolean
|
||||
}
|
||||
|
||||
export interface ChangeDetectionSummary {
|
||||
source_dataset_id: string
|
||||
target_dataset_id: string
|
||||
source_feature_count: number
|
||||
target_feature_count: number
|
||||
added_count: number
|
||||
removed_count: number
|
||||
unchanged_count: number
|
||||
iou_threshold: number
|
||||
warnings: string[]
|
||||
generated_at: string
|
||||
geojson: GeoJSON.FeatureCollection
|
||||
}
|
||||
|
||||
export interface ProviderCapability {
|
||||
provider_name: string
|
||||
display_name: string
|
||||
|
||||
Reference in New Issue
Block a user