@volant-autonomy/via-sdk 1.4647.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 +24 -26
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -3163,7 +3163,7 @@ export interface components {
|
|
|
3163
3163
|
volume_settings?: components["schemas"]["VolumeSettings"];
|
|
3164
3164
|
/**
|
|
3165
3165
|
* Checkpoints
|
|
3166
|
-
* @description Points defining the Pathing Task that must be passed through along with flight parameters and settings for pathing. The first checkpoint must be of type:
|
|
3166
|
+
* @description Points defining the Pathing Task that must be passed through along with flight parameters and settings for pathing. The first checkpoint must be of type: start and only occur once
|
|
3167
3167
|
* @example [
|
|
3168
3168
|
* {
|
|
3169
3169
|
* "position": {
|
|
@@ -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
|