OSMServer/OSMDatastructure/OsmNode.cs

54 lines
1.6 KiB
C#
Raw Normal View History

namespace OSMDatastructure.Graph;
2023-02-06 17:32:55 +01:00
[Serializable]
2023-02-07 23:52:23 +01:00
public class OsmNode
2023-02-06 17:32:55 +01:00
{
public ulong nodeId { get; }
public HashSet<OsmEdge> edges { get; }
2023-02-06 17:32:55 +01:00
public Coordinates coordinates { get; }
[NonSerialized]public OsmNode? previousPathNode = null;
[NonSerialized]public double currentPathWeight = double.MaxValue;
[NonSerialized]public double currentPathLength = double.MaxValue;
[NonSerialized]public double directDistanceToGoal = double.MaxValue;
2023-02-06 17:32:55 +01:00
public OsmNode(ulong nodeId, float lat, float lon)
2023-02-06 17:32:55 +01:00
{
this.nodeId = nodeId;
2023-02-06 17:32:55 +01:00
this.edges = new();
this.coordinates = new Coordinates(lat, lon);
}
public OsmNode(ulong nodeId, Coordinates coordinates)
2023-02-06 17:32:55 +01:00
{
this.nodeId = nodeId;
2023-02-06 17:32:55 +01:00
this.edges = new();
2023-02-07 23:52:23 +01:00
this.coordinates = coordinates;
2023-02-06 17:32:55 +01:00
}
public OsmEdge? GetEdgeToNode(OsmNode n)
2023-02-06 17:32:55 +01:00
{
foreach (OsmEdge e in this.edges)
if (e.neighborId == n.nodeId)
2023-02-06 17:32:55 +01:00
return e;
return null;
}
public override bool Equals(object? obj)
{
return obj != null && obj.GetType() == this.GetType() && ((OsmNode)obj).nodeId == this.nodeId;
}
public override int GetHashCode()
{
return HashCode.Combine(coordinates);
}
public override string ToString()
{
2023-04-01 14:19:36 +02:00
if(previousPathNode is not null)
return $"{nodeId} {coordinates} {edges.Count} {directDistanceToGoal} {currentPathWeight} {currentPathLength} {previousPathNode.nodeId}";
return
$"{nodeId} {coordinates} ec:{edges.Count} d:{directDistanceToGoal} w:{currentPathWeight} l:{currentPathLength} null";
}
2023-02-06 17:32:55 +01:00
}