GreatCircle.NET

Extension methods to the BasicGeoposition struct for Geodesy calculations.


Keywords
Geodesy, GPS
License
MIT
Install
Install-Package GreatCircle.NET -Version 1.0.6102.26816

Documentation

GreatCircle.NET

GreatCircle.NET - which is based on the amazing work of Chris Veness, the owner of the Geodesy functions project - provides a comprehensive set of extension methods to the BasicGeoposition struct that make working with GPS locations and performing calculations on then simple and easy.

(For a more general introduction, see: Movable Type Scripts Latitude / Longitude Calculations Reference)

Status

Thus far, I have worked on porting the spherical-earth model, which provides simple formulae covering the accuracy requirements of most use cases.

Quick Links

Getting Started

GreatCircle.NET should be used via NuGet dependency manager.

Documentation

CrossTrackDistance(thisPosition, startPosition, endPosititon)

Summary

Calculates the cross track distance of this position relative to the specified start position and end position.

Returns

The cross track distance of this position relative to the specified start position and end position.

Parameters
Name Type Description
thisPosition BasicGeoposition This position.
startPosition BasicGeoposition The start position.
endPosititon BasicGeoposition The end position.

CrossTrackMethods

CrossTrackPosition(thisPosition, startPosition, endPosititon)

Summary

Calculates a position representing the cross track point of this location relative to the specified start position and end position.

Returns

A position representing the cross track point of this location relative to the specified start position and end position.

Parameters
Name Type Description
thisPosition BasicGeoposition This position.
startPosition BasicGeoposition The start position.
endPosititon BasicGeoposition The end position.

CrossTrackMethods

DistanceToOtherPosition(thisPosition, position)

Summary

Calculates the distance (in meters) between this position and the other position.

Returns

The distance (in meters) between this position and the other position.

Parameters
Name Type Description
thisPosition BasicGeoposition This position.
position BasicGeoposition The other position.

EqualToPosition(thisPosition, position, includeAltitude)

Summary

Compares this position to the other position for equality.

Returns

true, if the positions are the same; otherwise, false.

Parameters
Name Type Description
thisPosition BasicGeoposition This position.
position BasicGeoposition The other position.
includeAltitude System.Boolean A value which indicates whether to include altitude in the comparison.

FinalBearingToPosition(thisPosition, position)

Summary

Calculates the final bearing (in degrees) between this position and the other position.

Returns

The final bearing (in degrees) between this position and the other position.

Parameters
Name Type Description
thisPosition BasicGeoposition This position.
position BasicGeoposition The other position.
Remarks

The final bearing will differ from the initial bearing by varying degrees according to distance and latitude.

InitialBearingToPosition(thisPosition, position)

Summary

Calculates the initial bearing (in degrees) between this position and the other position.

Returns

The initial bearing (in degrees) between this position and the other position.

Parameters
Name Type Description
thisPosition BasicGeoposition This position.
position BasicGeoposition The other position.

IntersectionOf(position1, bearing1, position2, bearing2)

Summary

Calculates a location representing the point of intersection of two paths, each specified by a location and bearing.

Returns

A location representing the point of intersection of two paths, each specified by a location and bearing.

Parameters
Name Type Description
position1 BasicGeoposition The first position.
bearing1 System.Double The first bearing.
position2 BasicGeoposition The second position.
bearing2 System.Double The second bearing.

LocationWithBearingAndDistance(thisPosition, bearing, distance)

Summary

Calculates a position representing the point that lies at the specified bearing and distance from this position.

Returns

A position representing the point that lies at the specified bearing and distance from this position.

Parameters
Name Type Description
thisPosition BasicGeoposition This position.
bearing System.Double The bearing.
distance System.Double The distance.

MidpointToPosition(thisPosition, position)

Summary

Calculates a position representing the midpoint between this position and the other position.

Returns

A position representing the midpoint between this position and the other position.

Parameters
Name Type Description
thisPosition BasicGeoposition This position.
position BasicGeoposition The other position.

Midpoint

Contributing

GreatCircle is a work in progress and your contributions are most welcome. Feel free to fork the repo and submit PR's.

License

GreatCircle is released under the MIT License.