-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolve.proto
More file actions
46 lines (32 loc) · 1.64 KB
/
solve.proto
File metadata and controls
46 lines (32 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*****************************************************************************************************************/
// @author Michael Roberts <michael@observerly.com>
// @package @observerly/nova/proto/solve/v1
// @license Copyright © 2021-2025 observerly
/*****************************************************************************************************************/
syntax = "proto3";
/*****************************************************************************************************************/
package solve.v1;
/*****************************************************************************************************************/
// Import the wcs.proto definitions
import "wcs/v1/wcs.proto";
/*****************************************************************************************************************/
message SolveForWCSFITSHandlerRequest {
string owner = 1;
string bucket_name = 2;
string location = 3;
optional double ra = 4;
optional double dec = 5;
optional double pixel_scale_x = 6;
optional double pixel_scale_y = 7;
optional double radius = 8;
optional double sigma = 9;
}
/*****************************************************************************************************************/
message SolveForWCSFITSHandlerResponse {
wcs.v1.WCS wcs = 1;
}
/*****************************************************************************************************************/
service SolveService {
rpc SolveForWCSFITSHandler(SolveForWCSFITSHandlerRequest) returns (SolveForWCSFITSHandlerResponse) {}
}
/*****************************************************************************************************************/