@wemap/geo 12.10.4 → 12.10.8-alpha.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/{index.ts → dist/index.d.ts} +0 -2
- package/dist/index.js +1 -1336
- package/dist/index.js.map +1 -1
- package/dist/src/Constants.d.ts +20 -0
- package/dist/src/Utils.d.ts +24 -0
- package/dist/src/Utils.spec.d.ts +1 -0
- package/dist/src/coordinates/BoundingBox.d.ts +73 -0
- package/dist/src/coordinates/BoundingBox.spec.d.ts +1 -0
- package/dist/src/coordinates/Coordinates.d.ts +94 -0
- package/dist/src/coordinates/Coordinates.spec.d.ts +1 -0
- package/dist/src/coordinates/GeoRef.d.ts +21 -0
- package/dist/src/coordinates/GeoRef.spec.d.ts +1 -0
- package/{src/coordinates/GeoRelativePosition.ts → dist/src/coordinates/GeoRelativePosition.d.ts} +3 -4
- package/dist/src/coordinates/Level.d.ts +73 -0
- package/dist/src/coordinates/Level.spec.d.ts +1 -0
- package/dist/src/coordinates/RelativePosition.d.ts +26 -0
- package/dist/src/coordinates/RelativePosition.spec.d.ts +1 -0
- package/dist/src/coordinates/UserPosition.d.ts +26 -0
- package/dist/src/coordinates/UserPosition.spec.d.ts +1 -0
- package/dist/src/rotations/AbsoluteHeading.d.ts +22 -0
- package/dist/src/rotations/AbsoluteHeading.spec.d.ts +1 -0
- package/dist/src/rotations/Attitude.d.ts +31 -0
- package/dist/src/rotations/Attitude.spec.d.ts +1 -0
- package/dist/src/types.d.ts +54 -0
- package/dist/vite.config.d.ts +19 -0
- package/package.json +9 -6
- package/src/Constants.ts +0 -26
- package/src/Utils.spec.ts +0 -183
- package/src/Utils.ts +0 -218
- package/src/coordinates/BoundingBox.spec.ts +0 -198
- package/src/coordinates/BoundingBox.ts +0 -199
- package/src/coordinates/Coordinates.spec.ts +0 -278
- package/src/coordinates/Coordinates.ts +0 -401
- package/src/coordinates/GeoRef.spec.ts +0 -41
- package/src/coordinates/GeoRef.ts +0 -135
- package/src/coordinates/Level.spec.ts +0 -216
- package/src/coordinates/Level.ts +0 -348
- package/src/coordinates/RelativePosition.spec.ts +0 -153
- package/src/coordinates/RelativePosition.ts +0 -94
- package/src/coordinates/UserPosition.spec.ts +0 -213
- package/src/coordinates/UserPosition.ts +0 -132
- package/src/rotations/AbsoluteHeading.spec.ts +0 -98
- package/src/rotations/AbsoluteHeading.ts +0 -86
- package/src/rotations/Attitude.spec.ts +0 -285
- package/src/rotations/Attitude.ts +0 -162
- package/src/types.ts +0 -61
- package/tsconfig.json +0 -3
- package/vite.config.ts +0 -4
|
@@ -2,7 +2,6 @@ export * as Constants from './src/Constants.js';
|
|
|
2
2
|
export * as Utils from './src/Utils.js';
|
|
3
3
|
export { type RouteSample } from './src/Utils.js';
|
|
4
4
|
export * from './src/types.js';
|
|
5
|
-
|
|
6
5
|
/** Coordinates */
|
|
7
6
|
export { default as BoundingBox } from './src/coordinates/BoundingBox.js';
|
|
8
7
|
export { default as GeoRelativePosition } from './src/coordinates/GeoRelativePosition.js';
|
|
@@ -11,7 +10,6 @@ export { default as Level } from './src/coordinates/Level.js';
|
|
|
11
10
|
export { default as RelativePosition } from './src/coordinates/RelativePosition.js';
|
|
12
11
|
export { default as Coordinates } from './src/coordinates/Coordinates.js';
|
|
13
12
|
export { default as UserPosition } from './src/coordinates/UserPosition.js';
|
|
14
|
-
|
|
15
13
|
/** Rotations */
|
|
16
14
|
export { default as Attitude } from './src/rotations/Attitude.js';
|
|
17
15
|
export { default as AbsoluteHeading } from './src/rotations/AbsoluteHeading.js';
|