Mornox Tools

Distance Calculator

Calculate the great-circle distance between two coordinates using the Haversine formula. Get results in kilometers, miles, and nautical miles with bearing and travel time estimates.

Calculating geographic distance is the mathematical process of determining the shortest spatial separation between two points on the surface of the Earth using their latitude and longitude coordinates. Because the Earth is not a flat plane but a complex three-dimensional shape, accurately measuring the distance between two locations requires specialized spherical trigonometry rather than standard straight-line geometry. Understanding how these calculations work is absolutely essential for modern navigation, logistics, aviation, and the underlying architecture of virtually every location-based application running on a smartphone today.

What It Is and Why It Matters

A geographic distance calculator solves a fundamental problem of human navigation: determining exactly how far apart two locations are on a curved surface. When you look at a standard two-dimensional map, drawing a straight line between New York and London seems like the logical way to measure the distance. However, because the Earth is a sphere (more accurately, an oblate spheroid), a straight line drawn on a flat map actually represents a heavily distorted, curved path in reality. To find the true shortest distance between two points on a sphere, you must calculate what is known as the "great circle distance." A great circle is the largest possible circle that can be drawn around a sphere, dividing it perfectly in half, and the arc of this circle connecting two points represents the shortest possible path between them.

This concept matters because our modern world is entirely dependent on precise spatial awareness and routing. If a commercial airline pilot relied on flat-map geometry to chart a flight path from Los Angeles to Tokyo, the aircraft would fly thousands of miles out of its way, wasting catastrophic amounts of fuel and time. In the digital realm, ride-sharing applications rely on rapid distance calculations to match a passenger with the closest available driver, while dating applications use it to filter potential matches within a specific geographic radius. Supply chain logistics companies use these algorithms to optimize delivery routes for fleets of thousands of trucks, saving millions of dollars in operational costs. Furthermore, emergency response systems depend on instantaneous distance calculations to dispatch the nearest ambulance or fire engine to a crisis. Without the mathematical frameworks that allow us to calculate spherical distance accurately, global trade, travel, and modern mobile technology would simply cease to function.

History and Origin

The quest to accurately measure distance across the Earth's surface dates back to ancient antiquity, driven by the needs of empire-building, trade, and maritime exploration. The foundational work began with the ancient Greeks, specifically Eratosthenes in the 3rd century BCE, who first calculated the circumference of the Earth with remarkable accuracy by measuring the angle of the sun's shadows in two different Egyptian cities. Later, in the 2nd century CE, Claudius Ptolemy revolutionized geography by introducing the concepts of latitude and longitude, creating a grid system that allowed any point on the known world to be assigned specific coordinates. However, early navigators still struggled to calculate exact distances across open oceans, relying on crude estimates, dead reckoning, and the stars.

The mathematical breakthrough necessary for accurate distance calculation arrived much later, during the golden age of naval exploration. In the early 17th century, the Scottish mathematician John Napier invented logarithms, which dramatically simplified complex trigonometric calculations. Building upon spherical trigonometry, the specific formula that would become the standard for navigation—the Haversine formula—was first published by the English astronomer and mathematician James Andrew in 1805. The term "haversine" (meaning half-versed-sine) was coined a few years later by Professor James Inman in 1835. This formula was revolutionary because it remained mathematically stable even for very small distances, preventing the severe rounding errors that plagued other trigonometric methods when calculated by hand using logarithmic tables.

For nearly two centuries, ship captains and aviators manually calculated great circle distances using thick books of haversine tables. The process was entirely transformed in the late 20th century with the advent of the Global Positioning System (GPS), developed by the United States Department of Defense and fully operational by 1993. GPS satellites provided pinpoint coordinate data, and microprocessors could execute the Haversine formula in fractions of a millisecond. In 1975, geodesist Thaddeus Vincenty published a far more complex set of equations that accounted for the Earth's slight flattening at the poles, pushing distance calculation accuracy down to the millimeter. Today, the mathematical legacy of Eratosthenes, Ptolemy, and Andrew runs silently in the background of billions of smartphones, executing spherical distance calculations millions of times per second.

Key Concepts and Terminology

To thoroughly understand geographic distance calculation, one must first master the specific terminology used to describe the Earth's geometry and coordinate systems. The most fundamental concepts are Latitude and Longitude, which form the geographic coordinate system. Latitude measures a location's distance North or South of the Equator, expressed in degrees ranging from -90° (the South Pole) to +90° (the North Pole), with the Equator sitting exactly at 0°. Longitude measures a location's distance East or West of the Prime Meridian (an imaginary line running through Greenwich, England), ranging from -180° to +180°. Together, a latitude and longitude pair provides a precise, unambiguous address for any location on the planet.

A Great Circle is a critical concept in this field. If you were to slice the Earth perfectly in half straight through its center, the perimeter of that slice on the Earth's surface is a great circle. The Equator is a great circle, as are all lines of longitude when paired with their exact opposite line. The shortest distance between any two points on a sphere always lies along the arc of a great circle. This is contrasted with a Rhumb Line (or loxodrome), which is a path of constant bearing or direction. While a rhumb line is easier to navigate with a compass because you never have to change your heading, it is always a longer physical distance than the great circle route.

When performing the mathematics of distance calculation, you will frequently encounter the terms Degrees and Radians. While humans read coordinates in degrees, computers and mathematical formulas calculate trigonometry using radians. A full circle is 360 degrees, which is equal to 2π radians. Therefore, converting from degrees to radians requires multiplying the degree value by π/180. Finally, you must understand the Earth's Radius, typically denoted as R. Because the Earth is not a perfect sphere, its radius varies from about 6,357 kilometers at the poles to 6,378 kilometers at the equator. For general spherical distance calculations, the internationally accepted mean radius of the Earth is 6,371 kilometers (or about 3,958.8 miles).

How It Works — Step by Step

The most widely used method for calculating the distance between two coordinates is the Haversine formula. This formula determines the great-circle distance between two points on a sphere given their longitudes and latitudes. The formula is designed to avoid the problem of limited precision that occurs with other formulas when calculating the distance between two points that are very close together. The calculation requires the latitude and longitude of the starting point (Point 1) and the destination (Point 2), as well as the mean radius of the Earth (R = 6,371 km).

The Haversine Formulas

The mathematical sequence is as follows:

  1. First, calculate the differences in latitude and longitude: Δφ = φ2 - φ1 (difference in latitude) Δλ = λ2 - λ1 (difference in longitude)
  2. Apply the Haversine formula to find a (the square of half the chord length between the points): a = sin²(Δφ/2) + cos(φ1) × cos(φ2) × sin²(Δλ/2)
  3. Calculate c (the angular distance in radians): c = 2 × atan2(√a, √(1-a))
  4. Finally, calculate the total distance d: d = R × c

Full Worked Example: New York to London

Let us calculate the distance between New York City (Latitude: 40.7128° N, Longitude: -74.0060° W) and London (Latitude: 51.5074° N, Longitude: -0.1278° W). First, we must convert all coordinates from degrees to radians by multiplying by (π / 180), which is approximately 0.0174533.

  • New York (Point 1): φ1 = 40.7128 × 0.0174533 = 0.710598 radians. λ1 = -74.0060 × 0.0174533 = -1.291630 radians.
  • London (Point 2): φ2 = 51.5074 × 0.0174533 = 0.898973 radians. λ2 = -0.1278 × 0.0174533 = -0.002231 radians.

Next, we find the differences (deltas) between the radians:

  • Δφ = 0.898973 - 0.710598 = 0.188375 radians.
  • Δλ = -0.002231 - (-1.291630) = 1.289399 radians.

Now we calculate a:

  • sin(Δφ/2) = sin(0.188375 / 2) = sin(0.0941875) = 0.094048. Squaring this gives 0.008845.
  • sin(Δλ/2) = sin(1.289399 / 2) = sin(0.6446995) = 0.600944. Squaring this gives 0.361133.
  • cos(φ1) = cos(0.710598) = 0.757987.
  • cos(φ2) = cos(0.898973) = 0.622416.
  • Multiply the second part: 0.757987 × 0.622416 × 0.361133 = 0.170377.
  • Add the first part to the second part: a = 0.008845 + 0.170377 = 0.179222.

Next, we calculate c:

  • √a = √0.179222 = 0.423346.
  • √(1-a) = √(1 - 0.179222) = √0.820778 = 0.905968.
  • c = 2 × atan2(0.423346, 0.905968). The atan2 function yields 0.437180. Multiplying by 2 gives c = 0.874360 radians.

Finally, we calculate the distance d:

  • d = 6371 km × 0.874360 = 5,570.55 kilometers. The shortest great-circle distance between New York and London is approximately 5,570.55 kilometers.

Types, Variations, and Methods

While the Haversine formula is the most famous, there are several distinct mathematical methods for calculating distance between coordinates, each serving different use cases depending on the required balance of speed versus accuracy. The simplest and least accurate method is the Euclidean Distance formula. This method treats the Earth's surface as a flat Cartesian plane and simply applies the Pythagorean theorem to the latitude and longitude degrees. While computationally incredibly cheap, Euclidean distance is only passably accurate over extremely short distances (less than 20 kilometers) near the equator. As you move toward the poles, the physical distance between lines of longitude shrinks rapidly, making flat-plane Euclidean calculations wildly inaccurate and completely useless for global applications.

The Spherical Law of Cosines is another method for calculating great-circle distance. The formula is d = acos( sin(φ1)⋅sin(φ2) + cos(φ1)⋅cos(φ2)⋅cos(Δλ) ) ⋅ R. For many years, this was considered mathematically inferior to Haversine because, on older 32-bit computing systems with limited floating-point precision, the arccosine function would break down and produce large errors when calculating distances between points that were only a few meters apart. However, on modern 64-bit processors utilizing double-precision floating-point formats, the Spherical Law of Cosines is virtually identical in accuracy to Haversine and can sometimes execute slightly faster due to requiring fewer trigonometric calls.

For applications requiring military or surveying-grade precision, spherical models are insufficient because the Earth is an oblate spheroid—it bulges at the equator and is flattened at the poles. To account for this, geodesists use Vincenty’s formulae, published in 1975. Vincenty's method calculates distance across the surface of a specific reference ellipsoid (usually the WGS 84 ellipsoid). It is an iterative mathematical process, meaning the algorithm runs in a loop, refining its answer until it achieves the desired precision. Vincenty's formula is accurate to within 0.5 millimeters, but it is computationally heavy and can fail to converge (creating an infinite loop) when calculating distances between nearly antipodal points. To solve Vincenty's antipodal failure, Charles Karney introduced Karney's algorithm in 2013, which is currently the gold standard for perfectly accurate, universally stable ellipsoidal geodesic calculations.

Real-World Examples and Applications

The mathematics of geographic distance calculation are deeply embedded in the infrastructure of the modern global economy. Consider the aviation industry. A commercial airline dispatch center must plan the route for a Boeing 777 flying from San Francisco (SFO) to Dubai (DXB). Using a geographic distance calculator, the dispatchers determine the great-circle route is approximately 13,040 kilometers. This route does not look like a straight line on a map; it curves sharply north, taking the aircraft over the Arctic Circle, Northern Canada, and Russia before descending into the Middle East. By calculating and flying this exact spherical curve rather than a flat-map straight line, the airline saves roughly 2,500 kilometers of flight distance, which translates to saving over 15,000 gallons of jet fuel (worth roughly $40,000) on a single flight.

In the consumer technology sector, ride-hailing platforms like Uber and Lyft process billions of distance calculations daily. When a user opens the app in downtown Chicago, the application immediately pings the coordinates of the user and retrieves the coordinates of all active drivers in the database. The system uses lightweight spherical distance calculations to instantly filter out any drivers further than a 3-kilometer radius. It then passes the remaining, nearby drivers into a heavier routing algorithm to calculate exact driving times. Without the initial, lightning-fast great-circle calculations to filter the dataset, the servers would crash trying to calculate street-routing for thousands of irrelevant cars.

Localized marketing and "geofencing" rely entirely on these mathematical principles. A retail franchise with 500 locations nationwide might launch a mobile advertising campaign designed to trigger a push notification offering a 20% discount whenever a customer walks within 500 meters of a store. The user's smartphone constantly calculates the haversine distance between its current GPS coordinates and the coordinates of the nearest store. If the calculated distance drops from 501 meters to 499 meters, the mathematical threshold is crossed, and the software triggers the advertisement. This exact same principle is used in maritime logistics to alert port authorities when a cargo ship crosses a 12-nautical-mile territorial water boundary.

Common Mistakes and Misconceptions

The single most pervasive misconception among beginners working with geographic distance is the Mercator Projection Illusion. Because we are conditioned from childhood to look at flat, rectangular maps (specifically the Mercator projection), our brains intuitively believe that a straight horizontal line on a map represents the shortest path. Beginners frequently assume that traveling from New York to Madrid—both of which sit at roughly 40 degrees North latitude—simply requires traveling due East along that line of latitude. In reality, a line of latitude (other than the equator) is not a great circle. The true shortest distance requires heading slightly Northeast, curving up toward Nova Scotia before dropping back down toward Spain. Trusting flat-map visual intuition over spherical mathematics is a guaranteed way to miscalculate distance.

A highly common technical mistake made by junior software developers is failing to convert degrees to radians. All standard programming languages (Python, Java, C++, JavaScript) expect trigonometric functions (sine, cosine, tangent) to receive inputs in radians. If a developer passes latitude and longitude degrees directly into a Math.sin() function, the mathematical output will be complete garbage, resulting in distance calculations that are entirely divorced from reality. A related programming mistake is relying on single-precision floating-point numbers (32-bit floats) instead of double-precision (64-bit floats). Because Earth-scale calculations involve multiplying very small decimal changes by a very large Earth radius, single-precision floats will aggressively round off the decimals, easily introducing errors of several kilometers into the final result.

Another significant misconception is that altitude does not matter. Both the Haversine and Vincenty formulas calculate the distance across the surface of the reference sphere or ellipsoid, essentially assuming both points are precisely at sea level. If you are calculating the distance between two mountain peaks, or between a ground station and an aircraft cruising at 35,000 feet, the standard great-circle distance will be shorter than the true physical distance in three-dimensional space. While the difference is negligible for casual applications, ignoring the altitude (elevation) delta in aerospace engineering or strict topographical surveying will result in critical measurement failures.

Best Practices and Expert Strategies

When experts architect systems that require high-volume distance calculations, their primary strategy involves computational triage. Calculating the exact spherical distance between millions of coordinate pairs is computationally expensive. Therefore, professionals never calculate the exact distance to every point in a database. Instead, they use a "bounding box" strategy. If an application needs to find all restaurants within 10 kilometers of a user, the system first calculates the rough latitude and longitude boundaries that represent a 10km square around the user. A database can instantly query for restaurants within this square using simple greater-than and less-than operators (e.g., WHERE lat < max_lat AND lat > min_lat). Only the handful of restaurants that fall inside this rough square are then subjected to the heavier Haversine calculation to ensure they are within the exact 10km circular radius.

Another best practice is choosing the correct radius of the Earth for your specific domain. While the globally accepted mean radius is 6,371 kilometers, the Earth is wider at the equator than at the poles. If you are building a localized application that only operates within a specific country, experts will adjust the radius variable to match the local curvature. For example, if you are calculating distances strictly within Norway, using a slightly smaller polar radius (e.g., 6,360 km) will yield more accurate Haversine results than using the global mean. For true enterprise-grade accuracy, experts abandon spherical models entirely and utilize geospatial libraries that implement Karney's algorithms over the WGS 84 ellipsoid.

For database architecture, professionals rely heavily on Spatial Indexing. Instead of storing coordinates as simple text or float columns, modern databases (like PostgreSQL with the PostGIS extension) store them as specialized geometry or geography data types. These systems utilize R-trees (Rectangle trees) or Geohashes to index the coordinates. A Geohash converts a two-dimensional latitude and longitude into a single alphanumeric string, where locations that are physically close to each other share the same string prefix. This allows the database to perform distance-based proximity searches at blinding speeds, reducing query times from minutes to milliseconds, which is an absolute necessity for applications operating at the scale of millions of users.

Edge Cases, Limitations, and Pitfalls

The most notorious edge case in spherical distance calculation involves antipodal points. Antipodes are two points that are diametrically opposite each other on the Earth's surface—if you drew a straight line from one point through the exact center of the Earth, it would exit at the other point (for example, the North Pole and the South Pole, or parts of Spain and New Zealand). When calculating the distance between antipodal or near-antipodal points, the math begins to break down. Because there are infinite great-circle paths between two exact antipodes (all meridians connect the poles), the formulas struggle. Specifically, Vincenty's highly accurate ellipsoidal formula is mathematically unstable near antipodes and will often enter an infinite loop, failing to converge on an answer. Systems must be hard-coded to detect near-antipodal coordinates and switch to fallback algorithms to prevent application crashes.

A major limitation of the Haversine formula is its core assumption: the spherical Earth. The Haversine formula assumes the Earth is a perfect sphere with a uniform radius of 6,371 kilometers. Because the real Earth is an oblate spheroid, the distance calculated by Haversine can be off by up to 0.5% depending on the location and direction of the measurement. Over a massive distance, such as the 10,000 kilometers from Tokyo to London, a 0.5% error margin equates to a 50-kilometer miscalculation. For a consumer fitness app tracking a 5-kilometer run, a 0.5% error is a meaningless 25 meters. But for a maritime shipping company calculating fuel consumption for a trans-oceanic voyage, a 50-kilometer error is a costly pitfall.

Another subtle pitfall is the Dateline Crossing problem. The anti-meridian, or International Date Line, sits at exactly 180° (or -180°) longitude. If you are calculating the distance between a point at 179° East and a point at -179° West, they are physically only 2 degrees of longitude apart. However, poorly written custom distance algorithms will sometimes subtract -179 from 179, resulting in a 358-degree difference, and calculate the distance the long way around the entire planet. Robust distance calculators must utilize modulo arithmetic or the atan2 function (as seen in the Haversine formula) to ensure the mathematics correctly "wrap around" the 180th meridian to find the true shortest path.

Industry Standards and Benchmarks

The undisputed global standard for geographic coordinate systems and distance calculation is WGS 84 (World Geodetic System 1984). Maintained by the United States National Geospatial-Intelligence Agency, WGS 84 defines the exact mathematical shape of the Earth ellipsoid, the exact position of the center of the Earth, and the exact prime meridian. Every modern GPS receiver, smartphone, and mapping application (including Google Maps and Apple Maps) defaults to WGS 84 coordinates. When industry professionals discuss "highly accurate distance calculation," the benchmark they are referring to is the distance calculated along the surface of the WGS 84 ellipsoid, which has an equatorial radius of exactly 6,378,137 meters and a polar radius of exactly 6,356,752.3142 meters.

In terms of accuracy benchmarks, different industries have strictly defined tolerance levels. For mobile application development, the Haversine 0.3% standard is widely accepted; if an algorithm calculates a distance that falls within 0.3% of the true ellipsoidal distance, it is considered perfectly valid for commercial use. However, in the aviation sector, the International Civil Aviation Organization (ICAO) requires flight management systems to utilize ellipsoidal geodesics (like Vincenty or Karney) that are accurate to within fractions of a meter. For land surveying and geodetic science, the benchmark is even stricter: the National Geodetic Survey (NGS) requires calculations that are accurate to the millimeter level, which requires factoring in not just the WGS 84 ellipsoid, but also localized tectonic plate drift and gravitational anomalies.

In database and software architecture, the EPSG identifier system is the industry standard for defining which mathematical model is being used. The standard identifier for unprojected WGS 84 coordinates is EPSG:4326. When a geographic database calculates distances, it uses this EPSG code to know exactly which mathematical rules and Earth-radius measurements to apply. If a developer attempts to calculate distance by mixing coordinates from EPSG:4326 with coordinates from an older local standard (like NAD27, an old North American datum), the resulting benchmark error can be upwards of 100 meters, a phenomenon known in the industry as "datum shift."

Comparisons with Alternatives

When solving spatial problems, great-circle geographic distance is just one of several approaches, and it is vital to compare it against its alternatives. The most common alternative is Network Distance (also known as Routing Distance). While the Haversine formula tells you the straight-line distance a crow would fly between a house and a grocery store (e.g., 2 kilometers), network distance calculates the actual path a car must take along the road network, obeying one-way streets, bridges, and physical barriers (which might be 4.5 kilometers). Haversine is instantaneous and computationally free; network routing requires complex graph algorithms like Dijkstra's or A* (A-Star) and heavy databases of street topology. You choose Haversine to filter or estimate, but you must choose Network Distance when generating actual driving directions or calculating realistic travel times.

Another alternative is Manhattan Distance (or Taxicab Geometry). In this mathematical model, you cannot travel diagonally; you can only travel along a grid of horizontal and vertical lines, much like a taxi navigating the strict grid of streets in Manhattan. The formula is simply the absolute difference in X coordinates plus the absolute difference in Y coordinates: |x1 - x2| + |y1 - y2|. Manhattan distance is frequently used in machine learning algorithms, computer vision, and urban planning models where diagonal movement is physically impossible. It is computationally lighter than Haversine but is completely inaccurate for global, spherical navigation.

Finally, there is 3D Euclidean Distance, which calculates the distance between two points through the solid earth. If you took a coordinate in New York and a coordinate in Beijing, the great-circle geographic distance calculates the path across the curved surface of the Earth. The 3D Euclidean distance calculates the length of a straight tunnel bored directly through the Earth's mantle and core connecting the two cities. While fascinating from a mathematical perspective, and occasionally used in complex subterranean seismic wave modeling, 3D through-the-earth distance has almost zero practical application in daily navigation, logistics, or consumer technology, making surface-level spherical and ellipsoidal distance calculators the undisputed champions of geographic measurement.

Frequently Asked Questions

How accurate is the Haversine formula compared to real life? The Haversine formula is generally accurate to within 0.3% to 0.5% of the true physical distance. This slight error exists because Haversine assumes the Earth is a perfect sphere, whereas the actual Earth bulges at the equator. For a distance of 1,000 kilometers, the Haversine calculation might be off by about 3 to 5 kilometers. For most general purposes—such as finding nearby restaurants, estimating flight times, or general mapping—this level of accuracy is more than sufficient.

Can I just use the Pythagorean theorem to calculate distance between coordinates? You should only use the Pythagorean theorem (Euclidean distance) for extremely short distances, typically less than 20 kilometers, and ideally near the equator. As you move further North or South, the physical distance between lines of longitude shrinks drastically. A degree of longitude at the equator is about 111 kilometers wide, but at 60 degrees North latitude, it is only 55 kilometers wide. The Pythagorean theorem does not account for this shrinking grid, leading to massive, unusable errors over long distances.

What is the difference between a great circle and a rhumb line? A great circle is the absolute shortest distance between two points on the surface of a sphere, but following a great circle requires a navigator to constantly adjust their compass heading as they travel. A rhumb line is a path of constant bearing—meaning if you set your compass to exactly 45 degrees Northeast and never change it, you are traveling on a rhumb line. While a rhumb line is easier to steer, it creates a spiral path on a sphere and is physically longer than the great circle route.

How does altitude or elevation affect geographic distance calculations? Standard geographic distance calculators, including Haversine and Vincenty, calculate the distance across the "surface" of the reference sphere or ellipsoid (essentially sea level). If you are calculating the distance between two points at high altitudes—such as two airplanes flying at 35,000 feet—the actual physical distance between them is slightly longer than the ground-level distance because they are traveling along a sphere with a larger radius. To find the exact 3D distance, you must incorporate the altitude into an Earth-Centered, Earth-Fixed (ECEF) coordinate conversion.

Why do flight paths look like extreme curves on a map instead of straight lines? Flight paths look curved because almost all maps we use are Mercator projections, which stretch and distort the Earth to fit a spherical surface onto a flat rectangle. The distortion is most extreme near the poles. When a pilot flies the shortest possible route (a great circle), plotting that three-dimensional spherical path onto a flat, stretched 2D map results in a line that appears highly curved, often sweeping close to the Arctic Circle for flights between the Northern Hemisphere continents.

What is WGS 84 and why does it matter for distance calculation? WGS 84 stands for World Geodetic System 1984, and it is the internationally recognized mathematical model of the Earth used by the Global Positioning System (GPS). It defines the Earth not as a sphere, but as an oblate ellipsoid with specific dimensions. It matters because if two different systems use different models of the Earth (different datums), the same latitude and longitude coordinates could point to physical locations that are hundreds of meters apart. WGS 84 ensures global consistency in coordinate mapping and distance calculation.

Why do some distance algorithms fail when points are exactly opposite each other? Points that are exactly opposite each other on the globe are called antipodes (like the North and South Poles). Between any two non-antipodal points, there is exactly one shortest great-circle path. However, between two true antipodes, there are infinite shortest paths (every line of longitude connects the poles). Because there is no single unique mathematical solution, complex iterative algorithms like Vincenty's can fail to converge on an answer, entering an infinite loop. Systems must use specialized logic to detect and handle these antipodal edge cases.

Command Palette

Search for a command to run...