2023-03-14 17:00:59 +01:00
|
|
|
namespace OSMDatastructure.Graph;
|
2023-02-06 17:32:55 +01:00
|
|
|
|
2023-03-30 18:24:57 +02:00
|
|
|
[Serializable]
|
2023-02-07 23:52:23 +01:00
|
|
|
public class OsmNode
|
2023-02-06 17:32:55 +01:00
|
|
|
{
|
2023-03-30 18:24:57 +02:00
|
|
|
public ulong nodeId { get; }
|
2023-04-01 01:47:56 +02:00
|
|
|
public HashSet<OsmEdge> edges { get; }
|
2023-02-06 17:32:55 +01:00
|
|
|
public Coordinates coordinates { get; }
|
|
|
|
|
2023-03-30 18:24:57 +02:00
|
|
|
[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
|
|
|
|
2023-03-30 18:24:57 +02:00
|
|
|
public OsmNode(ulong nodeId, float lat, float lon)
|
2023-02-06 17:32:55 +01:00
|
|
|
{
|
2023-03-30 18:24:57 +02:00
|
|
|
this.nodeId = nodeId;
|
2023-02-06 17:32:55 +01:00
|
|
|
this.edges = new();
|
|
|
|
this.coordinates = new Coordinates(lat, lon);
|
|
|
|
}
|
|
|
|
|
2023-03-30 18:24:57 +02:00
|
|
|
public OsmNode(ulong nodeId, Coordinates coordinates)
|
2023-02-06 17:32:55 +01:00
|
|
|
{
|
2023-03-30 18:24:57 +02: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
|
|
|
}
|
|
|
|
|
2023-04-01 01:47:56 +02:00
|
|
|
public OsmEdge? GetEdgeToNode(OsmNode n)
|
2023-02-06 17:32:55 +01:00
|
|
|
{
|
2023-04-01 01:47:56 +02:00
|
|
|
foreach (OsmEdge e in this.edges)
|
2023-03-30 18:24:57 +02:00
|
|
|
if (e.neighborId == n.nodeId)
|
2023-02-06 17:32:55 +01:00
|
|
|
return e;
|
|
|
|
return null;
|
|
|
|
}
|
2023-02-08 18:08:01 +01:00
|
|
|
|
|
|
|
public override bool Equals(object? obj)
|
|
|
|
{
|
2023-03-30 18:24:57 +02:00
|
|
|
return obj != null && obj.GetType() == this.GetType() && ((OsmNode)obj).nodeId == this.nodeId;
|
2023-02-08 18:08:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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-08 18:08:01 +01:00
|
|
|
}
|
2023-02-06 17:32:55 +01:00
|
|
|
}
|