해난 사고 데이터는 각국의 해양사고 조사기관, 정부대행기관 및 국제 기구에서 Casualty Investigation Code(Res.MSC.255(84))에 따라 조사된 해양 사고 데이터베이스입니다. 해당 정보는 IMO(International Maritime Organization) GISIS(Global Integrated Shipping Information System)의 데이터 중 검토가 완료된 해난 사고 데이터를 기반으로 제공됩니다.
1. Spatial Search
1.1 Request Parameter
curl --request GET \
--url 'https://api.vessellink.com/v1/marineCasualties?lat=35.43&long=134.23&radius=123.1' \
--header 'Accept: application/json'
Parameter | Description | Type |
---|---|---|
| Latitude requested for marine casualty data | (float) ISO 6709, decimal point |
| Longitude requested for marine casualty data | (float) ISO 6709, decimal point |
| a straight distance from the request position to the circumference of a circle | (float) Nautical Mils |
1.2 API Response
{
"meta": {
"code": 200,
"lat": 32.1,
"long": 123.45,
"radius": 100,
"casualtiesCount": 2
},
"casualties": [
{
"casualtyType": "Collision",
"casualtySubType": "with other Ship",
"localTime": "2020-01-10T06:15:00Z",
"location": "Black Sea 5 Miles NE of Kilyos",
"latitude": "41.1900",
"longitude": "29.03",
"severity": "Very serious",
"vesselName": "DURSUN ALI COSKUN",
"vesselType": "Fishing Vessel",
"imoNo": "8687294",
"numberOfShipInvolved": 2,
"eventDetails": "The ship colided with MT 'Glard-2' and subsequently sank in the Black Sea 5 miles NE of Kilyos in dense fog. 3 crew rescued by nearby FVS and taken ashore for medical attention. Remaining 3 crew missing. Turkish coastal safety boats 'KEGM-5' and 'KEGM-8' and Turkish coast guard ships 'KB-7427','KB-4318', 'TCSG-71' and 'TCSG-906' and a Bell 412EP helicopter effected SAR operation. The bodies of the 3 missing crew were subsequently found by divers in the sunken wreck.",
"remarks": ""
},
{
"casualtyType": "Occupational Accident",
"casualtySubType": "body movement under or with physical stress",
"localTime": "2020-02-29T22:10:00Z",
"location": "Puerto Bolivar, Ecuador",
"latitude": "3.1590",
"longitude": "138.2600",
"severity": "Serious",
"vesselName": "ACCOLADE II",
"vesselType": "Limestone Carrier",
"imoNo": "8012425",
"numberOfShipInvolved": 2,
"eventDetails": "COLLISION BETWEEN FV SAND GROPER AND ACCOLADE. NO INJURIES OR POLLUTION AND ONLY MINOR DAMAGE REPORTED.",
"remarks": ""
}
]
}
Field | Description | Unit |
---|---|---|
| Response code | integer |
| Latitude requested for marine casualty data | (float) ISO 6709, decimal point |
| Longitude requested for marine casualty data | (float) ISO 6709, decimal point |
| a straight distance from the request position to the circumference of a circle | (float) Nautical Mils |
| Number of marine casualties requested | integer |
| Main category of marine Casualties | (string) Note 1.3 Casualty Type |
| Sub category of marine Casualties | (string) Note 1.3 Casualty Type |
| Local date time of marine casualty | string |
| place or area that marine casualty occurs | string |
| Latitude that marine casualty occurs | (float) ISO 6709 (decimal point) |
| Longitude that marine casualty occurs | (float) ISO 6709 (decimal point) |
| Casualty severity level | (string) "Very Serious Casualties" |
| Name of vessel involved | string |
| Type of vessel involved | string |
| IMO number of vessel involved | string |
| Number of ship involved | string |
| How the casualty happened in details | string |
| Remark of marine casualty | string |
1.3 Casualty Type
Casualty Type | Casualty Sub Type |
---|---|
Collision | own ship not underway |
Collision | with multiple ships |
Collision | with other ship |
Stranding/Grounding | out of power(drifting) |
Stranding/Grounding | under power |
Contact | with fixed object / onshore object |
Contact | with floating object |
Contact | with flying object |
Fire/Explosion | fire |
Fire/Explosion | explosion |
Damage to Ship/Equipment | hull failure / failure of watertight door |
Damage to Ship/Equipment | loss of containment |
Damage to Ship/Equipment | loss of directional control |
Damage to Ship/Equipment | loss of electrical power |
Damage to Ship/Equipment | loss of propulsion power |
Capsize/listing | Capsizing/Listing |
Foundering/Flooding | Foundering/Flooding |
Ship missing | Ship missing |
Pollution | oil spillage |
Pollution | chemical spillage |
Pollution | other |
Occupational accident | body movement under or with physical stress |
Occupational accident | body movement without any physical stress |
Occupational accident | slipping, stumbling, falling of person overboard |
Occupational accident | slipping, stumbling, falling of person onboard |
Occupational accident | others |
Other | Cargo Damage |
Other | Cargo Loss |
Other | others |
Unknown | Unknown |
2. Annual Search
2.1 Request Parameter
curl --request GET \
--url 'https://api.vessellink.com/v1/marineCasualties/annul?year=2021' \
--header 'Accept: application/json'
Parameter | Description | Type |
---|---|---|
| year requested | integer |
2.2 API Response
{
"meta": {
"code": 200,
"year": 2021,
"casualtiesCount": 2
},
"casualties": [
{
"casualtyType": "Collision",
"casualtySubType": "with other Ship",
"localTime": "2020-01-10T06:15:00Z",
"location": "Black Sea 5 Miles NE of Kilyos",
"latitude": "41.1900",
"longitude": "29.03",
"severity": "Very serious",
"vesselName": "DURSUN ALI COSKUN",
"vesselType": "Fishing Vessel",
"imoNo": "8687294",
"numberOfShipInvolved": 2,
"eventDetails": "The ship colided with MT 'Glard-2' and subsequently sank in the Black Sea 5 miles NE of Kilyos in dense fog. 3 crew rescued by nearby FVS and taken ashore for medical attention. Remaining 3 crew missing. Turkish coastal safety boats 'KEGM-5' and 'KEGM-8' and Turkish coast guard ships 'KB-7427','KB-4318', 'TCSG-71' and 'TCSG-906' and a Bell 412EP helicopter effected SAR operation. The bodies of the 3 missing crew were subsequently found by divers in the sunken wreck.",
"remarks": ""
},
{
"casualtyType": "Occupational Accident",
"casualtySubType": "body movement under or with physical stress",
"localTime": "2020-02-29T22:10:00Z",
"location": "Puerto Bolivar, Ecuador",
"latitude": "3.1590",
"longitude": "138.2600",
"severity": "Serious",
"vesselName": "ACCOLADE II",
"vesselType": "Limestone Carrier",
"imoNo": "8012425",
"numberOfShipInvolved": 2,
"eventDetails": "COLLISION BETWEEN FV SAND GROPER AND ACCOLADE. NO INJURIES OR POLLUTION AND ONLY MINOR DAMAGE REPORTED.",
"remarks": ""
}
]
}
Field | Description | Unit |
---|---|---|
| Response code | integer |
| Number of marine casualties requested | integer |
| Main category of marine Casualties | (string) Note 1.3 Casualty Type |
| Sub category of marine Casualties | (string) Note 1.3 Casualty Type |
| Date of marine casualty | string |
| Local time of marine casualty | string |
| Place or area that marine casualty occurs | string |
| Latitude that marine casualty occurs | (float) ISO 6709 (decimal point) |
| Longitude that marine casualty occurs | (float) ISO 6709 (decimal point) |
| Casualty severity level | (string) "Very Serious Casualties" |
| Name of vessel involved | string |
| Type of vessel involved | string |
| IMO number of vessel involved | string |
| Number of ship involved | string |
| How the casualty happened in details | string |
| Remark of marine casualty | string |