@volant-autonomy/via-sdk 1.3632.1 → 1.3636.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 +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/volant-schema.d.ts +35 -19
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -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
|
|
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,
|
|
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 =
|
|
1721
|
-
* y =
|
|
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
|
*/
|
|
@@ -2412,6 +2428,21 @@ export interface components {
|
|
|
2412
2428
|
type?: "flight_pattern";
|
|
2413
2429
|
attributes: components["schemas"]["Raster"];
|
|
2414
2430
|
};
|
|
2431
|
+
/**
|
|
2432
|
+
* RasterValidityTime
|
|
2433
|
+
* @description Time range in which a raster of data is valid.
|
|
2434
|
+
*
|
|
2435
|
+
* Bounds are defined as [start, end) such that the the raster is valid from the `start` time up until (but not
|
|
2436
|
+
* including) the `end` time.
|
|
2437
|
+
*
|
|
2438
|
+
* When `None` is provided, it is considered an infinite bound.
|
|
2439
|
+
*/
|
|
2440
|
+
RasterValidityTime: {
|
|
2441
|
+
/** Start */
|
|
2442
|
+
start: string | null;
|
|
2443
|
+
/** End */
|
|
2444
|
+
end: string | null;
|
|
2445
|
+
};
|
|
2415
2446
|
/** SailAttributes */
|
|
2416
2447
|
SailAttributes: {
|
|
2417
2448
|
/**
|
|
@@ -3246,21 +3277,6 @@ export interface components {
|
|
|
3246
3277
|
*/
|
|
3247
3278
|
speed?: number;
|
|
3248
3279
|
};
|
|
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
3280
|
};
|
|
3265
3281
|
responses: never;
|
|
3266
3282
|
parameters: never;
|