1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* ANISE Toolkit
* Copyright (C) 2021-onward Christopher Rabotin <christopher.rabotin@gmail.com> et al. (cf. AUTHORS.md)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*
* Documentation: https://nyxspace.com/
*/
/**
* This module only contains the serialization and deserialization components of ANISE.
* All other computations are at a higher level module.
*/
use Instrument;
use Location;
use ;
use crateQuaternion;
/// The current version of ANISE
pub const ANISE_VERSION: Semver = Semver ;
/// Spacecraft Data Set allow mapping an ID and/or name to spacecraft data, optionally including mass, drag, SRP, an inertia information
pub type SpacecraftDataSet = ;
/// Planetary Data Set allow mapping an ID and/or name to planetary data, optionally including shape information and rotation information
pub type PlanetaryDataSet = ;
/// Euler Parameter Data Set allow mapping an ID and/or name to a time invariant Quaternion
pub type EulerParameterDataSet = ;
/// Location Data Set allow mapping an ID and/or name to a Location.
pub type LocationDataSet = ;
/// Instrument Data Set allow mapping an ID and/or name to a Instrument.
pub type InstrumentDataSet = ;