@volant-autonomy/via-sdk 1.3512.1 → 1.3537.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.
@@ -1174,6 +1174,7 @@ export interface components {
1174
1174
  */
1175
1175
  bounding_polygon: components["schemas"]["Wgs84Point"][];
1176
1176
  data_sources: components["schemas"]["DataSources"];
1177
+ georeference: components["schemas"]["Georeference"];
1177
1178
  };
1178
1179
  /** ChartResponse */
1179
1180
  ChartResponse: {
@@ -1571,6 +1572,42 @@ export interface components {
1571
1572
  type?: "geocage";
1572
1573
  attributes: components["schemas"]["Geocage-Output"];
1573
1574
  };
1575
+ /**
1576
+ * Georeference
1577
+ * @description Geospatial reference information for a Chart in native CRS, typically a UTM zone.
1578
+ */
1579
+ Georeference: {
1580
+ /**
1581
+ * Coordinate Reference System
1582
+ * @description CRS (Coordinate Reference System) of the underlying raster data, typically a UTM zone represented using an EPSG code in standardised format EPSG:EPSG_CODE, where EPSG_CODE is an integer. Refer to https://epsg.org/home.html for more information regarding specific EPSG codes.
1583
+ */
1584
+ crs: string;
1585
+ /**
1586
+ * Resolution
1587
+ * @description The resolution of each cell, defined in metres.
1588
+ */
1589
+ resolution: number;
1590
+ /**
1591
+ * Raster Shape
1592
+ * @description Shape of the underlying raster grid defined as (height, width) in cells.
1593
+ */
1594
+ shape: number[];
1595
+ /**
1596
+ * Affine Transform
1597
+ * @description
1598
+ * Affine transformation represented in GDAL format:
1599
+ * [a, b, c, d, e, f]
1600
+ * This corresponds to the 2D affine transformation matrix:
1601
+ * | a b c |
1602
+ * | d e f |
1603
+ * Used to transform pixel coordinates (col, row) to spatial coordinates (x, y) as:
1604
+ * x = a * col + b * row + c
1605
+ * y = d * col + e * row + f
1606
+ * Note that this transform is created assuming North-Down convention such that the cell (0,0) represents the NW cell of the raster with the y-coordinate decreasing with increasing y-index.
1607
+ *
1608
+ */
1609
+ affine_transform: number[];
1610
+ };
1574
1611
  /**
1575
1612
  * GotoPathingCheckpoint
1576
1613
  * @description Generate a path to a specified location under given `flight_parameters` accounting for given `wind_parameters` and
@@ -1578,13 +1615,12 @@ export interface components {
1578
1615
  */
1579
1616
  GotoPathingCheckpoint: {
1580
1617
  /**
1581
- * Type
1582
1618
  * @description The type of a Pathing Checkpoint
1583
1619
  *
1584
1620
  * - `START`: The beginning of a Pathing Task
1585
1621
  * - `GOTO` : Fly to and directly pass through a location under certain parameters
1586
- *
1587
- * @constant
1622
+ * (enum property replaced by openapi-typescript)
1623
+ * @enum {string}
1588
1624
  */
1589
1625
  type: "goto";
1590
1626
  position: components["schemas"]["Wgs84Position"];
@@ -1599,13 +1635,12 @@ export interface components {
1599
1635
  */
1600
1636
  "GotoWaypoint-Input": {
1601
1637
  /**
1602
- * Type
1603
1638
  * @description The type of a `Waypoint`
1604
1639
  *
1605
1640
  * - `START`: The beginning of a `Flightplan`
1606
1641
  * - `GOTO` : Fly to and directly pass through a location under certain parameters
1607
- *
1608
- * @constant
1642
+ * (enum property replaced by openapi-typescript)
1643
+ * @enum {string}
1609
1644
  */
1610
1645
  type: "goto";
1611
1646
  position: components["schemas"]["Wgs84Position"];
@@ -1621,13 +1656,12 @@ export interface components {
1621
1656
  */
1622
1657
  "GotoWaypoint-Output": {
1623
1658
  /**
1624
- * Type
1625
1659
  * @description The type of a `Waypoint`
1626
1660
  *
1627
1661
  * - `START`: The beginning of a `Flightplan`
1628
1662
  * - `GOTO` : Fly to and directly pass through a location under certain parameters
1629
- *
1630
- * @constant
1663
+ * (enum property replaced by openapi-typescript)
1664
+ * @enum {string}
1631
1665
  */
1632
1666
  type: "goto";
1633
1667
  position: components["schemas"]["Wgs84Position"];
@@ -2414,13 +2448,12 @@ export interface components {
2414
2448
  */
2415
2449
  StartPathingCheckpoint: {
2416
2450
  /**
2417
- * Type
2418
2451
  * @description The type of a Pathing Checkpoint
2419
2452
  *
2420
2453
  * - `START`: The beginning of a Pathing Task
2421
2454
  * - `GOTO` : Fly to and directly pass through a location under certain parameters
2422
- *
2423
- * @constant
2455
+ * (enum property replaced by openapi-typescript)
2456
+ * @enum {string}
2424
2457
  */
2425
2458
  type: "start";
2426
2459
  position: components["schemas"]["Wgs84Position"];
@@ -2431,13 +2464,12 @@ export interface components {
2431
2464
  */
2432
2465
  StartWaypoint: {
2433
2466
  /**
2434
- * Type
2435
2467
  * @description The type of a `Waypoint`
2436
2468
  *
2437
2469
  * - `START`: The beginning of a `Flightplan`
2438
2470
  * - `GOTO` : Fly to and directly pass through a location under certain parameters
2439
- *
2440
- * @constant
2471
+ * (enum property replaced by openapi-typescript)
2472
+ * @enum {string}
2441
2473
  */
2442
2474
  type: "start";
2443
2475
  position: components["schemas"]["Wgs84Position"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.3512.1",
3
+ "version": "1.3537.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",