brahe 1.4.1

Brahe is a modern satellite dynamics library for research and engineering applications designed to be easy-to-learn, high-performance, and quick-to-deploy. The north-star of the development is enabling users to solve meaningful problems and answer questions quickly, easily, and correctly.
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
/*!
 * Location types and AccessibleLocation trait for access computation
 *
 * This module provides point and polygon location types with GeoJSON interoperability.
 * All locations implement the Identifiable trait for traceability.
 */

use std::any::Any;
use std::collections::HashMap;

use nalgebra::Vector3;
use serde::{Deserialize, Serialize};
use serde_json::{Value as JsonValue, json};
use uuid::Uuid;

use crate::constants::AngleFormat;
use crate::coordinates::position_geodetic_to_ecef;
use crate::utils::errors::BraheError;
use crate::utils::identifiable::Identifiable;

/// Core trait for any location that can be accessed by a satellite
///
/// Provides common interface for point and polygon locations, including:
/// - Geographic coordinates (geodetic and ECEF)
/// - Extensible properties via HashMap
/// - GeoJSON serialization
/// - Identifiable trait support
pub trait AccessibleLocation: Identifiable + Send + Sync {
    /// Geographic center in geodetic coordinates [lon, lat, alt]
    ///
    /// Units: [degrees, degrees, meters]
    fn center_geodetic(&self) -> Vector3<f64>;

    /// Center position in ECEF coordinates
    ///
    /// Units: meters
    fn center_ecef(&self) -> Vector3<f64>;

    /// Extensible properties dictionary
    ///
    /// Allows storing arbitrary metadata with the location
    fn properties(&self) -> &HashMap<String, JsonValue>;

    /// Mutable access to properties
    fn properties_mut(&mut self) -> &mut HashMap<String, JsonValue>;

    /// Export to GeoJSON Feature format
    ///
    /// Returns a GeoJSON Feature object with geometry and properties
    fn to_geojson(&self) -> JsonValue;

    /// Downcast to a concrete type via `Any`.
    ///
    /// Enables runtime type checking for algorithms that need to dispatch
    /// on the concrete location type (e.g., tessellation).
    fn as_any(&self) -> &dyn Any;
}

/// A single point location on Earth's surface
///
/// Represents a discrete point with geodetic coordinates.
/// Commonly used for ground stations, imaging targets, or tessellated polygon tiles.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PointLocation {
    /// Geodetic coordinates [longitude, latitude, altitude]
    /// Units: [degrees, degrees, meters]
    center: Vector3<f64>,

    /// Cached ECEF position (meters)
    #[serde(skip)]
    center_ecef: Option<Vector3<f64>>,

    /// Extensible metadata dictionary
    #[serde(default)]
    properties: HashMap<String, JsonValue>,

    /// Optional human-readable name
    name: Option<String>,

    /// Optional numeric identifier
    id: Option<u64>,

    /// Optional UUID
    uuid: Option<Uuid>,
}

impl PointLocation {
    /// Create a new point location from geodetic coordinates
    ///
    /// # Arguments
    /// - `lon`: Longitude (degrees)
    /// - `lat`: Latitude (degrees)
    /// - `alt`: Altitude above ellipsoid (meters)
    ///
    /// # Returns
    /// New PointLocation instance
    ///
    /// # Example
    /// ```
    /// use brahe::access::PointLocation;
    ///
    /// let svalbard = PointLocation::new(15.4, 78.2, 0.0);
    /// ```
    pub fn new(lon: f64, lat: f64, alt: f64) -> Self {
        let center = Vector3::new(lon, lat, alt);

        // Compute ECEF position
        let center_ecef = position_geodetic_to_ecef(center, AngleFormat::Degrees)
            .expect("Invalid geodetic coordinates");

        Self {
            center,
            center_ecef: Some(center_ecef),
            properties: HashMap::new(),
            name: None,
            id: None,
            uuid: Some(Uuid::now_v7()),
        }
    }

    /// Create from GeoJSON Point Feature
    ///
    /// # Arguments
    /// - `geojson`: GeoJSON Feature object with Point geometry
    ///
    /// # Returns
    /// New PointLocation or error if invalid
    ///
    /// # Example
    /// ```
    /// use brahe::access::PointLocation;
    /// use serde_json::json;
    ///
    /// let geojson = json!({
    ///     "type": "Feature",
    ///     "geometry": {
    ///         "type": "Point",
    ///         "coordinates": [15.4, 78.2, 0.0]
    ///     },
    ///     "properties": {
    ///         "name": "Svalbard"
    ///     }
    /// });
    ///
    /// let location = PointLocation::from_geojson(&geojson).unwrap();
    /// ```
    pub fn from_geojson(geojson: &JsonValue) -> Result<Self, BraheError> {
        // Validate it's a Feature
        if geojson.get("type").and_then(|t| t.as_str()) != Some("Feature") {
            return Err(BraheError::ParseError(
                "GeoJSON must be a Feature object".to_string(),
            ));
        }

        // Extract geometry
        let geometry = geojson.get("geometry").ok_or_else(|| {
            BraheError::ParseError("GeoJSON Feature missing geometry".to_string())
        })?;

        // Validate it's a Point
        if geometry.get("type").and_then(|t| t.as_str()) != Some("Point") {
            return Err(BraheError::ParseError(
                "GeoJSON geometry must be Point type".to_string(),
            ));
        }

        // Extract coordinates [lon, lat] or [lon, lat, alt]
        let coords = geometry
            .get("coordinates")
            .and_then(|c| c.as_array())
            .ok_or_else(|| BraheError::ParseError("Invalid Point coordinates".to_string()))?;

        if coords.len() < 2 {
            return Err(BraheError::ParseError(
                "Point must have at least [lon, lat]".to_string(),
            ));
        }

        let lon = coords[0]
            .as_f64()
            .ok_or_else(|| BraheError::ParseError("Longitude must be a number".to_string()))?;
        let lat = coords[1]
            .as_f64()
            .ok_or_else(|| BraheError::ParseError("Latitude must be a number".to_string()))?;
        let alt = coords.get(2).and_then(|a| a.as_f64()).unwrap_or(0.0);

        // Create point location
        let mut location = Self::new(lon, lat, alt);

        // Extract properties if present
        if let Some(props) = geojson.get("properties").and_then(|p| p.as_object()) {
            for (key, value) in props.iter() {
                // Special handling for identity fields
                match key.as_str() {
                    "name" => {
                        if let Some(name_str) = value.as_str() {
                            location.name = Some(name_str.to_string());
                        }
                    }
                    "id" => {
                        if let Some(id_num) = value.as_u64() {
                            location.id = Some(id_num);
                        }
                    }
                    "uuid" => {
                        if let Some(uuid_str) = value.as_str()
                            && let Ok(parsed_uuid) = Uuid::parse_str(uuid_str)
                        {
                            location.uuid = Some(parsed_uuid);
                        }
                    }
                    _ => {
                        // Store other properties
                        location.properties.insert(key.clone(), value.clone());
                    }
                }
            }
        }

        Ok(location)
    }

    /// Add a custom property (builder pattern)
    ///
    /// # Arguments
    /// - `key`: Property name
    /// - `value`: Property value (any JSON-serializable type)
    ///
    /// # Returns
    /// Self for chaining
    ///
    /// # Example
    /// ```
    /// use brahe::access::PointLocation;
    /// use serde_json::json;
    ///
    /// let location = PointLocation::new(15.4, 78.2, 0.0)
    ///     .add_property("country", json!("Norway"))
    ///     .add_property("elevation_mask_deg", json!(5.0));
    /// ```
    pub fn add_property(mut self, key: &str, value: JsonValue) -> Self {
        self.properties.insert(key.to_string(), value);
        self
    }

    /// Get longitude in degrees (quick accessor)
    pub fn lon(&self) -> f64 {
        self.center.x
    }

    /// Get latitude in degrees (quick accessor)
    pub fn lat(&self) -> f64 {
        self.center.y
    }

    /// Get altitude in meters (quick accessor)
    pub fn alt(&self) -> f64 {
        self.center.z
    }

    /// Get longitude with angle format conversion
    ///
    /// # Arguments
    /// - `angle_format`: Desired output format (Degrees or Radians)
    ///
    /// # Example
    /// ```
    /// use brahe::access::PointLocation;
    /// use brahe::constants::AngleFormat;
    ///
    /// let loc = PointLocation::new(15.4, 78.2, 0.0);
    /// let lon_deg = loc.longitude(AngleFormat::Degrees);
    /// let lon_rad = loc.longitude(AngleFormat::Radians);
    /// ```
    pub fn longitude(&self, angle_format: AngleFormat) -> f64 {
        match angle_format {
            AngleFormat::Degrees => self.center.x,
            AngleFormat::Radians => self.center.x.to_radians(),
        }
    }

    /// Get latitude with angle format conversion
    ///
    /// # Arguments
    /// - `angle_format`: Desired output format (Degrees or Radians)
    pub fn latitude(&self, angle_format: AngleFormat) -> f64 {
        match angle_format {
            AngleFormat::Degrees => self.center.y,
            AngleFormat::Radians => self.center.y.to_radians(),
        }
    }

    /// Get altitude in meters
    pub fn altitude(&self) -> f64 {
        self.center.z
    }
}

impl AccessibleLocation for PointLocation {
    fn center_geodetic(&self) -> Vector3<f64> {
        self.center
    }

    fn center_ecef(&self) -> Vector3<f64> {
        // Return cached value or recompute if needed
        self.center_ecef.unwrap_or_else(|| {
            position_geodetic_to_ecef(self.center, AngleFormat::Degrees)
                .expect("Invalid geodetic coordinates")
        })
    }

    fn properties(&self) -> &HashMap<String, JsonValue> {
        &self.properties
    }

    fn properties_mut(&mut self) -> &mut HashMap<String, JsonValue> {
        &mut self.properties
    }

    fn to_geojson(&self) -> JsonValue {
        let mut props = self.properties.clone();

        // Add identity fields to properties
        if let Some(name) = &self.name {
            props.insert("name".to_string(), json!(name));
        }
        if let Some(id) = self.id {
            props.insert("id".to_string(), json!(id));
        }
        if let Some(uuid) = self.uuid {
            props.insert("uuid".to_string(), json!(uuid.to_string()));
        }

        json!({
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [self.center.x, self.center.y, self.center.z]
            },
            "properties": props
        })
    }

    fn as_any(&self) -> &dyn Any {
        self
    }
}

impl Identifiable for PointLocation {
    fn with_name(mut self, name: &str) -> Self {
        self.name = Some(name.to_string());
        self
    }

    fn with_uuid(mut self, uuid: Uuid) -> Self {
        self.uuid = Some(uuid);
        self
    }

    fn with_new_uuid(mut self) -> Self {
        self.uuid = Some(Uuid::now_v7());
        self
    }

    fn with_id(mut self, id: u64) -> Self {
        self.id = Some(id);
        self
    }

    fn with_identity(mut self, name: Option<&str>, uuid: Option<Uuid>, id: Option<u64>) -> Self {
        self.name = name.map(|s| s.to_string());
        self.uuid = uuid;
        self.id = id;
        self
    }

    fn set_identity(&mut self, name: Option<&str>, uuid: Option<Uuid>, id: Option<u64>) {
        self.name = name.map(|s| s.to_string());
        self.uuid = uuid;
        self.id = id;
    }

    fn set_id(&mut self, id: Option<u64>) {
        self.id = id;
    }

    fn set_name(&mut self, name: Option<&str>) {
        self.name = name.map(|s| s.to_string());
    }

    fn generate_uuid(&mut self) {
        self.uuid = Some(Uuid::now_v7());
    }

    fn get_id(&self) -> Option<u64> {
        self.id
    }

    fn get_name(&self) -> Option<&str> {
        self.name.as_deref()
    }

    fn get_uuid(&self) -> Option<Uuid> {
        self.uuid
    }
}

/// A polygonal area on Earth's surface
///
/// Represents a closed polygon with multiple vertices.
/// Commonly used for areas of interest, no-fly zones, or imaging footprints.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PolygonLocation {
    /// Computed center (centroid) in geodetic coords [lon, lat, alt]
    center: Vector3<f64>,

    /// Cached ECEF center position
    #[serde(skip)]
    center_ecef: Option<Vector3<f64>>,

    /// Polygon vertices in geodetic coords [lon, lat, alt]
    /// First and last vertex must be identical (closed polygon)
    vertices: Vec<Vector3<f64>>,

    /// Extensible metadata dictionary
    #[serde(default)]
    properties: HashMap<String, JsonValue>,

    /// Optional human-readable name
    name: Option<String>,

    /// Optional numeric identifier
    id: Option<u64>,

    /// Optional UUID
    uuid: Option<Uuid>,
}

impl PolygonLocation {
    /// Create a new polygon location from vertices
    ///
    /// Automatically closes the polygon if the first and last vertices don't match.
    /// Validates polygon constraints.
    ///
    /// # Arguments
    /// - `vertices`: List of vertices [[lon, lat, alt], ...]
    ///
    /// # Returns
    /// New PolygonLocation or error if invalid
    ///
    /// # Validation
    /// - At least 3 unique vertices (4 including closure)
    /// - First and last vertex must match (auto-closed if not)
    /// - No duplicate consecutive vertices
    ///
    /// # Example
    /// ```
    /// use brahe::access::PolygonLocation;
    /// use nalgebra::Vector3;
    ///
    /// let vertices = vec![
    ///     Vector3::new(10.0, 50.0, 0.0),
    ///     Vector3::new(11.0, 50.0, 0.0),
    ///     Vector3::new(11.0, 51.0, 0.0),
    ///     Vector3::new(10.0, 51.0, 0.0),
    ///     Vector3::new(10.0, 50.0, 0.0),  // Closed
    /// ];
    ///
    /// let polygon = PolygonLocation::new(vertices).unwrap();
    /// ```
    pub fn new(mut vertices: Vec<Vector3<f64>>) -> Result<Self, BraheError> {
        // Validate minimum vertices
        if vertices.len() < 4 {
            return Err(BraheError::ParseError(
                "Polygon must have at least 4 vertices (3 unique + closure)".to_string(),
            ));
        }

        // Check for duplicate consecutive vertices (except first==last)
        for i in 0..vertices.len() - 2 {
            if vertices[i] == vertices[i + 1] {
                return Err(BraheError::ParseError(format!(
                    "Duplicate consecutive vertices at index {}",
                    i
                )));
            }
        }

        // Auto-close polygon if needed
        let first = vertices[0];
        let last = vertices[vertices.len() - 1];
        if first != last {
            vertices.push(first);
        }

        // Compute centroid (average of unique vertices)
        let num_unique = vertices.len() - 1; // Exclude closure vertex
        let mut sum_lon = 0.0;
        let mut sum_lat = 0.0;
        let mut sum_alt = 0.0;

        for vertex in vertices.iter().take(num_unique) {
            sum_lon += vertex.x;
            sum_lat += vertex.y;
            sum_alt += vertex.z;
        }

        let center = Vector3::new(
            sum_lon / num_unique as f64,
            sum_lat / num_unique as f64,
            sum_alt / num_unique as f64,
        );

        // Compute ECEF center
        let center_ecef = position_geodetic_to_ecef(center, AngleFormat::Degrees)
            .expect("Invalid geodetic coordinates");

        Ok(Self {
            center,
            center_ecef: Some(center_ecef),
            vertices,
            properties: HashMap::new(),
            name: None,
            id: None,
            uuid: Some(Uuid::now_v7()),
        })
    }

    /// Create from GeoJSON Polygon Feature
    ///
    /// # Arguments
    /// - `geojson`: GeoJSON Feature object with Polygon geometry
    ///
    /// # Returns
    /// New PolygonLocation or error if invalid
    ///
    /// # Example
    /// ```
    /// use brahe::access::PolygonLocation;
    /// use serde_json::json;
    ///
    /// let geojson = json!({
    ///     "type": "Feature",
    ///     "geometry": {
    ///         "type": "Polygon",
    ///         "coordinates": [[
    ///             [10.0, 50.0, 0.0],
    ///             [11.0, 50.0, 0.0],
    ///             [11.0, 51.0, 0.0],
    ///             [10.0, 51.0, 0.0],
    ///             [10.0, 50.0, 0.0]
    ///         ]]
    ///     },
    ///     "properties": {
    ///         "name": "AOI-1"
    ///     }
    /// });
    ///
    /// let polygon = PolygonLocation::from_geojson(&geojson).unwrap();
    /// ```
    pub fn from_geojson(geojson: &JsonValue) -> Result<Self, BraheError> {
        // Validate it's a Feature
        if geojson.get("type").and_then(|t| t.as_str()) != Some("Feature") {
            return Err(BraheError::ParseError(
                "GeoJSON must be a Feature object".to_string(),
            ));
        }

        // Extract geometry
        let geometry = geojson.get("geometry").ok_or_else(|| {
            BraheError::ParseError("GeoJSON Feature missing geometry".to_string())
        })?;

        // Validate it's a Polygon
        if geometry.get("type").and_then(|t| t.as_str()) != Some("Polygon") {
            return Err(BraheError::ParseError(
                "GeoJSON geometry must be Polygon type".to_string(),
            ));
        }

        // Extract coordinates (outer ring only, ignore holes)
        let coords = geometry
            .get("coordinates")
            .and_then(|c| c.as_array())
            .ok_or_else(|| BraheError::ParseError("Invalid Polygon coordinates".to_string()))?;

        if coords.is_empty() {
            return Err(BraheError::ParseError(
                "Polygon must have at least one ring".to_string(),
            ));
        }

        // Get outer ring
        let outer_ring = coords[0]
            .as_array()
            .ok_or_else(|| BraheError::ParseError("Invalid outer ring".to_string()))?;

        // Parse vertices
        let mut vertices = Vec::new();
        for vertex_json in outer_ring {
            let vertex_array = vertex_json
                .as_array()
                .ok_or_else(|| BraheError::ParseError("Invalid vertex format".to_string()))?;

            if vertex_array.len() < 2 {
                return Err(BraheError::ParseError(
                    "Vertex must have [lon, lat] or [lon, lat, alt]".to_string(),
                ));
            }

            let lon = vertex_array[0]
                .as_f64()
                .ok_or_else(|| BraheError::ParseError("Longitude must be a number".to_string()))?;
            let lat = vertex_array[1]
                .as_f64()
                .ok_or_else(|| BraheError::ParseError("Latitude must be a number".to_string()))?;
            let alt = vertex_array.get(2).and_then(|a| a.as_f64()).unwrap_or(0.0);

            vertices.push(Vector3::new(lon, lat, alt));
        }

        // Create polygon
        let mut polygon = Self::new(vertices)?;

        // Extract properties if present
        if let Some(props) = geojson.get("properties").and_then(|p| p.as_object()) {
            for (key, value) in props.iter() {
                match key.as_str() {
                    "name" => {
                        if let Some(name_str) = value.as_str() {
                            polygon.name = Some(name_str.to_string());
                        }
                    }
                    "id" => {
                        if let Some(id_num) = value.as_u64() {
                            polygon.id = Some(id_num);
                        }
                    }
                    "uuid" => {
                        if let Some(uuid_str) = value.as_str()
                            && let Ok(parsed_uuid) = Uuid::parse_str(uuid_str)
                        {
                            polygon.uuid = Some(parsed_uuid);
                        }
                    }
                    _ => {
                        polygon.properties.insert(key.clone(), value.clone());
                    }
                }
            }
        }

        Ok(polygon)
    }

    /// Get polygon vertices
    ///
    /// Returns all vertices including the closure vertex (first == last)
    pub fn vertices(&self) -> &[Vector3<f64>] {
        &self.vertices
    }

    /// Get number of unique vertices (excluding closure)
    pub fn num_vertices(&self) -> usize {
        self.vertices.len() - 1
    }

    /// Add a custom property (builder pattern)
    pub fn add_property(mut self, key: &str, value: JsonValue) -> Self {
        self.properties.insert(key.to_string(), value);
        self
    }

    /// Get center longitude in degrees (quick accessor)
    pub fn lon(&self) -> f64 {
        self.center.x
    }

    /// Get center latitude in degrees (quick accessor)
    pub fn lat(&self) -> f64 {
        self.center.y
    }

    /// Get center altitude in meters (quick accessor)
    pub fn alt(&self) -> f64 {
        self.center.z
    }

    /// Get center longitude with angle format conversion
    ///
    /// # Arguments
    /// - `angle_format`: Desired output format (Degrees or Radians)
    ///
    /// # Example
    /// ```
    /// use brahe::access::PolygonLocation;
    /// use brahe::constants::AngleFormat;
    /// use nalgebra::Vector3;
    ///
    /// let vertices = vec![
    ///     Vector3::new(10.0, 50.0, 0.0),
    ///     Vector3::new(11.0, 50.0, 0.0),
    ///     Vector3::new(11.0, 51.0, 0.0),
    ///     Vector3::new(10.0, 51.0, 0.0),
    ///     Vector3::new(10.0, 50.0, 0.0),
    /// ];
    /// let poly = PolygonLocation::new(vertices).unwrap();
    /// let lon_deg = poly.longitude(AngleFormat::Degrees);
    /// let lon_rad = poly.longitude(AngleFormat::Radians);
    /// ```
    pub fn longitude(&self, angle_format: AngleFormat) -> f64 {
        match angle_format {
            AngleFormat::Degrees => self.center.x,
            AngleFormat::Radians => self.center.x.to_radians(),
        }
    }

    /// Get center latitude with angle format conversion
    ///
    /// # Arguments
    /// - `angle_format`: Desired output format (Degrees or Radians)
    pub fn latitude(&self, angle_format: AngleFormat) -> f64 {
        match angle_format {
            AngleFormat::Degrees => self.center.y,
            AngleFormat::Radians => self.center.y.to_radians(),
        }
    }

    /// Get center altitude in meters
    pub fn altitude(&self) -> f64 {
        self.center.z
    }
}

impl AccessibleLocation for PolygonLocation {
    fn center_geodetic(&self) -> Vector3<f64> {
        self.center
    }

    fn center_ecef(&self) -> Vector3<f64> {
        self.center_ecef.unwrap_or_else(|| {
            position_geodetic_to_ecef(self.center, AngleFormat::Degrees)
                .expect("Invalid geodetic coordinates")
        })
    }

    fn properties(&self) -> &HashMap<String, JsonValue> {
        &self.properties
    }

    fn properties_mut(&mut self) -> &mut HashMap<String, JsonValue> {
        &mut self.properties
    }

    fn to_geojson(&self) -> JsonValue {
        let mut props = self.properties.clone();

        // Add identity fields
        if let Some(name) = &self.name {
            props.insert("name".to_string(), json!(name));
        }
        if let Some(id) = self.id {
            props.insert("id".to_string(), json!(id));
        }
        if let Some(uuid) = self.uuid {
            props.insert("uuid".to_string(), json!(uuid.to_string()));
        }

        // Convert vertices to JSON
        let coords: Vec<Vec<f64>> = self.vertices.iter().map(|v| vec![v.x, v.y, v.z]).collect();

        json!({
            "type": "Feature",
            "geometry": {
                "type": "Polygon",
                "coordinates": [coords]  // Outer ring only
            },
            "properties": props
        })
    }

    fn as_any(&self) -> &dyn Any {
        self
    }
}

impl Identifiable for PolygonLocation {
    fn with_name(mut self, name: &str) -> Self {
        self.name = Some(name.to_string());
        self
    }

    fn with_uuid(mut self, uuid: Uuid) -> Self {
        self.uuid = Some(uuid);
        self
    }

    fn with_new_uuid(mut self) -> Self {
        self.uuid = Some(Uuid::now_v7());
        self
    }

    fn with_id(mut self, id: u64) -> Self {
        self.id = Some(id);
        self
    }

    fn with_identity(mut self, name: Option<&str>, uuid: Option<Uuid>, id: Option<u64>) -> Self {
        self.name = name.map(|s| s.to_string());
        self.uuid = uuid;
        self.id = id;
        self
    }

    fn set_identity(&mut self, name: Option<&str>, uuid: Option<Uuid>, id: Option<u64>) {
        self.name = name.map(|s| s.to_string());
        self.uuid = uuid;
        self.id = id;
    }

    fn set_id(&mut self, id: Option<u64>) {
        self.id = id;
    }

    fn set_name(&mut self, name: Option<&str>) {
        self.name = name.map(|s| s.to_string());
    }

    fn generate_uuid(&mut self) {
        self.uuid = Some(Uuid::now_v7());
    }

    fn get_id(&self) -> Option<u64> {
        self.id
    }

    fn get_name(&self) -> Option<&str> {
        self.name.as_deref()
    }

    fn get_uuid(&self) -> Option<Uuid> {
        self.uuid
    }
}

#[cfg(test)]
#[cfg_attr(coverage_nightly, coverage(off))]
mod tests {
    use super::*;
    use approx::assert_abs_diff_eq;

    #[test]
    fn test_point_location_new() {
        let loc = PointLocation::new(15.4, 78.2, 0.0);

        assert_eq!(loc.lon(), 15.4);
        assert_eq!(loc.lat(), 78.2);
        assert_eq!(loc.alt(), 0.0);

        // ECEF should be computed
        let ecef = loc.center_ecef();
        assert!(ecef.norm() > 0.0);
    }

    #[test]
    fn test_point_location_identifiable() {
        let loc = PointLocation::new(15.4, 78.2, 0.0)
            .with_name("Svalbard")
            .with_id(42)
            .with_new_uuid();

        assert_eq!(loc.get_name(), Some("Svalbard"));
        assert_eq!(loc.get_id(), Some(42));
        assert!(loc.get_uuid().is_some());
    }

    #[test]
    fn test_point_location_properties() {
        let loc = PointLocation::new(15.4, 78.2, 0.0)
            .add_property("country", json!("Norway"))
            .add_property("population", json!(2500));

        assert_eq!(loc.properties().get("country").unwrap(), "Norway");
        assert_eq!(loc.properties().get("population").unwrap(), 2500);
    }

    #[test]
    fn test_point_location_geojson_roundtrip() {
        let original = PointLocation::new(15.4, 78.2, 100.0)
            .with_name("Svalbard")
            .add_property("country", json!("Norway"));

        let geojson = original.to_geojson();
        let reconstructed = PointLocation::from_geojson(&geojson).unwrap();

        assert_eq!(reconstructed.lon(), 15.4);
        assert_eq!(reconstructed.lat(), 78.2);
        assert_eq!(reconstructed.alt(), 100.0);
        assert_eq!(reconstructed.get_name(), Some("Svalbard"));
        assert_eq!(reconstructed.properties().get("country").unwrap(), "Norway");
    }

    #[test]
    fn test_polygon_location_new() {
        let vertices = vec![
            Vector3::new(10.0, 50.0, 0.0),
            Vector3::new(11.0, 50.0, 0.0),
            Vector3::new(11.0, 51.0, 0.0),
            Vector3::new(10.0, 51.0, 0.0),
            Vector3::new(10.0, 50.0, 0.0),
        ];

        let poly = PolygonLocation::new(vertices.clone()).unwrap();

        assert_eq!(poly.num_vertices(), 4);
        assert_eq!(poly.vertices().len(), 5); // Including closure

        // Check centroid
        let center = poly.center_geodetic();
        assert_abs_diff_eq!(center.x, 10.5, epsilon = 0.01); // lon
        assert_abs_diff_eq!(center.y, 50.5, epsilon = 0.01); // lat
    }

    #[test]
    fn test_polygon_location_auto_close() {
        // Missing closure vertex
        let vertices = vec![
            Vector3::new(10.0, 50.0, 0.0),
            Vector3::new(11.0, 50.0, 0.0),
            Vector3::new(11.0, 51.0, 0.0),
            Vector3::new(10.0, 51.0, 0.0),
        ];

        let poly = PolygonLocation::new(vertices).unwrap();

        // Should auto-close
        assert_eq!(poly.vertices().len(), 5);
        assert_eq!(poly.vertices()[0], poly.vertices()[4]);
    }

    #[test]
    fn test_polygon_location_validation() {
        // Too few vertices
        let result = PolygonLocation::new(vec![
            Vector3::new(10.0, 50.0, 0.0),
            Vector3::new(11.0, 50.0, 0.0),
        ]);
        assert!(result.is_err());

        // Duplicate consecutive vertices
        let result = PolygonLocation::new(vec![
            Vector3::new(10.0, 50.0, 0.0),
            Vector3::new(10.0, 50.0, 0.0), // Duplicate
            Vector3::new(11.0, 50.0, 0.0),
            Vector3::new(10.0, 50.0, 0.0),
        ]);
        assert!(result.is_err());
    }

    #[test]
    fn test_polygon_location_geojson_roundtrip() {
        let vertices = vec![
            Vector3::new(10.0, 50.0, 0.0),
            Vector3::new(11.0, 50.0, 0.0),
            Vector3::new(11.0, 51.0, 0.0),
            Vector3::new(10.0, 51.0, 0.0),
            Vector3::new(10.0, 50.0, 0.0),
        ];

        let original = PolygonLocation::new(vertices.clone())
            .unwrap()
            .with_name("AOI-1")
            .add_property("region", json!("Europe"));

        let geojson = original.to_geojson();
        let reconstructed = PolygonLocation::from_geojson(&geojson).unwrap();

        assert_eq!(reconstructed.num_vertices(), 4);
        assert_eq!(reconstructed.get_name(), Some("AOI-1"));
        assert_eq!(reconstructed.properties().get("region").unwrap(), "Europe");
    }

    // ========================================================================
    // Comprehensive PointLocation Tests
    // ========================================================================

    #[test]
    fn test_point_location_coordinate_accessors() {
        let loc = PointLocation::new(15.4, 78.2, 500.0);

        // Quick accessors (always degrees/meters)
        assert_eq!(loc.lon(), 15.4);
        assert_eq!(loc.lat(), 78.2);
        assert_eq!(loc.alt(), 500.0);
        assert_eq!(loc.altitude(), 500.0);

        // Format-aware accessors
        assert_eq!(loc.longitude(AngleFormat::Degrees), 15.4);
        assert_eq!(loc.latitude(AngleFormat::Degrees), 78.2);

        // Radians conversion
        let lon_rad = loc.longitude(AngleFormat::Radians);
        let lat_rad = loc.latitude(AngleFormat::Radians);
        assert_abs_diff_eq!(lon_rad, 15.4_f64.to_radians(), epsilon = 1e-10);
        assert_abs_diff_eq!(lat_rad, 78.2_f64.to_radians(), epsilon = 1e-10);
    }

    #[test]
    fn test_point_location_center_geodetic() {
        let loc = PointLocation::new(15.4, 78.2, 500.0);
        let center = loc.center_geodetic();

        assert_eq!(center.x, 15.4);
        assert_eq!(center.y, 78.2);
        assert_eq!(center.z, 500.0);
    }

    #[test]
    fn test_point_location_center_ecef() {
        let loc = PointLocation::new(0.0, 0.0, 0.0);
        let ecef = loc.center_ecef();

        // At equator, longitude 0, ECEF should be approximately [R_EARTH, 0, 0]
        assert_abs_diff_eq!(ecef.x, 6378137.0, epsilon = 1.0);
        assert_abs_diff_eq!(ecef.y, 0.0, epsilon = 1.0);
        assert_abs_diff_eq!(ecef.z, 0.0, epsilon = 1.0);
    }

    #[test]
    fn test_point_location_properties_accessor() {
        let mut loc = PointLocation::new(15.4, 78.2, 0.0);

        // Test properties() getter
        assert!(loc.properties().is_empty());

        // Test properties_mut() setter
        loc.properties_mut()
            .insert("test_key".to_string(), json!("test_value"));

        assert_eq!(loc.properties().get("test_key").unwrap(), "test_value");
    }

    #[test]
    fn test_point_location_add_property_builder() {
        let loc = PointLocation::new(15.4, 78.2, 0.0)
            .add_property("key1", json!("value1"))
            .add_property("key2", json!(42))
            .add_property("key3", json!(true));

        assert_eq!(loc.properties().get("key1").unwrap(), "value1");
        assert_eq!(loc.properties().get("key2").unwrap(), 42);
        assert_eq!(loc.properties().get("key3").unwrap(), true);
    }

    #[test]
    fn test_point_location_to_geojson_required_fields() {
        let loc = PointLocation::new(15.4, 78.2, 100.0)
            .with_name("TestLocation")
            .with_id(42)
            .with_new_uuid()
            .add_property("custom_prop", json!("custom_value"));

        let geojson = loc.to_geojson();

        // Validate top-level structure
        assert_eq!(geojson.get("type").unwrap(), "Feature");

        // Validate geometry
        let geometry = geojson.get("geometry").unwrap();
        assert_eq!(geometry.get("type").unwrap(), "Point");

        let coords = geometry.get("coordinates").unwrap().as_array().unwrap();
        assert_eq!(coords.len(), 3);
        assert_eq!(coords[0].as_f64().unwrap(), 15.4);
        assert_eq!(coords[1].as_f64().unwrap(), 78.2);
        assert_eq!(coords[2].as_f64().unwrap(), 100.0);

        // Validate properties
        let properties = geojson.get("properties").unwrap();
        assert_eq!(properties.get("name").unwrap(), "TestLocation");
        assert_eq!(properties.get("id").unwrap(), 42);
        assert!(properties.get("uuid").is_some());
        assert_eq!(properties.get("custom_prop").unwrap(), "custom_value");
    }

    #[test]
    fn test_point_location_from_geojson_minimal() {
        let geojson = json!({
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [15.4, 78.2]
            },
            "properties": {}
        });

        let loc = PointLocation::from_geojson(&geojson).unwrap();
        assert_eq!(loc.lon(), 15.4);
        assert_eq!(loc.lat(), 78.2);
        assert_eq!(loc.alt(), 0.0); // Default altitude
    }

    #[test]
    fn test_point_location_from_geojson_with_altitude() {
        let geojson = json!({
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [15.4, 78.2, 500.0]
            },
            "properties": {}
        });

        let loc = PointLocation::from_geojson(&geojson).unwrap();
        assert_eq!(loc.alt(), 500.0);
    }

    #[test]
    fn test_point_location_from_geojson_invalid_type() {
        let geojson = json!({
            "type": "FeatureCollection",
            "features": []
        });

        let result = PointLocation::from_geojson(&geojson);
        assert!(result.is_err());
    }

    #[test]
    fn test_point_location_from_geojson_wrong_geometry() {
        let geojson = json!({
            "type": "Feature",
            "geometry": {
                "type": "Polygon",
                "coordinates": [[[0.0, 0.0], [1.0, 0.0], [1.0, 1.0], [0.0, 0.0]]]
            },
            "properties": {}
        });

        let result = PointLocation::from_geojson(&geojson);
        assert!(result.is_err());
    }

    #[test]
    fn test_point_location_identifiable_methods() {
        let uuid = Uuid::now_v7();

        // Test with_name
        let loc = PointLocation::new(0.0, 0.0, 0.0).with_name("Test");
        assert_eq!(loc.get_name(), Some("Test"));

        // Test with_id
        let loc = PointLocation::new(0.0, 0.0, 0.0).with_id(123);
        assert_eq!(loc.get_id(), Some(123));

        // Test with_uuid
        let loc = PointLocation::new(0.0, 0.0, 0.0).with_uuid(uuid);
        assert_eq!(loc.get_uuid(), Some(uuid));

        // Test with_new_uuid
        let loc = PointLocation::new(0.0, 0.0, 0.0).with_new_uuid();
        assert!(loc.get_uuid().is_some());

        // Test with_identity
        let loc = PointLocation::new(0.0, 0.0, 0.0).with_identity(
            Some("Combined"),
            Some(uuid),
            Some(456),
        );
        assert_eq!(loc.get_name(), Some("Combined"));
        assert_eq!(loc.get_uuid(), Some(uuid));
        assert_eq!(loc.get_id(), Some(456));

        // Test set_identity
        let mut loc = PointLocation::new(0.0, 0.0, 0.0);
        loc.set_identity(Some("NewName"), Some(uuid), Some(789));
        assert_eq!(loc.get_name(), Some("NewName"));
        assert_eq!(loc.get_uuid(), Some(uuid));
        assert_eq!(loc.get_id(), Some(789));

        // Test set_id
        let mut loc = PointLocation::new(0.0, 0.0, 0.0);
        loc.set_id(Some(999));
        assert_eq!(loc.get_id(), Some(999));

        // Test set_name
        let mut loc = PointLocation::new(0.0, 0.0, 0.0);
        loc.set_name(Some("SetName"));
        assert_eq!(loc.get_name(), Some("SetName"));

        // Test generate_uuid
        let mut loc = PointLocation::new(0.0, 0.0, 0.0);
        loc.generate_uuid();
        assert!(loc.get_uuid().is_some());
    }

    // ========================================================================
    // Comprehensive PolygonLocation Tests
    // ========================================================================

    #[test]
    fn test_polygon_location_coordinate_accessors() {
        let vertices = vec![
            Vector3::new(10.0, 50.0, 100.0),
            Vector3::new(11.0, 50.0, 100.0),
            Vector3::new(11.0, 51.0, 100.0),
            Vector3::new(10.0, 51.0, 100.0),
            Vector3::new(10.0, 50.0, 100.0),
        ];

        let poly = PolygonLocation::new(vertices).unwrap();

        // Center should be centroid
        assert_abs_diff_eq!(poly.lon(), 10.5, epsilon = 0.01);
        assert_abs_diff_eq!(poly.lat(), 50.5, epsilon = 0.01);
        assert_abs_diff_eq!(poly.alt(), 100.0, epsilon = 0.01);
        assert_abs_diff_eq!(poly.altitude(), 100.0, epsilon = 0.01);

        // Format-aware accessors
        assert_abs_diff_eq!(poly.longitude(AngleFormat::Degrees), 10.5, epsilon = 0.01);
        assert_abs_diff_eq!(poly.latitude(AngleFormat::Degrees), 50.5, epsilon = 0.01);

        // Radians conversion
        let lon_rad = poly.longitude(AngleFormat::Radians);
        let lat_rad = poly.latitude(AngleFormat::Radians);
        assert_abs_diff_eq!(lon_rad, 10.5_f64.to_radians(), epsilon = 1e-10);
        assert_abs_diff_eq!(lat_rad, 50.5_f64.to_radians(), epsilon = 1e-10);
    }

    #[test]
    fn test_polygon_location_vertices_accessor() {
        let vertices = vec![
            Vector3::new(10.0, 50.0, 0.0),
            Vector3::new(11.0, 50.0, 0.0),
            Vector3::new(11.0, 51.0, 0.0),
            Vector3::new(10.0, 51.0, 0.0),
            Vector3::new(10.0, 50.0, 0.0),
        ];

        let poly = PolygonLocation::new(vertices.clone()).unwrap();

        // Test vertices() getter
        let verts = poly.vertices();
        assert_eq!(verts.len(), 5);
        assert_eq!(verts[0], vertices[0]);
        assert_eq!(verts[4], vertices[4]);
    }

    #[test]
    fn test_polygon_location_num_vertices() {
        let vertices = vec![
            Vector3::new(10.0, 50.0, 0.0),
            Vector3::new(11.0, 50.0, 0.0),
            Vector3::new(11.0, 51.0, 0.0),
            Vector3::new(10.0, 51.0, 0.0),
            Vector3::new(10.0, 50.0, 0.0),
        ];

        let poly = PolygonLocation::new(vertices).unwrap();

        // Should exclude the closure vertex
        assert_eq!(poly.num_vertices(), 4);
    }

    #[test]
    fn test_polygon_location_center_geodetic() {
        let vertices = vec![
            Vector3::new(10.0, 50.0, 100.0),
            Vector3::new(11.0, 50.0, 100.0),
            Vector3::new(11.0, 51.0, 100.0),
            Vector3::new(10.0, 51.0, 100.0),
            Vector3::new(10.0, 50.0, 100.0),
        ];

        let poly = PolygonLocation::new(vertices).unwrap();
        let center = poly.center_geodetic();

        assert_abs_diff_eq!(center.x, 10.5, epsilon = 0.01);
        assert_abs_diff_eq!(center.y, 50.5, epsilon = 0.01);
        assert_abs_diff_eq!(center.z, 100.0, epsilon = 0.01);
    }

    #[test]
    fn test_polygon_location_center_ecef() {
        let vertices = vec![
            Vector3::new(0.0, 0.0, 0.0),
            Vector3::new(1.0, 0.0, 0.0),
            Vector3::new(1.0, 1.0, 0.0),
            Vector3::new(0.0, 1.0, 0.0),
            Vector3::new(0.0, 0.0, 0.0),
        ];

        let poly = PolygonLocation::new(vertices).unwrap();
        let ecef = poly.center_ecef();

        // Center should be near equator, should have valid ECEF coordinates
        assert!(ecef.norm() > 6000000.0); // Should be roughly Earth radius
    }

    #[test]
    fn test_polygon_location_properties_accessor() {
        let vertices = vec![
            Vector3::new(10.0, 50.0, 0.0),
            Vector3::new(11.0, 50.0, 0.0),
            Vector3::new(11.0, 51.0, 0.0),
            Vector3::new(10.0, 51.0, 0.0),
            Vector3::new(10.0, 50.0, 0.0),
        ];

        let mut poly = PolygonLocation::new(vertices).unwrap();

        // Test properties() getter
        assert!(poly.properties().is_empty());

        // Test properties_mut() setter
        poly.properties_mut()
            .insert("test_key".to_string(), json!("test_value"));

        assert_eq!(poly.properties().get("test_key").unwrap(), "test_value");
    }

    #[test]
    fn test_polygon_location_add_property_builder() {
        let vertices = vec![
            Vector3::new(10.0, 50.0, 0.0),
            Vector3::new(11.0, 50.0, 0.0),
            Vector3::new(11.0, 51.0, 0.0),
            Vector3::new(10.0, 51.0, 0.0),
            Vector3::new(10.0, 50.0, 0.0),
        ];

        let poly = PolygonLocation::new(vertices)
            .unwrap()
            .add_property("key1", json!("value1"))
            .add_property("key2", json!(42))
            .add_property("key3", json!(true));

        assert_eq!(poly.properties().get("key1").unwrap(), "value1");
        assert_eq!(poly.properties().get("key2").unwrap(), 42);
        assert_eq!(poly.properties().get("key3").unwrap(), true);
    }

    #[test]
    fn test_polygon_location_to_geojson_required_fields() {
        let vertices = vec![
            Vector3::new(10.0, 50.0, 0.0),
            Vector3::new(11.0, 50.0, 0.0),
            Vector3::new(11.0, 51.0, 0.0),
            Vector3::new(10.0, 51.0, 0.0),
            Vector3::new(10.0, 50.0, 0.0),
        ];

        let poly = PolygonLocation::new(vertices)
            .unwrap()
            .with_name("TestPolygon")
            .with_id(99)
            .with_new_uuid()
            .add_property("custom_prop", json!("custom_value"));

        let geojson = poly.to_geojson();

        // Validate top-level structure
        assert_eq!(geojson.get("type").unwrap(), "Feature");

        // Validate geometry
        let geometry = geojson.get("geometry").unwrap();
        assert_eq!(geometry.get("type").unwrap(), "Polygon");

        let coords = geometry.get("coordinates").unwrap().as_array().unwrap();
        assert_eq!(coords.len(), 1); // One outer ring

        let outer_ring = coords[0].as_array().unwrap();
        assert_eq!(outer_ring.len(), 5); // 4 unique + closure

        // Check first vertex
        let first_vertex = outer_ring[0].as_array().unwrap();
        assert_eq!(first_vertex[0].as_f64().unwrap(), 10.0);
        assert_eq!(first_vertex[1].as_f64().unwrap(), 50.0);
        assert_eq!(first_vertex[2].as_f64().unwrap(), 0.0);

        // Validate properties
        let properties = geojson.get("properties").unwrap();
        assert_eq!(properties.get("name").unwrap(), "TestPolygon");
        assert_eq!(properties.get("id").unwrap(), 99);
        assert!(properties.get("uuid").is_some());
        assert_eq!(properties.get("custom_prop").unwrap(), "custom_value");
    }

    #[test]
    fn test_polygon_location_from_geojson_minimal() {
        let geojson = json!({
            "type": "Feature",
            "geometry": {
                "type": "Polygon",
                "coordinates": [[
                    [10.0, 50.0],
                    [11.0, 50.0],
                    [11.0, 51.0],
                    [10.0, 51.0],
                    [10.0, 50.0]
                ]]
            },
            "properties": {}
        });

        let poly = PolygonLocation::from_geojson(&geojson).unwrap();
        assert_eq!(poly.num_vertices(), 4);
    }

    #[test]
    fn test_polygon_location_from_geojson_with_altitude() {
        let geojson = json!({
            "type": "Feature",
            "geometry": {
                "type": "Polygon",
                "coordinates": [[
                    [10.0, 50.0, 100.0],
                    [11.0, 50.0, 100.0],
                    [11.0, 51.0, 100.0],
                    [10.0, 51.0, 100.0],
                    [10.0, 50.0, 100.0]
                ]]
            },
            "properties": {}
        });

        let poly = PolygonLocation::from_geojson(&geojson).unwrap();
        assert_abs_diff_eq!(poly.alt(), 100.0, epsilon = 0.01);
    }

    #[test]
    fn test_polygon_location_from_geojson_invalid_type() {
        let geojson = json!({
            "type": "FeatureCollection",
            "features": []
        });

        let result = PolygonLocation::from_geojson(&geojson);
        assert!(result.is_err());
    }

    #[test]
    fn test_polygon_location_from_geojson_wrong_geometry() {
        let geojson = json!({
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [0.0, 0.0]
            },
            "properties": {}
        });

        let result = PolygonLocation::from_geojson(&geojson);
        assert!(result.is_err());
    }

    #[test]
    fn test_polygon_location_identifiable_methods() {
        let vertices = vec![
            Vector3::new(10.0, 50.0, 0.0),
            Vector3::new(11.0, 50.0, 0.0),
            Vector3::new(11.0, 51.0, 0.0),
            Vector3::new(10.0, 51.0, 0.0),
            Vector3::new(10.0, 50.0, 0.0),
        ];

        let uuid = Uuid::now_v7();

        // Test with_name
        let poly = PolygonLocation::new(vertices.clone())
            .unwrap()
            .with_name("Test");
        assert_eq!(poly.get_name(), Some("Test"));

        // Test with_id
        let poly = PolygonLocation::new(vertices.clone()).unwrap().with_id(123);
        assert_eq!(poly.get_id(), Some(123));

        // Test with_uuid
        let poly = PolygonLocation::new(vertices.clone())
            .unwrap()
            .with_uuid(uuid);
        assert_eq!(poly.get_uuid(), Some(uuid));

        // Test with_new_uuid
        let poly = PolygonLocation::new(vertices.clone())
            .unwrap()
            .with_new_uuid();
        assert!(poly.get_uuid().is_some());

        // Test with_identity
        let poly = PolygonLocation::new(vertices.clone())
            .unwrap()
            .with_identity(Some("Combined"), Some(uuid), Some(456));
        assert_eq!(poly.get_name(), Some("Combined"));
        assert_eq!(poly.get_uuid(), Some(uuid));
        assert_eq!(poly.get_id(), Some(456));

        // Test set_identity
        let mut poly = PolygonLocation::new(vertices.clone()).unwrap();
        poly.set_identity(Some("NewName"), Some(uuid), Some(789));
        assert_eq!(poly.get_name(), Some("NewName"));
        assert_eq!(poly.get_uuid(), Some(uuid));
        assert_eq!(poly.get_id(), Some(789));

        // Test set_id
        let mut poly = PolygonLocation::new(vertices.clone()).unwrap();
        poly.set_id(Some(999));
        assert_eq!(poly.get_id(), Some(999));

        // Test set_name
        let mut poly = PolygonLocation::new(vertices.clone()).unwrap();
        poly.set_name(Some("SetName"));
        assert_eq!(poly.get_name(), Some("SetName"));

        // Test generate_uuid
        let mut poly = PolygonLocation::new(vertices.clone()).unwrap();
        poly.generate_uuid();
        assert!(poly.get_uuid().is_some());
    }
}