Set Coordinates

GET /framing/set-coordinates

Set framing assistant coordinates. This requires the framing assistant to be initalized, which can by achieved by openening it once.

Query parameters

  • RAangle number(double) Required

    The RA angle to set

  • DecAngle number(double) Required

    The Dec angle to set

Responses

GET /framing/set-coordinates
curl \
 --request GET 'http://localhost:1888/v2/api/framing/set-coordinates?RAangle=42.0&DecAngle=42.0'
Response examples (200)
{
  "Response": "Coordinates updated",
  "Error": "string",
  "StatusCode": 200,
  "Success": true,
  "Type": "API"
}
Response examples (500)
{
  "Response": "string",
  "Error": "Unknown error",
  "StatusCode": 500,
  "Success": false,
  "Type": "API"
}