


Measuring Distance and Creating a Bounding Box from Latitude and Longitude
Calculating the distance between two geographical coordinates (latitude and longitude) is essential in various applications, such as mapping and navigation. The great circle distance, also known as the Haversine formula, provides an accurate estimate of the distance between two points along the surface of the earth.
Once the distance is determined, the next step is to define a bounding box around a specific point. This box serves to encapsulate the point within a specific geographical region. To create this box, we need to find the points located at the given distance north and east of the original point.
Java Implementation
The following Java code snippet provides an implementation of the Haversine formula to calculate the distance between two points and create a bounding box:
<code class="java">import java.lang.Math; public class DistanceBoundingBox { public static void main(String[] args) { double lat1 = 37.386051; // Latitude of the origin point double lng1 = -122.083855; // Longitude of the origin point double distance = 10; // Distance in miles to extend the bounding box double lat2 = lat1 + distance / 69; // Calculate the northernmost point double lng2 = lng1 + distance / Math.cos(lat1 / 57.2957795) / 69; // Calculate the easternmost point System.out.println("Distance between the two points: " + distance); System.out.println("North: " + lat2); System.out.println("East: " + lng2); } }</code>
Usage:
Input the latitude and longitude coordinates of two points in the main method. The code will calculate the great circle distance between the points and print it to the console. It will also compute the northernmost and easternmost points that are located at the given distance from the original point.
Additional Considerations:
- The distance is calculated in miles. If you need kilometers, multiply the result by 1.60934.
- The Haversine formula assumes that the earth is a perfect sphere. For greater accuracy, consider using the Vincenty formula, which accounts for the earth's ellipsoid shape.
- This implementation does not handle input validation. Ensure that the input coordinates are valid latitude and longitude values.
The above is the detailed content of How to Calculate Distance and Create a Bounding Box from Latitude and Longitude?. For more information, please follow other related articles on the PHP Chinese website!

This article analyzes the top four JavaScript frameworks (React, Angular, Vue, Svelte) in 2025, comparing their performance, scalability, and future prospects. While all remain dominant due to strong communities and ecosystems, their relative popul

This article addresses the CVE-2022-1471 vulnerability in SnakeYAML, a critical flaw allowing remote code execution. It details how upgrading Spring Boot applications to SnakeYAML 1.33 or later mitigates this risk, emphasizing that dependency updat

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

Node.js 20 significantly enhances performance via V8 engine improvements, notably faster garbage collection and I/O. New features include better WebAssembly support and refined debugging tools, boosting developer productivity and application speed.

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

Iceberg, an open table format for large analytical datasets, improves data lake performance and scalability. It addresses limitations of Parquet/ORC through internal metadata management, enabling efficient schema evolution, time travel, concurrent w

This article explores methods for sharing data between Cucumber steps, comparing scenario context, global variables, argument passing, and data structures. It emphasizes best practices for maintainability, including concise context use, descriptive

This article explores integrating functional programming into Java using lambda expressions, Streams API, method references, and Optional. It highlights benefits like improved code readability and maintainability through conciseness and immutability


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version
Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
