Add Sentinel-2 road freight trends with Analyze Here UI.

Port DrishX truck-motion detection as an opt-in slow layer: on-demand map-center analysis, preset corridors, layer panel toggle, and Docker road-corridor extras.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
BigBodyCobain
2026-06-07 23:39:13 -06:00
co-authored by Cursor
parent 76f4deb3a7
commit b64b9e0962
33 changed files with 3127 additions and 21 deletions
+14
View File
@@ -921,6 +921,19 @@ export interface DashboardData {
sar_anomalies?: SarAnomaly[];
sar_aoi_coverage?: SarAoiCoverage[];
sar_aois?: SarAoi[];
road_corridor_trends?: {
updated_at?: string | null;
corridors?: Array<{
preset_id: string;
label: string;
status: string;
total_detections?: number;
daily_counts?: Array<{ date: string; count: number }>;
updated_at?: string;
error?: string | null;
}>;
};
}
// ─── SAR ─────────────────────────────────────────────────────────────────────
@@ -1030,6 +1043,7 @@ export interface ActiveLayers {
ai_intel: boolean;
crowdthreat: boolean;
sar: boolean;
road_corridor_trends: boolean;
}
export interface SelectedEntity {