1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-12 18:58:48 -04:00

Add Sky Map yaml

This commit is contained in:
srcejon
2024-02-08 09:21:14 +00:00
parent c5c5b4f773
commit cd0deb5bdf
23 changed files with 1888 additions and 42 deletions
+135 -4
View File
@@ -6249,6 +6249,9 @@ margin-bottom: 20px;
"SimplePTTActions" : {
"$ref" : "#/definitions/SimplePTTActions"
},
"SkyMapActions" : {
"$ref" : "#/definitions/SkyMapActions"
},
"StarTrackerActions" : {
"$ref" : "#/definitions/StarTrackerActions"
},
@@ -6394,6 +6397,9 @@ margin-bottom: 20px;
"SimplePTTReport" : {
"$ref" : "#/definitions/SimplePTTReport"
},
"SkyMapReport" : {
"$ref" : "#/definitions/SkyMapReport"
},
"StarTrackerReport" : {
"$ref" : "#/definitions/StarTrackerReport"
},
@@ -6495,12 +6501,15 @@ margin-bottom: 20px;
"SatelliteTrackerSettings" : {
"$ref" : "#/definitions/SatelliteTrackerSettings"
},
"StarTrackerSettings" : {
"$ref" : "#/definitions/StarTrackerSettings"
},
"SimplePTTSettings" : {
"$ref" : "#/definitions/SimplePTTSettings"
},
"SkyMapSettings" : {
"$ref" : "#/definitions/SkyMapSettings"
},
"StarTrackerSettings" : {
"$ref" : "#/definitions/StarTrackerSettings"
},
"VORLocalizerSettings" : {
"$ref" : "#/definitions/VORLocalizerSettings"
}
@@ -14618,6 +14627,128 @@ margin-bottom: 20px;
}
},
"description" : "Simple PTT settings"
};
defs.SkyMapActions = {
"properties" : {
"find" : {
"type" : "string",
"description" : "The name of the object or the coordinates to centre the sky map on"
}
},
"description" : "Sky Map"
};
defs.SkyMapReport = {
"properties" : {
"dateTime" : {
"type" : "string",
"description" : "Current date and time being used for sky map"
},
"ra" : {
"type" : "number",
"format" : "float",
"description" : "Right ascension of target (In decimal hours, J2000)"
},
"dec" : {
"type" : "number",
"format" : "float",
"description" : "Declination of target (In decimal degrees, J2000)"
},
"latitude" : {
"type" : "number",
"format" : "float",
"description" : "Latitude in decimal degrees (North positive) of observation/antenna location"
},
"longitude" : {
"type" : "number",
"format" : "float",
"description" : "Longitude in decimal degrees (East positive) of observation/antenna location"
},
"azimuth" : {
"type" : "number",
"format" : "float",
"description" : "The azimuth angle in degrees to the target"
},
"elevation" : {
"type" : "number",
"format" : "float",
"description" : "The elevation angle in degrees to the target"
},
"fov" : {
"type" : "number",
"format" : "float",
"description" : "Current field-of-view in degrees"
}
},
"description" : "Sky Map"
};
defs.SkyMapSettings = {
"properties" : {
"displayNames" : {
"type" : "integer",
"description" : "Display names on the sky map (1 for yes, 0 for no)"
},
"displayConstellations" : {
"type" : "integer",
"description" : "Display constellations on the sky map (1 for yes, 0 for no)"
},
"displayReticle" : {
"type" : "integer",
"description" : "Display reticle on the sky map (1 for yes, 0 for no)"
},
"displayGrid" : {
"type" : "integer",
"description" : "Display grid on the sky map (1 for yes, 0 for no)"
},
"displayAntennaFoV" : {
"type" : "integer",
"description" : "Display antenna field-of-view on the sky map (1 for yes, 0 for no)"
},
"map" : {
"type" : "string",
"description" : "WWT, ESASky or Aladin"
},
"background" : {
"type" : "string",
"description" : "Name of background image set"
},
"projection" : {
"type" : "string"
},
"source" : {
"type" : "string",
"description" : "Channel or Feature plugin to get target from"
},
"track" : {
"type" : "integer",
"description" : "Whether to track the specified source plugin"
},
"title" : {
"type" : "string"
},
"rgbColor" : {
"type" : "integer"
},
"useReverseAPI" : {
"type" : "integer",
"description" : "Synchronize with reverse API (1 for yes, 0 for no)"
},
"reverseAPIAddress" : {
"type" : "string"
},
"reverseAPIPort" : {
"type" : "integer"
},
"reverseAPIFeatureSetIndex" : {
"type" : "integer"
},
"reverseAPIFeatureIndex" : {
"type" : "integer"
},
"rollupState" : {
"$ref" : "#/definitions/RollupState"
}
},
"description" : "Sky Map"
};
defs.SoapySDRFrequencySetting = {
"properties" : {
@@ -58429,7 +58560,7 @@ except ApiException as e:
</div>
<div id="generator">
<div class="content">
Generated 2024-01-21T13:22:02.160+01:00
Generated 2024-02-08T10:19:55.419+01:00
</div>
</div>
</div>
@@ -31,6 +31,8 @@ FeatureActions:
$ref: "/doc/swagger/include/SatelliteTracker.yaml#/SatelliteTrackerActions"
SimplePTTActions:
$ref: "/doc/swagger/include/SimplePTT.yaml#/SimplePTTActions"
SkyMapActions:
$ref: "/doc/swagger/include/SkyMap.yaml#/SkyMapActions"
StarTrackerActions:
$ref: "/doc/swagger/include/StarTracker.yaml#/StarTrackerActions"
VORLocalizerActions:
@@ -25,6 +25,8 @@ FeatureReport:
$ref: "/doc/swagger/include/SatelliteTracker.yaml#/SatelliteTrackerReport"
SimplePTTReport:
$ref: "/doc/swagger/include/SimplePTT.yaml#/SimplePTTReport"
SkyMapReport:
$ref: "/doc/swagger/include/SkyMap.yaml#/SkyMapReport"
StarTrackerReport:
$ref: "/doc/swagger/include/StarTracker.yaml#/StarTrackerReport"
VORLocalizerReport:
@@ -41,9 +41,11 @@ FeatureSettings:
$ref: "/doc/swagger/include/RigCtlServer.yaml#/RigCtlServerSettings"
SatelliteTrackerSettings:
$ref: "/doc/swagger/include/SatelliteTracker.yaml#/SatelliteTrackerSettings"
StarTrackerSettings:
$ref: "/doc/swagger/include/StarTracker.yaml#/StarTrackerSettings"
SimplePTTSettings:
$ref: "/doc/swagger/include/SimplePTT.yaml#/SimplePTTSettings"
SkyMapSettings:
$ref: "/doc/swagger/include/SkyMap.yaml#/SkyMapSettings"
StarTrackerSettings:
$ref: "/doc/swagger/include/StarTracker.yaml#/StarTrackerSettings"
VORLocalizerSettings:
$ref: "/doc/swagger/include/VORLocalizer.yaml#/VORLocalizerSettings"
@@ -0,0 +1,121 @@
SkyMapSettings:
description: Sky Map
properties:
displayNames:
description: "Display names on the sky map (1 for yes, 0 for no)"
type: integer
displayConstellations:
description: "Display constellations on the sky map (1 for yes, 0 for no)"
type: integer
displayReticle:
description: "Display reticle on the sky map (1 for yes, 0 for no)"
type: integer
displayGrid:
description: "Display grid on the sky map (1 for yes, 0 for no)"
type: integer
displayReticle:
description: "Display reticle on the sky map (1 for yes, 0 for no)"
type: integer
displayAntennaFoV:
description: "Display antenna field-of-view on the sky map (1 for yes, 0 for no)"
type: integer
map:
description: "WWT, ESASky or Aladin"
type: string
background:
description: "Name of background image set"
type: string
projection:
type: string
source:
description: "Channel or Feature plugin to get target from"
type: string
track:
description: "Whether to track the specified source plugin"
type: integer
title:
type: string
rgbColor:
type: integer
useReverseAPI:
description: Synchronize with reverse API (1 for yes, 0 for no)
type: integer
reverseAPIAddress:
type: string
reverseAPIPort:
type: integer
reverseAPIFeatureSetIndex:
type: integer
reverseAPIFeatureIndex:
type: integer
rollupState:
$ref: "/doc/swagger/include/RollupState.yaml#/RollupState"
SkyMapReport:
description: Sky Map
properties:
dateTime:
description: "Current date and time being used for sky map"
type: string
ra:
description: "Right ascension of target (In decimal hours, J2000)"
type: number
format: float
dec:
description: "Declination of target (In decimal degrees, J2000)"
type: number
format: float
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
format: float
azimuth:
description: "The azimuth angle in degrees to the target"
type: number
format: float
elevation:
description: "The elevation angle in degrees to the target"
type: number
format: float
fov:
description: "Current field-of-view in degrees"
type: number
format: float
SkyMapActions:
description: Sky Map
properties:
find:
description: "The name of the object or the coordinates to centre the sky map on"
type: string
SkyMapTarget:
description: "Sky Map target. Sent by other plugins to skymap.target message queue."
properties:
ra:
description: "Right ascension of target (In decimal hours, J2000)"
type: number
format: float
dec:
description: "Declination of target (In decimal degrees, J2000)"
type: number
format: float
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
format: float
hpbw:
description: "Antenna half-power beam width in degrees"
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."
type: string