File size: 3,076 Bytes
ea270a7 | 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | export const DISRUPTION_ZONES = [
{
id: 'DZ-001',
name: 'Strait of Hormuz',
region: 'Persian Gulf',
lat: 26.6,
lon: 56.2,
probability72h: 84,
type: 'Geopolitical',
severity: 'Critical',
eta: '18h',
affectedVessels: 147,
cargoValue: '$2.4B',
drivers: [
'Iranian naval exercise scheduled',
'US carrier group repositioned',
'Crude tanker queuing +31%',
],
recommendation:
'Reroute via Cape of Good Hope for charters departing in next 36h. Insurance riders recommended.',
},
{
id: 'DZ-002',
name: 'Suez Canal Approaches',
region: 'Red Sea / Bab el-Mandeb',
lat: 12.6,
lon: 43.4,
probability72h: 71,
type: 'Security',
severity: 'High',
eta: '6h',
affectedVessels: 89,
cargoValue: '$1.1B',
drivers: [
'Houthi threat level elevated',
'Commercial vessel targeted 48h ago',
'Naval escort capacity limited',
],
recommendation: 'Convoy formation recommended. Coordinate with UKMTO. War risk premiums apply.',
},
{
id: 'DZ-003',
name: 'Singapore Strait',
region: 'Southeast Asia',
lat: 1.25,
lon: 104.0,
probability72h: 62,
type: 'Congestion',
severity: 'High',
eta: '12h',
affectedVessels: 203,
cargoValue: '$780M',
drivers: ['Port capacity at 96%', 'Anchorage areas saturated', 'NE monsoon weather delays'],
recommendation:
'Schedule port calls 48h later. Slow-steam approach to reduce anchorage wait cost.',
},
{
id: 'DZ-004',
name: 'Black Sea Exits',
region: 'Turkish Straits',
lat: 41.1,
lon: 29.0,
probability72h: 55,
type: 'Regulatory',
severity: 'Medium',
eta: '36h',
affectedVessels: 34,
cargoValue: '$420M',
drivers: [
'Turkey reviewing transit rules',
'Russian grain vessel backlog',
'Insurance restrictions expanding',
],
recommendation:
'Verify certificates and flag compliance before transit. Allow +24h scheduling buffer.',
},
{
id: 'DZ-005',
name: 'West Africa Corridor',
region: 'Gulf of Guinea',
lat: 3.5,
lon: 2.5,
probability72h: 48,
type: 'Security',
severity: 'Medium',
eta: '24h',
affectedVessels: 27,
cargoValue: '$290M',
drivers: [
'Piracy incident 72h prior',
'BMP West Africa advisory updated',
'Armed escort availability limited',
],
recommendation:
'Mandatory armed guards for vessels transiting. Deviation from standard routing corridors inadvisable.',
},
{
id: 'DZ-006',
name: 'Malacca Strait North',
region: 'Andaman Sea',
lat: 6.5,
lon: 99.1,
probability72h: 31,
type: 'Weather',
severity: 'Low',
eta: '60h',
affectedVessels: 58,
cargoValue: '$195M',
drivers: ['Tropical depression forming', 'Beaufort 7–8 forecast', 'Visibility degrading'],
recommendation: 'Monitor WMO bulletin. Anchor options at Port Klang if conditions deteriorate.',
},
];
export type DisruptionZone = (typeof DISRUPTION_ZONES)[0];
|