+ Reply to Thread
Results 1 to 6 of 6

Linear Interpolation

Hybrid View

  1. #1
    Registered User
    Join Date
    10-26-2015
    Location
    Milwaukee
    MS-Off Ver
    2010/2013
    Posts
    22

    Linear Interpolation

    I am in the process of writing a formula for linear interpolation and I have no idea on how to begin.

    My data consists of a number of latitude and longtitude points and I want to interpolate data every 50 feet between my 2 ponts and get the latitude and longitude of those points.

    I have Lat 1, Long 1 & Lat 2, Long 2

    I need help writing a formula to do so

    Thanks

  2. #2
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS 365 Family 64-bit 2502
    Posts
    26,835

    Re: Linear Interpolation

    Linear interpolation of straight lines is easy. But you have Lat & Long, which are in degrees, and the lines are not straight, they are on the surface of a sphere. Then you start talking about feet. A change in 1 degree longitude gives you a different number of feet depending how far from the equator you are. This conversion can certainly be done. I would think this type of interpolation would be along a great circle path. Just to give you an idea of what you're getting into, here is a description of a solution to your problem implemented in Java and also in Python.

    But first let's understand the problem you are trying to solve. Can you describe a little more what your situation is? We might be able to simplify this, for example, if your points are close together.
    Jeff
    | | |會 |會 |會 |會 | |:| | |會 |會
    Read the rules
    Use code tags to [code]enclose your code![/code]

  3. #3
    Forum Expert
    Join Date
    11-27-2007
    Location
    New Jersey, USA
    MS-Off Ver
    2013
    Posts
    1,669

    Re: Linear Interpolation

    Distance between longitudes is non-linear and between latitude is also not exactly same throughout.
    Following may help.

    Each degree of latitude is approximately 69 miles (111 kilometers) apart. The range varies (due to the earth's slightly ellipsoid shape) from 68.703 miles (110.567 km) at the equator to 69.407 (111.699 km) at the poles.

    Unlike latitude, the distance between degrees of longitude varies greatly depending upon your location on the planet. They are farthest apart at the equator and converge at the poles. A degree of longitude is widest at the equator with a distance of 69.172 miles (111.321 kilometers).
    1. Click on the * Add Reputation if you think this helped you
    2. Mark your thread as SOLVED when question is resolved

    Modytrane

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Linear Interpolation

    Assuming the earth is treated as a sphere, the rigorous solution is to incrementally rotate the starting point about an axis perpendicular to the plane containing the two points and the center of the earth. That is surely a piece of cake for any GIS package. Doing it in Excel would be messy.
    Entia non sunt multiplicanda sine necessitate

  5. #5
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Linear Interpolation

    I did this decades ago using a book called The American Practical Navigator. What you will find on most posts on this topic is: given two sets of coordinates, compute the great circle distance and angle of departure from the first point.

    If I understand your requirement you want to go a certain radial / DME (to use aviation terms) from a starting point or head out on a certain heading for a certain distance and compute the Latitude and Longitude of where you wind up.

    This requires working with Napier's Rules for Right Spherical Triangles. Here is one reference: https://www.researchgate.net/publica...Circular_Parts. As I said, I solved this decades ago but alas, the Unix Machine I had it on has long since bit the dust and I would have had to translate it from C.

    I suggest you offer a bottle of scotch (or some other incentive) to the local high school trigonometry teacher.

    Every 50 feet!? You're going to need some good precision. I do not recommend "leap frogging" - that is move 50 from the start to point A then move 50 feet from point A to point B ... Instead calculate point A as 50 feet from the origin, calculate point B as 100 feet from the origin and so on.
    Last edited by dflak; 01-23-2019 at 01:39 PM.
    One spreadsheet to rule them all. One spreadsheet to find them. One spreadsheet to bring them all and at corporate, bind them.

    A picture is worth a thousand words, but a sample spreadsheet is more likely to be worked on.

  6. #6
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Linear Interpolation

    A thought occurred to me, What is the scope of this exercise? Why the 50 feet? What total distances are we talking about?

    If it's relatively short distances, then some approximations could be made. A degree of longitude is equal to the cosine of the latitude (1 degree at the equator, .7 degrees at 30 degrees N/S, .5 at 60 degrees N/S and zero at the pole).

    For very short distances, you could consider the earth to be flat and use Euclidean Geometry, making the adjustments for the latitude.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Seeking tutoring HELP! with Linear Interpolation formula inputs
    By kashbay in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 09-09-2017, 10:55 PM
  2. Interpolation, non linear. Need help please.
    By traumerei1838 in forum Excel General
    Replies: 8
    Last Post: 08-12-2015, 01:04 AM
  3. [SOLVED] how to do linear interpolation
    By fight2 in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 03-11-2015, 08:40 PM
  4. Linear Interpolation
    By mikethemonster in forum Excel General
    Replies: 0
    Last Post: 07-04-2011, 02:27 PM
  5. VBA Linear Interpolation
    By WAW in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 10-25-2010, 04:55 PM
  6. Linear interpolation
    By bruteforce in forum Excel General
    Replies: 0
    Last Post: 04-25-2009, 01:11 PM
  7. Linear Interpolation
    By Metalmaniac in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 06-03-2005, 10:05 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1