NAV Navigation
Shell

Public NavBox Interface v1

Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.

Transport description
Https is being used for the communication. Each NavBox uses its own security certificate signed by the NAVTOR root certificate. For better security NavBox certificate should be verified against the NAVTOR root certificate. It can be achieved either by installing the NAVTOR root certificate on the client machine or by manually checking it in the client application (please refer to the documentation for your framework). You can download the NAVTOR root certificate here.

Port: 8010. (Example: https://navbox123:8010/)

Authentication

Advisory Service

Returns array of AdvisoryRequests

Code samples

# You can also use wget
curl -X GET /api/public/v1/advisory-service/requests \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/advisory-service/requests

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
domain query string false none
topic query string false none
parentRequestId query string false none

Example responses

200 Response

{
  "Request": {
    "RequestId": "string",
    "ParentRequestId": "string",
    "Domain": "string",
    "Topic": "string",
    "Provider": "string",
    "CreationTime": "2019-08-24T14:15:22Z",
    "Data": {}
  },
  "Status": "string"
}

Responses

Status Meaning Description Schema
200 OK OK Inline
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found Object could not be found None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» Request object false none Advisory Service Request
»» RequestId string false none Request Id
»» ParentRequestId string false none Parent Request Id (Optional)
»» Domain string false none Request Domain. Possible values: Optimization, Auto-Routing, System
»» Topic string false none Request Topic. Possible values for Optimization: RouteOptimization, RequestCancellation; for Auto-Routing: ShortestRoute
»» Provider string false none Service Provider
»» CreationTime string(date-time) false none Request Creation Time
»» Data object false none Request Domain/Topic specific data. For Auto-Routing requests please see ShortestRouteRequest
» Status string false none none

Creates a new Advisory Service Request

Code samples

# You can also use wget
curl -X POST /api/public/v1/advisory-service/requests \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

POST /api/public/v1/advisory-service/requests

A session token is required to access this resource. It has to be used as a bearer token.

Body parameter

{
  "RequestId": "string",
  "ParentRequestId": "string",
  "Domain": "string",
  "Topic": "string",
  "Provider": "string",
  "CreationTime": "2019-08-24T14:15:22Z",
  "Data": {}
}

Parameters

Name In Type Required Description
body body object true none
» RequestId body string false Request Id
» ParentRequestId body string false Parent Request Id (Optional)
» Domain body string false Request Domain. Possible values: Optimization, Auto-Routing, System
» Topic body string false Request Topic. Possible values for Optimization: RouteOptimization, RequestCancellation; for Auto-Routing: ShortestRoute
» Provider body string false Service Provider
» CreationTime body string(date-time) false Request Creation Time
» Data body object false Request Domain/Topic specific data. For Auto-Routing requests please see ShortestRouteRequest

Example responses

200 Response

{
  "Request": {
    "RequestId": "string",
    "ParentRequestId": "string",
    "Domain": "string",
    "Topic": "string",
    "Provider": "string",
    "CreationTime": "2019-08-24T14:15:22Z",
    "Data": {}
  },
  "Status": "string"
}

Responses

Status Meaning Description Schema
200 OK OK Inline
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found Object could not be found None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» Request object false none Advisory Service Request
»» RequestId string false none Request Id
»» ParentRequestId string false none Parent Request Id (Optional)
»» Domain string false none Request Domain. Possible values: Optimization, Auto-Routing, System
»» Topic string false none Request Topic. Possible values for Optimization: RouteOptimization, RequestCancellation; for Auto-Routing: ShortestRoute
»» Provider string false none Service Provider
»» CreationTime string(date-time) false none Request Creation Time
»» Data object false none Request Domain/Topic specific data. For Auto-Routing requests please see ShortestRouteRequest
» Status string false none none

Returns the AdvisoryRequest by RequestId

Code samples

# You can also use wget
curl -X GET /api/public/v1/advisory-service/requests/{request_id} \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/advisory-service/requests/{request_id}

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
request_id path string true none

Example responses

200 Response

{
  "Request": {
    "RequestId": "string",
    "ParentRequestId": "string",
    "Domain": "string",
    "Topic": "string",
    "Provider": "string",
    "CreationTime": "2019-08-24T14:15:22Z",
    "Data": {}
  },
  "Status": "string"
}

Responses

Status Meaning Description Schema
200 OK OK Inline
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found Object could not be found None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» Request object false none Advisory Service Request
»» RequestId string false none Request Id
»» ParentRequestId string false none Parent Request Id (Optional)
»» Domain string false none Request Domain. Possible values: Optimization, Auto-Routing, System
»» Topic string false none Request Topic. Possible values for Optimization: RouteOptimization, RequestCancellation; for Auto-Routing: ShortestRoute
»» Provider string false none Service Provider
»» CreationTime string(date-time) false none Request Creation Time
»» Data object false none Request Domain/Topic specific data. For Auto-Routing requests please see ShortestRouteRequest
» Status string false none none

Deletes Advisory Service Request, all its children and corresponding responses

Code samples

# You can also use wget
curl -X DELETE /api/public/v1/advisory-service/requests/{request_id} \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

DELETE /api/public/v1/advisory-service/requests/{request_id}

Parameters

Name In Type Required Description
request_id path string true none

Example responses

Responses

Status Meaning Description Schema
200 OK OK None
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None

Response Schema

Returns collection of AdvisoryResponses with a possibility to filter them

Code samples

# You can also use wget
curl -X GET /api/public/v1/advisory-service/responses \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/advisory-service/responses

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
domain query string false none
topic query string false none
request_id query string false none

Example responses

200 Response

{
  "ResponseId": "string",
  "RequestId": "string",
  "Domain": "string",
  "Topic": "string",
  "CreationTime": "2019-08-24T14:15:22Z",
  "Data": {
    "Advices": [
      {}
    ]
  }
}

Responses

Status Meaning Description Schema
200 OK OK Inline
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found Object could not be found None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» ResponseId string false none Response Id. Is generated on the server. Can be ignored when posting data.
» RequestId string false none Request Id (if exists)
» Domain string false none Response Domain. Possible values: Optimization
» Topic string false none Response Topic. Possible values for Optimization: RouteOptimization
» CreationTime string(date-time) false none Response Creation Time
» Data object false none none
»» Advices [object] false none none

Returns the AdvisoryResponse by ResponseId

Code samples

# You can also use wget
curl -X GET /api/public/v1/advisory-service/responses/{response_id} \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/advisory-service/responses/{response_id}

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
response_id path string true none

Example responses

200 Response

{
  "ResponseId": "string",
  "RequestId": "string",
  "Domain": "string",
  "Topic": "string",
  "CreationTime": "2019-08-24T14:15:22Z",
  "Data": {
    "Advices": [
      {}
    ]
  }
}

Responses

Status Meaning Description Schema
200 OK OK Inline
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found Object could not be found None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» ResponseId string false none Response Id. Is generated on the server. Can be ignored when posting data.
» RequestId string false none Request Id (if exists)
» Domain string false none Response Domain. Possible values: Optimization
» Topic string false none Response Topic. Possible values for Optimization: RouteOptimization
» CreationTime string(date-time) false none Response Creation Time
» Data object false none none
»» Advices [object] false none none

Returns the status AdvisoryRequest by RequestId

Code samples

# You can also use wget
curl -X GET /api/public/v1/advisory-service/requests/{request_id}/status \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/advisory-service/requests/{request_id}/status

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
request_id path string true none

Example responses

200 Response

"string"

Responses

Status Meaning Description Schema
200 OK OK string
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found Object could not be found None

Response Schema

Auth

Creates a new session token

Code samples

# You can also use wget
curl -X POST /auth/token \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json'

POST /auth/token

OEM token is a token being issued per OEM. To get an OEM token please contact NAVTOR support
NavBox token is a token unique for each NavBox. It can be obtained from NavStick: NavBox produces a file

[NavStick]:\INFO\NAVTOR\Setup\NavBox\APICredentials which contains NavBox token.

POST /token
{
    "oem_token": "LCfIgIwegmnZK3yl5/bYqZDqW6k8Nhh354ztV7ArH1m/BbwzCJAF6JsoI1nlfHYsSuB/lGN",
    "navbox_token": "TsdffeoERg12345",
    "client_hostname": "Master1",
    "software_name": "GECDIS",
    "software_version": "1.234"
} 

The Response will look like:
{
    access_token: "RXKdVQJ2Sux3aCkj7M8VzjWKH9NSvGNakzU29MCcCnNuCsWeAMKKKMHhVH6XgagV7BN4mvCwDTuFTwfFgpCU2S46SGBv5pNNBDnZCgQT3SpTLgtwnwAaTNJtCr5X7U4t2qq66mgHRVuL9T98ws7Jj6wG8MrL26Nk7YuVe2M6uvaarr5BFHx78De7k9A7ffMkDQTEQeCSvXS"
    expires_in: 600
}

Body parameter

{
  "oem_token": "string",
  "navbox_token": "string",
  "client_hostname": "string",
  "software_name": "string",
  "software_version": "string"
}

Parameters

Name In Type Required Description
body body object true Token request parameters
» oem_token body string false none
» navbox_token body string false none
» client_hostname body string false none
» software_name body string false none
» software_version body string false none

Example responses

200 Response

{
  "access_token": "string",
  "expires_in": 0
}

Responses

Status Meaning Description Schema
200 OK OK Inline

Response Schema

Status Code 200

Name Type Required Restrictions Description
» access_token string false none none
» expires_in integer(int32) false none none

Data Layers

Returns meta-information for all data layers

Code samples

# You can also use wget
curl -X GET /api/public/v1/dataobjects/layers \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/dataobjects/layers

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
include_removed query boolean false none

Example responses

200 Response

[
  {
    "id": "string",
    "name": "string",
    "objects_last_update_time": "string",
    "is_readonly": true,
    "is_removed": true,
    "parent_layer_id": "string",
    "formats": [
      {
        "Name": "string"
      }
    ],
    "attributes": {}
  }
]

Responses

Status Meaning Description Schema
200 OK OK Inline
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» id string false none Layer id
» name string false none Layer name
» objects_last_update_time string false none Max timestamp for all objects in layer
» is_readonly boolean false none A flag, which indicates if the layer can be edited
» is_removed boolean false none A flag, indicated that the layer has been removed
» parent_layer_id string false none parentId of Layer
» formats [object] false none Array of layer format names
»» Name string false none none
» attributes object false none Dictionary of attributes

Creates a new data layer.

Code samples

# You can also use wget
curl -X POST /api/public/v1/dataobjects/layers \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

POST /api/public/v1/dataobjects/layers

A session token is required to access this resource. It has to be used as a bearer token.

Body parameter

{
  "id": "string",
  "name": "string",
  "objects_last_update_time": "string",
  "is_readonly": true,
  "is_removed": true,
  "parent_layer_id": "string",
  "formats": [
    {
      "Name": "string"
    }
  ],
  "attributes": {}
}

Parameters

Name In Type Required Description
body body object true none
» id body string false Layer id
» name body string false Layer name
» objects_last_update_time body string false Max timestamp for all objects in layer
» is_readonly body boolean false A flag, which indicates if the layer can be edited
» is_removed body boolean false A flag, indicated that the layer has been removed
» parent_layer_id body string false parentId of Layer
» formats body [object] false Array of layer format names
»» Name body string false none
» attributes body object false Dictionary of attributes

Example responses

Responses

Status Meaning Description Schema
200 OK OK None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None

Response Schema

Updates existing data layer. Currently only Layer Name can be updated. Set is_removed = false to restore removed layer

Code samples

# You can also use wget
curl -X PUT /api/public/v1/dataobjects/layers/{layer_id} \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

PUT /api/public/v1/dataobjects/layers/{layer_id}

A session token is required to access this resource. It has to be used as a bearer token.

Body parameter

{
  "id": "string",
  "name": "string",
  "objects_last_update_time": "string",
  "is_readonly": true,
  "is_removed": true,
  "parent_layer_id": "string",
  "formats": [
    {
      "Name": "string"
    }
  ],
  "attributes": {}
}

Parameters

Name In Type Required Description
layer_id path string true none
body body object true none
» id body string false Layer id
» name body string false Layer name
» objects_last_update_time body string false Max timestamp for all objects in layer
» is_readonly body boolean false A flag, which indicates if the layer can be edited
» is_removed body boolean false A flag, indicated that the layer has been removed
» parent_layer_id body string false parentId of Layer
» formats body [object] false Array of layer format names
»» Name body string false none
» attributes body object false Dictionary of attributes

Example responses

Responses

Status Meaning Description Schema
200 OK OK None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The original layer cannot be found None

Response Schema

Removes data layer with all underlying objects

Code samples

# You can also use wget
curl -X DELETE /api/public/v1/dataobjects/layers/{layer_id} \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

DELETE /api/public/v1/dataobjects/layers/{layer_id}

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
layer_id path string true none

Example responses

Responses

Status Meaning Description Schema
200 OK OK None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The original layer could not be found None

Response Schema

Returns all attachments meta information

Code samples

# You can also use wget
curl -X GET /api/public/v1/dataobjects/attachments \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/dataobjects/attachments

A session token is required to access this resource. It has to be used as a bearer token.

Example responses

200 Response

[
  {
    "id": "string",
    "file_name": "string",
    "type": "string",
    "last_update_timestamp": "string",
    "size": 0
  }
]

Responses

Status Meaning Description Schema
200 OK OK Inline
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» id string false none Attachment id
» file_name string false none Attachment file name
» type string false none Attachment type. Has to be one of known MIME types.
» last_update_timestamp string false none Last update timestamp, ISO8601
» size integer(int32) false none Attachment size

Creates new attachment

Code samples

# You can also use wget
curl -X POST /api/public/v1/dataobjects/attachments \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

POST /api/public/v1/dataobjects/attachments

A session token is required to access this resource. It has to be used as a bearer token.

Body parameter

{
  "Data": "string",
  "id": "string",
  "file_name": "string",
  "type": "string",
  "last_update_timestamp": "string",
  "size": 0
}

Parameters

Name In Type Required Description
body body object true none
» Data body string(byte) false Attachment content
» id body string false Attachment id
» file_name body string false Attachment file name
» type body string false Attachment type. Has to be one of known MIME types.
» last_update_timestamp body string false Last update timestamp, ISO8601
» size body integer(int32) false Attachment size

Example responses

200 Response

{
  "id": "string",
  "file_name": "string",
  "type": "string",
  "last_update_timestamp": "string",
  "size": 0
}

Responses

Status Meaning Description Schema
200 OK OK Inline
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
409 Conflict Conflict None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» id string false none Attachment id
» file_name string false none Attachment file name
» type string false none Attachment type. Has to be one of known MIME types.
» last_update_timestamp string false none Last update timestamp, ISO8601
» size integer(int32) false none Attachment size

Returns attachment by id

Code samples

# You can also use wget
curl -X GET /api/public/v1/dataobjects/attachments/{attachment_id} \
  -H 'Accept: application/octet-stream' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/dataobjects/attachments/{attachment_id}

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
attachment_id path string true none

Example responses

200 Response

Responses

Status Meaning Description Schema
200 OK OK file
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The attachment could not be found None

Response Schema

Updates existing attachment

Code samples

# You can also use wget
curl -X PUT /api/public/v1/dataobjects/attachments/{attachment_id} \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

PUT /api/public/v1/dataobjects/attachments/{attachment_id}

A session token is required to access this resource. It has to be used as a bearer token.

Body parameter

{
  "Data": "string",
  "id": "string",
  "file_name": "string",
  "type": "string",
  "last_update_timestamp": "string",
  "size": 0
}

Parameters

Name In Type Required Description
attachment_id path string true none
body body object true none
» Data body string(byte) false Attachment content
» id body string false Attachment id
» file_name body string false Attachment file name
» type body string false Attachment type. Has to be one of known MIME types.
» last_update_timestamp body string false Last update timestamp, ISO8601
» size body integer(int32) false Attachment size

Example responses

200 Response

{
  "id": "string",
  "file_name": "string",
  "type": "string",
  "last_update_timestamp": "string",
  "size": 0
}

Responses

Status Meaning Description Schema
200 OK OK Inline
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The attachment could not be found None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» id string false none Attachment id
» file_name string false none Attachment file name
» type string false none Attachment type. Has to be one of known MIME types.
» last_update_timestamp string false none Last update timestamp, ISO8601
» size integer(int32) false none Attachment size

Returns all Data Objects in the specified Data Layer using specified mode.

Code samples

# You can also use wget
curl -X GET /api/public/v1/dataobjects/layers/{layer_id}/objects/{mode} \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/dataobjects/layers/{layer_id}/objects/{mode}

A session token is required to access this resource. It has to be used as a bearer token.

Modes are:

Parameters

Name In Type Required Description
layer_id path string true none
mode path string true none

Example responses

200 Response

[
  {
    "class_name": "string",
    "id": "string",
    "source_id": "string",
    "layer_id": "string",
    "name": "string",
    "last_modified": "string",
    "geography": "string",
    "is_readonly": true,
    "attachment_ids": [
      "string"
    ],
    "attributes": {}
  }
]

Responses

Status Meaning Description Schema
200 OK OK Inline
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The layer could not be found None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» class_name string false none ClassName of object
» id string false none Id of the Object to be used by DB
» source_id string false none Source Id
» layer_id string false none Layer Id
» name string false none Name of the Object
» last_modified string false none Last modified timestamp
» geography string false none Geography of the Object
» is_readonly boolean false none Object's permission
» attachment_ids [string] false none string Array of attachments ids
» attributes object false none Dictionay with additional properties names and values

Returns data object by id

Code samples

# You can also use wget
curl -X GET /api/public/v1/dataobjects/objects/{object_id}/{mode} \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/dataobjects/objects/{object_id}/{mode}

A session token is required to access this resource. It has to be used as a bearer token.

Modes are:

Parameters

Name In Type Required Description
object_id path string true none
mode path string true none

Example responses

200 Response

{
  "class_name": "string",
  "id": "string",
  "source_id": "string",
  "layer_id": "string",
  "name": "string",
  "last_modified": "string",
  "geography": "string",
  "is_readonly": true,
  "attachment_ids": [
    "string"
  ],
  "attributes": {}
}

Responses

Status Meaning Description Schema
200 OK OK Inline
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found Object could not be found None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» class_name string false none ClassName of object
» id string false none Id of the Object to be used by DB
» source_id string false none Source Id
» layer_id string false none Layer Id
» name string false none Name of the Object
» last_modified string false none Last modified timestamp
» geography string false none Geography of the Object
» is_readonly boolean false none Object's permission
» attachment_ids [string] false none string Array of attachments ids
» attributes object false none Dictionay with additional properties names and values

Creates a new data object in the specified layer.

Code samples

# You can also use wget
curl -X POST /api/public/v1/dataobjects/objects \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

POST /api/public/v1/dataobjects/objects

A session token is required to access this resource. It has to be used as a bearer token.

Body parameter

{
  "class_name": "string",
  "id": "string",
  "source_id": "string",
  "layer_id": "string",
  "name": "string",
  "last_modified": "string",
  "geography": "string",
  "is_readonly": true,
  "attachment_ids": [
    "string"
  ],
  "attributes": {}
}

Parameters

Name In Type Required Description
body body object true none
» class_name body string false ClassName of object
» id body string false Id of the Object to be used by DB
» source_id body string false Source Id
» layer_id body string false Layer Id
» name body string false Name of the Object
» last_modified body string false Last modified timestamp
» geography body string false Geography of the Object
» is_readonly body boolean false Object's permission
» attachment_ids body [string] false string Array of attachments ids
» attributes body object false Dictionay with additional properties names and values

Example responses

200 Response

{
  "class_name": "string",
  "id": "string",
  "source_id": "string",
  "layer_id": "string",
  "name": "string",
  "last_modified": "string",
  "geography": "string",
  "is_readonly": true,
  "attachment_ids": [
    "string"
  ],
  "attributes": {}
}

Responses

Status Meaning Description Schema
200 OK OK Inline
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
409 Conflict Conflict None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» class_name string false none ClassName of object
» id string false none Id of the Object to be used by DB
» source_id string false none Source Id
» layer_id string false none Layer Id
» name string false none Name of the Object
» last_modified string false none Last modified timestamp
» geography string false none Geography of the Object
» is_readonly boolean false none Object's permission
» attachment_ids [string] false none string Array of attachments ids
» attributes object false none Dictionay with additional properties names and values

Updates existing data object

Code samples

# You can also use wget
curl -X PUT /api/public/v1/dataobjects/objects/{object_id} \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

PUT /api/public/v1/dataobjects/objects/{object_id}

A session token is required to access this resource. It has to be used as a bearer token.

Body parameter

{
  "class_name": "string",
  "id": "string",
  "source_id": "string",
  "layer_id": "string",
  "name": "string",
  "last_modified": "string",
  "geography": "string",
  "is_readonly": true,
  "attachment_ids": [
    "string"
  ],
  "attributes": {}
}

Parameters

Name In Type Required Description
object_id path string true none
body body object true none
» class_name body string false ClassName of object
» id body string false Id of the Object to be used by DB
» source_id body string false Source Id
» layer_id body string false Layer Id
» name body string false Name of the Object
» last_modified body string false Last modified timestamp
» geography body string false Geography of the Object
» is_readonly body boolean false Object's permission
» attachment_ids body [string] false string Array of attachments ids
» attributes body object false Dictionay with additional properties names and values

Example responses

200 Response

{
  "class_name": "string",
  "id": "string",
  "source_id": "string",
  "layer_id": "string",
  "name": "string",
  "last_modified": "string",
  "geography": "string",
  "is_readonly": true,
  "attachment_ids": [
    "string"
  ],
  "attributes": {}
}

Responses

Status Meaning Description Schema
200 OK OK Inline
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found Object could not be found None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» class_name string false none ClassName of object
» id string false none Id of the Object to be used by DB
» source_id string false none Source Id
» layer_id string false none Layer Id
» name string false none Name of the Object
» last_modified string false none Last modified timestamp
» geography string false none Geography of the Object
» is_readonly boolean false none Object's permission
» attachment_ids [string] false none string Array of attachments ids
» attributes object false none Dictionay with additional properties names and values

Removes data object by id

Code samples

# You can also use wget
curl -X DELETE /api/public/v1/dataobjects/objects/{object_id} \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

DELETE /api/public/v1/dataobjects/objects/{object_id}

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
object_id path string true none

Example responses

Responses

Status Meaning Description Schema
200 OK OK None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found Object could not be found None

Response Schema

ENC

Pipes the contents of CATALOG.031

Code samples

# You can also use wget
curl -X GET /api/public/v1/enc/catalog \
  -H 'Accept: application/octet-stream' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/enc/catalog

A session token is required to access this resource. It has to be used as a bearer token.

Example responses

200 Response

Responses

Status Meaning Description Schema
200 OK OK file
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The catalog file could not be found None

Response Schema

Pipes the contents of SERIAL.ENC

Code samples

# You can also use wget
curl -X GET /api/public/v1/enc/serial \
  -H 'Accept: application/octet-stream' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/enc/serial

A session token is required to access this resource. It has to be used as a bearer token.

Example responses

200 Response

Responses

Status Meaning Description Schema
200 OK OK file
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The serial file could not be found None

Response Schema

Pipes the contents of PRODUCTS.TXT

Code samples

# You can also use wget
curl -X GET /api/public/v1/enc/products \
  -H 'Accept: application/octet-stream' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/enc/products

A session token is required to access this resource. It has to be used as a bearer token.

Example responses

200 Response

Responses

Status Meaning Description Schema
200 OK OK file
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The products file could not be found None

Response Schema

Pipes ENC data files.

Code samples

# You can also use wget
curl -X GET /api/public/v1/enc/data?path=string \
  -H 'Accept: application/octet-stream' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/enc/data

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
path query string true The filepath to fetch, should be the path specified in the catalog file.

Example responses

200 Response

Responses

Status Meaning Description Schema
200 OK OK file
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The enc data in question was not found None

Response Schema

Lists permits directory

Code samples

# You can also use wget
curl -X GET /api/public/v1/enc/permits?path=string \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/enc/permits

A session token is required to access this resource. It has to be used as a bearer token.

The folder structure for this resource is as follows:

Parameters

Name In Type Required Description
path query string true The path to use when listing a directory.

Example responses

200 Response

[
  {
    "name": "string",
    "size": 0,
    "modification_time": "2019-08-24T14:15:22Z",
    "block_hashes": [
      "string"
    ],
    "block_size": 0
  }
]

Responses

Status Meaning Description Schema
200 OK OK Inline
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found Directory not found None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» name string false read-only none
» size integer(int64) false read-only none
» modification_time string(date-time) false read-only none
» block_hashes [string] false none none
» block_size integer(int32) false none none

Returns permit files.

Code samples

# You can also use wget
curl -X GET /api/public/v1/enc/permit?path=string \
  -H 'Accept: application/octet-stream' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/enc/permit

A session token is required to access this resource. It has to be used as a bearer token.

The folder structure for this resource is as follows:

Parameters

Name In Type Required Description
path query string true The filepath to use when fetching a file

Example responses

200 Response

Responses

Status Meaning Description Schema
200 OK OK file
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found File not found None

Response Schema

NavBox

Returns general NavBox information

Code samples

# You can also use wget
curl -X GET /api/public/v1/navbox/info \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/navbox/info

A session token is required to access this resource. It has to be used as a bearer token.

Example responses

200 Response

{
  "route_formats": [
    "string"
  ],
  "version": "string",
  "system_time": "2019-08-24T14:15:22Z"
}

Responses

Status Meaning Description Schema
200 OK OK Inline
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» route_formats [string] false none none
» version string false none none
» system_time string(date-time) false none none

Routes

Sends the route to other vessels

Code samples

# You can also use wget
curl -X PUT /api/public/v1/routes/routes/{route_id}/send-to-other-vessels \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

PUT /api/public/v1/routes/routes/{route_id}/send-to-other-vessels

A session token is required to access this resource. It has to be used as a bearer token.

Body parameter

{
  "vessel_ids": [
    "string"
  ]
}

Parameters

Name In Type Required Description
route_id path string true Id of the route to be sent (URLEncoded)
body body object true Info about route receivers
» vessel_ids body [string] false none

Example responses

Responses

Status Meaning Description Schema
200 OK Successfully sent to other vessels None
400 Bad Request Bad request, missing or invalid required parameters None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The existing route could not be found None

Response Schema

Sets status for the route from another vessel

Code samples

# You can also use wget
curl -X PUT /api/public/v1/routes/from-other-vessels/{route_id}/status \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

PUT /api/public/v1/routes/from-other-vessels/{route_id}/status

A session token is required to access this resource. It has to be used as a bearer token.

Valid statuses are: accepted, rejected

Body parameter

{
  "status": "string"
}

Parameters

Name In Type Required Description
route_id path string true Id of the route to be updated (URLEncoded)
body body object true Route status
» status body string false none

Example responses

Responses

Status Meaning Description Schema
200 OK Successfully updated None
400 Bad Request Bad request, missing or invalid required parameters None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The existing route could not be found None

Response Schema

Gets a list of routes

Code samples

# You can also use wget
curl -X GET /api/public/v1/routes/routes \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/routes/routes

A session token is required to access this resource. It has to be used as a bearer token.

Example responses

200 Response

[
  {
    "id": "string",
    "title": "string",
    "modification_time": "2019-08-24T14:15:22Z",
    "author": "string",
    "status": "string"
  }
]

Responses

Status Meaning Description Schema
200 OK OK Inline
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» id string false none none
» title string false none none
» modification_time string(date-time) false none none
» author string false none none
» status string false none none

Returns a route converting it to the requested format.

Code samples

# You can also use wget
curl -X GET /api/public/v1/routes/routes/{route_id}?routeFormat=string \
  -H 'Accept: application/octet-stream' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/routes/routes/{route_id}

A session token is required to access this resource. It has to be used as a bearer token.

Supported route formats are: Raytheon, CirmRtz, CirmRtzp, Furuno, Jrc, JrcCsv, JrcRtm, KelvinHughes1816, KelvinHughes2144, Kongsberg, KongsbergRut, KongsbergTxt, MarisRtu, MarisTxt, MarisTxtSimple, Navtor, Raytheon, SamDat, SamTxt, SamXml, SevenCsTxt, Sperry, Telko, Tokimec7X00, Tokimec8X00, Transas

Parameters

Name In Type Required Description
route_id path string true Id of the requested route (URLEncoded)
routeFormat query string true Route format to convert the route to

Example responses

200 Response

Responses

Status Meaning Description Schema
200 OK OK file
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The route was not found None

Response Schema

Replaces or updates a route

Code samples

# You can also use wget
curl -X PUT /api/public/v1/routes/routes/{route_id} \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/octet-stream' \
  -H 'Authorization: Bearer {access-token}'

PUT /api/public/v1/routes/routes/{route_id}

A session token is required to access this resource. It has to be used as a bearer token.

Body parameter

{
  "raw_data": "string",
  "format": "string"
}

Parameters

Name In Type Required Description
route_id path string true Id of the route to be updated (URLEncoded)
body body object true Route binary data and route format
» raw_data body string(byte) false Route data (Base64-encoded)
» format body string false Route Format

Example responses

Responses

Status Meaning Description Schema
204 No Content Successfully updated None
400 Bad Request Bad request, missing or invalid required parameters None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The existing route could not be found None

Response Schema

Creates a route

Code samples

# You can also use wget
curl -X POST /api/public/v1/routes/routes/{route_id} \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

POST /api/public/v1/routes/routes/{route_id}

A session token is required to access this resource. It has to be used as a bearer token.

Body parameter

{
  "raw_data": "string",
  "format": "string"
}

Parameters

Name In Type Required Description
route_id path string true Id of the route to be created (URLEncoded)
body body object true Route binary data and route format
» raw_data body string(byte) false Route data (Base64-encoded)
» format body string false Route Format

Example responses

200 Response

{}

Responses

Status Meaning Description Schema
200 OK OK Inline
201 Created Successfully created None
400 Bad Request Bad request, missing or invalid required parameters None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
409 Conflict Route already exists None

Response Schema

deletes a route

Code samples

# You can also use wget
curl -X DELETE /api/public/v1/routes/routes/{route_id} \
  -H 'Accept: application/octet-stream' \
  -H 'Authorization: Bearer {access-token}'

DELETE /api/public/v1/routes/routes/{route_id}

Parameters

Name In Type Required Description
route_id path string true Id of the route to be deleted (URLEncoded)

Example responses

Responses

Status Meaning Description Schema
204 No Content Successfully deleted None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The existing route could not be found None

Response Schema

Gets a list of routes meta-data from other vessels

Code samples

# You can also use wget
curl -X GET /api/public/v1/routes/from-other-vessels \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/routes/from-other-vessels

A session token is required to access this resource. It has to be used as a bearer token.

Example responses

200 Response

[
  {
    "id": "string",
    "file_name": "string",
    "description": "string",
    "modification_time": "2019-08-24T14:15:22Z",
    "received_time": "2019-08-24T14:15:22Z",
    "source": "string"
  }
]

Responses

Status Meaning Description Schema
200 OK OK Inline
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» id string false none none
» file_name string false none none
» description string false none none
» modification_time string(date-time) false none none
» received_time string(date-time) false none none
» source string false none none

Gets binary data of the route from another vessel

Code samples

# You can also use wget
curl -X GET /api/public/v1/routes/from-other-vessels/{route_id} \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/routes/from-other-vessels/{route_id}

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
route_id path string true none

Example responses

200 Response

null

Responses

Status Meaning Description Schema
200 OK OK file
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The route has not been found None

Response Schema

Senc Data Layers

Lists DataLayer SENC

Code samples

# You can also use wget
curl -X GET /api/public/v1/dataobjects/layers/{layer_id}/senc/items \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/dataobjects/layers/{layer_id}/senc/items

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
layer_id path string true Layer Id

Example responses

200 Response

[
  {
    "class_name": "string",
    "id": "string",
    "source_id": "string",
    "layer_id": "string",
    "name": "string",
    "last_modified": "string",
    "geography": "string",
    "is_readonly": true,
    "attachment_ids": [
      "string"
    ],
    "attributes": {}
  }
]

Responses

Status Meaning Description Schema
200 OK OK Inline
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The layer could not be found None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» class_name string false none ClassName of object
» id string false none Id of the Object to be used by DB
» source_id string false none Source Id
» layer_id string false none Layer Id
» name string false none Name of the Object
» last_modified string false none Last modified timestamp
» geography string false none Geography of the Object
» is_readonly boolean false none Object's permission
» attachment_ids [string] false none string Array of attachments ids
» attributes object false none Dictionay with additional properties names and values

Fetches DataLayer SENC

Code samples

# You can also use wget
curl -X GET /api/public/v1/dataobjects/layers/{layer_id}/senc/file?path=string \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/dataobjects/layers/{layer_id}/senc/file

A session token is required to access this resource. It has to be used as a bearer token.

The Path may contain layers hierarchy

Parameters

Name In Type Required Description
layer_id path string true none
path query string true Path to the file (URLEncoded)

Example responses

200 Response

[
  {
    "class_name": "string",
    "id": "string",
    "source_id": "string",
    "layer_id": "string",
    "name": "string",
    "last_modified": "string",
    "geography": "string",
    "is_readonly": true,
    "attachment_ids": [
      "string"
    ],
    "attributes": {}
  }
]

Responses

Status Meaning Description Schema
200 OK OK Inline
400 Bad Request Bad request None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The layer could not be found None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» class_name string false none ClassName of object
» id string false none Id of the Object to be used by DB
» source_id string false none Source Id
» layer_id string false none Layer Id
» name string false none Name of the Object
» last_modified string false none Last modified timestamp
» geography string false none Geography of the Object
» is_readonly boolean false none Object's permission
» attachment_ids [string] false none string Array of attachments ids
» attributes object false none Dictionay with additional properties names and values

SENC

Lists SENC Directory

Code samples

# You can also use wget
curl -X GET /api/public/v1/senc/items?path=string \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/senc/items

A session token is required to access this resource. It has to be used as a bearer token.

The folder structure for this resource is as follows:

Parameters

Name In Type Required Description
path query string true The filepath to use when listing a directory

Example responses

200 Response

[
  {
    "name": "string",
    "size": 0,
    "modification_time": "2019-08-24T14:15:22Z",
    "block_hashes": [
      "string"
    ],
    "block_size": 0
  }
]

Responses

Status Meaning Description Schema
200 OK OK Inline
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found Directory not found None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» name string false read-only none
» size integer(int64) false read-only none
» modification_time string(date-time) false read-only none
» block_hashes [string] false none none
» block_size integer(int32) false none none

Fetches SENC File

Code samples

# You can also use wget
curl -X GET /api/public/v1/senc/file?path=string \
  -H 'Accept: application/octet-stream' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/senc/file

A session token is required to access this resource. It has to be used as a bearer token.

The folder structure for this resource is as follows:


For partially fetching, use Range header (right border is not included) single-range: bytes=0-1024 multiple-ranges: bytes=0-1024, 2048-4096

Parameters

Name In Type Required Description
path query string true The filepath to use when fetching a file

Example responses

200 Response

Responses

Status Meaning Description Schema
200 OK OK file
206 Partial Content Partially get a file based on supplied byte range. If several ranges are provided, then the server will return a multipart response. file
400 Bad Request Invalid parameters None
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found Directory not found None

Response Schema

Vessels

Gets a list of connected vessels

Code samples

# You can also use wget
curl -X GET /api/public/v1/connected-vessels \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/connected-vessels

A session token is required to access this resource. It has to be used as a bearer token.

Example responses

200 Response

[
  {
    "vessel_id": "string",
    "vessel_name": "string"
  }
]

Responses

Status Meaning Description Schema
200 OK OK Inline
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» vessel_id string false none none
» vessel_name string false none none

Gets connected vessel info

Code samples

# You can also use wget
curl -X GET /api/public/v1/connected-vessels/{vessel_id} \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/connected-vessels/{vessel_id}

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
vessel_id path string true Vessel Id

Example responses

200 Response

{
  "vessel_id": "string",
  "vessel_name": "string"
}

Responses

Status Meaning Description Schema
200 OK OK Inline
401 Unauthorized The client token is either missing, invalid or expired. None
403 Forbidden The client token does not have the correct privileges to access this resource None
404 Not Found The vessel has not been found. None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» vessel_id string false none none
» vessel_name string false none none

Vessel Data

Returns own vessel's position at a given time/date

Code samples

# You can also use wget
curl -X GET /api/public/v1/vessel-data/position \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/vessel-data/position

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
timestamp query string(date-time) false Position timestamp

Example responses

200 Response

{
  "Latitude": 0.1,
  "Longitude": 0.1,
  "TimeStamp": "2019-08-24T14:15:22Z",
  "Speed": 0.1,
  "Heading": 0.1,
  "Course": 0.1
}

Responses

Status Meaning Description Schema
200 OK Success Inline
204 No Content No Content None
401 Unauthorized Unauthorized None
403 Forbidden Forbidden None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» Latitude number(double) false none Latitude in Rad
» Longitude number(double) false none Longitude in Rad
» TimeStamp string(date-time) false none Timestamp, UTC
» Speed number(double)¦null false none Speed in m/s
» Heading number(double)¦null false none True Heading in Rad
» Course number(double)¦null false none Course in Rad

Returns own vessel's track

Code samples

# You can also use wget
curl -X GET /api/public/v1/vessel-data/track \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/vessel-data/track

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
from query string(date-time) false Time range start
to query string(date-time) false Time range end

Example responses

200 Response

[
  {
    "Latitude": 0.1,
    "Longitude": 0.1,
    "TimeStamp": "2019-08-24T14:15:22Z",
    "Speed": 0.1,
    "Heading": 0.1,
    "Course": 0.1
  }
]

Responses

Status Meaning Description Schema
200 OK Success Inline
400 Bad Request Bad Request None
401 Unauthorized Unauthorized None
403 Forbidden Forbidden None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» Latitude number(double) false none Latitude in Rad
» Longitude number(double) false none Longitude in Rad
» TimeStamp string(date-time) false none Timestamp, UTC
» Speed number(double)¦null false none Speed in m/s
» Heading number(double)¦null false none True Heading in Rad
» Course number(double)¦null false none Course in Rad

Automation

Gets list of available tags with description

Code samples

# You can also use wget
curl -X GET /api/public/v1/vessel-data/automation-data-tags \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/vessel-data/automation-data-tags

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
mode query string false none

Example responses

200 Response

[
  {
    "Name": "string",
    "Description": "string",
    "Type": "string",
    "Unit": "string"
  }
]

Responses

Status Meaning Description Schema
200 OK Success Inline
204 No Content No Content None
401 Unauthorized Unauthorized None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» Name string¦null false none Tag name
» Description string¦null false none Human-friendly tag description
» Type string¦null false none Data type of the value.
Note: currently only "string" and "number" are supported.
» Unit string¦null false none Unit of the value.

Gets Automation Report Data in a given timestamp (± 15 minutes)

Code samples

# You can also use wget
curl -X GET /api/public/v1/vessel-data/automation-data-report \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/vessel-data/automation-data-report

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
time query string(date-time) false Requested time
tagList query array[string] false List of tags: array of strings (optional)

Example responses

200 Response

{
  "id": 0,
  "date_utc": "2019-08-24T14:15:22Z",
  "draft_fwd": 0.1,
  "draft_mid": 0.1,
  "draft_aft": 0.1,
  "trim": 0.1,
  "heel": 0.1,
  "lat_nmea": 0.1,
  "long_nmea": 0.1,
  "cog": 0.1,
  "sog": 0.1,
  "hdt": 0.1,
  "stw": 0.1,
  "trv_stw": 0.1,
  "cum_dst": 0.1,
  "relativewind_spd": 0.1,
  "relativewind_dir": 0.1,
  "air_temp": 0.1,
  "air_humd": 0.1,
  "sea_tmp": 0.1,
  "echo_depth": 0.1,
  "autoplt_rot": 0.1,
  "autoplt_com_course": 0.1,
  "rsa_c": 0.1,
  "rsa": 0.1,
  "me1_rpm_c": 0.1,
  "me1_rpm": 0.1,
  "me2_rpm_c": 0.1,
  "me2_rpm": 0.1,
  "me3_rpm_c": 0.1,
  "me3_rpm": 0.1,
  "me4_rpm_c": 0.1,
  "me4_rpm": 0.1,
  "sht1_pitch": 0.1,
  "sht2_pitch": 0.1,
  "sht3_pitch": 0.1,
  "sht4_pitch": 0.1,
  "prop_shft_1_rpm": 0.1,
  "prop_acc_shft_1_rpm": 0.1,
  "prop_tq_shft_1": 0.1,
  "prop_pwr_shft_1": 0.1,
  "prop_acc_shft_1_eng": 0.1,
  "prop_tot_shft_1_eng": 0.1,
  "prop_thrt_shft_1": 0.1,
  "prop_shft_2_rpm": 0.1,
  "prop_acc_shft_2_rpm": 0.1,
  "prop_tq_shft_2": 0.1,
  "prop_pwr_shft_2": 0.1,
  "prop_acc_shft_2_eng": 0.1,
  "prop_tot_shft_2_eng": 0.1,
  "prop_thrt_shft_2": 0.1,
  "prop_shft_3_rpm": 0.1,
  "prop_acc_shft_3_rpm": 0.1,
  "prop_tq_shft_3": 0.1,
  "prop_pwr_shft_3": 0.1,
  "prop_acc_shft_3_eng": 0.1,
  "prop_tot_shft_3_eng": 0.1,
  "prop_thrt_shft_3": 0.1,
  "prop_shft_4_rpm": 0.1,
  "prop_acc_shft_4_rpm": 0.1,
  "prop_tq_shft_4": 0.1,
  "prop_pwr_shft_4": 0.1,
  "prop_acc_shft_4_eng": 0.1,
  "prop_tot_shft_4_eng": 0.1,
  "prop_thrt_shft_4": 0.1,
  "bow_thruster_1_pwr": 0.1,
  "bow_thruster_1_rpm": 0.1,
  "bow_thruster_1_ptch": 0.1,
  "bow_thruster_2_pwr": 0.1,
  "bow_thruster_2_rpm": 0.1,
  "bow_thruster_2_ptch": 0.1,
  "bow_thruster_3_pwr": 0.1,
  "bow_thruster_3_rpm": 0.1,
  "bow_thruster_3_ptch": 0.1,
  "stern_thruster_1_pwr": 0.1,
  "stern_thruster_1_rpm": 0.1,
  "stern_thruster_1_ptch": 0.1,
  "stern_thruster_2_pwr": 0.1,
  "stern_thruster_2_rpm": 0.1,
  "stern_thruster_2_ptch": 0.1,
  "stern_thruster_3_pwr": 0.1,
  "stern_thruster_3_rpm": 0.1,
  "stern_thruster_3_ptch": 0.1,
  "ft_me_comb": "string",
  "ft_ae_comb": "string",
  "ft_blr_tot": "string",
  "fm_me_tot_rate": 0.1,
  "fm_me_tot_cnt": 0.1,
  "fm_me1_rate": 0.1,
  "fm_me2_rate": 0.1,
  "fm_me3_rate": 0.1,
  "fm_me4_rate": 0.1,
  "fm_me1_cnt": 0.1,
  "fm_me2_cnt": 0.1,
  "fm_me3_cnt": 0.1,
  "fm_me4_cnt": 0.1,
  "fm_ae_tot_rate": 0.1,
  "fm_ae_tot_cnt": 0.1,
  "fm_ae_1_tot_rate": 0.1,
  "fm_ae_2_tot_rate": 0.1,
  "fm_ae_3_tot_rate": 0.1,
  "fm_ae_4_tot_rate": 0.1,
  "fm_ae_5_tot_rate": 0.1,
  "fm_ae_6_tot_rate": 0.1,
  "fm_ae_7_tot_rate": 0.1,
  "fm_ae_8_tot_rate": 0.1,
  "fm_ae_1_tot_cnt": 0.1,
  "fm_ae_2_tot_cnt": 0.1,
  "fm_ae_3_tot_cnt": 0.1,
  "fm_ae_4_tot_cnt": 0.1,
  "fm_ae_5_tot_cnt": 0.1,
  "fm_ae_6_tot_cnt": 0.1,
  "fm_ae_7_tot_cnt": 0.1,
  "fm_ae_8_tot_cnt": 0.1,
  "fm_blr_all_tot_rate": 0.1,
  "fm_blr_all_tot_cnt": 0.1,
  "fm_comp_blr_1_tot_rate": 0.1,
  "fm_aux_blr_1_tot_rate": 0.1,
  "fm_aux_blr_2_tot_rate": 0.1,
  "fm_aux_blr_3_tot_rate": 0.1,
  "fm_comp_blr_1_tot_cnt": 0.1,
  "fm_aux_blr_1_tot_cnt": 0.1,
  "fm_aux_blr_2_tot_cnt": 0.1,
  "fm_aux_blr_3_tot_cnt": 0.1,
  "me_1_rhs_cnt": 0.1,
  "me_2_rhs_cnt": 0.1,
  "me_3_rhs_cnt": 0.1,
  "me_4_rhs_cnt": 0.1,
  "pwr_me_1": 0.1,
  "pwr_me_2": 0.1,
  "pwr_me_3": 0.1,
  "pwr_me_4": 0.1,
  "me_1_kw_cnt": 0.1,
  "me_2_kw_cnt": 0.1,
  "me_3_kw_cnt": 0.1,
  "me_4_kw_cnt": 0.1,
  "ae_1_pwr_tot": 0.1,
  "ae_1_pwr": 0.1,
  "ae_2_pwr": 0.1,
  "ae_3_pwr": 0.1,
  "ae_4_pwr": 0.1,
  "ae_5_pwr": 0.1,
  "ae_6_pwr": 0.1,
  "ae_7_pwr": 0.1,
  "ae_8_pwr": 0.1,
  "ae_1_kw_cnt_tot": 0.1,
  "ae_1_kw_cnt": 0.1,
  "ae_2_kw_cnt": 0.1,
  "ae_3_kw_cnt": 0.1,
  "ae_4_kw_cnt": 0.1,
  "ae_5_kw_cnt": 0.1,
  "ae_6_kw_cnt": 0.1,
  "ae_7_kw_cnt": 0.1,
  "ae_8_kw_cnt": 0.1,
  "ae_1_rhs_cnt": 0.1,
  "ae_2_rhs_cnt": 0.1,
  "ae_3_rhs_cnt": 0.1,
  "ae_4_rhs_cnt": 0.1,
  "ae_5_rhs_cnt": 0.1,
  "ae_6_rhs_cnt": 0.1,
  "ae_7_rhs_cnt": 0.1,
  "ae_8_rhs_cnt": 0.1,
  "pto_shft_1_pwr": 0.1,
  "pto_shft_1_kw_cnt": 0.1,
  "pto_shft_1_rhs": 0.1,
  "pto_shft_2_pwr": 0.1,
  "pto_shft_2_eng": 0.1,
  "pto_shft_2_rhs": 0.1,
  "pto_shft_3_pwr": 0.1,
  "pto_shft_3_kw_cnt": 0.1,
  "pto_shft_3_rhs": 0.1,
  "pto_shft_4_pwr": 0.1,
  "pto_shft_4_kw_cnt": 0.1,
  "pto_shft_4_rhs": 0.1,
  "pti_shft_1_pwr": 0.1,
  "pti_shft_1_kw_cnt": 0.1,
  "pti_shft_1_rh": 0.1,
  "pti_shft_2_pwr": 0.1,
  "pti_shft_2_kw_cnt": 0.1,
  "pti_shft_2_rh": 0.1,
  "pti_shft_3_pwr": 0.1,
  "pti_shft_3_kw_cnt": 0.1,
  "pti_shft_3_rh": 0.1,
  "pti_shft_4_pwr": 0.1,
  "pti_shft_4_kw_cnt": 0.1,
  "pti_shft_4_rh": 0.1,
  "aux_blr_1_rhs": 0.1,
  "aux_blr_2_rhs": 0.1,
  "aux_blr_3_rhs": 0.1,
  "aux_blr_4_rhs": 0.1
}

Responses

Status Meaning Description Schema
200 OK Success Inline
204 No Content No Content None
400 Bad Request Bad Request None
401 Unauthorized Unauthorized None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» id integer(int32)¦null false none none
» date_utc string(date-time)¦null false none Navigational/Bridge Data, Navigation, Date/Time (UTC);
» draft_fwd number(double)¦null false none Navigational/Bridge Data, Navigation, Draft, Fwd, m;
» draft_mid number(double)¦null false none Navigational/Bridge Data, Navigation, Draft, Mid, m;
» draft_aft number(double)¦null false none Navigational/Bridge Data, Navigation, Draft, Aft, m;
» trim number(double)¦null false none Navigational/Bridge Data, Navigation, Trim, m;
» heel number(double)¦null false none Navigational/Bridge Data, Navigation, Heel, m;
» lat_nmea number(double)¦null false none Navigational/Bridge Data, Navigation, Latitude, rad;
» long_nmea number(double)¦null false none Navigational/Bridge Data, Navigation, Longitude, rad;
» cog number(double)¦null false none Navigational/Bridge Data, Navigation, Course over Ground, rad;
» sog number(double)¦null false none Navigational/Bridge Data, Navigation, Speed Over Ground, m/s;
» hdt number(double)¦null false none Navigational/Bridge Data, Navigation, Heading, rad;
» stw number(double)¦null false none Navigational/Bridge Data, Navigation, Speed through water, m/s;
» trv_stw number(double)¦null false none Navigational/Bridge Data, Navigation, Traverse Speed through water*, m/s;
» cum_dst number(double)¦null false none Navigational/Bridge Data, Navigation, Cumulative Distance*, m;
» relativewind_spd number(double)¦null false none Navigational/Bridge Data, Navigation, Relative Wind Speed, m/s;
» relativewind_dir number(double)¦null false none Navigational/Bridge Data, Navigation, Relative Wind Direction, rad;
» air_temp number(double)¦null false none Navigational/Bridge Data, Navigation, Air Temperature*, deg K;
» air_humd number(double)¦null false none Navigational/Bridge Data, Navigation, Air Humidity*, kg/M^3;
» sea_tmp number(double)¦null false none Navigational/Bridge Data, Navigation, Sea Temperature, deg K;
» echo_depth number(double)¦null false none Navigational/Bridge Data, Navigation, Depth below Keel/WL, m;
» autoplt_rot number(double)¦null false none Navigational/Bridge Data, Navigation, Rate of turn, rad;
» autoplt_com_course number(double)¦null false none Navigational/Bridge Data, Navigation, Course to Steer*, rad;
» rsa_c number(double)¦null false none Navigational/Bridge Data, Navigation, Rudder Angle Commanded, rad;
» rsa number(double)¦null false none Navigational/Bridge Data, Navigation, Rudder Angle, rad;
» me1_rpm_c number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME1 RPM Commanded, rad s^-1;
» me1_rpm number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME1 RPM (Actual), rad s^-1;
» me2_rpm_c number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME2 RPM Commanded, rad s^-1;
» me2_rpm number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME2 RPM (Actual), rad s^-1;
» me3_rpm_c number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME3 RPM Commanded, rad s^-1;
» me3_rpm number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME3 RPM (Actual), rad s^-1;
» me4_rpm_c number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME4 RPM Commanded, rad s^-1;
» me4_rpm number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME4 RPM (Actual), rad s^-1;
» sht1_pitch number(double)¦null false none Navigational/Bridge Data, Propeller, Shaft1 Pitch*, %;
» sht2_pitch number(double)¦null false none Navigational/Bridge Data, Propeller, Shaft2 Pitch*, %;
» sht3_pitch number(double)¦null false none Navigational/Bridge Data, Propeller, Shaft3 Pitch*, %;
» sht4_pitch number(double)¦null false none Navigational/Bridge Data, Propeller, Shaft4 Pitch*, %;
» prop_shft_1_rpm number(double)¦null false none Propulsion, 1 x Prop Shaft, Shaft1 RPM, rad s^-1;
» prop_acc_shft_1_rpm number(double)¦null false none Propulsion, 1 x Prop Shaft, Accumulated Shaft1 RPM, rad s^-1;
» prop_tq_shft_1 number(double)¦null false none Propulsion, 1 x Prop Shaft, Torque Shaft1, m;
» prop_pwr_shft_1 number(double)¦null false none Propulsion, 1 x Prop Shaft, Power Shaft1, W;
» prop_acc_shft_1_eng number(double)¦null false none Propulsion, 1 x Prop Shaft, Accumulated (Energy) Shaft1, Ws;
» prop_tot_shft_1_eng number(double)¦null false none Propulsion, 1 x Prop Shaft, Totalizer Energy Shaft1, Ws;
» prop_thrt_shft_1 number(double)¦null false none Propulsion, 1 x Prop Shaft, Propeller Thrust Shaft1, N;
» prop_shft_2_rpm number(double)¦null false none Propulsion, 2 x Prop Shaft, Shaft2 RPM, rad s^-1;
» prop_acc_shft_2_rpm number(double)¦null false none Propulsion, 2 x Prop Shaft, Accumulated Shaft2 RPM, rad s^-1;
» prop_tq_shft_2 number(double)¦null false none Propulsion, 2 x Prop Shaft, Torque Shaft2, m;
» prop_pwr_shft_2 number(double)¦null false none Propulsion, 2 x Prop Shaft, Power Shaft2, W;
» prop_acc_shft_2_eng number(double)¦null false none Propulsion, 2 x Prop Shaft, Accumulated (Energy) Shaft2, Ws;
» prop_tot_shft_2_eng number(double)¦null false none Propulsion, 2 x Prop Shaft, Totalizer Energy Shaft2, Ws;
» prop_thrt_shft_2 number(double)¦null false none Propulsion, 2 x Prop Shaft, Propeller Thrust Shaft2, N;
» prop_shft_3_rpm number(double)¦null false none Propulsion, 3 x Prop Shaft, Shaft3 RPM, rad s^-1;
» prop_acc_shft_3_rpm number(double)¦null false none Propulsion, 3 x Prop Shaft, Accumulated Shaft3 RPM, rad s^-1;
» prop_tq_shft_3 number(double)¦null false none Propulsion, 3 x Prop Shaft, Torque Shaft3, m;
» prop_pwr_shft_3 number(double)¦null false none Propulsion, 3 x Prop Shaft, Power Shaft3, W;
» prop_acc_shft_3_eng number(double)¦null false none Propulsion, 3 x Prop Shaft, Accumulated (Energy) Shaft3, Ws;
» prop_tot_shft_3_eng number(double)¦null false none Propulsion, 3 x Prop Shaft, Totalizer Energy Shaft3, Ws;
» prop_thrt_shft_3 number(double)¦null false none Propulsion, 3 x Prop Shaft, Propeller Thrust Shaft3, N;
» prop_shft_4_rpm number(double)¦null false none Propulsion, 3 x Prop Shaft, Shaft4 RPM, rad s^-1;
» prop_acc_shft_4_rpm number(double)¦null false none Propulsion, 3 x Prop Shaft, Accumulated Shaft4 RPM, rad s^-1;
» prop_tq_shft_4 number(double)¦null false none Propulsion, 3 x Prop Shaft, Torque Shaft4, N;
» prop_pwr_shft_4 number(double)¦null false none Propulsion, 3 x Prop Shaft, Power Shaft4, W;
» prop_acc_shft_4_eng number(double)¦null false none Propulsion, 3 x Prop Shaft, Accumulated (Energy) Shaft4, Ws;
» prop_tot_shft_4_eng number(double)¦null false none Propulsion, 3 x Prop Shaft, Totalizer Energy Shaft4, Ws;
» prop_thrt_shft_4 number(double)¦null false none Propulsion, 3 x Prop Shaft, Propeller Thrust Shaft4, V;
» bow_thruster_1_pwr number(double)¦null false none Propulsion, Bow Thruster(s), Power, W;
» bow_thruster_1_rpm number(double)¦null false none Propulsion, Bow Thruster(s), RPM, rad s^-1;
» bow_thruster_1_ptch number(double)¦null false none Propulsion, Bow Thruster(s), Pitch, %;
» bow_thruster_2_pwr number(double)¦null false none Propulsion, Bow Thruster(s), Power, W;
» bow_thruster_2_rpm number(double)¦null false none Propulsion, Bow Thruster(s), RPM, rad s^-1;
» bow_thruster_2_ptch number(double)¦null false none Propulsion, Bow Thruster(s), Pitch, %;
» bow_thruster_3_pwr number(double)¦null false none Propulsion, Bow Thruster(s), Power, W;
» bow_thruster_3_rpm number(double)¦null false none Propulsion, Bow Thruster(s), RPM, rad s^-1;
» bow_thruster_3_ptch number(double)¦null false none Propulsion, Bow Thruster(s), Pitch, %;
» stern_thruster_1_pwr number(double)¦null false none Propulsion, Stern Thruster(s), Power, W;
» stern_thruster_1_rpm number(double)¦null false none Propulsion, Stern Thruster(s), RPM, rad s^-1;
» stern_thruster_1_ptch number(double)¦null false none Propulsion, Stern Thruster(s), Pitch, %;
» stern_thruster_2_pwr number(double)¦null false none Propulsion, Stern Thruster(s), Power, W;
» stern_thruster_2_rpm number(double)¦null false none Propulsion, Stern Thruster(s), RPM, rad s^-1;
» stern_thruster_2_ptch number(double)¦null false none Propulsion, Stern Thruster(s), Pitch, %;
» stern_thruster_3_pwr number(double)¦null false none Propulsion, Stern Thruster(s), Power, W;
» stern_thruster_3_rpm number(double)¦null false none Propulsion, Stern Thruster(s), RPM, rad s^-1;
» stern_thruster_3_ptch number(double)¦null false none Propulsion, Stern Thruster(s), Pitch, %;
» ft_me_comb string¦null false none Fuel, Event Reporting by users in third-party systems, Fuel Type ME Combined;
» ft_ae_comb string¦null false none Fuel, Event Reporting by users in third-party systems, Fuel Type AE Combined;
» ft_blr_tot string¦null false none Fuel, Event Reporting by users in third-party systems, Fuel Type Boiler All Total;
» fm_me_tot_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME Total Consumption Rate (Combined), kg/s;
» fm_me_tot_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME Total consumption Counter (Combined), kg/s;
» fm_me1_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME1 Total Consumption Rate, kg/s;
» fm_me2_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME2 Total Consumption Rate, kg/s;
» fm_me3_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME3 Total Consumption Rate, kg/s;
» fm_me4_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME4 Total Consumption Rate, kg/s;
» fm_me1_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME1 Total Consumption Counter, kg;
» fm_me2_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME2 Total Consumption Counter, kg;
» fm_me3_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME3 Total Consumption Counter, kg;
» fm_me4_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME4 Total Consumption Counter, kg;
» fm_ae_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, All AE Total Consumption Rate, kg/s;
» fm_ae_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, All AE Total Consumption Counter, kg;
» fm_ae_1_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE1 Total Consumption rate, kg/s;
» fm_ae_2_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE2 Total Consumption rate, kg/s;
» fm_ae_3_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE3 Total Consumption rate, kg/s;
» fm_ae_4_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE4 Total Consumption rate, kg/s;
» fm_ae_5_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE5 Total Consumption rate, kg/s;
» fm_ae_6_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE6 Total Consumption rate, kg/s;
» fm_ae_7_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE7 Total Consumption rate, kg/s;
» fm_ae_8_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE8 Total Consumption rate, kg/s;
» fm_ae_1_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE1 Total Cons. Counter, kg;
» fm_ae_2_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE2 Total Cons. Counter, kg;
» fm_ae_3_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE3 Total Cons. Counter, kg;
» fm_ae_4_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE4 Total Cons. Counter, kg;
» fm_ae_5_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE5 Total Cons. Counter, kg;
» fm_ae_6_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE6 Total Cons. Counter, kg;
» fm_ae_7_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE7 Total Cons. Counter, kg;
» fm_ae_8_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE8 Total Cons. Counter, kg;
» fm_blr_all_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Boiler All Total Cons. Rate, kg/s;
» fm_blr_all_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Boiler All Total Cons. Counter, kg;
» fm_comp_blr_1_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Composite Boiler Total Cons. Rate, kg/s;
» fm_aux_blr_1_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler1 Total Cons. Rate, kg/s;
» fm_aux_blr_2_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler2 Total Cons. Rate, kg/s;
» fm_aux_blr_3_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler3 Total Cons. Rate, kg/s;
» fm_comp_blr_1_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Composite Boiler Total Cons. Counter, kg;
» fm_aux_blr_1_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler1 Total Cons. Counter, kg;
» fm_aux_blr_2_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler2 Total Cons. Counter, kg;
» fm_aux_blr_3_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler3 Total Cons. Counter, kg;
» me_1_rhs_cnt number(double)¦null false none Machinery, ME Running Hours, ME 1 Running Hours, s;
» me_2_rhs_cnt number(double)¦null false none Machinery, ME Running Hours, ME 2 Running Hours, s;
» me_3_rhs_cnt number(double)¦null false none Machinery, ME Running Hours, ME 3 Running Hours, s;
» me_4_rhs_cnt number(double)¦null false none Machinery, ME Running Hours, ME 4 Running Hours, s;
» pwr_me_1 number(double)¦null false none Machinery, ME Power, ME 1 Power, W;
» pwr_me_2 number(double)¦null false none Machinery, ME Power, ME 2 Power, W;
» pwr_me_3 number(double)¦null false none Machinery, ME Power, ME 3 Power, W;
» pwr_me_4 number(double)¦null false none Machinery, ME Power, ME 4 Power, W;
» me_1_kw_cnt number(double)¦null false none Machinery, ME Energy, ME 1 Energy, Ws;
» me_2_kw_cnt number(double)¦null false none Machinery, ME Energy, ME 2 Energy, Ws;
» me_3_kw_cnt number(double)¦null false none Machinery, ME Energy, ME 3 Energy, Ws;
» me_4_kw_cnt number(double)¦null false none Machinery, ME Energy, ME 4 Energy, Ws;
» ae_1_pwr_tot number(double)¦null false none Machinery, AE Power, AE Total Power, W;
» ae_1_pwr number(double)¦null false none Machinery, AE Power, AE 1 Power, W;
» ae_2_pwr number(double)¦null false none Machinery, AE Power, AE 2 Power, W;
» ae_3_pwr number(double)¦null false none Machinery, AE Power, AE 3 Power, W;
» ae_4_pwr number(double)¦null false none Machinery, AE Power, AE 4 Power, W;
» ae_5_pwr number(double)¦null false none Machinery, AE Power, AE 5 Power, W;
» ae_6_pwr number(double)¦null false none Machinery, AE Power, AE 6 Power, W;
» ae_7_pwr number(double)¦null false none Machinery, AE Power, AE 7 Power, W;
» ae_8_pwr number(double)¦null false none Machinery, AE Power, AE 8 Power, W;
» ae_1_kw_cnt_tot number(double)¦null false none Machinery, AE Energy, AE Total Energy, Ws;
» ae_1_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 1 Energy, Ws;
» ae_2_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 2 Energy, Ws;
» ae_3_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 3 Energy, Ws;
» ae_4_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 4 Energy, Ws;
» ae_5_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 5 Energy, Ws;
» ae_6_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 6 Energy, Ws;
» ae_7_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 7 Energy, Ws;
» ae_8_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 8 Energy, Ws;
» ae_1_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_2_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_3_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_4_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_5_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_6_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_7_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_8_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» pto_shft_1_pwr number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft1 PTO Power, W;
» pto_shft_1_kw_cnt number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft1 PTO Energy, Ws;
» pto_shft_1_rhs number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft1 PTO Rh, s;
» pto_shft_2_pwr number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft2 PTO Power, W;
» pto_shft_2_eng number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft2 PTO Energy, Ws;
» pto_shft_2_rhs number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft2 PTO Rh, s;
» pto_shft_3_pwr number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft3 PTO Power, W;
» pto_shft_3_kw_cnt number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft3 PTO Energy, Ws;
» pto_shft_3_rhs number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft3 PTO Rh, s;
» pto_shft_4_pwr number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft4 PTO Power, W;
» pto_shft_4_kw_cnt number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft4 PTO Energy, Ws;
» pto_shft_4_rhs number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft4 PTO Rh, s;
» pti_shft_1_pwr number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft1 PTI Power, W;
» pti_shft_1_kw_cnt number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft1 PTI Energy, Ws;
» pti_shft_1_rh number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft1 PTI Rh, s;
» pti_shft_2_pwr number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft2 PTI Power, W;
» pti_shft_2_kw_cnt number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft2 PTI Energy, Ws;
» pti_shft_2_rh number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft2 PTI Rh, s;
» pti_shft_3_pwr number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft3 PTI Power, W;
» pti_shft_3_kw_cnt number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft3 PTI Energy, Ws;
» pti_shft_3_rh number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft3 PTI Rh, s;
» pti_shft_4_pwr number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft4 PTI Power, W;
» pti_shft_4_kw_cnt number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft4 PTI Energy, Ws;
» pti_shft_4_rh number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft4 PTI Rh, s;
» aux_blr_1_rhs number(double)¦null false none Machinery, Aux Boiler Running Hours, Aux Boiler 1 Running Hours, s;
» aux_blr_2_rhs number(double)¦null false none Machinery, Aux Boiler Running Hours, Aux Boiler 2 Running Hours, s;
» aux_blr_3_rhs number(double)¦null false none Machinery, Aux Boiler Running Hours, Aux Boiler 3 Running Hours, s;
» aux_blr_4_rhs number(double)¦null false none Machinery, Aux Boiler Running Hours, Aux Boiler 4 Running Hours, s;

Uploads new Automation Report

Code samples

# You can also use wget
curl -X POST /api/public/v1/vessel-data/automation-data-report \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer {access-token}'

POST /api/public/v1/vessel-data/automation-data-report

A session token is required to access this resource. It has to be used as a bearer token.

Body parameter

{
  "id": 0,
  "date_utc": "2019-08-24T14:15:22Z",
  "draft_fwd": 0.1,
  "draft_mid": 0.1,
  "draft_aft": 0.1,
  "trim": 0.1,
  "heel": 0.1,
  "lat_nmea": 0.1,
  "long_nmea": 0.1,
  "cog": 0.1,
  "sog": 0.1,
  "hdt": 0.1,
  "stw": 0.1,
  "trv_stw": 0.1,
  "cum_dst": 0.1,
  "relativewind_spd": 0.1,
  "relativewind_dir": 0.1,
  "air_temp": 0.1,
  "air_humd": 0.1,
  "sea_tmp": 0.1,
  "echo_depth": 0.1,
  "autoplt_rot": 0.1,
  "autoplt_com_course": 0.1,
  "rsa_c": 0.1,
  "rsa": 0.1,
  "me1_rpm_c": 0.1,
  "me1_rpm": 0.1,
  "me2_rpm_c": 0.1,
  "me2_rpm": 0.1,
  "me3_rpm_c": 0.1,
  "me3_rpm": 0.1,
  "me4_rpm_c": 0.1,
  "me4_rpm": 0.1,
  "sht1_pitch": 0.1,
  "sht2_pitch": 0.1,
  "sht3_pitch": 0.1,
  "sht4_pitch": 0.1,
  "prop_shft_1_rpm": 0.1,
  "prop_acc_shft_1_rpm": 0.1,
  "prop_tq_shft_1": 0.1,
  "prop_pwr_shft_1": 0.1,
  "prop_acc_shft_1_eng": 0.1,
  "prop_tot_shft_1_eng": 0.1,
  "prop_thrt_shft_1": 0.1,
  "prop_shft_2_rpm": 0.1,
  "prop_acc_shft_2_rpm": 0.1,
  "prop_tq_shft_2": 0.1,
  "prop_pwr_shft_2": 0.1,
  "prop_acc_shft_2_eng": 0.1,
  "prop_tot_shft_2_eng": 0.1,
  "prop_thrt_shft_2": 0.1,
  "prop_shft_3_rpm": 0.1,
  "prop_acc_shft_3_rpm": 0.1,
  "prop_tq_shft_3": 0.1,
  "prop_pwr_shft_3": 0.1,
  "prop_acc_shft_3_eng": 0.1,
  "prop_tot_shft_3_eng": 0.1,
  "prop_thrt_shft_3": 0.1,
  "prop_shft_4_rpm": 0.1,
  "prop_acc_shft_4_rpm": 0.1,
  "prop_tq_shft_4": 0.1,
  "prop_pwr_shft_4": 0.1,
  "prop_acc_shft_4_eng": 0.1,
  "prop_tot_shft_4_eng": 0.1,
  "prop_thrt_shft_4": 0.1,
  "bow_thruster_1_pwr": 0.1,
  "bow_thruster_1_rpm": 0.1,
  "bow_thruster_1_ptch": 0.1,
  "bow_thruster_2_pwr": 0.1,
  "bow_thruster_2_rpm": 0.1,
  "bow_thruster_2_ptch": 0.1,
  "bow_thruster_3_pwr": 0.1,
  "bow_thruster_3_rpm": 0.1,
  "bow_thruster_3_ptch": 0.1,
  "stern_thruster_1_pwr": 0.1,
  "stern_thruster_1_rpm": 0.1,
  "stern_thruster_1_ptch": 0.1,
  "stern_thruster_2_pwr": 0.1,
  "stern_thruster_2_rpm": 0.1,
  "stern_thruster_2_ptch": 0.1,
  "stern_thruster_3_pwr": 0.1,
  "stern_thruster_3_rpm": 0.1,
  "stern_thruster_3_ptch": 0.1,
  "ft_me_comb": "string",
  "ft_ae_comb": "string",
  "ft_blr_tot": "string",
  "fm_me_tot_rate": 0.1,
  "fm_me_tot_cnt": 0.1,
  "fm_me1_rate": 0.1,
  "fm_me2_rate": 0.1,
  "fm_me3_rate": 0.1,
  "fm_me4_rate": 0.1,
  "fm_me1_cnt": 0.1,
  "fm_me2_cnt": 0.1,
  "fm_me3_cnt": 0.1,
  "fm_me4_cnt": 0.1,
  "fm_ae_tot_rate": 0.1,
  "fm_ae_tot_cnt": 0.1,
  "fm_ae_1_tot_rate": 0.1,
  "fm_ae_2_tot_rate": 0.1,
  "fm_ae_3_tot_rate": 0.1,
  "fm_ae_4_tot_rate": 0.1,
  "fm_ae_5_tot_rate": 0.1,
  "fm_ae_6_tot_rate": 0.1,
  "fm_ae_7_tot_rate": 0.1,
  "fm_ae_8_tot_rate": 0.1,
  "fm_ae_1_tot_cnt": 0.1,
  "fm_ae_2_tot_cnt": 0.1,
  "fm_ae_3_tot_cnt": 0.1,
  "fm_ae_4_tot_cnt": 0.1,
  "fm_ae_5_tot_cnt": 0.1,
  "fm_ae_6_tot_cnt": 0.1,
  "fm_ae_7_tot_cnt": 0.1,
  "fm_ae_8_tot_cnt": 0.1,
  "fm_blr_all_tot_rate": 0.1,
  "fm_blr_all_tot_cnt": 0.1,
  "fm_comp_blr_1_tot_rate": 0.1,
  "fm_aux_blr_1_tot_rate": 0.1,
  "fm_aux_blr_2_tot_rate": 0.1,
  "fm_aux_blr_3_tot_rate": 0.1,
  "fm_comp_blr_1_tot_cnt": 0.1,
  "fm_aux_blr_1_tot_cnt": 0.1,
  "fm_aux_blr_2_tot_cnt": 0.1,
  "fm_aux_blr_3_tot_cnt": 0.1,
  "me_1_rhs_cnt": 0.1,
  "me_2_rhs_cnt": 0.1,
  "me_3_rhs_cnt": 0.1,
  "me_4_rhs_cnt": 0.1,
  "pwr_me_1": 0.1,
  "pwr_me_2": 0.1,
  "pwr_me_3": 0.1,
  "pwr_me_4": 0.1,
  "me_1_kw_cnt": 0.1,
  "me_2_kw_cnt": 0.1,
  "me_3_kw_cnt": 0.1,
  "me_4_kw_cnt": 0.1,
  "ae_1_pwr_tot": 0.1,
  "ae_1_pwr": 0.1,
  "ae_2_pwr": 0.1,
  "ae_3_pwr": 0.1,
  "ae_4_pwr": 0.1,
  "ae_5_pwr": 0.1,
  "ae_6_pwr": 0.1,
  "ae_7_pwr": 0.1,
  "ae_8_pwr": 0.1,
  "ae_1_kw_cnt_tot": 0.1,
  "ae_1_kw_cnt": 0.1,
  "ae_2_kw_cnt": 0.1,
  "ae_3_kw_cnt": 0.1,
  "ae_4_kw_cnt": 0.1,
  "ae_5_kw_cnt": 0.1,
  "ae_6_kw_cnt": 0.1,
  "ae_7_kw_cnt": 0.1,
  "ae_8_kw_cnt": 0.1,
  "ae_1_rhs_cnt": 0.1,
  "ae_2_rhs_cnt": 0.1,
  "ae_3_rhs_cnt": 0.1,
  "ae_4_rhs_cnt": 0.1,
  "ae_5_rhs_cnt": 0.1,
  "ae_6_rhs_cnt": 0.1,
  "ae_7_rhs_cnt": 0.1,
  "ae_8_rhs_cnt": 0.1,
  "pto_shft_1_pwr": 0.1,
  "pto_shft_1_kw_cnt": 0.1,
  "pto_shft_1_rhs": 0.1,
  "pto_shft_2_pwr": 0.1,
  "pto_shft_2_eng": 0.1,
  "pto_shft_2_rhs": 0.1,
  "pto_shft_3_pwr": 0.1,
  "pto_shft_3_kw_cnt": 0.1,
  "pto_shft_3_rhs": 0.1,
  "pto_shft_4_pwr": 0.1,
  "pto_shft_4_kw_cnt": 0.1,
  "pto_shft_4_rhs": 0.1,
  "pti_shft_1_pwr": 0.1,
  "pti_shft_1_kw_cnt": 0.1,
  "pti_shft_1_rh": 0.1,
  "pti_shft_2_pwr": 0.1,
  "pti_shft_2_kw_cnt": 0.1,
  "pti_shft_2_rh": 0.1,
  "pti_shft_3_pwr": 0.1,
  "pti_shft_3_kw_cnt": 0.1,
  "pti_shft_3_rh": 0.1,
  "pti_shft_4_pwr": 0.1,
  "pti_shft_4_kw_cnt": 0.1,
  "pti_shft_4_rh": 0.1,
  "aux_blr_1_rhs": 0.1,
  "aux_blr_2_rhs": 0.1,
  "aux_blr_3_rhs": 0.1,
  "aux_blr_4_rhs": 0.1
}

Parameters

Name In Type Required Description
body body object false Automation Report data
» id body integer(int32)¦null false none
» date_utc body string(date-time)¦null false Navigational/Bridge Data, Navigation, Date/Time (UTC);
» draft_fwd body number(double)¦null false Navigational/Bridge Data, Navigation, Draft, Fwd, m;
» draft_mid body number(double)¦null false Navigational/Bridge Data, Navigation, Draft, Mid, m;
» draft_aft body number(double)¦null false Navigational/Bridge Data, Navigation, Draft, Aft, m;
» trim body number(double)¦null false Navigational/Bridge Data, Navigation, Trim, m;
» heel body number(double)¦null false Navigational/Bridge Data, Navigation, Heel, m;
» lat_nmea body number(double)¦null false Navigational/Bridge Data, Navigation, Latitude, rad;
» long_nmea body number(double)¦null false Navigational/Bridge Data, Navigation, Longitude, rad;
» cog body number(double)¦null false Navigational/Bridge Data, Navigation, Course over Ground, rad;
» sog body number(double)¦null false Navigational/Bridge Data, Navigation, Speed Over Ground, m/s;
» hdt body number(double)¦null false Navigational/Bridge Data, Navigation, Heading, rad;
» stw body number(double)¦null false Navigational/Bridge Data, Navigation, Speed through water, m/s;
» trv_stw body number(double)¦null false Navigational/Bridge Data, Navigation, Traverse Speed through water*, m/s;
» cum_dst body number(double)¦null false Navigational/Bridge Data, Navigation, Cumulative Distance*, m;
» relativewind_spd body number(double)¦null false Navigational/Bridge Data, Navigation, Relative Wind Speed, m/s;
» relativewind_dir body number(double)¦null false Navigational/Bridge Data, Navigation, Relative Wind Direction, rad;
» air_temp body number(double)¦null false Navigational/Bridge Data, Navigation, Air Temperature*, deg K;
» air_humd body number(double)¦null false Navigational/Bridge Data, Navigation, Air Humidity*, kg/M^3;
» sea_tmp body number(double)¦null false Navigational/Bridge Data, Navigation, Sea Temperature, deg K;
» echo_depth body number(double)¦null false Navigational/Bridge Data, Navigation, Depth below Keel/WL, m;
» autoplt_rot body number(double)¦null false Navigational/Bridge Data, Navigation, Rate of turn, rad;
» autoplt_com_course body number(double)¦null false Navigational/Bridge Data, Navigation, Course to Steer*, rad;
» rsa_c body number(double)¦null false Navigational/Bridge Data, Navigation, Rudder Angle Commanded, rad;
» rsa body number(double)¦null false Navigational/Bridge Data, Navigation, Rudder Angle, rad;
» me1_rpm_c body number(double)¦null false Navigational/Bridge Data, Main Engine Control, ME1 RPM Commanded, rad s^-1;
» me1_rpm body number(double)¦null false Navigational/Bridge Data, Main Engine Control, ME1 RPM (Actual), rad s^-1;
» me2_rpm_c body number(double)¦null false Navigational/Bridge Data, Main Engine Control, ME2 RPM Commanded, rad s^-1;
» me2_rpm body number(double)¦null false Navigational/Bridge Data, Main Engine Control, ME2 RPM (Actual), rad s^-1;
» me3_rpm_c body number(double)¦null false Navigational/Bridge Data, Main Engine Control, ME3 RPM Commanded, rad s^-1;
» me3_rpm body number(double)¦null false Navigational/Bridge Data, Main Engine Control, ME3 RPM (Actual), rad s^-1;
» me4_rpm_c body number(double)¦null false Navigational/Bridge Data, Main Engine Control, ME4 RPM Commanded, rad s^-1;
» me4_rpm body number(double)¦null false Navigational/Bridge Data, Main Engine Control, ME4 RPM (Actual), rad s^-1;
» sht1_pitch body number(double)¦null false Navigational/Bridge Data, Propeller, Shaft1 Pitch*, %;
» sht2_pitch body number(double)¦null false Navigational/Bridge Data, Propeller, Shaft2 Pitch*, %;
» sht3_pitch body number(double)¦null false Navigational/Bridge Data, Propeller, Shaft3 Pitch*, %;
» sht4_pitch body number(double)¦null false Navigational/Bridge Data, Propeller, Shaft4 Pitch*, %;
» prop_shft_1_rpm body number(double)¦null false Propulsion, 1 x Prop Shaft, Shaft1 RPM, rad s^-1;
» prop_acc_shft_1_rpm body number(double)¦null false Propulsion, 1 x Prop Shaft, Accumulated Shaft1 RPM, rad s^-1;
» prop_tq_shft_1 body number(double)¦null false Propulsion, 1 x Prop Shaft, Torque Shaft1, m;
» prop_pwr_shft_1 body number(double)¦null false Propulsion, 1 x Prop Shaft, Power Shaft1, W;
» prop_acc_shft_1_eng body number(double)¦null false Propulsion, 1 x Prop Shaft, Accumulated (Energy) Shaft1, Ws;
» prop_tot_shft_1_eng body number(double)¦null false Propulsion, 1 x Prop Shaft, Totalizer Energy Shaft1, Ws;
» prop_thrt_shft_1 body number(double)¦null false Propulsion, 1 x Prop Shaft, Propeller Thrust Shaft1, N;
» prop_shft_2_rpm body number(double)¦null false Propulsion, 2 x Prop Shaft, Shaft2 RPM, rad s^-1;
» prop_acc_shft_2_rpm body number(double)¦null false Propulsion, 2 x Prop Shaft, Accumulated Shaft2 RPM, rad s^-1;
» prop_tq_shft_2 body number(double)¦null false Propulsion, 2 x Prop Shaft, Torque Shaft2, m;
» prop_pwr_shft_2 body number(double)¦null false Propulsion, 2 x Prop Shaft, Power Shaft2, W;
» prop_acc_shft_2_eng body number(double)¦null false Propulsion, 2 x Prop Shaft, Accumulated (Energy) Shaft2, Ws;
» prop_tot_shft_2_eng body number(double)¦null false Propulsion, 2 x Prop Shaft, Totalizer Energy Shaft2, Ws;
» prop_thrt_shft_2 body number(double)¦null false Propulsion, 2 x Prop Shaft, Propeller Thrust Shaft2, N;
» prop_shft_3_rpm body number(double)¦null false Propulsion, 3 x Prop Shaft, Shaft3 RPM, rad s^-1;
» prop_acc_shft_3_rpm body number(double)¦null false Propulsion, 3 x Prop Shaft, Accumulated Shaft3 RPM, rad s^-1;
» prop_tq_shft_3 body number(double)¦null false Propulsion, 3 x Prop Shaft, Torque Shaft3, m;
» prop_pwr_shft_3 body number(double)¦null false Propulsion, 3 x Prop Shaft, Power Shaft3, W;
» prop_acc_shft_3_eng body number(double)¦null false Propulsion, 3 x Prop Shaft, Accumulated (Energy) Shaft3, Ws;
» prop_tot_shft_3_eng body number(double)¦null false Propulsion, 3 x Prop Shaft, Totalizer Energy Shaft3, Ws;
» prop_thrt_shft_3 body number(double)¦null false Propulsion, 3 x Prop Shaft, Propeller Thrust Shaft3, N;
» prop_shft_4_rpm body number(double)¦null false Propulsion, 3 x Prop Shaft, Shaft4 RPM, rad s^-1;
» prop_acc_shft_4_rpm body number(double)¦null false Propulsion, 3 x Prop Shaft, Accumulated Shaft4 RPM, rad s^-1;
» prop_tq_shft_4 body number(double)¦null false Propulsion, 3 x Prop Shaft, Torque Shaft4, N;
» prop_pwr_shft_4 body number(double)¦null false Propulsion, 3 x Prop Shaft, Power Shaft4, W;
» prop_acc_shft_4_eng body number(double)¦null false Propulsion, 3 x Prop Shaft, Accumulated (Energy) Shaft4, Ws;
» prop_tot_shft_4_eng body number(double)¦null false Propulsion, 3 x Prop Shaft, Totalizer Energy Shaft4, Ws;
» prop_thrt_shft_4 body number(double)¦null false Propulsion, 3 x Prop Shaft, Propeller Thrust Shaft4, V;
» bow_thruster_1_pwr body number(double)¦null false Propulsion, Bow Thruster(s), Power, W;
» bow_thruster_1_rpm body number(double)¦null false Propulsion, Bow Thruster(s), RPM, rad s^-1;
» bow_thruster_1_ptch body number(double)¦null false Propulsion, Bow Thruster(s), Pitch, %;
» bow_thruster_2_pwr body number(double)¦null false Propulsion, Bow Thruster(s), Power, W;
» bow_thruster_2_rpm body number(double)¦null false Propulsion, Bow Thruster(s), RPM, rad s^-1;
» bow_thruster_2_ptch body number(double)¦null false Propulsion, Bow Thruster(s), Pitch, %;
» bow_thruster_3_pwr body number(double)¦null false Propulsion, Bow Thruster(s), Power, W;
» bow_thruster_3_rpm body number(double)¦null false Propulsion, Bow Thruster(s), RPM, rad s^-1;
» bow_thruster_3_ptch body number(double)¦null false Propulsion, Bow Thruster(s), Pitch, %;
» stern_thruster_1_pwr body number(double)¦null false Propulsion, Stern Thruster(s), Power, W;
» stern_thruster_1_rpm body number(double)¦null false Propulsion, Stern Thruster(s), RPM, rad s^-1;
» stern_thruster_1_ptch body number(double)¦null false Propulsion, Stern Thruster(s), Pitch, %;
» stern_thruster_2_pwr body number(double)¦null false Propulsion, Stern Thruster(s), Power, W;
» stern_thruster_2_rpm body number(double)¦null false Propulsion, Stern Thruster(s), RPM, rad s^-1;
» stern_thruster_2_ptch body number(double)¦null false Propulsion, Stern Thruster(s), Pitch, %;
» stern_thruster_3_pwr body number(double)¦null false Propulsion, Stern Thruster(s), Power, W;
» stern_thruster_3_rpm body number(double)¦null false Propulsion, Stern Thruster(s), RPM, rad s^-1;
» stern_thruster_3_ptch body number(double)¦null false Propulsion, Stern Thruster(s), Pitch, %;
» ft_me_comb body string¦null false Fuel, Event Reporting by users in third-party systems, Fuel Type ME Combined;
» ft_ae_comb body string¦null false Fuel, Event Reporting by users in third-party systems, Fuel Type AE Combined;
» ft_blr_tot body string¦null false Fuel, Event Reporting by users in third-party systems, Fuel Type Boiler All Total;
» fm_me_tot_rate body number(double)¦null false Fuel, Main Engine Calculated per Consumer, ME Total Consumption Rate (Combined), kg/s;
» fm_me_tot_cnt body number(double)¦null false Fuel, Main Engine Calculated per Consumer, ME Total consumption Counter (Combined), kg/s;
» fm_me1_rate body number(double)¦null false Fuel, Main Engine Calculated per Consumer, ME1 Total Consumption Rate, kg/s;
» fm_me2_rate body number(double)¦null false Fuel, Main Engine Calculated per Consumer, ME2 Total Consumption Rate, kg/s;
» fm_me3_rate body number(double)¦null false Fuel, Main Engine Calculated per Consumer, ME3 Total Consumption Rate, kg/s;
» fm_me4_rate body number(double)¦null false Fuel, Main Engine Calculated per Consumer, ME4 Total Consumption Rate, kg/s;
» fm_me1_cnt body number(double)¦null false Fuel, Main Engine Calculated per Consumer, ME1 Total Consumption Counter, kg;
» fm_me2_cnt body number(double)¦null false Fuel, Main Engine Calculated per Consumer, ME2 Total Consumption Counter, kg;
» fm_me3_cnt body number(double)¦null false Fuel, Main Engine Calculated per Consumer, ME3 Total Consumption Counter, kg;
» fm_me4_cnt body number(double)¦null false Fuel, Main Engine Calculated per Consumer, ME4 Total Consumption Counter, kg;
» fm_ae_tot_rate body number(double)¦null false Fuel, Aux Engine Consumption per consumer, All AE Total Consumption Rate, kg/s;
» fm_ae_tot_cnt body number(double)¦null false Fuel, Aux Engine Consumption per consumer, All AE Total Consumption Counter, kg;
» fm_ae_1_tot_rate body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE1 Total Consumption rate, kg/s;
» fm_ae_2_tot_rate body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE2 Total Consumption rate, kg/s;
» fm_ae_3_tot_rate body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE3 Total Consumption rate, kg/s;
» fm_ae_4_tot_rate body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE4 Total Consumption rate, kg/s;
» fm_ae_5_tot_rate body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE5 Total Consumption rate, kg/s;
» fm_ae_6_tot_rate body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE6 Total Consumption rate, kg/s;
» fm_ae_7_tot_rate body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE7 Total Consumption rate, kg/s;
» fm_ae_8_tot_rate body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE8 Total Consumption rate, kg/s;
» fm_ae_1_tot_cnt body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE1 Total Cons. Counter, kg;
» fm_ae_2_tot_cnt body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE2 Total Cons. Counter, kg;
» fm_ae_3_tot_cnt body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE3 Total Cons. Counter, kg;
» fm_ae_4_tot_cnt body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE4 Total Cons. Counter, kg;
» fm_ae_5_tot_cnt body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE5 Total Cons. Counter, kg;
» fm_ae_6_tot_cnt body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE6 Total Cons. Counter, kg;
» fm_ae_7_tot_cnt body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE7 Total Cons. Counter, kg;
» fm_ae_8_tot_cnt body number(double)¦null false Fuel, Aux Engine Consumption per consumer, AE8 Total Cons. Counter, kg;
» fm_blr_all_tot_rate body number(double)¦null false Fuel, Aux Boilers, Consumption per consumer, Boiler All Total Cons. Rate, kg/s;
» fm_blr_all_tot_cnt body number(double)¦null false Fuel, Aux Boilers, Consumption per consumer, Boiler All Total Cons. Counter, kg;
» fm_comp_blr_1_tot_rate body number(double)¦null false Fuel, Aux Boilers, Consumption per consumer, Composite Boiler Total Cons. Rate, kg/s;
» fm_aux_blr_1_tot_rate body number(double)¦null false Fuel, Aux Boilers, Consumption per consumer, Aux Boiler1 Total Cons. Rate, kg/s;
» fm_aux_blr_2_tot_rate body number(double)¦null false Fuel, Aux Boilers, Consumption per consumer, Aux Boiler2 Total Cons. Rate, kg/s;
» fm_aux_blr_3_tot_rate body number(double)¦null false Fuel, Aux Boilers, Consumption per consumer, Aux Boiler3 Total Cons. Rate, kg/s;
» fm_comp_blr_1_tot_cnt body number(double)¦null false Fuel, Aux Boilers, Consumption per consumer, Composite Boiler Total Cons. Counter, kg;
» fm_aux_blr_1_tot_cnt body number(double)¦null false Fuel, Aux Boilers, Consumption per consumer, Aux Boiler1 Total Cons. Counter, kg;
» fm_aux_blr_2_tot_cnt body number(double)¦null false Fuel, Aux Boilers, Consumption per consumer, Aux Boiler2 Total Cons. Counter, kg;
» fm_aux_blr_3_tot_cnt body number(double)¦null false Fuel, Aux Boilers, Consumption per consumer, Aux Boiler3 Total Cons. Counter, kg;
» me_1_rhs_cnt body number(double)¦null false Machinery, ME Running Hours, ME 1 Running Hours, s;
» me_2_rhs_cnt body number(double)¦null false Machinery, ME Running Hours, ME 2 Running Hours, s;
» me_3_rhs_cnt body number(double)¦null false Machinery, ME Running Hours, ME 3 Running Hours, s;
» me_4_rhs_cnt body number(double)¦null false Machinery, ME Running Hours, ME 4 Running Hours, s;
» pwr_me_1 body number(double)¦null false Machinery, ME Power, ME 1 Power, W;
» pwr_me_2 body number(double)¦null false Machinery, ME Power, ME 2 Power, W;
» pwr_me_3 body number(double)¦null false Machinery, ME Power, ME 3 Power, W;
» pwr_me_4 body number(double)¦null false Machinery, ME Power, ME 4 Power, W;
» me_1_kw_cnt body number(double)¦null false Machinery, ME Energy, ME 1 Energy, Ws;
» me_2_kw_cnt body number(double)¦null false Machinery, ME Energy, ME 2 Energy, Ws;
» me_3_kw_cnt body number(double)¦null false Machinery, ME Energy, ME 3 Energy, Ws;
» me_4_kw_cnt body number(double)¦null false Machinery, ME Energy, ME 4 Energy, Ws;
» ae_1_pwr_tot body number(double)¦null false Machinery, AE Power, AE Total Power, W;
» ae_1_pwr body number(double)¦null false Machinery, AE Power, AE 1 Power, W;
» ae_2_pwr body number(double)¦null false Machinery, AE Power, AE 2 Power, W;
» ae_3_pwr body number(double)¦null false Machinery, AE Power, AE 3 Power, W;
» ae_4_pwr body number(double)¦null false Machinery, AE Power, AE 4 Power, W;
» ae_5_pwr body number(double)¦null false Machinery, AE Power, AE 5 Power, W;
» ae_6_pwr body number(double)¦null false Machinery, AE Power, AE 6 Power, W;
» ae_7_pwr body number(double)¦null false Machinery, AE Power, AE 7 Power, W;
» ae_8_pwr body number(double)¦null false Machinery, AE Power, AE 8 Power, W;
» ae_1_kw_cnt_tot body number(double)¦null false Machinery, AE Energy, AE Total Energy, Ws;
» ae_1_kw_cnt body number(double)¦null false Machinery, AE Energy, AE 1 Energy, Ws;
» ae_2_kw_cnt body number(double)¦null false Machinery, AE Energy, AE 2 Energy, Ws;
» ae_3_kw_cnt body number(double)¦null false Machinery, AE Energy, AE 3 Energy, Ws;
» ae_4_kw_cnt body number(double)¦null false Machinery, AE Energy, AE 4 Energy, Ws;
» ae_5_kw_cnt body number(double)¦null false Machinery, AE Energy, AE 5 Energy, Ws;
» ae_6_kw_cnt body number(double)¦null false Machinery, AE Energy, AE 6 Energy, Ws;
» ae_7_kw_cnt body number(double)¦null false Machinery, AE Energy, AE 7 Energy, Ws;
» ae_8_kw_cnt body number(double)¦null false Machinery, AE Energy, AE 8 Energy, Ws;
» ae_1_rhs_cnt body number(double)¦null false Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_2_rhs_cnt body number(double)¦null false Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_3_rhs_cnt body number(double)¦null false Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_4_rhs_cnt body number(double)¦null false Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_5_rhs_cnt body number(double)¦null false Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_6_rhs_cnt body number(double)¦null false Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_7_rhs_cnt body number(double)¦null false Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_8_rhs_cnt body number(double)¦null false Machinery, AE Running Hours, AE 1 Running Time, s;
» pto_shft_1_pwr body number(double)¦null false Machinery, Shaft Generator (PTO), Shaft1 PTO Power, W;
» pto_shft_1_kw_cnt body number(double)¦null false Machinery, Shaft Generator (PTO), Shaft1 PTO Energy, Ws;
» pto_shft_1_rhs body number(double)¦null false Machinery, Shaft Generator (PTO), Shaft1 PTO Rh, s;
» pto_shft_2_pwr body number(double)¦null false Machinery, Shaft Generator (PTO), Shaft2 PTO Power, W;
» pto_shft_2_eng body number(double)¦null false Machinery, Shaft Generator (PTO), Shaft2 PTO Energy, Ws;
» pto_shft_2_rhs body number(double)¦null false Machinery, Shaft Generator (PTO), Shaft2 PTO Rh, s;
» pto_shft_3_pwr body number(double)¦null false Machinery, Shaft Generator (PTO), Shaft3 PTO Power, W;
» pto_shft_3_kw_cnt body number(double)¦null false Machinery, Shaft Generator (PTO), Shaft3 PTO Energy, Ws;
» pto_shft_3_rhs body number(double)¦null false Machinery, Shaft Generator (PTO), Shaft3 PTO Rh, s;
» pto_shft_4_pwr body number(double)¦null false Machinery, Shaft Generator (PTO), Shaft4 PTO Power, W;
» pto_shft_4_kw_cnt body number(double)¦null false Machinery, Shaft Generator (PTO), Shaft4 PTO Energy, Ws;
» pto_shft_4_rhs body number(double)¦null false Machinery, Shaft Generator (PTO), Shaft4 PTO Rh, s;
» pti_shft_1_pwr body number(double)¦null false Machinery, Shaft Motor (PTI), Shaft1 PTI Power, W;
» pti_shft_1_kw_cnt body number(double)¦null false Machinery, Shaft Motor (PTI), Shaft1 PTI Energy, Ws;
» pti_shft_1_rh body number(double)¦null false Machinery, Shaft Motor (PTI), Shaft1 PTI Rh, s;
» pti_shft_2_pwr body number(double)¦null false Machinery, Shaft Motor (PTI), Shaft2 PTI Power, W;
» pti_shft_2_kw_cnt body number(double)¦null false Machinery, Shaft Motor (PTI), Shaft2 PTI Energy, Ws;
» pti_shft_2_rh body number(double)¦null false Machinery, Shaft Motor (PTI), Shaft2 PTI Rh, s;
» pti_shft_3_pwr body number(double)¦null false Machinery, Shaft Motor (PTI), Shaft3 PTI Power, W;
» pti_shft_3_kw_cnt body number(double)¦null false Machinery, Shaft Motor (PTI), Shaft3 PTI Energy, Ws;
» pti_shft_3_rh body number(double)¦null false Machinery, Shaft Motor (PTI), Shaft3 PTI Rh, s;
» pti_shft_4_pwr body number(double)¦null false Machinery, Shaft Motor (PTI), Shaft4 PTI Power, W;
» pti_shft_4_kw_cnt body number(double)¦null false Machinery, Shaft Motor (PTI), Shaft4 PTI Energy, Ws;
» pti_shft_4_rh body number(double)¦null false Machinery, Shaft Motor (PTI), Shaft4 PTI Rh, s;
» aux_blr_1_rhs body number(double)¦null false Machinery, Aux Boiler Running Hours, Aux Boiler 1 Running Hours, s;
» aux_blr_2_rhs body number(double)¦null false Machinery, Aux Boiler Running Hours, Aux Boiler 2 Running Hours, s;
» aux_blr_3_rhs body number(double)¦null false Machinery, Aux Boiler Running Hours, Aux Boiler 3 Running Hours, s;
» aux_blr_4_rhs body number(double)¦null false Machinery, Aux Boiler Running Hours, Aux Boiler 4 Running Hours, s;

Responses

Status Meaning Description Schema
200 OK Success None
401 Unauthorized Unauthorized None

Gets Automation Report Data in a given period of time

Code samples

# You can also use wget
curl -X GET /api/public/v1/vessel-data/automation-data-reports \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/vessel-data/automation-data-reports

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
periodStart query string(date-time) false Start of requested period
periodEnd query string(date-time) false End of requested period
tagList query array[string] false List of tags: array of strings (optional)

Example responses

200 Response

[
  {
    "id": 0,
    "date_utc": "2019-08-24T14:15:22Z",
    "draft_fwd": 0.1,
    "draft_mid": 0.1,
    "draft_aft": 0.1,
    "trim": 0.1,
    "heel": 0.1,
    "lat_nmea": 0.1,
    "long_nmea": 0.1,
    "cog": 0.1,
    "sog": 0.1,
    "hdt": 0.1,
    "stw": 0.1,
    "trv_stw": 0.1,
    "cum_dst": 0.1,
    "relativewind_spd": 0.1,
    "relativewind_dir": 0.1,
    "air_temp": 0.1,
    "air_humd": 0.1,
    "sea_tmp": 0.1,
    "echo_depth": 0.1,
    "autoplt_rot": 0.1,
    "autoplt_com_course": 0.1,
    "rsa_c": 0.1,
    "rsa": 0.1,
    "me1_rpm_c": 0.1,
    "me1_rpm": 0.1,
    "me2_rpm_c": 0.1,
    "me2_rpm": 0.1,
    "me3_rpm_c": 0.1,
    "me3_rpm": 0.1,
    "me4_rpm_c": 0.1,
    "me4_rpm": 0.1,
    "sht1_pitch": 0.1,
    "sht2_pitch": 0.1,
    "sht3_pitch": 0.1,
    "sht4_pitch": 0.1,
    "prop_shft_1_rpm": 0.1,
    "prop_acc_shft_1_rpm": 0.1,
    "prop_tq_shft_1": 0.1,
    "prop_pwr_shft_1": 0.1,
    "prop_acc_shft_1_eng": 0.1,
    "prop_tot_shft_1_eng": 0.1,
    "prop_thrt_shft_1": 0.1,
    "prop_shft_2_rpm": 0.1,
    "prop_acc_shft_2_rpm": 0.1,
    "prop_tq_shft_2": 0.1,
    "prop_pwr_shft_2": 0.1,
    "prop_acc_shft_2_eng": 0.1,
    "prop_tot_shft_2_eng": 0.1,
    "prop_thrt_shft_2": 0.1,
    "prop_shft_3_rpm": 0.1,
    "prop_acc_shft_3_rpm": 0.1,
    "prop_tq_shft_3": 0.1,
    "prop_pwr_shft_3": 0.1,
    "prop_acc_shft_3_eng": 0.1,
    "prop_tot_shft_3_eng": 0.1,
    "prop_thrt_shft_3": 0.1,
    "prop_shft_4_rpm": 0.1,
    "prop_acc_shft_4_rpm": 0.1,
    "prop_tq_shft_4": 0.1,
    "prop_pwr_shft_4": 0.1,
    "prop_acc_shft_4_eng": 0.1,
    "prop_tot_shft_4_eng": 0.1,
    "prop_thrt_shft_4": 0.1,
    "bow_thruster_1_pwr": 0.1,
    "bow_thruster_1_rpm": 0.1,
    "bow_thruster_1_ptch": 0.1,
    "bow_thruster_2_pwr": 0.1,
    "bow_thruster_2_rpm": 0.1,
    "bow_thruster_2_ptch": 0.1,
    "bow_thruster_3_pwr": 0.1,
    "bow_thruster_3_rpm": 0.1,
    "bow_thruster_3_ptch": 0.1,
    "stern_thruster_1_pwr": 0.1,
    "stern_thruster_1_rpm": 0.1,
    "stern_thruster_1_ptch": 0.1,
    "stern_thruster_2_pwr": 0.1,
    "stern_thruster_2_rpm": 0.1,
    "stern_thruster_2_ptch": 0.1,
    "stern_thruster_3_pwr": 0.1,
    "stern_thruster_3_rpm": 0.1,
    "stern_thruster_3_ptch": 0.1,
    "ft_me_comb": "string",
    "ft_ae_comb": "string",
    "ft_blr_tot": "string",
    "fm_me_tot_rate": 0.1,
    "fm_me_tot_cnt": 0.1,
    "fm_me1_rate": 0.1,
    "fm_me2_rate": 0.1,
    "fm_me3_rate": 0.1,
    "fm_me4_rate": 0.1,
    "fm_me1_cnt": 0.1,
    "fm_me2_cnt": 0.1,
    "fm_me3_cnt": 0.1,
    "fm_me4_cnt": 0.1,
    "fm_ae_tot_rate": 0.1,
    "fm_ae_tot_cnt": 0.1,
    "fm_ae_1_tot_rate": 0.1,
    "fm_ae_2_tot_rate": 0.1,
    "fm_ae_3_tot_rate": 0.1,
    "fm_ae_4_tot_rate": 0.1,
    "fm_ae_5_tot_rate": 0.1,
    "fm_ae_6_tot_rate": 0.1,
    "fm_ae_7_tot_rate": 0.1,
    "fm_ae_8_tot_rate": 0.1,
    "fm_ae_1_tot_cnt": 0.1,
    "fm_ae_2_tot_cnt": 0.1,
    "fm_ae_3_tot_cnt": 0.1,
    "fm_ae_4_tot_cnt": 0.1,
    "fm_ae_5_tot_cnt": 0.1,
    "fm_ae_6_tot_cnt": 0.1,
    "fm_ae_7_tot_cnt": 0.1,
    "fm_ae_8_tot_cnt": 0.1,
    "fm_blr_all_tot_rate": 0.1,
    "fm_blr_all_tot_cnt": 0.1,
    "fm_comp_blr_1_tot_rate": 0.1,
    "fm_aux_blr_1_tot_rate": 0.1,
    "fm_aux_blr_2_tot_rate": 0.1,
    "fm_aux_blr_3_tot_rate": 0.1,
    "fm_comp_blr_1_tot_cnt": 0.1,
    "fm_aux_blr_1_tot_cnt": 0.1,
    "fm_aux_blr_2_tot_cnt": 0.1,
    "fm_aux_blr_3_tot_cnt": 0.1,
    "me_1_rhs_cnt": 0.1,
    "me_2_rhs_cnt": 0.1,
    "me_3_rhs_cnt": 0.1,
    "me_4_rhs_cnt": 0.1,
    "pwr_me_1": 0.1,
    "pwr_me_2": 0.1,
    "pwr_me_3": 0.1,
    "pwr_me_4": 0.1,
    "me_1_kw_cnt": 0.1,
    "me_2_kw_cnt": 0.1,
    "me_3_kw_cnt": 0.1,
    "me_4_kw_cnt": 0.1,
    "ae_1_pwr_tot": 0.1,
    "ae_1_pwr": 0.1,
    "ae_2_pwr": 0.1,
    "ae_3_pwr": 0.1,
    "ae_4_pwr": 0.1,
    "ae_5_pwr": 0.1,
    "ae_6_pwr": 0.1,
    "ae_7_pwr": 0.1,
    "ae_8_pwr": 0.1,
    "ae_1_kw_cnt_tot": 0.1,
    "ae_1_kw_cnt": 0.1,
    "ae_2_kw_cnt": 0.1,
    "ae_3_kw_cnt": 0.1,
    "ae_4_kw_cnt": 0.1,
    "ae_5_kw_cnt": 0.1,
    "ae_6_kw_cnt": 0.1,
    "ae_7_kw_cnt": 0.1,
    "ae_8_kw_cnt": 0.1,
    "ae_1_rhs_cnt": 0.1,
    "ae_2_rhs_cnt": 0.1,
    "ae_3_rhs_cnt": 0.1,
    "ae_4_rhs_cnt": 0.1,
    "ae_5_rhs_cnt": 0.1,
    "ae_6_rhs_cnt": 0.1,
    "ae_7_rhs_cnt": 0.1,
    "ae_8_rhs_cnt": 0.1,
    "pto_shft_1_pwr": 0.1,
    "pto_shft_1_kw_cnt": 0.1,
    "pto_shft_1_rhs": 0.1,
    "pto_shft_2_pwr": 0.1,
    "pto_shft_2_eng": 0.1,
    "pto_shft_2_rhs": 0.1,
    "pto_shft_3_pwr": 0.1,
    "pto_shft_3_kw_cnt": 0.1,
    "pto_shft_3_rhs": 0.1,
    "pto_shft_4_pwr": 0.1,
    "pto_shft_4_kw_cnt": 0.1,
    "pto_shft_4_rhs": 0.1,
    "pti_shft_1_pwr": 0.1,
    "pti_shft_1_kw_cnt": 0.1,
    "pti_shft_1_rh": 0.1,
    "pti_shft_2_pwr": 0.1,
    "pti_shft_2_kw_cnt": 0.1,
    "pti_shft_2_rh": 0.1,
    "pti_shft_3_pwr": 0.1,
    "pti_shft_3_kw_cnt": 0.1,
    "pti_shft_3_rh": 0.1,
    "pti_shft_4_pwr": 0.1,
    "pti_shft_4_kw_cnt": 0.1,
    "pti_shft_4_rh": 0.1,
    "aux_blr_1_rhs": 0.1,
    "aux_blr_2_rhs": 0.1,
    "aux_blr_3_rhs": 0.1,
    "aux_blr_4_rhs": 0.1
  }
]

Responses

Status Meaning Description Schema
200 OK Success Inline
204 No Content No Content None
400 Bad Request Bad Request None
401 Unauthorized Unauthorized None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» id integer(int32)¦null false none none
» date_utc string(date-time)¦null false none Navigational/Bridge Data, Navigation, Date/Time (UTC);
» draft_fwd number(double)¦null false none Navigational/Bridge Data, Navigation, Draft, Fwd, m;
» draft_mid number(double)¦null false none Navigational/Bridge Data, Navigation, Draft, Mid, m;
» draft_aft number(double)¦null false none Navigational/Bridge Data, Navigation, Draft, Aft, m;
» trim number(double)¦null false none Navigational/Bridge Data, Navigation, Trim, m;
» heel number(double)¦null false none Navigational/Bridge Data, Navigation, Heel, m;
» lat_nmea number(double)¦null false none Navigational/Bridge Data, Navigation, Latitude, rad;
» long_nmea number(double)¦null false none Navigational/Bridge Data, Navigation, Longitude, rad;
» cog number(double)¦null false none Navigational/Bridge Data, Navigation, Course over Ground, rad;
» sog number(double)¦null false none Navigational/Bridge Data, Navigation, Speed Over Ground, m/s;
» hdt number(double)¦null false none Navigational/Bridge Data, Navigation, Heading, rad;
» stw number(double)¦null false none Navigational/Bridge Data, Navigation, Speed through water, m/s;
» trv_stw number(double)¦null false none Navigational/Bridge Data, Navigation, Traverse Speed through water*, m/s;
» cum_dst number(double)¦null false none Navigational/Bridge Data, Navigation, Cumulative Distance*, m;
» relativewind_spd number(double)¦null false none Navigational/Bridge Data, Navigation, Relative Wind Speed, m/s;
» relativewind_dir number(double)¦null false none Navigational/Bridge Data, Navigation, Relative Wind Direction, rad;
» air_temp number(double)¦null false none Navigational/Bridge Data, Navigation, Air Temperature*, deg K;
» air_humd number(double)¦null false none Navigational/Bridge Data, Navigation, Air Humidity*, kg/M^3;
» sea_tmp number(double)¦null false none Navigational/Bridge Data, Navigation, Sea Temperature, deg K;
» echo_depth number(double)¦null false none Navigational/Bridge Data, Navigation, Depth below Keel/WL, m;
» autoplt_rot number(double)¦null false none Navigational/Bridge Data, Navigation, Rate of turn, rad;
» autoplt_com_course number(double)¦null false none Navigational/Bridge Data, Navigation, Course to Steer*, rad;
» rsa_c number(double)¦null false none Navigational/Bridge Data, Navigation, Rudder Angle Commanded, rad;
» rsa number(double)¦null false none Navigational/Bridge Data, Navigation, Rudder Angle, rad;
» me1_rpm_c number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME1 RPM Commanded, rad s^-1;
» me1_rpm number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME1 RPM (Actual), rad s^-1;
» me2_rpm_c number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME2 RPM Commanded, rad s^-1;
» me2_rpm number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME2 RPM (Actual), rad s^-1;
» me3_rpm_c number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME3 RPM Commanded, rad s^-1;
» me3_rpm number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME3 RPM (Actual), rad s^-1;
» me4_rpm_c number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME4 RPM Commanded, rad s^-1;
» me4_rpm number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME4 RPM (Actual), rad s^-1;
» sht1_pitch number(double)¦null false none Navigational/Bridge Data, Propeller, Shaft1 Pitch*, %;
» sht2_pitch number(double)¦null false none Navigational/Bridge Data, Propeller, Shaft2 Pitch*, %;
» sht3_pitch number(double)¦null false none Navigational/Bridge Data, Propeller, Shaft3 Pitch*, %;
» sht4_pitch number(double)¦null false none Navigational/Bridge Data, Propeller, Shaft4 Pitch*, %;
» prop_shft_1_rpm number(double)¦null false none Propulsion, 1 x Prop Shaft, Shaft1 RPM, rad s^-1;
» prop_acc_shft_1_rpm number(double)¦null false none Propulsion, 1 x Prop Shaft, Accumulated Shaft1 RPM, rad s^-1;
» prop_tq_shft_1 number(double)¦null false none Propulsion, 1 x Prop Shaft, Torque Shaft1, m;
» prop_pwr_shft_1 number(double)¦null false none Propulsion, 1 x Prop Shaft, Power Shaft1, W;
» prop_acc_shft_1_eng number(double)¦null false none Propulsion, 1 x Prop Shaft, Accumulated (Energy) Shaft1, Ws;
» prop_tot_shft_1_eng number(double)¦null false none Propulsion, 1 x Prop Shaft, Totalizer Energy Shaft1, Ws;
» prop_thrt_shft_1 number(double)¦null false none Propulsion, 1 x Prop Shaft, Propeller Thrust Shaft1, N;
» prop_shft_2_rpm number(double)¦null false none Propulsion, 2 x Prop Shaft, Shaft2 RPM, rad s^-1;
» prop_acc_shft_2_rpm number(double)¦null false none Propulsion, 2 x Prop Shaft, Accumulated Shaft2 RPM, rad s^-1;
» prop_tq_shft_2 number(double)¦null false none Propulsion, 2 x Prop Shaft, Torque Shaft2, m;
» prop_pwr_shft_2 number(double)¦null false none Propulsion, 2 x Prop Shaft, Power Shaft2, W;
» prop_acc_shft_2_eng number(double)¦null false none Propulsion, 2 x Prop Shaft, Accumulated (Energy) Shaft2, Ws;
» prop_tot_shft_2_eng number(double)¦null false none Propulsion, 2 x Prop Shaft, Totalizer Energy Shaft2, Ws;
» prop_thrt_shft_2 number(double)¦null false none Propulsion, 2 x Prop Shaft, Propeller Thrust Shaft2, N;
» prop_shft_3_rpm number(double)¦null false none Propulsion, 3 x Prop Shaft, Shaft3 RPM, rad s^-1;
» prop_acc_shft_3_rpm number(double)¦null false none Propulsion, 3 x Prop Shaft, Accumulated Shaft3 RPM, rad s^-1;
» prop_tq_shft_3 number(double)¦null false none Propulsion, 3 x Prop Shaft, Torque Shaft3, m;
» prop_pwr_shft_3 number(double)¦null false none Propulsion, 3 x Prop Shaft, Power Shaft3, W;
» prop_acc_shft_3_eng number(double)¦null false none Propulsion, 3 x Prop Shaft, Accumulated (Energy) Shaft3, Ws;
» prop_tot_shft_3_eng number(double)¦null false none Propulsion, 3 x Prop Shaft, Totalizer Energy Shaft3, Ws;
» prop_thrt_shft_3 number(double)¦null false none Propulsion, 3 x Prop Shaft, Propeller Thrust Shaft3, N;
» prop_shft_4_rpm number(double)¦null false none Propulsion, 3 x Prop Shaft, Shaft4 RPM, rad s^-1;
» prop_acc_shft_4_rpm number(double)¦null false none Propulsion, 3 x Prop Shaft, Accumulated Shaft4 RPM, rad s^-1;
» prop_tq_shft_4 number(double)¦null false none Propulsion, 3 x Prop Shaft, Torque Shaft4, N;
» prop_pwr_shft_4 number(double)¦null false none Propulsion, 3 x Prop Shaft, Power Shaft4, W;
» prop_acc_shft_4_eng number(double)¦null false none Propulsion, 3 x Prop Shaft, Accumulated (Energy) Shaft4, Ws;
» prop_tot_shft_4_eng number(double)¦null false none Propulsion, 3 x Prop Shaft, Totalizer Energy Shaft4, Ws;
» prop_thrt_shft_4 number(double)¦null false none Propulsion, 3 x Prop Shaft, Propeller Thrust Shaft4, V;
» bow_thruster_1_pwr number(double)¦null false none Propulsion, Bow Thruster(s), Power, W;
» bow_thruster_1_rpm number(double)¦null false none Propulsion, Bow Thruster(s), RPM, rad s^-1;
» bow_thruster_1_ptch number(double)¦null false none Propulsion, Bow Thruster(s), Pitch, %;
» bow_thruster_2_pwr number(double)¦null false none Propulsion, Bow Thruster(s), Power, W;
» bow_thruster_2_rpm number(double)¦null false none Propulsion, Bow Thruster(s), RPM, rad s^-1;
» bow_thruster_2_ptch number(double)¦null false none Propulsion, Bow Thruster(s), Pitch, %;
» bow_thruster_3_pwr number(double)¦null false none Propulsion, Bow Thruster(s), Power, W;
» bow_thruster_3_rpm number(double)¦null false none Propulsion, Bow Thruster(s), RPM, rad s^-1;
» bow_thruster_3_ptch number(double)¦null false none Propulsion, Bow Thruster(s), Pitch, %;
» stern_thruster_1_pwr number(double)¦null false none Propulsion, Stern Thruster(s), Power, W;
» stern_thruster_1_rpm number(double)¦null false none Propulsion, Stern Thruster(s), RPM, rad s^-1;
» stern_thruster_1_ptch number(double)¦null false none Propulsion, Stern Thruster(s), Pitch, %;
» stern_thruster_2_pwr number(double)¦null false none Propulsion, Stern Thruster(s), Power, W;
» stern_thruster_2_rpm number(double)¦null false none Propulsion, Stern Thruster(s), RPM, rad s^-1;
» stern_thruster_2_ptch number(double)¦null false none Propulsion, Stern Thruster(s), Pitch, %;
» stern_thruster_3_pwr number(double)¦null false none Propulsion, Stern Thruster(s), Power, W;
» stern_thruster_3_rpm number(double)¦null false none Propulsion, Stern Thruster(s), RPM, rad s^-1;
» stern_thruster_3_ptch number(double)¦null false none Propulsion, Stern Thruster(s), Pitch, %;
» ft_me_comb string¦null false none Fuel, Event Reporting by users in third-party systems, Fuel Type ME Combined;
» ft_ae_comb string¦null false none Fuel, Event Reporting by users in third-party systems, Fuel Type AE Combined;
» ft_blr_tot string¦null false none Fuel, Event Reporting by users in third-party systems, Fuel Type Boiler All Total;
» fm_me_tot_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME Total Consumption Rate (Combined), kg/s;
» fm_me_tot_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME Total consumption Counter (Combined), kg/s;
» fm_me1_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME1 Total Consumption Rate, kg/s;
» fm_me2_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME2 Total Consumption Rate, kg/s;
» fm_me3_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME3 Total Consumption Rate, kg/s;
» fm_me4_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME4 Total Consumption Rate, kg/s;
» fm_me1_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME1 Total Consumption Counter, kg;
» fm_me2_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME2 Total Consumption Counter, kg;
» fm_me3_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME3 Total Consumption Counter, kg;
» fm_me4_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME4 Total Consumption Counter, kg;
» fm_ae_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, All AE Total Consumption Rate, kg/s;
» fm_ae_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, All AE Total Consumption Counter, kg;
» fm_ae_1_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE1 Total Consumption rate, kg/s;
» fm_ae_2_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE2 Total Consumption rate, kg/s;
» fm_ae_3_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE3 Total Consumption rate, kg/s;
» fm_ae_4_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE4 Total Consumption rate, kg/s;
» fm_ae_5_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE5 Total Consumption rate, kg/s;
» fm_ae_6_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE6 Total Consumption rate, kg/s;
» fm_ae_7_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE7 Total Consumption rate, kg/s;
» fm_ae_8_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE8 Total Consumption rate, kg/s;
» fm_ae_1_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE1 Total Cons. Counter, kg;
» fm_ae_2_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE2 Total Cons. Counter, kg;
» fm_ae_3_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE3 Total Cons. Counter, kg;
» fm_ae_4_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE4 Total Cons. Counter, kg;
» fm_ae_5_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE5 Total Cons. Counter, kg;
» fm_ae_6_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE6 Total Cons. Counter, kg;
» fm_ae_7_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE7 Total Cons. Counter, kg;
» fm_ae_8_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE8 Total Cons. Counter, kg;
» fm_blr_all_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Boiler All Total Cons. Rate, kg/s;
» fm_blr_all_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Boiler All Total Cons. Counter, kg;
» fm_comp_blr_1_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Composite Boiler Total Cons. Rate, kg/s;
» fm_aux_blr_1_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler1 Total Cons. Rate, kg/s;
» fm_aux_blr_2_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler2 Total Cons. Rate, kg/s;
» fm_aux_blr_3_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler3 Total Cons. Rate, kg/s;
» fm_comp_blr_1_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Composite Boiler Total Cons. Counter, kg;
» fm_aux_blr_1_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler1 Total Cons. Counter, kg;
» fm_aux_blr_2_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler2 Total Cons. Counter, kg;
» fm_aux_blr_3_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler3 Total Cons. Counter, kg;
» me_1_rhs_cnt number(double)¦null false none Machinery, ME Running Hours, ME 1 Running Hours, s;
» me_2_rhs_cnt number(double)¦null false none Machinery, ME Running Hours, ME 2 Running Hours, s;
» me_3_rhs_cnt number(double)¦null false none Machinery, ME Running Hours, ME 3 Running Hours, s;
» me_4_rhs_cnt number(double)¦null false none Machinery, ME Running Hours, ME 4 Running Hours, s;
» pwr_me_1 number(double)¦null false none Machinery, ME Power, ME 1 Power, W;
» pwr_me_2 number(double)¦null false none Machinery, ME Power, ME 2 Power, W;
» pwr_me_3 number(double)¦null false none Machinery, ME Power, ME 3 Power, W;
» pwr_me_4 number(double)¦null false none Machinery, ME Power, ME 4 Power, W;
» me_1_kw_cnt number(double)¦null false none Machinery, ME Energy, ME 1 Energy, Ws;
» me_2_kw_cnt number(double)¦null false none Machinery, ME Energy, ME 2 Energy, Ws;
» me_3_kw_cnt number(double)¦null false none Machinery, ME Energy, ME 3 Energy, Ws;
» me_4_kw_cnt number(double)¦null false none Machinery, ME Energy, ME 4 Energy, Ws;
» ae_1_pwr_tot number(double)¦null false none Machinery, AE Power, AE Total Power, W;
» ae_1_pwr number(double)¦null false none Machinery, AE Power, AE 1 Power, W;
» ae_2_pwr number(double)¦null false none Machinery, AE Power, AE 2 Power, W;
» ae_3_pwr number(double)¦null false none Machinery, AE Power, AE 3 Power, W;
» ae_4_pwr number(double)¦null false none Machinery, AE Power, AE 4 Power, W;
» ae_5_pwr number(double)¦null false none Machinery, AE Power, AE 5 Power, W;
» ae_6_pwr number(double)¦null false none Machinery, AE Power, AE 6 Power, W;
» ae_7_pwr number(double)¦null false none Machinery, AE Power, AE 7 Power, W;
» ae_8_pwr number(double)¦null false none Machinery, AE Power, AE 8 Power, W;
» ae_1_kw_cnt_tot number(double)¦null false none Machinery, AE Energy, AE Total Energy, Ws;
» ae_1_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 1 Energy, Ws;
» ae_2_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 2 Energy, Ws;
» ae_3_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 3 Energy, Ws;
» ae_4_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 4 Energy, Ws;
» ae_5_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 5 Energy, Ws;
» ae_6_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 6 Energy, Ws;
» ae_7_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 7 Energy, Ws;
» ae_8_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 8 Energy, Ws;
» ae_1_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_2_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_3_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_4_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_5_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_6_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_7_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_8_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» pto_shft_1_pwr number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft1 PTO Power, W;
» pto_shft_1_kw_cnt number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft1 PTO Energy, Ws;
» pto_shft_1_rhs number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft1 PTO Rh, s;
» pto_shft_2_pwr number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft2 PTO Power, W;
» pto_shft_2_eng number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft2 PTO Energy, Ws;
» pto_shft_2_rhs number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft2 PTO Rh, s;
» pto_shft_3_pwr number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft3 PTO Power, W;
» pto_shft_3_kw_cnt number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft3 PTO Energy, Ws;
» pto_shft_3_rhs number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft3 PTO Rh, s;
» pto_shft_4_pwr number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft4 PTO Power, W;
» pto_shft_4_kw_cnt number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft4 PTO Energy, Ws;
» pto_shft_4_rhs number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft4 PTO Rh, s;
» pti_shft_1_pwr number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft1 PTI Power, W;
» pti_shft_1_kw_cnt number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft1 PTI Energy, Ws;
» pti_shft_1_rh number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft1 PTI Rh, s;
» pti_shft_2_pwr number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft2 PTI Power, W;
» pti_shft_2_kw_cnt number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft2 PTI Energy, Ws;
» pti_shft_2_rh number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft2 PTI Rh, s;
» pti_shft_3_pwr number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft3 PTI Power, W;
» pti_shft_3_kw_cnt number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft3 PTI Energy, Ws;
» pti_shft_3_rh number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft3 PTI Rh, s;
» pti_shft_4_pwr number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft4 PTI Power, W;
» pti_shft_4_kw_cnt number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft4 PTI Energy, Ws;
» pti_shft_4_rh number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft4 PTI Rh, s;
» aux_blr_1_rhs number(double)¦null false none Machinery, Aux Boiler Running Hours, Aux Boiler 1 Running Hours, s;
» aux_blr_2_rhs number(double)¦null false none Machinery, Aux Boiler Running Hours, Aux Boiler 2 Running Hours, s;
» aux_blr_3_rhs number(double)¦null false none Machinery, Aux Boiler Running Hours, Aux Boiler 3 Running Hours, s;
» aux_blr_4_rhs number(double)¦null false none Machinery, Aux Boiler Running Hours, Aux Boiler 4 Running Hours, s;

Gets average values for Automation Report Data in a given period of time

Code samples

# You can also use wget
curl -X GET /api/public/v1/vessel-data/automation-data-report/average \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

GET /api/public/v1/vessel-data/automation-data-report/average

A session token is required to access this resource. It has to be used as a bearer token.

Parameters

Name In Type Required Description
periodStart query string(date-time) false Start of requested period
periodEnd query string(date-time) false End of requested period
tagList query array[string] false List of tags: array of strings

Example responses

200 Response

{
  "id": 0,
  "date_utc": "2019-08-24T14:15:22Z",
  "draft_fwd": 0.1,
  "draft_mid": 0.1,
  "draft_aft": 0.1,
  "trim": 0.1,
  "heel": 0.1,
  "lat_nmea": 0.1,
  "long_nmea": 0.1,
  "cog": 0.1,
  "sog": 0.1,
  "hdt": 0.1,
  "stw": 0.1,
  "trv_stw": 0.1,
  "cum_dst": 0.1,
  "relativewind_spd": 0.1,
  "relativewind_dir": 0.1,
  "air_temp": 0.1,
  "air_humd": 0.1,
  "sea_tmp": 0.1,
  "echo_depth": 0.1,
  "autoplt_rot": 0.1,
  "autoplt_com_course": 0.1,
  "rsa_c": 0.1,
  "rsa": 0.1,
  "me1_rpm_c": 0.1,
  "me1_rpm": 0.1,
  "me2_rpm_c": 0.1,
  "me2_rpm": 0.1,
  "me3_rpm_c": 0.1,
  "me3_rpm": 0.1,
  "me4_rpm_c": 0.1,
  "me4_rpm": 0.1,
  "sht1_pitch": 0.1,
  "sht2_pitch": 0.1,
  "sht3_pitch": 0.1,
  "sht4_pitch": 0.1,
  "prop_shft_1_rpm": 0.1,
  "prop_acc_shft_1_rpm": 0.1,
  "prop_tq_shft_1": 0.1,
  "prop_pwr_shft_1": 0.1,
  "prop_acc_shft_1_eng": 0.1,
  "prop_tot_shft_1_eng": 0.1,
  "prop_thrt_shft_1": 0.1,
  "prop_shft_2_rpm": 0.1,
  "prop_acc_shft_2_rpm": 0.1,
  "prop_tq_shft_2": 0.1,
  "prop_pwr_shft_2": 0.1,
  "prop_acc_shft_2_eng": 0.1,
  "prop_tot_shft_2_eng": 0.1,
  "prop_thrt_shft_2": 0.1,
  "prop_shft_3_rpm": 0.1,
  "prop_acc_shft_3_rpm": 0.1,
  "prop_tq_shft_3": 0.1,
  "prop_pwr_shft_3": 0.1,
  "prop_acc_shft_3_eng": 0.1,
  "prop_tot_shft_3_eng": 0.1,
  "prop_thrt_shft_3": 0.1,
  "prop_shft_4_rpm": 0.1,
  "prop_acc_shft_4_rpm": 0.1,
  "prop_tq_shft_4": 0.1,
  "prop_pwr_shft_4": 0.1,
  "prop_acc_shft_4_eng": 0.1,
  "prop_tot_shft_4_eng": 0.1,
  "prop_thrt_shft_4": 0.1,
  "bow_thruster_1_pwr": 0.1,
  "bow_thruster_1_rpm": 0.1,
  "bow_thruster_1_ptch": 0.1,
  "bow_thruster_2_pwr": 0.1,
  "bow_thruster_2_rpm": 0.1,
  "bow_thruster_2_ptch": 0.1,
  "bow_thruster_3_pwr": 0.1,
  "bow_thruster_3_rpm": 0.1,
  "bow_thruster_3_ptch": 0.1,
  "stern_thruster_1_pwr": 0.1,
  "stern_thruster_1_rpm": 0.1,
  "stern_thruster_1_ptch": 0.1,
  "stern_thruster_2_pwr": 0.1,
  "stern_thruster_2_rpm": 0.1,
  "stern_thruster_2_ptch": 0.1,
  "stern_thruster_3_pwr": 0.1,
  "stern_thruster_3_rpm": 0.1,
  "stern_thruster_3_ptch": 0.1,
  "ft_me_comb": "string",
  "ft_ae_comb": "string",
  "ft_blr_tot": "string",
  "fm_me_tot_rate": 0.1,
  "fm_me_tot_cnt": 0.1,
  "fm_me1_rate": 0.1,
  "fm_me2_rate": 0.1,
  "fm_me3_rate": 0.1,
  "fm_me4_rate": 0.1,
  "fm_me1_cnt": 0.1,
  "fm_me2_cnt": 0.1,
  "fm_me3_cnt": 0.1,
  "fm_me4_cnt": 0.1,
  "fm_ae_tot_rate": 0.1,
  "fm_ae_tot_cnt": 0.1,
  "fm_ae_1_tot_rate": 0.1,
  "fm_ae_2_tot_rate": 0.1,
  "fm_ae_3_tot_rate": 0.1,
  "fm_ae_4_tot_rate": 0.1,
  "fm_ae_5_tot_rate": 0.1,
  "fm_ae_6_tot_rate": 0.1,
  "fm_ae_7_tot_rate": 0.1,
  "fm_ae_8_tot_rate": 0.1,
  "fm_ae_1_tot_cnt": 0.1,
  "fm_ae_2_tot_cnt": 0.1,
  "fm_ae_3_tot_cnt": 0.1,
  "fm_ae_4_tot_cnt": 0.1,
  "fm_ae_5_tot_cnt": 0.1,
  "fm_ae_6_tot_cnt": 0.1,
  "fm_ae_7_tot_cnt": 0.1,
  "fm_ae_8_tot_cnt": 0.1,
  "fm_blr_all_tot_rate": 0.1,
  "fm_blr_all_tot_cnt": 0.1,
  "fm_comp_blr_1_tot_rate": 0.1,
  "fm_aux_blr_1_tot_rate": 0.1,
  "fm_aux_blr_2_tot_rate": 0.1,
  "fm_aux_blr_3_tot_rate": 0.1,
  "fm_comp_blr_1_tot_cnt": 0.1,
  "fm_aux_blr_1_tot_cnt": 0.1,
  "fm_aux_blr_2_tot_cnt": 0.1,
  "fm_aux_blr_3_tot_cnt": 0.1,
  "me_1_rhs_cnt": 0.1,
  "me_2_rhs_cnt": 0.1,
  "me_3_rhs_cnt": 0.1,
  "me_4_rhs_cnt": 0.1,
  "pwr_me_1": 0.1,
  "pwr_me_2": 0.1,
  "pwr_me_3": 0.1,
  "pwr_me_4": 0.1,
  "me_1_kw_cnt": 0.1,
  "me_2_kw_cnt": 0.1,
  "me_3_kw_cnt": 0.1,
  "me_4_kw_cnt": 0.1,
  "ae_1_pwr_tot": 0.1,
  "ae_1_pwr": 0.1,
  "ae_2_pwr": 0.1,
  "ae_3_pwr": 0.1,
  "ae_4_pwr": 0.1,
  "ae_5_pwr": 0.1,
  "ae_6_pwr": 0.1,
  "ae_7_pwr": 0.1,
  "ae_8_pwr": 0.1,
  "ae_1_kw_cnt_tot": 0.1,
  "ae_1_kw_cnt": 0.1,
  "ae_2_kw_cnt": 0.1,
  "ae_3_kw_cnt": 0.1,
  "ae_4_kw_cnt": 0.1,
  "ae_5_kw_cnt": 0.1,
  "ae_6_kw_cnt": 0.1,
  "ae_7_kw_cnt": 0.1,
  "ae_8_kw_cnt": 0.1,
  "ae_1_rhs_cnt": 0.1,
  "ae_2_rhs_cnt": 0.1,
  "ae_3_rhs_cnt": 0.1,
  "ae_4_rhs_cnt": 0.1,
  "ae_5_rhs_cnt": 0.1,
  "ae_6_rhs_cnt": 0.1,
  "ae_7_rhs_cnt": 0.1,
  "ae_8_rhs_cnt": 0.1,
  "pto_shft_1_pwr": 0.1,
  "pto_shft_1_kw_cnt": 0.1,
  "pto_shft_1_rhs": 0.1,
  "pto_shft_2_pwr": 0.1,
  "pto_shft_2_eng": 0.1,
  "pto_shft_2_rhs": 0.1,
  "pto_shft_3_pwr": 0.1,
  "pto_shft_3_kw_cnt": 0.1,
  "pto_shft_3_rhs": 0.1,
  "pto_shft_4_pwr": 0.1,
  "pto_shft_4_kw_cnt": 0.1,
  "pto_shft_4_rhs": 0.1,
  "pti_shft_1_pwr": 0.1,
  "pti_shft_1_kw_cnt": 0.1,
  "pti_shft_1_rh": 0.1,
  "pti_shft_2_pwr": 0.1,
  "pti_shft_2_kw_cnt": 0.1,
  "pti_shft_2_rh": 0.1,
  "pti_shft_3_pwr": 0.1,
  "pti_shft_3_kw_cnt": 0.1,
  "pti_shft_3_rh": 0.1,
  "pti_shft_4_pwr": 0.1,
  "pti_shft_4_kw_cnt": 0.1,
  "pti_shft_4_rh": 0.1,
  "aux_blr_1_rhs": 0.1,
  "aux_blr_2_rhs": 0.1,
  "aux_blr_3_rhs": 0.1,
  "aux_blr_4_rhs": 0.1
}

Responses

Status Meaning Description Schema
200 OK Success Inline
204 No Content No Content None
400 Bad Request Bad Request None
401 Unauthorized Unauthorized None

Response Schema

Status Code 200

Name Type Required Restrictions Description
» id integer(int32)¦null false none none
» date_utc string(date-time)¦null false none Navigational/Bridge Data, Navigation, Date/Time (UTC);
» draft_fwd number(double)¦null false none Navigational/Bridge Data, Navigation, Draft, Fwd, m;
» draft_mid number(double)¦null false none Navigational/Bridge Data, Navigation, Draft, Mid, m;
» draft_aft number(double)¦null false none Navigational/Bridge Data, Navigation, Draft, Aft, m;
» trim number(double)¦null false none Navigational/Bridge Data, Navigation, Trim, m;
» heel number(double)¦null false none Navigational/Bridge Data, Navigation, Heel, m;
» lat_nmea number(double)¦null false none Navigational/Bridge Data, Navigation, Latitude, rad;
» long_nmea number(double)¦null false none Navigational/Bridge Data, Navigation, Longitude, rad;
» cog number(double)¦null false none Navigational/Bridge Data, Navigation, Course over Ground, rad;
» sog number(double)¦null false none Navigational/Bridge Data, Navigation, Speed Over Ground, m/s;
» hdt number(double)¦null false none Navigational/Bridge Data, Navigation, Heading, rad;
» stw number(double)¦null false none Navigational/Bridge Data, Navigation, Speed through water, m/s;
» trv_stw number(double)¦null false none Navigational/Bridge Data, Navigation, Traverse Speed through water*, m/s;
» cum_dst number(double)¦null false none Navigational/Bridge Data, Navigation, Cumulative Distance*, m;
» relativewind_spd number(double)¦null false none Navigational/Bridge Data, Navigation, Relative Wind Speed, m/s;
» relativewind_dir number(double)¦null false none Navigational/Bridge Data, Navigation, Relative Wind Direction, rad;
» air_temp number(double)¦null false none Navigational/Bridge Data, Navigation, Air Temperature*, deg K;
» air_humd number(double)¦null false none Navigational/Bridge Data, Navigation, Air Humidity*, kg/M^3;
» sea_tmp number(double)¦null false none Navigational/Bridge Data, Navigation, Sea Temperature, deg K;
» echo_depth number(double)¦null false none Navigational/Bridge Data, Navigation, Depth below Keel/WL, m;
» autoplt_rot number(double)¦null false none Navigational/Bridge Data, Navigation, Rate of turn, rad;
» autoplt_com_course number(double)¦null false none Navigational/Bridge Data, Navigation, Course to Steer*, rad;
» rsa_c number(double)¦null false none Navigational/Bridge Data, Navigation, Rudder Angle Commanded, rad;
» rsa number(double)¦null false none Navigational/Bridge Data, Navigation, Rudder Angle, rad;
» me1_rpm_c number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME1 RPM Commanded, rad s^-1;
» me1_rpm number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME1 RPM (Actual), rad s^-1;
» me2_rpm_c number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME2 RPM Commanded, rad s^-1;
» me2_rpm number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME2 RPM (Actual), rad s^-1;
» me3_rpm_c number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME3 RPM Commanded, rad s^-1;
» me3_rpm number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME3 RPM (Actual), rad s^-1;
» me4_rpm_c number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME4 RPM Commanded, rad s^-1;
» me4_rpm number(double)¦null false none Navigational/Bridge Data, Main Engine Control, ME4 RPM (Actual), rad s^-1;
» sht1_pitch number(double)¦null false none Navigational/Bridge Data, Propeller, Shaft1 Pitch*, %;
» sht2_pitch number(double)¦null false none Navigational/Bridge Data, Propeller, Shaft2 Pitch*, %;
» sht3_pitch number(double)¦null false none Navigational/Bridge Data, Propeller, Shaft3 Pitch*, %;
» sht4_pitch number(double)¦null false none Navigational/Bridge Data, Propeller, Shaft4 Pitch*, %;
» prop_shft_1_rpm number(double)¦null false none Propulsion, 1 x Prop Shaft, Shaft1 RPM, rad s^-1;
» prop_acc_shft_1_rpm number(double)¦null false none Propulsion, 1 x Prop Shaft, Accumulated Shaft1 RPM, rad s^-1;
» prop_tq_shft_1 number(double)¦null false none Propulsion, 1 x Prop Shaft, Torque Shaft1, m;
» prop_pwr_shft_1 number(double)¦null false none Propulsion, 1 x Prop Shaft, Power Shaft1, W;
» prop_acc_shft_1_eng number(double)¦null false none Propulsion, 1 x Prop Shaft, Accumulated (Energy) Shaft1, Ws;
» prop_tot_shft_1_eng number(double)¦null false none Propulsion, 1 x Prop Shaft, Totalizer Energy Shaft1, Ws;
» prop_thrt_shft_1 number(double)¦null false none Propulsion, 1 x Prop Shaft, Propeller Thrust Shaft1, N;
» prop_shft_2_rpm number(double)¦null false none Propulsion, 2 x Prop Shaft, Shaft2 RPM, rad s^-1;
» prop_acc_shft_2_rpm number(double)¦null false none Propulsion, 2 x Prop Shaft, Accumulated Shaft2 RPM, rad s^-1;
» prop_tq_shft_2 number(double)¦null false none Propulsion, 2 x Prop Shaft, Torque Shaft2, m;
» prop_pwr_shft_2 number(double)¦null false none Propulsion, 2 x Prop Shaft, Power Shaft2, W;
» prop_acc_shft_2_eng number(double)¦null false none Propulsion, 2 x Prop Shaft, Accumulated (Energy) Shaft2, Ws;
» prop_tot_shft_2_eng number(double)¦null false none Propulsion, 2 x Prop Shaft, Totalizer Energy Shaft2, Ws;
» prop_thrt_shft_2 number(double)¦null false none Propulsion, 2 x Prop Shaft, Propeller Thrust Shaft2, N;
» prop_shft_3_rpm number(double)¦null false none Propulsion, 3 x Prop Shaft, Shaft3 RPM, rad s^-1;
» prop_acc_shft_3_rpm number(double)¦null false none Propulsion, 3 x Prop Shaft, Accumulated Shaft3 RPM, rad s^-1;
» prop_tq_shft_3 number(double)¦null false none Propulsion, 3 x Prop Shaft, Torque Shaft3, m;
» prop_pwr_shft_3 number(double)¦null false none Propulsion, 3 x Prop Shaft, Power Shaft3, W;
» prop_acc_shft_3_eng number(double)¦null false none Propulsion, 3 x Prop Shaft, Accumulated (Energy) Shaft3, Ws;
» prop_tot_shft_3_eng number(double)¦null false none Propulsion, 3 x Prop Shaft, Totalizer Energy Shaft3, Ws;
» prop_thrt_shft_3 number(double)¦null false none Propulsion, 3 x Prop Shaft, Propeller Thrust Shaft3, N;
» prop_shft_4_rpm number(double)¦null false none Propulsion, 3 x Prop Shaft, Shaft4 RPM, rad s^-1;
» prop_acc_shft_4_rpm number(double)¦null false none Propulsion, 3 x Prop Shaft, Accumulated Shaft4 RPM, rad s^-1;
» prop_tq_shft_4 number(double)¦null false none Propulsion, 3 x Prop Shaft, Torque Shaft4, N;
» prop_pwr_shft_4 number(double)¦null false none Propulsion, 3 x Prop Shaft, Power Shaft4, W;
» prop_acc_shft_4_eng number(double)¦null false none Propulsion, 3 x Prop Shaft, Accumulated (Energy) Shaft4, Ws;
» prop_tot_shft_4_eng number(double)¦null false none Propulsion, 3 x Prop Shaft, Totalizer Energy Shaft4, Ws;
» prop_thrt_shft_4 number(double)¦null false none Propulsion, 3 x Prop Shaft, Propeller Thrust Shaft4, V;
» bow_thruster_1_pwr number(double)¦null false none Propulsion, Bow Thruster(s), Power, W;
» bow_thruster_1_rpm number(double)¦null false none Propulsion, Bow Thruster(s), RPM, rad s^-1;
» bow_thruster_1_ptch number(double)¦null false none Propulsion, Bow Thruster(s), Pitch, %;
» bow_thruster_2_pwr number(double)¦null false none Propulsion, Bow Thruster(s), Power, W;
» bow_thruster_2_rpm number(double)¦null false none Propulsion, Bow Thruster(s), RPM, rad s^-1;
» bow_thruster_2_ptch number(double)¦null false none Propulsion, Bow Thruster(s), Pitch, %;
» bow_thruster_3_pwr number(double)¦null false none Propulsion, Bow Thruster(s), Power, W;
» bow_thruster_3_rpm number(double)¦null false none Propulsion, Bow Thruster(s), RPM, rad s^-1;
» bow_thruster_3_ptch number(double)¦null false none Propulsion, Bow Thruster(s), Pitch, %;
» stern_thruster_1_pwr number(double)¦null false none Propulsion, Stern Thruster(s), Power, W;
» stern_thruster_1_rpm number(double)¦null false none Propulsion, Stern Thruster(s), RPM, rad s^-1;
» stern_thruster_1_ptch number(double)¦null false none Propulsion, Stern Thruster(s), Pitch, %;
» stern_thruster_2_pwr number(double)¦null false none Propulsion, Stern Thruster(s), Power, W;
» stern_thruster_2_rpm number(double)¦null false none Propulsion, Stern Thruster(s), RPM, rad s^-1;
» stern_thruster_2_ptch number(double)¦null false none Propulsion, Stern Thruster(s), Pitch, %;
» stern_thruster_3_pwr number(double)¦null false none Propulsion, Stern Thruster(s), Power, W;
» stern_thruster_3_rpm number(double)¦null false none Propulsion, Stern Thruster(s), RPM, rad s^-1;
» stern_thruster_3_ptch number(double)¦null false none Propulsion, Stern Thruster(s), Pitch, %;
» ft_me_comb string¦null false none Fuel, Event Reporting by users in third-party systems, Fuel Type ME Combined;
» ft_ae_comb string¦null false none Fuel, Event Reporting by users in third-party systems, Fuel Type AE Combined;
» ft_blr_tot string¦null false none Fuel, Event Reporting by users in third-party systems, Fuel Type Boiler All Total;
» fm_me_tot_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME Total Consumption Rate (Combined), kg/s;
» fm_me_tot_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME Total consumption Counter (Combined), kg/s;
» fm_me1_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME1 Total Consumption Rate, kg/s;
» fm_me2_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME2 Total Consumption Rate, kg/s;
» fm_me3_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME3 Total Consumption Rate, kg/s;
» fm_me4_rate number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME4 Total Consumption Rate, kg/s;
» fm_me1_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME1 Total Consumption Counter, kg;
» fm_me2_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME2 Total Consumption Counter, kg;
» fm_me3_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME3 Total Consumption Counter, kg;
» fm_me4_cnt number(double)¦null false none Fuel, Main Engine Calculated per Consumer, ME4 Total Consumption Counter, kg;
» fm_ae_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, All AE Total Consumption Rate, kg/s;
» fm_ae_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, All AE Total Consumption Counter, kg;
» fm_ae_1_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE1 Total Consumption rate, kg/s;
» fm_ae_2_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE2 Total Consumption rate, kg/s;
» fm_ae_3_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE3 Total Consumption rate, kg/s;
» fm_ae_4_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE4 Total Consumption rate, kg/s;
» fm_ae_5_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE5 Total Consumption rate, kg/s;
» fm_ae_6_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE6 Total Consumption rate, kg/s;
» fm_ae_7_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE7 Total Consumption rate, kg/s;
» fm_ae_8_tot_rate number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE8 Total Consumption rate, kg/s;
» fm_ae_1_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE1 Total Cons. Counter, kg;
» fm_ae_2_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE2 Total Cons. Counter, kg;
» fm_ae_3_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE3 Total Cons. Counter, kg;
» fm_ae_4_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE4 Total Cons. Counter, kg;
» fm_ae_5_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE5 Total Cons. Counter, kg;
» fm_ae_6_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE6 Total Cons. Counter, kg;
» fm_ae_7_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE7 Total Cons. Counter, kg;
» fm_ae_8_tot_cnt number(double)¦null false none Fuel, Aux Engine Consumption per consumer, AE8 Total Cons. Counter, kg;
» fm_blr_all_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Boiler All Total Cons. Rate, kg/s;
» fm_blr_all_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Boiler All Total Cons. Counter, kg;
» fm_comp_blr_1_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Composite Boiler Total Cons. Rate, kg/s;
» fm_aux_blr_1_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler1 Total Cons. Rate, kg/s;
» fm_aux_blr_2_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler2 Total Cons. Rate, kg/s;
» fm_aux_blr_3_tot_rate number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler3 Total Cons. Rate, kg/s;
» fm_comp_blr_1_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Composite Boiler Total Cons. Counter, kg;
» fm_aux_blr_1_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler1 Total Cons. Counter, kg;
» fm_aux_blr_2_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler2 Total Cons. Counter, kg;
» fm_aux_blr_3_tot_cnt number(double)¦null false none Fuel, Aux Boilers, Consumption per consumer, Aux Boiler3 Total Cons. Counter, kg;
» me_1_rhs_cnt number(double)¦null false none Machinery, ME Running Hours, ME 1 Running Hours, s;
» me_2_rhs_cnt number(double)¦null false none Machinery, ME Running Hours, ME 2 Running Hours, s;
» me_3_rhs_cnt number(double)¦null false none Machinery, ME Running Hours, ME 3 Running Hours, s;
» me_4_rhs_cnt number(double)¦null false none Machinery, ME Running Hours, ME 4 Running Hours, s;
» pwr_me_1 number(double)¦null false none Machinery, ME Power, ME 1 Power, W;
» pwr_me_2 number(double)¦null false none Machinery, ME Power, ME 2 Power, W;
» pwr_me_3 number(double)¦null false none Machinery, ME Power, ME 3 Power, W;
» pwr_me_4 number(double)¦null false none Machinery, ME Power, ME 4 Power, W;
» me_1_kw_cnt number(double)¦null false none Machinery, ME Energy, ME 1 Energy, Ws;
» me_2_kw_cnt number(double)¦null false none Machinery, ME Energy, ME 2 Energy, Ws;
» me_3_kw_cnt number(double)¦null false none Machinery, ME Energy, ME 3 Energy, Ws;
» me_4_kw_cnt number(double)¦null false none Machinery, ME Energy, ME 4 Energy, Ws;
» ae_1_pwr_tot number(double)¦null false none Machinery, AE Power, AE Total Power, W;
» ae_1_pwr number(double)¦null false none Machinery, AE Power, AE 1 Power, W;
» ae_2_pwr number(double)¦null false none Machinery, AE Power, AE 2 Power, W;
» ae_3_pwr number(double)¦null false none Machinery, AE Power, AE 3 Power, W;
» ae_4_pwr number(double)¦null false none Machinery, AE Power, AE 4 Power, W;
» ae_5_pwr number(double)¦null false none Machinery, AE Power, AE 5 Power, W;
» ae_6_pwr number(double)¦null false none Machinery, AE Power, AE 6 Power, W;
» ae_7_pwr number(double)¦null false none Machinery, AE Power, AE 7 Power, W;
» ae_8_pwr number(double)¦null false none Machinery, AE Power, AE 8 Power, W;
» ae_1_kw_cnt_tot number(double)¦null false none Machinery, AE Energy, AE Total Energy, Ws;
» ae_1_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 1 Energy, Ws;
» ae_2_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 2 Energy, Ws;
» ae_3_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 3 Energy, Ws;
» ae_4_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 4 Energy, Ws;
» ae_5_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 5 Energy, Ws;
» ae_6_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 6 Energy, Ws;
» ae_7_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 7 Energy, Ws;
» ae_8_kw_cnt number(double)¦null false none Machinery, AE Energy, AE 8 Energy, Ws;
» ae_1_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_2_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_3_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_4_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_5_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_6_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_7_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» ae_8_rhs_cnt number(double)¦null false none Machinery, AE Running Hours, AE 1 Running Time, s;
» pto_shft_1_pwr number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft1 PTO Power, W;
» pto_shft_1_kw_cnt number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft1 PTO Energy, Ws;
» pto_shft_1_rhs number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft1 PTO Rh, s;
» pto_shft_2_pwr number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft2 PTO Power, W;
» pto_shft_2_eng number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft2 PTO Energy, Ws;
» pto_shft_2_rhs number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft2 PTO Rh, s;
» pto_shft_3_pwr number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft3 PTO Power, W;
» pto_shft_3_kw_cnt number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft3 PTO Energy, Ws;
» pto_shft_3_rhs number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft3 PTO Rh, s;
» pto_shft_4_pwr number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft4 PTO Power, W;
» pto_shft_4_kw_cnt number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft4 PTO Energy, Ws;
» pto_shft_4_rhs number(double)¦null false none Machinery, Shaft Generator (PTO), Shaft4 PTO Rh, s;
» pti_shft_1_pwr number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft1 PTI Power, W;
» pti_shft_1_kw_cnt number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft1 PTI Energy, Ws;
» pti_shft_1_rh number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft1 PTI Rh, s;
» pti_shft_2_pwr number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft2 PTI Power, W;
» pti_shft_2_kw_cnt number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft2 PTI Energy, Ws;
» pti_shft_2_rh number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft2 PTI Rh, s;
» pti_shft_3_pwr number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft3 PTI Power, W;
» pti_shft_3_kw_cnt number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft3 PTI Energy, Ws;
» pti_shft_3_rh number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft3 PTI Rh, s;
» pti_shft_4_pwr number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft4 PTI Power, W;
» pti_shft_4_kw_cnt number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft4 PTI Energy, Ws;
» pti_shft_4_rh number(double)¦null false none Machinery, Shaft Motor (PTI), Shaft4 PTI Rh, s;
» aux_blr_1_rhs number(double)¦null false none Machinery, Aux Boiler Running Hours, Aux Boiler 1 Running Hours, s;
» aux_blr_2_rhs number(double)¦null false none Machinery, Aux Boiler Running Hours, Aux Boiler 2 Running Hours, s;
» aux_blr_3_rhs number(double)¦null false none Machinery, Aux Boiler Running Hours, Aux Boiler 3 Running Hours, s;
» aux_blr_4_rhs number(double)¦null false none Machinery, Aux Boiler Running Hours, Aux Boiler 4 Running Hours, s;