@volant-autonomy/via-sdk 1.3859.1 → 1.3876.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 +17 -5
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -2229,6 +2229,18 @@ export interface components {
|
|
|
2229
2229
|
* @default 0.8
|
|
2230
2230
|
*/
|
|
2231
2231
|
cost_bias?: number;
|
|
2232
|
+
/**
|
|
2233
|
+
* Ground Risk Weighting
|
|
2234
|
+
* @description Weight multiplier to apply to ground risk when combining cost fields.
|
|
2235
|
+
* @default 1
|
|
2236
|
+
*/
|
|
2237
|
+
ground_risk_weighting?: number;
|
|
2238
|
+
/**
|
|
2239
|
+
* Cost Dataset Weighting
|
|
2240
|
+
* @description Weight multiplier to apply to the provided Cost Dataset when combining cost fields. Without a cost dataset being provided, this will have no effect on the output cost field.
|
|
2241
|
+
* @default 1
|
|
2242
|
+
*/
|
|
2243
|
+
cost_dataset_weighting?: number;
|
|
2232
2244
|
/**
|
|
2233
2245
|
* Deconflict
|
|
2234
2246
|
* @description Whether to deconflict with volumes associated with other entities.
|
|
@@ -3716,13 +3728,13 @@ export interface operations {
|
|
|
3716
3728
|
parameters: {
|
|
3717
3729
|
query?: {
|
|
3718
3730
|
/** @description
|
|
3719
|
-
* External user defined [Cost Dataset](#Cost%20Datasets) to use when calculating statistics of the flightplan
|
|
3720
|
-
* the following limitations:
|
|
3721
|
-
*
|
|
3722
|
-
* * Temporal variation is ignored, the first raster band in the Cost Dataset is used without consideration for time.
|
|
3723
|
-
* * Data within the Cost Dataset is directly added to Via internal costs which is reflected in `total_cost`.
|
|
3731
|
+
* External user defined [Cost Dataset](#Cost%20Datasets) to use when calculating statistics of the flightplan.
|
|
3724
3732
|
* */
|
|
3725
3733
|
cost_dataset_id?: string | null;
|
|
3734
|
+
/** @description Weight multiplier to apply to ground risk when combining cost fields. */
|
|
3735
|
+
ground_risk_weighting?: number;
|
|
3736
|
+
/** @description Weight multiplier to apply to the provided Cost Dataset when combining cost fields. Without a cost dataset being provided, this will have no effect on the output cost field. */
|
|
3737
|
+
cost_dataset_weighting?: number;
|
|
3726
3738
|
};
|
|
3727
3739
|
header?: never;
|
|
3728
3740
|
path: {
|