@volant-autonomy/via-sdk 1.3390.1 → 1.3401.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/volant-schema.d.ts +8 -0
- package/package.json +1 -1
package/dist/volant-schema.d.ts
CHANGED
|
@@ -2604,6 +2604,14 @@ export interface components {
|
|
|
2604
2604
|
waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
|
|
2605
2605
|
aircraft: components["schemas"]["Aircraft"];
|
|
2606
2606
|
ground_risk_mitigations: components["schemas"]["UkGroundRiskMitigations"];
|
|
2607
|
+
/**
|
|
2608
|
+
* Strategic Air Risk Mitigations
|
|
2609
|
+
* @description Strategic air risk mitigations to be applied when determining the Residual ARC from the Initial ARC. These are given as a mapping between the Initial ARC and a reduction in the air risk class.
|
|
2610
|
+
* @default {}
|
|
2611
|
+
*/
|
|
2612
|
+
air_risk_mitigations?: {
|
|
2613
|
+
[key: string]: (1 | 2) | undefined;
|
|
2614
|
+
};
|
|
2607
2615
|
/** @description Population Density Data Source. Data has been re-projected and resampled to a square grid in UTM coordinates to work in the context of VIA's services. The value in each cell of the grid is the largest value present in any of the cells of the source grid it intersects. The values are normalised by source data cell area to derive a density value of people per square metre. */
|
|
2608
2616
|
population_density_source: components["schemas"]["PopulationSource"];
|
|
2609
2617
|
/**
|