@volant-autonomy/via-sdk 1.4477.1 → 1.4483.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.
@@ -1105,6 +1105,21 @@ export interface components {
1105
1105
  * @enum {string}
1106
1106
  */
1107
1107
  AirspaceRestrictionState: "Accepted" | "Closed" | "Draft" | "Pending";
1108
+ /** Altitude */
1109
+ Altitude: {
1110
+ /**
1111
+ * Value
1112
+ * @description The numeric value of the altitude
1113
+ * @example 100
1114
+ */
1115
+ value: number;
1116
+ /**
1117
+ * Reference
1118
+ * @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.
1119
+ * @constant
1120
+ */
1121
+ reference: "AGL";
1122
+ };
1108
1123
  /** AoiBounding */
1109
1124
  AoiBounding: {
1110
1125
  /**
@@ -1231,8 +1246,14 @@ export interface components {
1231
1246
  * "type": "Polygon"
1232
1247
  * },
1233
1248
  * "properties": {
1234
- * "altitude_upper": 500,
1235
- * "altitude_lower": 0
1249
+ * "altitude_upper": {
1250
+ * "reference": "AGL",
1251
+ * "value": 500
1252
+ * },
1253
+ * "altitude_lower": {
1254
+ * "reference": "AGL",
1255
+ * "value": 0
1256
+ * }
1236
1257
  * },
1237
1258
  * "type": "Feature"
1238
1259
  * }
@@ -1250,7 +1271,7 @@ export interface components {
1250
1271
  * Features
1251
1272
  * @description RFC 7946 compliant GeoJSON 'Polygon' format with particular reference given to coordinates defined as [Longitude, Latitude] with the winding order of exterior rings being counter-clockwise and holes are clockwise. Unclosed polygons will be automatically closed by setting the final coordinate equal to the first coordinate.
1252
1273
  */
1253
- features: components["schemas"]["GeoJsonPolygonFeature_AtypicalAirspaceProperties_"][];
1274
+ features: components["schemas"]["GeoJsonPolygonFeature_AtypicalAirspaceProperties_-Input"][];
1254
1275
  };
1255
1276
  /**
1256
1277
  * AtypicalAirspace
@@ -1288,8 +1309,14 @@ export interface components {
1288
1309
  * "type": "Polygon"
1289
1310
  * },
1290
1311
  * "properties": {
1291
- * "altitude_upper": 500,
1292
- * "altitude_lower": 0
1312
+ * "altitude_upper": {
1313
+ * "reference": "AGL",
1314
+ * "value": 500
1315
+ * },
1316
+ * "altitude_lower": {
1317
+ * "reference": "AGL",
1318
+ * "value": 0
1319
+ * }
1293
1320
  * },
1294
1321
  * "type": "Feature"
1295
1322
  * }
@@ -1307,22 +1334,12 @@ export interface components {
1307
1334
  * Features
1308
1335
  * @description RFC 7946 compliant GeoJSON 'Polygon' format with particular reference given to coordinates defined as [Longitude, Latitude] with the winding order of exterior rings being counter-clockwise and holes are clockwise. Unclosed polygons will be automatically closed by setting the final coordinate equal to the first coordinate.
1309
1336
  */
1310
- features: components["schemas"]["GeoJsonPolygonFeature_AtypicalAirspaceProperties_"][];
1337
+ features: components["schemas"]["GeoJsonPolygonFeature_AtypicalAirspaceProperties_-Output"][];
1311
1338
  };
1312
1339
  /** AtypicalAirspaceProperties */
1313
1340
  AtypicalAirspaceProperties: {
1314
- /**
1315
- * Altitude Above Ground Level (AGL)
1316
- * @description 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.
1317
- * @example 100
1318
- */
1319
- altitude_upper: number;
1320
- /**
1321
- * Altitude Above Ground Level (AGL)
1322
- * @description 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.
1323
- * @example 100
1324
- */
1325
- altitude_lower: number;
1341
+ altitude_upper: components["schemas"]["Altitude"];
1342
+ altitude_lower: components["schemas"]["Altitude"];
1326
1343
  };
1327
1344
  /** AtypicalAirspaceResponse */
1328
1345
  AtypicalAirspaceResponse: {
@@ -1777,7 +1794,7 @@ export interface components {
1777
1794
  * }
1778
1795
  * ]
1779
1796
  */
1780
- waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
1797
+ waypoints: (components["schemas"]["StartWaypoint-Input"] | components["schemas"]["GotoWaypoint-Input"])[];
1781
1798
  /**
1782
1799
  * @description Terrain Elevation Data Source. Data has been reprojected 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. Terrain is reported as elevation in metres above the EGM2008 Geoid (EPSG:3855) and does not include buildings or man-made structures.
1783
1800
  * @default NASADEM
@@ -1874,7 +1891,7 @@ export interface components {
1874
1891
  * }
1875
1892
  * ]
1876
1893
  */
1877
- waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Output"])[];
1894
+ waypoints: (components["schemas"]["StartWaypoint-Output"] | components["schemas"]["GotoWaypoint-Output"])[];
1878
1895
  /**
1879
1896
  * @description Terrain Elevation Data Source. Data has been reprojected 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. Terrain is reported as elevation in metres above the EGM2008 Geoid (EPSG:3855) and does not include buildings or man-made structures.
1880
1897
  * @default NASADEM
@@ -1997,7 +2014,17 @@ export interface components {
1997
2014
  ][][];
1998
2015
  };
1999
2016
  /** GeoJsonPolygonFeature[AtypicalAirspaceProperties] */
2000
- GeoJsonPolygonFeature_AtypicalAirspaceProperties_: {
2017
+ "GeoJsonPolygonFeature_AtypicalAirspaceProperties_-Input": {
2018
+ /**
2019
+ * Type
2020
+ * @constant
2021
+ */
2022
+ type: "Feature";
2023
+ geometry: components["schemas"]["GeoJsonPolygon"];
2024
+ properties: components["schemas"]["AtypicalAirspaceProperties"];
2025
+ };
2026
+ /** GeoJsonPolygonFeature[AtypicalAirspaceProperties] */
2027
+ "GeoJsonPolygonFeature_AtypicalAirspaceProperties_-Output": {
2001
2028
  /**
2002
2029
  * Type
2003
2030
  * @constant
@@ -2733,12 +2760,7 @@ export interface components {
2733
2760
  * @example hexsoon_h3v2
2734
2761
  */
2735
2762
  aircraft_id: string;
2736
- /**
2737
- * Altitude Above Ground Level (AGL)
2738
- * @description 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.
2739
- * @example 100
2740
- */
2741
- altitude: number;
2763
+ altitude: components["schemas"]["Altitude"];
2742
2764
  /**
2743
2765
  * Category
2744
2766
  * @constant
@@ -2836,7 +2858,7 @@ export interface components {
2836
2858
  * }
2837
2859
  * ]
2838
2860
  */
2839
- waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Output"])[];
2861
+ waypoints: (components["schemas"]["StartWaypoint-Output"] | components["schemas"]["GotoWaypoint-Output"])[];
2840
2862
  /**
2841
2863
  * Time Start
2842
2864
  * Format: date-time
@@ -3052,7 +3074,7 @@ export interface components {
3052
3074
  * PopulationSource
3053
3075
  * @enum {string}
3054
3076
  */
3055
- PopulationSource: "GHS_2020_R2023_100" | "EUROSTAT_2021_R2024_1000" | "EIDC_residential_2011_R2017_1000" | "EIDC_workday_2011_R2017_1000" | "ONS_EW_2021_R2021_1000" | "ONS_EW_2021_R2021_100" | "ONS_EW_WORKDAY_2021_R2021_1000" | "ONS_EW_WORKDAY_2021_R2021_100" | "ONS_EW_OT_2021_R2021_1000" | "ONS_EW_OT_2021_R2021_100";
3077
+ PopulationSource: "GHS_2020_R2023_100" | "EUROSTAT_2021_R2024_1000" | "EIDC_residential_2011_R2017_1000" | "EIDC_workday_2011_R2017_1000" | "ONS_EW_2021_R2021_1000" | "ONS_EW_2021_R2021_200" | "ONS_EW_2021_R2021_100" | "ONS_EW_WORKDAY_2021_R2021_1000" | "ONS_EW_WORKDAY_2021_R2021_200" | "ONS_EW_WORKDAY_2021_R2021_100" | "ONS_EW_OT_2021_R2021_1000" | "ONS_EW_OT_2021_R2021_200" | "ONS_EW_OT_2021_R2021_100";
3056
3078
  /**
3057
3079
  * Raster
3058
3080
  * @description Raster Search Pattern.
@@ -3303,7 +3325,7 @@ export interface components {
3303
3325
  * }
3304
3326
  * ]
3305
3327
  */
3306
- waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
3328
+ waypoints: (components["schemas"]["StartWaypoint-Input"] | components["schemas"]["GotoWaypoint-Input"])[];
3307
3329
  aircraft: components["schemas"]["Aircraft"];
3308
3330
  ground_risk_mitigations: components["schemas"]["JarusV25GroundRiskMitigations"];
3309
3331
  /**
@@ -3396,7 +3418,7 @@ export interface components {
3396
3418
  * }
3397
3419
  * ]
3398
3420
  */
3399
- waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
3421
+ waypoints: (components["schemas"]["StartWaypoint-Input"] | components["schemas"]["GotoWaypoint-Input"])[];
3400
3422
  /**
3401
3423
  * Ground Risk Buffer
3402
3424
  * @description The ground risk buffer is an area on the ground that surrounds the footprint of the contingency volume. It is expected that if the flight exits the contingency volume during a loss of control of the operation that the flight will be terminated within this lateral distance.
@@ -3424,7 +3446,23 @@ export interface components {
3424
3446
  * StartWaypoint
3425
3447
  * @description The start position on a flightplan.
3426
3448
  */
3427
- StartWaypoint: {
3449
+ "StartWaypoint-Input": {
3450
+ /**
3451
+ * @description The type of a `Waypoint`
3452
+ *
3453
+ * - `START`: The beginning of a `Flightplan`
3454
+ * - `GOTO` : Fly to and directly pass through a location under certain parameters
3455
+ * (enum property replaced by openapi-typescript)
3456
+ * @enum {string}
3457
+ */
3458
+ type: "start";
3459
+ position: components["schemas"]["Wgs84Position"];
3460
+ };
3461
+ /**
3462
+ * StartWaypoint
3463
+ * @description The start position on a flightplan.
3464
+ */
3465
+ "StartWaypoint-Output": {
3428
3466
  /**
3429
3467
  * @description The type of a `Waypoint`
3430
3468
  *
@@ -3510,6 +3548,14 @@ export interface components {
3510
3548
  * @example 187.8
3511
3549
  */
3512
3550
  duration: number;
3551
+ /**
3552
+ * Estimated Arrival Time
3553
+ * Format: date-time
3554
+ * @description The estimated time of arrival assuming nominal conditions.
3555
+ * @example 2023-10-30T10:57:57Z
3556
+ * @example 2023-10-30T10:57:57+00:00
3557
+ */
3558
+ estimated_arrival_time: string;
3513
3559
  /**
3514
3560
  * Total Cost
3515
3561
  * @description The estimated total cost to complete the flightplan, given in GBP. When a cost could not calculated this field is returned as `null`.
@@ -3922,7 +3968,7 @@ export interface components {
3922
3968
  * }
3923
3969
  * ]
3924
3970
  */
3925
- waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
3971
+ waypoints: (components["schemas"]["StartWaypoint-Input"] | components["schemas"]["GotoWaypoint-Input"])[];
3926
3972
  /**
3927
3973
  * Ground Risk Buffer
3928
3974
  * @description The ground risk buffer is an area on the ground that surrounds the footprint of the contingency volume. It is expected that if the flight exits the contingency volume during a loss of control of the operation that the flight will be terminated within this lateral distance.
@@ -4028,7 +4074,7 @@ export interface components {
4028
4074
  * }
4029
4075
  * ]
4030
4076
  */
4031
- waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
4077
+ waypoints: (components["schemas"]["StartWaypoint-Input"] | components["schemas"]["GotoWaypoint-Input"])[];
4032
4078
  aircraft: components["schemas"]["Aircraft"];
4033
4079
  ground_risk_mitigations: components["schemas"]["UkGroundRiskMitigations"];
4034
4080
  /**
@@ -4106,18 +4152,8 @@ export interface components {
4106
4152
  */
4107
4153
  "Volume3D-Input": {
4108
4154
  outline_polygon: components["schemas"]["Polygon"];
4109
- /**
4110
- * Altitude Above Ground Level (AGL)
4111
- * @description 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.
4112
- * @example 100
4113
- */
4114
- altitude_lower: number;
4115
- /**
4116
- * Altitude Above Ground Level (AGL)
4117
- * @description 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.
4118
- * @example 100
4119
- */
4120
- altitude_upper: number;
4155
+ altitude_lower: components["schemas"]["Altitude"];
4156
+ altitude_upper: components["schemas"]["Altitude"];
4121
4157
  };
4122
4158
  /**
4123
4159
  * Volume3D
@@ -4127,18 +4163,8 @@ export interface components {
4127
4163
  */
4128
4164
  "Volume3D-Output": {
4129
4165
  outline_polygon: components["schemas"]["Polygon"];
4130
- /**
4131
- * Altitude Above Ground Level (AGL)
4132
- * @description 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.
4133
- * @example 100
4134
- */
4135
- altitude_lower: number;
4136
- /**
4137
- * Altitude Above Ground Level (AGL)
4138
- * @description 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.
4139
- * @example 100
4140
- */
4141
- altitude_upper: number;
4166
+ altitude_lower: components["schemas"]["Altitude"];
4167
+ altitude_upper: components["schemas"]["Altitude"];
4142
4168
  };
4143
4169
  /** Volume4D */
4144
4170
  "Volume4D-Input": {
@@ -4333,12 +4359,7 @@ export interface components {
4333
4359
  * @example -118.456
4334
4360
  */
4335
4361
  lng: number;
4336
- /**
4337
- * Altitude Above Ground Level (AGL)
4338
- * @description 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.
4339
- * @example 100
4340
- */
4341
- altitude: number;
4362
+ altitude: components["schemas"]["Altitude"];
4342
4363
  };
4343
4364
  /** WindParameters */
4344
4365
  WindParameters: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.4477.1",
3
+ "version": "1.4483.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",