-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdatapackage.json
53 lines (52 loc) · 1.91 KB
/
datapackage.json
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
{
"name": "imo-vessel-codes",
"title": "IMO Vessel Codes",
"license": "ODC-PDDL-1.0",
"description": "List of IMO coded vessels, vessel type, flag code and vessel names",
"version": "1.0.0",
"sources": [{
"name": "Marine Traffic",
"web": "http://www.marinetraffic.com/ais/index/ships/all/"
},{
"name": "Vessel Finder",
"web": "https://www.vesselfinder.com/vessels"
}],
"resources": [
{
"path": "data/imo-vessel-codes.csv",
"schema": {
"fields": [
{
"name": "IMO",
"type": "string",
"description": "A 7 digit unique number assigned to seagoing ships under the SOLAS regulation, stays with the hull regardless of name or flag changes",
"pattern": "[0-9]{7}"
},
{
"name": "MMSI",
"type": "integer",
"description":"A Maritime Mobile Service Identity (MMSI) is a series of nine digits which are sent in digital form over a radio frequency channel in order to uniquely identify ship stations, ship earth stations, coast stations, coast earth stations, and group calls.",
"pattern": "[0-9]{9}"
},
{
"name": "Name",
"type": "string",
"description": "Name of the vessel",
"pattern": "[A-Z]{35}"
},
{
"name": "Flag",
"type": "string",
"description": "2 Digit ISO 3166 Country Code of the vessel flag",
"pattern": "[A-Z]{2}"
},
{
"name": "Type",
"type": "string",
"description": "Vessel type ie: Reserved|Navigation Aid|Fishing|Motor Hopper|High Speed Craft|Unknown|Passenger|Cargo|Tanker|Pleasure Craft",
"pattern": "[A-Z]{35}"
}]
}
}
]
}