1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-26 03:54:30 -04:00

Spactrum: allow arbitrary FPS (API) or in a range of FPS (GUI) with possible no limit. Implements #772

This commit is contained in:
f4exb
2021-02-12 00:53:18 +01:00
parent 6a6098ffe9
commit b5d501e6ab
37 changed files with 240 additions and 68 deletions
+19 -5
View File
@@ -4835,6 +4835,10 @@ margin-bottom: 20px;
"type" : "number",
"format" : "float"
},
"fpsPeriodMs" : {
"type" : "integer",
"description" : "FPS capping period in milliseconds. 0 for no limit."
},
"displayWaterfall" : {
"type" : "integer",
"description" : "boolean"
@@ -6278,9 +6282,9 @@ margin-bottom: 20px;
"type" : "integer",
"description" : "Angle to rotate the image by"
},
"imageFixedSize" : {
"imageMinZoom" : {
"type" : "integer",
"description" : "Keep the image the same size, regardless of map zoom level (1 for yes, 0 for no)"
"description" : "Minimim zoom value"
},
"text" : {
"type" : "string"
@@ -6294,6 +6298,11 @@ margin-bottom: 20px;
"type" : "number",
"format" : "float",
"description" : "Longitude in decimal degrees, positive to the east"
},
"altitude" : {
"type" : "number",
"format" : "float",
"description" : "Altitude / height above sea level in metres"
}
},
"description" : "An item to draw on the map. Set image to an empty string to remove item from the map."
@@ -6313,9 +6322,9 @@ margin-bottom: 20px;
"type" : "integer",
"description" : "Angle to rotate the image by"
},
"imageFixedSize" : {
"imageMinZoom" : {
"type" : "integer",
"description" : "Keep the image the same size, regardless of map zoom level (1 for yes, 0 for no)"
"description" : "Minimim zoom value"
},
"text" : {
"type" : "string"
@@ -6329,6 +6338,11 @@ margin-bottom: 20px;
"type" : "number",
"format" : "float",
"description" : "Longitude in decimal degrees, positive to the east"
},
"altitude" : {
"type" : "number",
"format" : "float",
"description" : "Altitude / height above sea level in metres"
}
},
"description" : "An item to draw on the map. Set image to an empty string to remove item from the map."
@@ -45272,7 +45286,7 @@ except ApiException as e:
</div>
<div id="generator">
<div class="content">
Generated 2021-01-13T17:40:49.583+01:00
Generated 2021-02-11T23:51:16.152+01:00
</div>
</div>
</div>
@@ -4,15 +4,15 @@ APRSSettings:
igateServer:
type: string
igatePort:
type: integer
type: integer
igateCallsign:
type: string
igatePasscode:
type: string
igateFilter:
type: string
type: string
igateEnabled:
type: integer
type: integer
title:
type: string
rgbColor:
@@ -14,6 +14,9 @@ GLSpectrum:
powerRange:
type: number
format: float
fpsPeriodMs:
type: integer
description: FPS capping period in milliseconds. 0 for no limit.
displayWaterfall:
description: boolean
type: integer
@@ -34,16 +34,18 @@ MapItem:
properties:
name:
description: "A name for the item"
type: string
type: string
image:
description: "Filename or URL of image to draw on the map"
type: string
imageRotation:
description: "Angle to rotate the image by"
type: integer
imageFixedSize:
description: "Keep the image the same size, regardless of map zoom level (1 for yes, 0 for no)"
default: 0
imageMinZoom:
description: "Minimim zoom value"
type: integer
default: 11
text:
descrption: "Text to draw on the map when item is selected"
type: string
@@ -55,3 +57,7 @@ MapItem:
description: "Longitude in decimal degrees, positive to the east"
type: number
format: float
altitude:
description: "Altitude / height above sea level in metres"
type: number
format: float
@@ -9,25 +9,25 @@ StarTrackerSettings:
type: string
dec:
description: "Declination of custom target"
type: string
latitude:
type: string
latitude:
description: "Latitude in decimal degrees (North positive) of observation/antenna location"
type: number
format: float
longitude:
description: "Longitude in decimal degrees (East positive) of observation/antenna location"
type: number
type: number
format: float
dateTime:
description: "Date and time of observation. ISO 8601 extended format: yyyy-MM-ddTHH:mm:ss with Z suffix for UTC. Empty string for current time."
description: "Date and time of observation. ISO 8601 extended format: yyyy-MM-ddTHH:mm:ss with Z suffix for UTC. Empty string for current time."
type: string
refraction:
refraction:
description: "Atmospheric refraction correction (None or Saemundsson)"
type: string
pressure:
description: "Air pressure in millibars, for refraction"
type: number
format: float
format: float
temperature:
description: "Air temperature in Celsuis, for refraction"
type: number
@@ -47,17 +47,17 @@ StarTrackerSettings:
frequency:
description: "Frequency of radio waves being observed in MHz"
type: number
format: float
format: float
stellariumServerEnabled:
descrption: "Enable Stellarium server (1 for yes, 0 for no)"
type: integer
type: integer
stellariumPort:
description: "IP port number for Stellarium server to listen on (Default is 10001)."
type: integer
updatePeriod:
description: "Time in seconds between each calculation of the target's position"
type: number
format: float
format: float
epoch:
description: "Epoch for RA and Dec (J2000 or JNOW)"
type: string
@@ -69,7 +69,7 @@ StarTrackerSettings:
type: integer
drawStarOnMap:
description: "Draw the overhead position of the target Star on the Map (1 for yes, 0 for no)"
type: integer
type: integer
title:
type: string
rgbColor: