Coordinates Converter & Distance
Convert lat/lon between decimal degrees and DMS, or compute the great-circle distance between two points.
Decimal
37.774900, -122.419400DMS
37°46'29.64" N, 122°25'09.84" WGoogle Maps
https://maps.google.com/?q=37.7749,-122.4194Decimal
40.712800, -74.006000DMS
40°42'46.08" N, 74°00'21.60" WGoogle Maps
https://maps.google.com/?q=40.7128,-74.006Great-circle distance from A to B
4,129.09 km2,565.69 mi2,229.53 nm
Initial bearing: 69.9° (ENE)
</>Use this tool programmaticallycurl · JavaScript · MCP
Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.
curl
curl https://api.b-e-a-d.com/tools/coordinates-tool/run \
-H "Content-Type: application/json" \
-d '{
"a": "a"
}'JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/coordinates-tool/run", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"a": "a"
}),
});
const data = await res.json();
console.log(data.result);MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
"mcpServers": {
"bead": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
}
}
}
# Then ask Claude to call:
mcp__bead__bead_coordinates_toolFull reference: developer docs · OpenAPI spec
About this tool
Accepts decimal degrees (37.7749, -122.4194), degrees-minutes-seconds (37°46'30"N), or a paste of either format. Outputs both representations side by side.
Distance is the great-circle (Haversine) distance on a sphere with WGS-84 mean radius of 6,371 km — accurate to within a few tenths of a percent for any two points on Earth.
You might also like
- Bitwise CalculatorPerform AND, OR, XOR, NOT, and shift operations across binary, decimal, and hex with a bit-by-bit view.
- Compound Interest CalculatorSee how much an investment grows over time with compounding and optional regular contributions.
- Country Code LookupPhone country codes, ISO 3166 alpha-2 / alpha-3, currency codes, and ccTLDs for every country.
- Discount CalculatorFind the sale price after one or more stacked discounts, with optional tax.