@volant-autonomy/via-sdk 1.3632.1 → 1.3639.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 CHANGED
@@ -727,7 +727,7 @@ function defaultPathSerializer(pathname, pathParams) {
727
727
  return nextURL;
728
728
  }
729
729
 
730
- var version = "1.3632.1";
730
+ var version = "1.3639.1";
731
731
 
732
732
  const querySerializer = createQuerySerializer();
733
733
  class Fetcher {
package/dist/index.esm.js CHANGED
@@ -725,7 +725,7 @@ function defaultPathSerializer(pathname, pathParams) {
725
725
  return nextURL;
726
726
  }
727
727
 
728
- var version = "1.3632.1";
728
+ var version = "1.3639.1";
729
729
 
730
730
  const querySerializer = createQuerySerializer();
731
731
  class Fetcher {
@@ -1370,6 +1370,13 @@ export interface components {
1370
1370
  * @description Unique identifier for a chart.
1371
1371
  */
1372
1372
  chart_id: string;
1373
+ georeference: components["schemas"]["Georeference"];
1374
+ /** Bands */
1375
+ bands: components["schemas"]["CostDatasetRasterBand"][];
1376
+ };
1377
+ /** CostDatasetRasterBand */
1378
+ CostDatasetRasterBand: {
1379
+ valid_time_range: components["schemas"]["RasterValidityTime"];
1373
1380
  };
1374
1381
  /** CostDatasetResponse */
1375
1382
  CostDatasetResponse: {
@@ -1690,7 +1697,7 @@ export interface components {
1690
1697
  };
1691
1698
  /**
1692
1699
  * Georeference
1693
- * @description Geospatial reference information for a Chart in native CRS, typically a UTM zone.
1700
+ * @description Geospatial reference information in native CRS, typically a UTM zone.
1694
1701
  */
1695
1702
  Georeference: {
1696
1703
  /**
@@ -1712,13 +1719,22 @@ export interface components {
1712
1719
  * Affine Transform
1713
1720
  * @description
1714
1721
  * Affine transformation represented in GDAL format:
1715
- * [a, b, c, d, e, f]
1722
+ * [c, a, b, f, d, e]
1723
+ *
1724
+ * Where:
1725
+ * 0 (c) is the x-coordinate of the upper-left corner of the upper-left pixel.
1726
+ * 1 (a) is the w-e pixel resolution / pixel width.
1727
+ * 2 (b) is the row rotation (typically zero).
1728
+ * 3 (f) is the y-coordinate of the upper-left corner of the upper-left pixel.
1729
+ * 4 (d) is the column rotation (typically zero).
1730
+ * 5 (e) is the n-s pixel resolution / pixel height (negative value for a north-up image).
1731
+ *
1716
1732
  * This corresponds to the 2D affine transformation matrix:
1717
1733
  * | a b c |
1718
1734
  * | d e f |
1719
1735
  * Used to transform pixel coordinates (col, row) to spatial coordinates (x, y) as:
1720
- * x = a * col + b * row + c
1721
- * y = d * col + e * row + f
1736
+ * x = c * col + a * row + b
1737
+ * y = f * col + d * row + e
1722
1738
  * Note that this transform is created assuming North-Up convention such that the cell (0,0) represents the NW cell of the raster with the y-coordinate decreasing with increasing y-index.
1723
1739
  *
1724
1740
  */
@@ -2192,10 +2208,24 @@ export interface components {
2192
2208
  PathingSettings: {
2193
2209
  /**
2194
2210
  * Ground Risk Bias
2195
- * @description Weighting of Ground Risk. 0: Ignore Ground Risk. 1: Ground Risk Minimised
2211
+ * @deprecated
2212
+ * @description Deprecated, please migrate to the use of `cost_bias`. If provided, will temporarily override `cost_bias`.
2213
+ */
2214
+ ground_risk_bias?: number | null;
2215
+ /**
2216
+ * Cost Bias
2217
+ * @description
2218
+ * Overall consideration given to costs when determining a path versus reaching the checkpoint in the minimum time whilst
2219
+ * respecting other restrictions. Ignoring all cost without other restrictions will result in the straight-line path
2220
+ * between two checkpoints whilst minimising cost will produce a significantly more complex path in an attempt to
2221
+ * reduce any theoretically incurred cost of flight.
2222
+ *
2223
+ * * 0: Ignore cost
2224
+ * * 1: Minimise cost
2225
+ *
2196
2226
  * @default 0.8
2197
2227
  */
2198
- ground_risk_bias?: number;
2228
+ cost_bias?: number;
2199
2229
  /**
2200
2230
  * Deconflict
2201
2231
  * @description Whether to deconflict with volumes associated with other entities.
@@ -2412,6 +2442,21 @@ export interface components {
2412
2442
  type?: "flight_pattern";
2413
2443
  attributes: components["schemas"]["Raster"];
2414
2444
  };
2445
+ /**
2446
+ * RasterValidityTime
2447
+ * @description Time range in which a raster of data is valid.
2448
+ *
2449
+ * Bounds are defined as [start, end) such that the the raster is valid from the `start` time up until (but not
2450
+ * including) the `end` time.
2451
+ *
2452
+ * When `None` is provided, it is considered an infinite bound.
2453
+ */
2454
+ RasterValidityTime: {
2455
+ /** Start */
2456
+ start: string | null;
2457
+ /** End */
2458
+ end: string | null;
2459
+ };
2415
2460
  /** SailAttributes */
2416
2461
  SailAttributes: {
2417
2462
  /**
@@ -3246,21 +3291,6 @@ export interface components {
3246
3291
  */
3247
3292
  speed?: number;
3248
3293
  };
3249
- /**
3250
- * RasterValidityTime
3251
- * @description Time range in which a raster of data is valid.
3252
- *
3253
- * Bounds are defined as [start, end) such that the the raster is valid from the `start` time up until (but not
3254
- * including) the `end` time.
3255
- *
3256
- * When `None` is provided, it is considered an infinite bound.
3257
- */
3258
- RasterValidityTime: {
3259
- /** Start */
3260
- start: string | null;
3261
- /** End */
3262
- end: string | null;
3263
- };
3264
3294
  };
3265
3295
  responses: never;
3266
3296
  parameters: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.3632.1",
3
+ "version": "1.3639.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",