Geographical distance is the distance measured along the surface of the earth.

learn more… | top users | synonyms

0
votes
2answers
95 views

DBGrid - how to show the differnce between a column value in two adjacent rows as another column?

Let's say I record my car's latitude & longitude every minute or so, adding a row to a table each time. I want to have a DB grid with 4 columns latitude longitude distance since last ...
1
vote
0answers
51 views

Calculate square bounds on Earth with given radius for center point

I'm trying to calculate bounds for square with particular radius and when center of square is known(longitude, latitude). But I'm getting into troubles with it. I've tried to use haversine formula ...
0
votes
3answers
76 views

.NET Equivalent of SQL Server STDistance

I can use the following SQL to calculate the distance between a fixed location and the location against the venues in the database. SELECT Location.STDistance(geography::Point(51, -2, 4326)) * ...
0
votes
1answer
61 views

Getting incorrect latitude and longitudes for large distances

I am using the following function. private static Location CoordinateAtADistance(double latOrigin, double lonOrigin, double radius, double angle) { double lonDestination; ...
0
votes
1answer
99 views

Bug in SQL Server geography?

Can someone please confirm if this is a bug or I'm doing something wrong please? I've this stored procedure (SQL Server 2008) ALTER PROCEDURE [dbo].[Distance] @origin varchar(50),@destination ...
0
votes
0answers
205 views

Get a geographic point at a certain distance x from two other geographic points

I need to find geographic point on the earth's surface point P(lat3,lon3) such that it is equidistant with distance equal to x from two other points in the earth's surface (lat1,lon1) and (lat2,lon2). ...
0
votes
2answers
466 views

Distance of wgs point from a wgs defined line segment

I searched but I could not find a complete answer. In C# if at all possible. I need the shortest distance between a WGS point and a WGS point defined line segment on a sphere (Earth exactly). float ...
0
votes
0answers
97 views

Django-compatible VPS webapp hosting based in Italy? [closed]

it's almost time to deploy my Django application. In the past I've hosted my apps within an Italian company called http://unbit.it/ . I was happy with it, but they are a bit expensive and I haven't ...
2
votes
1answer
2k views

Get pitch, roll and yaw relative to geographic north on iOS?

I see that I can retrieve CMAttitude from a device and from it I can read 3 values which I need (pitch, roll and yaw). As I understand, this CMAttitude object is managed by CoreMotion which is a ...
13
votes
6answers
2k views

Python module for storing and querying geographical coordinates

Is there a Python module where I can create objects with a geographical location coordinate (latitude and longitude), and query all the objects for ones which are within a 5km distance (i.e. radius) ...
1
vote
2answers
927 views

Finding nearest neighbor between 2 sets of dated points

I have 2 sets of points, set1 and set2. Both sets of points have a data associated with the point. Points in set1 are "ephemeral", and only exist on the given date. Points in set2 are "permanent", ...