| 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]; |
|
|