2025-02-21 08:26:27 +01:00
|
|
|
class PointWithDescription {
|
2026-06-21 12:33:57 +02:00
|
|
|
final int pointId;
|
2025-02-21 08:26:27 +01:00
|
|
|
final DateTime dateTime;
|
|
|
|
|
final String description;
|
|
|
|
|
final double eovX;
|
|
|
|
|
final double eovY;
|
|
|
|
|
final double latitude;
|
|
|
|
|
final double longitude;
|
|
|
|
|
final double horizontalError;
|
|
|
|
|
final double verticalError;
|
|
|
|
|
|
|
|
|
|
PointWithDescription(
|
2026-06-21 12:33:57 +02:00
|
|
|
this.pointId,
|
2025-02-21 08:26:27 +01:00
|
|
|
this.dateTime,
|
|
|
|
|
this.description,
|
|
|
|
|
this.eovX,
|
|
|
|
|
this.eovY,
|
|
|
|
|
this.latitude,
|
|
|
|
|
this.longitude,
|
|
|
|
|
this.horizontalError,
|
|
|
|
|
this.verticalError);
|
|
|
|
|
}
|