shuishen
yesterday d857b98578eb377da7cc36f653455fc5f916a9cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
export type CapabilityStatus = "verified" | "existing" | "planned";
 
export interface CapabilityRecord {
  id: string;
  title: string;
  level: "A" | "B" | "C";
  status: CapabilityStatus;
  note: string;
}
 
export const capabilities: CapabilityRecord[] = [
  { id: "00-change-detection", title: "变化检测", level: "A", status: "verified", note: "ChangeStar CPU Demo,展示双期影像、变化栅格和 GeoAI 像素坐标图斑。" },
  { id: "01-object-detection", title: "地物目标检测", level: "A", status: "verified", note: "人员与车辆实验可运行,含标注影像和结构化检测结果。" },
  { id: "02-semantic-mapping", title: "语义分割", level: "B", status: "verified", note: "CPU 颜色规则基线,展示栅格掩膜、叠加图和 GeoAI 矢量结果。" },
  { id: "03-attribute-classification", title: "属性分类", level: "A", status: "planned", note: "等待首个本地 Demo。" },
  { id: "04-spatial-measurement", title: "空间测量", level: "B", status: "verified", note: "CPU 栅格对象计数、面积与周长测量,展示栅格和 GeoAI 矢量结果。" },
  { id: "05-3d-pointcloud", title: "三维点云", level: "B", status: "planned", note: "等待首个本地 Demo。" },
  { id: "06-spatial-reasoning", title: "空间推理", level: "C", status: "planned", note: "等待首个本地 Demo。" },
  { id: "07-risk-rule-engine", title: "风险规则引擎", level: "C", status: "planned", note: "等待首个本地 Demo。" },
  { id: "08-spatiotemporal-forecasting", title: "时空预测", level: "B", status: "planned", note: "等待首个本地 Demo。" },
  { id: "09-anomaly-detection", title: "异常检测", level: "B", status: "planned", note: "等待首个本地 Demo。" },
  { id: "10-smart-route-planning", title: "智能航线规划", level: "C", status: "planned", note: "等待首个本地 Demo。" },
  { id: "11-fleet-scheduling", title: "集群调度", level: "C", status: "planned", note: "等待首个本地 Demo。" },
  { id: "12-quality-control-refly", title: "质量检查与补飞", level: "B", status: "planned", note: "等待首个本地 Demo。" },
  { id: "13-asset-health-diagnosis", title: "资产健康诊断", level: "C", status: "planned", note: "等待首个本地 Demo。" },
  { id: "14-disaster-response", title: "灾害响应", level: "B", status: "planned", note: "等待首个本地 Demo。" },
  { id: "15-trajectory-analysis", title: "轨迹分析与行为识别", level: "C", status: "verified", note: "规则事件与轨迹聚类 CPU Demo 已验证。" },
  { id: "16-geollm-assistant", title: "GeoLLM 助手", level: "C", status: "planned", note: "等待首个本地 Demo。" },
  { id: "17-spatiotemporal-knowledge-graph", title: "时空知识图谱", level: "C", status: "planned", note: "等待首个本地 Demo。" },
  { id: "18-reporting-model-governance", title: "报告与模型治理", level: "C", status: "planned", note: "等待首个本地 Demo。" }
];
 
export const verifiedCapabilities = capabilities.filter((item) => item.status === "verified");
export const capabilityById = (id: string) => capabilities.find((item) => item.id === id);