Skip to content

Commit

Permalink
docs: Add image overlay "field-tilt" (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
sindrehan authored Mar 25, 2022
2 parents a2463eb + 792d52f commit 1d22dd0
Showing 1 changed file with 37 additions and 10 deletions.
47 changes: 37 additions & 10 deletions http-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -548,26 +548,31 @@ paths:
default: ""
- name: length-units
in: query
description: Unit to use for depth. Use "meter" for metric units, and "feet" for imperial.
description: |
Unit to use for all distance/length measurements such as depth, altitude, distance etc.
For shorter lengths `mm` or `inches` will be used accordingly.
* `meter` - Metric unit
* `feet` - Imperial unit
required: false
schema:
type: string
default: "meter"
enum:
- "meter"
- "feet"
- name: temp-units
in: query
description: |
Unit to use for temperature. Use "celsius" for metric units, and "fahrenheit" for
imperial.
Unit to use for the temperature field and any temperature related measurements.
* `celsius` - Metric unit
* `fahrenheit` - Imperial unit
required: false
schema:
type: string
default: "celsius"
- name: field-date
in: query
description: Enable or disable the date field. "1" to enable, "0" to disable.
description: |
Enable or disable the date field.
* `1` - Enable
* `0` - Disable
required: false
schema:
type: integer
Expand All @@ -577,7 +582,10 @@ paths:
- 1
- name: field-depth
in: query
description: Enable or disable the depth field. "1" to enable, "0" to disable.
description: |
Display water depth in the image overlay.
* `1` - Enable
* `0` - Disable
required: false
schema:
type: integer
Expand All @@ -587,7 +595,10 @@ paths:
- 1
- name: field-heading
in: query
description: Enable or disable the heading field. "1" to enable, "0" to disable.
description: |
Display compass heading in the image overlay.
* `1` - Enable
* `0` - Disable
required: false
schema:
type: integer
Expand All @@ -597,14 +608,30 @@ paths:
- 1
- name: field-temp
in: query
description: Enable or disable the temperature field. "1" to enable, "0" to disable.
description: |
Display water temperature in the image overlay.
* `1` - Enable
* `0` - Disable
required: false
schema:
type: integer
default: 1
enum:
- 0
- 1
- name: field-tilt
in: query
description: |
Display camera tilt angle in the image overlay.
* `1` - Enable
* `0` - Disable
required: false
schema:
type: integer
default: 0
enum:
- 0
- 1
- name: date-format
in: query
description: "Format of the date/time."
Expand Down

0 comments on commit 1d22dd0

Please sign in to comment.