Click here to Skip to main content
15,893,487 members
Articles / Programming Languages / C#

GPS Receivers, Geodesy, and Geocaching: Vincenty’s Formula

Rate me:
Please Sign up or sign in to vote.
5.00/5 (21 votes)
9 Jan 2008CPOL5 min read 95K   699   79  
Vincenty's Formula is an iterative solution for calculating the distance and direction between two points along the surface of Earth.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gavaghan.Geodesy", "Gavaghan.Geodesy\Gavaghan.Geodesy.csproj", "{FEF5CAD3-7F38-4801-849E-2F4F94607ABD}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gavaghan.Geodesy.Test", "Gavaghan.Geodesy.Test\Gavaghan.Geodesy.Test.csproj", "{8E5229A7-217B-4159-BB2A-1E81BA851540}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gavaghan.Geodesy.Example", "Gavaghan.Geodesy.Example\Gavaghan.Geodesy.Example.csproj", "{0942D5D9-4FF6-43DD-9D40-E34B32EC8D98}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{FEF5CAD3-7F38-4801-849E-2F4F94607ABD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{FEF5CAD3-7F38-4801-849E-2F4F94607ABD}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{FEF5CAD3-7F38-4801-849E-2F4F94607ABD}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{FEF5CAD3-7F38-4801-849E-2F4F94607ABD}.Release|Any CPU.Build.0 = Release|Any CPU
		{8E5229A7-217B-4159-BB2A-1E81BA851540}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{8E5229A7-217B-4159-BB2A-1E81BA851540}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{8E5229A7-217B-4159-BB2A-1E81BA851540}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{8E5229A7-217B-4159-BB2A-1E81BA851540}.Release|Any CPU.Build.0 = Release|Any CPU
		{0942D5D9-4FF6-43DD-9D40-E34B32EC8D98}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{0942D5D9-4FF6-43DD-9D40-E34B32EC8D98}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{0942D5D9-4FF6-43DD-9D40-E34B32EC8D98}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{0942D5D9-4FF6-43DD-9D40-E34B32EC8D98}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
Mike Gavaghan opines on C# and .Net in his blog Talk Nerdy To Me[^]. He is a Microsoft Certified Professional Developer working as a C#/.Net software consultant based in Dallas, Texas.

Since 1992, he has supported clients in diverse businesses including financial services, travel, airlines, and telecom. He has consulted at both mammoth enterprises and small startups (and sees merits and problems in both).

You may also view his profile on LinkedIn[^].

Comments and Discussions