@volant-autonomy/via-sdk 1.4554.1 → 1.4571.1
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/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/volant-schema.d.ts +22 -2
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -931,6 +931,14 @@ export interface components {
|
|
|
931
931
|
* @enum {string}
|
|
932
932
|
*/
|
|
933
933
|
ARC: "arc-a1" | "arc-a2" | "arc-a3" | "arc-a4" | "arc-a5" | "arc-b1" | "arc-b2" | "arc-c1" | "arc-c2" | "arc-c3" | "arc-c4" | "arc-c5" | "arc-c6" | "arc-c7" | "arc-d1" | "arc-d2" | "arc-d3" | "arc-d4";
|
|
934
|
+
/** AglAlgorithm */
|
|
935
|
+
AglAlgorithm: {
|
|
936
|
+
/**
|
|
937
|
+
* Mode
|
|
938
|
+
* @constant
|
|
939
|
+
*/
|
|
940
|
+
mode: "AGL";
|
|
941
|
+
};
|
|
934
942
|
/**
|
|
935
943
|
* Aircraft
|
|
936
944
|
* @description Characteristics that define an aircraft for SORA calculations.
|
|
@@ -1139,10 +1147,18 @@ export interface components {
|
|
|
1139
1147
|
value: number;
|
|
1140
1148
|
/**
|
|
1141
1149
|
* Reference
|
|
1142
|
-
* @description Altitude reference datum for the value. When using AGL, this is defined as the vertical distance between the point and terrain elevation directly beneath it. Terrain elevation is defined with reference to the EGM2008 Geoid and includes the surfaces of water bodies but not man-made structures.
|
|
1150
|
+
* @description Altitude reference datum for the value. When using AGL, this is defined as the vertical distance between the point and terrain elevation directly beneath it. Terrain elevation is defined with reference to the EGM2008 Geoid and includes the surfaces of water bodies but not man-made structures.Note that some interfaces may not support all reference datums.
|
|
1151
|
+
* @enum {string}
|
|
1152
|
+
*/
|
|
1153
|
+
reference: "AGL" | "AMSL";
|
|
1154
|
+
};
|
|
1155
|
+
/** AmslAlgorithm */
|
|
1156
|
+
AmslAlgorithm: {
|
|
1157
|
+
/**
|
|
1158
|
+
* Mode
|
|
1143
1159
|
* @constant
|
|
1144
1160
|
*/
|
|
1145
|
-
|
|
1161
|
+
mode: "AMSL";
|
|
1146
1162
|
};
|
|
1147
1163
|
/** AoiBounding */
|
|
1148
1164
|
AoiBounding: {
|
|
@@ -4262,6 +4278,10 @@ export interface components {
|
|
|
4262
4278
|
msg: string;
|
|
4263
4279
|
/** Error Type */
|
|
4264
4280
|
type: string;
|
|
4281
|
+
/** Input */
|
|
4282
|
+
input?: unknown;
|
|
4283
|
+
/** Context */
|
|
4284
|
+
ctx?: Record<string, never>;
|
|
4265
4285
|
};
|
|
4266
4286
|
/** VerticalParameters */
|
|
4267
4287
|
VerticalParameters: {
|