@volant-autonomy/via-sdk 1.4657.1 → 1.4662.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 +23 -25
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -3848,34 +3848,32 @@ export interface components {
|
|
|
3848
3848
|
*/
|
|
3849
3849
|
robustness: "none" | "low" | "medium" | "high";
|
|
3850
3850
|
};
|
|
3851
|
-
/**
|
|
3851
|
+
/**
|
|
3852
|
+
* TerrainProfileAttributes
|
|
3853
|
+
* @description Profile of terrain elevation data across the Flightplan. Data is zipped by index such that each array has the same
|
|
3854
|
+
* length and a given index corresponding to the appropriate data in each array.
|
|
3855
|
+
*/
|
|
3852
3856
|
TerrainProfileAttributes: {
|
|
3853
3857
|
/**
|
|
3854
|
-
*
|
|
3855
|
-
* @description
|
|
3856
|
-
* @example [
|
|
3857
|
-
* [
|
|
3858
|
-
* 0,
|
|
3859
|
-
* 95.4
|
|
3860
|
-
* ],
|
|
3861
|
-
* [
|
|
3862
|
-
* 14.6,
|
|
3863
|
-
* 75.33
|
|
3864
|
-
* ],
|
|
3865
|
-
* [
|
|
3866
|
-
* 28,
|
|
3867
|
-
* -2.4
|
|
3868
|
-
* ],
|
|
3869
|
-
* [
|
|
3870
|
-
* 41.12,
|
|
3871
|
-
* 16
|
|
3872
|
-
* ]
|
|
3873
|
-
* ]
|
|
3858
|
+
* Planar Distance
|
|
3859
|
+
* @description Sampled planar distance across the flightplan.
|
|
3874
3860
|
*/
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
|
|
3861
|
+
planar_distance: number[];
|
|
3862
|
+
/**
|
|
3863
|
+
* Under Nominal Flightpath
|
|
3864
|
+
* @description Terrain elevation determined directly along the nominal flightpath.
|
|
3865
|
+
*/
|
|
3866
|
+
under_nominal_flightpath: number[];
|
|
3867
|
+
/**
|
|
3868
|
+
* Min Under Volume
|
|
3869
|
+
* @description Terrain elevation determined as the minimum in volume kernel at the planar distance relative to whereaircraft is expected to be.
|
|
3870
|
+
*/
|
|
3871
|
+
min_under_volume: number[];
|
|
3872
|
+
/**
|
|
3873
|
+
* Max Under Volume
|
|
3874
|
+
* @description Terrain elevation determined as the maximum in volume kernel at the planar distance relative to whereaircraft is expected to be.
|
|
3875
|
+
*/
|
|
3876
|
+
max_under_volume: number[];
|
|
3879
3877
|
};
|
|
3880
3878
|
/**
|
|
3881
3879
|
* TerrainProfileResponse
|