@ourskyai/node_platform-api 1.4.133 → 1.4.158
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +1 -0
- package/README.md +3 -2
- package/api.ts +43 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +43 -1
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +43 -1
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/V1MountModel.md +2 -0
- package/docs/V1MountModelErrors.md +31 -0
- package/docs/V1MountModelPoint.md +6 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @ourskyai/node_platform-api@1.4.
|
|
1
|
+
## @ourskyai/node_platform-api@1.4.158
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @ourskyai/node_platform-api@1.4.
|
|
39
|
+
npm install @ourskyai/node_platform-api@1.4.158 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -487,6 +487,7 @@ Class | Method | HTTP request | Description
|
|
|
487
487
|
- [V1MotorRole](docs/V1MotorRole.md)
|
|
488
488
|
- [V1MotorStatus](docs/V1MotorStatus.md)
|
|
489
489
|
- [V1MountModel](docs/V1MountModel.md)
|
|
490
|
+
- [V1MountModelErrors](docs/V1MountModelErrors.md)
|
|
490
491
|
- [V1MountModelPoint](docs/V1MountModelPoint.md)
|
|
491
492
|
- [V1MountMotorSystemSettings](docs/V1MountMotorSystemSettings.md)
|
|
492
493
|
- [V1MountStatus](docs/V1MountStatus.md)
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky
|
|
5
5
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.4.
|
|
7
|
+
* The version of the OpenAPI document: 1.4.158
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3123,11 +3123,41 @@ export interface V1MountModel {
|
|
|
3123
3123
|
* ISO 8601 timestamp indicating when this pointing model was created. Models may need rebuilding if mount mechanics change significantly.
|
|
3124
3124
|
*/
|
|
3125
3125
|
'createdAt': string;
|
|
3126
|
+
'errors'?: V1MountModelErrors;
|
|
3126
3127
|
/**
|
|
3127
3128
|
* Array of calibration points where plate solving determined the actual vs commanded position. More points generally yield better accuracy.
|
|
3128
3129
|
*/
|
|
3129
3130
|
'points': Array<V1MountModelPoint>;
|
|
3130
3131
|
}
|
|
3132
|
+
/**
|
|
3133
|
+
* Overall pointing-model fit-quality metrics computed from the calibration points. All error magnitudes are in arcseconds; lower values indicate a more accurate model.
|
|
3134
|
+
*/
|
|
3135
|
+
export interface V1MountModelErrors {
|
|
3136
|
+
/**
|
|
3137
|
+
* Largest single pointing residual in arcseconds over the points used in the fit.
|
|
3138
|
+
*/
|
|
3139
|
+
'maxErrorArcsec': number;
|
|
3140
|
+
/**
|
|
3141
|
+
* Number of calibration points currently in the pointing model.
|
|
3142
|
+
*/
|
|
3143
|
+
'numPoints': number;
|
|
3144
|
+
/**
|
|
3145
|
+
* Number of error-model terms actively fitted. More terms can model more mechanical effects but require enough points to stay well-conditioned.
|
|
3146
|
+
*/
|
|
3147
|
+
'numTermsInUse': number;
|
|
3148
|
+
/**
|
|
3149
|
+
* Polar/azimuth axis misalignment toward north in arcseconds, as estimated by the model.
|
|
3150
|
+
*/
|
|
3151
|
+
'polarErrorNorthArcsec': number;
|
|
3152
|
+
/**
|
|
3153
|
+
* Polar/azimuth axis misalignment toward west in arcseconds, as estimated by the model.
|
|
3154
|
+
*/
|
|
3155
|
+
'polarErrorWestArcsec': number;
|
|
3156
|
+
/**
|
|
3157
|
+
* RMS pointing residual in arcseconds over the points used in the fit. The headline accuracy figure for the model.
|
|
3158
|
+
*/
|
|
3159
|
+
'rmsErrorArcsec': number;
|
|
3160
|
+
}
|
|
3131
3161
|
/**
|
|
3132
3162
|
* A single calibration point in the pointing model recording the plate-solved position at a specific sky location.
|
|
3133
3163
|
*/
|
|
@@ -3144,10 +3174,22 @@ export interface V1MountModelPoint {
|
|
|
3144
3174
|
* Declination determined by plate solving at this point in degrees (J2000 epoch). Used to calculate pointing corrections.
|
|
3145
3175
|
*/
|
|
3146
3176
|
'decDegrees': number;
|
|
3177
|
+
/**
|
|
3178
|
+
* Declination component of this point\'s residual in arcseconds. Absent when the mount is unavailable.
|
|
3179
|
+
*/
|
|
3180
|
+
'decErrArcsec'?: number;
|
|
3181
|
+
/**
|
|
3182
|
+
* Total angular residual at this point in arcseconds: the distance between where the pointing model predicts the point and where plate solving measured it. Absent when the mount is unavailable. Lower is better.
|
|
3183
|
+
*/
|
|
3184
|
+
'distErrArcsec'?: number;
|
|
3147
3185
|
/**
|
|
3148
3186
|
* Right ascension determined by plate solving at this point in degrees (J2000 epoch). Used to calculate pointing corrections.
|
|
3149
3187
|
*/
|
|
3150
3188
|
'raDegrees': number;
|
|
3189
|
+
/**
|
|
3190
|
+
* Right-ascension component of this point\'s residual in arcseconds (sky error, corrected for declination). Absent when the mount is unavailable.
|
|
3191
|
+
*/
|
|
3192
|
+
'raErrArcsec'?: number;
|
|
3151
3193
|
}
|
|
3152
3194
|
/**
|
|
3153
3195
|
* Configuration settings for telescope mount motor motion control including slew speed, acceleration, and travel limits.
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky
|
|
5
5
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.4.
|
|
7
|
+
* The version of the OpenAPI document: 1.4.158
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky
|
|
5
5
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.4.
|
|
7
|
+
* The version of the OpenAPI document: 1.4.158
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* OurSky
|
|
4
4
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.4.
|
|
6
|
+
* The version of the OpenAPI document: 1.4.158
|
|
7
7
|
*
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky
|
|
3
3
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.4.
|
|
5
|
+
* The version of the OpenAPI document: 1.4.158
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2946,11 +2946,41 @@ export interface V1MountModel {
|
|
|
2946
2946
|
* ISO 8601 timestamp indicating when this pointing model was created. Models may need rebuilding if mount mechanics change significantly.
|
|
2947
2947
|
*/
|
|
2948
2948
|
'createdAt': string;
|
|
2949
|
+
'errors'?: V1MountModelErrors;
|
|
2949
2950
|
/**
|
|
2950
2951
|
* Array of calibration points where plate solving determined the actual vs commanded position. More points generally yield better accuracy.
|
|
2951
2952
|
*/
|
|
2952
2953
|
'points': Array<V1MountModelPoint>;
|
|
2953
2954
|
}
|
|
2955
|
+
/**
|
|
2956
|
+
* Overall pointing-model fit-quality metrics computed from the calibration points. All error magnitudes are in arcseconds; lower values indicate a more accurate model.
|
|
2957
|
+
*/
|
|
2958
|
+
export interface V1MountModelErrors {
|
|
2959
|
+
/**
|
|
2960
|
+
* Largest single pointing residual in arcseconds over the points used in the fit.
|
|
2961
|
+
*/
|
|
2962
|
+
'maxErrorArcsec': number;
|
|
2963
|
+
/**
|
|
2964
|
+
* Number of calibration points currently in the pointing model.
|
|
2965
|
+
*/
|
|
2966
|
+
'numPoints': number;
|
|
2967
|
+
/**
|
|
2968
|
+
* Number of error-model terms actively fitted. More terms can model more mechanical effects but require enough points to stay well-conditioned.
|
|
2969
|
+
*/
|
|
2970
|
+
'numTermsInUse': number;
|
|
2971
|
+
/**
|
|
2972
|
+
* Polar/azimuth axis misalignment toward north in arcseconds, as estimated by the model.
|
|
2973
|
+
*/
|
|
2974
|
+
'polarErrorNorthArcsec': number;
|
|
2975
|
+
/**
|
|
2976
|
+
* Polar/azimuth axis misalignment toward west in arcseconds, as estimated by the model.
|
|
2977
|
+
*/
|
|
2978
|
+
'polarErrorWestArcsec': number;
|
|
2979
|
+
/**
|
|
2980
|
+
* RMS pointing residual in arcseconds over the points used in the fit. The headline accuracy figure for the model.
|
|
2981
|
+
*/
|
|
2982
|
+
'rmsErrorArcsec': number;
|
|
2983
|
+
}
|
|
2954
2984
|
/**
|
|
2955
2985
|
* A single calibration point in the pointing model recording the plate-solved position at a specific sky location.
|
|
2956
2986
|
*/
|
|
@@ -2967,10 +2997,22 @@ export interface V1MountModelPoint {
|
|
|
2967
2997
|
* Declination determined by plate solving at this point in degrees (J2000 epoch). Used to calculate pointing corrections.
|
|
2968
2998
|
*/
|
|
2969
2999
|
'decDegrees': number;
|
|
3000
|
+
/**
|
|
3001
|
+
* Declination component of this point\'s residual in arcseconds. Absent when the mount is unavailable.
|
|
3002
|
+
*/
|
|
3003
|
+
'decErrArcsec'?: number;
|
|
3004
|
+
/**
|
|
3005
|
+
* Total angular residual at this point in arcseconds: the distance between where the pointing model predicts the point and where plate solving measured it. Absent when the mount is unavailable. Lower is better.
|
|
3006
|
+
*/
|
|
3007
|
+
'distErrArcsec'?: number;
|
|
2970
3008
|
/**
|
|
2971
3009
|
* Right ascension determined by plate solving at this point in degrees (J2000 epoch). Used to calculate pointing corrections.
|
|
2972
3010
|
*/
|
|
2973
3011
|
'raDegrees': number;
|
|
3012
|
+
/**
|
|
3013
|
+
* Right-ascension component of this point\'s residual in arcseconds (sky error, corrected for declination). Absent when the mount is unavailable.
|
|
3014
|
+
*/
|
|
3015
|
+
'raErrArcsec'?: number;
|
|
2974
3016
|
}
|
|
2975
3017
|
/**
|
|
2976
3018
|
* Configuration settings for telescope mount motor motion control including slew speed, acceleration, and travel limits.
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky
|
|
6
6
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.4.
|
|
8
|
+
* The version of the OpenAPI document: 1.4.158
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky
|
|
3
3
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.4.
|
|
5
|
+
* The version of the OpenAPI document: 1.4.158
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky
|
|
6
6
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.4.
|
|
8
|
+
* The version of the OpenAPI document: 1.4.158
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky
|
|
3
3
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.4.
|
|
5
|
+
* The version of the OpenAPI document: 1.4.158
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky
|
|
6
6
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.4.
|
|
8
|
+
* The version of the OpenAPI document: 1.4.158
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky
|
|
3
3
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.4.
|
|
5
|
+
* The version of the OpenAPI document: 1.4.158
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky
|
|
5
5
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.4.
|
|
7
|
+
* The version of the OpenAPI document: 1.4.158
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky
|
|
3
3
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.4.
|
|
5
|
+
* The version of the OpenAPI document: 1.4.158
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2946,11 +2946,41 @@ export interface V1MountModel {
|
|
|
2946
2946
|
* ISO 8601 timestamp indicating when this pointing model was created. Models may need rebuilding if mount mechanics change significantly.
|
|
2947
2947
|
*/
|
|
2948
2948
|
'createdAt': string;
|
|
2949
|
+
'errors'?: V1MountModelErrors;
|
|
2949
2950
|
/**
|
|
2950
2951
|
* Array of calibration points where plate solving determined the actual vs commanded position. More points generally yield better accuracy.
|
|
2951
2952
|
*/
|
|
2952
2953
|
'points': Array<V1MountModelPoint>;
|
|
2953
2954
|
}
|
|
2955
|
+
/**
|
|
2956
|
+
* Overall pointing-model fit-quality metrics computed from the calibration points. All error magnitudes are in arcseconds; lower values indicate a more accurate model.
|
|
2957
|
+
*/
|
|
2958
|
+
export interface V1MountModelErrors {
|
|
2959
|
+
/**
|
|
2960
|
+
* Largest single pointing residual in arcseconds over the points used in the fit.
|
|
2961
|
+
*/
|
|
2962
|
+
'maxErrorArcsec': number;
|
|
2963
|
+
/**
|
|
2964
|
+
* Number of calibration points currently in the pointing model.
|
|
2965
|
+
*/
|
|
2966
|
+
'numPoints': number;
|
|
2967
|
+
/**
|
|
2968
|
+
* Number of error-model terms actively fitted. More terms can model more mechanical effects but require enough points to stay well-conditioned.
|
|
2969
|
+
*/
|
|
2970
|
+
'numTermsInUse': number;
|
|
2971
|
+
/**
|
|
2972
|
+
* Polar/azimuth axis misalignment toward north in arcseconds, as estimated by the model.
|
|
2973
|
+
*/
|
|
2974
|
+
'polarErrorNorthArcsec': number;
|
|
2975
|
+
/**
|
|
2976
|
+
* Polar/azimuth axis misalignment toward west in arcseconds, as estimated by the model.
|
|
2977
|
+
*/
|
|
2978
|
+
'polarErrorWestArcsec': number;
|
|
2979
|
+
/**
|
|
2980
|
+
* RMS pointing residual in arcseconds over the points used in the fit. The headline accuracy figure for the model.
|
|
2981
|
+
*/
|
|
2982
|
+
'rmsErrorArcsec': number;
|
|
2983
|
+
}
|
|
2954
2984
|
/**
|
|
2955
2985
|
* A single calibration point in the pointing model recording the plate-solved position at a specific sky location.
|
|
2956
2986
|
*/
|
|
@@ -2967,10 +2997,22 @@ export interface V1MountModelPoint {
|
|
|
2967
2997
|
* Declination determined by plate solving at this point in degrees (J2000 epoch). Used to calculate pointing corrections.
|
|
2968
2998
|
*/
|
|
2969
2999
|
'decDegrees': number;
|
|
3000
|
+
/**
|
|
3001
|
+
* Declination component of this point\'s residual in arcseconds. Absent when the mount is unavailable.
|
|
3002
|
+
*/
|
|
3003
|
+
'decErrArcsec'?: number;
|
|
3004
|
+
/**
|
|
3005
|
+
* Total angular residual at this point in arcseconds: the distance between where the pointing model predicts the point and where plate solving measured it. Absent when the mount is unavailable. Lower is better.
|
|
3006
|
+
*/
|
|
3007
|
+
'distErrArcsec'?: number;
|
|
2970
3008
|
/**
|
|
2971
3009
|
* Right ascension determined by plate solving at this point in degrees (J2000 epoch). Used to calculate pointing corrections.
|
|
2972
3010
|
*/
|
|
2973
3011
|
'raDegrees': number;
|
|
3012
|
+
/**
|
|
3013
|
+
* Right-ascension component of this point\'s residual in arcseconds (sky error, corrected for declination). Absent when the mount is unavailable.
|
|
3014
|
+
*/
|
|
3015
|
+
'raErrArcsec'?: number;
|
|
2974
3016
|
}
|
|
2975
3017
|
/**
|
|
2976
3018
|
* Configuration settings for telescope mount motor motion control including slew speed, acceleration, and travel limits.
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky
|
|
5
5
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.4.
|
|
7
|
+
* The version of the OpenAPI document: 1.4.158
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky
|
|
3
3
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.4.
|
|
5
|
+
* The version of the OpenAPI document: 1.4.158
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky
|
|
5
5
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.4.
|
|
7
|
+
* The version of the OpenAPI document: 1.4.158
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky
|
|
3
3
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.4.
|
|
5
|
+
* The version of the OpenAPI document: 1.4.158
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky
|
|
5
5
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.4.
|
|
7
|
+
* The version of the OpenAPI document: 1.4.158
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky
|
|
3
3
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.4.
|
|
5
|
+
* The version of the OpenAPI document: 1.4.158
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* OurSky
|
|
4
4
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.4.
|
|
6
|
+
* The version of the OpenAPI document: 1.4.158
|
|
7
7
|
*
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky
|
|
3
3
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.4.
|
|
5
|
+
* The version of the OpenAPI document: 1.4.158
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky
|
|
5
5
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.4.
|
|
7
|
+
* The version of the OpenAPI document: 1.4.158
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* OurSky
|
|
3
3
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.4.
|
|
5
|
+
* The version of the OpenAPI document: 1.4.158
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* OurSky
|
|
6
6
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.4.
|
|
8
|
+
* The version of the OpenAPI document: 1.4.158
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/docs/V1MountModel.md
CHANGED
|
@@ -7,6 +7,7 @@ Pointing model data containing calibration points used to correct mount pointing
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
9
|
**createdAt** | **string** | ISO 8601 timestamp indicating when this pointing model was created. Models may need rebuilding if mount mechanics change significantly. | [default to undefined]
|
|
10
|
+
**errors** | [**V1MountModelErrors**](V1MountModelErrors.md) | | [optional] [default to undefined]
|
|
10
11
|
**points** | [**Array<V1MountModelPoint>**](V1MountModelPoint.md) | Array of calibration points where plate solving determined the actual vs commanded position. More points generally yield better accuracy. | [default to undefined]
|
|
11
12
|
|
|
12
13
|
## Example
|
|
@@ -16,6 +17,7 @@ import { V1MountModel } from '@ourskyai/node_platform-api';
|
|
|
16
17
|
|
|
17
18
|
const instance: V1MountModel = {
|
|
18
19
|
createdAt,
|
|
20
|
+
errors,
|
|
19
21
|
points,
|
|
20
22
|
};
|
|
21
23
|
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# V1MountModelErrors
|
|
2
|
+
|
|
3
|
+
Overall pointing-model fit-quality metrics computed from the calibration points. All error magnitudes are in arcseconds; lower values indicate a more accurate model.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**maxErrorArcsec** | **number** | Largest single pointing residual in arcseconds over the points used in the fit. | [default to undefined]
|
|
10
|
+
**numPoints** | **number** | Number of calibration points currently in the pointing model. | [default to undefined]
|
|
11
|
+
**numTermsInUse** | **number** | Number of error-model terms actively fitted. More terms can model more mechanical effects but require enough points to stay well-conditioned. | [default to undefined]
|
|
12
|
+
**polarErrorNorthArcsec** | **number** | Polar/azimuth axis misalignment toward north in arcseconds, as estimated by the model. | [default to undefined]
|
|
13
|
+
**polarErrorWestArcsec** | **number** | Polar/azimuth axis misalignment toward west in arcseconds, as estimated by the model. | [default to undefined]
|
|
14
|
+
**rmsErrorArcsec** | **number** | RMS pointing residual in arcseconds over the points used in the fit. The headline accuracy figure for the model. | [default to undefined]
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
import { V1MountModelErrors } from '@ourskyai/node_platform-api';
|
|
20
|
+
|
|
21
|
+
const instance: V1MountModelErrors = {
|
|
22
|
+
maxErrorArcsec,
|
|
23
|
+
numPoints,
|
|
24
|
+
numTermsInUse,
|
|
25
|
+
polarErrorNorthArcsec,
|
|
26
|
+
polarErrorWestArcsec,
|
|
27
|
+
rmsErrorArcsec,
|
|
28
|
+
};
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -9,7 +9,10 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**altitudeDegrees** | **number** | Altitude coordinate of this calibration point in degrees above the horizon. Part of the horizontal coordinate reference. | [default to undefined]
|
|
10
10
|
**azimuthDegrees** | **number** | Azimuth coordinate of this calibration point in degrees from north. Part of the horizontal coordinate reference. | [default to undefined]
|
|
11
11
|
**decDegrees** | **number** | Declination determined by plate solving at this point in degrees (J2000 epoch). Used to calculate pointing corrections. | [default to undefined]
|
|
12
|
+
**decErrArcsec** | **number** | Declination component of this point\'s residual in arcseconds. Absent when the mount is unavailable. | [optional] [default to undefined]
|
|
13
|
+
**distErrArcsec** | **number** | Total angular residual at this point in arcseconds: the distance between where the pointing model predicts the point and where plate solving measured it. Absent when the mount is unavailable. Lower is better. | [optional] [default to undefined]
|
|
12
14
|
**raDegrees** | **number** | Right ascension determined by plate solving at this point in degrees (J2000 epoch). Used to calculate pointing corrections. | [default to undefined]
|
|
15
|
+
**raErrArcsec** | **number** | Right-ascension component of this point\'s residual in arcseconds (sky error, corrected for declination). Absent when the mount is unavailable. | [optional] [default to undefined]
|
|
13
16
|
|
|
14
17
|
## Example
|
|
15
18
|
|
|
@@ -20,7 +23,10 @@ const instance: V1MountModelPoint = {
|
|
|
20
23
|
altitudeDegrees,
|
|
21
24
|
azimuthDegrees,
|
|
22
25
|
decDegrees,
|
|
26
|
+
decErrArcsec,
|
|
27
|
+
distErrArcsec,
|
|
23
28
|
raDegrees,
|
|
29
|
+
raErrArcsec,
|
|
24
30
|
};
|
|
25
31
|
```
|
|
26
32
|
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* OurSky
|
|
5
5
|
* Node Platform API The Node Platform API enables a customer to directly command their ground station either directly via IP address, via the self hosted C2 platform, or routed transparently via the Observable Space cloud platform. Node Platform APIs offer every endpoint a customer might need in order to slew their scope, perform diagnostics, capture images, and much more. Are we missing a feature you need? Drop us a line at support@observable.space.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.4.
|
|
7
|
+
* The version of the OpenAPI document: 1.4.158
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|