affn 0.6.0

Affine geometry primitives: strongly-typed coordinate systems, reference frames, and centers for scientific computing.
Documentation
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
//! Serde serialization/deserialization tests for affn types.
//!
//! These tests verify that all core coordinate types can be round-tripped
//! through JSON serialization without losing data.

#![cfg(feature = "serde")]

use affn::cartesian::{Direction as CartesianDirection, Displacement, Position, Vector};
use affn::centers::ReferenceCenter;
use affn::conic::{ConicOrientation, OrientedConic, PeriapsisParam, SemiMajorAxisParam};
#[cfg(feature = "astro")]
use affn::frames::EclipticMeanJ2000;
use affn::frames::{ReferenceFrame, SphericalNaming};
use affn::spherical::{Direction as SphericalDirection, Position as SphericalPosition};
use qtty::*;
use serde::{Deserialize, Serialize};

// =============================================================================
// Test Frame and Center Definitions
// =============================================================================

#[derive(Debug, Copy, Clone, PartialEq)]
struct TestFrame;

impl ReferenceFrame for TestFrame {
    fn frame_name() -> &'static str {
        "TestFrame"
    }
}

// Use default naming (polar/azimuth) for test frame
impl SphericalNaming for TestFrame {
    fn polar_name() -> &'static str {
        "polar"
    }
    fn azimuth_name() -> &'static str {
        "azimuth"
    }
}

#[derive(Debug, Copy, Clone, PartialEq)]
struct TestCenter;

impl ReferenceCenter for TestCenter {
    type Params = ();
    fn center_name() -> &'static str {
        "TestCenter"
    }
}

/// A center with runtime parameters for testing serde bounds.
#[derive(Debug, Copy, Clone, PartialEq)]
struct ParameterizedCenter;

#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize)]
struct CenterParams {
    x: f64,
    y: f64,
    z: f64,
}

impl ReferenceCenter for ParameterizedCenter {
    type Params = CenterParams;
    fn center_name() -> &'static str {
        "ParameterizedCenter"
    }
}

// =============================================================================
// Cartesian Vector Tests
// =============================================================================

#[test]
fn test_vector_serde_roundtrip() {
    let vec = Vector::<TestFrame, Meter>::new(1.0, 2.0, 3.0);

    let json = serde_json::to_string(&vec).expect("serialize Vector");
    let deserialized: Vector<TestFrame, Meter> =
        serde_json::from_str(&json).expect("deserialize Vector");

    assert_eq!(vec.x(), deserialized.x());
    assert_eq!(vec.y(), deserialized.y());
    assert_eq!(vec.z(), deserialized.z());
}

#[test]
fn test_displacement_serde_roundtrip() {
    let disp = Displacement::<TestFrame, Kilometer>::new(100.0, 200.0, 300.0);

    let json = serde_json::to_string(&disp).expect("serialize Displacement");
    let deserialized: Displacement<TestFrame, Kilometer> =
        serde_json::from_str(&json).expect("deserialize Displacement");

    assert_eq!(disp.x(), deserialized.x());
    assert_eq!(disp.y(), deserialized.y());
    assert_eq!(disp.z(), deserialized.z());
}

#[test]
fn test_vector_with_compound_unit_serde_roundtrip() {
    type MeterPerSecond = Per<Meter, Second>;
    let vel = Vector::<TestFrame, MeterPerSecond>::new(10.0, 20.0, 30.0);

    let json = serde_json::to_string(&vel).expect("serialize velocity Vector");
    let deserialized: Vector<TestFrame, MeterPerSecond> =
        serde_json::from_str(&json).expect("deserialize velocity Vector");

    assert_eq!(vel.x(), deserialized.x());
    assert_eq!(vel.y(), deserialized.y());
    assert_eq!(vel.z(), deserialized.z());
}

// =============================================================================
// Cartesian Direction Tests
// =============================================================================

#[test]
fn test_cartesian_direction_serde_roundtrip() {
    let dir = CartesianDirection::<TestFrame>::new(1.0, 2.0, 2.0);

    let json = serde_json::to_string(&dir).expect("serialize CartesianDirection");
    let deserialized: CartesianDirection<TestFrame> =
        serde_json::from_str(&json).expect("deserialize CartesianDirection");

    // Directions are normalized, so compare with tolerance
    assert!((dir.x() - deserialized.x()).abs() < 1e-12);
    assert!((dir.y() - deserialized.y()).abs() < 1e-12);
    assert!((dir.z() - deserialized.z()).abs() < 1e-12);
}

#[test]
fn test_cartesian_direction_unit_axes_serde() {
    let x_axis = CartesianDirection::<TestFrame>::new(1.0, 0.0, 0.0);
    let y_axis = CartesianDirection::<TestFrame>::new(0.0, 1.0, 0.0);
    let z_axis = CartesianDirection::<TestFrame>::new(0.0, 0.0, 1.0);

    for dir in [x_axis, y_axis, z_axis] {
        let json = serde_json::to_string(&dir).expect("serialize axis");
        let deserialized: CartesianDirection<TestFrame> =
            serde_json::from_str(&json).expect("deserialize axis");

        assert!((dir.x() - deserialized.x()).abs() < 1e-12);
        assert!((dir.y() - deserialized.y()).abs() < 1e-12);
        assert!((dir.z() - deserialized.z()).abs() < 1e-12);
    }
}

// =============================================================================
// Cartesian Position Tests
// =============================================================================

#[test]
fn test_cartesian_position_serde_roundtrip() {
    let pos = Position::<TestCenter, TestFrame, AstronomicalUnit>::new(1.0, 2.0, 3.0);

    let json = serde_json::to_string(&pos).expect("serialize Position");
    let deserialized: Position<TestCenter, TestFrame, AstronomicalUnit> =
        serde_json::from_str(&json).expect("deserialize Position");

    assert_eq!(pos.x(), deserialized.x());
    assert_eq!(pos.y(), deserialized.y());
    assert_eq!(pos.z(), deserialized.z());
}

#[test]
fn test_cartesian_position_with_params_serde_roundtrip() {
    let params = CenterParams {
        x: 10.0,
        y: 20.0,
        z: 30.0,
    };
    let pos = Position::<ParameterizedCenter, TestFrame, Kilometer>::new_with_params(
        params.clone(),
        100.0,
        200.0,
        300.0,
    );

    let json = serde_json::to_string(&pos).expect("serialize Position with params");
    let deserialized: Position<ParameterizedCenter, TestFrame, Kilometer> =
        serde_json::from_str(&json).expect("deserialize Position with params");

    assert_eq!(pos.x(), deserialized.x());
    assert_eq!(pos.y(), deserialized.y());
    assert_eq!(pos.z(), deserialized.z());
    assert_eq!(pos.center_params(), deserialized.center_params());
}

#[test]
fn test_cartesian_position_origin_serde() {
    let origin = Position::<TestCenter, TestFrame, Meter>::new(0.0, 0.0, 0.0);

    let json = serde_json::to_string(&origin).expect("serialize origin");
    let deserialized: Position<TestCenter, TestFrame, Meter> =
        serde_json::from_str(&json).expect("deserialize origin");

    assert_eq!(origin.x().value(), deserialized.x().value());
    assert_eq!(origin.y().value(), deserialized.y().value());
    assert_eq!(origin.z().value(), deserialized.z().value());
}

// =============================================================================
// Spherical Direction Tests
// =============================================================================

#[test]
fn test_spherical_direction_serde_roundtrip() {
    let dir = SphericalDirection::<TestFrame>::new_raw(45.0 * DEG, 90.0 * DEG);

    let json = serde_json::to_string(&dir).expect("serialize SphericalDirection");
    let deserialized: SphericalDirection<TestFrame> =
        serde_json::from_str(&json).expect("deserialize SphericalDirection");

    assert!((dir.polar.value() - deserialized.polar.value()).abs() < 1e-12);
    assert!((dir.azimuth.value() - deserialized.azimuth.value()).abs() < 1e-12);
}

#[test]
fn test_spherical_direction_poles_serde() {
    let north_pole = SphericalDirection::<TestFrame>::new_raw(90.0 * DEG, 0.0 * DEG);
    let south_pole = SphericalDirection::<TestFrame>::new_raw(-90.0 * DEG, 0.0 * DEG);

    for dir in [north_pole, south_pole] {
        let json = serde_json::to_string(&dir).expect("serialize pole");
        let deserialized: SphericalDirection<TestFrame> =
            serde_json::from_str(&json).expect("deserialize pole");

        assert!((dir.polar.value() - deserialized.polar.value()).abs() < 1e-12);
        assert!((dir.azimuth.value() - deserialized.azimuth.value()).abs() < 1e-12);
    }
}

#[test]
fn test_spherical_direction_equator_serde() {
    // Test points on the equator at various azimuths
    for azimuth in [0.0, 90.0, 180.0, 270.0, 359.9] {
        let dir = SphericalDirection::<TestFrame>::new_raw(0.0 * DEG, azimuth * DEG);

        let json = serde_json::to_string(&dir).expect("serialize equator point");
        let deserialized: SphericalDirection<TestFrame> =
            serde_json::from_str(&json).expect("deserialize equator point");

        assert!((dir.polar.value() - deserialized.polar.value()).abs() < 1e-12);
        assert!((dir.azimuth.value() - deserialized.azimuth.value()).abs() < 1e-12);
    }
}

// =============================================================================
// Spherical Position Tests
// =============================================================================

#[test]
fn test_spherical_position_serde_roundtrip() {
    let pos = SphericalPosition::<TestCenter, TestFrame, Kilometer>::new_raw(
        45.0 * DEG,
        90.0 * DEG,
        1000.0 * KM,
    );

    let json = serde_json::to_string(&pos).expect("serialize SphericalPosition");
    let deserialized: SphericalPosition<TestCenter, TestFrame, Kilometer> =
        serde_json::from_str(&json).expect("deserialize SphericalPosition");

    assert!((pos.polar.value() - deserialized.polar.value()).abs() < 1e-12);
    assert!((pos.azimuth.value() - deserialized.azimuth.value()).abs() < 1e-12);
    assert_eq!(pos.distance, deserialized.distance);
}

#[test]
fn test_spherical_position_with_params_serde_roundtrip() {
    let params = CenterParams {
        x: 1.0,
        y: 2.0,
        z: 3.0,
    };
    let pos =
        SphericalPosition::<ParameterizedCenter, TestFrame, AstronomicalUnit>::new_raw_with_params(
            params.clone(),
            30.0 * DEG,
            60.0 * DEG,
            1.5 * AU,
        );

    let json = serde_json::to_string(&pos).expect("serialize SphericalPosition with params");
    let deserialized: SphericalPosition<ParameterizedCenter, TestFrame, AstronomicalUnit> =
        serde_json::from_str(&json).expect("deserialize SphericalPosition with params");

    assert!((pos.polar.value() - deserialized.polar.value()).abs() < 1e-12);
    assert!((pos.azimuth.value() - deserialized.azimuth.value()).abs() < 1e-12);
    assert_eq!(pos.distance, deserialized.distance);
    assert_eq!(pos.center_params(), deserialized.center_params());
}

// =============================================================================
// JSON Structure Tests
// =============================================================================

#[test]
fn test_vector_json_structure() {
    let vec = Vector::<TestFrame, Meter>::new(1.0, 2.0, 3.0);
    let json = serde_json::to_string_pretty(&vec).expect("serialize Vector");

    // Verify JSON is valid and can be parsed
    let value: serde_json::Value = serde_json::from_str(&json).expect("parse JSON");
    assert!(value.is_object());
}

#[test]
fn test_position_json_structure() {
    let pos = Position::<TestCenter, TestFrame, Meter>::new(1.0, 2.0, 3.0);
    let json = serde_json::to_string_pretty(&pos).expect("serialize Position");

    // Verify JSON is valid and can be parsed
    let value: serde_json::Value = serde_json::from_str(&json).expect("parse JSON");
    assert!(value.is_object());
}

// =============================================================================
// Edge Cases
// =============================================================================

#[test]
fn test_vector_with_special_values_serde() {
    // Test with very small values
    let small = Vector::<TestFrame, Meter>::new(1e-300, 1e-300, 1e-300);
    let json = serde_json::to_string(&small).expect("serialize small vector");
    let deserialized: Vector<TestFrame, Meter> =
        serde_json::from_str(&json).expect("deserialize small vector");
    assert_eq!(small.x(), deserialized.x());

    // Test with very large values
    let large = Vector::<TestFrame, Meter>::new(1e300, 1e300, 1e300);
    let json = serde_json::to_string(&large).expect("serialize large vector");
    let deserialized: Vector<TestFrame, Meter> =
        serde_json::from_str(&json).expect("deserialize large vector");
    assert_eq!(large.x(), deserialized.x());
}

#[test]
fn test_zero_vector_serde() {
    let zero = Vector::<TestFrame, Meter>::new(0.0, 0.0, 0.0);

    let json = serde_json::to_string(&zero).expect("serialize zero vector");
    let deserialized: Vector<TestFrame, Meter> =
        serde_json::from_str(&json).expect("deserialize zero vector");

    assert_eq!(zero.x().value(), deserialized.x().value());
    assert_eq!(zero.y().value(), deserialized.y().value());
    assert_eq!(zero.z().value(), deserialized.z().value());
}

#[test]
fn test_negative_values_serde() {
    let neg = Vector::<TestFrame, Meter>::new(-1.0, -2.0, -3.0);

    let json = serde_json::to_string(&neg).expect("serialize negative vector");
    let deserialized: Vector<TestFrame, Meter> =
        serde_json::from_str(&json).expect("deserialize negative vector");

    assert_eq!(neg.x(), deserialized.x());
    assert_eq!(neg.y(), deserialized.y());
    assert_eq!(neg.z(), deserialized.z());
}

// =============================================================================
// Conic Geometry Tests
// =============================================================================

#[test]
fn test_periapsis_param_serde_roundtrip() {
    let conic = PeriapsisParam::try_new(1.25 * AU, 0.42).unwrap();

    let json = serde_json::to_string(&conic).expect("serialize PeriapsisParam");
    let deserialized: PeriapsisParam<AstronomicalUnit> =
        serde_json::from_str(&json).expect("deserialize PeriapsisParam");

    assert_eq!(conic, deserialized);
}

#[test]
fn test_semi_major_axis_param_serde_roundtrip() {
    let conic = SemiMajorAxisParam::try_new(2.5 * KM, 0.2).unwrap();

    let json = serde_json::to_string(&conic).expect("serialize SemiMajorAxisParam");
    let deserialized: SemiMajorAxisParam<Kilometer> =
        serde_json::from_str(&json).expect("deserialize SemiMajorAxisParam");

    assert_eq!(conic, deserialized);
}

#[test]
#[cfg(feature = "astro")]
fn test_oriented_conic_serde_roundtrip() {
    let orientation =
        ConicOrientation::<EclipticMeanJ2000>::try_new(12.0 * DEG, 34.0 * DEG, 56.0 * DEG).unwrap();
    let periapsis: OrientedConic<PeriapsisParam<AstronomicalUnit>, EclipticMeanJ2000> =
        OrientedConic::new(PeriapsisParam::try_new(0.5 * AU, 1.4).unwrap(), orientation);
    let semi_major: OrientedConic<SemiMajorAxisParam<Meter>, EclipticMeanJ2000> =
        OrientedConic::new(
            SemiMajorAxisParam::try_new(5.0 * M, 0.1).unwrap(),
            orientation,
        );

    let periapsis_json =
        serde_json::to_string(&periapsis).expect("serialize OrientedConic<PeriapsisParam, _>");
    let periapsis_deserialized: OrientedConic<PeriapsisParam<AstronomicalUnit>, EclipticMeanJ2000> =
        serde_json::from_str(&periapsis_json).expect("deserialize OrientedConic<PeriapsisParam, _>");
    assert_eq!(periapsis, periapsis_deserialized);

    let semi_major_json =
        serde_json::to_string(&semi_major).expect("serialize OrientedConic<SemiMajorAxisParam, _>");
    let semi_major_deserialized: OrientedConic<SemiMajorAxisParam<Meter>, EclipticMeanJ2000> =
        serde_json::from_str(&semi_major_json)
            .expect("deserialize OrientedConic<SemiMajorAxisParam, _>");
    assert_eq!(semi_major, semi_major_deserialized);
}