@volant-autonomy/via-sdk 1.2953.1 → 1.2976.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.
@@ -745,6 +745,11 @@ export interface components {
745
745
  * @description Unique identifier for a chart.
746
746
  */
747
747
  chart_id: string;
748
+ /**
749
+ * @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.
750
+ * @default NASADEM
751
+ */
752
+ terrain_source?: components["schemas"]["TerrainSource"];
748
753
  /**
749
754
  * Volumes
750
755
  * @description Start and end times, as well as lower and upper altitudes, are required for each volume. The end time may not be in the past. At least one volume must be provided.
@@ -761,6 +766,11 @@ export interface components {
761
766
  * @description Unique identifier for a chart.
762
767
  */
763
768
  chart_id: string;
769
+ /**
770
+ * @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.
771
+ * @default NASADEM
772
+ */
773
+ terrain_source?: components["schemas"]["TerrainSource"];
764
774
  /**
765
775
  * Volumes
766
776
  * @description Start and end times, as well as lower and upper altitudes, are required for each volume. The end time may not be in the past. At least one volume must be provided.
@@ -1000,7 +1010,7 @@ export interface components {
1000
1010
  * @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.
1001
1011
  */
1002
1012
  ground_risk_buffer: number;
1003
- /** @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. */
1013
+ /** @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. */
1004
1014
  population_density_source: components["schemas"]["PopulationSource"];
1005
1015
  /** Controlled Ground Area Id */
1006
1016
  controlled_ground_area_id?: string | null;
@@ -1122,7 +1132,7 @@ export interface components {
1122
1132
  airspeed: number;
1123
1133
  /**
1124
1134
  * Airspeed Error
1125
- * @description Deviation from nominal aircraft `airspeed`, assumed to be symmetrical about the nominal value. Cannot be larger than `airspeed` and must not cause the lower bound of airspeed to be less than the wind speed.
1135
+ * @description Deviation from nominal aircraft `airspeed`, assumed to be symmetrical about the nominal value. Cannot be larger than `airspeed` and must not cause the lower bound of airspeed to be less than the wind speed.
1126
1136
  * @default 0
1127
1137
  */
1128
1138
  airspeed_error?: number;
@@ -1161,9 +1171,14 @@ export interface components {
1161
1171
  tse_temporal: number;
1162
1172
  /**
1163
1173
  * Waypoints
1164
- * @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
1174
+ * @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
1165
1175
  */
1166
1176
  waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
1177
+ /**
1178
+ * @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.
1179
+ * @default NASADEM
1180
+ */
1181
+ terrain_source?: components["schemas"]["TerrainSource"];
1167
1182
  /**
1168
1183
  * Permitted Airspace Constraints
1169
1184
  * @description Airspace Constraints that are permitted to be operated within. All 4D Volumes associated with these Airspace Constraints will not be deconflicted with the Flightplan. All Airspace Constraints must be in the state: `Accepted`.
@@ -1205,9 +1220,14 @@ export interface components {
1205
1220
  tse_temporal: number;
1206
1221
  /**
1207
1222
  * Waypoints
1208
- * @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
1223
+ * @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
1209
1224
  */
1210
1225
  waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Output"])[];
1226
+ /**
1227
+ * @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.
1228
+ * @default NASADEM
1229
+ */
1230
+ terrain_source?: components["schemas"]["TerrainSource"];
1211
1231
  /**
1212
1232
  * Permitted Airspace Constraints
1213
1233
  * @description Airspace Constraints that are permitted to be operated within. All 4D Volumes associated with these Airspace Constraints will not be deconflicted with the Flightplan. All Airspace Constraints must be in the state: `Accepted`.
@@ -1368,12 +1388,10 @@ export interface components {
1368
1388
  };
1369
1389
  /**
1370
1390
  * GotoWaypoint
1371
- * @description Fly to a specified location under given `flight_parameters` accounting for given
1372
- * `wind_parameters`. All parameters are defined as to be used during the leg flying towards this
1373
- * waypoint.
1391
+ * @description Fly to a specified location under given `flight_parameters` accounting for given `wind_parameters`. All parameters
1392
+ * are defined as to be used during the leg flying towards this waypoint.
1374
1393
  *
1375
- * Note that the `speed` provided in `wind_parameters` must be less than the `airspeed` provided
1376
- * in `flight_parameters`.
1394
+ * Note that the `speed` provided in `wind_parameters` must be less than the `airspeed` provided in `flight_parameters`
1377
1395
  */
1378
1396
  "GotoWaypoint-Input": {
1379
1397
  /**
@@ -1393,12 +1411,10 @@ export interface components {
1393
1411
  };
1394
1412
  /**
1395
1413
  * GotoWaypoint
1396
- * @description Fly to a specified location under given `flight_parameters` accounting for given
1397
- * `wind_parameters`. All parameters are defined as to be used during the leg flying towards this
1398
- * waypoint.
1414
+ * @description Fly to a specified location under given `flight_parameters` accounting for given `wind_parameters`. All parameters
1415
+ * are defined as to be used during the leg flying towards this waypoint.
1399
1416
  *
1400
- * Note that the `speed` provided in `wind_parameters` must be less than the `airspeed` provided
1401
- * in `flight_parameters`.
1417
+ * Note that the `speed` provided in `wind_parameters` must be less than the `airspeed` provided in `flight_parameters`
1402
1418
  */
1403
1419
  "GotoWaypoint-Output": {
1404
1420
  /**
@@ -1613,8 +1629,7 @@ export interface components {
1613
1629
  * LateralParameters
1614
1630
  * @description Aircraft Lateral Movement
1615
1631
  *
1616
- * Operational Intent Volumes (OIVs) are generated with the sum of these values either-side of the
1617
- * mean flightpath.
1632
+ * Operational Intent Volumes (OIVs) are generated with the sum of these values either-side of the mean flightpath.
1618
1633
  */
1619
1634
  LateralParameters: {
1620
1635
  /**
@@ -1694,8 +1709,7 @@ export interface components {
1694
1709
  * PathingCheckpointParameters
1695
1710
  * @description Parameters that are applied to the leg of the journey towards the checkpoint
1696
1711
  *
1697
- * Note that the `speed` provided in `wind_parameters` must be less than the `airspeed` provided in
1698
- * `flight_parameters`.
1712
+ * Note that the `speed` provided in `wind_parameters` must be less than the `airspeed` provided in `flight_parameters`
1699
1713
  */
1700
1714
  PathingCheckpointParameters: {
1701
1715
  flight_parameters: components["schemas"]["FlightParameters"];
@@ -1721,7 +1735,7 @@ export interface components {
1721
1735
  PathingTaskAttributes: {
1722
1736
  /**
1723
1737
  * Waypoints
1724
- * @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
1738
+ * @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
1725
1739
  */
1726
1740
  waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Output"])[];
1727
1741
  };
@@ -1771,8 +1785,11 @@ export interface components {
1771
1785
  aircraft_id?: string;
1772
1786
  /** Sora Classification Id */
1773
1787
  sora_classification_id?: string | null;
1774
- /** @default NASADEM */
1775
- terrain_elevation_source?: components["schemas"]["TerrainSource"] | null;
1788
+ /**
1789
+ * @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.
1790
+ * @default NASADEM
1791
+ */
1792
+ terrain_source?: components["schemas"]["TerrainSource"];
1776
1793
  /**
1777
1794
  * Geocage Coordinates
1778
1795
  * @description The boundary coordinates of a keep-in geocage. Currently geocage is only applied laterally and does not consider altitude.
@@ -1832,13 +1849,12 @@ export interface components {
1832
1849
  PathingTaskState: "queued" | "in-progress" | "successful" | "failed";
1833
1850
  /**
1834
1851
  * Polygon
1835
- * @description An enclosed area on the earth. The bounding edges of this polygon are defined to be the shortest
1836
- * paths between connected vertices. This means, for instance, that the edge between two points
1837
- * both defined at a particular latitude is not generally contained at that latitude. The winding
1838
- * order must be interpreted as the order which produces the smaller area. The path between two
1839
- * vertices is defined to be the shortest possible path between those vertices. Edges may not
1840
- * cross. Vertices may not be duplicated. In particular, the final polygon vertex must not be
1841
- * identical to the first vertex.
1852
+ * @description An enclosed area on the earth. The bounding edges of this polygon are defined to be the shortest paths between
1853
+ * connected vertices. This means, for instance, that the edge between two points both defined at a particular latitude
1854
+ * is not generally contained at that latitude. The winding order must be interpreted as the order which produces the
1855
+ * smaller area. The path between two vertices is defined to be the shortest possible path between those vertices.
1856
+ * Edges may not cross. Vertices may not be duplicated. In particular, the final polygon vertex must not be identical
1857
+ * to the first vertex.
1842
1858
  */
1843
1859
  Polygon: {
1844
1860
  /** Vertices */
@@ -2032,7 +2048,7 @@ export interface components {
2032
2048
  aircraft_id?: string | null;
2033
2049
  /**
2034
2050
  * Waypoints
2035
- * @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
2051
+ * @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
2036
2052
  */
2037
2053
  waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
2038
2054
  /** @default {
@@ -2041,10 +2057,13 @@ export interface components {
2041
2057
  * } */
2042
2058
  aircraft?: components["schemas"]["Aircraft"];
2043
2059
  mitigations: components["schemas"]["Mitigations"];
2044
- /** @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. */
2060
+ /** @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. */
2045
2061
  population_density_source: components["schemas"]["PopulationSource"];
2046
- /** @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. */
2047
- terrain_elevation_source: components["schemas"]["TerrainSource"];
2062
+ /**
2063
+ * @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.
2064
+ * @default NASADEM
2065
+ */
2066
+ terrain_source?: components["schemas"]["TerrainSource"];
2048
2067
  /**
2049
2068
  * Ground Risk Buffer
2050
2069
  * @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.
@@ -2079,6 +2098,11 @@ export interface components {
2079
2098
  * @description Unique identifier for a chart.
2080
2099
  */
2081
2100
  chart_id: string;
2101
+ /**
2102
+ * @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.
2103
+ * @default NASADEM
2104
+ */
2105
+ terrain_source?: components["schemas"]["TerrainSource"];
2082
2106
  /**
2083
2107
  * Aircraft Id
2084
2108
  * @deprecated
@@ -2092,7 +2116,7 @@ export interface components {
2092
2116
  aircraft?: components["schemas"]["Aircraft"];
2093
2117
  /**
2094
2118
  * Waypoints
2095
- * @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
2119
+ * @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
2096
2120
  */
2097
2121
  waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
2098
2122
  /**
@@ -2246,7 +2270,7 @@ export interface components {
2246
2270
  * TerrainSource
2247
2271
  * @enum {string}
2248
2272
  */
2249
- TerrainSource: "SRTMGL3" | "SRTMGL1" | "SRTMGL1_E" | "AW3D30" | "AW3D30_E" | "NASADEM" | "COP30" | "COP90" | "EU_DTM" | "GEDI_L3";
2273
+ TerrainSource: "SRTMGL3" | "SRTMGL1" | "NASADEM" | "EU_DTM";
2250
2274
  /**
2251
2275
  * TokenType
2252
2276
  * @constant
@@ -2372,7 +2396,7 @@ export interface components {
2372
2396
  VolumeSettings: {
2373
2397
  /**
2374
2398
  * Maximum Length
2375
- * @description Maximum 4D volume length prior to application of buffering. Overrides default multiplicative behaviour from 4D Volume width. Omission of this field specifies no maximum, a reasonable multiplier of 4D Volume width will be applied to determine length.
2399
+ * @description Maximum 4D volume length prior to application of buffering. Overrides default multiplicative behaviour from 4D Volume width. Omission of this field specifies no maximum, a reasonable multiplier of 4D Volume width will be applied to determine length.
2376
2400
  */
2377
2401
  maximum_length?: number | null;
2378
2402
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.2953.1",
3
+ "version": "1.2976.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",