A Landmark Based Shortest Path Detection by Using A* and Haversine Formula

Total Page:16

File Type:pdf, Size:1020Kb

A Landmark Based Shortest Path Detection by Using A* and Haversine Formula International Journal on Recent and Innovation Trends in Computing and Communication ISSN: 2321-8169 Volume: 6 Issue: 7 98 - 101 ______________________________________________________________________________________ A Landmark Based Shortest Path Detection by Using A* and Haversine Formula Ms. Megha G. Mathpal Department of Information Technology Government Engineering College Modasa, Gujarat, India [email protected] Abstract—In 1900, less than 20 percent of the world populace lived in cities, in 2007, fair more than 50 percent of the world populace lived in cities. In 2050, it has been anticipated that more than 70 percent of the worldwide population (about 6.4 billion individuals) will be city tenants. There's more weight being set on cities through this increment in population [1]. With approach of keen cities, data and communication technology is progressively transforming the way city regions and city inhabitants organize and work in reaction to urban development. In this paper, we create a nonspecific plot for navigating a route throughout city A asked route is given by utilizing combination of A* Algorithm and Haversine equation. Haversine Equation gives least distance between any two focuses on spherical body by utilizing latitude and longitude. This least distance is at that point given to A* calculation to calculate minimum distance. The method for identifying the shortest path is specify in this paper. Keywords- Haversine Formula, Dijkstra Algorithm, Google Map, XML. ________________________________________________*****_________________________________________________ I. INTRODUCTION II. PROBLEM DEFINATION The downsides happened in past paper of shortest path The Point of Paper is to discover out the route in between two discovery by utilizing Dijkstra calculation is recuperated in spots/junctions inside a city entered by client by making use of this paper by employing A* calculation. A* calculation is the Intersections in between the Source and Goal spots/junctions. heuristic in nature. The point of Paper is to discover the route The main motto behind it is to progress the navigation of client between two places inside a city entered by client utilizing inside a city; particularly in Indian cities where Town Arranging the Intersections between Source and Goal intersections. The approach doesn’t take after a standard rule for numbering or witticism behind it is to progress navigation of client inside a naming the distinctive spots or places. Most of the times an city; particularly in India where Town Arranging approach obscure individual can’t discover indeed the most famous places doesn’t take after a standard rule for naming the diverse inside the city due to nonappearance of naming sheets or other places. Most of the times an unknown person can’t discover noteworthy identities. Subsequently the project is intended to indeed the foremost popular places inside the city due to allow a suitable route to client by coordinating it through various nonappearance of noteworthy identities. Hence the paper is junctions and streets which is able be easily identified by the planning to allow a suitable route to client by coordinating it related landmarks given with the route. The requested route is through different intersections and streets which will be given to client in terms of the intersections present in between the effortlessly distinguished by the related landmarks and a Google map. The route is given in two parts as: 1) Content source and goal route along with landmarks and streets route containing route giving a intersection to intersection interfacing them. The Landmarks utilized within the route may be movement to client in conjunction with the appropriate noteworthy Buildings, Statues, Streets, Complexes, Landmarks, directions and turnings directing the client to induce the Sanctuaries, etc. The use of Landmarks includes an advantage of precise halfway intersections or landmarks 2) Google Map getting to the exact place having no critical personality whereas for correct requested route. Paper uses client-server voyaging through route provided to client making the application engineering. Communication between them is entirely in friendly to the client obscure of the city to discover out the route XML for adaptability. The client has client interface from in between any two spots or intersections within the city. The where an input is taken in XML for processing. The server application is bound to deliver the shortest route providing a comprises of a Java Processing Application and Database for junction to junction movement to client in conjunction with the it. The Database utilized by handling application could be a appropriate directions and turnings directing the client to induce Social database containing whole information around city. the precise intermediate intersections (with their significant The processing application after parsing request computes landmarks) or landmarks in specific zones in between two route between them with all necessary subtle elements with junctions/spots provided by client. Latitude/Longitude for Google map and sends it as XML response. Client once more parsing response gets it on Client Interface with Google map handling done in JavaScript. 98 IJRITCC | July 2018, Available @ http://www.ijritcc.org _______________________________________________________________________________________ International Journal on Recent and Innovation Trends in Computing and Communication ISSN: 2321-8169 Volume: 6 Issue: 7 98 - 101 ______________________________________________________________________________________ III. LITERATURE SURVEY closedset := the empty set // The set of nodes already evaluated. This paper contains “great circle distance” which speaks to openset := {start} // The set of tentative nodes to be evaluated, the shortest path for distance modeling and optimal facility initially containing the start node area on spherical surface. Great circle distances take into came_from := the empty map // The map of navigated nodes. consideration the geometrical reality of the spherical Earth g_score[start] := 0 // Cost from start along best known path. and offers an elective to broadly held idea that travel over // Estimated total cost from start to goal through y. water can be precisely displayed by Euclidean distances. The f_score[start] := g_score[start] + heuristic_cost_estimate(start, need for geometrical presentation of the spherical earth gets goal) while openset is not empty current: = the node in openset having the lowest f_score[] value to be exceptionally important when we take into thought an if current = goal ever-expanding junction inside a city. The utilize of “Great return reconstruct_path(came_from, goal) circle distances” opens another avenue for merging of remove current from openset Navigation and Spherical Trigonometry into progression of add current to closedset logistics and facility location. In this paper an assessment of for each neighbour in neighbor_nodes(current) distance area utilizing great circle distances is utilized to tentative_g_score:=g_score[current]+ illustrate the application of the concept [4][3]. This paper dist_between(current,neighbor) proposes and executes a strategy for performing shortest if neighbor in closedset path calculations taking crowdsourced information, in the if tentative_g_score>= g_score[neighbor] form of imperatives and impediments, into consideration. continue The strategy is built on top of Google Maps (GM) and if neighbor not in openset or tentative_g_score<g_score[neighbor] employments its directing benefit to calculate the most came_from[neighbor] := current limited distance between two areas. Clients give the g_score[neighbor] := tentative_g_score limitations and obstacles in the form of polygons which f_score[neighbor]:=g_score[neighbor]+heuristic_cost_estimate(ne identify closed areas in the real world [5]. ighbor, goal) if neighbor not in openset A.Haversine Formula add neighbor to openset The Haversine formula is an equation important in return failure; navigation, giving great-circle distances between two points function reconstruct_path(came_from, current_node) on a sphere from their longitudes and latitudes [4]. These if current_node in came_from names follow from the fact that they are customarily written p:=reconstruct_path(came_fromcame_from[current_node]) in terms of the haversine function, given by haversin (θ) = return (p + current_node) sin2 (θ/2). The haversine formula is used to calculate the else distance between two points on the Earth’s surface specified return current_node. in longitude and latitude. d is the distance between two points with longitude and latitude (ψ,φ) and r is the radius of the The above pseudo code assumes that the heuristic function is Earth. Translation to SQL statement[1] 3956 * 2 * ASIN ( monotonic, which is a frequent case in many practical problems, SQRT (POWER(SIN((orig.lat - dest.lat)*pi()/180 / 2), 2) such as the Shortest Distance Path in road networks. However, if +COS(orig.lat *pi()/180) *COS(dest.lat * pi()/180) the assumption is not true, nodes in the closed set may be *POWER(SIN((orig.lon - dest.lon) * pi()/180 / 2), 2)) ) AS rediscovered and their cost improved. distance [2]. IV. SYSTEM DESIGN B.A* Algorithm The Point of the paper is to discover out the route in between any A* uses a best-first search and finds a least-cost path from a two spots inside a city entered by the client. This may be given beginning node to one objective node (out of one or implemented
Recommended publications
  • Celestial Navigation Tutorial
    NavSoft’s CELESTIAL NAVIGATION TUTORIAL Contents Using a Sextant Altitude 2 The Concept Celestial Navigation Position Lines 3 Sight Calculations and Obtaining a Position 6 Correcting a Sextant Altitude Calculating the Bearing and Distance ABC and Sight Reduction Tables Obtaining a Position Line Combining Position Lines Corrections 10 Index Error Dip Refraction Temperature and Pressure Corrections to Refraction Semi Diameter Augmentation of the Moon’s Semi-Diameter Parallax Reduction of the Moon’s Horizontal Parallax Examples Nautical Almanac Information 14 GHA & LHA Declination Examples Simplifications and Accuracy Methods for Calculating a Position 17 Plane Sailing Mercator Sailing Celestial Navigation and Spherical Trigonometry 19 The PZX Triangle Spherical Formulae Napier’s Rules The Concept of Using a Sextant Altitude Using the altitude of a celestial body is similar to using the altitude of a lighthouse or similar object of known height, to obtain a distance. One object or body provides a distance but the observer can be anywhere on a circle of that radius away from the object. At least two distances/ circles are necessary for a position. (Three avoids ambiguity.) In practice, only that part of the circle near an assumed position would be drawn. Using a Sextant for Celestial Navigation After a few corrections, a sextant gives the true distance of a body if measured on an imaginary sphere surrounding the earth. Using a Nautical Almanac to find the position of the body, the body’s position could be plotted on an appropriate chart and then a circle of the correct radius drawn around it. In practice the circles are usually thousands of miles in radius therefore distances are calculated and compared with an estimate.
    [Show full text]
  • Indoor Wireless Localization Using Haversine Formula
    ISSN (Online) 2393-8021 ISSN (Print) 2394-1588 International Advanced Research Journal in Science, Engineering and Technology Vol. 2, Issue 7, July 2015 Indoor Wireless Localization using Haversine Formula Ganesh L1, DR. Vijaya Kumar B P2 M. Tech (Software Engineering), 4th Semester, M S Ramaiah Institute of Technology (Autonomous Institute Affiliated to VTU)Bangalore, Karnataka, India1 Professor& HOD, Dept. of ISE, MSRIT, Bangalore, Karnataka, India2 Abstract: Indoor wireless Localization is essential for most of the critical environment or infrastructure created by man. Technological growth in the areas of wireless communication access techniques, high speed information processing and security has made to connect most of the day-to-day usable things, place and situations to be connected to the internet, named as Internet of Things(IOT).Using such IOT infrastructure providing an accurate or high precision localization is a smart and challenging issue. In this paper, we have proposed mapping model for locating a static or a mobile electronic communicable gadgets or the things to which such electronic gadgets are connected. Here, 4-way mapping includes the planning and positioning of wireless AP building layout, GPS co-ordinate and the signal power between the electronic gadget and access point. The methodology uses Haversine formula for measurement and estimation of distance with improved efficiency in localization. Implementation model includes signal measurements with wifi position, GPS values and building layout to identify the precise location for different scenarios is considered and evaluated the performance of the system and found that the results are more efficient compared to other methodologies. Keywords: Localization, Haversine, GPS (Global positioning system) 1.
    [Show full text]
  • Calculating Geographic Distance: Concepts and Methods Frank Ivis, Canadian Institute for Health Information, Toronto, Ontario, Canada
    NESUG 2006 Data ManipulationData andManipulation Analysis Calculating Geographic Distance: Concepts and Methods Frank Ivis, Canadian Institute for Health Information, Toronto, Ontario, Canada ABSTRACT Calculating the distance between point locations is often an important component of many forms of spatial analy- sis in business and research. Although specialized software is available to perform this function, the power and flexibility of Base SAS® makes it easy to compute a variety of distance measures. An added advantage is that these measures can be customized according to specific user requirements and seamlessly incorporated with other SAS code. This paper outlines the basic concepts and methods involved in calculating geographic distance. Topics include distance calculations in two dimensions, considerations when dealing with latitude and longitude, measuring spherical distance, and map projections. In addition, several queries and calculations based on dis- tances are also demonstrated. INTRODUCTION For many types of databases, determining the distance between locations is often of considerable interest. From a company’s customer database, for example, one might want to examine the distances between customers’ homes and the retail locations where they had made purchases. Similarly, the distance between patients and hospitals may be used as a measure of accessibility to healthcare. In both these cases, an appropriate formula is required to calculate distances. The proper formula will depend on the nature of the data, the goals of the analy- sis, and the type of co-ordinates. The purpose of this paper is to outline various considerations in calculating geographic distances and provide appropriate implementations of the formulae in SAS. Some additional summary measures based on calculated distances will also be presented.
    [Show full text]
  • Haversine Formula Implementation to Determine Bandung City School Zoning Using Android Based Location Based Service
    Haversine Formula Implementation to Determine Bandung City School Zoning Using Android Based Location Based Service Undang Syaripudin 1, Niko Ahmad Fauzi 2, Wisnu Uriawan 3, Wildan Budiawan Z 4, Ali Rahman 5 {[email protected] 1, [email protected] 2, [email protected] 3, [email protected] 4, [email protected] 5} Department of Informatics, UIN Sunan Gunung Djati Bandung 1,2,3,4,5 Abstract. The spread of schools in Bandung city, make the parents have difficulties choose which school is the nearest from the house. Therefore, when the children will go to school the just can go by foot. So, the purpose of this research is to make an application to determined the closest school based on zonation system using Haversine Formula as the calculation of the distance between school position with the house, and Location Based Service as the service to pointed the early position using Global Positioning System (GPS). The result of the research show that the accuracy of this calculation reaches 98% by comparing the default calculations from Google. Haversine Formula is very suitable to be applied in this research with the results which are not much different. Keywords: Global Positioning System (GPS), Bandung City, Haversine Formula, Location Based Service, zonation system, Rational Unified Process (RUP), PPDB 1 Introduction Starting in 2017, the Ministry of Education and Culture implements a zoning system for each school valid from elementary to high school/ vocational school. This zoning system aims to equalize the right to obtain education for school-age students. The PPDB revenue system is no longer based on academic achievement, but based on the distance of the student's residence with the school (zoning).
    [Show full text]
  • Primer of Celestial Navigation
    LIFEBOAT MANUAL By Lt. Comdr. A. E. Redifer, U.S.M.S. Lifeboat Training Officer, Avalon, Calif., Training Station *Indispensable to ordinary seamen preparing for the Lifeboat Examination. *A complete guide for anyone who may have to use a lifeboat. Construction, equipment, operation of lifeboats and other buoyant apparatus are here, along with the latest Government regulations which you need to know. 163 Pages More than 150 illustrations Indexed $2.00 METEOROLOGY WORKBOOK with Problems By Peter E. Kraght Senior Meteorologist, American Airlines, Inc. *Embodies author's experience in teaching hundreds of aircraft flight crews. *For self-examination and for classroom use. *For student navigator or meteorologist or weather hobbyist. *A good companion book to Mr. Kraght's Meteorology for Ship and Aircraft Operation, 0r any other standard reference work. 141 Illustrations Cloud form photographs Weather maps 148 Pages W$T x tl" Format $2.25 MERCHANT MARBMI OFFICERS' HANDBOOK By E. A. Turpin and W. A. MacEwen, Master Mariners "A valuable guide for both new candidates for . officer's license and the older, more experienced officers." Marine Engi- neering and Shipping Re$etu. An unequalled guide to ship's officers' duties, navigation, meteorology, shiphandling and cargo, ship construction and sta- bility, rules of the road, first aid and ship sanitation, and enlist- ments in the Naval Reserve all in one volume. 03 086 3rd Edition "This book will be a great help to not only beginners but to practical navigating officers." Harold Kildall, Instructor in Charge, Navigation School of the Washing- ton Technical Institute, "Lays bare the mysteries of navigation with a firm and sure touch .
    [Show full text]
  • Long and Short-Range Air Navigation on Spherical Earth
    International Journal of Aviation, Aeronautics, and Aerospace Volume 4 Issue 1 Article 2 1-1-2017 Long and short-range air navigation on spherical Earth Nihad E. Daidzic AAR Aerospace Consulting, LLC, [email protected] Follow this and additional works at: https://commons.erau.edu/ijaaa Part of the Aviation Commons, Geometry and Topology Commons, Navigation, Guidance, Control and Dynamics Commons, Numerical Analysis and Computation Commons, and the Programming Languages and Compilers Commons Scholarly Commons Citation Daidzic, N. E. (2017). Long and short-range air navigation on spherical Earth. International Journal of Aviation, Aeronautics, and Aerospace, 4(1). https://doi.org/10.15394/ijaaa.2017.1160 This Article is brought to you for free and open access by the Journals at Scholarly Commons. It has been accepted for inclusion in International Journal of Aviation, Aeronautics, and Aerospace by an authorized administrator of Scholarly Commons. For more information, please contact [email protected]. Daidzic: Air navigation on spherical Earth As the long-range and ultra-long range non-stop commercial flights slowly turn into reality, the accurate characterization and optimization of flight trajectories becomes even more essential. An airplane flying non-stop between two antipodal points on spherical Earth along the Great Circle (GC) route is covering distance of about 10,800 NM (20,000 km) over-the-ground. Taking into consideration winds (Daidzic, 2014; Daidzic; 2016a) and the flight level (FL), the required air range may exceed 12,500 NM for antipodal ultra-long flights. No civilian or military airplane today (without inflight refueling capability) is capable of such ranges.
    [Show full text]
  • GEOMETRIC ANALYSIS of an OBSERVER on a SPHERICAL EARTH and an AIRCRAFT OR SATELLITE Michael Geyer
    GEOMETRIC ANALYSIS OF AN OBSERVER ON A SPHERICAL EARTH AND AN AIRCRAFT OR SATELLITE Michael Geyer S π/2 - α - θ d h α N U Re Re θ O Federico Rostagno Michael Geyer Peter Mercator nosco.com Project Memorandum — September 2013 DOT-VNTSC-FAA-13-08 Prepared for: Federal Aviation Administration Wake Turbulence Research Program DOT/RITA Volpe Center TABLE OF CONTENTS 1. INTRODUCTION...................................................................................................... 1 1.1 Basic Problem and Solution Approach........................................................................................1 1.2 Vertical Plane Formulation ..........................................................................................................2 1.3 Spherical Surface Formulation ....................................................................................................3 1.4 Limitations and Applicability of Analysis...................................................................................4 1.5 Recommended Approach to Finding a Solution.........................................................................5 1.6 Outline of this Document ..............................................................................................................6 2. MATHEMATICS AND PHYSICS BASICS ............................................................... 8 2.1 Exact and Approximate Solutions to Common Equations ........................................................8 2.1.1 The Law of Sines for Plane Triangles.........................................................................................8
    [Show full text]
  • Haversine Formula - Wikipedia, the Free Encyclopedia
    Haversine formula - Wikipedia, the free encyclopedia Haversine formula From Wikipedia, the free encyclopedia. The haversine formula is an equation important in navigation, giving great-circle distances between two points on a sphere from their longitudes and latitudes. It is a special case of a more general formula in spherical trigonometry, the law of haversines, relating the sides and angles of spherical "triangles". These names follow from the fact that they are customarily written in terms of the haversine function, given by haversin(θ) = sin2(θ/2). (The formulas could equally be written in terms of any multiple of the haversine, such as the older versine function (twice the haversine). Historically, the haversine had, perhaps, a slight advantage in that its maximum is one, so that logarithmic tables of its values could end at zero. These days, the haversine form is also convenient in that it has no coefficient in front of the sin2 function.) Contents ● 1 The haversine formula ● 2 The law of haversines ● 3 References ● 4 External links The haversine formula φ φ ∆φ φ − φ For two points on a sphere (of radius R) with latitudes 1 and 2, latitude separation = 1 2, and longitude separation ∆λ, where angles are in radians, the distance d between the two points (along a great circle of the sphere; see spherical distance) is related to their locations by the formula: http://en.wikipedia.org/wiki/Haversine_formula (1 of 5)11/18/2005 5:33:25 AM Haversine formula - Wikipedia, the free encyclopedia (the haversine formula) Let h denote haversin(d/R), given from above.
    [Show full text]
  • The Forgotten Trigonometric Functions, Or How Trigonometry Was Used in the Ancient Art of Navigation (Before GPS!)
    The Forgotten Trigonometric Functions, or How Trigonometry was used in the Ancient Art of Navigation (Before GPS!) Recently, as I was exploring some mathematical concept I came across some terms that were suspiciously similar to some familiar trigonometric functions. What is an excosecant? How about a Havercosine? As it turns out, these belong to a family of trigonometric functions that once enjoyed very standard usage, in very notable and practical fields, but in recent times have become nearly obsolete. ( ) Versine !"#$%& ! = 1 − cos ! !(!!!"# !) = The most basic of this family of functions is the ! versine, or versed sine. The versine, abbreviated ! 1 − cos ! versin of some angle x is actually calculated by = 2 !! ! 2 subtracting the cosine of x from 1; that is versin(x) = 1 - cos (x). Through some manipulations with half- 1 = 2 !"#! ! !! angle identities, we can see another equivalent 2 expression: Notice, we do not need the ± as the versine will always represent non-negative value (since cosine ranges from negative one to positive one, one minus these values will range from zero to two). This was especially helpful as navigators used logarithms in their calculations, so they could always take the logarithm of the versine. It is interesting that the Latin name for versine is either sinus versus (flipped sine, to distinguish from sinus rectus, the vertical sine) or sagitta, meaning arrow. It is easy to see, when looking at a drawing of the sine, cosine and versine why the reference to arrow occurs. Envision a bow and arrow; on the sketch, the arc AB is the bow, segment AB is the bowstring, and segment CD is the drawn arrow shaft, thus, the reference to an arrow.
    [Show full text]
  • Haversine Navigation
    Haversine Navigation Abstract This is to provide a practical means for cruise planning using either the computer spreadsheet, the hand held calculator, or applications (apps) available for the iPhone or iPad. Background Shortly after achieving the grade of Navigator with the Shrewsbury River Power Squadron in April of 1962, I took an active interest in the mathematics of sight reduction that went beyond the methods of HO 211 and HO 214. Preferring analytic over graphic voyage planning provided the motive for these studies. Please remember that this was done before the computer, GPS, and even the most basic hand held calculator. Today using data (waypoint information) from a Cruising Guide, it is easier and faster to plan with the computer. The spherical trigonometry equations taught left an ambiguity when the initial course was close to due east or west. Further solutions using the Spherical Law of Cosines fall apart when the distances are very small; short distances are most important to the vast majority of weekend sailors. Haversines resolved these issues. Today there are dozens of websites that will give you the course and distance between two points on the earth given the Latitude and Longitude of each. Many of these sites report the distance in kilometers which require a definition of the radius of the earth. The haversine method herein described uses a unit radius; thus, a distance as an angle readily resolves to nautical miles; therefore, I am going to limit this to a simple definition of the haversine and practical topics for cruise planning with the spreadsheet on the computer and to solutions on the handheld calculator as well as on the iPhone and iPad.
    [Show full text]
  • Range-Based Autonomous Underwater Vehicle Navigation Expressed in Geodetic Coordinates
    Range-Based Autonomous Underwater Vehicle Navigation Expressed in Geodetic Coordinates Rami S. Jabari Thesis submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulfillment of the requirements for the degree of Master of Science in Electrical Engineering Daniel J. Stilwell, Chair Wayne L. Neu Craig A. Woolsey May 6, 2016 Blacksburg, Virginia Keywords: Autonomous Underwater Vehicle, Navigation Copyright 2016, Rami S. Jabari Range-Based Autonomous Underwater Vehicle Navigation Expressed in Geodetic Coordinates Rami S. Jabari (ABSTRACT) Unlike many terrestrial applications, GPS is unavailable to autonomous underwater ve- hicles (AUVs) while submerged due to the rapid attenuation of radio frequency signals in seawater. Underwater vehicles often use other navigation technologies. This thesis describes a range-based acoustic navigation system that utilizes range measurements from a single moving transponder with a known location to estimate the position of an AUV in geodetic coordinates. Additionally, the navigation system simultaneously estimates the currents act- ing on the AUV. Thus the navigation system can be used in locations where currents are unknown. The main contribution of this work is the implementation of a range-based navigation system in geodetic coordinates for an AUV. This range-based navigation system is imple- mented in the World Geodetic System 1984 (WGS 84) coordinate reference system. The navigation system is not restricted to the WGS 84 ellipsoid and can be applied to any refer- ence ellipsoid. This thesis documents the formulation of the navigation system in geodetic coordinates. Experimental data gathered in Claytor Lake, VA, and the Chesapeake Bay is presented. Range-Based Autonomous Underwater Vehicle Navigation Expressed in Geodetic Coordinates Rami S.
    [Show full text]
  • Earth-Satellite Geometry
    EARTH-REFERENCED AIRCRAFT NAVIGATION AND SURVEILLANCE ANALYSIS Michael Geyer S π/2 - α - θ d h α N U Re Re θ O Michael Geyer Frederick de Wit Navigation Vertical Plane Model Peter Mercator Federico Rostagno Spherical Surface Model Surveillance Project Memorandum — June 2016 DOT-VNTSC-FAA-16-12 Prepared for: Federal Aviation Administration Wake Turbulence Research Office DOT Volpe Center FOREWORD This document addresses a basic function of aircraft (and other vehicle) surveillance and navi- gation systems analyses — quantifying the geometric relationship of two or more locations relative to each other and to the earth. Here, geometry means distances and angles, including their projections in a defined coordinate frame. Applications that fit well with these methods include (a) planning a vehicle’s route; (b) determining the coverage region of a radar or radio installation; and (c) calculating a vehicle’s latitude and longitude from measurements (e.g., of slant- and spherical-ranges or range differences, azimuth and elevation angles, and altitudes). The approach advocated is that the three-dimensional problems inherent in navigation/surveil- lance analyses should, to the extent possible, be re-cast as a sequence of sub-problems: . Vertical-Plane Formulation (two-dimensional (2D) problem illustrated in top right panel on cover) — Considers the vertical plane containing two problem-specific locations and the center of a spherical earth, and utilizes plane trigonometry as the primary analysis method. This formulation provides closed-form solutions. Spherical-Surface Formulation (2D problem illustrated in bottom left panel on cover) — Considers two or three problem-specific locations on the surface of a spherical earth; utilizes spherical trigonometry as the primary analysis method.
    [Show full text]